diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 000000000..06939361e --- /dev/null +++ b/.eslintignore @@ -0,0 +1,6 @@ +# Ignore list +/* + +# Do not ignore these folders: +!__tests__/ +!src/ \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 000000000..293128e6e --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,51 @@ +// This is a reusable configuration file copied from https://github.com/actions/reusable-workflows/tree/main/reusable-configurations. Please don't make changes to this file as it's the subject of an automatic update. +module.exports = { + extends: [ + 'eslint:recommended', + 'plugin:@typescript-eslint/recommended', + 'plugin:eslint-plugin-jest/recommended', + 'eslint-config-prettier' + ], + parser: '@typescript-eslint/parser', + plugins: ['@typescript-eslint', 'eslint-plugin-node', 'eslint-plugin-jest'], + rules: { + '@typescript-eslint/no-require-imports': 'error', + '@typescript-eslint/no-non-null-assertion': 'off', + '@typescript-eslint/no-explicit-any': 'off', + '@typescript-eslint/no-empty-function': 'off', + '@typescript-eslint/ban-ts-comment': [ + 'error', + { + 'ts-ignore': 'allow-with-description' + } + ], + 'no-console': 'error', + 'yoda': 'error', + 'prefer-const': [ + 'error', + { + destructuring: 'all' + } + ], + 'no-control-regex': 'off', + 'no-constant-condition': ['error', {checkLoops: false}], + 'node/no-extraneous-import': 'error' + }, + overrides: [ + { + files: ['**/*{test,spec}.ts'], + rules: { + '@typescript-eslint/no-unused-vars': 'off', + 'jest/no-standalone-expect': 'off', + 'jest/no-conditional-expect': 'off', + 'no-console': 'off', + + } + } + ], + env: { + node: true, + es6: true, + 'jest/globals': true + } +}; diff --git a/.gitattributes b/.gitattributes index bff632db9..535b415af 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,4 @@ +* text=auto eol=lf dist/index.js -diff -merge dist/index.js linguist-generated=true .licenses/** -diff linguist-generated=true diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 656103190..ca56653dc 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1 @@ -* @actions/actions-service -* @actions/virtual-environments-owners +* @actions/setup-actions-team diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index ec4bb386b..3ba13e0ce 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1 +1 @@ -blank_issues_enabled: false \ No newline at end of file +blank_issues_enabled: false diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..853bc0a13 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,22 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + # Enable version updates for npm + - package-ecosystem: 'npm' + # Look for `package.json` and `lock` files in the `root` directory + directory: '/' + # Check the npm registry for updates every day (weekdays) + schedule: + interval: 'weekly' + + # Enable version updates for GitHub Actions + - package-ecosystem: 'github-actions' + # Workflow files stored in the default location of `.github/workflows` + # You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`. + directory: '/' + schedule: + interval: 'weekly' diff --git a/.github/workflows/basic-validation.yml b/.github/workflows/basic-validation.yml new file mode 100644 index 000000000..e93e58009 --- /dev/null +++ b/.github/workflows/basic-validation.yml @@ -0,0 +1,19 @@ +name: Basic validation + +on: + push: + branches: + - main + - releases/* + paths-ignore: + - '**.md' + pull_request: + paths-ignore: + - '**.md' + +jobs: + call-basic-validation: + name: Basic validation + uses: actions/reusable-workflows/.github/workflows/basic-validation.yml@main + with: + node-version: '24.x' diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 9d665b38f..000000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Build Action - -on: - push: - branches: - - main - - releases/* - paths-ignore: - - '**.md' - pull_request: - paths-ignore: - - '**.md' - -jobs: - build: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - steps: - - uses: actions/checkout@v3 - - name: Setup Node.JS 16 - uses: actions/setup-node@v3 - with: - node-version: 16.x - cache: npm - - run: npm ci - - run: npm run build - - run: npm run format-check - - run: npm test \ No newline at end of file diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index 6274fd288..90ef986ad 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -1,8 +1,3 @@ -# `dist/index.js` is a special file in Actions. -# When you reference an action with `uses:` in a workflow, -# `index.js` is the code that will run. -# For our project, we generate this file through a build process from other source files. -# We need to make sure the checked-in `index.js` actually matches what we expect it to be. name: Check dist/ on: @@ -17,36 +12,8 @@ on: workflow_dispatch: jobs: - check-dist: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Set Node.js 16.x - uses: actions/setup-node@v3 - with: - node-version: 16.x - cache: npm - - - name: Install dependencies - run: npm ci - - - name: Rebuild the dist/ directory - run: npm run build - - - name: Compare the expected and actual dist/ directories - run: | - if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then - echo "Detected uncommitted changes after build. See status below:" - git diff - exit 1 - fi - id: diff - - # If index.js was different than expected, upload the expected version as an artifact - - uses: actions/upload-artifact@v3 - if: ${{ failure() && steps.diff.conclusion == 'failure' }} - with: - name: dist - path: dist/ + call-check-dist: + name: Check dist/ + uses: actions/reusable-workflows/.github/workflows/check-dist.yml@main + with: + node-version: '24.x' diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 000000000..7a8261238 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,14 @@ +name: CodeQL analysis + +on: + push: + branches: [main] + pull_request: + branches: [main] + schedule: + - cron: '0 3 * * 0' + +jobs: + call-codeQL-analysis: + name: CodeQL analysis + uses: actions/reusable-workflows/.github/workflows/codeql-analysis.yml@main diff --git a/.github/workflows/e2e-cache-dependency-path.yml b/.github/workflows/e2e-cache-dependency-path.yml new file mode 100644 index 000000000..8b40e99f0 --- /dev/null +++ b/.github/workflows/e2e-cache-dependency-path.yml @@ -0,0 +1,93 @@ +name: Validate cache with cache-dependency-path option + +on: + push: + branches: + - main + - releases/* + paths-ignore: + - '**.md' + pull_request: + paths-ignore: + - '**.md' + +defaults: + run: + shell: bash + +jobs: + gradle1-save: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [macos-latest, windows-latest, ubuntu-latest] + steps: + - name: Checkout + uses: actions/checkout@v6 + - name: Run setup-java with the cache for gradle + uses: ./ + id: setup-java + with: + distribution: 'adopt' + java-version: '17' + cache: gradle + cache-dependency-path: __tests__/cache/gradle1/*.gradle* + - name: Create files to cache + # Need to avoid using Gradle daemon to stabilize the save process on Windows + # https://github.com/actions/cache/issues/454#issuecomment-840493935 + run: | + gradle downloadDependencies --no-daemon -p __tests__/cache/gradle1 + if [ ! -d ~/.gradle/caches ]; then + echo "::error::The ~/.gradle/caches directory does not exist unexpectedly" + exit 1 + fi + gradle1-restore: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [macos-latest, windows-latest, ubuntu-latest] + needs: gradle1-save + steps: + - name: Checkout + uses: actions/checkout@v6 + - name: Run setup-java with the cache for gradle + uses: ./ + id: setup-java + with: + distribution: 'adopt' + java-version: '11' + cache: gradle + cache-dependency-path: __tests__/cache/gradle1/*.gradle* + - name: Confirm that ~/.gradle/caches directory has been made + run: | + if [ ! -d ~/.gradle/caches ]; then + echo "::error::The ~/.gradle/caches directory does not exist unexpectedly" + exit 1 + fi + ls ~/.gradle/caches/ + gradle2-restore: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [macos-latest, windows-latest, ubuntu-latest] + needs: gradle1-save + steps: + - name: Checkout + uses: actions/checkout@v6 + - name: Run setup-java with the cache for gradle + uses: ./ + id: setup-java + with: + distribution: 'adopt' + java-version: '11' + cache: gradle + cache-dependency-path: __tests__/cache/gradle2/*.gradle* + - name: Confirm that ~/.gradle/caches directory has not been made + run: | + if [ -d ~/.gradle/caches ]; then + echo "::error::The ~/.gradle/caches directory exists unexpectedly" + exit 1 + fi diff --git a/.github/workflows/e2e-cache.yml b/.github/workflows/e2e-cache.yml index 74998dc02..6df10b578 100644 --- a/.github/workflows/e2e-cache.yml +++ b/.github/workflows/e2e-cache.yml @@ -1,4 +1,5 @@ name: Validate cache + on: push: branches: @@ -20,22 +21,22 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, windows-latest, ubuntu-latest] + os: [macos-15-intel, windows-latest, ubuntu-latest] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Run setup-java with the cache for gradle uses: ./ id: setup-java with: distribution: 'adopt' - java-version: '11' + java-version: '17' cache: gradle - name: Create files to cache # Need to avoid using Gradle daemon to stabilize the save process on Windows # https://github.com/actions/cache/issues/454#issuecomment-840493935 run: | - gradle downloadDependencies --no-daemon -p __tests__/cache/gradle + gradle downloadDependencies --no-daemon -p __tests__/cache/gradle1 if [ ! -d ~/.gradle/caches ]; then echo "::error::The ~/.gradle/caches directory does not exist unexpectedly" exit 1 @@ -45,11 +46,11 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, windows-latest, ubuntu-latest] + os: [macos-15-intel, windows-latest, ubuntu-latest] needs: gradle-save steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Run setup-java with the cache for gradle uses: ./ id: setup-java @@ -69,10 +70,10 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, windows-latest, ubuntu-latest] + os: [macos-15-intel, windows-latest, ubuntu-latest] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Run setup-java with the cache for maven uses: ./ id: setup-java @@ -92,11 +93,11 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, windows-latest, ubuntu-latest] + os: [macos-15-intel, windows-latest, ubuntu-latest] needs: maven-save steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Run setup-java with the cache for maven uses: ./ id: setup-java @@ -120,10 +121,10 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, windows-latest, ubuntu-latest] + os: [macos-15-intel, windows-latest, ubuntu-22.04] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Run setup-java with the cache for sbt uses: ./ id: setup-java @@ -131,17 +132,21 @@ jobs: distribution: 'adopt' java-version: '11' cache: sbt + - name: Setup SBT + if: matrix.os == 'macos-15-intel' + run: | + echo ""Installing SBT..."" + brew install sbt - name: Create files to cache run: sbt update - name: Check files to cache on macos-latest - if: matrix.os == 'macos-latest' + if: matrix.os == 'macos-15-intel' run: | if [ ! -d ~/Library/Caches/Coursier ]; then echo "::error::The ~/Library/Caches/Coursier directory does not exist unexpectedly" exit 1 fi - - name: Check files to cache on windows-latest if: matrix.os == 'windows-latest' run: | @@ -149,8 +154,6 @@ jobs: echo "::error::The ~/AppData/Local/Coursier/Cache directory does not exist unexpectedly" exit 1 fi - - - name: Check files to cache on ubuntu-latest if: matrix.os == 'ubuntu-latest' run: | @@ -158,7 +161,6 @@ jobs: echo "::error::The ~/.cache/coursier directory does not exist unexpectedly" exit 1 fi - sbt-restore: runs-on: ${{ matrix.os }} defaults: @@ -168,11 +170,11 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, windows-latest, ubuntu-latest] + os: [macos-15-intel, windows-latest, ubuntu-22.04] needs: sbt-save steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Run setup-java with the cache for sbt uses: ./ id: setup-java @@ -182,14 +184,13 @@ jobs: cache: sbt - name: Confirm that ~/Library/Caches/Coursier directory has been made - if: matrix.os == 'macos-latest' + if: matrix.os == 'macos-15-intel' run: | if [ ! -d ~/Library/Caches/Coursier ]; then echo "::error::The ~/Library/Caches/Coursier directory does not exist unexpectedly" exit 1 fi ls ~/Library/Caches/Coursier - - name: Confirm that ~/AppData/Local/Coursier/Cache directory has been made if: matrix.os == 'windows-latest' run: | @@ -198,7 +199,6 @@ jobs: exit 1 fi ls ~/AppData/Local/Coursier/Cache - - name: Confirm that ~/.cache/coursier directory has been made if: matrix.os == 'ubuntu-latest' run: | diff --git a/.github/workflows/e2e-local-file.yml b/.github/workflows/e2e-local-file.yml index 1361bb0f2..92fdf7597 100644 --- a/.github/workflows/e2e-local-file.yml +++ b/.github/workflows/e2e-local-file.yml @@ -1,4 +1,5 @@ name: Validate local file + on: push: branches: @@ -20,7 +21,7 @@ jobs: os: [macos-latest, windows-latest, ubuntu-latest] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Download Adopt OpenJDK file run: | if ($IsLinux) { @@ -57,7 +58,7 @@ jobs: os: [macos-latest, windows-latest, ubuntu-latest] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Download Zulu OpenJDK file run: | if ($IsLinux) { @@ -94,7 +95,7 @@ jobs: os: [macos-latest, windows-latest, ubuntu-latest] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Download Eclipse Temurin file run: | if ($IsLinux) { diff --git a/.github/workflows/e2e-publishing.yml b/.github/workflows/e2e-publishing.yml index cf179fc06..0c0aaafa9 100644 --- a/.github/workflows/e2e-publishing.yml +++ b/.github/workflows/e2e-publishing.yml @@ -1,4 +1,5 @@ name: Validate publishing functionality + on: push: branches: @@ -24,7 +25,7 @@ jobs: os: [macos-latest, windows-latest, ubuntu-latest] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: setup-java uses: ./ id: setup-java @@ -59,7 +60,7 @@ jobs: os: [macos-latest, windows-latest, ubuntu-latest] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Create fake settings.xml run: | $xmlDirectory = Join-Path $HOME ".m2" @@ -85,7 +86,7 @@ jobs: if ($content -notlike '*maven*') { throw "settings.xml file is not overwritten" } - + test-publishing-skip-overwrite: name: settings.xml is not overwritten if flag is false runs-on: ${{ matrix.os }} @@ -95,7 +96,7 @@ jobs: os: [macos-latest, windows-latest, ubuntu-latest] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Create fake settings.xml run: | $xmlDirectory = Join-Path $HOME ".m2" @@ -132,7 +133,7 @@ jobs: os: [macos-latest, windows-latest, ubuntu-latest] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: setup-java uses: ./ id: setup-java @@ -149,4 +150,4 @@ jobs: $path = Join-Path $env:RUNNER_TEMP "settings.xml" if (-not (Test-Path $path)) { throw "settings.xml file is not found in expected location" - } \ No newline at end of file + } diff --git a/.github/workflows/e2e-versions.yml b/.github/workflows/e2e-versions.yml index bfa12363a..845fce16f 100644 --- a/.github/workflows/e2e-versions.yml +++ b/.github/workflows/e2e-versions.yml @@ -1,4 +1,5 @@ name: Validate Java e2e + on: push: branches: @@ -10,7 +11,7 @@ on: paths-ignore: - '**.md' schedule: - - cron: '0 */12 * * *' + - cron: '0 */12 * * *' workflow_dispatch: jobs: setup-java-major-versions: @@ -19,21 +20,68 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, windows-latest, ubuntu-latest] - distribution: ['temurin', 'adopt', 'adopt-openj9', 'zulu', 'liberica', 'microsoft', 'corretto' ] # internally 'adopt-hotspot' is the same as 'adopt' - version: ['8', '11', '16'] + os: [macos-15-intel, windows-latest, ubuntu-latest] + distribution: [ + 'temurin', + 'adopt', + 'adopt-openj9', + 'zulu', + 'liberica', + 'microsoft', + 'semeru', + 'corretto', + 'dragonwell', + 'sapmachine', + 'jetbrains' + ] # internally 'adopt-hotspot' is the same as 'adopt' + version: ['21', '11', '17'] exclude: - - distribution: microsoft - version: 8 + - distribution: microsoft + version: 8 + - distribution: dragonwell + os: macos-15-intel + include: + - distribution: microsoft + os: windows-latest + version: 25 + - distribution: microsoft + os: ubuntu-latest + version: 25 + - distribution: microsoft + os: macos-latest + version: 25 + - distribution: oracle + os: macos-15-intel + version: 17 + - distribution: oracle + os: windows-latest + version: 21 + - distribution: oracle + os: ubuntu-latest + version: 21 + - distribution: graalvm + os: macos-latest + version: 17.0.12 + - distribution: graalvm + os: windows-latest + version: 21 + - distribution: graalvm + os: ubuntu-latest + version: 21 + - distribution: graalvm + os: ubuntu-latest + version: '24-ea' steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: setup-java uses: ./ id: setup-java with: java-version: ${{ matrix.version }} distribution: ${{ matrix.distribution }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Verify Java run: bash __tests__/verify-java.sh "${{ matrix.version }}" "${{ steps.setup-java.outputs.path }}" shell: bash @@ -48,12 +96,34 @@ jobs: os: [macos-latest, windows-latest, ubuntu-latest] distribution: ['temurin', 'zulu', 'liberica'] version: - - '11.0' - - '8.0.302' - - '16.0.2+7' + - '11.0' + - '21.0' + - '17.0.7+7' + include: + - distribution: oracle + os: ubuntu-latest + version: '21.0.4' + - distribution: graalvm + os: ubuntu-latest + version: '21.0.4' + - distribution: dragonwell + os: ubuntu-latest + version: '11.0' + - distribution: dragonwell + os: ubuntu-latest + version: '11.0.13+9' + - distribution: sapmachine + os: ubuntu-latest + version: '17.0.7' + - distribution: jetbrains + os: ubuntu-latest + version: '11.0.11' + - distribution: jetbrains + os: ubuntu-latest + version: '17.0.7' steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: setup-java uses: ./ id: setup-java @@ -63,6 +133,8 @@ jobs: - name: Verify Java run: bash __tests__/verify-java.sh "${{ matrix.version }}" "${{ steps.setup-java.outputs.path }}" shell: bash + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} setup-java-check-latest: name: ${{ matrix.distribution }} ${{ matrix.version }} - check-latest flag - ${{ matrix.os }} @@ -72,10 +144,21 @@ jobs: fail-fast: false matrix: os: [macos-latest, windows-latest, ubuntu-latest] - distribution: ['temurin', 'zulu', 'liberica'] + distribution: + [ + 'temurin', + 'zulu', + 'liberica', + 'dragonwell', + 'sapmachine', + 'jetbrains' + ] + exclude: + - distribution: dragonwell + os: macos-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: setup-java uses: ./ id: setup-java @@ -83,10 +166,62 @@ jobs: distribution: ${{ matrix.distribution }} java-version: 11 check-latest: true + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Verify Java run: bash __tests__/verify-java.sh "11" "${{ steps.setup-java.outputs.path }}" shell: bash + setup-java-multiple-jdks: + name: ${{ matrix.distribution }} ${{ matrix.version }} - multiple jdks - ${{ matrix.os }} + needs: setup-java-major-versions + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [macos-latest, windows-latest, ubuntu-latest] + distribution: + [ + 'temurin', + 'zulu', + 'liberica', + 'dragonwell', + 'sapmachine', + 'jetbrains' + ] + exclude: + - distribution: dragonwell + os: macos-latest + steps: + - name: Checkout + uses: actions/checkout@v6 + - name: setup-java + uses: ./ + id: setup-java + with: + distribution: ${{ matrix.distribution }} + java-version: | + 11 + 17 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Verify Java env variables + run: | + $versionsArr = "11","17" + foreach ($version in $versionsArr) + { + $envName = "JAVA_HOME_${version}_${env:RUNNER_ARCH}" + $JavaVersionPath = [Environment]::GetEnvironmentVariable($envName) + if (-not (Test-Path "$JavaVersionPath")) { + Write-Host "$envName is not found" + exit 1 + } + } + shell: pwsh + - name: Verify Java + run: bash __tests__/verify-java.sh "17" "${{ steps.setup-java.outputs.path }}" + shell: bash + setup-java-ea-versions-zulu: name: zulu ${{ matrix.version }} (jdk-x64) - ${{ matrix.os }} needs: setup-java-major-minor-versions @@ -94,11 +229,11 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, windows-latest, ubuntu-latest] + os: [macos-15-intel, windows-latest, ubuntu-latest] version: ['17-ea', '15.0.0-ea.14'] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: setup-java uses: ./ id: setup-java @@ -120,7 +255,7 @@ jobs: version: ['17-ea'] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: setup-java uses: ./ id: setup-java @@ -131,6 +266,28 @@ jobs: run: bash __tests__/verify-java.sh "${{ matrix.version }}" "${{ steps.setup-java.outputs.path }}" shell: bash + setup-java-ea-versions-sapmachine: + name: sapmachine ${{ matrix.version }} (jdk-x64) - ${{ matrix.os }} + needs: setup-java-major-minor-versions + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [macos-latest, windows-latest, ubuntu-latest] + version: ['17-ea', '21-ea'] + steps: + - name: Checkout + uses: actions/checkout@v6 + - name: setup-java + uses: ./ + id: setup-java + with: + java-version: ${{ matrix.version }} + distribution: sapmachine + - name: Verify Java + run: bash __tests__/verify-java.sh "${{ matrix.version }}" "${{ steps.setup-java.outputs.path }}" + shell: bash + setup-java-custom-package-type: name: ${{ matrix.distribution }} ${{ matrix.version }} (${{ matrix.java-package }}-x64) - ${{ matrix.os }} needs: setup-java-major-minor-versions @@ -138,22 +295,23 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, windows-latest, ubuntu-latest] - distribution: ['temurin', 'zulu', 'liberica'] + os: [macos-15-intel, windows-latest, ubuntu-latest] + distribution: + ['temurin', 'zulu', 'liberica', 'semeru', 'sapmachine', 'jetbrains'] java-package: ['jre'] version: ['17.0'] include: - distribution: 'zulu' java-package: jre+fx - version: '8' + version: '21' os: ubuntu-latest - distribution: 'zulu' java-package: jdk+fx - version: '8.0.242' + version: '21.0' os: ubuntu-latest - distribution: 'liberica' java-package: jdk+fx - version: '8' + version: '21' os: ubuntu-latest - distribution: 'liberica' java-package: jre+fx @@ -163,9 +321,50 @@ jobs: java-package: jre version: '8' os: windows-latest + - distribution: 'jetbrains' + java-package: jdk+jcef + version: '11' + os: ubuntu-latest + - distribution: 'jetbrains' + java-package: jdk+jcef + version: '17' + os: ubuntu-latest + - distribution: 'jetbrains' + java-package: jdk+jcef + version: '21' + os: ubuntu-latest + - distribution: 'jetbrains' + java-package: jre+jcef + version: '11' + os: ubuntu-latest + - distribution: 'jetbrains' + java-package: jre+jcef + version: '17' + os: ubuntu-latest + - distribution: 'jetbrains' + java-package: jre+jcef + version: '21' + os: ubuntu-latest + - distribution: 'jetbrains' + java-package: jdk+ft + version: '17' + os: ubuntu-latest + - distribution: 'jetbrains' + java-package: jdk+ft + version: '21' + os: ubuntu-latest + - distribution: 'jetbrains' + java-package: jre+ft + version: '17' + os: ubuntu-latest + - distribution: 'jetbrains' + java-package: jre+ft + version: '21' + os: ubuntu-latest + steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: setup-java uses: ./ id: setup-java @@ -173,6 +372,8 @@ jobs: java-version: ${{ matrix.version }} java-package: ${{ matrix.java-package }} distribution: ${{ matrix.distribution }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Verify Java run: bash __tests__/verify-java.sh "${{ matrix.version }}" "${{ steps.setup-java.outputs.path }}" shell: bash @@ -186,12 +387,12 @@ jobs: fail-fast: false matrix: # x86 is not supported on macOS - os: [windows-latest, ubuntu-latest] + os: [windows-latest, ubuntu-22.04] distribution: ['liberica', 'zulu', 'corretto'] version: ['11'] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: setup-java uses: ./ id: setup-java @@ -203,4 +404,118 @@ jobs: run: bash __tests__/verify-java.sh "${{ matrix.version }}" "${{ steps.setup-java.outputs.path }}" shell: bash - # Only Microsoft provides AArch64. However, GitHub-hosted runners do not support this architecture. \ No newline at end of file + setup-java-version-both-version-inputs-presents: + name: ${{ matrix.distribution }} version (should be from input) - ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [macos-latest, windows-latest, ubuntu-latest] + distribution: ['temurin', 'microsoft', 'corretto'] + java-version-file: ['.java-version', '.tool-versions'] + steps: + - name: Checkout + uses: actions/checkout@v6 + - name: Create .java-version file + shell: bash + run: echo "17" > .java-version + - name: Create .tool-versions file + shell: bash + run: echo "java 17" > .tool-versions + - name: setup-java + uses: ./ + id: setup-java + with: + distribution: ${{ matrix.distribution }} + java-version: 11 + java-version-file: ${{matrix.java-version-file }} + - name: Verify Java + run: bash __tests__/verify-java.sh "11" "${{ steps.setup-java.outputs.path }}" + shell: bash + + setup-java-version-from-file-major-notation: + name: ${{ matrix.distribution }} version from file X - ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [macos-latest, windows-latest, ubuntu-latest] + distribution: ['temurin', 'zulu', 'liberica', 'microsoft', 'corretto'] + java-version-file: ['.java-version', '.tool-versions'] + steps: + - name: Checkout + uses: actions/checkout@v6 + - name: Create .java-version file + shell: bash + run: echo "11" > .java-version + - name: Create .tool-versions file + shell: bash + run: echo "java 11" > .tool-versions + - name: setup-java + uses: ./ + id: setup-java + with: + distribution: ${{ matrix.distribution }} + java-version-file: ${{matrix.java-version-file }} + - name: Verify Java + run: bash __tests__/verify-java.sh "11" "${{ steps.setup-java.outputs.path }}" + shell: bash + + setup-java-version-from-file-major-minor-patch-notation: + name: ${{ matrix.distribution }} version from file X.Y.Z - ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [macos-latest, windows-latest, ubuntu-latest] + distribution: ['adopt', 'adopt-openj9', 'zulu'] + java-version-file: ['.java-version', '.tool-versions'] + steps: + - name: Checkout + uses: actions/checkout@v6 + - name: Create .java-version file + shell: bash + run: echo "17.0.10" > .java-version + - name: Create .tool-versions file + shell: bash + run: echo "java 17.0.10" > .tool-versions + - name: setup-java + uses: ./ + id: setup-java + with: + distribution: ${{ matrix.distribution }} + java-version-file: ${{matrix.java-version-file }} + - name: Verify Java + run: bash __tests__/verify-java.sh "17.0.10" "${{ steps.setup-java.outputs.path }}" + shell: bash + + setup-java-version-from-file-major-minor-patch-with-dist: + name: ${{ matrix.distribution }} version from file '${{ matrix.java-version-file }}' - ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [macos-latest, windows-latest, ubuntu-latest] + distribution: ['adopt', 'zulu', 'liberica'] + java-version-file: ['.java-version', '.tool-versions', '.sdkmanrc'] + steps: + - name: Checkout + uses: actions/checkout@v6 + - name: Create .java-version file + shell: bash + run: echo "openjdk64-17.0.10" > .java-version + - name: Create .tool-versions file + shell: bash + run: echo "java openjdk64-17.0.10" > .tool-versions + - name: Create .sdkmanrc file + shell: bash + run: echo "java=17.0.10-tem" > .sdkmanrc + - name: setup-java + uses: ./ + id: setup-java + with: + distribution: ${{ matrix.distribution }} + java-version-file: ${{matrix.java-version-file }} + - name: Verify Java + run: bash __tests__/verify-java.sh "17.0.10" "${{ steps.setup-java.outputs.path }}" + shell: bash diff --git a/.github/workflows/licensed.yml b/.github/workflows/licensed.yml index fd707024e..37f1560c3 100644 --- a/.github/workflows/licensed.yml +++ b/.github/workflows/licensed.yml @@ -10,16 +10,6 @@ on: workflow_dispatch: jobs: - test: - runs-on: ubuntu-latest - name: Check licenses - steps: - - uses: actions/checkout@v3 - - run: npm ci - - name: Install licensed - run: | - cd $RUNNER_TEMP - curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/3.4.4/licensed-3.4.4-linux-x64.tar.gz - sudo tar -xzf licensed.tar.gz - sudo mv licensed /usr/local/bin/licensed - - run: licensed status + call-licensed: + name: Licensed + uses: actions/reusable-workflows/.github/workflows/licensed.yml@main diff --git a/.github/workflows/publish-immutable-actions.yml b/.github/workflows/publish-immutable-actions.yml new file mode 100644 index 000000000..bfe592049 --- /dev/null +++ b/.github/workflows/publish-immutable-actions.yml @@ -0,0 +1,21 @@ +name: 'Publish Immutable Action Version' + +on: + release: + types: [released] + workflow_dispatch: + +jobs: + publish: + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + packages: write + + steps: + - name: Checking out + uses: actions/checkout@v6 + - name: Publish + id: publish + uses: actions/publish-immutable-action@v0.0.4 diff --git a/.github/workflows/release-new-action-version.yml b/.github/workflows/release-new-action-version.yml index b14c183bf..25192b640 100644 --- a/.github/workflows/release-new-action-version.yml +++ b/.github/workflows/release-new-action-version.yml @@ -1,4 +1,5 @@ name: Release new action version + on: release: types: [released] @@ -20,9 +21,9 @@ jobs: name: releaseNewActionVersion runs-on: ubuntu-latest steps: - - name: Update the ${{ env.TAG_NAME }} tag - id: update-major-tag - uses: actions/publish-action@v0.1.0 - with: - source-tag: ${{ env.TAG_NAME }} - slack-webhook: ${{ secrets.SLACK_WEBHOOK }} \ No newline at end of file + - name: Update the ${{ env.TAG_NAME }} tag + id: update-major-tag + uses: actions/publish-action@v0.4.0 + with: + source-tag: ${{ env.TAG_NAME }} + slack-webhook: ${{ secrets.SLACK_WEBHOOK }} diff --git a/.github/workflows/update-config-files.yml b/.github/workflows/update-config-files.yml new file mode 100644 index 000000000..87af50042 --- /dev/null +++ b/.github/workflows/update-config-files.yml @@ -0,0 +1,11 @@ +name: Update configuration files + +on: + schedule: + - cron: '0 3 * * 0' + workflow_dispatch: + +jobs: + call-update-configuration-files: + name: Update configuration files + uses: actions/reusable-workflows/.github/workflows/update-config-files.yml@main diff --git a/.gitignore b/.gitignore index e6dc0cc5d..77afd5361 100644 --- a/.gitignore +++ b/.gitignore @@ -94,3 +94,6 @@ typings/ # DynamoDB Local files .dynamodb/ .vscode/ + +# IntelliJ / WebStorm +/.idea/ diff --git a/.licensed.yml b/.licensed.yml index e97382c4d..c0a2a52ee 100644 --- a/.licensed.yml +++ b/.licensed.yml @@ -12,4 +12,6 @@ allowed: - unlicense reviewed: - npm: \ No newline at end of file + npm: + - "@actions/http-client" # MIT (license text present), but detected as "other" + - "argparse" # Python Software Foundation License (PSF), but detected as "other" \ No newline at end of file diff --git a/.licenses/npm/@actions/cache.dep.yml b/.licenses/npm/@actions/cache.dep.yml index 8bc7efe90..25b3a5b13 100644 --- a/.licenses/npm/@actions/cache.dep.yml +++ b/.licenses/npm/@actions/cache.dep.yml @@ -1,6 +1,6 @@ --- name: "@actions/cache" -version: 3.0.0 +version: 5.0.5 type: npm summary: Actions cache lib homepage: https://github.com/actions/toolkit/tree/main/packages/cache @@ -17,4 +17,4 @@ licenses: 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. -notices: [] \ No newline at end of file +notices: [] diff --git a/.licenses/npm/@actions/core.dep.yml b/.licenses/npm/@actions/core.dep.yml index b1152f59f..5fa496eff 100644 --- a/.licenses/npm/@actions/core.dep.yml +++ b/.licenses/npm/@actions/core.dep.yml @@ -1,6 +1,6 @@ --- name: "@actions/core" -version: 1.2.6 +version: 2.0.3 type: npm summary: Actions core lib homepage: https://github.com/actions/toolkit/tree/main/packages/core diff --git a/.licenses/npm/@actions/exec.dep.yml b/.licenses/npm/@actions/exec.dep.yml index b1effd3d3..132d5859d 100644 --- a/.licenses/npm/@actions/exec.dep.yml +++ b/.licenses/npm/@actions/exec.dep.yml @@ -1,30 +1,20 @@ --- name: "@actions/exec" -version: 1.0.4 +version: 2.0.0 type: npm summary: Actions exec lib -homepage: https://github.com/actions/toolkit/tree/master/packages/exec +homepage: https://github.com/actions/toolkit/tree/main/packages/exec license: mit licenses: -- sources: Auto-generated MIT license text - text: | - MIT License +- sources: LICENSE.md + text: |- + The MIT License (MIT) - 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: + Copyright 2019 GitHub - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. + 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 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 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. notices: [] diff --git a/.licenses/npm/@actions/glob-0.2.0.dep.yml b/.licenses/npm/@actions/glob-0.2.0.dep.yml deleted file mode 100644 index 2faa14b82..000000000 --- a/.licenses/npm/@actions/glob-0.2.0.dep.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: "@actions/glob" -version: 0.2.0 -type: npm -summary: Actions glob lib -homepage: https://github.com/actions/toolkit/tree/main/packages/glob -license: mit -licenses: -- sources: LICENSE.md - text: |- - The MIT License (MIT) - - Copyright 2019 GitHub - - 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. -notices: [] diff --git a/.licenses/npm/@actions/glob-0.1.2.dep.yml b/.licenses/npm/@actions/glob.dep.yml similarity index 98% rename from .licenses/npm/@actions/glob-0.1.2.dep.yml rename to .licenses/npm/@actions/glob.dep.yml index becb37de2..e4dec1b87 100644 --- a/.licenses/npm/@actions/glob-0.1.2.dep.yml +++ b/.licenses/npm/@actions/glob.dep.yml @@ -1,6 +1,6 @@ --- name: "@actions/glob" -version: 0.1.2 +version: 0.5.1 type: npm summary: Actions glob lib homepage: https://github.com/actions/toolkit/tree/main/packages/glob diff --git a/.licenses/npm/@actions/http-client-1.0.11.dep.yml b/.licenses/npm/@actions/http-client-1.0.11.dep.yml deleted file mode 100644 index 7130b2fd3..000000000 --- a/.licenses/npm/@actions/http-client-1.0.11.dep.yml +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: "@actions/http-client" -version: 1.0.11 -type: npm -summary: Actions Http Client -homepage: https://github.com/actions/http-client#readme -license: mit -licenses: -- sources: LICENSE - text: | - Actions Http Client for Node.js - - Copyright (c) GitHub, Inc. - - All rights reserved. - - MIT License - - 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. -notices: [] \ No newline at end of file diff --git a/.licenses/npm/@actions/http-client-2.0.1.dep.yml b/.licenses/npm/@actions/http-client.dep.yml similarity index 97% rename from .licenses/npm/@actions/http-client-2.0.1.dep.yml rename to .licenses/npm/@actions/http-client.dep.yml index eb88560bb..dd1f80dd7 100644 --- a/.licenses/npm/@actions/http-client-2.0.1.dep.yml +++ b/.licenses/npm/@actions/http-client.dep.yml @@ -1,10 +1,10 @@ --- name: "@actions/http-client" -version: 2.0.1 +version: 3.0.2 type: npm summary: Actions Http Client homepage: https://github.com/actions/toolkit/tree/main/packages/http-client -license: mit +license: other licenses: - sources: LICENSE text: | @@ -29,4 +29,4 @@ licenses: 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. -notices: [] \ No newline at end of file +notices: [] diff --git a/.licenses/npm/@actions/io.dep.yml b/.licenses/npm/@actions/io.dep.yml index a23d1af46..2707c519b 100644 --- a/.licenses/npm/@actions/io.dep.yml +++ b/.licenses/npm/@actions/io.dep.yml @@ -1,30 +1,20 @@ --- name: "@actions/io" -version: 1.0.2 +version: 2.0.0 type: npm summary: Actions io lib -homepage: https://github.com/actions/toolkit/tree/master/packages/io +homepage: https://github.com/actions/toolkit/tree/main/packages/io license: mit licenses: -- sources: Auto-generated MIT license text - text: | - MIT License +- sources: LICENSE.md + text: |- + The MIT License (MIT) - 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: + Copyright 2019 GitHub - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. + 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 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 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. notices: [] diff --git a/.licenses/npm/@actions/tool-cache.dep.yml b/.licenses/npm/@actions/tool-cache.dep.yml index 16376d871..a250cf475 100644 --- a/.licenses/npm/@actions/tool-cache.dep.yml +++ b/.licenses/npm/@actions/tool-cache.dep.yml @@ -1,6 +1,6 @@ --- name: "@actions/tool-cache" -version: 1.6.1 +version: 3.0.1 type: npm summary: Actions tool-cache lib homepage: https://github.com/actions/toolkit/tree/main/packages/tool-cache diff --git a/.licenses/npm/@azure/abort-controller.dep.yml b/.licenses/npm/@azure/abort-controller-1.1.0.dep.yml similarity index 91% rename from .licenses/npm/@azure/abort-controller.dep.yml rename to .licenses/npm/@azure/abort-controller-1.1.0.dep.yml index f303d5c3e..b19b8f7a4 100644 --- a/.licenses/npm/@azure/abort-controller.dep.yml +++ b/.licenses/npm/@azure/abort-controller-1.1.0.dep.yml @@ -1,9 +1,9 @@ --- name: "@azure/abort-controller" -version: 1.0.4 +version: 1.1.0 type: npm summary: Microsoft Azure SDK for JavaScript - Aborter -homepage: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/core/abort-controller/README.md +homepage: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/abort-controller/README.md license: mit licenses: - sources: LICENSE diff --git a/.licenses/npm/@azure/core-asynciterator-polyfill.dep.yml b/.licenses/npm/@azure/abort-controller-2.1.2.dep.yml similarity index 88% rename from .licenses/npm/@azure/core-asynciterator-polyfill.dep.yml rename to .licenses/npm/@azure/abort-controller-2.1.2.dep.yml index ea530528c..934bd3bfa 100644 --- a/.licenses/npm/@azure/core-asynciterator-polyfill.dep.yml +++ b/.licenses/npm/@azure/abort-controller-2.1.2.dep.yml @@ -1,9 +1,9 @@ --- -name: "@azure/core-asynciterator-polyfill" -version: 1.0.2 +name: "@azure/abort-controller" +version: 2.1.2 type: npm -summary: Polyfill for IE/Node 8 for Symbol.asyncIterator -homepage: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/core-asynciterator-polyfill/README.md +summary: Microsoft Azure SDK for JavaScript - Aborter +homepage: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/abort-controller/README.md license: mit licenses: - sources: LICENSE diff --git a/.licenses/npm/@azure/core-auth.dep.yml b/.licenses/npm/@azure/core-auth.dep.yml index 830504b62..193d51d60 100644 --- a/.licenses/npm/@azure/core-auth.dep.yml +++ b/.licenses/npm/@azure/core-auth.dep.yml @@ -1,6 +1,6 @@ --- name: "@azure/core-auth" -version: 1.3.2 +version: 1.10.1 type: npm summary: Provides low-level interfaces and helper methods for authentication in Azure SDK @@ -9,9 +9,9 @@ license: mit licenses: - sources: LICENSE text: | - The MIT License (MIT) + Copyright (c) Microsoft Corporation. - Copyright (c) 2020 Microsoft + MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -23,7 +23,7 @@ licenses: 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 + 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 diff --git a/.licenses/npm/@azure/core-client.dep.yml b/.licenses/npm/@azure/core-client.dep.yml new file mode 100644 index 000000000..410915353 --- /dev/null +++ b/.licenses/npm/@azure/core-client.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@azure/core-client" +version: 1.10.1 +type: npm +summary: Core library for interfacing with AutoRest generated code +homepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-client/ +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) Microsoft Corporation. + + MIT License + + 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. +notices: [] diff --git a/.licenses/npm/@azure/core-http-compat.dep.yml b/.licenses/npm/@azure/core-http-compat.dep.yml new file mode 100644 index 000000000..1f0f6521f --- /dev/null +++ b/.licenses/npm/@azure/core-http-compat.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@azure/core-http-compat" +version: 2.3.1 +type: npm +summary: Core HTTP Compatibility Library to bridge the gap between Core V1 & V2 packages. +homepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-compat/ +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) Microsoft Corporation. + + MIT License + + 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. +notices: [] diff --git a/.licenses/npm/@azure/core-lro.dep.yml b/.licenses/npm/@azure/core-lro.dep.yml index 5f8c3da3b..46cbe6e51 100644 --- a/.licenses/npm/@azure/core-lro.dep.yml +++ b/.licenses/npm/@azure/core-lro.dep.yml @@ -1,6 +1,6 @@ --- name: "@azure/core-lro" -version: 2.2.4 +version: 2.7.2 type: npm summary: Isomorphic client library for supporting long-running operations in node.js and browser. diff --git a/.licenses/npm/@azure/core-paging.dep.yml b/.licenses/npm/@azure/core-paging.dep.yml index 6c8052904..cc3160584 100644 --- a/.licenses/npm/@azure/core-paging.dep.yml +++ b/.licenses/npm/@azure/core-paging.dep.yml @@ -1,6 +1,6 @@ --- name: "@azure/core-paging" -version: 1.2.1 +version: 1.6.2 type: npm summary: Core types for paging async iterable iterators homepage: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/core-paging/README.md diff --git a/.licenses/npm/@azure/core-rest-pipeline.dep.yml b/.licenses/npm/@azure/core-rest-pipeline.dep.yml new file mode 100644 index 000000000..7b3b7e6a9 --- /dev/null +++ b/.licenses/npm/@azure/core-rest-pipeline.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@azure/core-rest-pipeline" +version: 1.22.2 +type: npm +summary: Isomorphic client library for making HTTP requests in node.js and browser. +homepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-rest-pipeline/ +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) Microsoft Corporation. + + MIT License + + 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. +notices: [] diff --git a/.licenses/npm/@azure/core-tracing.dep.yml b/.licenses/npm/@azure/core-tracing.dep.yml index a4649e886..71f7b7f09 100644 --- a/.licenses/npm/@azure/core-tracing.dep.yml +++ b/.licenses/npm/@azure/core-tracing.dep.yml @@ -1,6 +1,6 @@ --- name: "@azure/core-tracing" -version: 1.0.0-preview.13 +version: 1.3.1 type: npm summary: Provides low-level interfaces and helper methods for tracing in Azure SDK homepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-tracing/README.md @@ -8,9 +8,9 @@ license: mit licenses: - sources: LICENSE text: | - The MIT License (MIT) + Copyright (c) Microsoft Corporation. - Copyright (c) 2020 Microsoft + MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -22,7 +22,7 @@ licenses: 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 + 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 diff --git a/.licenses/npm/@azure/core-util.dep.yml b/.licenses/npm/@azure/core-util.dep.yml new file mode 100644 index 000000000..a05648544 --- /dev/null +++ b/.licenses/npm/@azure/core-util.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@azure/core-util" +version: 1.13.1 +type: npm +summary: Core library for shared utility methods +homepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-util/ +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) Microsoft Corporation. + + MIT License + + 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. +notices: [] diff --git a/.licenses/npm/@azure/core-xml.dep.yml b/.licenses/npm/@azure/core-xml.dep.yml new file mode 100644 index 000000000..b82ec6d5b --- /dev/null +++ b/.licenses/npm/@azure/core-xml.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@azure/core-xml" +version: 1.5.0 +type: npm +summary: Core library for interacting with XML payloads +homepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-xml/ +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) Microsoft Corporation. + + MIT License + + 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. +notices: [] diff --git a/.licenses/npm/@azure/logger.dep.yml b/.licenses/npm/@azure/logger.dep.yml index 978e29a3d..065ecaa55 100644 --- a/.licenses/npm/@azure/logger.dep.yml +++ b/.licenses/npm/@azure/logger.dep.yml @@ -1,6 +1,6 @@ --- name: "@azure/logger" -version: 1.0.3 +version: 1.3.0 type: npm summary: Microsoft Azure SDK for JavaScript - Logger homepage: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/logger/README.md @@ -8,9 +8,9 @@ license: mit licenses: - sources: LICENSE text: | - The MIT License (MIT) + Copyright (c) Microsoft Corporation. - Copyright (c) 2020 Microsoft + MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -22,7 +22,7 @@ licenses: 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 + 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 diff --git a/.licenses/npm/@azure/ms-rest-js.dep.yml b/.licenses/npm/@azure/ms-rest-js.dep.yml deleted file mode 100644 index 4f729c7b5..000000000 --- a/.licenses/npm/@azure/ms-rest-js.dep.yml +++ /dev/null @@ -1,33 +0,0 @@ ---- -name: "@azure/ms-rest-js" -version: 2.6.1 -type: npm -summary: Isomorphic client Runtime for Typescript/node.js/browser javascript client - libraries generated using AutoRest -homepage: https://github.com/Azure/ms-rest-js -license: mit -licenses: -- sources: LICENSE - text: |2 - MIT License - - Copyright (c) Microsoft Corporation. All rights reserved. - - 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 -notices: [] diff --git a/.licenses/npm/@azure/storage-blob.dep.yml b/.licenses/npm/@azure/storage-blob.dep.yml index c364cf8e3..d0cb028fa 100644 --- a/.licenses/npm/@azure/storage-blob.dep.yml +++ b/.licenses/npm/@azure/storage-blob.dep.yml @@ -1,6 +1,6 @@ --- name: "@azure/storage-blob" -version: 12.9.0 +version: 12.29.1 type: npm summary: Microsoft Azure Storage SDK for JavaScript - Blob homepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/storage/storage-blob/ @@ -8,9 +8,9 @@ license: mit licenses: - sources: LICENSE text: | - The MIT License (MIT) + Copyright (c) Microsoft Corporation. - Copyright (c) 2020 Microsoft + MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -22,7 +22,7 @@ licenses: 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 + 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 diff --git a/.licenses/npm/@azure/core-http.dep.yml b/.licenses/npm/@azure/storage-common.dep.yml similarity index 84% rename from .licenses/npm/@azure/core-http.dep.yml rename to .licenses/npm/@azure/storage-common.dep.yml index 411b834db..fc3370913 100644 --- a/.licenses/npm/@azure/core-http.dep.yml +++ b/.licenses/npm/@azure/storage-common.dep.yml @@ -1,17 +1,16 @@ --- -name: "@azure/core-http" -version: 2.2.4 +name: "@azure/storage-common" +version: 12.1.1 type: npm -summary: Isomorphic client Runtime for Typescript/node.js/browser javascript client - libraries generated using AutoRest -homepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-http/README.md +summary: Azure Storage Common Client Library for JavaScript +homepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/storage/storage-internal-avro/ license: mit licenses: - sources: LICENSE - text: | + text: |- The MIT License (MIT) - Copyright (c) 2020 Microsoft + Copyright (c) 2018 Microsoft Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/.licenses/npm/@oozcitak/dom.dep.yml b/.licenses/npm/@oozcitak/dom.dep.yml index a810093aa..ee5008c28 100644 --- a/.licenses/npm/@oozcitak/dom.dep.yml +++ b/.licenses/npm/@oozcitak/dom.dep.yml @@ -1,6 +1,6 @@ --- name: "@oozcitak/dom" -version: 1.15.8 +version: 2.0.2 type: npm summary: A modern DOM implementation homepage: http://github.com/oozcitak/dom diff --git a/.licenses/npm/@oozcitak/infra.dep.yml b/.licenses/npm/@oozcitak/infra.dep.yml index eeac49dd3..b347e00a6 100644 --- a/.licenses/npm/@oozcitak/infra.dep.yml +++ b/.licenses/npm/@oozcitak/infra.dep.yml @@ -1,6 +1,6 @@ --- name: "@oozcitak/infra" -version: 1.0.8 +version: 2.0.2 type: npm summary: An implementation of the Infra Living Standard homepage: http://github.com/oozcitak/infra diff --git a/.licenses/npm/@oozcitak/url.dep.yml b/.licenses/npm/@oozcitak/url.dep.yml index 6f3ae3985..c7d7fb70e 100644 --- a/.licenses/npm/@oozcitak/url.dep.yml +++ b/.licenses/npm/@oozcitak/url.dep.yml @@ -1,6 +1,6 @@ --- name: "@oozcitak/url" -version: 1.0.4 +version: 3.0.0 type: npm summary: An implementation of the URL Living Standard homepage: http://github.com/oozcitak/url diff --git a/.licenses/npm/@oozcitak/util.dep.yml b/.licenses/npm/@oozcitak/util.dep.yml index dcee45c0f..855116ded 100644 --- a/.licenses/npm/@oozcitak/util.dep.yml +++ b/.licenses/npm/@oozcitak/util.dep.yml @@ -1,6 +1,6 @@ --- name: "@oozcitak/util" -version: 8.3.8 +version: 10.0.0 type: npm summary: Utility functions homepage: http://github.com/oozcitak/util diff --git a/.licenses/npm/@opentelemetry/api.dep.yml b/.licenses/npm/@protobuf-ts/runtime-rpc.dep.yml similarity index 82% rename from .licenses/npm/@opentelemetry/api.dep.yml rename to .licenses/npm/@protobuf-ts/runtime-rpc.dep.yml index 98dcaf46f..79644b5d7 100644 --- a/.licenses/npm/@opentelemetry/api.dep.yml +++ b/.licenses/npm/@protobuf-ts/runtime-rpc.dep.yml @@ -1,14 +1,14 @@ --- -name: "@opentelemetry/api" -version: 1.0.4 +name: "@protobuf-ts/runtime-rpc" +version: 2.11.1 type: npm -summary: Public API for OpenTelemetry -homepage: https://github.com/open-telemetry/opentelemetry-js-api#readme +summary: Runtime library for RPC clients generated by the protoc plugin "protobuf-ts" +homepage: https://github.com/timostamm/protobuf-ts license: apache-2.0 licenses: - sources: LICENSE text: |2 - Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -182,44 +182,4 @@ licenses: defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -- sources: README.md - text: |- - Apache 2.0 - See [LICENSE][license-url] for more information. - - [opentelemetry-js]: https://github.com/open-telemetry/opentelemetry-js - - [discussions-url]: https://github.com/open-telemetry/opentelemetry-js/discussions - [license-url]: https://github.com/open-telemetry/opentelemetry-js-api/blob/main/LICENSE - [license-image]: https://img.shields.io/badge/license-Apache_2.0-green.svg?style=flat - [npm-url]: https://www.npmjs.com/package/@opentelemetry/api - [npm-img]: https://badge.fury.io/js/%40opentelemetry%2Fapi.svg - [docs-tracing]: https://github.com/open-telemetry/opentelemetry-js-api/blob/main/docs/tracing.md - [docs-sdk-registration]: https://github.com/open-telemetry/opentelemetry-js-api/blob/main/docs/sdk-registration.md notices: [] diff --git a/.licenses/npm/@protobuf-ts/runtime.dep.yml b/.licenses/npm/@protobuf-ts/runtime.dep.yml new file mode 100644 index 000000000..7a210232d --- /dev/null +++ b/.licenses/npm/@protobuf-ts/runtime.dep.yml @@ -0,0 +1,185 @@ +--- +name: "@protobuf-ts/runtime" +version: 2.11.1 +type: npm +summary: Runtime library for code generated by the protoc plugin "protobuf-ts" +homepage: https://github.com/timostamm/protobuf-ts +license: apache-2.0 +licenses: +- sources: LICENSE + text: |2 + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. +notices: [] diff --git a/.licenses/npm/@types/node-14.6.2.dep.yml b/.licenses/npm/@types/node-14.6.2.dep.yml deleted file mode 100644 index 7584aa9c3..000000000 --- a/.licenses/npm/@types/node-14.6.2.dep.yml +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: "@types/node" -version: 14.6.2 -type: npm -summary: TypeScript definitions for Node.js -homepage: https://github.com/DefinitelyTyped/DefinitelyTyped#readme -license: mit -licenses: -- sources: LICENSE - text: |2 - MIT License - - Copyright (c) Microsoft Corporation. - - 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 -notices: [] diff --git a/.licenses/npm/@types/node-16.11.25.dep.yml b/.licenses/npm/@types/node-16.11.25.dep.yml deleted file mode 100644 index ffa0d8fa0..000000000 --- a/.licenses/npm/@types/node-16.11.25.dep.yml +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: "@types/node" -version: 16.11.25 -type: npm -summary: TypeScript definitions for Node.js -homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node -license: mit -licenses: -- sources: LICENSE - text: |2 - MIT License - - Copyright (c) Microsoft Corporation. - - 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 -notices: [] diff --git a/.licenses/npm/@types/node-fetch.dep.yml b/.licenses/npm/@types/node-fetch.dep.yml deleted file mode 100644 index 2580f9425..000000000 --- a/.licenses/npm/@types/node-fetch.dep.yml +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: "@types/node-fetch" -version: 2.6.1 -type: npm -summary: TypeScript definitions for node-fetch -homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node-fetch -license: mit -licenses: -- sources: LICENSE - text: |2 - MIT License - - Copyright (c) Microsoft Corporation. - - 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 -notices: [] diff --git a/.licenses/npm/@types/tunnel.dep.yml b/.licenses/npm/@types/tunnel.dep.yml deleted file mode 100644 index b3636b02d..000000000 --- a/.licenses/npm/@types/tunnel.dep.yml +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: "@types/tunnel" -version: 0.0.3 -type: npm -summary: TypeScript definitions for tunnel -homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/tunnel -license: mit -licenses: -- sources: LICENSE - text: |2 - MIT License - - Copyright (c) Microsoft Corporation. - - 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 -notices: [] diff --git a/.licenses/npm/@typespec/ts-http-runtime.dep.yml b/.licenses/npm/@typespec/ts-http-runtime.dep.yml new file mode 100644 index 000000000..4b4764430 --- /dev/null +++ b/.licenses/npm/@typespec/ts-http-runtime.dep.yml @@ -0,0 +1,32 @@ +--- +name: "@typespec/ts-http-runtime" +version: 0.3.2 +type: npm +summary: Isomorphic client library for making HTTP requests in node.js and browser. +homepage: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/ts-http-runtime/ +license: mit +licenses: +- sources: LICENSE + text: | + Copyright (c) Microsoft Corporation. + + MIT License + + 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. +notices: [] diff --git a/.licenses/npm/mime-types.dep.yml b/.licenses/npm/agent-base.dep.yml similarity index 55% rename from .licenses/npm/mime-types.dep.yml rename to .licenses/npm/agent-base.dep.yml index 6368826b6..54c324a34 100644 --- a/.licenses/npm/mime-types.dep.yml +++ b/.licenses/npm/agent-base.dep.yml @@ -1,17 +1,16 @@ --- -name: mime-types -version: 2.1.29 +name: agent-base +version: 7.1.4 type: npm -summary: The ultimate javascript content-type utility. -homepage: https://github.com/jshttp/mime-types#readme +summary: Turn a function into an `http.Agent` instance +homepage: license: mit licenses: - sources: LICENSE - text: | + text: |- (The MIT License) - Copyright (c) 2014 Jonathan Ong - Copyright (c) 2015 Douglas Christopher Wilson + Copyright (c) 2013 Nathan Rajlich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the @@ -31,17 +30,4 @@ licenses: 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. -- sources: README.md - text: |- - [MIT](LICENSE) - - [ci-image]: https://badgen.net/github/checks/jshttp/mime-types/master?label=ci - [ci-url]: https://github.com/jshttp/mime-types/actions?query=workflow%3Aci - [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/mime-types/master - [coveralls-url]: https://coveralls.io/r/jshttp/mime-types?branch=master - [node-version-image]: https://badgen.net/npm/node/mime-types - [node-version-url]: https://nodejs.org/en/download - [npm-downloads-image]: https://badgen.net/npm/dm/mime-types - [npm-url]: https://npmjs.org/package/mime-types - [npm-version-image]: https://badgen.net/npm/v/mime-types notices: [] diff --git a/.licenses/npm/argparse.dep.yml b/.licenses/npm/argparse.dep.yml index 2cd2843cf..0eba425d7 100644 --- a/.licenses/npm/argparse.dep.yml +++ b/.licenses/npm/argparse.dep.yml @@ -1,38 +1,265 @@ --- name: argparse -version: 1.0.10 +version: 2.0.1 type: npm -summary: Very powerful CLI arguments parser. Native port of argparse - python's options - parsing library -homepage: https://github.com/nodeca/argparse#readme -license: mit +summary: CLI arguments parser. Native port of python's argparse. +homepage: +license: other licenses: - sources: LICENSE text: | - (The MIT License) - - Copyright (C) 2012 by Vitaly Puzrin - - 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. -- sources: README.md - text: |- - Copyright (c) 2012 [Vitaly Puzrin](https://github.com/puzrin). - Released under the MIT license. See - [LICENSE](https://github.com/nodeca/argparse/blob/master/LICENSE) for details. + A. HISTORY OF THE SOFTWARE + ========================== + + Python was created in the early 1990s by Guido van Rossum at Stichting + Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands + as a successor of a language called ABC. Guido remains Python's + principal author, although it includes many contributions from others. + + In 1995, Guido continued his work on Python at the Corporation for + National Research Initiatives (CNRI, see http://www.cnri.reston.va.us) + in Reston, Virginia where he released several versions of the + software. + + In May 2000, Guido and the Python core development team moved to + BeOpen.com to form the BeOpen PythonLabs team. In October of the same + year, the PythonLabs team moved to Digital Creations, which became + Zope Corporation. In 2001, the Python Software Foundation (PSF, see + https://www.python.org/psf/) was formed, a non-profit organization + created specifically to own Python-related Intellectual Property. + Zope Corporation was a sponsoring member of the PSF. + + All Python releases are Open Source (see http://www.opensource.org for + the Open Source Definition). Historically, most, but not all, Python + releases have also been GPL-compatible; the table below summarizes + the various releases. + + Release Derived Year Owner GPL- + from compatible? (1) + + 0.9.0 thru 1.2 1991-1995 CWI yes + 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes + 1.6 1.5.2 2000 CNRI no + 2.0 1.6 2000 BeOpen.com no + 1.6.1 1.6 2001 CNRI yes (2) + 2.1 2.0+1.6.1 2001 PSF no + 2.0.1 2.0+1.6.1 2001 PSF yes + 2.1.1 2.1+2.0.1 2001 PSF yes + 2.1.2 2.1.1 2002 PSF yes + 2.1.3 2.1.2 2002 PSF yes + 2.2 and above 2.1.1 2001-now PSF yes + + Footnotes: + + (1) GPL-compatible doesn't mean that we're distributing Python under + the GPL. All Python licenses, unlike the GPL, let you distribute + a modified version without making your changes open source. The + GPL-compatible licenses make it possible to combine Python with + other software that is released under the GPL; the others don't. + + (2) According to Richard Stallman, 1.6.1 is not GPL-compatible, + because its license has a choice of law clause. According to + CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1 + is "not incompatible" with the GPL. + + Thanks to the many outside volunteers who have worked under Guido's + direction to make these releases possible. + + + B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON + =============================================================== + + PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 + -------------------------------------------- + + 1. This LICENSE AGREEMENT is between the Python Software Foundation + ("PSF"), and the Individual or Organization ("Licensee") accessing and + otherwise using this software ("Python") in source or binary form and + its associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, PSF hereby + grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, + analyze, test, perform and/or display publicly, prepare derivative works, + distribute, and otherwise use Python alone or in any derivative version, + provided, however, that PSF's License Agreement and PSF's notice of copyright, + i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, + 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Python Software Foundation; + All Rights Reserved" are retained in Python alone or in any derivative version + prepared by Licensee. + + 3. In the event Licensee prepares a derivative work that is based on + or incorporates Python or any part thereof, and wants to make + the derivative work available to others as provided herein, then + Licensee hereby agrees to include in any such work a brief summary of + the changes made to Python. + + 4. PSF is making Python available to Licensee on an "AS IS" + basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND + DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT + INFRINGE ANY THIRD PARTY RIGHTS. + + 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON + FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS + A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, + OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 7. Nothing in this License Agreement shall be deemed to create any + relationship of agency, partnership, or joint venture between PSF and + Licensee. This License Agreement does not grant permission to use PSF + trademarks or trade name in a trademark sense to endorse or promote + products or services of Licensee, or any third party. + + 8. By copying, installing or otherwise using Python, Licensee + agrees to be bound by the terms and conditions of this License + Agreement. + + + BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 + ------------------------------------------- + + BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + + 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an + office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the + Individual or Organization ("Licensee") accessing and otherwise using + this software in source or binary form and its associated + documentation ("the Software"). + + 2. Subject to the terms and conditions of this BeOpen Python License + Agreement, BeOpen hereby grants Licensee a non-exclusive, + royalty-free, world-wide license to reproduce, analyze, test, perform + and/or display publicly, prepare derivative works, distribute, and + otherwise use the Software alone or in any derivative version, + provided, however, that the BeOpen Python License is retained in the + Software, alone or in any derivative version prepared by Licensee. + + 3. BeOpen is making the Software available to Licensee on an "AS IS" + basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND + DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT + INFRINGE ANY THIRD PARTY RIGHTS. + + 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE + SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS + AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY + DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 5. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 6. This License Agreement shall be governed by and interpreted in all + respects by the law of the State of California, excluding conflict of + law provisions. Nothing in this License Agreement shall be deemed to + create any relationship of agency, partnership, or joint venture + between BeOpen and Licensee. This License Agreement does not grant + permission to use BeOpen trademarks or trade names in a trademark + sense to endorse or promote products or services of Licensee, or any + third party. As an exception, the "BeOpen Python" logos available at + http://www.pythonlabs.com/logos.html may be used according to the + permissions granted on that web page. + + 7. By copying, installing or otherwise using the software, Licensee + agrees to be bound by the terms and conditions of this License + Agreement. + + + CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 + --------------------------------------- + + 1. This LICENSE AGREEMENT is between the Corporation for National + Research Initiatives, having an office at 1895 Preston White Drive, + Reston, VA 20191 ("CNRI"), and the Individual or Organization + ("Licensee") accessing and otherwise using Python 1.6.1 software in + source or binary form and its associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, CNRI + hereby grants Licensee a nonexclusive, royalty-free, world-wide + license to reproduce, analyze, test, perform and/or display publicly, + prepare derivative works, distribute, and otherwise use Python 1.6.1 + alone or in any derivative version, provided, however, that CNRI's + License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) + 1995-2001 Corporation for National Research Initiatives; All Rights + Reserved" are retained in Python 1.6.1 alone or in any derivative + version prepared by Licensee. Alternately, in lieu of CNRI's License + Agreement, Licensee may substitute the following text (omitting the + quotes): "Python 1.6.1 is made available subject to the terms and + conditions in CNRI's License Agreement. This Agreement together with + Python 1.6.1 may be located on the Internet using the following + unique, persistent identifier (known as a handle): 1895.22/1013. This + Agreement may also be obtained from a proxy server on the Internet + using the following URL: http://hdl.handle.net/1895.22/1013". + + 3. In the event Licensee prepares a derivative work that is based on + or incorporates Python 1.6.1 or any part thereof, and wants to make + the derivative work available to others as provided herein, then + Licensee hereby agrees to include in any such work a brief summary of + the changes made to Python 1.6.1. + + 4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" + basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR + IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND + DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS + FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT + INFRINGE ANY THIRD PARTY RIGHTS. + + 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON + 1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS + A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, + OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material + breach of its terms and conditions. + + 7. This License Agreement shall be governed by the federal + intellectual property law of the United States, including without + limitation the federal copyright law, and, to the extent such + U.S. federal law does not apply, by the law of the Commonwealth of + Virginia, excluding Virginia's conflict of law provisions. + Notwithstanding the foregoing, with regard to derivative works based + on Python 1.6.1 that incorporate non-separable material that was + previously distributed under the GNU General Public License (GPL), the + law of the Commonwealth of Virginia shall govern this License + Agreement only as to issues arising under or with respect to + Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this + License Agreement shall be deemed to create any relationship of + agency, partnership, or joint venture between CNRI and Licensee. This + License Agreement does not grant permission to use CNRI trademarks or + trade name in a trademark sense to endorse or promote products or + services of Licensee, or any third party. + + 8. By clicking on the "ACCEPT" button where indicated, or by copying, + installing or otherwise using Python 1.6.1, Licensee agrees to be + bound by the terms and conditions of this License Agreement. + + ACCEPT + + + CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 + -------------------------------------------------- + + Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, + The Netherlands. All rights reserved. + + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee is hereby granted, + provided that the above copyright notice appear in all copies and that + both that copyright notice and this permission notice appear in + supporting documentation, and that the name of Stichting Mathematisch + Centrum or CWI not be used in advertising or publicity pertaining to + distribution of the software without specific, written prior + permission. + + STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO + THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE + FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT + OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. notices: [] diff --git a/.licenses/npm/balanced-match.dep.yml b/.licenses/npm/balanced-match.dep.yml index 1d768a8e6..36095592b 100644 --- a/.licenses/npm/balanced-match.dep.yml +++ b/.licenses/npm/balanced-match.dep.yml @@ -1,6 +1,6 @@ --- name: balanced-match -version: 1.0.0 +version: 1.0.2 type: npm summary: Match balanced character pairs, like "{" and "}" homepage: https://github.com/juliangruber/balanced-match diff --git a/.licenses/npm/brace-expansion.dep.yml b/.licenses/npm/brace-expansion.dep.yml index 8fa6cfb31..4d1ed8b3d 100644 --- a/.licenses/npm/brace-expansion.dep.yml +++ b/.licenses/npm/brace-expansion.dep.yml @@ -1,6 +1,6 @@ --- name: brace-expansion -version: 1.1.11 +version: 1.1.13 type: npm summary: Brace expansion as known from sh/bash homepage: https://github.com/juliangruber/brace-expansion diff --git a/.licenses/npm/combined-stream.dep.yml b/.licenses/npm/combined-stream.dep.yml deleted file mode 100644 index 2b392155d..000000000 --- a/.licenses/npm/combined-stream.dep.yml +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: combined-stream -version: 1.0.8 -type: npm -summary: A stream that emits multiple other streams one after another. -homepage: https://github.com/felixge/node-combined-stream -license: mit -licenses: -- sources: License - text: | - Copyright (c) 2011 Debuggable Limited - - 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. -- sources: Readme.md - text: combined-stream is licensed under the MIT license. -notices: [] diff --git a/.licenses/npm/debug.dep.yml b/.licenses/npm/debug.dep.yml new file mode 100644 index 000000000..b9b723389 --- /dev/null +++ b/.licenses/npm/debug.dep.yml @@ -0,0 +1,56 @@ +--- +name: debug +version: 4.3.4 +type: npm +summary: Lightweight debugging utility for Node.js and the browser +homepage: +license: mit +licenses: +- sources: LICENSE + text: |+ + (The MIT License) + + Copyright (c) 2014-2017 TJ Holowaychuk + Copyright (c) 2018-2021 Josh Junon + + 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. + +- sources: README.md + text: |- + (The MIT License) + + Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca> + Copyright (c) 2018-2021 Josh Junon + + 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. +notices: [] diff --git a/.licenses/npm/delayed-stream.dep.yml b/.licenses/npm/delayed-stream.dep.yml deleted file mode 100644 index 124012173..000000000 --- a/.licenses/npm/delayed-stream.dep.yml +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: delayed-stream -version: 1.0.0 -type: npm -summary: Buffers events from a stream until you are ready to handle them. -homepage: https://github.com/felixge/node-delayed-stream -license: mit -licenses: -- sources: License - text: | - Copyright (c) 2011 Debuggable Limited - - 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. -- sources: Readme.md - text: delayed-stream is licensed under the MIT license. -notices: [] diff --git a/.licenses/npm/esprima.dep.yml b/.licenses/npm/esprima.dep.yml deleted file mode 100644 index 538091c52..000000000 --- a/.licenses/npm/esprima.dep.yml +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: esprima -version: 4.0.1 -type: npm -summary: ECMAScript parsing infrastructure for multipurpose analysis -homepage: http://esprima.org -license: bsd-2-clause -licenses: -- sources: LICENSE.BSD - text: | - Copyright JS Foundation and other contributors, https://js.foundation/ - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY - DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -notices: [] diff --git a/.licenses/npm/tr46.dep.yml b/.licenses/npm/fast-xml-builder.dep.yml similarity index 86% rename from .licenses/npm/tr46.dep.yml rename to .licenses/npm/fast-xml-builder.dep.yml index 3bacc6ec4..56c100e99 100644 --- a/.licenses/npm/tr46.dep.yml +++ b/.licenses/npm/fast-xml-builder.dep.yml @@ -1,15 +1,17 @@ --- -name: tr46 -version: 0.0.3 +name: fast-xml-builder +version: 1.1.4 type: npm -summary: An implementation of the Unicode TR46 spec -homepage: https://github.com/Sebmaster/tr46.js#readme +summary: Build XML from JSON without C/C++ based libraries +homepage: license: mit licenses: -- sources: Auto-generated MIT license text +- sources: LICENSE text: | MIT License + Copyright (c) 2026 Natural Intelligence + 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 diff --git a/.licenses/npm/asynckit.dep.yml b/.licenses/npm/fast-xml-parser.dep.yml similarity index 81% rename from .licenses/npm/asynckit.dep.yml rename to .licenses/npm/fast-xml-parser.dep.yml index 905e0aaa9..7952486c5 100644 --- a/.licenses/npm/asynckit.dep.yml +++ b/.licenses/npm/fast-xml-parser.dep.yml @@ -1,16 +1,16 @@ --- -name: asynckit -version: 0.4.0 +name: fast-xml-parser +version: 5.5.10 type: npm -summary: Minimal async jobs utility library, with streams support -homepage: https://github.com/alexindigo/asynckit#readme +summary: Validate XML, Parse XML, Build XML without C/C++ based libraries +homepage: license: mit licenses: - sources: LICENSE text: | - The MIT License (MIT) + MIT License - Copyright (c) 2016 Alex Indigo + Copyright (c) 2017 Amit Kumar Gupta Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -30,5 +30,8 @@ licenses: OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - sources: README.md - text: AsyncKit is licensed under the MIT license. + text: |- + * MIT License + + ![Donate $5](static/img/donation_quote.png) notices: [] diff --git a/.licenses/npm/form-data-2.5.1.dep.yml b/.licenses/npm/form-data-2.5.1.dep.yml deleted file mode 100644 index 000f2223a..000000000 --- a/.licenses/npm/form-data-2.5.1.dep.yml +++ /dev/null @@ -1,33 +0,0 @@ ---- -name: form-data -version: 2.5.1 -type: npm -summary: A library to create readable "multipart/form-data" streams. Can be used to - submit forms and file uploads to other web applications. -homepage: https://github.com/form-data/form-data#readme -license: mit -licenses: -- sources: License - text: | - Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors - - 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. -- sources: README.md - text: Form-Data is released under the [MIT](License) license. -notices: [] diff --git a/.licenses/npm/form-data-3.0.1.dep.yml b/.licenses/npm/form-data-3.0.1.dep.yml deleted file mode 100644 index 117336792..000000000 --- a/.licenses/npm/form-data-3.0.1.dep.yml +++ /dev/null @@ -1,33 +0,0 @@ ---- -name: form-data -version: 3.0.1 -type: npm -summary: A library to create readable "multipart/form-data" streams. Can be used to - submit forms and file uploads to other web applications. -homepage: https://github.com/form-data/form-data#readme -license: mit -licenses: -- sources: License - text: | - Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors - - 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. -- sources: Readme.md - text: Form-Data is released under the [MIT](License) license. -notices: [] diff --git a/.licenses/npm/form-data-4.0.0.dep.yml b/.licenses/npm/form-data-4.0.0.dep.yml deleted file mode 100644 index ced7212cc..000000000 --- a/.licenses/npm/form-data-4.0.0.dep.yml +++ /dev/null @@ -1,33 +0,0 @@ ---- -name: form-data -version: 4.0.0 -type: npm -summary: A library to create readable "multipart/form-data" streams. Can be used to - submit forms and file uploads to other web applications. -homepage: https://github.com/form-data/form-data#readme -license: mit -licenses: -- sources: License - text: | - Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors - - 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. -- sources: Readme.md - text: Form-Data is released under the [MIT](License) license. -notices: [] diff --git a/.licenses/npm/process.dep.yml b/.licenses/npm/http-proxy-agent.dep.yml similarity index 85% rename from .licenses/npm/process.dep.yml rename to .licenses/npm/http-proxy-agent.dep.yml index 2bf50598a..bcd275739 100644 --- a/.licenses/npm/process.dep.yml +++ b/.licenses/npm/http-proxy-agent.dep.yml @@ -1,16 +1,16 @@ --- -name: process -version: 0.11.10 +name: http-proxy-agent +version: 7.0.2 type: npm -summary: process information for node.js and browsers -homepage: https://github.com/shtylman/node-process#readme +summary: An HTTP(s) proxy `http.Agent` implementation for HTTP +homepage: license: mit licenses: - sources: LICENSE text: | (The MIT License) - Copyright (c) 2013 Roman Shtylman + Copyright (c) 2013 Nathan Rajlich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/.licenses/npm/https-proxy-agent.dep.yml b/.licenses/npm/https-proxy-agent.dep.yml new file mode 100644 index 000000000..7b6e176d7 --- /dev/null +++ b/.licenses/npm/https-proxy-agent.dep.yml @@ -0,0 +1,33 @@ +--- +name: https-proxy-agent +version: 7.0.6 +type: npm +summary: An HTTP(s) proxy `http.Agent` implementation for HTTPS +homepage: +license: mit +licenses: +- sources: LICENSE + text: |- + (The MIT License) + + Copyright (c) 2013 Nathan Rajlich + + 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. +notices: [] diff --git a/.licenses/npm/ip-regex.dep.yml b/.licenses/npm/ip-regex.dep.yml deleted file mode 100644 index 95d4b6b56..000000000 --- a/.licenses/npm/ip-regex.dep.yml +++ /dev/null @@ -1,34 +0,0 @@ ---- -name: ip-regex -version: 2.1.0 -type: npm -summary: Regular expression for matching IP addresses (IPv4 & IPv6) -homepage: https://github.com/sindresorhus/ip-regex#readme -license: mit -licenses: -- sources: license - text: | - The MIT License (MIT) - - Copyright (c) Sindre Sorhus (sindresorhus.com) - - 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. -- sources: readme.md - text: MIT © [Sindre Sorhus](https://sindresorhus.com) -notices: [] diff --git a/.licenses/npm/js-yaml.dep.yml b/.licenses/npm/js-yaml.dep.yml index 3b8875d01..f495d93d6 100644 --- a/.licenses/npm/js-yaml.dep.yml +++ b/.licenses/npm/js-yaml.dep.yml @@ -1,9 +1,9 @@ --- name: js-yaml -version: 3.14.0 +version: 4.1.1 type: npm summary: YAML 1.2 parser and serializer -homepage: https://github.com/nodeca/js-yaml +homepage: license: mit licenses: - sources: LICENSE diff --git a/.licenses/npm/lru-cache.dep.yml b/.licenses/npm/lru-cache.dep.yml deleted file mode 100644 index 920e7dc58..000000000 --- a/.licenses/npm/lru-cache.dep.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: lru-cache -version: 6.0.0 -type: npm -summary: A cache object that deletes the least-recently-used items. -homepage: https://github.com/isaacs/node-lru-cache#readme -license: isc -licenses: -- sources: LICENSE - text: | - The ISC License - - Copyright (c) Isaac Z. Schlueter and Contributors - - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR - IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -notices: [] diff --git a/.licenses/npm/mime-db.dep.yml b/.licenses/npm/mime-db.dep.yml deleted file mode 100644 index f9035c740..000000000 --- a/.licenses/npm/mime-db.dep.yml +++ /dev/null @@ -1,33 +0,0 @@ ---- -name: mime-db -version: 1.46.0 -type: npm -summary: Media Type Database -homepage: https://github.com/jshttp/mime-db#readme -license: mit -licenses: -- sources: LICENSE - text: |2 - - The MIT License (MIT) - - Copyright (c) 2014 Jonathan Ong me@jongleberry.com - - 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. -notices: [] diff --git a/.licenses/npm/minimatch.dep.yml b/.licenses/npm/minimatch.dep.yml index 317e4bc87..81a973572 100644 --- a/.licenses/npm/minimatch.dep.yml +++ b/.licenses/npm/minimatch.dep.yml @@ -1,9 +1,9 @@ --- name: minimatch -version: 3.0.4 +version: 3.1.5 type: npm summary: a glob matcher in javascript -homepage: https://github.com/isaacs/minimatch#readme +homepage: license: isc licenses: - sources: LICENSE diff --git a/.licenses/npm/event-target-shim.dep.yml b/.licenses/npm/ms.dep.yml similarity index 83% rename from .licenses/npm/event-target-shim.dep.yml rename to .licenses/npm/ms.dep.yml index 7a3fc011b..ac3c8eb15 100644 --- a/.licenses/npm/event-target-shim.dep.yml +++ b/.licenses/npm/ms.dep.yml @@ -1,16 +1,16 @@ --- -name: event-target-shim -version: 5.0.1 +name: ms +version: 2.1.2 type: npm -summary: An implementation of WHATWG EventTarget interface. -homepage: https://github.com/mysticatea/event-target-shim +summary: Tiny millisecond conversion utility +homepage: license: mit licenses: -- sources: LICENSE - text: |+ +- sources: license.md + text: | The MIT License (MIT) - Copyright (c) 2015 Toru Nagashima + Copyright (c) 2016 Zeit, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -29,5 +29,4 @@ licenses: 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. - notices: [] diff --git a/.licenses/npm/node-fetch.dep.yml b/.licenses/npm/node-fetch.dep.yml deleted file mode 100644 index b49a78a11..000000000 --- a/.licenses/npm/node-fetch.dep.yml +++ /dev/null @@ -1,56 +0,0 @@ ---- -name: node-fetch -version: 2.6.7 -type: npm -summary: A light-weight module that brings window.fetch to node.js -homepage: https://github.com/bitinn/node-fetch -license: mit -licenses: -- sources: LICENSE.md - text: |+ - The MIT License (MIT) - - Copyright (c) 2016 David Frank - - 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. - -- sources: README.md - text: |- - MIT - - [npm-image]: https://flat.badgen.net/npm/v/node-fetch - [npm-url]: https://www.npmjs.com/package/node-fetch - [travis-image]: https://flat.badgen.net/travis/bitinn/node-fetch - [travis-url]: https://travis-ci.org/bitinn/node-fetch - [codecov-image]: https://flat.badgen.net/codecov/c/github/bitinn/node-fetch/master - [codecov-url]: https://codecov.io/gh/bitinn/node-fetch - [install-size-image]: https://flat.badgen.net/packagephobia/install/node-fetch - [install-size-url]: https://packagephobia.now.sh/result?p=node-fetch - [discord-image]: https://img.shields.io/discord/619915844268326952?color=%237289DA&label=Discord&style=flat-square - [discord-url]: https://discord.gg/Zxbndcm - [opencollective-image]: https://opencollective.com/node-fetch/backers.svg - [opencollective-url]: https://opencollective.com/node-fetch - [whatwg-fetch]: https://fetch.spec.whatwg.org/ - [response-init]: https://fetch.spec.whatwg.org/#responseinit - [node-readable]: https://nodejs.org/api/stream.html#stream_readable_streams - [mdn-headers]: https://developer.mozilla.org/en-US/docs/Web/API/Headers - [LIMITS.md]: https://github.com/bitinn/node-fetch/blob/master/LIMITS.md - [ERROR-HANDLING.md]: https://github.com/bitinn/node-fetch/blob/master/ERROR-HANDLING.md - [UPGRADE-GUIDE.md]: https://github.com/bitinn/node-fetch/blob/master/UPGRADE-GUIDE.md -notices: [] diff --git a/.licenses/npm/path-expression-matcher.dep.yml b/.licenses/npm/path-expression-matcher.dep.yml new file mode 100644 index 000000000..d388e1690 --- /dev/null +++ b/.licenses/npm/path-expression-matcher.dep.yml @@ -0,0 +1,32 @@ +--- +name: path-expression-matcher +version: 1.4.0 +type: npm +summary: Efficient path tracking and pattern matching for XML/JSON parsers +homepage: https://github.com/NaturalIntelligence/path-expression-matcher#readme +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) 2024 + + 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. +notices: [] diff --git a/.licenses/npm/psl.dep.yml b/.licenses/npm/psl.dep.yml deleted file mode 100644 index 385e9aace..000000000 --- a/.licenses/npm/psl.dep.yml +++ /dev/null @@ -1,43 +0,0 @@ ---- -name: psl -version: 1.8.0 -type: npm -summary: Domain name parser based on the Public Suffix List -homepage: https://github.com/lupomontero/psl#readme -license: mit -licenses: -- sources: LICENSE - text: | - The MIT License (MIT) - - Copyright (c) 2017 Lupo Montero lupomontero@gmail.com - - 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. -- sources: README.md - text: |- - The MIT License (MIT) - - Copyright (c) 2017 Lupo Montero - - 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. -notices: [] diff --git a/.licenses/npm/punycode.dep.yml b/.licenses/npm/punycode.dep.yml deleted file mode 100644 index 4a9547e61..000000000 --- a/.licenses/npm/punycode.dep.yml +++ /dev/null @@ -1,34 +0,0 @@ ---- -name: punycode -version: 2.1.1 -type: npm -summary: A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, - and works on nearly all JavaScript platforms. -homepage: https://mths.be/punycode -license: mit -licenses: -- sources: LICENSE-MIT.txt - text: | - Copyright Mathias Bynens - - 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. -- sources: README.md - text: Punycode.js is available under the [MIT](https://mths.be/mit) license. -notices: [] diff --git a/.licenses/npm/sax.dep.yml b/.licenses/npm/sax.dep.yml deleted file mode 100644 index c5238289c..000000000 --- a/.licenses/npm/sax.dep.yml +++ /dev/null @@ -1,52 +0,0 @@ ---- -name: sax -version: 1.2.4 -type: npm -summary: An evented streaming XML parser in JavaScript -homepage: https://github.com/isaacs/sax-js#readme -license: isc -licenses: -- sources: LICENSE - text: | - The ISC License - - Copyright (c) Isaac Z. Schlueter and Contributors - - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR - IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - ==== - - `String.fromCodePoint` by Mathias Bynens used according to terms of MIT - License, as follows: - - Copyright Mathias Bynens - - 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. -notices: [] diff --git a/.licenses/npm/semver-6.3.0.dep.yml b/.licenses/npm/semver-6.3.1.dep.yml similarity index 93% rename from .licenses/npm/semver-6.3.0.dep.yml rename to .licenses/npm/semver-6.3.1.dep.yml index 8c62b4ffb..248cb0301 100644 --- a/.licenses/npm/semver-6.3.0.dep.yml +++ b/.licenses/npm/semver-6.3.1.dep.yml @@ -1,9 +1,9 @@ --- name: semver -version: 6.3.0 +version: 6.3.1 type: npm summary: The semantic version parser used by npm. -homepage: https://github.com/npm/node-semver#readme +homepage: license: isc licenses: - sources: LICENSE diff --git a/.licenses/npm/semver-7.3.4.dep.yml b/.licenses/npm/semver-7.7.1.dep.yml similarity index 93% rename from .licenses/npm/semver-7.3.4.dep.yml rename to .licenses/npm/semver-7.7.1.dep.yml index 3062ac078..3194cf4ae 100644 --- a/.licenses/npm/semver-7.3.4.dep.yml +++ b/.licenses/npm/semver-7.7.1.dep.yml @@ -1,9 +1,9 @@ --- name: semver -version: 7.3.4 +version: 7.7.1 type: npm summary: The semantic version parser used by npm. -homepage: https://github.com/npm/node-semver#readme +homepage: license: isc licenses: - sources: LICENSE diff --git a/.licenses/npm/sprintf-js.dep.yml b/.licenses/npm/sprintf-js.dep.yml deleted file mode 100644 index e7157634f..000000000 --- a/.licenses/npm/sprintf-js.dep.yml +++ /dev/null @@ -1,37 +0,0 @@ ---- -name: sprintf-js -version: 1.0.3 -type: npm -summary: JavaScript sprintf implementation -homepage: https://github.com/alexei/sprintf.js#readme -license: bsd-3-clause -licenses: -- sources: LICENSE - text: | - Copyright (c) 2007-2014, Alexandru Marasteanu - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of this software nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- sources: README.md - text: "**sprintf.js** is licensed under the terms of the 3-clause BSD license." -notices: [] diff --git a/.licenses/npm/abort-controller.dep.yml b/.licenses/npm/strnum.dep.yml similarity index 85% rename from .licenses/npm/abort-controller.dep.yml rename to .licenses/npm/strnum.dep.yml index 492a609bb..42bffe03b 100644 --- a/.licenses/npm/abort-controller.dep.yml +++ b/.licenses/npm/strnum.dep.yml @@ -1,16 +1,16 @@ --- -name: abort-controller -version: 3.0.0 +name: strnum +version: 2.2.3 type: npm -summary: An implementation of WHATWG AbortController interface. -homepage: https://github.com/mysticatea/abort-controller#readme +summary: Parse String to Number based on configuration +homepage: license: mit licenses: - sources: LICENSE text: | MIT License - Copyright (c) 2017 Toru Nagashima + Copyright (c) 2021 Natural Intelligence Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/.licenses/npm/tough-cookie-3.0.1.dep.yml b/.licenses/npm/tough-cookie-3.0.1.dep.yml deleted file mode 100644 index 1496c1093..000000000 --- a/.licenses/npm/tough-cookie-3.0.1.dep.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -name: tough-cookie -version: 3.0.1 -type: npm -summary: RFC6265 Cookies and Cookie Jar for node.js -homepage: https://github.com/salesforce/tough-cookie -license: bsd-3-clause -licenses: -- sources: LICENSE - text: | - Copyright (c) 2015, Salesforce.com, Inc. - All rights reserved. - - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - 3. Neither the name of Salesforce.com nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -notices: [] diff --git a/.licenses/npm/tough-cookie-4.0.0.dep.yml b/.licenses/npm/tough-cookie-4.0.0.dep.yml deleted file mode 100644 index 71ee47500..000000000 --- a/.licenses/npm/tough-cookie-4.0.0.dep.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -name: tough-cookie -version: 4.0.0 -type: npm -summary: RFC6265 Cookies and Cookie Jar for node.js -homepage: https://github.com/salesforce/tough-cookie -license: bsd-3-clause -licenses: -- sources: LICENSE - text: | - Copyright (c) 2015, Salesforce.com, Inc. - All rights reserved. - - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - 3. Neither the name of Salesforce.com nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -notices: [] diff --git a/.licenses/npm/tslib-1.14.1.dep.yml b/.licenses/npm/tslib-1.14.1.dep.yml deleted file mode 100644 index 10b2c2ac1..000000000 --- a/.licenses/npm/tslib-1.14.1.dep.yml +++ /dev/null @@ -1,35 +0,0 @@ ---- -name: tslib -version: 1.14.1 -type: npm -summary: Runtime library for TypeScript helper functions -homepage: https://www.typescriptlang.org/ -license: 0bsd -licenses: -- sources: LICENSE.txt - text: |- - Copyright (c) Microsoft Corporation. - - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH - REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR - OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. -notices: -- sources: CopyrightNotice.txt - text: "/*! *****************************************************************************\r\nCopyright - (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute - this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE - SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD - TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. - IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR - CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, - DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS - ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS - SOFTWARE.\r\n***************************************************************************** - */" diff --git a/.licenses/npm/tslib-2.3.1.dep.yml b/.licenses/npm/tslib-2.3.1.dep.yml deleted file mode 100644 index a6d5be44d..000000000 --- a/.licenses/npm/tslib-2.3.1.dep.yml +++ /dev/null @@ -1,35 +0,0 @@ ---- -name: tslib -version: 2.3.1 -type: npm -summary: Runtime library for TypeScript helper functions -homepage: https://www.typescriptlang.org/ -license: 0bsd -licenses: -- sources: LICENSE.txt - text: |- - Copyright (c) Microsoft Corporation. - - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH - REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR - OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. -notices: -- sources: CopyrightNotice.txt - text: "/*! *****************************************************************************\r\nCopyright - (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute - this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE - SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD - TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. - IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR - CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, - DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS - ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS - SOFTWARE.\r\n***************************************************************************** - */" diff --git a/.licenses/npm/tslib.dep.yml b/.licenses/npm/tslib.dep.yml new file mode 100644 index 000000000..4611137ca --- /dev/null +++ b/.licenses/npm/tslib.dep.yml @@ -0,0 +1,23 @@ +--- +name: tslib +version: 2.8.1 +type: npm +summary: Runtime library for TypeScript helper functions +homepage: https://www.typescriptlang.org/ +license: 0bsd +licenses: +- sources: LICENSE.txt + text: |- + Copyright (c) Microsoft Corporation. + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR + OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. +notices: [] diff --git a/.licenses/npm/undici.dep.yml b/.licenses/npm/undici.dep.yml new file mode 100644 index 000000000..121a6e35a --- /dev/null +++ b/.licenses/npm/undici.dep.yml @@ -0,0 +1,34 @@ +--- +name: undici +version: 6.24.1 +type: npm +summary: An HTTP/1.1 client, written from scratch for Node.js +homepage: https://undici.nodejs.org +license: mit +licenses: +- sources: LICENSE + text: | + MIT License + + Copyright (c) Matteo Collina and Undici contributors + + 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. +- sources: README.md + text: MIT +notices: [] diff --git a/.licenses/npm/universalify.dep.yml b/.licenses/npm/universalify.dep.yml deleted file mode 100644 index 0a1c4cde3..000000000 --- a/.licenses/npm/universalify.dep.yml +++ /dev/null @@ -1,33 +0,0 @@ ---- -name: universalify -version: 0.1.2 -type: npm -summary: Make a callback- or promise-based function support both promises and callbacks. -homepage: https://github.com/RyanZim/universalify#readme -license: mit -licenses: -- sources: LICENSE - text: | - (The MIT License) - - Copyright (c) 2017, Ryan Zimmerman - - 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. -- sources: README.md - text: MIT -notices: [] diff --git a/.licenses/npm/uuid-3.4.0.dep.yml b/.licenses/npm/uuid-3.4.0.dep.yml deleted file mode 100644 index 45970fef6..000000000 --- a/.licenses/npm/uuid-3.4.0.dep.yml +++ /dev/null @@ -1,39 +0,0 @@ ---- -name: uuid -version: 3.4.0 -type: npm -summary: RFC4122 (v1, v4, and v5) UUIDs -homepage: https://github.com/uuidjs/uuid#readme -license: mit -licenses: -- sources: LICENSE.md - text: | - The MIT License (MIT) - - Copyright (c) 2010-2016 Robert Kieffer and other contributors - - 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. -notices: -- sources: AUTHORS - text: |- - Robert Kieffer - Christoph Tavan - AJ ONeal - Vincent Voyer - Roman Shtylman diff --git a/.licenses/npm/uuid-8.3.2.dep.yml b/.licenses/npm/uuid-8.3.2.dep.yml deleted file mode 100644 index bf84da082..000000000 --- a/.licenses/npm/uuid-8.3.2.dep.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: uuid -version: 8.3.2 -type: npm -summary: RFC4122 (v1, v4, and v5) UUIDs -homepage: https://github.com/uuidjs/uuid#readme -license: mit -licenses: -- sources: LICENSE.md - text: | - The MIT License (MIT) - - Copyright (c) 2010-2020 Robert Kieffer and other contributors - - 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. -notices: [] diff --git a/.licenses/npm/webidl-conversions.dep.yml b/.licenses/npm/webidl-conversions.dep.yml deleted file mode 100644 index 48c1f2272..000000000 --- a/.licenses/npm/webidl-conversions.dep.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -name: webidl-conversions -version: 3.0.1 -type: npm -summary: Implements the WebIDL algorithms for converting to and from JavaScript values -homepage: https://github.com/jsdom/webidl-conversions#readme -license: bsd-2-clause -licenses: -- sources: LICENSE.md - text: | - # The BSD 2-Clause License - - Copyright (c) 2014, Domenic Denicola - All rights reserved. - - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -notices: [] diff --git a/.licenses/npm/whatwg-url.dep.yml b/.licenses/npm/whatwg-url.dep.yml deleted file mode 100644 index bca799ccc..000000000 --- a/.licenses/npm/whatwg-url.dep.yml +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: whatwg-url -version: 5.0.0 -type: npm -summary: An implementation of the WHATWG URL Standard's URL API and parsing machinery -homepage: https://github.com/jsdom/whatwg-url#readme -license: mit -licenses: -- sources: LICENSE.txt - text: | - The MIT License (MIT) - - Copyright (c) 2015–2016 Sebastian Mayr - - 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. -notices: [] diff --git a/.licenses/npm/xml2js.dep.yml b/.licenses/npm/xml2js.dep.yml deleted file mode 100644 index ea43d8df8..000000000 --- a/.licenses/npm/xml2js.dep.yml +++ /dev/null @@ -1,30 +0,0 @@ ---- -name: xml2js -version: 0.4.23 -type: npm -summary: Simple XML to JavaScript object converter. -homepage: https://github.com/Leonidas-from-XIV/node-xml2js -license: mit -licenses: -- sources: LICENSE - text: | - Copyright 2010, 2011, 2012, 2013. All rights reserved. - - 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. -notices: [] diff --git a/.licenses/npm/xmlbuilder.dep.yml b/.licenses/npm/xmlbuilder.dep.yml deleted file mode 100644 index e8c7ee12f..000000000 --- a/.licenses/npm/xmlbuilder.dep.yml +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: xmlbuilder -version: 11.0.1 -type: npm -summary: An XML builder for node.js -homepage: http://github.com/oozcitak/xmlbuilder-js -license: mit -licenses: -- sources: LICENSE - text: | - The MIT License (MIT) - - Copyright (c) 2013 Ozgur Ozcitak - - 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. -notices: [] diff --git a/.licenses/npm/xmlbuilder2.dep.yml b/.licenses/npm/xmlbuilder2.dep.yml index fecc99a6e..d85cad54b 100644 --- a/.licenses/npm/xmlbuilder2.dep.yml +++ b/.licenses/npm/xmlbuilder2.dep.yml @@ -1,12 +1,12 @@ --- name: xmlbuilder2 -version: 2.4.0 +version: 4.0.3 type: npm summary: An XML builder for node.js -homepage: http://github.com/oozcitak/xmlbuilder2 +homepage: https://github.com/oozcitak/xmlbuilder2 license: mit licenses: -- sources: LICENSE +- sources: LICENSE.txt text: | MIT License diff --git a/.licenses/npm/yallist.dep.yml b/.licenses/npm/yallist.dep.yml deleted file mode 100644 index 1e1c46f1b..000000000 --- a/.licenses/npm/yallist.dep.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: yallist -version: 4.0.0 -type: npm -summary: Yet Another Linked List -homepage: https://github.com/isaacs/yallist#readme -license: isc -licenses: -- sources: LICENSE - text: | - The ISC License - - Copyright (c) Isaac Z. Schlueter and Contributors - - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR - IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -notices: [] diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 000000000..a3c81cb01 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,7 @@ +# Ignore list +/* + +# Do not ignore these folders: +!__tests__/ +!.github/ +!src/ \ No newline at end of file diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 000000000..468cdb1e2 --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,11 @@ +// This is a reusable configuration file copied from https://github.com/actions/reusable-workflows/tree/main/reusable-configurations. Please don't make changes to this file as it's the subject of an automatic update. +module.exports = { + printWidth: 80, + tabWidth: 2, + useTabs: false, + semi: true, + singleQuote: true, + trailingComma: 'none', + bracketSpacing: false, + arrowParens: 'avoid' +}; diff --git a/.prettierrc.json b/.prettierrc.json deleted file mode 100644 index a2f723bfa..000000000 --- a/.prettierrc.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "printWidth": 100, - "tabWidth": 2, - "useTabs": false, - "semi": true, - "singleQuote": true, - "trailingComma": "none", - "bracketSpacing": true, - "arrowParens": "avoid", - "parser": "typescript" -} diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 99e360a66..000000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,38 +0,0 @@ -# Contributors - -### Checkin - -- Do checkin source (src) -- Do checkin a single index.js file after running `ncc` -- Do not checking node_modules - -### NCC - -In order to avoid uploading `node_modules` to the repository, we use [vercel/ncc](https://github.com/vercel/ncc) to create multiple `index.js` files that gets saved under `dist/`. -There are two main files that get created -- `dist/setup/index.js` - - Core `setup-java` logic that downloads and installs an appropriate version of Java - - Handling creating a `settings.xml` file to make it easier to publish packages -- `dist/cleanup/index/js` - - Extra cleanup script that is used to remove GPG keys (needed for certain self-hosted runner scenarios) - -If you're developing locally, after doing `npm install`, you can use the following commands -```yaml -npm run build # runs tsc along with ncc -npm run format # runs prettier --write -npm run format-check # runs prettier --check -npm run test # runs jest -npm run release # add all the necessary ncc files under dist/* to the git staging area -``` - -Any files generated using `tsc` will be added to `lib/*`, however those files also are not uploaded to the repository and are excluded using `.gitignore`. - -### Testing - -Tests are included under `_tests_/*` and can be run using `npm run-script test`. - -We ask that you include a link to a successful run that utilizes the changes you are working on. For example, if your changes are in the branch `newAwesomeFeature`, then show an example run that uses `setup-python@newAwesomeFeature` or `my-fork@newAwesomeFeature`. This will help speed up testing and help us confirm that there are no breaking changes or bugs. - -### Licensed - -This repository uses a tool called [Licensed](https://github.com/github/licensed) to verify third party dependencies. You may need to locally install licensed and run `licensed cache` to update the dependency cache if you install or update a production dependency. If licensed cache is unable to determine the dependency, you may need to modify the cache file yourself to put the correct license. You should still verify the dependency, licensed is a tool to help, but is not a substitute for human review of dependencies. \ No newline at end of file diff --git a/README.md b/README.md index 969b0cc90..bfee02ec0 100644 --- a/README.md +++ b/README.md @@ -1,81 +1,144 @@ -# setup-java - -

- GitHub Actions status -

- -This action provides the following functionality for GitHub Actions runners: -- Downloading and setting up a requested version of Java. See [Usage](#Usage) for a list of supported distributions -- Extracting and caching custom version of Java from a local file -- Configuring runner for publishing using Apache Maven -- Configuring runner for publishing using Gradle -- Configuring runner for using GPG private key -- Registering problem matchers for error output -- Caching dependencies managed by Apache Maven -- Caching dependencies managed by Gradle -- Caching dependencies managed by sbt +# Setup Java + +[![Basic validation](https://github.com/actions/setup-java/actions/workflows/basic-validation.yml/badge.svg?branch=main)](https://github.com/actions/setup-java/actions/workflows/basic-validation.yml) +[![Validate Java e2e](https://github.com/actions/setup-java/actions/workflows/e2e-versions.yml/badge.svg?branch=main)](https://github.com/actions/setup-java/actions/workflows/e2e-versions.yml) +[![Validate cache](https://github.com/actions/setup-java/actions/workflows/e2e-cache.yml/badge.svg?branch=main)](https://github.com/actions/setup-java/actions/workflows/e2e-cache.yml) + +The `setup-java` action provides the following functionality for GitHub Actions runners: +- Downloading and setting up a requested version of Java. See [Usage](#usage) for a list of supported distributions. +- Extracting and caching custom version of Java from a local file. +- Configuring runner for publishing using Apache Maven. +- Configuring runner for publishing using Gradle. +- Configuring runner for using GPG private key. +- Registering problem matchers for error output. +- Caching dependencies managed by Apache Maven. +- Caching dependencies managed by Gradle. +- Caching dependencies managed by sbt. +- [Maven Toolchains declaration](https://maven.apache.org/guides/mini/guide-using-toolchains.html) for specified JDK versions. This action allows you to work with Java and Scala projects. +## Breaking changes in V5 + +- Upgraded action from node20 to node24 + > Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release [Release Notes](https://github.com/actions/runner/releases/tag/v2.327.1) + +For more details, see the full release notes on the [releases page](https://github.com/actions/setup-java/releases/tag/v5.0.0) + ## V2 vs V1 -- V2 supports custom distributions and provides support for Zulu OpenJDK, Eclipse Temurin and Adopt OpenJDK out of the box. V1 supports only Zulu OpenJDK -- V2 requires you to specify distribution along with the version. V1 defaults to Zulu OpenJDK, only version input is required. Follow [the migration guide](docs/switching-to-v2.md) to switch from V1 to V2 + +- V2 supports custom distributions and provides support for Azul Zulu OpenJDK, Eclipse Temurin and AdoptOpenJDK out of the box. V1 supports only Azul Zulu OpenJDK. +- V2 requires you to specify distribution along with the version. V1 defaults to Azul Zulu OpenJDK, only version input is required. Follow [the migration guide](docs/switching-to-v2.md) to switch from V1 to V2. + +For information about the latest releases, recent updates, and newly supported distributions, please refer to the `setup-java` [Releases](https://github.com/actions/setup-java/releases). ## Usage -Inputs `java-version` and `distribution` are mandatory. See [Supported distributions](#supported-distributions) section for a list of available options. -### Basic -**Eclipse Temurin** + - `java-version`: The Java version that is going to be set up. Takes a whole or [semver](#supported-version-syntax) Java version. If not specified, the action will expect `java-version-file` input to be specified. + + - `java-version-file`: The path to a file containing java version. Supported file types are `.java-version` and `.tool-versions`. See more details in [about .java-version-file](docs/advanced-usage.md#Java-version-file). + + - `distribution`: _(required)_ Java [distribution](#supported-distributions). + + - `java-package`: The packaging variant of the chosen distribution. Possible values: `jdk`, `jre`, `jdk+fx`, `jre+fx`. Default value: `jdk`. + + - `architecture`: The target architecture of the package. Possible values: `x86`, `x64`, `armv7`, `aarch64`, `ppc64le`. Default value: Derived from the runner machine. + + - `jdkFile`: If a use-case requires a custom distribution setup-java uses the compressed JDK from the location pointed by this input and will take care of the installation and caching on the VM. + + - `check-latest`: Setting this option makes the action to check for the latest available version for the version spec. + + - `cache`: Quick [setup caching](#caching-packages-dependencies) for the dependencies managed through one of the predefined package managers. It can be one of "maven", "gradle" or "sbt". + + - `cache-dependency-path`: The path to a dependency file: pom.xml, build.gradle, build.sbt, etc. This option can be used with the `cache` option. If this option is omitted, the action searches for the dependency file in the entire repository. This option supports wildcards and a list of file names for caching multiple dependencies. + + #### Maven options + The action has a bunch of inputs to generate maven's [settings.xml](https://maven.apache.org/settings.html) on the fly and pass the values to Apache Maven GPG Plugin as well as Apache Maven Toolchains. See [advanced usage](docs/advanced-usage.md) for more. + + - `overwrite-settings`: By default action overwrites the settings.xml. In order to skip generation of file if it exists, set this to `false`. + + - `server-id`: ID of the distributionManagement repository in the pom.xml file. Default is `github`. + + - `server-username`: Environment variable name for the username for authentication to the Apache Maven repository. Default is GITHUB_ACTOR. + + - `server-password`: Environment variable name for password or token for authentication to the Apache Maven repository. Default is GITHUB_TOKEN. + + - `settings-path`: Maven related setting to point to the directory where the settings.xml file will be written. Default is ~/.m2. + + - `gpg-private-key`: GPG private key to import. Default is empty string. + + - `gpg-passphrase`: Environment variable name for the GPG private key passphrase. Default is GPG_PASSPHRASE. + + - `mvn-toolchain-id`: Name of Maven Toolchain ID if the default name of `${distribution}_${java-version}` is not wanted. + + - `mvn-toolchain-vendor`: Name of Maven Toolchain Vendor if the default name of `${distribution}` is not wanted. + +### Basic Configuration + +#### Eclipse Temurin ```yaml steps: -- uses: actions/checkout@v3 -- uses: actions/setup-java@v3 +- uses: actions/checkout@v6 +- uses: actions/setup-java@v5 with: distribution: 'temurin' # See 'Supported distributions' for available options - java-version: '17' -- run: java -cp java HelloWorldApp + java-version: '25' +- run: java HelloWorldApp.java ``` -**Zulu OpenJDK** +#### Azul Zulu OpenJDK ```yaml steps: -- uses: actions/checkout@v3 -- uses: actions/setup-java@v3 +- uses: actions/checkout@v6 +- uses: actions/setup-java@v5 with: distribution: 'zulu' # See 'Supported distributions' for available options - java-version: '11' -- run: java -cp java HelloWorldApp + java-version: '25' +- run: java HelloWorldApp.java ``` #### Supported version syntax The `java-version` input supports an exact version or a version range using [SemVer](https://semver.org/) notation: -- major versions: `8`, `11`, `16`, `17` -- more specific versions: `17.0`, `11.0`, `11.0.4`, `8.0.232`, `8.0.282+8` -- early access (EA) versions: `15-ea`, `15.0.0-ea`, `15.0.0-ea.2`, `15.0.0+2-ea` +- major versions: `8`, `11`, `16`, `17`, `21`, `25` +- more specific versions: `8.0.282+8`, `8.0.232`, `11.0`, `11.0.4`, `17.0` +- early access (EA) versions: `15-ea`, `15.0.0-ea` #### Supported distributions Currently, the following distributions are supported: | Keyword | Distribution | Official site | License |-|-|-|-| | `temurin` | Eclipse Temurin | [Link](https://adoptium.net/) | [Link](https://adoptium.net/about.html) -| `zulu` | Zulu OpenJDK | [Link](https://www.azul.com/downloads/zulu-community/?package=jdk) | [Link](https://www.azul.com/products/zulu-and-zulu-enterprise/zulu-terms-of-use/) | -| `adopt` or `adopt-hotspot` | Adopt OpenJDK Hotspot | [Link](https://adoptopenjdk.net/) | [Link](https://adoptopenjdk.net/about.html) | -| `adopt-openj9` | Adopt OpenJDK OpenJ9 | [Link](https://adoptopenjdk.net/) | [Link](https://adoptopenjdk.net/about.html) | +| `zulu` | Azul Zulu OpenJDK | [Link](https://www.azul.com/downloads/zulu-community/?package=jdk) | [Link](https://www.azul.com/products/zulu-and-zulu-enterprise/zulu-terms-of-use/) | +| `adopt` or `adopt-hotspot` | AdoptOpenJDK Hotspot | [Link](https://adoptopenjdk.net/) | [Link](https://adoptopenjdk.net/about.html) | +| `adopt-openj9` | AdoptOpenJDK OpenJ9 | [Link](https://adoptopenjdk.net/) | [Link](https://adoptopenjdk.net/about.html) | | `liberica` | Liberica JDK | [Link](https://bell-sw.com/) | [Link](https://bell-sw.com/liberica_eula/) | | `microsoft` | Microsoft Build of OpenJDK | [Link](https://www.microsoft.com/openjdk) | [Link](https://docs.microsoft.com/java/openjdk/faq) | `corretto` | Amazon Corretto Build of OpenJDK | [Link](https://aws.amazon.com/corretto/) | [Link](https://aws.amazon.com/corretto/faqs/) +| `semeru` | IBM Semeru Runtime Open Edition | [Link](https://developer.ibm.com/languages/java/semeru-runtimes/downloads/) | [Link](https://openjdk.java.net/legal/gplv2+ce.html) | +| `oracle` | Oracle JDK | [Link](https://www.oracle.com/java/technologies/downloads/) | [Link](https://java.com/freeuselicense) +| `dragonwell` | Alibaba Dragonwell JDK | [Link](https://dragonwell-jdk.io/) | [Link](https://www.aliyun.com/product/dragonwell/) +| `sapmachine` | SAP SapMachine JDK/JRE | [Link](https://sapmachine.io/) | [Link](https://github.com/SAP/SapMachine/blob/sapmachine/LICENSE) +| `graalvm` | Oracle GraalVM | [Link](https://www.graalvm.org/) | [Link](https://www.oracle.com/downloads/licenses/graal-free-license.html) +| `jetbrains` | JetBrains Runtime | [Link](https://github.com/JetBrains/JetBrainsRuntime/) | [Link](https://github.com/JetBrains/JetBrainsRuntime/blob/main/LICENSE) **NOTE:** The different distributors can provide discrepant list of available versions / supported configurations. Please refer to the official documentation to see the list of supported versions. -**NOTE:** Adopt OpenJDK got moved to Eclipse Temurin and won't be updated anymore. It is highly recommended to migrate workflows from `adopt` to `temurin` to keep receiving software and security updates. See more details in the [Good-bye AdoptOpenJDK post](https://blog.adoptopenjdk.net/2021/08/goodbye-adoptopenjdk-hello-adoptium/). +**NOTE:** AdoptOpenJDK got moved to Eclipse Temurin and won't be updated anymore. It is highly recommended to migrate workflows from `adopt` and `adopt-openj9`, to `temurin` and `semeru` respectively, to keep receiving software and security updates. See more details in the [Good-bye AdoptOpenJDK post](https://blog.adoptopenjdk.net/2021/08/goodbye-adoptopenjdk-hello-adoptium/). + +**NOTE:** For Azul Zulu OpenJDK architectures x64 and arm64 are mapped to x86 / arm with proper hw_bitness. + +**NOTE:** To comply with the GraalVM Free Terms and Conditions (GFTC) license, it is recommended to use GraalVM JDK 17 version 17.0.12, as this is the only version of GraalVM JDK 17 available under the GFTC license. Additionally, it is encouraged to consider upgrading to GraalVM JDK 21, which offers the latest features and improvements. -**NOTE:** For Zulu OpenJDK architectures x64 and arm64 are mapped to x86 / arm with proper hw_bitness. +**NOTE:** Oracle JDK 17 licensing varies by patch level. As shown on the [JDK 17 Archive](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html) (versions up to 17.0.12 are under the [NFTC](https://www.oracle.com/downloads/licenses/no-fee-license.html) license) and the [JDK 17.0.13+ Archive](https://www.oracle.com/java/technologies/javase/jdk17-0-13-later-archive-downloads.html) (versions 17.0.13 and later are under the [OTN](https://www.oracle.com/downloads/licenses/javase-license1.html) license). To stay on the free NFTC license, use `distribution: 'oracle'` with `java-version: '17.0.12'` (or earlier) instead of the floating `'17'`. Alternatively, upgrade to Oracle JDK 21+, which remains under the NFTC license. ### Caching packages dependencies -The action has a built-in functionality for caching and restoring dependencies. It uses [actions/cache](https://github.com/actions/cache) under hood for caching dependencies but requires less configuration settings. Supported package managers are gradle, maven and sbt. The format of the used cache key is `setup-java-${{ platform }}-${{ packageManager }}-${{ fileHash }}`, where the hash is based on the following files: -- gradle: `**/*.gradle*`, `**/gradle-wrapper.properties` +The action has a built-in functionality for caching and restoring dependencies. It uses [toolkit/cache](https://github.com/actions/toolkit/tree/main/packages/cache) under hood for caching dependencies but requires less configuration settings. Supported package managers are gradle, maven and sbt. The format of the used cache key is `setup-java-${{ platform }}-${{ packageManager }}-${{ fileHash }}`, where the hash is based on the following files: + +- gradle: `**/*.gradle*`, `**/gradle-wrapper.properties`, `buildSrc/**/Versions.kt`, `buildSrc/**/Dependencies.kt`, `gradle/*.versions.toml`, and `**/versions.properties` - maven: `**/pom.xml` -- sbt: all sbt build definition files `**/*.sbt`, `**/project/build.properties`, `**/project/**.{scala,sbt}` +- sbt: all sbt build definition files `**/*.sbt`, `**/project/build.properties`, `**/project/**.scala`, `**/project/**.sbt` + +When the option `cache-dependency-path` is specified, the hash is based on the matching file. This option supports wildcards and a list of file names, and is especially useful for monorepos. The workflow output `cache-hit` is set to indicate if an exact match was found for the key [as actions/cache does](https://github.com/actions/cache/tree/main#outputs). @@ -84,24 +147,33 @@ The cache input is optional, and caching is turned off by default. #### Caching gradle dependencies ```yaml steps: -- uses: actions/checkout@v3 -- uses: actions/setup-java@v3 +- uses: actions/checkout@v6 +- uses: actions/setup-java@v5 with: distribution: 'temurin' - java-version: '11' + java-version: '25' cache: 'gradle' + cache-dependency-path: | # optional + sub-project/*.gradle* + sub-project/**/gradle-wrapper.properties - run: ./gradlew build --no-daemon ``` +Using the `cache: gradle` provides a simple and effective way to cache Gradle dependencies with minimal configuration. + +For projects that require more advanced `Gradle` caching features, such as caching build outputs, support for Gradle configuration cache, encrypted cache storage, fine-grained cache control (including options to enable or disable the cache, set it to read-only or write-only, perform automated cleanup, and define custom cache rules), or optimized performance for complex CI workflows, consider using [`gradle/actions/setup-gradle`](https://github.com/gradle/actions/tree/main/setup-gradle). + +For setup details and a comprehensive overview of all available features, visit the [setup-gradle documentation](https://github.com/gradle/actions/blob/main/docs/setup-gradle.md). #### Caching maven dependencies ```yaml steps: -- uses: actions/checkout@v3 -- uses: actions/setup-java@v3 +- uses: actions/checkout@v6 +- uses: actions/setup-java@v5 with: distribution: 'temurin' - java-version: '11' + java-version: '25' cache: 'maven' + cache-dependency-path: 'sub-project/pom.xml' # optional - name: Build with Maven run: mvn -B package --file pom.xml ``` @@ -109,33 +181,53 @@ steps: #### Caching sbt dependencies ```yaml steps: -- uses: actions/checkout@v3 -- uses: actions/setup-java@v3 +- uses: actions/checkout@v6 +- uses: actions/setup-java@v5 with: distribution: 'temurin' - java-version: '11' + java-version: '25' cache: 'sbt' + cache-dependency-path: | # optional + sub-project/build.sbt + sub-project/project/build.properties - name: Build with SBT run: sbt package ``` +#### Cache segment restore timeout +Usually, cache gets downloaded in multiple segments of fixed sizes. Sometimes, a segment download gets stuck, which causes the workflow job to be stuck. The cache segment download timeout [was introduced](https://github.com/actions/toolkit/tree/main/packages/cache#cache-segment-restore-timeout) to solve this issue as it allows the segment download to get aborted and hence allows the job to proceed with a cache miss. The default value of the cache segment download timeout is set to 10 minutes and can be customized by specifying an environment variable named `SEGMENT_DOWNLOAD_TIMEOUT_MINS` with a timeout value in minutes. + +```yaml +env: + SEGMENT_DOWNLOAD_TIMEOUT_MINS: '5' +steps: +- uses: actions/checkout@v6 +- uses: actions/setup-java@v5 + with: + distribution: 'temurin' + java-version: '25' + cache: 'gradle' +- run: ./gradlew build --no-daemon +``` + ### Check latest + In the basic examples above, the `check-latest` flag defaults to `false`. When set to `false`, the action tries to first resolve a version of Java from the local tool cache on the runner. If unable to find a specific version in the cache, the action will download a version of Java. Use the default or set `check-latest` to `false` if you prefer a faster more consistent setup experience that prioritizes trying to use the cached versions at the expense of newer versions sometimes being available for download. If `check-latest` is set to `true`, the action first checks if the cached version is the latest one. If the locally cached version is not the most up-to-date, the latest version of Java will be downloaded. Set `check-latest` to `true` if you want the most up-to-date version of Java to always be used. Setting `check-latest` to `true` has performance implications as downloading versions of Java is slower than using cached versions. -For Java distributions that are not cached on Hosted images, `check-latest` always behaves as `true` and downloads Java on-flight. Check out [Hosted Tool Cache](docs/advanced-usage.md#Hosted-Tool-Cache) for more details about pre-cached Java versions. +For Java distributions that are not cached on Hosted images, `check-latest` always behaves as `true` and downloads Java on-flight. Check out [Hosted Tool Cache](docs/advanced-usage.md#Hosted-Tool-Cache) for more details about pre-cached Java versions. ```yaml steps: -- uses: actions/checkout@v3 -- uses: actions/setup-java@v3 +- uses: actions/checkout@v6 +- uses: actions/setup-java@v5 with: - distribution: 'adopt' - java-version: '11' + distribution: 'temurin' + java-version: '25' check-latest: true -- run: java -cp java HelloWorldApp +- run: java HelloWorldApp.java ``` ### Testing against different Java versions @@ -145,41 +237,38 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - java: [ '8', '11', '13', '15' ] + java: [ '8', '11', '17', '21', '25' ] name: Java ${{ matrix.Java }} sample steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Setup java - uses: actions/setup-java@v3 + uses: actions/setup-java@v5 with: distribution: '' java-version: ${{ matrix.java }} - - run: java -cp java HelloWorldApp + - run: java HelloWorldApp.java ``` ### Install multiple JDKs + +All configured Java versions are added to the PATH. The last one added to the PATH (i.e., the last JDK set up by this action) will be used as the default and available globally. Other Java versions can be accessed through environment variables such as 'JAVA_HOME_{{ MAJOR_VERSION }}_{{ ARCHITECTURE }}'. To use a specific Java version, set the JAVA_HOME environment variable accordingly and prepend its bin directory to the PATH to ensure it takes priority during execution. + ```yaml steps: - - uses: actions/setup-java@v3 - with: - distribution: '' - java-version: 8 - - run: echo "JAVA_8=$JAVA_HOME" >> $GITHUB_ENV - - - uses: actions/setup-java@v3 - with: - distribution: '' - java-version: 11 - - run: echo "JAVA_11=$JAVA_HOME" >> $GITHUB_ENV - - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v5 with: distribution: '' - java-version: 15 - - run: echo "JAVA_15=$JAVA_HOME" >> $GITHUB_ENV + java-version: | + 8 + 11 + 15 ``` -### Advanced +### Using Maven Toolchains +In the example above multiple JDKs are installed for the same job. The result after the last JDK is installed is a Maven Toolchains declaration containing references to all three JDKs. The values for `id`, `version`, and `vendor` of the individual Toolchain entries are the given input values for `distribution` and `java-version` (`vendor` being the combination of `${distribution}_${java-version}`) by default. + +### Advanced Configuration + - [Selecting a Java distribution](docs/advanced-usage.md#Selecting-a-Java-distribution) - [Eclipse Temurin](docs/advanced-usage.md#Eclipse-Temurin) - [Adopt](docs/advanced-usage.md#Adopt) @@ -187,6 +276,10 @@ jobs: - [Liberica](docs/advanced-usage.md#Liberica) - [Microsoft](docs/advanced-usage.md#Microsoft) - [Amazon Corretto](docs/advanced-usage.md#Amazon-Corretto) + - [Oracle](docs/advanced-usage.md#Oracle) + - [Alibaba Dragonwell](docs/advanced-usage.md#Alibaba-Dragonwell) + - [SapMachine](docs/advanced-usage.md#SapMachine) + - [GraalVM](docs/advanced-usage.md#GraalVM) - [Installing custom Java package type](docs/advanced-usage.md#Installing-custom-Java-package-type) - [Installing custom Java architecture](docs/advanced-usage.md#Installing-custom-Java-architecture) - [Installing custom Java distribution from local file](docs/advanced-usage.md#Installing-Java-from-local-file) @@ -195,6 +288,17 @@ jobs: - [Publishing using Apache Maven](docs/advanced-usage.md#Publishing-using-Apache-Maven) - [Publishing using Gradle](docs/advanced-usage.md#Publishing-using-Gradle) - [Hosted Tool Cache](docs/advanced-usage.md#Hosted-Tool-Cache) +- [Modifying Maven Toolchains](docs/advanced-usage.md#Modifying-Maven-Toolchains) +- [Java Version File](docs/advanced-usage.md#Java-version-file) + +## Recommended permissions + +When using the `setup-java` action in your GitHub Actions workflow, it is recommended to set the following permissions to ensure proper functionality: + +```yaml +permissions: + contents: read # access to check out code and install dependencies +``` ## License @@ -202,4 +306,4 @@ The scripts and documentation in this project are released under the [MIT Licens ## Contributions -Contributions are welcome! See [Contributor's Guide](CONTRIBUTING.md) +Contributions are welcome! See [Contributor's Guide](docs/contributors.md) diff --git a/__tests__/auth.test.ts b/__tests__/auth.test.ts index 94ad7e1c7..06591da7a 100644 --- a/__tests__/auth.test.ts +++ b/__tests__/auth.test.ts @@ -1,13 +1,14 @@ -import io = require('@actions/io'); -import fs = require('fs'); -import path = require('path'); +import * as io from '@actions/io'; import * as core from '@actions/core'; +import * as fs from 'fs'; +import * as path from 'path'; import os from 'os'; import * as auth from '../src/auth'; +import {M2_DIR, MVN_SETTINGS_FILE} from '../src/constants'; -const m2Dir = path.join(__dirname, auth.M2_DIR); -const settingsFile = path.join(m2Dir, auth.SETTINGS_FILE); +const m2Dir = path.join(__dirname, M2_DIR); +const settingsFile = path.join(m2Dir, MVN_SETTINGS_FILE); describe('auth tests', () => { let spyOSHomedir: jest.SpyInstance; @@ -38,10 +39,16 @@ describe('auth tests', () => { const password = 'TOLKIEN'; const altHome = path.join(__dirname, 'runner', 'settings'); - const altSettingsFile = path.join(altHome, auth.SETTINGS_FILE); + const altSettingsFile = path.join(altHome, MVN_SETTINGS_FILE); await io.rmRF(altHome); // ensure it doesn't already exist - await auth.createAuthenticationSettings(id, username, password, altHome, true); + await auth.createAuthenticationSettings( + id, + username, + password, + altHome, + true + ); expect(fs.existsSync(m2Dir)).toBe(false); expect(fs.existsSync(settingsFile)).toBe(false); @@ -60,11 +67,19 @@ describe('auth tests', () => { const username = 'UNAME'; const password = 'TOKEN'; - await auth.createAuthenticationSettings(id, username, password, m2Dir, true); + await auth.createAuthenticationSettings( + id, + username, + password, + m2Dir, + true + ); expect(fs.existsSync(m2Dir)).toBe(true); expect(fs.existsSync(settingsFile)).toBe(true); - expect(fs.readFileSync(settingsFile, 'utf-8')).toEqual(auth.generate(id, username, password)); + expect(fs.readFileSync(settingsFile, 'utf-8')).toEqual( + auth.generate(id, username, password) + ); }, 100000); it('creates settings.xml with additional configuration', async () => { @@ -73,7 +88,14 @@ describe('auth tests', () => { const password = 'TOKEN'; const gpgPassphrase = 'GPG'; - await auth.createAuthenticationSettings(id, username, password, m2Dir, true, gpgPassphrase); + await auth.createAuthenticationSettings( + id, + username, + password, + m2Dir, + true, + gpgPassphrase + ); expect(fs.existsSync(m2Dir)).toBe(true); expect(fs.existsSync(settingsFile)).toBe(true); @@ -87,16 +109,24 @@ describe('auth tests', () => { const username = 'USERNAME'; const password = 'PASSWORD'; - fs.mkdirSync(m2Dir, { recursive: true }); + fs.mkdirSync(m2Dir, {recursive: true}); fs.writeFileSync(settingsFile, 'FAKE FILE'); expect(fs.existsSync(m2Dir)).toBe(true); expect(fs.existsSync(settingsFile)).toBe(true); - await auth.createAuthenticationSettings(id, username, password, m2Dir, true); + await auth.createAuthenticationSettings( + id, + username, + password, + m2Dir, + true + ); expect(fs.existsSync(m2Dir)).toBe(true); expect(fs.existsSync(settingsFile)).toBe(true); - expect(fs.readFileSync(settingsFile, 'utf-8')).toEqual(auth.generate(id, username, password)); + expect(fs.readFileSync(settingsFile, 'utf-8')).toEqual( + auth.generate(id, username, password) + ); }, 100000); it('does not overwrite existing settings.xml files', async () => { @@ -104,12 +134,18 @@ describe('auth tests', () => { const username = 'USERNAME'; const password = 'PASSWORD'; - fs.mkdirSync(m2Dir, { recursive: true }); + fs.mkdirSync(m2Dir, {recursive: true}); fs.writeFileSync(settingsFile, 'FAKE FILE'); expect(fs.existsSync(m2Dir)).toBe(true); expect(fs.existsSync(settingsFile)).toBe(true); - await auth.createAuthenticationSettings(id, username, password, m2Dir, false); + await auth.createAuthenticationSettings( + id, + username, + password, + m2Dir, + false + ); expect(fs.existsSync(m2Dir)).toBe(true); expect(fs.existsSync(settingsFile)).toBe(true); @@ -158,6 +194,8 @@ describe('auth tests', () => { `; - expect(auth.generate(id, username, password, gpgPassphrase)).toEqual(expectedSettings); + expect(auth.generate(id, username, password, gpgPassphrase)).toEqual( + expectedSettings + ); }); }); diff --git a/__tests__/cache.test.ts b/__tests__/cache.test.ts index 43eb913e0..df7a59bd4 100644 --- a/__tests__/cache.test.ts +++ b/__tests__/cache.test.ts @@ -1,11 +1,12 @@ -import { mkdtempSync } from 'fs'; -import { tmpdir } from 'os'; -import { join } from 'path'; -import { restore, save } from '../src/cache'; +import {mkdtempSync} from 'fs'; +import {tmpdir} from 'os'; +import {join} from 'path'; +import {restore, save} from '../src/cache'; import * as fs from 'fs'; import * as os from 'os'; import * as core from '@actions/core'; import * as cache from '@actions/cache'; +import * as glob from '@actions/glob'; describe('dependency cache', () => { const ORIGINAL_RUNNER_OS = process.env['RUNNER_OS']; @@ -16,6 +17,7 @@ describe('dependency cache', () => { let spyWarning: jest.SpyInstance>; let spyDebug: jest.SpyInstance>; let spySaveState: jest.SpyInstance>; + let spyCoreError: jest.SpyInstance; beforeEach(() => { workspace = mkdtempSync(join(tmpdir(), 'setup-java-cache-')); @@ -50,6 +52,10 @@ describe('dependency cache', () => { spySaveState = jest.spyOn(core, 'saveState'); spySaveState.mockImplementation(() => null); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); }); afterEach(() => { @@ -57,6 +63,10 @@ describe('dependency cache', () => { process.env['GITHUB_WORKSPACE'] = ORIGINAL_GITHUB_WORKSPACE; process.env['RUNNER_OS'] = ORIGINAL_RUNNER_OS; resetState(); + + jest.resetAllMocks(); + jest.clearAllMocks(); + jest.restoreAllMocks(); }); describe('restore', () => { @@ -64,21 +74,30 @@ describe('dependency cache', () => { ReturnType, Parameters >; + let spyGlobHashFiles: jest.SpyInstance< + ReturnType, + Parameters + >; beforeEach(() => { spyCacheRestore = jest .spyOn(cache, 'restoreCache') - .mockImplementation((paths: string[], primaryKey: string) => Promise.resolve(undefined)); + .mockImplementation((paths: string[], primaryKey: string) => + Promise.resolve(undefined) + ); + spyGlobHashFiles = jest.spyOn(glob, 'hashFiles'); spyWarning.mockImplementation(() => null); }); it('throws error if unsupported package manager specified', () => { - return expect(restore('ant')).rejects.toThrowError('unknown package manager specified: ant'); + return expect(restore('ant', '')).rejects.toThrow( + 'unknown package manager specified: ant' + ); }); describe('for maven', () => { it('throws error if no pom.xml found', async () => { - await expect(restore('maven')).rejects.toThrowError( + await expect(restore('maven', '')).rejects.toThrow( `No file in ${projectRoot( workspace )} matched to [**/pom.xml], make sure you have checked out the target repository` @@ -87,52 +106,160 @@ describe('dependency cache', () => { it('downloads cache', async () => { createFile(join(workspace, 'pom.xml')); - await restore('maven'); - expect(spyCacheRestore).toBeCalled(); - expect(spyWarning).not.toBeCalled(); - expect(spyInfo).toBeCalledWith('maven cache is not found'); + await restore('maven', ''); + expect(spyCacheRestore).toHaveBeenCalled(); + expect(spyGlobHashFiles).toHaveBeenCalledWith('**/pom.xml'); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith('maven cache is not found'); }); }); describe('for gradle', () => { it('throws error if no build.gradle found', async () => { - await expect(restore('gradle')).rejects.toThrowError( + await expect(restore('gradle', '')).rejects.toThrow( `No file in ${projectRoot( workspace - )} matched to [**/*.gradle*,**/gradle-wrapper.properties], make sure you have checked out the target repository` + )} matched to [**/*.gradle*,**/gradle-wrapper.properties,buildSrc/**/Versions.kt,buildSrc/**/Dependencies.kt,gradle/*.versions.toml,**/versions.properties], make sure you have checked out the target repository` ); }); it('downloads cache based on build.gradle', async () => { createFile(join(workspace, 'build.gradle')); - await restore('gradle'); - expect(spyCacheRestore).toBeCalled(); - expect(spyWarning).not.toBeCalled(); - expect(spyInfo).toBeCalledWith('gradle cache is not found'); + await restore('gradle', ''); + expect(spyCacheRestore).toHaveBeenCalled(); + expect(spyGlobHashFiles).toHaveBeenCalledWith( + '**/*.gradle*\n**/gradle-wrapper.properties\nbuildSrc/**/Versions.kt\nbuildSrc/**/Dependencies.kt\ngradle/*.versions.toml\n**/versions.properties' + ); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith('gradle cache is not found'); }); it('downloads cache based on build.gradle.kts', async () => { createFile(join(workspace, 'build.gradle.kts')); - await restore('gradle'); - expect(spyCacheRestore).toBeCalled(); - expect(spyWarning).not.toBeCalled(); - expect(spyInfo).toBeCalledWith('gradle cache is not found'); + await restore('gradle', ''); + expect(spyCacheRestore).toHaveBeenCalled(); + expect(spyGlobHashFiles).toHaveBeenCalledWith( + '**/*.gradle*\n**/gradle-wrapper.properties\nbuildSrc/**/Versions.kt\nbuildSrc/**/Dependencies.kt\ngradle/*.versions.toml\n**/versions.properties' + ); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith('gradle cache is not found'); + }); + it('downloads cache based on libs.versions.toml', async () => { + createDirectory(join(workspace, 'gradle')); + createFile(join(workspace, 'gradle', 'libs.versions.toml')); + + await restore('gradle', ''); + expect(spyCacheRestore).toHaveBeenCalled(); + expect(spyGlobHashFiles).toHaveBeenCalledWith( + '**/*.gradle*\n**/gradle-wrapper.properties\nbuildSrc/**/Versions.kt\nbuildSrc/**/Dependencies.kt\ngradle/*.versions.toml\n**/versions.properties' + ); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith('gradle cache is not found'); + }); + it('downloads cache based on buildSrc/Versions.kt', async () => { + createDirectory(join(workspace, 'buildSrc')); + createFile(join(workspace, 'buildSrc', 'Versions.kt')); + + await restore('gradle', ''); + expect(spyCacheRestore).toHaveBeenCalled(); + expect(spyGlobHashFiles).toHaveBeenCalledWith( + '**/*.gradle*\n**/gradle-wrapper.properties\nbuildSrc/**/Versions.kt\nbuildSrc/**/Dependencies.kt\ngradle/*.versions.toml\n**/versions.properties' + ); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith('gradle cache is not found'); }); }); describe('for sbt', () => { it('throws error if no build.sbt found', async () => { - await expect(restore('sbt')).rejects.toThrowError( + await expect(restore('sbt', '')).rejects.toThrow( `No file in ${projectRoot( workspace - )} matched to [**/*.sbt,**/project/build.properties,**/project/**.{scala,sbt}], make sure you have checked out the target repository` + )} matched to [**/*.sbt,**/project/build.properties,**/project/**.scala,**/project/**.sbt], make sure you have checked out the target repository` ); }); it('downloads cache', async () => { createFile(join(workspace, 'build.sbt')); - await restore('sbt'); - expect(spyCacheRestore).toBeCalled(); - expect(spyWarning).not.toBeCalled(); - expect(spyInfo).toBeCalledWith('sbt cache is not found'); + await restore('sbt', ''); + expect(spyCacheRestore).toHaveBeenCalled(); + expect(spyGlobHashFiles).toHaveBeenCalledWith( + '**/*.sbt\n**/project/build.properties\n**/project/**.scala\n**/project/**.sbt' + ); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith('sbt cache is not found'); + }); + it('detects scala and sbt changes under **/project/ folder', async () => { + createFile(join(workspace, 'build.sbt')); + createDirectory(join(workspace, 'project')); + createFile(join(workspace, 'project/DependenciesV1.scala')); + + await restore('sbt', ''); + const firstCall = spySaveState.mock.calls.toString(); + + spySaveState.mockClear(); + await restore('sbt', ''); + const secondCall = spySaveState.mock.calls.toString(); + + // Make sure multiple restores produce the same cache + expect(firstCall).toBe(secondCall); + + spySaveState.mockClear(); + createFile(join(workspace, 'project/DependenciesV2.scala')); + await restore('sbt', ''); + const thirdCall = spySaveState.mock.calls.toString(); + + expect(firstCall).not.toBe(thirdCall); + }); + }); + it('downloads cache based on versions.properties', async () => { + createFile(join(workspace, 'versions.properties')); + + await restore('gradle', ''); + expect(spyCacheRestore).toHaveBeenCalled(); + expect(spyGlobHashFiles).toHaveBeenCalledWith( + '**/*.gradle*\n**/gradle-wrapper.properties\nbuildSrc/**/Versions.kt\nbuildSrc/**/Dependencies.kt\ngradle/*.versions.toml\n**/versions.properties' + ); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith('gradle cache is not found'); + }); + describe('cache-dependency-path', () => { + it('throws error if no matching dependency file found', async () => { + createFile(join(workspace, 'build.gradle.kts')); + await expect( + restore('gradle', 'sub-project/**/build.gradle.kts') + ).rejects.toThrow( + `No file in ${projectRoot( + workspace + )} matched to [sub-project/**/build.gradle.kts], make sure you have checked out the target repository` + ); + }); + it('downloads cache based on the specified pattern', async () => { + createFile(join(workspace, 'build.gradle.kts')); + createDirectory(join(workspace, 'sub-project1')); + createFile(join(workspace, 'sub-project1', 'build.gradle.kts')); + createDirectory(join(workspace, 'sub-project2')); + createFile(join(workspace, 'sub-project2', 'build.gradle.kts')); + + await restore('gradle', 'build.gradle.kts'); + expect(spyCacheRestore).toHaveBeenCalled(); + expect(spyGlobHashFiles).toHaveBeenCalledWith('build.gradle.kts'); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith('gradle cache is not found'); + + await restore('gradle', 'sub-project1/**/*.gradle*\n'); + expect(spyCacheRestore).toHaveBeenCalled(); + expect(spyGlobHashFiles).toHaveBeenCalledWith( + 'sub-project1/**/*.gradle*' + ); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith('gradle cache is not found'); + + await restore('gradle', '*.gradle*\nsub-project2/**/*.gradle*\n'); + expect(spyCacheRestore).toHaveBeenCalled(); + expect(spyGlobHashFiles).toHaveBeenCalledWith( + '*.gradle*\nsub-project2/**/*.gradle*' + ); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith('gradle cache is not found'); }); }); }); @@ -145,12 +272,16 @@ describe('dependency cache', () => { beforeEach(() => { spyCacheSave = jest .spyOn(cache, 'saveCache') - .mockImplementation((paths: string[], key: string) => Promise.resolve(0)); + .mockImplementation((paths: string[], key: string) => + Promise.resolve(0) + ); spyWarning.mockImplementation(() => null); }); it('throws error if unsupported package manager specified', () => { - return expect(save('ant')).rejects.toThrowError('unknown package manager specified: ant'); + return expect(save('ant')).rejects.toThrow( + 'unknown package manager specified: ant' + ); }); it('save with -1 cacheId , should not fail workflow', async () => { @@ -158,10 +289,12 @@ describe('dependency cache', () => { createStateForMissingBuildFile(); await save('maven'); - expect(spyCacheSave).toBeCalled(); - expect(spyWarning).not.toBeCalled(); - expect(spyInfo).toBeCalled(); - expect(spyInfo).toBeCalledWith(expect.stringMatching(/^Cache saved with the key:.*/)); + expect(spyCacheSave).toHaveBeenCalled(); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith( + expect.stringMatching(/^Cache saved with the key:.*/) + ); }); it('saves with error from toolkit, should fail workflow', async () => { @@ -171,31 +304,37 @@ describe('dependency cache', () => { createStateForMissingBuildFile(); expect.assertions(1); - await expect(save('maven')).rejects.toEqual(new cache.ValidationError('Validation failed')); + await expect(save('maven')).rejects.toEqual( + new cache.ValidationError('Validation failed') + ); }); describe('for maven', () => { it('uploads cache even if no pom.xml found', async () => { createStateForMissingBuildFile(); await save('maven'); - expect(spyCacheSave).toBeCalled(); - expect(spyWarning).not.toBeCalled(); + expect(spyCacheSave).toHaveBeenCalled(); + expect(spyWarning).not.toHaveBeenCalled(); }); it('does not upload cache if no restore run before', async () => { createFile(join(workspace, 'pom.xml')); await save('maven'); - expect(spyCacheSave).not.toBeCalled(); - expect(spyWarning).toBeCalledWith('Error retrieving key from state.'); + expect(spyCacheSave).not.toHaveBeenCalled(); + expect(spyWarning).toHaveBeenCalledWith( + 'Error retrieving key from state.' + ); }); it('uploads cache', async () => { createFile(join(workspace, 'pom.xml')); createStateForSuccessfulRestore(); await save('maven'); - expect(spyCacheSave).toBeCalled(); - expect(spyWarning).not.toBeCalled(); - expect(spyInfo).toBeCalledWith(expect.stringMatching(/^Cache saved with the key:.*/)); + expect(spyCacheSave).toHaveBeenCalled(); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith( + expect.stringMatching(/^Cache saved with the key:.*/) + ); }); }); describe('for gradle', () => { @@ -203,57 +342,90 @@ describe('dependency cache', () => { createStateForMissingBuildFile(); await save('gradle'); - expect(spyCacheSave).toBeCalled(); - expect(spyWarning).not.toBeCalled(); + expect(spyCacheSave).toHaveBeenCalled(); + expect(spyWarning).not.toHaveBeenCalled(); }); it('does not upload cache if no restore run before', async () => { createFile(join(workspace, 'build.gradle')); await save('gradle'); - expect(spyCacheSave).not.toBeCalled(); - expect(spyWarning).toBeCalledWith('Error retrieving key from state.'); + expect(spyCacheSave).not.toHaveBeenCalled(); + expect(spyWarning).toHaveBeenCalledWith( + 'Error retrieving key from state.' + ); }); it('uploads cache based on build.gradle', async () => { createFile(join(workspace, 'build.gradle')); createStateForSuccessfulRestore(); await save('gradle'); - expect(spyCacheSave).toBeCalled(); - expect(spyWarning).not.toBeCalled(); - expect(spyInfo).toBeCalledWith(expect.stringMatching(/^Cache saved with the key:.*/)); + expect(spyCacheSave).toHaveBeenCalled(); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith( + expect.stringMatching(/^Cache saved with the key:.*/) + ); }); it('uploads cache based on build.gradle.kts', async () => { createFile(join(workspace, 'build.gradle.kts')); createStateForSuccessfulRestore(); await save('gradle'); - expect(spyCacheSave).toBeCalled(); - expect(spyWarning).not.toBeCalled(); - expect(spyInfo).toBeCalledWith(expect.stringMatching(/^Cache saved with the key:.*/)); + expect(spyCacheSave).toHaveBeenCalled(); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith( + expect.stringMatching(/^Cache saved with the key:.*/) + ); + }); + it('uploads cache based on buildSrc/Versions.kt', async () => { + createDirectory(join(workspace, 'buildSrc')); + createFile(join(workspace, 'buildSrc', 'Versions.kt')); + createStateForSuccessfulRestore(); + + await save('gradle'); + expect(spyCacheSave).toHaveBeenCalled(); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith( + expect.stringMatching(/^Cache saved with the key:.*/) + ); }); }); describe('for sbt', () => { it('uploads cache even if no build.sbt found', async () => { createStateForMissingBuildFile(); await save('sbt'); - expect(spyCacheSave).toBeCalled(); - expect(spyWarning).not.toBeCalled(); + expect(spyCacheSave).toHaveBeenCalled(); + expect(spyWarning).not.toHaveBeenCalled(); }); it('does not upload cache if no restore run before', async () => { createFile(join(workspace, 'build.sbt')); await save('sbt'); - expect(spyCacheSave).not.toBeCalled(); - expect(spyWarning).toBeCalledWith('Error retrieving key from state.'); + expect(spyCacheSave).not.toHaveBeenCalled(); + expect(spyWarning).toHaveBeenCalledWith( + 'Error retrieving key from state.' + ); }); it('uploads cache', async () => { createFile(join(workspace, 'build.sbt')); createStateForSuccessfulRestore(); await save('sbt'); - expect(spyCacheSave).toBeCalled(); - expect(spyWarning).not.toBeCalled(); - expect(spyInfo).toBeCalledWith(expect.stringMatching(/^Cache saved with the key:.*/)); + expect(spyCacheSave).toHaveBeenCalled(); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith( + expect.stringMatching(/^Cache saved with the key:.*/) + ); + }); + it('uploads cache based on versions.properties', async () => { + createFile(join(workspace, 'versions.properties')); + createStateForSuccessfulRestore(); + + await save('gradle'); + expect(spyCacheSave).toHaveBeenCalled(); + expect(spyWarning).not.toHaveBeenCalled(); + expect(spyInfo).toHaveBeenCalledWith( + expect.stringMatching(/^Cache saved with the key:.*/) + ); }); }); }); @@ -298,6 +470,11 @@ function createFile(path: string) { fs.writeFileSync(path, ''); } +function createDirectory(path: string) { + core.info(`created a directory at ${path}`); + fs.mkdirSync(path); +} + function projectRoot(workspace: string): string { if (os.platform() === 'darwin') { return `/private${workspace}`; diff --git a/__tests__/cache/gradle/.gitignore b/__tests__/cache/gradle1/.gitignore similarity index 100% rename from __tests__/cache/gradle/.gitignore rename to __tests__/cache/gradle1/.gitignore diff --git a/__tests__/cache/gradle/build.gradle b/__tests__/cache/gradle1/build.gradle similarity index 100% rename from __tests__/cache/gradle/build.gradle rename to __tests__/cache/gradle1/build.gradle diff --git a/__tests__/cache/gradle2/.gitignore b/__tests__/cache/gradle2/.gitignore new file mode 100644 index 000000000..85888bb2e --- /dev/null +++ b/__tests__/cache/gradle2/.gitignore @@ -0,0 +1,12 @@ +.gradle +**/build/ +!src/**/build/ + +# Ignore Gradle GUI config +gradle-app.setting + +# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) +!gradle-wrapper.jar + +# Cache of project +.gradletasknamecache diff --git a/__tests__/cache/gradle2/build.gradle b/__tests__/cache/gradle2/build.gradle new file mode 100644 index 000000000..a65d41b5f --- /dev/null +++ b/__tests__/cache/gradle2/build.gradle @@ -0,0 +1,17 @@ +plugins { + id 'java' +} +repositories { + mavenCentral() +} +dependencies { + implementation 'org.junit.jupiter:junit-jupiter-api:5.7.2' +} +tasks.register('downloadDependencies') { + doLast { + def total = configurations.compileClasspath.inject (0) { sum, file -> + sum + file.length() + } + println total + } +} diff --git a/__tests__/cleanup-java.test.ts b/__tests__/cleanup-java.test.ts index 195515533..4cd2709d8 100644 --- a/__tests__/cleanup-java.test.ts +++ b/__tests__/cleanup-java.test.ts @@ -1,4 +1,4 @@ -import { run as cleanup } from '../src/cleanup-java'; +import {run as cleanup} from '../src/cleanup-java'; import * as core from '@actions/core'; import * as cache from '@actions/cache'; import * as util from '../src/util'; @@ -11,22 +11,35 @@ describe('cleanup', () => { Parameters >; let spyJobStatusSuccess: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; beforeEach(() => { spyWarning = jest.spyOn(core, 'warning'); spyWarning.mockImplementation(() => null); + spyInfo = jest.spyOn(core, 'info'); spyInfo.mockImplementation(() => null); + spyCacheSave = jest.spyOn(cache, 'saveCache'); + spyJobStatusSuccess = jest.spyOn(util, 'isJobStatusSuccess'); spyJobStatusSuccess.mockReturnValue(true); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); + createStateForSuccessfulRestore(); }); + afterEach(() => { resetState(); + jest.resetAllMocks(); + jest.clearAllMocks(); + jest.restoreAllMocks(); }); - it('does not fail nor warn even when the save provess throws a ReserveCacheError', async () => { + it('does not fail nor warn even when the save process throws a ReserveCacheError', async () => { spyCacheSave.mockImplementation((paths: string[], key: string) => Promise.reject( new cache.ReserveCacheError( @@ -38,8 +51,8 @@ describe('cleanup', () => { return name === 'cache' ? 'gradle' : ''; }); await cleanup(); - expect(spyCacheSave).toBeCalled(); - expect(spyWarning).not.toBeCalled(); + expect(spyCacheSave).toHaveBeenCalled(); + expect(spyWarning).not.toHaveBeenCalled(); }); it('does not fail even though the save process throws error', async () => { @@ -50,7 +63,7 @@ describe('cleanup', () => { return name === 'cache' ? 'gradle' : ''; }); await cleanup(); - expect(spyCacheSave).toBeCalled(); + expect(spyCacheSave).toHaveBeenCalled(); }); }); diff --git a/__tests__/data/dragonwell.json b/__tests__/data/dragonwell.json new file mode 100644 index 000000000..290c5989c --- /dev/null +++ b/__tests__/data/dragonwell.json @@ -0,0 +1,1324 @@ +{ + "11":{ + "11.0.13.9":{ + "alpine-linux":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"f2c68862136d12ab30358d3acfe95f925a8775f9000c54776a4439afcb02cb4a", + "name":"Alibaba_Dragonwell_11.0.13.9_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.13.9_jdk-11.0.13-ga/Alibaba_Dragonwell_11.0.13.9_x64_alpine-linux.tar.gz" + } + } + }, + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"04edcefd10f3d058b1691e73c25d91ad28870809847a5c092bc9096595f0de35", + "name":"Alibaba_Dragonwell_11.0.13.9_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.13.9_jdk-11.0.13-ga/Alibaba_Dragonwell_11.0.13.9_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"f2553f6beb567f0e5c3ed4fd22339e05e534b8b283802265cb147d883ad6ca64", + "name":"Alibaba_Dragonwell_11.0.13.9_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.13.9_jdk-11.0.13-ga/Alibaba_Dragonwell_11.0.13.9_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"2e2b7d66a02c3d9a9aff1a7b413a98e8291c08533825d407bcfc4e360b89b018", + "name":"Alibaba_Dragonwell_11.0.13.9_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.13.9_jdk-11.0.13-ga/Alibaba_Dragonwell_11.0.13.9_x64_windows.zip" + } + } + } + }, + "11.0.5.1-preview":{}, + "11.0.17.13.8":{ + "alpine-linux":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"00d03f4959ae77f77019a400cf90359b9f6ca3f73a391c3c6872e717c34f3536", + "name":"Alibaba_Dragonwell_Extended_11.0.17.13.8_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-extended-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Extended_11.0.17.13.8_x64_alpine-linux.tar.gz" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"12859813fe860e36995565574c1d165583cb7d34e8f917ec515cf044453d466e", + "name":"Alibaba_Dragonwell_Standard_11.0.17.13.8_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-standard-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Standard_11.0.17.13.8_x64_alpine-linux.tar.gz" + } + } + }, + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"d56122ebfee4ded7066955675f0ac2474ef6355547e9de838cd18bf7c7d8ac57", + "name":"Alibaba_Dragonwell_Extended_11.0.17.13.8_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-extended-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Extended_11.0.17.13.8_aarch64_linux.tar.gz" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"14c4a17a65bf478b25410714433f5af8df0a0ffaaedf6d94b8901f8b7ecbfa8a", + "name":"Alibaba_Dragonwell_Standard_11.0.17.13.8_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-standard-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Standard_11.0.17.13.8_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"9a01b3799883485263158241625a7abf72d4696cb2f3a7e069f1b5df8d1e30cd", + "name":"Alibaba_Dragonwell_Extended_11.0.17.13.8_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-extended-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Extended_11.0.17.13.8_x64_linux.tar.gz" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"089e8e10956316a91ccb00ee64642df9b9182cc3da7a6354eaf5c4f87f39afb1", + "name":"Alibaba_Dragonwell_Standard_11.0.17.13.8_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-standard-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Standard_11.0.17.13.8_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"198fcfde686de580dcf2607e3a97e1b241b1a3a12c07e6a2abc62f9560c31d05", + "name":"Alibaba_Dragonwell_Extended_11.0.17.13.8_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-extended-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Extended_11.0.17.13.8_x64_windows.zip" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"fb591b3727d2232a3fb9750e846a02b3939f0beaf50f377d2c8eac50f4d317ac", + "name":"Alibaba_Dragonwell_Standard_11.0.17.13.8_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-standard-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Standard_11.0.17.13.8_x64_windows.zip" + } + } + } + }, + "11.0.10.5":{ + "alpine-linux":{ + "x64":{ + "Extended":{ + "content_type":"application/x-gzip", + "name":"Alibaba_Dragonwell_11.0.10.5_alpine-linux_x64.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.10.5_jdk-11.0.10-ga/Alibaba_Dragonwell_11.0.10.5_alpine-linux_x64.tar.gz" + } + } + }, + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/x-gzip", + "name":"Alibaba_Dragonwell_11.0.10.5_linux_aarch64.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.10.5_jdk-11.0.10-ga/Alibaba_Dragonwell_11.0.10.5_linux_aarch64.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/x-gzip", + "name":"Alibaba_Dragonwell_11.0.10.5_linux_x64.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.10.5_jdk-11.0.10-ga/Alibaba_Dragonwell_11.0.10.5_linux_x64.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "name":"Alibaba_Dragonwell_11.0.10.5_windows_x64.zip", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.10.5_jdk-11.0.10-ga/Alibaba_Dragonwell_11.0.10.5_windows_x64.zip" + } + } + } + }, + "11.0.7.2":{ + "linux":{ + "x64":{ + "Extended":{ + "content_type":"application/x-gzip", + "name":"Alibaba_Dragonwell_11.0.7.2+9_Linux_x64.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell_11.0.7.2_GA/Alibaba_Dragonwell_11.0.7.2%2B9_Linux_x64.tar.gz" + } + } + } + }, + "11.0.14.10":{ + "alpine-linux":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"f2ce78515307f327d04ec8aa1e8646561c111ad0409097d10520868c3156bebe", + "name":"Alibaba_Dragonwell_11.0.14.10_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.14.10_jdk-11.0.14-ga/Alibaba_Dragonwell_11.0.14.10_x64_alpine-linux.tar.gz" + } + } + }, + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"4c45345734076495d5a838d67c7957c078de913a708242087130c0627716187e", + "name":"Alibaba_Dragonwell_11.0.14.10_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.14.10_jdk-11.0.14-ga/Alibaba_Dragonwell_11.0.14.10_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"f44fe94aa5ef14a67ed446698dd055ac1ab726ecb516de16b3cab24c666a71ae", + "name":"Alibaba_Dragonwell_11.0.14.10_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.14.10_jdk-11.0.14-ga/Alibaba_Dragonwell_11.0.14.10_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"55ef8cf936a901c7e333c21945b6f31edd9c9a3a5973706ab7aeea7f4fb5c436", + "name":"Alibaba_Dragonwell_11.0.14.10_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.14.10_jdk-11.0.14-ga/Alibaba_Dragonwell_11.0.14.10_x64_windows.zip" + } + } + } + }, + "11.0.11.7":{ + "alpine-linux":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"609bf39d47f567570de8becf632e27e0fbd14ae3102fab96f347c72798c49010", + "name":"Alibaba_Dragonwell_11.0.11.7_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.11.7_jdk-11.0.11-ga/Alibaba_Dragonwell_11.0.11.7_x64_alpine-linux.tar.gz" + } + } + }, + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"44b5b977b0582ec1185fa09dfebd642ba65a87bd18988cc47b03b999b5f73551", + "name":"Alibaba_Dragonwell_11.0.11.7_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.11.7_jdk-11.0.11-ga/Alibaba_Dragonwell_11.0.11.7_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"84d62e0daa5f1609a9086cffe07b8bdad734ad3b012827bb19a99eee8bbd41f3", + "name":"Alibaba_Dragonwell_11.0.11.7_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.11.7_jdk-11.0.11-ga/Alibaba_Dragonwell_11.0.11.7_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"e97a88d72d6abd712f57f1cf8a215e064f91373389c0c072b824024d48481143", + "name":"Alibaba_Dragonwell_11.0.11.7_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.11.7_jdk-11.0.11-ga/Alibaba_Dragonwell_11.0.11.7_x64_windows.zip" + } + } + } + }, + "11.0.16.12":{ + "alpine-linux":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"ea9de44b853172b5c6594fbe3d81723a21ad978a225ac1fa393925349c4bb7b9", + "name":"Alibaba_Dragonwell_Extended_11.0.16.12.8_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-extended-11.0.16.12_jdk-11.0.16-ga/Alibaba_Dragonwell_Extended_11.0.16.12.8_x64_alpine-linux.tar.gz" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"44ca11f491873863e43bb6e476df7fd8fa453c563a932cf488b9d00ab7ef68c9", + "name":"Alibaba_Dragonwell_Standard_11.0.16.12.8_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-standard-11.0.16.12_jdk-11.0.16-ga/Alibaba_Dragonwell_Standard_11.0.16.12.8_x64_alpine-linux.tar.gz" + } + } + }, + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"28ff34de82a1c020350c7b61b040a03b9e039cb5db4389e6af5711bb52abe4f3", + "name":"Alibaba_Dragonwell_Extended_11.0.16.12.8_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-extended-11.0.16.12_jdk-11.0.16-ga/Alibaba_Dragonwell_Extended_11.0.16.12.8_aarch64_linux.tar.gz" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"bd930ac692bcd2e511cdf5c55a3adddfe18375af79a36dd843d8b52bdb574f5f", + "name":"Alibaba_Dragonwell_Standard_11.0.16.12.8_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-standard-11.0.16.12_jdk-11.0.16-ga/Alibaba_Dragonwell_Standard_11.0.16.12.8_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"47b904df8fa702cb7a454666cbc27dafc40d3c7c73c5178e0d9ebe2fc9b9352a", + "name":"Alibaba_Dragonwell_Extended_11.0.16.12.8_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-extended-11.0.16.12_jdk-11.0.16-ga/Alibaba_Dragonwell_Extended_11.0.16.12.8_x64_linux.tar.gz" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"42d673d9effff252140e1402959881c3f255ee3a8b8776871fd8e775facb9584", + "name":"Alibaba_Dragonwell_Standard_11.0.16.12.8_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-standard-11.0.16.12_jdk-11.0.16-ga/Alibaba_Dragonwell_Standard_11.0.16.12.8_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"7d2f29c0691e1e72907b855bf5fb89bc5bf8b44a7fa632446537a71bbdf28f53", + "name":"Alibaba_Dragonwell_Extended_11.0.16.12.8_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-extended-11.0.16.12_jdk-11.0.16-ga/Alibaba_Dragonwell_Extended_11.0.16.12.8_x64_windows.zip" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"977565dc6984b4dcc8a260a31cd7678638402525f07e677c37aa6ae7fe6be469", + "name":"Alibaba_Dragonwell_Standard_11.0.16.12.8_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-standard-11.0.16.12_jdk-11.0.16-ga/Alibaba_Dragonwell_Standard_11.0.16.12.8_x64_windows.zip" + } + } + } + }, + "11.0.15.11":{ + "alpine-linux":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"52ad29ef644b8c268cf2c5b3d5fc15a9b0be6f246407ddce92e547b8473b642f", + "name":"Alibaba_Dragonwell_11.0.15.11.9_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.15.11_jdk-11.0.15-ga/Alibaba_Dragonwell_11.0.15.11.9_x64_alpine-linux.tar.gz" + } + } + }, + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"459bec951d0b2d610bda8cc1fd649406abe4edc8bcda78568b2fca828993f040", + "name":"Alibaba_Dragonwell_11.0.15.11.9_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.15.11_jdk-11.0.15-ga/Alibaba_Dragonwell_11.0.15.11.9_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"2406a9b12682d443aa606213d6c00ec83d96b2d157a70728edd6b9bca80c4eab", + "name":"Alibaba_Dragonwell_11.0.15.11.9_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.15.11_jdk-11.0.15-ga/Alibaba_Dragonwell_11.0.15.11.9_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"789a3b3a9fc7ceaab9920ffc21084684b8ba5087f1c8c48dd8ff92cb3e3c2ba1", + "name":"Alibaba_Dragonwell_11.0.15.11.9_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.15.11_jdk-11.0.15-ga/Alibaba_Dragonwell_11.0.15.11.9_x64_windows.zip" + } + } + } + }, + "11.0.11.6":{ + "alpine-linux":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"556dabaf88dac69c12b2b880acafe980d746b97b70fcf4539f49ec4da66f227f", + "name":"Alibaba_Dragonwell_11.0.11.6_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.11.6_jdk-11.0.11-ga/Alibaba_Dragonwell_11.0.11.6_x64_alpine-linux.tar.gz" + } + } + }, + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"645d7643c77c425d83617a5893f9bb11fc3972c42652b1cda23f894bf52a23c2", + "name":"Alibaba_Dragonwell_11.0.11.6_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.11.6_jdk-11.0.11-ga/Alibaba_Dragonwell_11.0.11.6_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"cf1fced88d829f9995a666cb5a032275d10e94294dc9c16a3365839153317236", + "name":"Alibaba_Dragonwell_11.0.11.6_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.11.6_jdk-11.0.11-ga/Alibaba_Dragonwell_11.0.11.6_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"3c618dc104d4c3d789aa4df5e8cfa95454293499f4f984a5b6b7fe6c672a2afb", + "name":"Alibaba_Dragonwell_11.0.11.6_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.11.6_jdk-11.0.11-ga/Alibaba_Dragonwell_11.0.11.6_x64_windows.zip" + } + } + } + }, + "11.0.12.8":{ + "alpine-linux":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"173fef1655db84b11c3a855c950bbf76c9e8b0891a496fcda441eff68ea84f59", + "name":"Alibaba_Dragonwell_11.0.12.8_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.12.8_jdk-11.0.12-ga/Alibaba_Dragonwell_11.0.12.8_x64_alpine-linux.tar.gz" + } + } + }, + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"f18115624ad57d9609035fa169feef956d085cf9ad6d3caaf1bd68b87e495537", + "name":"Alibaba_Dragonwell_11.0.12.8_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.12.8_jdk-11.0.12-ga/Alibaba_Dragonwell_11.0.12.8_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"045166d6dee2e55e2571bb9c02dcf822b538d44a9b5aaac918032e8e137ca512", + "name":"Alibaba_Dragonwell_11.0.12.8_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.12.8_jdk-11.0.12-ga/Alibaba_Dragonwell_11.0.12.8_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"1865733f3f134c205297a32914347217bec8ed331218171600492ac0808e5789", + "name":"Alibaba_Dragonwell_11.0.12.8_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-11.0.12.8_jdk-11.0.12-ga/Alibaba_Dragonwell_11.0.12.8_x64_windows.zip" + } + } + } + }, + "11.0.8.3":{}, + "11.0.9.4":{}, + "latest":{ + "alpine-linux":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"00d03f4959ae77f77019a400cf90359b9f6ca3f73a391c3c6872e717c34f3536", + "name":"Alibaba_Dragonwell_Extended_11.0.17.13.8_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-extended-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Extended_11.0.17.13.8_x64_alpine-linux.tar.gz" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"12859813fe860e36995565574c1d165583cb7d34e8f917ec515cf044453d466e", + "name":"Alibaba_Dragonwell_Standard_11.0.17.13.8_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-standard-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Standard_11.0.17.13.8_x64_alpine-linux.tar.gz" + } + } + }, + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"d56122ebfee4ded7066955675f0ac2474ef6355547e9de838cd18bf7c7d8ac57", + "name":"Alibaba_Dragonwell_Extended_11.0.17.13.8_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-extended-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Extended_11.0.17.13.8_aarch64_linux.tar.gz" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"14c4a17a65bf478b25410714433f5af8df0a0ffaaedf6d94b8901f8b7ecbfa8a", + "name":"Alibaba_Dragonwell_Standard_11.0.17.13.8_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-standard-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Standard_11.0.17.13.8_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"9a01b3799883485263158241625a7abf72d4696cb2f3a7e069f1b5df8d1e30cd", + "name":"Alibaba_Dragonwell_Extended_11.0.17.13.8_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-extended-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Extended_11.0.17.13.8_x64_linux.tar.gz" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"089e8e10956316a91ccb00ee64642df9b9182cc3da7a6354eaf5c4f87f39afb1", + "name":"Alibaba_Dragonwell_Standard_11.0.17.13.8_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-standard-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Standard_11.0.17.13.8_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"198fcfde686de580dcf2607e3a97e1b241b1a3a12c07e6a2abc62f9560c31d05", + "name":"Alibaba_Dragonwell_Extended_11.0.17.13.8_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-extended-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Extended_11.0.17.13.8_x64_windows.zip" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"fb591b3727d2232a3fb9750e846a02b3939f0beaf50f377d2c8eac50f4d317ac", + "name":"Alibaba_Dragonwell_Standard_11.0.17.13.8_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell11/releases/download/dragonwell-standard-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Standard_11.0.17.13.8_x64_windows.zip" + } + } + } + }, + "11.0.23.20.9" : { + "alpine-linux" : { + "x64" : { + "Extended" : { + "sha256" : "9d61fefb4f1a8368f8e7eec17893934b438b67f360cb8b7ef727ab459695d14e", + "name" : "Alibaba_Dragonwell_Extended_11.0.23.20.9_x64_alpine-linux.tar.gz", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell11/releases/download/dragonwell-extended-11.0.23.20_jdk-11.0.23-ga/Alibaba_Dragonwell_Extended_11.0.23.20.9_x64_alpine-linux.tar.gz" + } + } + }, + "linux" : { + "aarch64" : { + "Extended" : { + "sha256" : "2f399231644fe1e3f1b4b5298e85f21f4863017767e9e5afb00ee46e2d7780d9", + "name" : "Alibaba_Dragonwell_Extended_11.0.23.20.9_aarch64_linux.tar.gz", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell11/releases/download/dragonwell-extended-11.0.23.20_jdk-11.0.23-ga/Alibaba_Dragonwell_Extended_11.0.23.20.9_aarch64_linux.tar.gz" + } + }, + "x64" : { + "Extended" : { + "sha256" : "662dfdc584e21bcfb7ed87942b5bb4e71a7b7467d4c82211a3615d0834d1c833", + "name" : "Alibaba_Dragonwell_Extended_11.0.23.20.9_x64_linux.tar.gz", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell11/releases/download/dragonwell-extended-11.0.23.20_jdk-11.0.23-ga/Alibaba_Dragonwell_Extended_11.0.23.20.9_x64_linux.tar.gz" + } + }, + "riscv" : { + "Extended" : { + "sha256" : "f3488461cbfd95e6c08ad2dc01c51950b9c629c46eea6305002311b263ce2ad9", + "name" : "Alibaba_Dragonwell_Extended_11.0.23.20.9_riscv64_linux.tar.gz", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell11/releases/download/dragonwell-extended-11.0.23.20_jdk-11.0.23-ga/Alibaba_Dragonwell_Extended_11.0.23.20.9_riscv64_linux.tar.gz" + } + } + }, + "windows" : { + "x64" : { + "Extended" : { + "sha256" : "ba8dba2b7f2279f87220f396afcce49cb26482705deb5144c6e22a90ba443f9d", + "name" : "Alibaba_Dragonwell_Extended_11.0.23.20.9_x64_windows.zip", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell11/releases/download/dragonwell-extended-11.0.23.20_jdk-11.0.23-ga/Alibaba_Dragonwell_Extended_11.0.23.20.9_x64_windows.zip" + } + } + } + } + }, + "17":{ + "17.0.5.0.5.8":{ + "alpine-linux":{ + "x64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"ccbfac0f24f7c4a4f35b2361ba32b37ae6d97553679ae60543b69a4ad477f95f", + "name":"Alibaba_Dragonwell_Standard_17.0.5.0.5.8_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.5.0.5%2B8_jdk-17.0.5-ga/Alibaba_Dragonwell_Standard_17.0.5.0.5.8_x64_alpine-linux.tar.gz" + } + } + }, + "linux":{ + "aarch64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"929be7d0d0aa7c2bd196db4b6f3ead10dbeb240afc9db6c68974e79961c59003", + "name":"Alibaba_Dragonwell_Standard_17.0.5.0.5.8_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.5.0.5%2B8_jdk-17.0.5-ga/Alibaba_Dragonwell_Standard_17.0.5.0.5.8_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"a505dea63fd58925a1512dad77d5fdc9bc6c2ebb42f065001091eb31e30ed43f", + "name":"Alibaba_Dragonwell_Standard_17.0.5.0.5.8_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.5.0.5%2B8_jdk-17.0.5-ga/Alibaba_Dragonwell_Standard_17.0.5.0.5.8_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"95be23b7ca73eba7d4f59a73a148475d7f05c1e36bd2c8653158c7c1584c9350", + "name":"Alibaba_Dragonwell_Standard_17.0.5.0.5.8_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.5.0.5%2B8_jdk-17.0.5-ga/Alibaba_Dragonwell_Standard_17.0.5.0.5.8_x64_windows.zip" + } + } + } + }, + "17.0.3.0.3.7":{ + "alpine-linux":{ + "x64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"4620312ff9fa2772aed71315280af7c4c65cfa91e4a77bd47f6471ed279ed8a7", + "name":"Alibaba_Dragonwell_17.0.3.0.3+7_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-17.0.3.0.3%2B7_jdk-17.0.3-ga/Alibaba_Dragonwell_17.0.3.0.3%2B7_x64_alpine-linux.tar.gz" + } + } + }, + "linux":{ + "aarch64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"84c9571fccb7e028c59657712e686cd1560d760a560ee8c76d0f99e2795aafcd", + "name":"Alibaba_Dragonwell_17.0.3.0.3+7_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-17.0.3.0.3%2B7_jdk-17.0.3-ga/Alibaba_Dragonwell_17.0.3.0.3%2B7_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"8431922266c1a476e1ca2d49c68110c22ec4f989ca0438b0b089ecd9c7ade0ce", + "name":"Alibaba_Dragonwell_17.0.3.0.3+7_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-17.0.3.0.3%2B7_jdk-17.0.3-ga/Alibaba_Dragonwell_17.0.3.0.3%2B7_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"e9ddd27b24040d63c0663a11c8f7f100c8d2cca7461d4a19c36e12129f0ae8de", + "name":"Alibaba_Dragonwell_17.0.3.0.3+7_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-17.0.3.0.3%2B7_jdk-17.0.3-ga/Alibaba_Dragonwell_17.0.3.0.3%2B7_x64_windows.zip" + } + } + } + }, + "17.0.2.0.2.8":{ + "alpine-linux":{ + "x64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"b7a261502e8aac714defeb7fc8c48c508e63d4fc2902cbb03511a1db0291d5e9", + "name":"Alibaba_Dragonwell_17.0.2.0.2+8_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-17.0.2.0.2%2B8_jdk-17.0.2-ga/Alibaba_Dragonwell_17.0.2.0.2%2B8_x64_alpine-linux.tar.gz" + } + } + }, + "linux":{ + "aarch64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"cc9f9fbd33c117f164eacfbafa2ae92270d88bc9b3d4ea4a862a20cacdcf9115", + "name":"Alibaba_Dragonwell_17.0.2.0.2+8_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-17.0.2.0.2%2B8_jdk-17.0.2-ga/Alibaba_Dragonwell_17.0.2.0.2%2B8_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"a345601439294b56831ecdd1366ac4006c3828e25f18a0fc59f34aa07387a97b", + "name":"Alibaba_Dragonwell_17.0.2.0.2+8_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-17.0.2.0.2%2B8_jdk-17.0.2-ga/Alibaba_Dragonwell_17.0.2.0.2%2B8_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"90332f5ffd03edc853cbe9d3447c4000d6406b1165e0c114fd7925ba3aea36f2", + "name":"Alibaba_Dragonwell_17.0.2.0.2+8_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-17.0.2.0.2%2B8_jdk-17.0.2-ga/Alibaba_Dragonwell_17.0.2.0.2%2B8_x64_windows.zip" + } + } + } + }, + "17.0.4.0.4.8":{ + "alpine-linux":{ + "x64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"6e2fbad38dd6b9e0a7986f49a0885f5406518c3bbf3a7f0b4360dc36006bd34a", + "name":"Alibaba_Dragonwell_Standard_17.0.4.0.4+8_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.4.0.4%2B8_jdk-17.0.4-ga/Alibaba_Dragonwell_Standard_17.0.4.0.4%2B8_x64_alpine-linux.tar.gz" + } + } + }, + "linux":{ + "aarch64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"1e7b974b860e9062c8a65dab4c71f84b20527b08866062a67c38963017a5f3fe", + "name":"Alibaba_Dragonwell_Standard_17.0.4.0.4+8_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.4.0.4%2B8_jdk-17.0.4-ga/Alibaba_Dragonwell_Standard_17.0.4.0.4%2B8_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"31b3b6293b6645de7c531d16427ec38809ffaa0ef2db9a29c9c2230c5dc10eec", + "name":"Alibaba_Dragonwell_Standard_17.0.4.0.4+8_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.4.0.4%2B8_jdk-17.0.4-ga/Alibaba_Dragonwell_Standard_17.0.4.0.4%2B8_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"7b23e8c2d49f2c1a067180da3abdd89ed80d5e562c80341e60b547bc1f83bbea", + "name":"Alibaba_Dragonwell_Standard_17.0.4.0.4+8_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.4.0.4%2B8_jdk-17.0.4-ga/Alibaba_Dragonwell_Standard_17.0.4.0.4%2B8_x64_windows.zip" + } + } + } + }, + "latest":{ + "alpine-linux":{ + "x64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"ccbfac0f24f7c4a4f35b2361ba32b37ae6d97553679ae60543b69a4ad477f95f", + "name":"Alibaba_Dragonwell_Standard_17.0.5.0.5.8_x64_alpine-linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.5.0.5%2B8_jdk-17.0.5-ga/Alibaba_Dragonwell_Standard_17.0.5.0.5.8_x64_alpine-linux.tar.gz" + } + } + }, + "linux":{ + "aarch64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"929be7d0d0aa7c2bd196db4b6f3ead10dbeb240afc9db6c68974e79961c59003", + "name":"Alibaba_Dragonwell_Standard_17.0.5.0.5.8_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.5.0.5%2B8_jdk-17.0.5-ga/Alibaba_Dragonwell_Standard_17.0.5.0.5.8_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"a505dea63fd58925a1512dad77d5fdc9bc6c2ebb42f065001091eb31e30ed43f", + "name":"Alibaba_Dragonwell_Standard_17.0.5.0.5.8_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.5.0.5%2B8_jdk-17.0.5-ga/Alibaba_Dragonwell_Standard_17.0.5.0.5.8_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Standard":{ + "content_type":"application/zip", + "sha256":"95be23b7ca73eba7d4f59a73a148475d7f05c1e36bd2c8653158c7c1584c9350", + "name":"Alibaba_Dragonwell_Standard_17.0.5.0.5.8_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.5.0.5%2B8_jdk-17.0.5-ga/Alibaba_Dragonwell_Standard_17.0.5.0.5.8_x64_windows.zip" + } + } + } + } + }, + "8":{ + "8.7.7":{ + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"6f18f6e2408513b2624af938f33eb11ddee91ab3ac2efd8fef5249059ca10588", + "name":"Alibaba_Dragonwell_8.7.7_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.7.7_jdk8u292-ga/Alibaba_Dragonwell_8.7.7_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"799b336da16e4b4c1e25a332e457ed396ef575579f5e9cfcf0332ad29e2ca4e8", + "name":"Alibaba_Dragonwell_8.7.7_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.7.7_jdk8u292-ga/Alibaba_Dragonwell_8.7.7_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"9d1b0c8d68e990bec8f9d094af79d3327f47797a38ecd3f71c1cb0f13a0de66d", + "name":"Alibaba_Dragonwell_8.7.7_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.7.7_jdk8u292-ga/Alibaba_Dragonwell_8.7.7_x64_windows.zip" + } + } + } + }, + "8.6.6":{ + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"7b280e76b8d830187433fe69cb121142b8b535706cbbde70804fdeb670bb3487", + "name":"Alibaba_Dragonwell_8.6.6_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.6.6_jdk8u282-ga/Alibaba_Dragonwell_8.6.6_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"573e484ac0b64b081eaeaaeb08444e4add770b696c9a1c8bb02e98d1d58ff350", + "name":"Alibaba_Dragonwell_8.6.6_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.6.6_jdk8u282-ga/Alibaba_Dragonwell_8.6.6_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"16eefe64811b083e24ef77b28d33dccbc8f560e23ba6d36126eecee8674e2b6f", + "name":"Alibaba_Dragonwell_8.6.6_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.6.6_jdk8u282-ga/Alibaba_Dragonwell_8.6.6_x64_windows.zip" + } + } + } + }, + "8.8.8":{ + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"60c4519b32e032f43667d397acc684cb954c591e533b70fe40c67e7977fb17d9", + "name":"Alibaba_Dragonwell_8.8.8_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.8.8_jdk8u302-ga/Alibaba_Dragonwell_8.8.8_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"98599d98cea102abb8ac3bbf30a348a58e05e81a22c62bc409b9fb07ad3b20a9", + "name":"Alibaba_Dragonwell_8.8.8_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.8.8_jdk8u302-ga/Alibaba_Dragonwell_8.8.8_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"b6d188ae4102c84bf9e071edb5f0c66e5505422e05a6c74f1a2882ed5813fc2b", + "name":"Alibaba_Dragonwell_8.8.8_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.8.8_jdk8u302-ga/Alibaba_Dragonwell_8.8.8_x64_windows.zip" + } + } + } + }, + "8.8.9":{ + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"ff0594f36d13883972ca0b302d35cca5099f10b8be54c70c091f626e4e308774", + "name":"Alibaba_Dragonwell_8.8.9_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.8.9_jdk8u302-ga/Alibaba_Dragonwell_8.8.9_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"cd83125cde0a3a2a12d04c72abe61a522af9071a3d7ada8156c42a51e6dbcf7e", + "name":"Alibaba_Dragonwell_8.8.9_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.8.9_jdk8u302-ga/Alibaba_Dragonwell_8.8.9_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"40f66998c0d6830a45065764e5228427e3b5c71a89337352b8385f34aa845e74", + "name":"Alibaba_Dragonwell_8.8.9_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.8.9_jdk8u302-ga/Alibaba_Dragonwell_8.8.9_x64_windows.zip" + } + } + } + }, + "8.5.5":{ + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/x-gzip", + "name":"Alibaba_Dragonwell_8.5.5-FP1_Linux_aarch64.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.5.5_jdk8u275-b2/Alibaba_Dragonwell_8.5.5-FP1_Linux_aarch64.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/x-gzip", + "name":"Alibaba_Dragonwell_8.5.5-FP1_Linux_x64.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.5.5_jdk8u275-b2/Alibaba_Dragonwell_8.5.5-FP1_Linux_x64.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/x-zip-compressed", + "name":"Alibaba_Dragonwell_8.5.5-Experimental_Windows_x64.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.5.5_jdk8u275-b2/Alibaba_Dragonwell_8.5.5-Experimental_Windows_x64.zip" + } + } + } + }, + "8.6.5":{ + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/x-gzip", + "name":"Alibaba_Dragonwell_8.6.5_GA_Linux_aarch64.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.6.5_jdk8u282-b1/Alibaba_Dragonwell_8.6.5_GA_Linux_aarch64.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/x-gzip", + "name":"Alibaba_Dragonwell_8.6.5_GA_Linux_x64.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.6.5_jdk8u282-b1/Alibaba_Dragonwell_8.6.5_GA_Linux_x64.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "name":"Alibaba_Dragonwell_8.6.5_Experimental_Windows_x64.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.6.5_jdk8u282-b1/Alibaba_Dragonwell_8.6.5_Experimental_Windows_x64.zip" + } + } + } + }, + "8.4.4":{ + "linux":{ + "x64":{ + "Extended":{ + "content_type":"application/x-gzip", + "name":"Alibaba_Dragonwell_8.4.4-GA_Linux_x64.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.4.4_jdk8u262-ga/Alibaba_Dragonwell_8.4.4-GA_Linux_x64.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/x-gzip", + "name":"Alibaba_Dragonwell_8.4.4-Experimental_Windows_x64.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.4.4_jdk8u262-ga/Alibaba_Dragonwell_8.4.4-Experimental_Windows_x64.tar.gz" + } + } + } + }, + "8.5.4":{ + "linux":{ + "x64":{ + "Extended":{ + "content_type":"application/x-gzip", + "name":"Alibaba_Dragonwell_8.5.4-GA_Linux_x64.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.5.4_jdk8u272-ga/Alibaba_Dragonwell_8.5.4-GA_Linux_x64.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "name":"Alibaba_Dragonwell_8.5.4-GA_Experimental_Windows_x64.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.5.4_jdk8u272-ga/Alibaba_Dragonwell_8.5.4-GA_Experimental_Windows_x64.zip" + } + } + } + }, + "8.9.10":{ + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/x-gzip", + "sha256":"8f4a5fb7d2f0e633b1280c41e89a1bef325346679feda912b21b368c1df4f5df", + "name":"Alibaba_Dragonwell_8.9.10_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.9.10_jdk8u312-ga/Alibaba_Dragonwell_8.9.10_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/x-gzip", + "sha256":"2e1dfdacfe64a6b2f797cffd7ff8ee8cf6424d29fa594376a6916b1686a38433", + "name":"Alibaba_Dragonwell_8.9.10_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.9.10_jdk8u312-ga/Alibaba_Dragonwell_8.9.10_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"bdc5aaaf8b1b8469ae1e8b5513db9d0a65a610c9d61cae389954f44100ac7272", + "name":"Alibaba_Dragonwell_8.9.10_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.9.10_jdk8u312-ga/Alibaba_Dragonwell_8.9.10_x64_windows.zip" + } + } + } + }, + "8.12.13":{ + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/x-gzip", + "sha256":"12a8620a55dd85dc604bad71a770e235bbb773a301f5c1e12ba00c4d2bb9cea0", + "name":"Alibaba_Dragonwell_Extended_8.12.13_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-extended-8.12.13_jdk8u345-ga/Alibaba_Dragonwell_Extended_8.12.13_aarch64_linux.tar.gz" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"b368b47f771be507b96e435b1a5fc41cb133762cdc86a7801150f25bf1e58421", + "name":"Alibaba_Dragonwell_Standard_8.12.13_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-standard-8.12.13_jdk8u345-ga/Alibaba_Dragonwell_Standard_8.12.13_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/x-gzip", + "sha256":"0bb3a9b6109e29da6c7a0534cff9f34a0a16cab79ea850ebac7f7f9cfd071148", + "name":"Alibaba_Dragonwell_Extended_8.12.13_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-extended-8.12.13_jdk8u345-ga/Alibaba_Dragonwell_Extended_8.12.13_x64_linux.tar.gz" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"64c00ba16e2eb4bf5f867f6a0604d8f82e0627c61d45d7edddc87cec641d9dd7", + "name":"Alibaba_Dragonwell_Standard_8.12.13_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-standard-8.12.13_jdk8u345-ga/Alibaba_Dragonwell_Standard_8.12.13_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"3db624c7b835a7f4509e3937ea625dfdbca84aa4f84b73088a8eba5ceabe3adc", + "name":"Alibaba_Dragonwell_Extended_8.12.13_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-extended-8.12.13_jdk8u345-ga/Alibaba_Dragonwell_Extended_8.12.13_x64_windows.zip" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"22e523e1be2dafc6e1dc47835800a629991beed45805c1b82fb37524fc6069d1", + "name":"Alibaba_Dragonwell_Standard_8.12.13_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-standard-8.12.13_jdk8u345-ga/Alibaba_Dragonwell_Standard_8.12.13_x64_windows.zip" + } + } + } + }, + "8.11.12":{ + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"544a2b75c1b5963664395fba4b58bc6012cd1db36b68c0f1886d81d657a0b24b", + "name":"Alibaba_Dragonwell_8.11.12_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.11.12_jdk8u332-ga/Alibaba_Dragonwell_8.11.12_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"03923f200dffddf9eee2aadc0c495674fe0b87cc2eece94a9a8dec84812d12bd", + "name":"Alibaba_Dragonwell_8.11.12_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.11.12_jdk8u332-ga/Alibaba_Dragonwell_8.11.12_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"9bbd1dc3a19a1309468e5ef8487467f10ba785cf625476588bccfee0d3164c75", + "name":"Alibaba_Dragonwell_8.11.12_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.11.12_jdk8u332-ga/Alibaba_Dragonwell_8.11.12_x64_windows.zip" + } + } + } + }, + "8.10.11":{ + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"0cef113ff67338881a77f663b6562b96d181b4ac49cf4a27f65d3f615f6d04e8", + "name":"Alibaba_Dragonwell_8.10.11_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.10.11_jdk8u322-ga/Alibaba_Dragonwell_8.10.11_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"f81a565570ab799c0cb6079b7b9e9011bd3981a94f5db61039daae305cda1609", + "name":"Alibaba_Dragonwell_8.10.11_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.10.11_jdk8u322-ga/Alibaba_Dragonwell_8.10.11_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"c0349cdd651173e83e6ea6eec0eef5b894d54004a71d70126b7f3bcc9038da16", + "name":"Alibaba_Dragonwell_8.10.11_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-8.10.11_jdk8u322-ga/Alibaba_Dragonwell_8.10.11_x64_windows.zip" + } + } + } + }, + "8.13.14":{ + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"87546423fa952bfbf52a4f8aafa89ae579bc498c5d139d8e30063da625aa5a88", + "name":"Alibaba_Dragonwell_Extended_8.13.14_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-extended-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Extended_8.13.14_aarch64_linux.tar.gz" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"1cc019db94abf0b828620565c1118f96ef6884ad394bf96b77786c26771be61c", + "name":"Alibaba_Dragonwell_Standard_8.13.14_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-standard-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Standard_8.13.14_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"b9219b1b9d97069591b240a78003d0a8e782e84a8b7b1d08749afe7565d4e409", + "name":"Alibaba_Dragonwell_Extended_8.13.14_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-extended-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Extended_8.13.14_x64_linux.tar.gz" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"45b20c04ba93f8c25f1dcc75966bec461224ee9f875fdf3f49a09eb4606f3149", + "name":"Alibaba_Dragonwell_Standard_8.13.14_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-standard-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Standard_8.13.14_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"6b1c6165d5cb807579af7f90f05669edff34499c91d624941921a83f3f52ec62", + "name":"Alibaba_Dragonwell_Extended_8.13.14_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-extended-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Extended_8.13.14_x64_windows.zip" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"41207bb05da8fa447e7b0d669b0918f3b9d702a8ef84f01cca256e58cef8a44c", + "name":"Alibaba_Dragonwell_Standard_8.13.14_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-standard-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Standard_8.13.14_x64_windows.zip" + } + } + } + }, + "latest":{ + "linux":{ + "aarch64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"87546423fa952bfbf52a4f8aafa89ae579bc498c5d139d8e30063da625aa5a88", + "name":"Alibaba_Dragonwell_Extended_8.13.14_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-extended-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Extended_8.13.14_aarch64_linux.tar.gz" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"1cc019db94abf0b828620565c1118f96ef6884ad394bf96b77786c26771be61c", + "name":"Alibaba_Dragonwell_Standard_8.13.14_aarch64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-standard-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Standard_8.13.14_aarch64_linux.tar.gz" + } + }, + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"b9219b1b9d97069591b240a78003d0a8e782e84a8b7b1d08749afe7565d4e409", + "name":"Alibaba_Dragonwell_Extended_8.13.14_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-extended-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Extended_8.13.14_x64_linux.tar.gz" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"45b20c04ba93f8c25f1dcc75966bec461224ee9f875fdf3f49a09eb4606f3149", + "name":"Alibaba_Dragonwell_Standard_8.13.14_x64_linux.tar.gz", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-standard-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Standard_8.13.14_x64_linux.tar.gz" + } + } + }, + "windows":{ + "x64":{ + "Extended":{ + "content_type":"application/zip", + "sha256":"6b1c6165d5cb807579af7f90f05669edff34499c91d624941921a83f3f52ec62", + "name":"Alibaba_Dragonwell_Extended_8.13.14_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-extended-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Extended_8.13.14_x64_windows.zip" + }, + "Standard":{ + "content_type":"application/zip", + "sha256":"41207bb05da8fa447e7b0d669b0918f3b9d702a8ef84f01cca256e58cef8a44c", + "name":"Alibaba_Dragonwell_Standard_8.13.14_x64_windows.zip", + "download_url":"https://github.com/alibaba/dragonwell8/releases/download/dragonwell-standard-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Standard_8.13.14_x64_windows.zip" + } + } + } + } + }, + "21" : { + "21.0.3.0.3.9" : { + "alpine-linux" : { + "x64" : { + "Standard" : { + "sha256" : "c3c5d193a0a6aee8757fd3036dc13b7921a4306b089bf8759ba6b822d1e8416e", + "name" : "Alibaba_Dragonwell_Standard_21.0.3.0.3.9_x64_alpine-linux.tar.gz", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.3.0.3%2B9_jdk-21.0.3-ga/Alibaba_Dragonwell_Standard_21.0.3.0.3.9_x64_alpine-linux.tar.gz" + } + } + }, + "linux" : { + "aarch64" : { + "Standard" : { + "sha256" : "3cc309627ad2a9515ca50cdeff9eff118f14326b37eaa536b758570082aeb242", + "name" : "Alibaba_Dragonwell_Standard_21.0.3.0.3.9_aarch64_linux.tar.gz", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.3.0.3%2B9_jdk-21.0.3-ga/Alibaba_Dragonwell_Standard_21.0.3.0.3.9_aarch64_linux.tar.gz" + } + }, + "x64" : { + "Standard" : { + "sha256" : "1c0508db048c0b50e2d61b2cc5a5390d3b9bcafec6e185d2cb53dde1fc530203", + "name" : "Alibaba_Dragonwell_Standard_21.0.3.0.3.9_x64_linux.tar.gz", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.3.0.3%2B9_jdk-21.0.3-ga/Alibaba_Dragonwell_Standard_21.0.3.0.3.9_x64_linux.tar.gz" + } + }, + "riscv" : { + "Standard" : { + "sha256" : "e374698f8ee9c66b8d4a59ba50d0511aa654b55514732bc787e29c9afaddf846", + "name" : "Alibaba_Dragonwell_Standard_21.0.3.0.3.9_riscv64_linux.tar.gz", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.3.0.3%2B9_jdk-21.0.3-ga/Alibaba_Dragonwell_Standard_21.0.3.0.3.9_riscv64_linux.tar.gz" + } + } + }, + "windows" : { + "x64" : { + "Standard" : { + "sha256" : "0b75fc888cb2a9c7e050132fd020c30cbe65f3179feb36812a7c6be3c76ad277", + "name" : "Alibaba_Dragonwell_Standard_21.0.3.0.3.9_x64_windows.zip", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.3.0.3%2B9_jdk-21.0.3-ga/Alibaba_Dragonwell_Standard_21.0.3.0.3.9_x64_windows.zip" + } + } + } + }, + "21.0.2.0.2.13" : { + "alpine-linux" : { + "x64" : { + "Standard" : { + "sha256" : "71a391987fdd569385c0afe1aaf16dbd48d127e14306793ef9ac0e0986b9632c", + "name" : "Alibaba_Dragonwell_Standard_21.0.2.0.2.13_x64_alpine-linux.tar.gz", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.2.0.2%2B13_jdk-21.0.2-ga/Alibaba_Dragonwell_Standard_21.0.2.0.2.13_x64_alpine-linux.tar.gz" + } + } + }, + "linux" : { + "aarch64" : { + "Standard" : { + "sha256" : "307321a399c206f8d56e0ce5c65921f9448ec9882dfb81ffc5e841b8fb5f8ed8", + "name" : "Alibaba_Dragonwell_Standard_21.0.2.0.2.13_aarch64_linux.tar.gz", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.2.0.2%2B13_jdk-21.0.2-ga/Alibaba_Dragonwell_Standard_21.0.2.0.2.13_aarch64_linux.tar.gz" + } + }, + "x64" : { + "Standard" : { + "sha256" : "24198f0d436bb913b152181e07205647b05da01c196f5c10a96e9a998b10381a", + "name" : "Alibaba_Dragonwell_Standard_21.0.2.0.2.13_x64_linux.tar.gz", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.2.0.2%2B13_jdk-21.0.2-ga/Alibaba_Dragonwell_Standard_21.0.2.0.2.13_x64_linux.tar.gz" + } + }, + "riscv" : { + "Standard" : { + "sha256" : "970a49103b8971952e46c81be844bc3776caca04da8456337f12e3a7d2a18011", + "name" : "Alibaba_Dragonwell_Standard_21.0.2.0.2.13_riscv64_linux.tar.gz", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.2.0.2%2B13_jdk-21.0.2-ga/Alibaba_Dragonwell_Standard_21.0.2.0.2.13_riscv64_linux.tar.gz" + } + } + }, + "windows" : { + "x64" : { + "Standard" : { + "sha256" : "b77de54be5ef1595fc568f6f18fbd4b61d64d99a0c9c5ef78a84018b4f82032b", + "name" : "Alibaba_Dragonwell_Standard_21.0.2.0.2.13_x64_windows.zip", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.2.0.2%2B13_jdk-21.0.2-ga/Alibaba_Dragonwell_Standard_21.0.2.0.2.13_x64_windows.zip" + } + } + } + }, + "21.0.1.0.1.12" : { + "alpine-linux" : { + "x64" : { + "Standard" : { + "sha256" : "b9cea58bffe555484b831ff6d7cdb277c07e86a76d32b373ec35fa21ecb5fdc9", + "name" : "Alibaba_Dragonwell_Standard_21.0.1.0.1.12_x64_alpine-linux.tar.gz", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.1.0.1%2B12_jdk-21.0.1-ga/Alibaba_Dragonwell_Standard_21.0.1.0.1.12_x64_alpine-linux.tar.gz" + } + } + }, + "linux" : { + "aarch64" : { + "Standard" : { + "sha256" : "d36cef494ccc1939c6b5da04133cfdbe0b03956fd04147aef46014536bc5a37b", + "name" : "Alibaba_Dragonwell_Standard_21.0.1.0.1.12_aarch64_linux.tar.gz", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.1.0.1%2B12_jdk-21.0.1-ga/Alibaba_Dragonwell_Standard_21.0.1.0.1.12_aarch64_linux.tar.gz" + } + }, + "x64" : { + "Standard" : { + "sha256" : "dfb8d325a98b8f577d72fd639cc54feee325eec8ebba497868184c8405a1cf41", + "name" : "Alibaba_Dragonwell_Standard_21.0.1.0.1.12_x64_linux.tar.gz", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.1.0.1%2B12_jdk-21.0.1-ga/Alibaba_Dragonwell_Standard_21.0.1.0.1.12_x64_linux.tar.gz" + } + } + }, + "windows" : { + "x64" : { + "Standard" : { + "sha256" : "b8ab99ed9060341f75edb8cc238830fbfd608e51536e43f34bd45c3e968ebab5", + "name" : "Alibaba_Dragonwell_Standard_21.0.1.0.1.12_x64_windows.zip", + "content_type" : "application/zip", + "download_url" : "https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.1.0.1%2B12_jdk-21.0.1-ga/Alibaba_Dragonwell_Standard_21.0.1.0.1.12_x64_windows.zip" + } + } + } + } + } +} diff --git a/__tests__/data/jetbrains.json b/__tests__/data/jetbrains.json new file mode 100644 index 000000000..535bb5cba --- /dev/null +++ b/__tests__/data/jetbrains.json @@ -0,0 +1,1454 @@ +[ + { + "tag_name": "jbr-release-21.0.3b465.3", + "semver": "21.0.3", + "build": "465.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.3-linux-x64-b465.3.tar.gz" + }, + { + "tag_name": "jbr-release-21.0.3b458.1", + "semver": "21.0.3", + "build": "458.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.3-linux-x64-b458.1.tar.gz" + }, + { + "tag_name": "jbr-release-21.0.3b453.2", + "semver": "21.0.3", + "build": "453.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.3-linux-x64-b453.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.11b1207.24", + "semver": "17.0.11", + "build": "1207.24", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.11-linux-x64-b1207.24.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.11b1207.23", + "semver": "17.0.11", + "build": "1207.23", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.11-linux-x64-b1207.23.tar.gz" + }, + { + "tag_name": "jbr-release-21.0.3b446.1", + "semver": "21.0.3", + "build": "446.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.3-linux-x64-b446.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1207.14", + "semver": "17.0.10", + "build": "1207.14", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1207.14.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b829.27", + "semver": "17.0.10", + "build": "829.27", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b829.27.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1087.23", + "semver": "17.0.10", + "build": "1087.23", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1087.23.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1207.12", + "semver": "17.0.10", + "build": "1207.12", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1207.12.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1087.21", + "semver": "17.0.10", + "build": "1087.21", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1087.21.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1207.6", + "semver": "17.0.10", + "build": "1207.6", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1207.6.tar.gz" + }, + { + "tag_name": "jbr-release-21.0.2b375.1", + "semver": "21.0.2", + "build": "375.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.2-linux-x64-b375.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1207.1", + "semver": "17.0.10", + "build": "1207.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1207.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1186.1", + "semver": "17.0.10", + "build": "1186.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1186.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1171.14", + "semver": "17.0.10", + "build": "1171.14", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1171.14.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b829.26", + "semver": "17.0.10", + "build": "829.26", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b829.26.tar.gz" + }, + { + "tag_name": "jbr-release-21.0.2b346.3", + "semver": "21.0.2", + "build": "346.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.2-linux-x64-b346.3.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1000.48", + "semver": "17.0.10", + "build": "1000.48", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1000.48.tar.gz" + }, + { + "tag_name": "jbr-release-21.0.2b341.4", + "semver": "21.0.2", + "build": "341.4", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.2-linux-x64-b341.4.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1087.17", + "semver": "17.0.10", + "build": "1087.17", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1087.17.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1166.2", + "semver": "17.0.9", + "build": "1166.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1166.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1162.7", + "semver": "17.0.9", + "build": "1162.7", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1162.7.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1087.11", + "semver": "17.0.9", + "build": "1087.11", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1087.11.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1087.9", + "semver": "17.0.9", + "build": "1087.9", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1087.9.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1087.7", + "semver": "17.0.9", + "build": "1087.7", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1087.7.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1000.47", + "semver": "17.0.9", + "build": "1000.47", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1000.47.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1000.46", + "semver": "17.0.9", + "build": "1000.46", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1000.46.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1087.3", + "semver": "17.0.9", + "build": "1087.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1087.3.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8.1b1080.1", + "semver": "17.0.8.1", + "build": "1080.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8.1-linux-x64-b1080.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8.1b1072.1", + "semver": "17.0.8.1", + "build": "1072.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8.1-linux-x64-b1072.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8.1b1070.2", + "semver": "17.0.8.1", + "build": "1070.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8.1-linux-x64-b1070.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8.1b1063.1", + "semver": "17.0.8.1", + "build": "1063.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8.1-linux-x64-b1063.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8.1b1000.32", + "semver": "17.0.8.1", + "build": "1000.32", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8.1-linux-x64-b1000.32.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8.1b1059.3", + "semver": "17.0.8.1", + "build": "1059.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8.1-linux-x64-b1059.3.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8b1000.22", + "semver": "17.0.8", + "build": "1000.22", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8-linux-x64-b1000.22.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8b1000.8", + "semver": "17.0.8", + "build": "1000.8", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8-linux-x64-b1000.8.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b1000.6", + "semver": "17.0.7", + "build": "1000.6", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b1000.6.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b1000.5", + "semver": "17.0.7", + "build": "1000.5", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b1000.5.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b1000.2", + "semver": "17.0.7", + "build": "1000.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b1000.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b985.2", + "semver": "17.0.7", + "build": "985.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b985.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b979.4", + "semver": "17.0.7", + "build": "979.4", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b979.4.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b829.16", + "semver": "17.0.7", + "build": "829.16", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b829.16.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b966.2", + "semver": "17.0.7", + "build": "966.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b966.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b964.1", + "semver": "17.0.7", + "build": "964.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b964.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b829.14", + "semver": "17.0.7", + "build": "829.14", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b829.14.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b953.1", + "semver": "17.0.7", + "build": "953.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b953.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b829.9", + "semver": "17.0.6", + "build": "829.9", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b829.9.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b469.82", + "semver": "17.0.6", + "build": "469.82", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b469.82.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b829.5", + "semver": "17.0.6", + "build": "829.5", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b829.5.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b653.34", + "semver": "17.0.6", + "build": "653.34", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b653.34.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b829.4", + "semver": "17.0.6", + "build": "829.4", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b829.4.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b829.1", + "semver": "17.0.6", + "build": "829.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b829.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b653.32", + "semver": "17.0.6", + "build": "653.32", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b653.32.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b802.4", + "semver": "17.0.6", + "build": "802.4", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b802.4.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b802.1", + "semver": "17.0.6", + "build": "802.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b802.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b785.1", + "semver": "17.0.6", + "build": "785.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b785.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b779.1", + "semver": "17.0.6", + "build": "779.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b779.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b762.1", + "semver": "17.0.5", + "build": "762.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b762.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b653.25", + "semver": "17.0.5", + "build": "653.25", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b653.25.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b759.1", + "semver": "17.0.5", + "build": "759.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b759.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b653.23", + "semver": "17.0.5", + "build": "653.23", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b653.23.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b653.14", + "semver": "17.0.5", + "build": "653.14", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b653.14.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b469.71", + "semver": "17.0.5", + "build": "469.71", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b469.71.tar.gz" + }, + { + "tag_name": "jbr11_0_16b2043.64", + "semver": "11.0.16", + "build": "2043.64", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_nomod-11_0_16-linux-x64-b2043.64.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b653.6", + "semver": "17.0.5", + "build": "653.6", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b653.6.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b469.67", + "semver": "17.0.5", + "build": "469.67", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b469.67.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4.1b653.1", + "semver": "17.0.4.1", + "build": "653.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4.1-linux-x64-b653.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4.1b646.8", + "semver": "17.0.4.1", + "build": "646.8", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4.1-linux-x64-b646.8.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4.1b629.2", + "semver": "17.0.4.1", + "build": "629.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4.1-linux-x64-b629.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4.1b617.2", + "semver": "17.0.4.1", + "build": "617.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4.1-linux-x64-b617.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4.1b469.62", + "semver": "17.0.4.1", + "build": "469.62", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4.1-linux-x64-b469.62.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4.1b597.1", + "semver": "17.0.4.1", + "build": "597.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4.1-linux-x64-b597.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4b469.53", + "semver": "17.0.4", + "build": "469.53", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4-linux-x64-b469.53.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4b469.44", + "semver": "17.0.4", + "build": "469.44", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4-linux-x64-b469.44.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.3b469.37", + "semver": "17.0.3", + "build": "469.37", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b469.37.tar.gz" + }, + { + "tag_name": "jbr17.0.3b469.32", + "semver": "17.0.3", + "build": "469.32", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b469.32.tar.gz" + }, + { + "tag_name": "jbr17.0.3b469.30", + "semver": "17.0.3", + "build": "469.30", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b469.30.tar.gz" + }, + { + "tag_name": "jbr17.0.3b469.19", + "semver": "17.0.3", + "build": "469.19", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b469.19.tar.gz" + }, + { + "tag_name": "jbr17.0.3b498.3", + "semver": "17.0.3", + "build": "498.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b498.3.tar.gz" + }, + { + "tag_name": "jbr17.0.3b469.16", + "semver": "17.0.3", + "build": "469.16", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b469.16.tar.gz" + }, + { + "tag_name": "jbr17.0.3b469.12", + "semver": "17.0.3", + "build": "469.12", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b469.12.tar.gz" + }, + { + "tag_name": "jbr17.0.3b469.3", + "semver": "17.0.3", + "build": "469.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b469.3.tar.gz" + }, + { + "tag_name": "jbr17.0.3b463.3", + "semver": "17.0.3", + "build": "463.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b463.3.tar.gz" + }, + { + "tag_name": "jbr17.0.3b423.10", + "semver": "17.0.3", + "build": "423.10", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b423.10.tar.gz" + }, + { + "tag_name": "jbr11_0_15b2043.56", + "semver": "11.0.15", + "build": "2043.56", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_nomod-11_0_15-linux-x64-b2043.56.tar.gz" + }, + { + "tag_name": "jbr11_0_14_1b2043.45", + "semver": "11.0.14.1", + "build": "2043.45", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_nomod-11_0_14_1-linux-x64-b2043.45.tar.gz" + }, + { + "tag_name": "jbr17.0.2b396.4", + "semver": "17.0.2", + "build": "396.4", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.2-linux-x64-b396.4.tar.gz" + }, + { + "tag_name": "jbr11_0_14_1b2043.25", + "semver": "11.0.14.1", + "build": "2043.25", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14_1-linux-x64-b2043.25.tar.gz" + }, + { + "tag_name": "jbr11_0_14_1b2043.22", + "semver": "11.0.14.1", + "build": "2043.22", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14_1-linux-x64-b2043.22.tar.gz" + }, + { + "tag_name": "jbr11_0_14_1b2043.17", + "semver": "11.0.14.1", + "build": "2043.17", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14_1-linux-x64-b2043.17.tar.gz" + }, + { + "tag_name": "jbr11_0_14_1b2043.14", + "semver": "11.0.14.1", + "build": "2043.14", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14_1-linux-x64-b2043.14.tar.gz" + }, + { + "tag_name": "jbr11_0_14_1b2043.11", + "semver": "11.0.14.1", + "build": "2043.11", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14_1-linux-x64-b2043.11.tar.gz" + }, + { + "tag_name": "jbr11_0_14b2043.2", + "semver": "11.0.14", + "build": "2043.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14-linux-x64-b2043.2.tar.gz" + }, + { + "tag_name": "jbr11_0_14_1b1751.46", + "semver": "11.0.14.1", + "build": "1751.46", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14_1-linux-x64-b1751.46.tar.gz" + }, + { + "tag_name": "jbr11_0_14b1993.2", + "semver": "11.0.14", + "build": "1993.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14-linux-x64-b1993.2.tar.gz" + }, + { + "tag_name": "jbr17_0_2b315.1", + "semver": "17.0.2", + "build": "315.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17_0_2-linux-x64-b315.1.tar.gz" + }, + { + "tag_name": "jbr11_0_14b1982.1", + "semver": "11.0.14", + "build": "1982.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14-linux-x64-b1982.1.tar.gz" + }, + { + "tag_name": "jbr11_0_13b1890.3", + "semver": "11.0.13", + "build": "1890.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_13-linux-x64-b1890.3.tar.gz" + }, + { + "tag_name": "jbr11_0_13b1751.25", + "semver": "11.0.13", + "build": "1751.25", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_13-linux-x64-b1751.25.tar.gz" + }, + { + "tag_name": "jbr11_0_13b1751.24", + "semver": "11.0.13", + "build": "1751.24", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_13-linux-x64-b1751.24.tar.gz" + }, + { + "tag_name": "jbr11_0_13b1751.21", + "semver": "11.0.13", + "build": "1751.21", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_13-linux-x64-b1751.21.tar.gz" + }, + { + "tag_name": "jbr17_0_1b164.8", + "semver": "17.0.1", + "build": "164.8", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17_0_1-linux-x64-b164.8.tar.gz" + }, + { + "tag_name": "jbr11_0_13b1751.19", + "semver": "11.0.13", + "build": "1751.19", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_13-linux-x64-b1751.19.tar.gz" + }, + { + "tag_name": "jb11_0_13-b1504.49", + "semver": "11.0.13", + "build": "1504.49", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_13-linux-x64-b1504.49.tar.gz" + }, + { + "tag_name": "jbr17_0_1b164.4", + "semver": "17.0.1", + "build": "164.4", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17_0_1-linux-x64-b164.4.tar.gz" + }, + { + "tag_name": "jbr11_0_13b1751.16", + "semver": "11.0.13", + "build": "1751.16", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_13-linux-x64-b1751.16.tar.gz" + }, + { + "tag_name": "jbr11_0_12b1751.11", + "semver": "11.0.12", + "build": "1751.11", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1751.11.tar.gz" + }, + { + "tag_name": "jbr11_0_12b1729.1", + "semver": "11.0.12", + "build": "1729.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1729.1.tar.gz" + }, + { + "tag_name": "jbr11_0_12b1715.4", + "semver": "11.0.12", + "build": "1715.4", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1715.4.tar.gz" + }, + { + "tag_name": "jbr11_0_12b1692.9", + "semver": "11.0.12", + "build": "1692.9", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1692.9.tar.gz" + }, + { + "tag_name": "jb11_0_12-b1504.37", + "semver": "11.0.12", + "build": "1504.37", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1504.37.tar.gz" + }, + { + "tag_name": "jbr11_0_12b1665.1", + "semver": "11.0.12", + "build": "1665.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1665.1.tar.gz" + }, + { + "tag_name": "jb11_0_12-b1504.28", + "semver": "11.0.12", + "build": "1504.28", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1504.28.tar.gz" + }, + { + "tag_name": "jb11_0_12-b1504.27", + "semver": "11.0.12", + "build": "1504.27", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1504.27.tar.gz" + }, + { + "tag_name": "jb11_0_11-b1504.16", + "semver": "11.0.11", + "build": "1504.16", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_11-linux-x64-b1504.16.tar.gz" + }, + { + "tag_name": "jb11_0_11-b1504.13", + "semver": "11.0.11", + "build": "1504.13", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_11-linux-x64-b1504.13.tar.gz" + }, + { + "tag_name": "jb11_0_11-b1504.12", + "semver": "11.0.11", + "build": "1504.12", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_11-linux-x64-b1504.12.tar.gz" + }, + { + "tag_name": "jb11_0_11-b1542.1", + "semver": "11.0.11", + "build": "1542.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_11-linux-x64-b1542.1.tar.gz" + }, + { + "tag_name": "jb11_0_11-b1504.8", + "semver": "11.0.11", + "build": "1504.8", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_11-linux-x64-b1504.8.tar.gz" + }, + { + "tag_name": "11_0_11b1536.2", + "semver": "11.0.11", + "build": "1536.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_11-linux-x64-b1536.2.tar.gz" + }, + { + "tag_name": "jbr-release-21.0.3b465.3", + "semver": "21.0.3", + "build": "465.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.3-linux-x64-b465.3.tar.gz" + }, + { + "tag_name": "jbr-release-21.0.3b458.1", + "semver": "21.0.3", + "build": "458.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.3-linux-x64-b458.1.tar.gz" + }, + { + "tag_name": "jbr-release-21.0.3b453.2", + "semver": "21.0.3", + "build": "453.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.3-linux-x64-b453.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.11b1207.24", + "semver": "17.0.11", + "build": "1207.24", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.11-linux-x64-b1207.24.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.11b1207.23", + "semver": "17.0.11", + "build": "1207.23", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.11-linux-x64-b1207.23.tar.gz" + }, + { + "tag_name": "jbr-release-21.0.3b446.1", + "semver": "21.0.3", + "build": "446.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.3-linux-x64-b446.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1207.14", + "semver": "17.0.10", + "build": "1207.14", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1207.14.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b829.27", + "semver": "17.0.10", + "build": "829.27", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b829.27.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1087.23", + "semver": "17.0.10", + "build": "1087.23", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1087.23.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1207.12", + "semver": "17.0.10", + "build": "1207.12", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1207.12.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1087.21", + "semver": "17.0.10", + "build": "1087.21", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1087.21.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1207.6", + "semver": "17.0.10", + "build": "1207.6", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1207.6.tar.gz" + }, + { + "tag_name": "jbr-release-21.0.2b375.1", + "semver": "21.0.2", + "build": "375.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.2-linux-x64-b375.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1207.1", + "semver": "17.0.10", + "build": "1207.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1207.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1186.1", + "semver": "17.0.10", + "build": "1186.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1186.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1171.14", + "semver": "17.0.10", + "build": "1171.14", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1171.14.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b829.26", + "semver": "17.0.10", + "build": "829.26", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b829.26.tar.gz" + }, + { + "tag_name": "jbr-release-21.0.2b346.3", + "semver": "21.0.2", + "build": "346.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.2-linux-x64-b346.3.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1000.48", + "semver": "17.0.10", + "build": "1000.48", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1000.48.tar.gz" + }, + { + "tag_name": "jbr-release-21.0.2b341.4", + "semver": "21.0.2", + "build": "341.4", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-21.0.2-linux-x64-b341.4.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.10b1087.17", + "semver": "17.0.10", + "build": "1087.17", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.10-linux-x64-b1087.17.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1166.2", + "semver": "17.0.9", + "build": "1166.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1166.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1162.7", + "semver": "17.0.9", + "build": "1162.7", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1162.7.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1087.11", + "semver": "17.0.9", + "build": "1087.11", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1087.11.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1087.9", + "semver": "17.0.9", + "build": "1087.9", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1087.9.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1087.7", + "semver": "17.0.9", + "build": "1087.7", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1087.7.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1000.47", + "semver": "17.0.9", + "build": "1000.47", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1000.47.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1000.46", + "semver": "17.0.9", + "build": "1000.46", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1000.46.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.9b1087.3", + "semver": "17.0.9", + "build": "1087.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1087.3.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8.1b1080.1", + "semver": "17.0.8.1", + "build": "1080.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8.1-linux-x64-b1080.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8.1b1072.1", + "semver": "17.0.8.1", + "build": "1072.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8.1-linux-x64-b1072.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8.1b1070.2", + "semver": "17.0.8.1", + "build": "1070.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8.1-linux-x64-b1070.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8.1b1063.1", + "semver": "17.0.8.1", + "build": "1063.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8.1-linux-x64-b1063.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8.1b1000.32", + "semver": "17.0.8.1", + "build": "1000.32", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8.1-linux-x64-b1000.32.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8.1b1059.3", + "semver": "17.0.8.1", + "build": "1059.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8.1-linux-x64-b1059.3.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8b1000.22", + "semver": "17.0.8", + "build": "1000.22", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8-linux-x64-b1000.22.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.8b1000.8", + "semver": "17.0.8", + "build": "1000.8", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.8-linux-x64-b1000.8.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b1000.6", + "semver": "17.0.7", + "build": "1000.6", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b1000.6.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b1000.5", + "semver": "17.0.7", + "build": "1000.5", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b1000.5.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b1000.2", + "semver": "17.0.7", + "build": "1000.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b1000.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b985.2", + "semver": "17.0.7", + "build": "985.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b985.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b979.4", + "semver": "17.0.7", + "build": "979.4", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b979.4.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b829.16", + "semver": "17.0.7", + "build": "829.16", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b829.16.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b966.2", + "semver": "17.0.7", + "build": "966.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b966.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b964.1", + "semver": "17.0.7", + "build": "964.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b964.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b829.14", + "semver": "17.0.7", + "build": "829.14", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b829.14.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.7b953.1", + "semver": "17.0.7", + "build": "953.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b953.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b829.9", + "semver": "17.0.6", + "build": "829.9", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b829.9.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b469.82", + "semver": "17.0.6", + "build": "469.82", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b469.82.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b829.5", + "semver": "17.0.6", + "build": "829.5", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b829.5.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b653.34", + "semver": "17.0.6", + "build": "653.34", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b653.34.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b829.4", + "semver": "17.0.6", + "build": "829.4", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b829.4.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b829.1", + "semver": "17.0.6", + "build": "829.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b829.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b653.32", + "semver": "17.0.6", + "build": "653.32", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b653.32.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b802.4", + "semver": "17.0.6", + "build": "802.4", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b802.4.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b802.1", + "semver": "17.0.6", + "build": "802.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b802.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b785.1", + "semver": "17.0.6", + "build": "785.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b785.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.6b779.1", + "semver": "17.0.6", + "build": "779.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.6-linux-x64-b779.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b762.1", + "semver": "17.0.5", + "build": "762.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b762.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b653.25", + "semver": "17.0.5", + "build": "653.25", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b653.25.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b759.1", + "semver": "17.0.5", + "build": "759.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b759.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b653.23", + "semver": "17.0.5", + "build": "653.23", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b653.23.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b653.14", + "semver": "17.0.5", + "build": "653.14", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b653.14.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b469.71", + "semver": "17.0.5", + "build": "469.71", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b469.71.tar.gz" + }, + { + "tag_name": "jbr11_0_16b2043.64", + "semver": "11.0.16", + "build": "2043.64", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_nomod-11_0_16-linux-x64-b2043.64.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b653.6", + "semver": "17.0.5", + "build": "653.6", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b653.6.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.5b469.67", + "semver": "17.0.5", + "build": "469.67", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.5-linux-x64-b469.67.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4.1b653.1", + "semver": "17.0.4.1", + "build": "653.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4.1-linux-x64-b653.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4.1b646.8", + "semver": "17.0.4.1", + "build": "646.8", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4.1-linux-x64-b646.8.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4.1b629.2", + "semver": "17.0.4.1", + "build": "629.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4.1-linux-x64-b629.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4.1b617.2", + "semver": "17.0.4.1", + "build": "617.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4.1-linux-x64-b617.2.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4.1b469.62", + "semver": "17.0.4.1", + "build": "469.62", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4.1-linux-x64-b469.62.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4.1b597.1", + "semver": "17.0.4.1", + "build": "597.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4.1-linux-x64-b597.1.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4b469.53", + "semver": "17.0.4", + "build": "469.53", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4-linux-x64-b469.53.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.4b469.44", + "semver": "17.0.4", + "build": "469.44", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.4-linux-x64-b469.44.tar.gz" + }, + { + "tag_name": "jbr-release-17.0.3b469.37", + "semver": "17.0.3", + "build": "469.37", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b469.37.tar.gz" + }, + { + "tag_name": "jbr17.0.3b469.32", + "semver": "17.0.3", + "build": "469.32", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b469.32.tar.gz" + }, + { + "tag_name": "jbr17.0.3b469.30", + "semver": "17.0.3", + "build": "469.30", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b469.30.tar.gz" + }, + { + "tag_name": "jbr17.0.3b469.19", + "semver": "17.0.3", + "build": "469.19", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b469.19.tar.gz" + }, + { + "tag_name": "jbr17.0.3b498.3", + "semver": "17.0.3", + "build": "498.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b498.3.tar.gz" + }, + { + "tag_name": "jbr17.0.3b469.16", + "semver": "17.0.3", + "build": "469.16", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b469.16.tar.gz" + }, + { + "tag_name": "jbr17.0.3b469.12", + "semver": "17.0.3", + "build": "469.12", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b469.12.tar.gz" + }, + { + "tag_name": "jbr17.0.3b469.3", + "semver": "17.0.3", + "build": "469.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b469.3.tar.gz" + }, + { + "tag_name": "jbr17.0.3b463.3", + "semver": "17.0.3", + "build": "463.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b463.3.tar.gz" + }, + { + "tag_name": "jbr17.0.3b423.10", + "semver": "17.0.3", + "build": "423.10", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.3-linux-x64-b423.10.tar.gz" + }, + { + "tag_name": "jbr11_0_15b2043.56", + "semver": "11.0.15", + "build": "2043.56", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_nomod-11_0_15-linux-x64-b2043.56.tar.gz" + }, + { + "tag_name": "jbr11_0_14_1b2043.45", + "semver": "11.0.14.1", + "build": "2043.45", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_nomod-11_0_14_1-linux-x64-b2043.45.tar.gz" + }, + { + "tag_name": "jbr17.0.2b396.4", + "semver": "17.0.2", + "build": "396.4", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.2-linux-x64-b396.4.tar.gz" + }, + { + "tag_name": "jbr11_0_14_1b2043.25", + "semver": "11.0.14.1", + "build": "2043.25", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14_1-linux-x64-b2043.25.tar.gz" + }, + { + "tag_name": "jbr11_0_14_1b2043.22", + "semver": "11.0.14.1", + "build": "2043.22", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14_1-linux-x64-b2043.22.tar.gz" + }, + { + "tag_name": "jbr11_0_14_1b2043.17", + "semver": "11.0.14.1", + "build": "2043.17", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14_1-linux-x64-b2043.17.tar.gz" + }, + { + "tag_name": "jbr11_0_14_1b2043.14", + "semver": "11.0.14.1", + "build": "2043.14", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14_1-linux-x64-b2043.14.tar.gz" + }, + { + "tag_name": "jbr11_0_14_1b2043.11", + "semver": "11.0.14.1", + "build": "2043.11", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14_1-linux-x64-b2043.11.tar.gz" + }, + { + "tag_name": "jbr11_0_14b2043.2", + "semver": "11.0.14", + "build": "2043.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14-linux-x64-b2043.2.tar.gz" + }, + { + "tag_name": "jbr11_0_14_1b1751.46", + "semver": "11.0.14.1", + "build": "1751.46", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14_1-linux-x64-b1751.46.tar.gz" + }, + { + "tag_name": "jbr11_0_14b1993.2", + "semver": "11.0.14", + "build": "1993.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14-linux-x64-b1993.2.tar.gz" + }, + { + "tag_name": "jbr17_0_2b315.1", + "semver": "17.0.2", + "build": "315.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17_0_2-linux-x64-b315.1.tar.gz" + }, + { + "tag_name": "jbr11_0_14b1982.1", + "semver": "11.0.14", + "build": "1982.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_14-linux-x64-b1982.1.tar.gz" + }, + { + "tag_name": "jbr11_0_13b1890.3", + "semver": "11.0.13", + "build": "1890.3", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_13-linux-x64-b1890.3.tar.gz" + }, + { + "tag_name": "jbr11_0_13b1751.25", + "semver": "11.0.13", + "build": "1751.25", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_13-linux-x64-b1751.25.tar.gz" + }, + { + "tag_name": "jbr11_0_13b1751.24", + "semver": "11.0.13", + "build": "1751.24", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_13-linux-x64-b1751.24.tar.gz" + }, + { + "tag_name": "jbr11_0_13b1751.21", + "semver": "11.0.13", + "build": "1751.21", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_13-linux-x64-b1751.21.tar.gz" + }, + { + "tag_name": "jbr17_0_1b164.8", + "semver": "17.0.1", + "build": "164.8", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17_0_1-linux-x64-b164.8.tar.gz" + }, + { + "tag_name": "jbr11_0_13b1751.19", + "semver": "11.0.13", + "build": "1751.19", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_13-linux-x64-b1751.19.tar.gz" + }, + { + "tag_name": "jb11_0_13-b1504.49", + "semver": "11.0.13", + "build": "1504.49", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_13-linux-x64-b1504.49.tar.gz" + }, + { + "tag_name": "jbr17_0_1b164.4", + "semver": "17.0.1", + "build": "164.4", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17_0_1-linux-x64-b164.4.tar.gz" + }, + { + "tag_name": "jbr11_0_13b1751.16", + "semver": "11.0.13", + "build": "1751.16", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_13-linux-x64-b1751.16.tar.gz" + }, + { + "tag_name": "jbr11_0_12b1751.11", + "semver": "11.0.12", + "build": "1751.11", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1751.11.tar.gz" + }, + { + "tag_name": "jbr11_0_12b1729.1", + "semver": "11.0.12", + "build": "1729.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1729.1.tar.gz" + }, + { + "tag_name": "jbr11_0_12b1715.4", + "semver": "11.0.12", + "build": "1715.4", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1715.4.tar.gz" + }, + { + "tag_name": "jbr11_0_12b1692.9", + "semver": "11.0.12", + "build": "1692.9", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1692.9.tar.gz" + }, + { + "tag_name": "jb11_0_12-b1504.37", + "semver": "11.0.12", + "build": "1504.37", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1504.37.tar.gz" + }, + { + "tag_name": "jbr11_0_12b1665.1", + "semver": "11.0.12", + "build": "1665.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1665.1.tar.gz" + }, + { + "tag_name": "jb11_0_12-b1504.28", + "semver": "11.0.12", + "build": "1504.28", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1504.28.tar.gz" + }, + { + "tag_name": "jb11_0_12-b1504.27", + "semver": "11.0.12", + "build": "1504.27", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_12-linux-x64-b1504.27.tar.gz" + }, + { + "tag_name": "jb11_0_11-b1504.16", + "semver": "11.0.11", + "build": "1504.16", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_11-linux-x64-b1504.16.tar.gz" + }, + { + "tag_name": "jb11_0_11-b1504.13", + "semver": "11.0.11", + "build": "1504.13", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_11-linux-x64-b1504.13.tar.gz" + }, + { + "tag_name": "jb11_0_11-b1504.12", + "semver": "11.0.11", + "build": "1504.12", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_11-linux-x64-b1504.12.tar.gz" + }, + { + "tag_name": "jb11_0_11-b1542.1", + "semver": "11.0.11", + "build": "1542.1", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_11-linux-x64-b1542.1.tar.gz" + }, + { + "tag_name": "jb11_0_11-b1504.8", + "semver": "11.0.11", + "build": "1504.8", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_11-linux-x64-b1504.8.tar.gz" + }, + { + "tag_name": "11_0_11b1536.2", + "semver": "11.0.11", + "build": "1536.2", + "url": "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-11_0_11-linux-x64-b1536.2.tar.gz" + } +] \ No newline at end of file diff --git a/__tests__/data/liberica-linux.json b/__tests__/data/liberica-linux.json new file mode 100644 index 000000000..778265688 --- /dev/null +++ b/__tests__/data/liberica-linux.json @@ -0,0 +1,443 @@ +[ + { + "buildVersion": 36, + "updateVersion": 0, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/14+36/bellsoft-jdk14+36-linux-amd64.zip", + "interimVersion": 0, + "version": "14+36", + "featureVersion": 14 + }, + { + "buildVersion": 9, + "updateVersion": 11, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.11+9/bellsoft-jdk11.0.11+9-linux-amd64.zip", + "interimVersion": 0, + "version": "11.0.11+9", + "featureVersion": 11 + }, + { + "buildVersion": 8, + "updateVersion": 1, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/14.0.1+8/bellsoft-jdk14.0.1+8-linux-amd64.zip", + "interimVersion": 0, + "version": "14.0.1+8", + "featureVersion": 14 + }, + { + "buildVersion": 10, + "updateVersion": 262, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u262+10/bellsoft-jdk8u262+10-linux-amd64.zip", + "interimVersion": 0, + "version": "8u262+10", + "featureVersion": 8 + }, + { + "buildVersion": 1, + "updateVersion": 275, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u275+1/bellsoft-jdk8u275+1-linux-amd64.zip", + "interimVersion": 0, + "version": "8u275+1", + "featureVersion": 8 + }, + { + "buildVersion": 1, + "updateVersion": 9, + "patchVersion": 1, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.9.1+1/bellsoft-jdk11.0.9.1+1-linux-amd64.zip", + "interimVersion": 0, + "version": "11.0.9.1+1", + "featureVersion": 11 + }, + { + "buildVersion": 8, + "updateVersion": 202, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u202/bellsoft-jdk8u202-linux-amd64.zip", + "interimVersion": 0, + "version": "8u202+8", + "featureVersion": 8 + }, + { + "buildVersion": 33, + "updateVersion": 0, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/12/bellsoft-jdk12-linux-amd64.zip", + "interimVersion": 0, + "version": "12+33", + "featureVersion": 12 + }, + { + "buildVersion": 8, + "updateVersion": 282, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u282+8/bellsoft-jdk8u282+8-linux-amd64.zip", + "interimVersion": 0, + "version": "8u282+8", + "featureVersion": 8 + }, + { + "buildVersion": 11, + "updateVersion": 9, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.9+11/bellsoft-jdk11.0.9+11-linux-amd64.zip", + "interimVersion": 0, + "version": "11.0.9+11", + "featureVersion": 11 + }, + { + "buildVersion": 33, + "updateVersion": 0, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/13/bellsoft-jdk13-linux-amd64.zip", + "interimVersion": 0, + "version": "13+33", + "featureVersion": 13 + }, + { + "buildVersion": 12, + "updateVersion": 9, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.9+12/bellsoft-jdk11.0.9+12-linux-amd64.zip", + "interimVersion": 0, + "version": "11.0.9+12", + "featureVersion": 11 + }, + { + "buildVersion": 7, + "updateVersion": 242, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u242+7/bellsoft-jdk8u242+7-linux-amd64.zip", + "interimVersion": 0, + "version": "8u242+7", + "featureVersion": 8 + }, + { + "buildVersion": 9, + "updateVersion": 2, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/13.0.2+9/bellsoft-jdk13.0.2+9-linux-amd64.zip", + "interimVersion": 0, + "version": "13.0.2+9", + "featureVersion": 13 + }, + { + "buildVersion": 9, + "updateVersion": 1, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/13.0.1/bellsoft-jdk13.0.1-linux-amd64.zip", + "interimVersion": 0, + "version": "13.0.1+9", + "featureVersion": 13 + }, + { + "buildVersion": 1, + "updateVersion": 265, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u265+1/bellsoft-jdk8u265+1-linux-amd64.zip", + "interimVersion": 0, + "version": "8u265+1", + "featureVersion": 8 + }, + { + "buildVersion": 9, + "updateVersion": 1, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/15.0.1+9/bellsoft-jdk15.0.1+9-linux-amd64.zip", + "interimVersion": 0, + "version": "15.0.1+9", + "featureVersion": 15 + }, + { + "buildVersion": 10, + "updateVersion": 272, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u272+10/bellsoft-jdk8u272+10-linux-amd64.zip", + "interimVersion": 0, + "version": "8u272+10", + "featureVersion": 8 + }, + { + "buildVersion": 7, + "updateVersion": 2, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/16.0.2+7/bellsoft-jdk16.0.2+7-linux-amd64.zip", + "interimVersion": 0, + "version": "16.0.2+7", + "featureVersion": 16 + }, + { + "buildVersion": 10, + "updateVersion": 6, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.6+10/bellsoft-jdk11.0.6+10-linux-amd64.zip", + "interimVersion": 0, + "version": "11.0.6+10", + "featureVersion": 11 + }, + { + "buildVersion": 9, + "updateVersion": 252, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u252+9/bellsoft-jdk8u252+9-linux-amd64.zip", + "interimVersion": 0, + "version": "8u252+9", + "featureVersion": 8 + }, + { + "buildVersion": 12, + "updateVersion": 212, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u212/bellsoft-jdk8u212-linux-amd64.zip", + "interimVersion": 0, + "version": "8u212+12", + "featureVersion": 8 + }, + { + "buildVersion": 10, + "updateVersion": 2, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/15.0.2+10/bellsoft-jdk15.0.2+10-linux-amd64.zip", + "interimVersion": 0, + "version": "15.0.2+10", + "featureVersion": 15 + }, + { + "buildVersion": 9, + "updateVersion": 10, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.10+9/bellsoft-jdk11.0.10+9-linux-amd64.zip", + "interimVersion": 0, + "version": "11.0.10+9", + "featureVersion": 11 + }, + { + "buildVersion": 0, + "updateVersion": 1, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.1/bellsoft-jdk11.0.1-linux-amd64.tar.gz", + "interimVersion": 0, + "version": "11.0.1+0", + "featureVersion": 11 + }, + { + "buildVersion": 7, + "updateVersion": 12, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.12+7/bellsoft-jdk11.0.12+7-linux-amd64.zip", + "interimVersion": 0, + "version": "11.0.12+7", + "featureVersion": 11 + }, + { + "buildVersion": 36, + "updateVersion": 0, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/16+36/bellsoft-jdk16+36-linux-amd64.zip", + "interimVersion": 0, + "version": "16+36", + "featureVersion": 16 + }, + { + "buildVersion": 12, + "updateVersion": 3, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.3/bellsoft-jdk11.0.3-linux-amd64.zip", + "interimVersion": 0, + "version": "11.0.3+12", + "featureVersion": 11 + }, + { + "buildVersion": 10, + "updateVersion": 8, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.8+10/bellsoft-jdk11.0.8+10-linux-amd64.zip", + "interimVersion": 0, + "version": "11.0.8+10", + "featureVersion": 11 + }, + { + "buildVersion": 7, + "updateVersion": 2, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.2/bellsoft-jdk11.0.2-linux-amd64.zip", + "interimVersion": 0, + "version": "11.0.2+7", + "featureVersion": 11 + }, + { + "buildVersion": 10, + "updateVersion": 5, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.5/bellsoft-jdk11.0.5-linux-amd64.zip", + "interimVersion": 0, + "version": "11.0.5+10", + "featureVersion": 11 + }, + { + "buildVersion": 10, + "updateVersion": 4, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.4/bellsoft-jdk11.0.4-linux-amd64.zip", + "interimVersion": 0, + "version": "11.0.4+10", + "featureVersion": 11 + }, + { + "buildVersion": 10, + "updateVersion": 2, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/12.0.2/bellsoft-jdk12.0.2-linux-amd64.zip", + "interimVersion": 0, + "version": "12.0.2+10", + "featureVersion": 12 + }, + { + "buildVersion": 12, + "updateVersion": 1, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/12.0.1/bellsoft-jdk12.0.1-linux-amd64.zip", + "interimVersion": 0, + "version": "12.0.1+12", + "featureVersion": 12 + }, + { + "buildVersion": 10, + "updateVersion": 1, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/13.0.1+10/bellsoft-jdk13.0.1+10-linux-amd64.zip", + "interimVersion": 0, + "version": "13.0.1+10", + "featureVersion": 13 + }, + { + "buildVersion": 11, + "updateVersion": 5, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.5+11/bellsoft-jdk11.0.5+11-linux-amd64.tar.gz", + "interimVersion": 0, + "version": "11.0.5+11", + "featureVersion": 11 + }, + { + "buildVersion": 11, + "updateVersion": 5, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.5+11/bellsoft-jdk11.0.5+11-linux-amd64.zip", + "interimVersion": 0, + "version": "11.0.5+11", + "featureVersion": 11 + }, + { + "buildVersion": 10, + "updateVersion": 292, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u292+10/bellsoft-jdk8u292+10-linux-amd64.zip", + "interimVersion": 0, + "version": "8u292+10", + "featureVersion": 8 + }, + { + "buildVersion": 11, + "updateVersion": 222, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u222/bellsoft-jdk8u222-linux-amd64.zip", + "interimVersion": 0, + "version": "8u222+11", + "featureVersion": 8 + }, + { + "buildVersion": 36, + "updateVersion": 0, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/15+36/bellsoft-jdk15+36-linux-amd64.zip", + "interimVersion": 0, + "version": "15+36", + "featureVersion": 15 + }, + { + "buildVersion": 10, + "updateVersion": 7, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.7+10/bellsoft-jdk11.0.7+10-linux-amd64.zip", + "interimVersion": 0, + "version": "11.0.7+10", + "featureVersion": 11 + }, + { + "buildVersion": 10, + "updateVersion": 232, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u232+10/bellsoft-jdk8u232+10-linux-amd64.zip", + "interimVersion": 0, + "version": "8u232+10", + "featureVersion": 8 + }, + { + "buildVersion": 8, + "updateVersion": 2, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/15.0.2+8/bellsoft-jdk15.0.2+8-linux-amd64.zip", + "interimVersion": 0, + "version": "15.0.2+8", + "featureVersion": 15 + }, + { + "buildVersion": 8, + "updateVersion": 302, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u302+8/bellsoft-jdk8u302+8-linux-amd64.zip", + "interimVersion": 0, + "version": "8u302+8", + "featureVersion": 8 + }, + { + "buildVersion": 12, + "updateVersion": 192, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u192.all/bellsoft-jdk1.8.0-linux-amd64.tar.gz", + "interimVersion": 0, + "version": "8u192+12", + "featureVersion": 8 + }, + { + "buildVersion": 13, + "updateVersion": 2, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/14.0.2+13/bellsoft-jdk14.0.2+13-linux-amd64.zip", + "interimVersion": 0, + "version": "14.0.2+13", + "featureVersion": 14 + }, + { + "buildVersion": 9, + "updateVersion": 1, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/16.0.1+9/bellsoft-jdk16.0.1+9-linux-amd64.zip", + "interimVersion": 0, + "version": "16.0.1+9", + "featureVersion": 16 + }, + { + "buildVersion": 9, + "updateVersion": 232, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u232/bellsoft-jdk8u232-linux-amd64.zip", + "interimVersion": 0, + "version": "8u232+9", + "featureVersion": 8 + }, + { + "buildVersion": 13, + "updateVersion": 10, + "patchVersion": 0, + "downloadUrl":"https://download.bell-sw.com/java/17.0.10+13/bellsoft-jdk17.0.10+13-linux-amd64.tar.gz", + "interimVersion": 0, + "version": "17.0.10+13", + "featureVersion": 17 + } +] \ No newline at end of file diff --git a/__tests__/data/liberica-windows.json b/__tests__/data/liberica-windows.json new file mode 100644 index 000000000..83b5089ab --- /dev/null +++ b/__tests__/data/liberica-windows.json @@ -0,0 +1,452 @@ +[ + { + "buildVersion": 36, + "updateVersion": 0, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/14+36/bellsoft-jdk14+36-windows-amd64.zip", + "interimVersion": 0, + "version": "14+36", + "featureVersion": 14 + }, + { + "buildVersion": 9, + "updateVersion": 11, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.11+9/bellsoft-jdk11.0.11+9-windows-amd64.zip", + "interimVersion": 0, + "version": "11.0.11+9", + "featureVersion": 11 + }, + { + "buildVersion": 8, + "updateVersion": 1, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/14.0.1+8/bellsoft-jdk14.0.1+8-windows-amd64.zip", + "interimVersion": 0, + "version": "14.0.1+8", + "featureVersion": 14 + }, + { + "buildVersion": 10, + "updateVersion": 262, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u262+10/bellsoft-jdk8u262+10-windows-amd64.zip", + "interimVersion": 0, + "version": "8u262+10", + "featureVersion": 8 + }, + { + "buildVersion": 1, + "updateVersion": 275, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u275+1/bellsoft-jdk8u275+1-windows-amd64.zip", + "interimVersion": 0, + "version": "8u275+1", + "featureVersion": 8 + }, + { + "buildVersion": 1, + "updateVersion": 9, + "patchVersion": 1, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.9.1+1/bellsoft-jdk11.0.9.1+1-windows-amd64.zip", + "interimVersion": 0, + "version": "11.0.9.1+1", + "featureVersion": 11 + }, + { + "buildVersion": 8, + "updateVersion": 202, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u202/bellsoft-jdk8u202-windows-amd64.zip", + "interimVersion": 0, + "version": "8u202+8", + "featureVersion": 8 + }, + { + "buildVersion": 33, + "updateVersion": 0, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/12/bellsoft-jdk12-windows-amd64.zip", + "interimVersion": 0, + "version": "12+33", + "featureVersion": 12 + }, + { + "buildVersion": 8, + "updateVersion": 282, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u282+8/bellsoft-jdk8u282+8-windows-amd64.zip", + "interimVersion": 0, + "version": "8u282+8", + "featureVersion": 8 + }, + { + "buildVersion": 11, + "updateVersion": 9, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.9+11/bellsoft-jdk11.0.9+11-windows-amd64.zip", + "interimVersion": 0, + "version": "11.0.9+11", + "featureVersion": 11 + }, + { + "buildVersion": 33, + "updateVersion": 0, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/13/bellsoft-jdk13-windows-amd64.zip", + "interimVersion": 0, + "version": "13+33", + "featureVersion": 13 + }, + { + "buildVersion": 12, + "updateVersion": 9, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.9+12/bellsoft-jdk11.0.9+12-windows-amd64.zip", + "interimVersion": 0, + "version": "11.0.9+12", + "featureVersion": 11 + }, + { + "buildVersion": 7, + "updateVersion": 242, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u242+7/bellsoft-jdk8u242+7-windows-amd64.zip", + "interimVersion": 0, + "version": "8u242+7", + "featureVersion": 8 + }, + { + "buildVersion": 9, + "updateVersion": 2, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/13.0.2+9/bellsoft-jdk13.0.2+9-windows-amd64.zip", + "interimVersion": 0, + "version": "13.0.2+9", + "featureVersion": 13 + }, + { + "buildVersion": 9, + "updateVersion": 1, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/13.0.1/bellsoft-jdk13.0.1-windows-amd64.zip", + "interimVersion": 0, + "version": "13.0.1+9", + "featureVersion": 13 + }, + { + "buildVersion": 1, + "updateVersion": 265, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u265+1/bellsoft-jdk8u265+1-windows-amd64.zip", + "interimVersion": 0, + "version": "8u265+1", + "featureVersion": 8 + }, + { + "buildVersion": 9, + "updateVersion": 1, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/15.0.1+9/bellsoft-jdk15.0.1+9-windows-amd64.zip", + "interimVersion": 0, + "version": "15.0.1+9", + "featureVersion": 15 + }, + { + "buildVersion": 10, + "updateVersion": 272, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u272+10/bellsoft-jdk8u272+10-windows-amd64.zip", + "interimVersion": 0, + "version": "8u272+10", + "featureVersion": 8 + }, + { + "buildVersion": 7, + "updateVersion": 2, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/16.0.2+7/bellsoft-jdk16.0.2+7-windows-amd64.zip", + "interimVersion": 0, + "version": "16.0.2+7", + "featureVersion": 16 + }, + { + "buildVersion": 10, + "updateVersion": 6, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.6+10/bellsoft-jdk11.0.6+10-windows-amd64.zip", + "interimVersion": 0, + "version": "11.0.6+10", + "featureVersion": 11 + }, + { + "buildVersion": 9, + "updateVersion": 252, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u252+9/bellsoft-jdk8u252+9-windows-amd64.zip", + "interimVersion": 0, + "version": "8u252+9", + "featureVersion": 8 + }, + { + "buildVersion": 12, + "updateVersion": 212, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u212/bellsoft-jdk8u212-windows-amd64.zip", + "interimVersion": 0, + "version": "8u212+12", + "featureVersion": 8 + }, + { + "buildVersion": 10, + "updateVersion": 2, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/15.0.2+10/bellsoft-jdk15.0.2+10-windows-amd64.zip", + "interimVersion": 0, + "version": "15.0.2+10", + "featureVersion": 15 + }, + { + "buildVersion": 9, + "updateVersion": 10, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.10+9/bellsoft-jdk11.0.10+9-windows-amd64.zip", + "interimVersion": 0, + "version": "11.0.10+9", + "featureVersion": 11 + }, + { + "buildVersion": 0, + "updateVersion": 1, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.1/bellsoft-jdk11.0.1-windows-amd64.tar.gz", + "interimVersion": 0, + "version": "11.0.1+0", + "featureVersion": 11 + }, + { + "buildVersion": 7, + "updateVersion": 12, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.12+7/bellsoft-jdk11.0.12+7-windows-amd64.zip", + "interimVersion": 0, + "version": "11.0.12+7", + "featureVersion": 11 + }, + { + "buildVersion": 36, + "updateVersion": 0, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/16+36/bellsoft-jdk16+36-windows-amd64.zip", + "interimVersion": 0, + "version": "16+36", + "featureVersion": 16 + }, + { + "buildVersion": 12, + "updateVersion": 3, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.3/bellsoft-jdk11.0.3-windows-amd64.zip", + "interimVersion": 0, + "version": "11.0.3+12", + "featureVersion": 11 + }, + { + "buildVersion": 10, + "updateVersion": 8, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.8+10/bellsoft-jdk11.0.8+10-windows-amd64.zip", + "interimVersion": 0, + "version": "11.0.8+10", + "featureVersion": 11 + }, + { + "buildVersion": 7, + "updateVersion": 2, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.2/bellsoft-jdk11.0.2-windows-amd64.zip", + "interimVersion": 0, + "version": "11.0.2+7", + "featureVersion": 11 + }, + { + "buildVersion": 10, + "updateVersion": 5, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.5/bellsoft-jdk11.0.5-windows-amd64.zip", + "interimVersion": 0, + "version": "11.0.5+10", + "featureVersion": 11 + }, + { + "buildVersion": 10, + "updateVersion": 4, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.4/bellsoft-jdk11.0.4-windows-amd64.zip", + "interimVersion": 0, + "version": "11.0.4+10", + "featureVersion": 11 + }, + { + "buildVersion": 10, + "updateVersion": 2, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/12.0.2/bellsoft-jdk12.0.2-windows-amd64.zip", + "interimVersion": 0, + "version": "12.0.2+10", + "featureVersion": 12 + }, + { + "buildVersion": 12, + "updateVersion": 1, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/12.0.1/bellsoft-jdk12.0.1-windows-amd64.zip", + "interimVersion": 0, + "version": "12.0.1+12", + "featureVersion": 12 + }, + { + "buildVersion": 10, + "updateVersion": 1, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/13.0.1+10/bellsoft-jdk13.0.1+10-windows-amd64.zip", + "interimVersion": 0, + "version": "13.0.1+10", + "featureVersion": 13 + }, + { + "buildVersion": 11, + "updateVersion": 5, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.5+11/bellsoft-jdk11.0.5+11-windows-amd64.tar.gz", + "interimVersion": 0, + "version": "11.0.5+11", + "featureVersion": 11 + }, + { + "buildVersion": 11, + "updateVersion": 5, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.5+11/bellsoft-jdk11.0.5+11-windows-amd64.zip", + "interimVersion": 0, + "version": "11.0.5+11", + "featureVersion": 11 + }, + { + "buildVersion": 10, + "updateVersion": 292, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u292+10/bellsoft-jdk8u292+10-windows-amd64.zip", + "interimVersion": 0, + "version": "8u292+10", + "featureVersion": 8 + }, + { + "buildVersion": 11, + "updateVersion": 222, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u222/bellsoft-jdk8u222-windows-amd64.zip", + "interimVersion": 0, + "version": "8u222+11", + "featureVersion": 8 + }, + { + "buildVersion": 36, + "updateVersion": 0, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/15+36/bellsoft-jdk15+36-windows-amd64.zip", + "interimVersion": 0, + "version": "15+36", + "featureVersion": 15 + }, + { + "buildVersion": 10, + "updateVersion": 7, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/11.0.7+10/bellsoft-jdk11.0.7+10-windows-amd64.zip", + "interimVersion": 0, + "version": "11.0.7+10", + "featureVersion": 11 + }, + { + "buildVersion": 10, + "updateVersion": 232, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u232+10/bellsoft-jdk8u232+10-windows-amd64.zip", + "interimVersion": 0, + "version": "8u232+10", + "featureVersion": 8 + }, + { + "buildVersion": 8, + "updateVersion": 2, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/15.0.2+8/bellsoft-jdk15.0.2+8-windows-amd64.zip", + "interimVersion": 0, + "version": "15.0.2+8", + "featureVersion": 15 + }, + { + "buildVersion": 8, + "updateVersion": 302, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u302+8/bellsoft-jdk8u302+8-windows-amd64.zip", + "interimVersion": 0, + "version": "8u302+8", + "featureVersion": 8 + }, + { + "buildVersion": 12, + "updateVersion": 192, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u192.all/bellsoft-jdk1.8.0-windows-amd64.tar.gz", + "interimVersion": 0, + "version": "8u192+12", + "featureVersion": 8 + }, + { + "buildVersion": 13, + "updateVersion": 2, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/14.0.2+13/bellsoft-jdk14.0.2+13-windows-amd64.zip", + "interimVersion": 0, + "version": "14.0.2+13", + "featureVersion": 14 + }, + { + "buildVersion": 9, + "updateVersion": 1, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/16.0.1+9/bellsoft-jdk16.0.1+9-windows-amd64.zip", + "interimVersion": 0, + "version": "16.0.1+9", + "featureVersion": 16 + }, + { + "buildVersion": 9, + "updateVersion": 232, + "patchVersion": 0, + "downloadUrl": "https://github.com/bell-sw/Liberica/releases/download/8u232/bellsoft-jdk8u232-windows-amd64.zip", + "interimVersion": 0, + "version": "8u232+9", + "featureVersion": 8 + }, + { + "buildVersion": 14, + "updateVersion": 2, + "patchVersion": 0, + "downloadUrl": "https://download.bell-sw.com/java/21.0.2+14/bellsoft-jdk21.0.2+14-windows-aarch64.zip", + "interimVersion": 0, + "version": "21.0.2+14", + "featureVersion": 21 + }, + { + "buildVersion": 13, + "updateVersion": 10, + "patchVersion": 0, + "downloadUrl": "https://download.bell-sw.com/java/17.0.10+13/bellsoft-jdk17.0.10+13-windows-aarch64.zip", + "interimVersion": 0, + "version": "17.0.10+13", + "featureVersion": 17 + } +] \ No newline at end of file diff --git a/__tests__/data/microsoft.json b/__tests__/data/microsoft.json new file mode 100644 index 000000000..b2f0e68a1 --- /dev/null +++ b/__tests__/data/microsoft.json @@ -0,0 +1,304 @@ +[ + { + "version": "25.0.0", + "stable": true, + "release_url": "https://aka.ms/download-jdk", + "files": [ + { + "filename": "microsoft-jdk-25.0.0-macos-x64.tar.gz", + "arch": "x64", + "platform": "darwin", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-25.0.0-macos-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-25.0.0-linux-x64.tar.gz", + "arch": "x64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-25.0.0-linux-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-25.0.0-windows-x64.zip", + "arch": "x64", + "platform": "win32", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-25.0.0-windows-x64.zip" + }, + { + "filename": "microsoft-jdk-25.0.0-macos-aarch64.tar.gz", + "arch": "aarch64", + "platform": "darwin", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-25.0.0-macos-aarch64.tar.gz" + }, + { + "filename": "microsoft-jdk-25.0.0-linux-aarch64.tar.gz", + "arch": "aarch64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-25.0.0-linux-aarch64.tar.gz" + }, + { + "filename": "microsoft-jdk-25.0.0-windows-aarch64.zip", + "arch": "aarch64", + "platform": "win32", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-25.0.0-windows-aarch64.zip" + } + ] + }, + { + "version": "21.0.0", + "stable": true, + "release_url": "https://aka.ms/download-jdk", + "files": [ + { + "filename": "microsoft-jdk-21.0.0-macos-x64.tar.gz", + "arch": "x64", + "platform": "darwin", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-21.0.0-macos-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-21.0.0-linux-x64.tar.gz", + "arch": "x64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-21.0.0-linux-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-21.0.0-windows-x64.zip", + "arch": "x64", + "platform": "win32", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-21.0.0-windows-x64.zip" + }, + { + "filename": "microsoft-jdk-21.0.0-macos-aarch64.tar.gz", + "arch": "aarch64", + "platform": "darwin", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-21.0.0-macos-aarch64.tar.gz" + }, + { + "filename": "microsoft-jdk-21.0.0-linux-aarch64.tar.gz", + "arch": "aarch64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-21.0.0-linux-aarch64.tar.gz" + } + ] + }, + { + "version": "17.0.7", + "stable": true, + "release_url": "https://aka.ms/download-jdk", + "files": [ + { + "filename": "microsoft-jdk-17.0.7-macos-x64.tar.gz", + "arch": "x64", + "platform": "darwin", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-17.0.7-macos-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-17.0.7-linux-x64.tar.gz", + "arch": "x64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-17.0.7-linux-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-17.0.7-windows-x64.zip", + "arch": "x64", + "platform": "win32", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-17.0.7-windows-x64.zip" + }, + { + "filename": "microsoft-jdk-17.0.7-macos-aarch64.tar.gz", + "arch": "aarch64", + "platform": "darwin", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-17.0.7-macos-aarch64.tar.gz" + }, + { + "filename": "microsoft-jdk-17.0.7-linux-aarch64.tar.gz", + "arch": "aarch64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-17.0.7-linux-aarch64.tar.gz" + }, + { + "filename": "microsoft-jdk-17.0.7-windows-aarch64.zip", + "arch": "aarch64", + "platform": "win32", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-17.0.7-windows-aarch64.zip" + } + ] + }, + { + "version": "17.0.1+12.1", + "stable": true, + "release_url": "https://aka.ms/download-jdk", + "files": [ + { + "filename": "microsoft-jdk-17.0.1.12.1-macos-x64.tar.gz", + "arch": "x64", + "platform": "darwin", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-17.0.1.12.1-macos-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-17.0.1.12.1-linux-x64.tar.gz", + "arch": "x64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-17.0.1.12.1-linux-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-17.0.1.12.1-windows-x64.zip", + "arch": "x64", + "platform": "win32", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-17.0.1.12.1-windows-x64.zip" + }, + { + "filename": "microsoft-jdk-17.0.1.12.1-macos-aarch64.tar.gz", + "arch": "aarch64", + "platform": "darwin", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-17.0.1.12.1-macos-aarch64.tar.gz" + }, + { + "filename": "microsoft-jdk-17.0.1.12.1-linux-aarch64.tar.gz", + "arch": "aarch64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-17.0.1.12.1-linux-aarch64.tar.gz" + } + ] + }, + { + "version": "16.0.2+7.1", + "stable": true, + "release_url": "https://aka.ms/download-jdk", + "files": [ + { + "filename": "microsoft-jdk-16.0.2.7.1-macos-x64.tar.gz", + "arch": "x64", + "platform": "darwin", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-16.0.2.7.1-macos-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-16.0.2.7.1-linux-x64.tar.gz", + "arch": "x64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-16.0.2.7.1-linux-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-16.0.2.7.1-windows-x64.zip", + "arch": "x64", + "platform": "win32", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-16.0.2.7.1-windows-x64.zip" + }, + { + "filename": "microsoft-jdk-16.0.2.7.1-macos-aarch64.tar.gz", + "arch": "aarch64", + "platform": "darwin", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-16.0.2.7.1-macos-aarch64.tar.gz" + }, + { + "filename": "microsoft-jdk-16.0.2.7.1-linux-aarch64.tar.gz", + "arch": "aarch64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-16.0.2.7.1-linux-aarch64.tar.gz" + } + ] + }, + { + "version": "11.0.19", + "stable": true, + "release_url": "https://aka.ms/download-jdk", + "files": [ + { + "filename": "microsoft-jdk-11.0.19-macos-x64.tar.gz", + "arch": "x64", + "platform": "darwin", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-11.0.19-macos-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-11.0.19-linux-x64.tar.gz", + "arch": "x64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-11.0.19-linux-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-11.0.19-windows-x64.zip", + "arch": "x64", + "platform": "win32", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-11.0.19-windows-x64.zip" + }, + { + "filename": "microsoft-jdk-11.0.19-macos-aarch64.tar.gz", + "arch": "aarch64", + "platform": "darwin", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-11.0.19-macos-aarch64.tar.gz" + }, + { + "filename": "microsoft-jdk-11.0.19-linux-aarch64.tar.gz", + "arch": "aarch64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-11.0.19-linux-aarch64.tar.gz" + } + ] + }, + { + "version": "11.0.15", + "stable": true, + "release_url": "https://aka.ms/download-jdk", + "files": [ + { + "filename": "microsoft-jdk-11.0.15-macos-x64.tar.gz", + "arch": "x64", + "platform": "darwin", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-11.0.15-macos-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-11.0.15-linux-x64.tar.gz", + "arch": "x64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-11.0.15-linux-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-11.0.15-windows-x64.zip", + "arch": "x64", + "platform": "win32", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-11.0.15-windows-x64.zip" + }, + { + "filename": "microsoft-jdk-11.0.15-macos-aarch64.tar.gz", + "arch": "aarch64", + "platform": "darwin", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-11.0.15-macos-aarch64.tar.gz" + }, + { + "filename": "microsoft-jdk-11.0.15-linux-aarch64.tar.gz", + "arch": "aarch64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-11.0.15-linux-aarch64.tar.gz" + } + ] + }, + { + "version": "11.0.13+8.1", + "stable": true, + "release_url": "https://aka.ms/download-jdk", + "files": [ + { + "filename": "microsoft-jdk-11.0.13.8.1-macos-x64.tar.gz", + "arch": "x64", + "platform": "darwin", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-macos-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-11.0.13.8.1-linux-x64.tar.gz", + "arch": "x64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-linux-x64.tar.gz" + }, + { + "filename": "microsoft-jdk-11.0.13.8.1-windows-x64.zip", + "arch": "x64", + "platform": "win32", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-windows-x64.zip" + }, + { + "filename": "microsoft-jdk-11.0.13.8.1-linux-aarch64.tar.gz", + "arch": "aarch64", + "platform": "linux", + "download_url": "https://aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-linux-aarch64.tar.gz" + } + ] + } +] diff --git a/__tests__/data/sapmachine.json b/__tests__/data/sapmachine.json new file mode 100644 index 000000000..aec5dac4c --- /dev/null +++ b/__tests__/data/sapmachine.json @@ -0,0 +1,87242 @@ +{ + "23": { + "updates": { + "23": { + "sapmachine-23+15": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-23%2B15", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.15_aix-ppc64_bin.tar.gz", + "checksum": "33852b93e96e7513d75a75fa5c4a1a8ebbb94d525ef5e41d6e187b39c94e5911", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jdk-23-ea.15_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.15_linux-aarch64_bin.tar.gz", + "checksum": "e6e7d6beb1401739c2e9c42ffa45623a77f469b0ce04bdaf1e9dffbe588734f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jdk-23-ea.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "69b687d738c0d725431f971096fe1b3b00d54bba9c3dbf6c92e0d24085845e48", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jdk-23-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.15_linux-x64_bin.tar.gz", + "checksum": "9adce2c8595acf25816c1f5a8d2c3322638b5b99a703a98e4f18a16f89460de3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jdk-23-ea.15_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.15_linux-x64-musl_bin.tar.gz", + "checksum": "56bdf3c6dccfbc63c30b0b78896bfdf3ed21949612463e00dc89ed699adf1231", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jdk-23-ea.15_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.15_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jdk-23-ea.15_macos-aarch64_bin.dmg", + "checksum": "8860f98f6d48af460a73c45cfed68d8762a5be4919546f2fb8677dffce1c482b" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.15_macos-aarch64_bin.tar.gz", + "checksum": "182286dc8eb634ac061fdfaad7ee8a695242e79c3bdbc0b5e7d98a8c4c6d06ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jdk-23-ea.15_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.15_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jdk-23-ea.15_macos-x64_bin.dmg", + "checksum": "1eae474d514ed6f38d7e6b801331f115b9fa9c1d7386f1a847dd2b4dfe1d9d26" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.15_macos-x64_bin.tar.gz", + "checksum": "696d7e90f967eb2d18a2bb596700296b41c74f1ef8bc9a0fec163d224e1e420d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jdk-23-ea.15_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-23-ea.15_windows-x64_bin.zip", + "checksum": "c4d5d46ffb9f4806f60fcd352efb84ba24296e8f3e8a8c0e82e81e31ba0af20c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jdk-23-ea.15_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.15_aix-ppc64_bin.tar.gz", + "checksum": "e0aaa5a5b19f3517866dd490c84cae16dc517a3ba83571a54fab6f9f97b7521d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jre-23-ea.15_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.15_linux-aarch64_bin.tar.gz", + "checksum": "0b4fee0df589f8486eabf07bb0f7f9471ab325efc98d078b0997ed880ace709f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jre-23-ea.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "7131d5cfa65c709ab21cfa7bada37d8cdcb315cdc22ab74e951ac9925183a059", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jre-23-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.15_linux-x64_bin.tar.gz", + "checksum": "e27578fd9d1aabbff5e97cd71857ea6a3e438ceff675e7ab2f0556542afca65f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jre-23-ea.15_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.15_linux-x64-musl_bin.tar.gz", + "checksum": "503b4557c0ad6a3829334676db7dde82e7468db8f778d89e163d81d13c927d95", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jre-23-ea.15_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-23-ea.15_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jre-23-ea.15_macos-aarch64_bin.dmg", + "checksum": "b6aaf7a20b6fb3c6ceb87eee6927e17e144dd4012d448c290513cf2f3f4bafe7" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.15_macos-aarch64_bin.tar.gz", + "checksum": "afe649a6be1b85516c875173bea99151a218ada8301014610c5e06b771e2c8a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jre-23-ea.15_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-23-ea.15_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jre-23-ea.15_macos-x64_bin.dmg", + "checksum": "0febfba9bfb4a5a107fc97696abd0bbc7863098e856db90516ab7b798408ddb0" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.15_macos-x64_bin.tar.gz", + "checksum": "6b3f52c9d626a34a72a412d2557bd1d3ae48ba9c0951d88f9b357259a4b6232d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jre-23-ea.15_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-23-ea.15_windows-x64_bin.zip", + "checksum": "42a4b8cce43e5f15ce52bbdfb5ccf7bc652b2e5141c7a73781c06f5548ee0416", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jre-23-ea.15_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-23+14": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-23%2B14", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.14_aix-ppc64_bin.tar.gz", + "checksum": "789380d96efc3acae2ce17a9f9dac9b286858e5392e6456aeb770ec4b49e8c36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jdk-23-ea.14_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.14_linux-aarch64_bin.tar.gz", + "checksum": "258ad06fb23e48f7bd685701ec606955c0a489744b5ef88a884e6d12e31b5e4a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jdk-23-ea.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "15b35a6893d598c15daefa9d2d2c735627c6fab86598261baf573eb1f91de598", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jdk-23-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.14_linux-x64_bin.tar.gz", + "checksum": "b43871b937747089cdeb02388877a239361ef00815b9cd102b2d4d7dc7b16580", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jdk-23-ea.14_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.14_linux-x64-musl_bin.tar.gz", + "checksum": "cf55898f59f8e3466da461d0b1693adbc30ba393995e73670a8f981a2ead940d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jdk-23-ea.14_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.14_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jdk-23-ea.14_macos-aarch64_bin.dmg", + "checksum": "ffd9ef1d4538d85ffe80823dcd7ce45b13be74f07515d57ce2c72b0aea159538" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.14_macos-aarch64_bin.tar.gz", + "checksum": "257ca278b5ff2568ad269eefd7fa920732ff0d8a498978219f9e2593556c72dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jdk-23-ea.14_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.14_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jdk-23-ea.14_macos-x64_bin.dmg", + "checksum": "0d1310e76f094657467536e3cb0c8c6d485a8238c53c5f2107485869c9cc9943" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.14_macos-x64_bin.tar.gz", + "checksum": "60d6df2b585f54ee8781c973445ccd22c90280c8f9577b49e98f5e2a592cb3b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jdk-23-ea.14_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-23-ea.14_windows-x64_bin.zip", + "checksum": "7200d0ce6134fd185428cd2760a4d8427f0e07f78f9917f1a3634152dee2b459", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jdk-23-ea.14_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.14_aix-ppc64_bin.tar.gz", + "checksum": "f9c87514f70bb3c8a4f3ac96b7560e54510a609f6bba1a12b57e4a939bcc4b78", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jre-23-ea.14_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.14_linux-aarch64_bin.tar.gz", + "checksum": "5e8a2a20320233c92e145d09df45dee0a4e0b8e4b25529d3f2b29c634bc57d96", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jre-23-ea.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "e68ea8db7a0320de657c5025185e6a9f7eb181b1c494c3f6a5da317cd9345a86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jre-23-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.14_linux-x64_bin.tar.gz", + "checksum": "019ef7abd4df75c11cf6e84b5689c065fb2c56a8db3cff77eac058aa33054756", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jre-23-ea.14_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.14_linux-x64-musl_bin.tar.gz", + "checksum": "a149f030675d715f262b03b9099c307200326bcd6f55b2c9da84c6cf9bf72bb7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jre-23-ea.14_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-23-ea.14_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jre-23-ea.14_macos-aarch64_bin.dmg", + "checksum": "913e851ff918a42bb73a4a10a8b1a6826072a913512b430f507a74e339853403" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.14_macos-aarch64_bin.tar.gz", + "checksum": "02386f2cf32a51dd4bd94568a07ff1d5fa6c56f70b56533d068a27d7c6140483", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jre-23-ea.14_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-23-ea.14_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jre-23-ea.14_macos-x64_bin.dmg", + "checksum": "9dad6cbcc9fe588b44f7f5c1a244116ffbfc18383e30073a6a27b940cc515e73" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.14_macos-x64_bin.tar.gz", + "checksum": "1feec8dbb34c950224649144e8d3a550e31c8dcf43a38c8a7e350200c9d5f5e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jre-23-ea.14_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-23-ea.14_windows-x64_bin.zip", + "checksum": "95ed26a5b9fc4f0941f8b4c976443601dfa38fca196ec932a7dd2c9c7d501be5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B14/sapmachine-jre-23-ea.14_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-23+13": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-23%2B13", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.13_aix-ppc64_bin.tar.gz", + "checksum": "25e1114c91bfe51f0b71e7993144fe0f5800b3cd9b4661876b1fd234ef242816", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jdk-23-ea.13_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.13_linux-aarch64_bin.tar.gz", + "checksum": "00e9a155affa0755d7958339bed733dd1d0d0696fd3f0310b4546dd1477eb270", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jdk-23-ea.13_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "3ea6c9f9f5a4dddd38fc71c9fcf23426c6e573d88541856abb333bb7e0442cfa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jdk-23-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.13_linux-x64_bin.tar.gz", + "checksum": "444bf3b3410465746874a777a83b158963d8b92e2a20ace6e5d5c8e6ccf5cc91", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jdk-23-ea.13_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.13_linux-x64-musl_bin.tar.gz", + "checksum": "0ea37891c558b41f233b0426d49b60233b36d5f3d7427f290b8f8bca203071da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jdk-23-ea.13_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.13_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jdk-23-ea.13_macos-aarch64_bin.dmg", + "checksum": "c8381ae86dba7229aa5808b6db3fc10e30a80474b4ba4a01381150c1c8d4ea8e" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.13_macos-aarch64_bin.tar.gz", + "checksum": "edd2d423599140de3dce7eea5376a2646ea236b7d3c58214b71af33cf60e42c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jdk-23-ea.13_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.13_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jdk-23-ea.13_macos-x64_bin.dmg", + "checksum": "05570146976634a4cb1192de7def6b1f0f03d14fe796c09dc62ef197f676fd08" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.13_macos-x64_bin.tar.gz", + "checksum": "cc44d5266484871f0e82467b978ec6fadee983ea8da328a1e5b2bd0fd7e7cd1c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jdk-23-ea.13_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-23-ea.13_windows-x64_bin.zip", + "checksum": "bbac7dc1687efbfc89dae6d7c3363b55b20e14a8851eb6fac2ffe0e1216f75dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jdk-23-ea.13_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.13_aix-ppc64_bin.tar.gz", + "checksum": "dd3ea88d86735b7c31fa85858c5f09b161e56c91d9399cb935c12edc50b3e825", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jre-23-ea.13_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.13_linux-aarch64_bin.tar.gz", + "checksum": "0b031fcb722e0221c3e6bf64aca8492e826599f7bfa46808df5cdd4f13d66fe4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jre-23-ea.13_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "b922d0bd346be5660226368b8dc79c69d94f748c0c998e8f2eaa559a44283a09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jre-23-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.13_linux-x64_bin.tar.gz", + "checksum": "f1aa889db777ad7833ad1d19d52d4ba80265d2cbb23608264df64c123f5ce8a7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jre-23-ea.13_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.13_linux-x64-musl_bin.tar.gz", + "checksum": "0fbe76f6ebe24aaa02ae805c51dbe51271c6c150f305911340b9244a2c4187e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jre-23-ea.13_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-23-ea.13_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jre-23-ea.13_macos-aarch64_bin.dmg", + "checksum": "0070b7acc5753ea87ef41b8a09601c1ed0e0f7dbbbf23a5108736360d06c5a88" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.13_macos-aarch64_bin.tar.gz", + "checksum": "674955186472a9adb20af4686a1f1ed4e0a372f265ac7ad670c4af839ea5a412", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jre-23-ea.13_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-23-ea.13_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jre-23-ea.13_macos-x64_bin.dmg", + "checksum": "c5b3b9a3ecc25414f1c1387d272d6f63a487cf522860609ed0af6f8e40ceba20" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.13_macos-x64_bin.tar.gz", + "checksum": "1e0cfafe0092ea33bff214fe88f68e58dfeacbb50ec2d340a0ebcde1983637db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jre-23-ea.13_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-23-ea.13_windows-x64_bin.zip", + "checksum": "428459331c43718a782d03c435207dcad9d53d62c18c2d38d2617a722ba47aec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B13/sapmachine-jre-23-ea.13_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-23+12": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-23%2B12", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.12_aix-ppc64_bin.tar.gz", + "checksum": "1a3aac6d8bf329eccf38b28522e55e4b5d220031307b594b2762e8f0818886c9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jdk-23-ea.12_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.12_linux-aarch64_bin.tar.gz", + "checksum": "383cc77f8262f4fb6868bfda13b6ceba6397f9ee7cc91f82456d67c5b0fbc1f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jdk-23-ea.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "b014cacf2e314bffafc44b615662b4fa36cec81b93234bf7cef80b9d5baef300", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jdk-23-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.12_linux-x64_bin.tar.gz", + "checksum": "11781ffe641f3081878b4edd1695da48030fddb02c2a7bea354ffae731414ad4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jdk-23-ea.12_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.12_linux-x64-musl_bin.tar.gz", + "checksum": "e407483ca797e0ac4a3146efabf912d037d5c227fbf7e5e673bb82b3bae3075a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jdk-23-ea.12_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.12_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jdk-23-ea.12_macos-aarch64_bin.dmg", + "checksum": "f2b94a5af637bad2e507ae8757244c832a3bde8ba8ec9bccf1d360299bcb36c9" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.12_macos-aarch64_bin.tar.gz", + "checksum": "62ff6fefbb70db73e81115bc6619bb4431699257ef864857e6792acbe6a927ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jdk-23-ea.12_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.12_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jdk-23-ea.12_macos-x64_bin.dmg", + "checksum": "040928dab36aa7208a3fa4c824fe7032b18ab0be5e414cc42a09d8e293c4e185" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.12_macos-x64_bin.tar.gz", + "checksum": "ab1799bd4a3a2dc6dff55dc257140f32ceb121759dc993ee775a462117aa5e4f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jdk-23-ea.12_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-23-ea.12_windows-x64_bin.zip", + "checksum": "f48db8e4f3f3d3a81913679ad71183a5d194057ed47081ae4990d27655109717", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jdk-23-ea.12_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.12_aix-ppc64_bin.tar.gz", + "checksum": "c38dc21b10a93e9050803d2e0dcf3dc977afb761e55c0e0496e79b3f2ed628fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jre-23-ea.12_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.12_linux-aarch64_bin.tar.gz", + "checksum": "7e9cba21d559ac407637d78cb932a15fa371104352895f2b630e984f1e630e4f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jre-23-ea.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "59777daa38a8abc856871bb9c06cacb3ae7abe69a8d1e5e57bf5869327b2b896", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jre-23-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.12_linux-x64_bin.tar.gz", + "checksum": "e552df626af0014f9e196c47947aa143061a3958a0ae06aa5b37ba5ee3880427", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jre-23-ea.12_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.12_linux-x64-musl_bin.tar.gz", + "checksum": "6456721f2f7c0b91c436090714e29cb5e899d72505e231a957c95223a91a2196", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jre-23-ea.12_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-23-ea.12_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jre-23-ea.12_macos-aarch64_bin.dmg", + "checksum": "6a097d1743f77def35b40f9760e507fcadeab3041f0dcd70378453ec0a56473b" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.12_macos-aarch64_bin.tar.gz", + "checksum": "93100827bbfca972cfb3b6182b0d95833c3bd0f53e46241b9fb48b7891ad0a90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jre-23-ea.12_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-23-ea.12_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jre-23-ea.12_macos-x64_bin.dmg", + "checksum": "2b228eb1bf9d290ddf4f68f0e5f36d5d79dc9fdf25272984252461377e1ba825" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.12_macos-x64_bin.tar.gz", + "checksum": "9a037f7bee1de44860c26bb30039fe0863336f0762a79fca0eedd1f8dddd804f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jre-23-ea.12_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-23-ea.12_windows-x64_bin.zip", + "checksum": "a9b9c9cc06bf4afeae2a36079a5ccf018eef2e61b35e753a4e5acbd10461a23e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B12/sapmachine-jre-23-ea.12_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-23+11": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-23%2B11", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.11_aix-ppc64_bin.tar.gz", + "checksum": "cf9c9849fd8b8860524972355ef552b4b660f6ca39be795e0664b6aaca096ecb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jdk-23-ea.11_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.11_linux-aarch64_bin.tar.gz", + "checksum": "5916f056d3fa25e1bde25ea0712b7ea2308df86546db0eb211f074910a915fdf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jdk-23-ea.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "73bdd90c5dc8713240fbac330ca899ec260876e0de68c58a9062a1e8c840465b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jdk-23-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.11_linux-x64_bin.tar.gz", + "checksum": "f55515ecf28bd89eca21503c9b1791292a257a329976cccd99a99d2638738076", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jdk-23-ea.11_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.11_linux-x64-musl_bin.tar.gz", + "checksum": "742d4e46f45cd25cad385db023201149aeeef2f9d6937dfc818ba5961378dba4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jdk-23-ea.11_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.11_macos-aarch64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jdk-23-ea.11_macos-aarch64_bin.tar.gz", + "checksum": "4cf729fb2438d722b1355b8328c36d6d2e5e7bd591925aea6b17069c4f1eb2ae" + }, + "dmg": { + "name": "sapmachine-jdk-23-ea.11_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jdk-23-ea.11_macos-aarch64_bin.dmg", + "checksum": "ef60d16aa131380a80df0b72a2779b4321b0bacadf863d322cec5fd50623f289" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.11_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jdk-23-ea.11_macos-x64_bin.dmg", + "checksum": "6f863785b10bec5ac641457ac22bf46ff8a16892a9dae2e53c781c3a74f70fce" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.11_macos-x64_bin.tar.gz", + "checksum": "d6ded110239e9ba90f157ca66b0e4ed31908bb58b54a6fce61574e94b502bc2f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jdk-23-ea.11_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-23-ea.11_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jdk-23-ea.11_windows-x64_bin.zip", + "checksum": "e69aac032a23ab9213ee207c78fb5bff2f9736716e9aea9cb1ba25c302f0518b" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.11_aix-ppc64_bin.tar.gz", + "checksum": "c5a062057c5410177a40ced2260fd1901fcc443dcb7f36956aac53e28a0bdb00", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jre-23-ea.11_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.11_linux-aarch64_bin.tar.gz", + "checksum": "ec22a64636b4464b1dd4956d3a94c7c6e88f42e47d108da4cbc9c5a27b638a99", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jre-23-ea.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "2de70ef8d01a37793d86e60472dc63b65aea97e559f368fc63f809da79c625c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jre-23-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.11_linux-x64_bin.tar.gz", + "checksum": "975f0bbfac6f492966c9af594978614f7923e986516c6a23994102a3833925b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jre-23-ea.11_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.11_linux-x64-musl_bin.tar.gz", + "checksum": "24b26d750732e469516a34ff75730c3c2f775056999f6efed45c27534944cfc6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jre-23-ea.11_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.11_macos-aarch64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jre-23-ea.11_macos-aarch64_bin.tar.gz", + "checksum": "dc316731a5409b05c9872e592d26d44f3c681ea208ecb7a268989256fdbfb981" + }, + "dmg": { + "name": "sapmachine-jre-23-ea.11_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jre-23-ea.11_macos-aarch64_bin.dmg", + "checksum": "bbc6c5eca03b4bcfc721f6882a5524d8ede744692215598f0bce4ee2556a28ec" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-23-ea.11_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jre-23-ea.11_macos-x64_bin.dmg", + "checksum": "0975f540cc4b1c9bb0a3c1f2cd1159826e6d952dabc951d8ec076f9432f7f55c" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.11_macos-x64_bin.tar.gz", + "checksum": "4805c52446603b6511dcb084c8bf4b9c0c92936e3f8c2b28e6e4b01fc8e9154b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jre-23-ea.11_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-23-ea.11_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B11/sapmachine-jre-23-ea.11_windows-x64_bin.zip", + "checksum": "a0941156cfca288be174a88eaadfb47e3889fe1e92b8b2557c1dac5155bbf22d" + } + } + } + } + }, + "sapmachine-23+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-23%2B10", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.10_aix-ppc64_bin.tar.gz", + "checksum": "c74978c883a709886f53ddb7309325cb6d15b01b6d2dda181a43fcc121c73bf3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jdk-23-ea.10_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.10_linux-aarch64_bin.tar.gz", + "checksum": "e2f725f9d3553d8b41b9f9916dd949ef42a7d1558818127d669dde42dd3ffbd3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jdk-23-ea.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "1726cdeb7a67f5324d1f320e1ce9b7440bb66475432c8d45a660ba6301259059", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jdk-23-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.10_linux-x64_bin.tar.gz", + "checksum": "665f66037b33c1c7f6b761bdceba92d6497e68f35d2bc7ad8e96b0bd8347de5e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jdk-23-ea.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.10_linux-x64-musl_bin.tar.gz", + "checksum": "2bbf9645b0a063f082601c17fc3fd94674c507886d7ac187f4879f094198bbe9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jdk-23-ea.10_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jdk-23-ea.10_macos-aarch64_bin.dmg", + "checksum": "8bbaa23bd5f41e39333c44f35a399035987756dc433dc173acbc5f75e2cde5a4" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "83f7b1aadc8b05070f20ad5a23310b7dcbfd2f05d27ddd5ff6a520eb5fc7709b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jdk-23-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jdk-23-ea.10_macos-x64_bin.dmg", + "checksum": "a6c7fbedf9ea696cb6e91be158dced5e20a9d3dee697440b6b9cd9a4f7743a68" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.10_macos-x64_bin.tar.gz", + "checksum": "838b166e0507f2cbe167a3df9382cec6f96ed482da609e9a49993f5ac672beb4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jdk-23-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-23-ea.10_windows-x64_bin.zip", + "checksum": "437f6dc433baae0e36e891d724bcbc6fe4a83865bd2cc4b84c14a26a34cffc10", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jdk-23-ea.10_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.10_aix-ppc64_bin.tar.gz", + "checksum": "57640a57b06d32f934cbd5257573b479e0fab5c4d75698da76f968775cf5072f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jre-23-ea.10_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.10_linux-aarch64_bin.tar.gz", + "checksum": "68c289b94c7b249ae30020ab0b4c2fe1e7d06020f2080eb9ff9eef37a94e7798", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jre-23-ea.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "4952a2a4b4567e73c496c826146c45a300cd0054c3a85f4353e58f233119477b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jre-23-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.10_linux-x64_bin.tar.gz", + "checksum": "7a29260fb4d76dc412bc6669c52d0fbd0e23b68c11e319f29d84a7bdf51df22b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jre-23-ea.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.10_linux-x64-musl_bin.tar.gz", + "checksum": "356d8d53ce1d9c853428758c8e4356ca7eae65e88d6d310cf73c3ec7a8251dad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jre-23-ea.10_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-23-ea.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jre-23-ea.10_macos-aarch64_bin.dmg", + "checksum": "23ad9773268656acaa0728c67faf5b74662bf9f9e08f87008134808eeb743881" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "6d7e9dbce3543069cbf68a28a6f8751ea996a22b721fc1ea49546fdf8554ef74", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jre-23-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-23-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jre-23-ea.10_macos-x64_bin.dmg", + "checksum": "47789a5c9a2f707399bd7ecaf6f2d49d814fd5e83524067650af031e1fc4d590" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.10_macos-x64_bin.tar.gz", + "checksum": "ef483869e0440ed4d696cb47242bda4e1d09c05c9423727a27c7d3e968a35276", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jre-23-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-23-ea.10_windows-x64_bin.zip", + "checksum": "cfcadc14a5464d77a974c9e19af20bd395516a1a489c183a1b4e679456be00cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B10/sapmachine-jre-23-ea.10_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-23+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-23%2B9", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.9_aix-ppc64_bin.tar.gz", + "checksum": "0b6c414af9d0ca53ebe3b6cf3cc83339dbaf5f1e4d9d0f3685f73c67ab3de00d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jdk-23-ea.9_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "c2558806aa57f70a0eff9d753db2d4d2dc1578ff6dd39950423098cd1b8f60da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jdk-23-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "782607d300ac8f216441c48a7fa7827e3c9d02c0600b24dc78c4a1c0db6cb2a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jdk-23-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.9_linux-x64_bin.tar.gz", + "checksum": "450add210a0deed8f31f0efa328048f483dd15c3a855fab3a5cd57ea9eaf5efa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jdk-23-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.9_linux-x64-musl_bin.tar.gz", + "checksum": "d68cdaa2af1bfc558741df405eb8363aa5b6fdb6740f3818e12851c12f8834e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jdk-23-ea.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jdk-23-ea.9_macos-aarch64_bin.dmg", + "checksum": "b67b0143d5534eae08314be026fb740e7b407fa5fe528b614ae357d7fec48fe7" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "4fd7ddf142f51da4614710829955595e58788ba8c23cf34d99e7a0a082c93955", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jdk-23-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jdk-23-ea.9_macos-x64_bin.dmg", + "checksum": "038c908611d8255c8394ceae5895d2f6cc69fa7fc0f010e2a853447ec5ce22a9" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.9_macos-x64_bin.tar.gz", + "checksum": "e4f7d5a9f1bcd599c7fdb4d62077e08a64038c6da1690cbe6b0f678b64a9289b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jdk-23-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-23-ea.9_windows-x64_bin.zip", + "checksum": "2ba79c03edb3347df18da19f683113000e8ea0b39b5c50ecc7150967c766c9ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jdk-23-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.9_aix-ppc64_bin.tar.gz", + "checksum": "e7879df5e1ff6061f865b5e176a07b3f7d80ec468e60d4482a63cf2790298099", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jre-23-ea.9_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "e703cdb020b571599dff4cfb0ec896779283d42567f4be493b5bdee07afeae56", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jre-23-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "0d7c00501d774da077fd52318a5015adbb2368018c705e6ac2d0e490c85116a5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jre-23-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.9_linux-x64_bin.tar.gz", + "checksum": "4ff8e93b12bc5939d0d5241237b7944f14ec9b5d0d54d5607fa4da1510e200af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jre-23-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.9_linux-x64-musl_bin.tar.gz", + "checksum": "b27b140eb60601ab2b316fb7243938f9578abbfd5b106cd8c24ffab0c7ed1017", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jre-23-ea.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-23-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jre-23-ea.9_macos-aarch64_bin.dmg", + "checksum": "044a8fd517eae6446152f0e1f264ac7a4e28161cb4c60b2384c7da7aa83e3e0b" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "e5fb70f48618cc5df3c8d65060a67e6715f98bff68c21ac3bfc94bedc406fc65", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jre-23-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-23-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jre-23-ea.9_macos-x64_bin.dmg", + "checksum": "70a3e445f3cf326e5687c18a45479afc468f9469811679c841331738c42f9de6" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.9_macos-x64_bin.tar.gz", + "checksum": "85b9276e52b673d4ce7655aedcc26e5b0f2fde88f40e5ee4c932271fecaaa247", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jre-23-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-23-ea.9_windows-x64_bin.zip", + "checksum": "c5fad65cefbeeaa86809c41255707ab5a01bc323cd56f565c21bd8271c2701d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B9/sapmachine-jre-23-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-23+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-23%2B8", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.8_aix-ppc64_bin.tar.gz", + "checksum": "fc47e1290f800a1f0a31c0e50df612e31cd204894542126a23a499c883316a80", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jdk-23-ea.8_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "ee947682fe93a8763b88ae366548581cb1b69a5584de675487746890dca81dd1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jdk-23-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "dfef33b08457d7407602840e9650df8e9bd815341d61553c5a1a28c753b14429", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jdk-23-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.8_linux-x64_bin.tar.gz", + "checksum": "6ed3c9db98dbf31f346bfb45c04b23158cf68ce81594d31ad40bc2f377c89538", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jdk-23-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.8_linux-x64-musl_bin.tar.gz", + "checksum": "40ffc90c0335b421954894c856aafa1a1551f0f6f381eb8b42fca107740b296d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jdk-23-ea.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jdk-23-ea.8_macos-aarch64_bin.dmg", + "checksum": "bfefa7400f072927df68c14fbb4ca94a3291f158789293eb9f7de9e6ece6af8f" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "cc86ec7ef3240f14f95840a10ae57f3d08b00cb5c35bc92e54ac03d92158a815", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jdk-23-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jdk-23-ea.8_macos-x64_bin.dmg", + "checksum": "9f2ff5c53a454e6032bebca978f8af3a049a163be4a2484ea498a396e62956e6" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.8_macos-x64_bin.tar.gz", + "checksum": "2407558c7dc50806ef234d0855aaf8cf055460ef91ee24cf8e40414033ec7184", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jdk-23-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-23-ea.8_windows-x64_bin.zip", + "checksum": "6105707695fae1b08c1656c13b269f129d95bcad025ca2ffacd7ad11c40bd142", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jdk-23-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.8_aix-ppc64_bin.tar.gz", + "checksum": "a71307c77c951a05663c808fb92383d8617f87bf7755c0eed1c300ede0ebf4fc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jre-23-ea.8_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "0b8fbb8b190632cfabd673e7f5357cf0e67be3831edcd8e0f847dbbd157de51b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jre-23-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "2f2ba8ce6beff17b009c3d1f681675f89bd7a0b1e8c1961110a924ad3dd9253f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jre-23-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.8_linux-x64_bin.tar.gz", + "checksum": "cd21430444bd737bda23900253815c2db56e4009c9253724fe8bc3a210ab5009", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jre-23-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.8_linux-x64-musl_bin.tar.gz", + "checksum": "01d6abfae5e927f51c3bd822c4425a545390d900659897bf866dd4bd935239b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jre-23-ea.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-23-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jre-23-ea.8_macos-aarch64_bin.dmg", + "checksum": "c3d4191b057fd767eaabaf3f19c3db2c1dae8f0dead0340b528dab6e35b1d274" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "11cd10ddf7d173c4392fe42faf6bd1939579af0c5fa6a30b40a06982cb0b4778", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jre-23-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-23-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jre-23-ea.8_macos-x64_bin.dmg", + "checksum": "bd3e19f5a3fa9b7705d30fd0e969c937570bb6232eb2d6e878b3275497bf6928" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.8_macos-x64_bin.tar.gz", + "checksum": "ee83aacc56b3df2c4bdb391bd08aee50192f4f40afef56796c772f25db8ad6c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jre-23-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-23-ea.8_windows-x64_bin.zip", + "checksum": "77c50faabf278152e96c1da37d5191bc3a7ae08c0e5cfddf5cff95aeb7017d30", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B8/sapmachine-jre-23-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-23+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-23%2B7", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.7_aix-ppc64_bin.tar.gz", + "checksum": "794d96c24db7311d56547a3661bfda5ba6d3a064e90fdf281e5f8a02af6a4808", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jdk-23-ea.7_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "de23cd22d69bc9f43a3e42c7fa8d06f9044b97f875375951fd610e2506ef7be8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jdk-23-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "90c0e5252c13869de35b8e8e420d87fe82d077793e96857993eeb320151cdd79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jdk-23-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.7_linux-x64_bin.tar.gz", + "checksum": "237041a7994801973cbb630664127bd66b95e426a76e5875ae0fcdb4ebd53963", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jdk-23-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.7_linux-x64-musl_bin.tar.gz", + "checksum": "6281af78d8fa757c863d082ac31ad0e5688db8f5572d58eb9bf3b83d4a3ae2c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jdk-23-ea.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jdk-23-ea.7_macos-aarch64_bin.dmg", + "checksum": "a50a448a0b017f9b717e4f954f8ab6c8ab7ed073d17673cebd44eed310b80887" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "44956e39a18ebbbf85baeb71dae1bdf965a6c3a8ad9d5524a8211761682989fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jdk-23-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jdk-23-ea.7_macos-x64_bin.dmg", + "checksum": "dd38df18bf0c23e7a765ed50d88c98bb369eec39e5be1433e7ba5d3e8273f35f" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.7_macos-x64_bin.tar.gz", + "checksum": "a15b763372e52994848c20bfe8f0ce7eb82675419809e6659350f8f786051c5f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jdk-23-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-23-ea.7_windows-x64_bin.zip", + "checksum": "b878859c3e0ca628a4e3354a9b0359073fabc4d939142d84c0a84d8d08b285bf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jdk-23-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.7_aix-ppc64_bin.tar.gz", + "checksum": "1cdb56a61c9dd3c084b9e577fb4f52d03fe9f39094a21c28c0164844a896376d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jre-23-ea.7_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "beed79ab7c852cba6429f5dc5eb0008b0edfe5c6619654072d788516ff369771", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jre-23-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "67148078f20167c0297d81d77261810c0bf345fb09114b3990140574505b0b9f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jre-23-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.7_linux-x64_bin.tar.gz", + "checksum": "8b990816cd8c6c553cf923bd61ab8e432c0063146ded143b471f405a3e24f73f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jre-23-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.7_linux-x64-musl_bin.tar.gz", + "checksum": "d2ae22e6ea70deb12a26bf5143383f3e3fc245a11f5ce90f5dcf36a7ea6b74f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jre-23-ea.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-23-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jre-23-ea.7_macos-aarch64_bin.dmg", + "checksum": "06bbaf201f464186c1ef4eaf27326409b7c7d164c226fb32fe99d4b4ff4dba14" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "2080068d81c9dce16a096ecb6ae8255dd33ae5b11a03ecabad8042902c9ededd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jre-23-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-23-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jre-23-ea.7_macos-x64_bin.dmg", + "checksum": "8199752268812d5b693b961279c09791a75079c05807abcd784e082930a7f800" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.7_macos-x64_bin.tar.gz", + "checksum": "df4e78ae07b1f0b3cab7178ad80761dd1aa7496fbe4ad0050b67d85c32c63cc0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jre-23-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-23-ea.7_windows-x64_bin.zip", + "checksum": "0bc1d4ba7010b0a77b9131ff22cf177c216b91f6d0c0dd2b9189ba8c39277d3f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B7/sapmachine-jre-23-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-23+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-23%2B6", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.6_aix-ppc64_bin.tar.gz", + "checksum": "e7ecadb06941652ceade99c8b283c099efb70fb2ed5c56bbc354ca0ab89a61d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jdk-23-ea.6_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "d8b99ee96eff328a3dbb2047ca727a699386b1e29d3c2a7e6097114d882f521f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jdk-23-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "3e1fbc985712746aa69093d271fcabd2905ae6b70f658b3e0d506cda2589413e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jdk-23-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.6_linux-x64_bin.tar.gz", + "checksum": "ab4cf4f98cf26a47b9a8277022f3303f3b690aa3ed7a342f5c1b7ff19261ed78", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jdk-23-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "2fd1c5ee78d95b033cc49492e77efd83755031c8de3f5f6173a2f259a12dfb36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jdk-23-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jdk-23-ea.6_macos-aarch64_bin.dmg", + "checksum": "80f649bdc6575953d5872f18753e9356b42e707838d9c7afbed5ed6f55e77a4d" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "f4c95f677126f31c2b880a4f486e8cf2cc52143691a02523c2fcd0aa86ce884b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jdk-23-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jdk-23-ea.6_macos-x64_bin.dmg", + "checksum": "5d7edfe8ebab645b7a893e8f77986f846275b40085278c1e3db6abcf88c114a8" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.6_macos-x64_bin.tar.gz", + "checksum": "93a9336b4e212aa482f8c01237f333207259665aa2224cde28ccf8dfb8e5c972", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jdk-23-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-23-ea.6_windows-x64_bin.zip", + "checksum": "03c2e30a5e4d6a4787bd617f989e2f0cdc6d62006fc9ed121136c54fdc6c08fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jdk-23-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.6_aix-ppc64_bin.tar.gz", + "checksum": "5c03ca67db06e6c328ed64457814b7ad836961afdfcdd0e6644feddf3c93d60a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jre-23-ea.6_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "f1a380d063d8a05d9f7f9cb424f65c6a831f31e1231a2fb8100fa3e673b01e14", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jre-23-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "6a8221cf24898450e533f12b8ac70fd57ec43a589b31d3ceb00c5803b5c42546", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jre-23-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.6_linux-x64_bin.tar.gz", + "checksum": "57009a50b68466077a9f480dd32f629ff6b839b720cc481bd97479b2a714690c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jre-23-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "588c4196791ddd0cb95d824fe1e2464413a04551b9c2c38cbbdaf7e8251a5227", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jre-23-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-23-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jre-23-ea.6_macos-aarch64_bin.dmg", + "checksum": "ae84ea5d71599a9c006582a21be62391b81ad638186854fa5c31b997154d8184" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "a7ed3cf928dfa0f19dd667b001e02d2434c92cfc71cfc17b1da6b3e7c01c86a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jre-23-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-23-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jre-23-ea.6_macos-x64_bin.dmg", + "checksum": "72f7f12192f81e7dc5d3b8bf2d4f0ce05304869b3747352ac8d7278ca6db01e1" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.6_macos-x64_bin.tar.gz", + "checksum": "5101b7bb4e32078da429ffb9e44dd4bea1caa9f3c2d81e858d92e53468e51ca0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jre-23-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-23-ea.6_windows-x64_bin.zip", + "checksum": "d3bb9acb535500753b8a9d7495c4b11a9509f29210189e9d26999457d8eaa733", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B6/sapmachine-jre-23-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-23+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-23%2B5", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.5_aix-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jdk-23-ea.5_aix-ppc64_bin.tar.gz", + "checksum": "f3c86fd1cf50de34e6166f72eaed8482ce2c40d589bba235fc2d49913824881a" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "a1554418b09e4a527c512da3c296ab224242dca5daf75c44eb51afb8d463c3de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jdk-23-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "a24c11039cab7bf74fbf3298a3111f32ebb46339d89333aefa544f9634a38eae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jdk-23-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.5_linux-x64_bin.tar.gz", + "checksum": "fee85392729005d579b04872c85a31d8340c44f2fe20cdf78e404c970fda033f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jdk-23-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "47db6fab19d178b50a5e5ce86a34f146dd4af0ff904d4370d036c89988c131a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jdk-23-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jdk-23-ea.5_macos-aarch64_bin.dmg", + "checksum": "213738b279003f3e7386bc4b86ab581770f1489656c044ff398189a747b1d21a" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "852e15a554ef249168413c7f381f883ddb63713bad5ec5b033fba6aee55b4a2b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jdk-23-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jdk-23-ea.5_macos-x64_bin.dmg", + "checksum": "65fca9b722206848dc7542f53eeddbb3ea5b63aced17218d7ded329a990c67b3" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.5_macos-x64_bin.tar.gz", + "checksum": "e4f40b3298db39f7631fd61198fdc5307c08066c0cb9cfc8d5b77f01aa3770bb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jdk-23-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-23-ea.5_windows-x64_bin.zip", + "checksum": "2f2083d2b92e73aecebde8ff0da162141902a178d0b3897809b1bb36a3e06f8c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jdk-23-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.5_aix-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jre-23-ea.5_aix-ppc64_bin.tar.gz", + "checksum": "12bed3a32f387dd3781755a9340576507aafe1f6e8c5efa2dcab325eb790a82e" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "ecf8c0d0c77cedb445160b722257ed53842e24f4c1391b1337a67dbfcbd4a5fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jre-23-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "731e84b4aa28535873f6662e55dc5596c8cda736cc6779a99b2fbca49153dd4b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jre-23-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.5_linux-x64_bin.tar.gz", + "checksum": "65e4e81c94642b084a71a13d96d8b45584ffd8ae654ee5e212212da15fece2a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jre-23-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "cd53424304bfc70ebaefd387e9b56e3a6af395a7702aadb6a5fb361748307878", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jre-23-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-23-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jre-23-ea.5_macos-aarch64_bin.dmg", + "checksum": "9d1f23f8f5616dec518cb154bd944fd5b19ac9b3f70bab2e09fe8fd18650a4b5" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "70f7ea433e0aca35fcf89ac954af11dccabcb033609f260ef6140cb4b1d4b4ff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jre-23-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-23-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jre-23-ea.5_macos-x64_bin.dmg", + "checksum": "bc59c7067801b565c0cd7179e192d6c469d44857742aab799613113cb8d18383" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.5_macos-x64_bin.tar.gz", + "checksum": "2d56d56b20200fa8c1c7d0306bf4dc55de916f463aefe4289dac0f1061877cb4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jre-23-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-23-ea.5_windows-x64_bin.zip", + "checksum": "8919a7fe163f481010bd0a10a7b8781eaea610fdbc85a60541d874069a3330e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B5/sapmachine-jre-23-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-23+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-23%2B4", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.4_aix-ppc64_bin.tar.gz", + "checksum": "3ad32d4d9050097454b8390d936fc7698e55850d78810d44a1450d61a3f31e90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jdk-23-ea.4_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "805cbe425a49b2372e67bf8005f86f64954388ae0227dc4260458e0de749da67", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jdk-23-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "4597601dd67ceb61a20c5c3620b60b57b815361864514270d1bd208b5fd5a123", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jdk-23-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.4_linux-x64_bin.tar.gz", + "checksum": "8f5e5ad22d51d6f0d42e0189d5e5d1ad1518b03242d9e86b3e526a716ab61e08", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jdk-23-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "d59ba37c2dd35823e5b12811afe44923e44481997773e5680d29f372ef2f496b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jdk-23-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jdk-23-ea.4_macos-aarch64_bin.dmg", + "checksum": "f61d0585e208fb8c1498adc95c6f20ee623d1eb9e2dafff10c1c2831ecd31431" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "1da7d76a4e8012a8739a827cee57a3b1e66dfef29b9506cf6dde93b29252a860", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jdk-23-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jdk-23-ea.4_macos-x64_bin.dmg", + "checksum": "f974d84f55e269f610df03b4b2adf94bd9029ea170a62f3a801b08929786a86a" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.4_macos-x64_bin.tar.gz", + "checksum": "6246fbd08ec063d364942faa2769dca6aedb32701790a552042e1e597aa89d69", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jdk-23-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-23-ea.4_windows-x64_bin.zip", + "checksum": "5119884ff3334006d6d82c36ffb38140c11ada28e7411c25a8ce970fdd07dbd9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jdk-23-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.4_aix-ppc64_bin.tar.gz", + "checksum": "9f8945fd520aca33443fdf5baad9f62b819d0413726ee8db954372159a6d8479", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jre-23-ea.4_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "470eb09b3cedde32a762a9f6f1c9a20d476025823d63196fbef38f394875d251", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jre-23-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "632e21f75a0dc21ed3692ff8890c4c8c95a6ba6c3a1ddd4613c218c3c7b7e227", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jre-23-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.4_linux-x64_bin.tar.gz", + "checksum": "653f02b98a8ccb205f1948676eeb33329a5bb7c7cc7249057500305e03677a7f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jre-23-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "94de3e3f5e0a52ec5f79aa5fcae04971c985bb02691fa4f5147f7c0cd4c1e4d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jre-23-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-23-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jre-23-ea.4_macos-aarch64_bin.dmg", + "checksum": "ca3fa797d112b5fbb1d06b07506069a675f9b3677abfa2ab6263a45860a2af69" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "4662f9d81a306c183493422429b56efb28d10a0da82f74ea573b318b42ee977d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jre-23-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-23-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jre-23-ea.4_macos-x64_bin.dmg", + "checksum": "2470b9e78899108ac596bc71f227fbe36e163eca82d54b786dda855f96b70187" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.4_macos-x64_bin.tar.gz", + "checksum": "f1ae12922e6f0a83966afd674a583d331bf29500ede649343a2d28a12e6f3bb2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jre-23-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-23-ea.4_windows-x64_bin.zip", + "checksum": "40faa404b9bcfad3ede2fc5ecb685681d3adf7a05c4f11caa4a6e1584f67d213", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B4/sapmachine-jre-23-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-23+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-23%2B3", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.3_aix-ppc64_bin.tar.gz", + "checksum": "f8a7042ccf03107a2ff017ea15b83ba3ad2e5326988a267c67a74a811156ccbd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jdk-23-ea.3_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "360e2af107d8e06dc95c0c4cc673d8f4917241861510e14f33134751d1d6b95c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jdk-23-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "2614cbcbb8ef4777d6c329bd416fdac95adfc591f0215d52abf500c34b5e07ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jdk-23-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.3_linux-x64_bin.tar.gz", + "checksum": "ebca4d0dcd24ca853f114595cad6bddd8ed9c1b0700ae1530de067d1f4ef682b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jdk-23-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "944552bd38bcfe9e08d320bde1abd7056638698a2b2918885963e7037532a9a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jdk-23-ea.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jdk-23-ea.3_macos-aarch64_bin.dmg", + "checksum": "7a8a82af56abc3b3d1765990c76f9fa0ec549895c316189ef2dc7ac23328f4b5" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "bc60e85a46347205ecf2ed31fbd4b47617ae291ced56b3b2518bc980cd8656a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jdk-23-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jdk-23-ea.3_macos-x64_bin.dmg", + "checksum": "54b5b7a2f33857651d502116aa3228031d7ee5ae717d7bf10f7d5626909c27bc" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.3_macos-x64_bin.tar.gz", + "checksum": "bf5b2316c1eeb634bb2e77970cd90630dbd63a7acf3ebea303a91346ab8e40b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jdk-23-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-23-ea.3_windows-x64_bin.zip", + "checksum": "5f4795ac5ded12f2a69b20c1fcbf6db6dad7f8d727e75061b8c75415b3c06583", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jdk-23-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.3_aix-ppc64_bin.tar.gz", + "checksum": "a95b66fd32554ec63d3e00a701674c4e805b64dd9d1b88449ab3c057435a49ee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jre-23-ea.3_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "13e88a23d1f76af95072d3ed3fa38d02e0f190bce01b60c8d32d4334d02b61d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jre-23-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "906efcbfafd7b23960ad32115d9d50836d818ed693692a274c547c182039a332", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jre-23-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.3_linux-x64_bin.tar.gz", + "checksum": "2d8ba4969bec4e2d2025f7776699915c3d943b28b93b190a4dca0e2f44a64d92", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jre-23-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "13f4b446c1cafe967dd6d2331983557f6d3927e62228fca4872826014cabc435", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jre-23-ea.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-23-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jre-23-ea.3_macos-aarch64_bin.dmg", + "checksum": "0f1167e6e20aa21768255535b3f2aa6536b17d1b9d820e04270536c54ca0127c" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "632c1b25d1dc3f79d8dafe0c4c680f1005a85de4343ef11ff23e95960a10aa1b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jre-23-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-23-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jre-23-ea.3_macos-x64_bin.dmg", + "checksum": "8c53d61397875132e192d3d18960e186bd34ef502c4f4db259f0bc5055d6ca7d" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.3_macos-x64_bin.tar.gz", + "checksum": "64d1093be2b47555f13f17b3b14a0543f06459e50ee5454eef2088adde41e3bf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jre-23-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-23-ea.3_windows-x64_bin.zip", + "checksum": "8013578a693b9a36bc81c61b7105dabe06f3af412d4321646ea8191988dacdd1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B3/sapmachine-jre-23-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-23+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-23%2B2", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.2_aix-ppc64_bin.tar.gz", + "checksum": "d1606ed0fa72d08b17128ad527de00ecf80457be895c9a80bdae2e6deefafeea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jdk-23-ea.2_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "97e9bac0f0b4918d0e7039b664733f84d066d71e8acfcb3702f70f1d771469c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jdk-23-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "986f601e07b237d322468b94c79b1b88f289e5ec41d7cc57718fef55d593ca46", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jdk-23-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.2_linux-x64_bin.tar.gz", + "checksum": "04a7376a13c7f8a83427cc9429a68472a439f025c9c99d581c5816cd911edb23", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jdk-23-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "8e1a910810494315fa94f019bbb6b5dd36e4a5d751643a19214e763e1708041d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jdk-23-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jdk-23-ea.2_macos-aarch64_bin.dmg", + "checksum": "a2bb49af88c7a9d6f5a49bd80875017f98a0bac3d33ab05a938b06f64fa8b277" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "160acab2c341bd60a856d063446d1cef0954503dbd13e9c8c5c29a1b79867010", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jdk-23-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jdk-23-ea.2_macos-x64_bin.dmg", + "checksum": "9000bfe122e0314c457c007054dfa8b591cd0ac28fbf841e10345c5c775b2332" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.2_macos-x64_bin.tar.gz", + "checksum": "10d06b653427239c44627c8065678fb0c39743ce9e906ee5a5913686b010d5d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jdk-23-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-23-ea.2_windows-x64_bin.zip", + "checksum": "0678fcc6b018b74c0651588bfbbd1fa8e2de2db3dd0e919a8fc1e3ac69051ee0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jdk-23-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.2_aix-ppc64_bin.tar.gz", + "checksum": "4266a93249377f136dae7a221cb17e06262ef20d4b575c10f44d7df63acfab7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jre-23-ea.2_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "93cf5dfcc2351ef46c40c840034bb746b2d5c566bd144db3b9a87e543bbd83a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jre-23-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "c858441cbd010d08b9126fc9372b822c14603b9510bb53d1da6f58a41e480ec2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jre-23-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.2_linux-x64_bin.tar.gz", + "checksum": "3282436988d62ad04d89f76af24974741ff408f4e25a72b2e540747d5c97f451", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jre-23-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "647e5d78f09b09357a8ef9b876980285c89bc758768849d12293bce350ea7bd1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jre-23-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-23-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jre-23-ea.2_macos-aarch64_bin.dmg", + "checksum": "0b7e7d1186f13694e85dda4740186429d14241192ddc09c030b7f2aea1be21e3" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "35d4f0efec01112e02e193985b968c86879a20a2941182ac1eb17293d4cc8707", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jre-23-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-23-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jre-23-ea.2_macos-x64_bin.dmg", + "checksum": "8c0dec9deb5059ce9502fa7ad62971ebc7f70fbbbb6915cc8697f48f500218c5" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.2_macos-x64_bin.tar.gz", + "checksum": "71b073202e649f42fc83949e95ec5040b8f452c52d0606438731951404ab576c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jre-23-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-23-ea.2_windows-x64_bin.zip", + "checksum": "2ef927158690e430d65546ae48f27834b299d653d63fe647625129cb55585530", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B2/sapmachine-jre-23-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-23+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-23%2B1", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.1_aix-ppc64_bin.tar.gz", + "checksum": "427390401cdf937162ca046518780a4d3db6d8c64ece049a0346391ced5add2b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jdk-23-ea.1_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "7aed275ec116ca16ad5519f225eec8516f5b3e43a54c4f43005e2e1dbfe39ec7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jdk-23-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "586e52aa50b8dd34fdb1b418aae9beef1b1d30b6364d6e54ba8cdc3f916d683d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jdk-23-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.1_linux-x64_bin.tar.gz", + "checksum": "4329f672185b5b1bfbf6b998059eba1fd483b5c4e394b8876fb6330d43207477", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jdk-23-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-23-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "9835d3bc045bda80e6116278cac2a42fdb2c20fe433779cd679a7df20bdb67ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jdk-23-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jdk-23-ea.1_macos-aarch64_bin.dmg", + "checksum": "542ee75d4b457dce2639ba9dbe4529e0834af375399bb3b86ac5908f2dca1bd8" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "81a8df4aefac49ffaced985ab3c7e36c0289eaf18866a9f4a792a7171f5179ab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jdk-23-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-23-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jdk-23-ea.1_macos-x64_bin.dmg", + "checksum": "10bc47c919751fb984a89e128ef74ea33e047d1a047fa0def09e2b423e42064f" + }, + "tar.gz": { + "name": "sapmachine-jdk-23-ea.1_macos-x64_bin.tar.gz", + "checksum": "0cfa6674a87db2635b24da49b5ea7c000ef3e19b04089b8a32896f19dad56315", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jdk-23-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-23-ea.1_windows-x64_bin.zip", + "checksum": "3981fb760efa9c0213e8e7a8581330aa12ef34a5cd1f8fb6b0f31a20d183a8d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jdk-23-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.1_aix-ppc64_bin.tar.gz", + "checksum": "574dbacc4eab78954f3e7ceadf4db3ebdae877430ec9db9b1ee3fe5e2792a4f0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jre-23-ea.1_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "f74e0d8442a85d7597f4afd774d8a754304cfbc8492b930c17812b50951058fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jre-23-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "889a9ef7c7fc3ac512346de20a3bf08acc556bdca0c522a040d38c5fb61de89e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jre-23-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.1_linux-x64_bin.tar.gz", + "checksum": "a5441e00ad118840184ec458a6198bf981a4e005850762ee55d684eb3e9f6be5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jre-23-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-23-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "b007913c842ce0ca26420b7439fd03e09bf40078b1b030de197b4b4f4541e3d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jre-23-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-23-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jre-23-ea.1_macos-aarch64_bin.dmg", + "checksum": "eb7822fe37487ef01536bd46c8e83fd4e8f8b8df8e92712405742bc9e78bfd5c" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "6817ceea4f4d87f69814bb98a366f1d278f424d8ecb4b9418d5eb3433ae232ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jre-23-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-23-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jre-23-ea.1_macos-x64_bin.dmg", + "checksum": "afa9b42cafce132e1714d9e7c3116c3770dc259e73437693b3584759753de36d" + }, + "tar.gz": { + "name": "sapmachine-jre-23-ea.1_macos-x64_bin.tar.gz", + "checksum": "5f88cc969b0dccf47899623feb01ee26a09589b066d394750008c45d7fe691f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jre-23-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-23-ea.1_windows-x64_bin.zip", + "checksum": "ff6e5ce4841dc710c480c9381e157f9587ca5182b9f18d2852267b7090d34c9e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B1/sapmachine-jre-23-ea.1_windows-x64_bin.zip" + } + } + } + } + } + } + }, + "lts": "false" + }, + "22": { + "updates": { + "22": { + "sapmachine-22": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22", + "ea": "false", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22_aix-ppc64_bin.tar.gz", + "checksum": "df8561ee220d9e9a143c05ecb60712ba55f1cffe9bda49f89c7e321aef7801b2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jdk-22_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22_linux-aarch64_bin.tar.gz", + "checksum": "6cffaad0274ae0534c5bed3695e54c09b6be37dd302848fc0031139a92479f6c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jdk-22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22_linux-ppc64le_bin.tar.gz", + "checksum": "4c392061f8ab0c0cd29cab5838d246960f110810f2fd2b1a5b8fb8488e9ebf3b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jdk-22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22_linux-x64_bin.tar.gz", + "checksum": "42c13834842b64e3a553aaee308b99802db81e48a0b7e0c87bf3a9791ce29d60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jdk-22_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22_linux-x64-musl_bin.tar.gz", + "checksum": "893ec34b0314fd3be7a521317870098c8c46e87035d8a09de032ce98bbb23b5e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jdk-22_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jdk-22_macos-aarch64_bin.dmg", + "checksum": "b275798b5028071d7637fc70b5cbe28ed55f03259793983322ea3d8e8c1f6540" + }, + "tar.gz": { + "name": "sapmachine-jdk-22_macos-aarch64_bin.tar.gz", + "checksum": "ee55231c8d2da95c1be4f85361b4cca2d0f3d5b25e63c4b649b6c4b1c7a5d866", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jdk-22_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jdk-22_macos-x64_bin.dmg", + "checksum": "528419c3ae4dc7fa04054eeeaae912407566190016ba56457dfcaa823ac4262f" + }, + "tar.gz": { + "name": "sapmachine-jdk-22_macos-x64_bin.tar.gz", + "checksum": "63f5c6ecb1aebea19892c740e0bed610a85376b0115566b83d34ded642d19d8a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jdk-22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22_windows-x64_bin.zip", + "checksum": "1f4e8d834ac3af6c49ea3d2260ab6e312175d56a3a98d65a47659bbbce497cb4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jdk-22_windows-x64_bin.zip" + }, + "msi": { + "name": "sapmachine-jdk-22_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jdk-22_windows-x64_bin.msi", + "checksum": "c852fdb2f1f25919fcda1b144cf28a4a2f77ceb6c625bd0b215c86ae55e01daa" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22_aix-ppc64_bin.tar.gz", + "checksum": "0e7bac487a5d4c2d8935952a0a81ae342dac5112437286563c7c04061a1a9407", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jre-22_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22_linux-aarch64_bin.tar.gz", + "checksum": "ff829871287e30d023746c8b1c52aa8bab9611637405fa799dced307691795df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jre-22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22_linux-ppc64le_bin.tar.gz", + "checksum": "db6aa65b98fd44f726e96f213d34a3c5d65838dc9bb3c561574a45ff19ec380b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jre-22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22_linux-x64_bin.tar.gz", + "checksum": "661ed9c3f89b31d5aa6d655326645560051be1c18c9d0da614e7ce3743aff98f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jre-22_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22_linux-x64-musl_bin.tar.gz", + "checksum": "4257b60540822abfecc482b30735e18701cf910194553dbf62a1ebf4a403f10d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jre-22_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jre-22_macos-aarch64_bin.dmg", + "checksum": "2826d2e25fec7737509fdc7c5465c5fbb8f4c54f5fca83454f2b272eeb5a5736" + }, + "tar.gz": { + "name": "sapmachine-jre-22_macos-aarch64_bin.tar.gz", + "checksum": "961abd9d5e3ea8b51989c6dc6e3a61d83dcdd1ee3bcfdb097ca2dd785f825246", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jre-22_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jre-22_macos-x64_bin.dmg", + "checksum": "66d351c9cd0a7960c5be527ad8d4123910875501fecf6f7187ae9631188cced1" + }, + "tar.gz": { + "name": "sapmachine-jre-22_macos-x64_bin.tar.gz", + "checksum": "a79e279a043a11d2dba1f2a4d8c1d9f090bb10f3c34673a525130d4327ecac71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jre-22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22_windows-x64_bin.zip", + "checksum": "c1dfb594083bc3d6e001dde94db25b40a309a2d50e3e2a187a4d29f6825be654", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jre-22_windows-x64_bin.zip" + }, + "msi": { + "name": "sapmachine-jre-22_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22/sapmachine-jre-22_windows-x64_bin.msi", + "checksum": "7435d13e51b6f97a5e9bd7a2d66892d241d07c3c9e4fd311e4b9b0a8afca8f3a" + } + } + } + } + }, + "sapmachine-22+36": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B36", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.36_aix-ppc64_bin.tar.gz", + "checksum": "187f472328277e5c5549b2f9f5e87c78289a73c916a0d87b68b29c8d883999b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jdk-22-ea.36_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.36_linux-aarch64_bin.tar.gz", + "checksum": "65d554d0f5f6e55d62b2719a86da9f19cb7e5a060b426bbc8826aeaea7dc7ad3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jdk-22-ea.36_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.36_linux-ppc64le_bin.tar.gz", + "checksum": "2551d922bca1b7fc95af14cd5433eadb4d4b2c64c9bb70c3b6f7fb5ae436b4a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jdk-22-ea.36_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.36_linux-x64_bin.tar.gz", + "checksum": "5c1fbb61bc1b7386b273e5ac98058329498f63dbf98bb82c08c7d084d508f6d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jdk-22-ea.36_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.36_linux-x64-musl_bin.tar.gz", + "checksum": "6b0ab3d1cc6e0e358e97ea9e8df3a94e74293f325d661dc9a9be3bd99743a504", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jdk-22-ea.36_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.36_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jdk-22-ea.36_macos-aarch64_bin.dmg", + "checksum": "90424b9f1e6217fda77d6c835bd3c867300cf5cebd5187444650e38cc3c4a7f0" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.36_macos-aarch64_bin.tar.gz", + "checksum": "d8fe043eec5641bfe99c3c88714b8771c5db1961744571f31726776d097f1921", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jdk-22-ea.36_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.36_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jdk-22-ea.36_macos-x64_bin.dmg", + "checksum": "2a37e4b7cb88ea31569cf30f3d32753ceaddb49961a65c0875dd975c7928f15c" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.36_macos-x64_bin.tar.gz", + "checksum": "f6bf8e5c7e86fa226c4d937d229aa783b80435f33dab54b440dda507c38c9c41", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jdk-22-ea.36_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.36_windows-x64_bin.zip", + "checksum": "6b86916b87c2f9eff59b19cfbf000139e6b1f7f98b1b989560c2cd06da8c28c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jdk-22-ea.36_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.36_aix-ppc64_bin.tar.gz", + "checksum": "5a4b63d45e777aa47e1b82a6d188fa3bfdcc40e541445b886d67d34802007a2c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jre-22-ea.36_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.36_linux-aarch64_bin.tar.gz", + "checksum": "e2f57f9a511922d3fe08f8221ff65dba17ddc84d7d63b3f9ac7f62e9f97146dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jre-22-ea.36_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.36_linux-ppc64le_bin.tar.gz", + "checksum": "d750e7cd82f538f4442d87ee297b090d94b24f6332e877b86f93a087c513e5ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jre-22-ea.36_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.36_linux-x64_bin.tar.gz", + "checksum": "fd79bf905348ead7592051635464d34a2af613aac2c7d769f4176c6086800bb0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jre-22-ea.36_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.36_linux-x64-musl_bin.tar.gz", + "checksum": "71c1fa3f9d6ced2adc2e1df078cf1985ccd1046faaa3998183e07362e6f24c50", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jre-22-ea.36_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.36_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jre-22-ea.36_macos-aarch64_bin.dmg", + "checksum": "412a19574d26ecd95078295be5c5a84ba861315eaf3dacd0b07d7d6f0ccc4163" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.36_macos-aarch64_bin.tar.gz", + "checksum": "a6acf12357e782301042862d28a42b0a02bded5d1bad7dd0953639702b46ff0d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jre-22-ea.36_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.36_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jre-22-ea.36_macos-x64_bin.dmg", + "checksum": "fdd5dc4295c23b7eac9f06845f71687bcd5dde5b1258c0d730cad7e748b97691" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.36_macos-x64_bin.tar.gz", + "checksum": "128e38af47522b4f09a2d8a8ed85302fe59df2b88f5ff9ef5f74a1f6393b07be", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jre-22-ea.36_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.36_windows-x64_bin.zip", + "checksum": "3aa07348e9d614aa51430fb18b6eec65954a0efc344e0238d2a5467f5e332f5d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B36/sapmachine-jre-22-ea.36_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+35": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B35", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.35_aix-ppc64_bin.tar.gz", + "checksum": "7091b2995aededdf474ef4a5f4cb5c867f166e6acdf78ba51c43878193b7f2ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jdk-22-ea.35_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.35_linux-aarch64_bin.tar.gz", + "checksum": "845984cd6cc9d9e54f0ad549c79c10d2f93798874997c086b3457a8a88c4dae2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jdk-22-ea.35_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "83fd923c9d6575aec4301cd3604b6db5c9a8313655938101e1581edad0d302b6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jdk-22-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.35_linux-x64_bin.tar.gz", + "checksum": "ca3451e45d2e1e03f1affc1dcfea8b9a6ebb830b5409aca5072e49ee60e79cb8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jdk-22-ea.35_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.35_linux-x64-musl_bin.tar.gz", + "checksum": "a3ce515cc46b16228938b4e17f0c6c8460083013e6b4dbaee347986bac5d9a64", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jdk-22-ea.35_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.35_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jdk-22-ea.35_macos-aarch64_bin.dmg", + "checksum": "16f07f13fb0d71fa0996d8a05487158f3e17102669dcf2ff9e327e9f7092616b" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.35_macos-aarch64_bin.tar.gz", + "checksum": "103347ec5ef5db755ddb490305b2ce6e5a59c6baee159ffdeb191edc41d0c271", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jdk-22-ea.35_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.35_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jdk-22-ea.35_macos-x64_bin.dmg", + "checksum": "f68573dfd07fad38bffd706360717c30060c96df7bbb50cbfecd8b3a3e26e292" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.35_macos-x64_bin.tar.gz", + "checksum": "a0fdd7fbd8034ff330b672f12e7a8c0160666360146ae7538d77b2f49eca1d31", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jdk-22-ea.35_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.35_windows-x64_bin.zip", + "checksum": "f9d88cb4d5f35c7a5c5374fd3ece63844e6af2db74fe1cb8c0125e25905df7d8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jdk-22-ea.35_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.35_aix-ppc64_bin.tar.gz", + "checksum": "382d7df45d133af555af9f66bca8ff748d68926c0fa2bca73ec82cbaaf171849", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jre-22-ea.35_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.35_linux-aarch64_bin.tar.gz", + "checksum": "3d9f0c0f422709fca8b658c12b0de904a270b21c8937afc6c05a22ff48d8efc2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jre-22-ea.35_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "c7b069efe7a39dad635da1b34e4e651be22f30a429a7c0f44236e5a062ec3d04", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jre-22-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.35_linux-x64_bin.tar.gz", + "checksum": "b3a604ad44e382916b09411e2704f37cf54620a2889db96f875994b95ed00ca8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jre-22-ea.35_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.35_linux-x64-musl_bin.tar.gz", + "checksum": "a433ffe916aec2d946bfe34324e4803ca8e29da7a73bffd5c4f60bcb5ddbc05b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jre-22-ea.35_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.35_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jre-22-ea.35_macos-aarch64_bin.dmg", + "checksum": "97f292e7b771d9b4294e7e6ca2418cc68bddc1bb9a28dc11318c7ce4141c9167" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.35_macos-aarch64_bin.tar.gz", + "checksum": "2bd15d14e348ad01a03897601e988f0e5731c0dc514fdc2e42b545c2f370f1cb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jre-22-ea.35_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.35_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jre-22-ea.35_macos-x64_bin.dmg", + "checksum": "c903924db75dd6e68a9d2a5463c2bb93f7cd2409d6770fc25fa03264873aa725" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.35_macos-x64_bin.tar.gz", + "checksum": "6c4baaa3d3678f46c2695a20b90cf9ee151e1bc1d0eb5e80d7594aac922ae77a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jre-22-ea.35_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.35_windows-x64_bin.zip", + "checksum": "ba5a28a80eb0dc40700219dc87019cc141448aa2b1d2d8467f0162ec0be6b251", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B35/sapmachine-jre-22-ea.35_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+34": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B34", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.34_aix-ppc64_bin.tar.gz", + "checksum": "d0d9c86939603569b974207b333ea35f23283fc7f7d1fc308745ebd8c8677594", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jdk-22-ea.34_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.34_linux-aarch64_bin.tar.gz", + "checksum": "f041061b8b76f6e72d8409e0cf677bcddcaa4658d9cfa1715dc8c16d616d6f76", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jdk-22-ea.34_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "6bf5ba5cb4cb86d09a00436eb860f0b35d9bd9872eccfd8fae9dbb4bfdd18455", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jdk-22-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.34_linux-x64_bin.tar.gz", + "checksum": "47dc3468adfb4c811107d8acb1bbc9b2f8d99e015d71a5379b6ee8ca825d9126", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jdk-22-ea.34_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.34_linux-x64-musl_bin.tar.gz", + "checksum": "8481f881067c996959516800d4c04a22bf7e5292c14fc97659fb75e743ad168f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jdk-22-ea.34_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.34_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jdk-22-ea.34_macos-aarch64_bin.dmg", + "checksum": "cbe6ecc717072ada709322aad0fc2dcaf40ab59effb918c5ca34588500a8a78c" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.34_macos-aarch64_bin.tar.gz", + "checksum": "46f36fe9626ef2b5ca84b2fca26ef550b8e4417069d61b51a084ac0ac92d46e6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jdk-22-ea.34_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.34_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jdk-22-ea.34_macos-x64_bin.dmg", + "checksum": "f560865f5e89ca5029689ae874db3b96a4f2728426c8c6139a761958ce4b3e13" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.34_macos-x64_bin.tar.gz", + "checksum": "682cf7326549b2c2eec69e421e45cf16a594083b8f486bb8540c94786178103d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jdk-22-ea.34_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.34_windows-x64_bin.zip", + "checksum": "aeed94306cfa3b15c18892fa4053dba28a8b4005f30312bcec0e1f73738ad6eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jdk-22-ea.34_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.34_aix-ppc64_bin.tar.gz", + "checksum": "9175b70fbadf757a903a6feba029775e6b1df594925722d050641441584f91e6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jre-22-ea.34_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.34_linux-aarch64_bin.tar.gz", + "checksum": "1805fd490e3a866cff667781d5a987453a466a406af0e3d3ab3a2cdc478f4d47", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jre-22-ea.34_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "136eeaf9cacb2f7ae99bdbe7bd83b05422b8a2e75c4465fb7131ac6f2e0712f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jre-22-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.34_linux-x64_bin.tar.gz", + "checksum": "637109c9f6e8d8f0de092c6fc44a25cef25f644d8aadf61c95ae052d3422ef23", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jre-22-ea.34_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.34_linux-x64-musl_bin.tar.gz", + "checksum": "8af66e02ab6e443ba388942c3bff945f64a903c467916f16a834812a9bcc55ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jre-22-ea.34_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.34_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jre-22-ea.34_macos-aarch64_bin.dmg", + "checksum": "79ffc02cf1c89a1815d0b0270fa3f1fce0047deb3329de57e0aefc4d216a93d0" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.34_macos-aarch64_bin.tar.gz", + "checksum": "2a33347e0c3e76eb16f390c7474f9e3f69af7a95a908edcb51cefc624debb07d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jre-22-ea.34_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.34_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jre-22-ea.34_macos-x64_bin.dmg", + "checksum": "80498902e7976e9132d6a72aaeecaeced21ce42e55896c0246f1135d64dfaa69" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.34_macos-x64_bin.tar.gz", + "checksum": "e66b01819584d7bb0a983bc98e0e0cc0f31dee68c30f638ddf8aad6e0d8fc102", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jre-22-ea.34_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.34_windows-x64_bin.zip", + "checksum": "c79e7d23ff95163a135b4ba46179bcbd5ca37820619a7a73be5862442ab004ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B34/sapmachine-jre-22-ea.34_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+33": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B33", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.33_aix-ppc64_bin.tar.gz", + "checksum": "ed64264ef1ebc46616b7faf5df7eb1bac2e1f0468543a2c604430d37cbbb5e9e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jdk-22-ea.33_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.33_linux-aarch64_bin.tar.gz", + "checksum": "31e6fc1964530beeb3cd0fb0a4ebacf34be65acd6d10524b223e7d56dd01b71e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jdk-22-ea.33_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "7843b63fb029cc12f09e915142a976cdcbb41074e0f4986380042612a84fc917", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jdk-22-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.33_linux-x64_bin.tar.gz", + "checksum": "75f9f1525119216df7da2de9e25b1ea68d1301e08cf6ad544dbd63e93244b76a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jdk-22-ea.33_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.33_linux-x64-musl_bin.tar.gz", + "checksum": "3395feaf976f56d918e9ea7a154e30d84ba9438c7b885f8aea860f6e7de2b512", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jdk-22-ea.33_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.33_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jdk-22-ea.33_macos-aarch64_bin.dmg", + "checksum": "22a768dffe11830126a643e87ba3990662715e330470ae209f1a1db051e9a509" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.33_macos-aarch64_bin.tar.gz", + "checksum": "15e464c7208f42d23b6a079aaa5764a66b9f824780130fd109b6dc1a001d94e3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jdk-22-ea.33_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.33_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jdk-22-ea.33_macos-x64_bin.dmg", + "checksum": "ae908e11ba3b10d759e6956725ea7cead2e3b087f5121ca596c9d1a82e72c529" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.33_macos-x64_bin.tar.gz", + "checksum": "e039b3f065af962d0057a2eec11bf370c99da132ce9ea88070114203f67a403b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jdk-22-ea.33_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.33_windows-x64_bin.zip", + "checksum": "da4201a35817c8a02361a8baab420757eed36edaee6bbd75c7a90f25f412ab7a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jdk-22-ea.33_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.33_aix-ppc64_bin.tar.gz", + "checksum": "af12aca92eb79f524b6afc07fce5ced98f86bc476d887a644ba5d0476d31d1aa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jre-22-ea.33_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.33_linux-aarch64_bin.tar.gz", + "checksum": "e875fc6d9c7aa0bb50d1790df55baf37e1469e9aef58587ea6d64d93ca9e4719", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jre-22-ea.33_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "291f226758b04a9315c6b50b0a48f5b052222d89ccfaddfdf70c4b42ffa30ba1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jre-22-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.33_linux-x64_bin.tar.gz", + "checksum": "61fa48e2b819b12281402ac8517947ca16e8908506c8e051e41494e20846d5ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jre-22-ea.33_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.33_linux-x64-musl_bin.tar.gz", + "checksum": "3e09b314a59f6c9c0c5496379c17f8070e1283c447055b6791bc023f2cd32fd5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jre-22-ea.33_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.33_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jre-22-ea.33_macos-aarch64_bin.dmg", + "checksum": "eb5ed10a5ca75629742e24c6383c85f831e7048d37b187078e0bdbcfefa2968f" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.33_macos-aarch64_bin.tar.gz", + "checksum": "a28f4482a8c1e5c01bfbc3135cc162a403a0f1d5ea317d960354db785b022637", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jre-22-ea.33_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.33_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jre-22-ea.33_macos-x64_bin.dmg", + "checksum": "a8cebe449af6746e485c1a83330f45e686096b8e0371049f88fda5ff8d024a28" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.33_macos-x64_bin.tar.gz", + "checksum": "de532caa237c9cff8fad46148a6ddd95d2c421f29b32e3a7ab8b3315087c096a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jre-22-ea.33_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.33_windows-x64_bin.zip", + "checksum": "12bbc669a17f3dad6f7b1710076f85ad110fd52e151fbd17466bc61aa295bf50", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B33/sapmachine-jre-22-ea.33_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+32": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B32", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.32_aix-ppc64_bin.tar.gz", + "checksum": "e051d4c0c676aba97695c419f7bf037d7e29450396359a0869d8b964d10ed18c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jdk-22-ea.32_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.32_linux-aarch64_bin.tar.gz", + "checksum": "32543103a3349876d288ece9df0ae3f83ec7b2bdc0b13a63a8242188937cf2c5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jdk-22-ea.32_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "6f4c6b8307abb7e5bd62515e778b77a6fba812573c7c853c3b3bfddc66523213", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jdk-22-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.32_linux-x64_bin.tar.gz", + "checksum": "714595a0a003026704e66ab623d67ddec303b5e4da673e8eab45dd0f86258406", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jdk-22-ea.32_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.32_linux-x64-musl_bin.tar.gz", + "checksum": "909eab2b0174a6aef3942c79474d3691e98b8fb34dc9624fa7a28b6d45ebf6c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jdk-22-ea.32_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.32_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jdk-22-ea.32_macos-aarch64_bin.dmg", + "checksum": "ae95a7035d19c95e80bdbe09b3aebb5930db8be675133ee6780ec4d14997c665" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.32_macos-aarch64_bin.tar.gz", + "checksum": "f308a5b117de04ab7e710e8e8e67c2b945ce93347838eea87318e5e04a0e9dff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jdk-22-ea.32_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.32_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jdk-22-ea.32_macos-x64_bin.dmg", + "checksum": "0b2d9ac36cd834e4f16926c9c88e5168bb7039674abf97aa2d1d3375bfac4e6b" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.32_macos-x64_bin.tar.gz", + "checksum": "b0b4c28db3f76ca8f1610a569bd58941f7e5fefbfb2c4d77d703af42b18e5762", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jdk-22-ea.32_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.32_windows-x64_bin.zip", + "checksum": "2b330a664513246adc08c697623f9e4977acb240b041c4b3c0bbf6d51bf5be57", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jdk-22-ea.32_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.32_aix-ppc64_bin.tar.gz", + "checksum": "4ce51698e41a91ee0693f6052b3c1ff1e828f3eda96fd11fca38368c8e0b149a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jre-22-ea.32_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.32_linux-aarch64_bin.tar.gz", + "checksum": "c74bb376e1f29005b897d2a29a74441aa07ce2777e60a6328352ceed683142bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jre-22-ea.32_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "b84d4cdb94844af8fcd0b96ea69b9131e9c228131b1cf1ab1b4d8659c15e9484", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jre-22-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.32_linux-x64_bin.tar.gz", + "checksum": "a2b94b63b6a0d1c8cf06acd853b2614c6463bea13d93b55d253999f9ac6f1188", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jre-22-ea.32_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.32_linux-x64-musl_bin.tar.gz", + "checksum": "e2bb7dd1309b67bee38fde6719b2668e9cfc261abd4f704db015e6e5bd2331b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jre-22-ea.32_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.32_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jre-22-ea.32_macos-aarch64_bin.dmg", + "checksum": "f3a06b01ec5fde173034e0415974351b74ad9879b295e271779b88c25cb7d48f" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.32_macos-aarch64_bin.tar.gz", + "checksum": "10b0362d20feca19b3564a6cefed86e4f130a04262d3c025cadddd979ddd79de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jre-22-ea.32_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.32_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jre-22-ea.32_macos-x64_bin.dmg", + "checksum": "3bdbfb23ea68bdd30fbf7f3a026d859bb4927c5cb4931eae479db1f331727a9a" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.32_macos-x64_bin.tar.gz", + "checksum": "8210b36224c853545e1eae567c139fdb8ad997271df6eb0806fd734101bf8b68", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jre-22-ea.32_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.32_windows-x64_bin.zip", + "checksum": "4756bf4267b1b3fa54a1ff433a87c2a0794ac5574ed7fde5f39de899b86d31c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B32/sapmachine-jre-22-ea.32_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+31": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B31", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.31_aix-ppc64_bin.tar.gz", + "checksum": "7a11b14a8609e11804917092c39bd0c7c35a9421f8ac481fff324bfcb9726b82", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jdk-22-ea.31_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.31_linux-aarch64_bin.tar.gz", + "checksum": "5c05a7d4ccefd2626d0c3e2c569abd87aae6f794ac40808064c588e8b99a7b16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jdk-22-ea.31_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "c30fa6c3136029899c02ecebe537f59f788c46ca45819858e72550c721cf3268", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jdk-22-ea.31_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.31_linux-x64_bin.tar.gz", + "checksum": "88254f28dc35aab2d16b22a4240be17a87795258874bdde342317447e6975270", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jdk-22-ea.31_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.31_linux-x64-musl_bin.tar.gz", + "checksum": "077960aac22caa86b19c3877da1558e9489f9964817145ee4c320259b5bd5a0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jdk-22-ea.31_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.31_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jdk-22-ea.31_macos-aarch64_bin.dmg", + "checksum": "41793e58f7bbd4beec0935ce017dcc726e8feb4412aa0f54e83463686ef41cf9" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.31_macos-aarch64_bin.tar.gz", + "checksum": "6deee438b4885bebc996e1689e7fd647c22bb70e23efd3650ef1781e145df44c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jdk-22-ea.31_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.31_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jdk-22-ea.31_macos-x64_bin.dmg", + "checksum": "c56b52155a8b8cd3d8b00661b9561fd026baed2ee7a616de9ae34b97626904e2" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.31_macos-x64_bin.tar.gz", + "checksum": "ea9cd5418a0e0eacf7c983c79c1d5f6ce37f32beeabb3d5fc14d919a11129bcd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jdk-22-ea.31_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.31_windows-x64_bin.zip", + "checksum": "c46c97b92ba79007bbe3f0686637c183909a40f3c903b3faf057010856d45dbb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jdk-22-ea.31_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.31_aix-ppc64_bin.tar.gz", + "checksum": "5d723a6278a11b8fe6b8aab0b97923890acbfdb32f982559b43761f36582ac53", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jre-22-ea.31_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.31_linux-aarch64_bin.tar.gz", + "checksum": "68a7f9474b0d2c6e21a61988cd693f4c0aa72f60ac638c4f01f4800e6e9b37d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jre-22-ea.31_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "13e8d4a643e51b73c38e6fd007893a49052202f71da35f4f4b4f21947cf6d78b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jre-22-ea.31_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.31_linux-x64_bin.tar.gz", + "checksum": "73626b21076896db7838c5429cef5f5e0a1c452b210d06c2dba4f981ba8489fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jre-22-ea.31_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.31_linux-x64-musl_bin.tar.gz", + "checksum": "e96e028ff7e84610e5f1ac577e6007150ba7d8a7acce813cf6147c9787f36650", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jre-22-ea.31_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.31_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jre-22-ea.31_macos-aarch64_bin.dmg", + "checksum": "c4b1768a39ca5e3a9788a20ca51dbc909ce86cc778ef1589b31e9edbec8a6212" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.31_macos-aarch64_bin.tar.gz", + "checksum": "340d4df635022e702584a81d3c7303a4fc3aa070e34264116a8aa8763015ea92", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jre-22-ea.31_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.31_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jre-22-ea.31_macos-x64_bin.dmg", + "checksum": "6ece0ff983b09f3db58a9b68d3a4171fb48a5815e613e2b125b87b84b381cb70" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.31_macos-x64_bin.tar.gz", + "checksum": "f066e02fa1a2bdce96a22da7aec7d5b136869202ebc1b92d8991818522f1178d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jre-22-ea.31_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.31_windows-x64_bin.zip", + "checksum": "f4a05d430ffae0ee69a082ad4d4c468879a85031ba74d8fe822e991fd1aa6fb4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B31/sapmachine-jre-22-ea.31_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+30": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B30", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.30_aix-ppc64_bin.tar.gz", + "checksum": "325fc76a80c32bfd52da57da115322090fff6e563963ce59cfda1a7a852cccec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jdk-22-ea.30_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.30_linux-aarch64_bin.tar.gz", + "checksum": "32817dfa2a2da8351549b5996e94ad7624be73cf11d7633f1a0198385c9fdb45", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jdk-22-ea.30_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "cffd435e6898bdc39542b87ce9164b5989e7c4667e911d4ebeba80e7d1512ed0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jdk-22-ea.30_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.30_linux-x64_bin.tar.gz", + "checksum": "97212b98a581a5a1758225c8c2c46cc23f846a7724f2156db0fbd50764417ca4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jdk-22-ea.30_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.30_linux-x64-musl_bin.tar.gz", + "checksum": "8b9757c09880aeb17cd1a4d8b2b553368798ce1f2ad1bf1ef60b8684b65a2447", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jdk-22-ea.30_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.30_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jdk-22-ea.30_macos-aarch64_bin.dmg", + "checksum": "8554a5c489cf28888d5ff0a76f52fb8d64ade8d71dc20ba693bd31c78eed14a8" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.30_macos-aarch64_bin.tar.gz", + "checksum": "65b28f6d5832e1220db58345b420aac85c9fbed7eba6fd513874fc3ccbd80b65", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jdk-22-ea.30_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.30_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jdk-22-ea.30_macos-x64_bin.dmg", + "checksum": "bc0a6693439c027a238cb07c8fa41fbf2b8f7645221c456ccb9ec15eefb4ee2f" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.30_macos-x64_bin.tar.gz", + "checksum": "e8755945a847cca833c8e3a65b247037e940118b3cc3a6f51b98e98395843be4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jdk-22-ea.30_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.30_windows-x64_bin.zip", + "checksum": "62cfd3d1ce779c5093bb003785e11232e6a7e709114817cb8c9f628fd85b1331", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jdk-22-ea.30_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.30_aix-ppc64_bin.tar.gz", + "checksum": "afb0b251ef07f7897f11f9bd42f82eb20a15c1194502d360d312e90eeab20bc2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jre-22-ea.30_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.30_linux-aarch64_bin.tar.gz", + "checksum": "ca0ed66d15ee3163d6b593d27d3b17c55c2722a0b74e2ef75c78fc778192d076", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jre-22-ea.30_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "642beda15ed05a0250dce6af54b2631d737c2a732ea0c5c4ea7e7c5175b9b029", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jre-22-ea.30_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.30_linux-x64_bin.tar.gz", + "checksum": "f3b207f6faf47926d9002c4eaab0d904f638076495c13e873b59c5616d82cf5f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jre-22-ea.30_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.30_linux-x64-musl_bin.tar.gz", + "checksum": "1ae9554b52a30a23b4ad1b96555c9eedda76999aed6bc2a4d1eb32a3fa0adfc0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jre-22-ea.30_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.30_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jre-22-ea.30_macos-aarch64_bin.dmg", + "checksum": "22a7bed14c408aef95d9e0108d00aa2c19435e7d49b80884a83b77d11772aa8d" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.30_macos-aarch64_bin.tar.gz", + "checksum": "177773e1e0e9b0ec2acd84b01a9e1be7bc80b70e7d7dd77c10a75a17f2bbab29", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jre-22-ea.30_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.30_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jre-22-ea.30_macos-x64_bin.dmg", + "checksum": "f446067f83b5db37d5881b8dbd7694c1ba163fcbd3550673097080e0dcbcfb38" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.30_macos-x64_bin.tar.gz", + "checksum": "70e55d227dee79cd800eb1fa36f52e931c12cfd7d38cecd132d2885f64cd9b3a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jre-22-ea.30_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.30_windows-x64_bin.zip", + "checksum": "dc13167c3fa853fb0c3ffb2a633359284aa6a791d0474663760344cb7b6ef96b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B30/sapmachine-jre-22-ea.30_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+29": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B29", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.29_aix-ppc64_bin.tar.gz", + "checksum": "945d4d17238b9829334545448cce166789f3819e673d3739e3ea467e7196b662", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jdk-22-ea.29_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.29_linux-aarch64_bin.tar.gz", + "checksum": "724b966eef0964b768bebdda7ee22dfa3f20981f3d2eb7bae3765db551b1c330", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jdk-22-ea.29_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "4c4718dc86e6157b32ec1bd23cbe3bfe60a09f296518a6eea5480793e663f243", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jdk-22-ea.29_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.29_linux-x64_bin.tar.gz", + "checksum": "96ef503c35a5c172dbee177c98d955e7510de115cc37c4ed073592e5a3e52b45", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jdk-22-ea.29_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.29_linux-x64-musl_bin.tar.gz", + "checksum": "183434c5654a3cd531d355ea2142e241b51182c9a4ffbf74115d460d0423d026", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jdk-22-ea.29_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.29_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jdk-22-ea.29_macos-aarch64_bin.dmg", + "checksum": "2ab2a563628cfb1077f4d5c6031bda844a46c4759e1d9c5b4e4c89326ebbf03b" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.29_macos-aarch64_bin.tar.gz", + "checksum": "f22a5ab6e4d6859db6f9e7487410a5ec2962f9aa7488dc5d3a7a59521e287a24", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jdk-22-ea.29_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.29_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jdk-22-ea.29_macos-x64_bin.dmg", + "checksum": "a394b6be946439f2fb6501a800947918ad64bc37be828c41d6f6d4d0f1ab1afc" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.29_macos-x64_bin.tar.gz", + "checksum": "4238dcafc11c8a5a70a31d22dfbade99e7fce36c29c129b17cbcc5ada6071407", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jdk-22-ea.29_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.29_windows-x64_bin.zip", + "checksum": "180846b4a3227bdac8c65e13365ce01779e4acfb9d843c2240cd1a07434c0148", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jdk-22-ea.29_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.29_aix-ppc64_bin.tar.gz", + "checksum": "906b02c1280b7d1c9b3fb9bc7f3b18c2812eb21aa7e813a0c241f83fef2e4f98", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jre-22-ea.29_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.29_linux-aarch64_bin.tar.gz", + "checksum": "9b79ce6f96ea98bca69ad4b7959d4a79fde3f3d5c997f15a3efc11f07d06210d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jre-22-ea.29_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "4dbfd175e4f58f12a9a10b100ea5d6154aa318947f3fba836fed3e024680182b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jre-22-ea.29_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.29_linux-x64_bin.tar.gz", + "checksum": "12252e3a89642fe73dd5a483eec59a2b2589dfa081692998ae6b46080ce9541c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jre-22-ea.29_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.29_linux-x64-musl_bin.tar.gz", + "checksum": "d34c887660daacb5ae383daff94889511df06eabe7cfbc08bd4a256690361fa6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jre-22-ea.29_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.29_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jre-22-ea.29_macos-aarch64_bin.dmg", + "checksum": "9c601d61525a8fbb1f78120175a842975c13b161feb02f555e33677bd3e9d8f4" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.29_macos-aarch64_bin.tar.gz", + "checksum": "8a4c193c5d88eeec94e5825cc4c3b529bfa5657ae78dbe77650090429cec8d77", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jre-22-ea.29_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.29_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jre-22-ea.29_macos-x64_bin.dmg", + "checksum": "6f2d67b85dae7ba87689d7405a86b5d2c098ccdda8dbc868031fa199fa066691" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.29_macos-x64_bin.tar.gz", + "checksum": "8651b3c570672b521680f5b532ba21f1a12782de66816ff43d7fd15e05c1ccb6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jre-22-ea.29_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.29_windows-x64_bin.zip", + "checksum": "360c9a0684c01b8ee0fcaaf0dc583f287ade24db5084d98ebda2307ce6c4411f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B29/sapmachine-jre-22-ea.29_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+28": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B28", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.28_aix-ppc64_bin.tar.gz", + "checksum": "f716fed8bf22d99c4b301f5388f168c38385ca541e7c3a8f94aa676b0d8760e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jdk-22-ea.28_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.28_linux-aarch64_bin.tar.gz", + "checksum": "9131fa0dfa46e9882114efcd8eb524c39a20f45e62e94f84ba9a5236d3dbcb24", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jdk-22-ea.28_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "cd09f21c12ba0d865da30704bd1d1849a88de2f28e0f487ea05f6201f6d22e1a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jdk-22-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.28_linux-x64_bin.tar.gz", + "checksum": "30d5baeda15751235fc1d26ae60aacc1f46268e778af194c6d8431ca2f7ca353", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jdk-22-ea.28_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.28_linux-x64-musl_bin.tar.gz", + "checksum": "92d7120cb887012685c739675373d9c481b0eb9c86fbe1a68116803784319f8c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jdk-22-ea.28_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.28_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jdk-22-ea.28_macos-aarch64_bin.dmg", + "checksum": "bbf9ec548a0555f118faaaa417df454e3354fd6469d637a2aa4dc2792f0cb23e" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.28_macos-aarch64_bin.tar.gz", + "checksum": "7ffc47e2ffb7d20c585721e1d4a8f8de9426e1ec2351659a2af2118f4178957e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jdk-22-ea.28_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.28_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jdk-22-ea.28_macos-x64_bin.dmg", + "checksum": "3f95f5f77886125b2747a8ee91bca0c02f9579a4fa1557906ccb32a51df3882f" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.28_macos-x64_bin.tar.gz", + "checksum": "3880a8b870ec198120122a2c69f893ce028e57f179d378353e5eaaa74465f2f9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jdk-22-ea.28_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.28_windows-x64_bin.zip", + "checksum": "8dce4931e8b72aac94ae536a4180805c6eb4eca7722041845bf54b87b3812f82", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jdk-22-ea.28_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.28_aix-ppc64_bin.tar.gz", + "checksum": "b1d253a82902865de20634414b33616e866c8bbd89a9acc4b3292a4e2c4d6fca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jre-22-ea.28_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.28_linux-aarch64_bin.tar.gz", + "checksum": "afa925aa22723953b7d2916e51f07b432f45c0a1201be34bdc384468bbb64efd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jre-22-ea.28_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "07eccd6c8a3dd9ec12191c8d8f85fdaa85ea540fd3619775cf2596b5f20c397f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jre-22-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.28_linux-x64_bin.tar.gz", + "checksum": "9f9f3839c7acd92a698d612fad73d289617dc68edc2ac4c14a796baf14a6de63", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jre-22-ea.28_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.28_linux-x64-musl_bin.tar.gz", + "checksum": "d27dcf520bc3c6feb41b8c73d10f4bba7f409f28f14f68d045f1a30ff22f107e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jre-22-ea.28_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.28_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jre-22-ea.28_macos-aarch64_bin.dmg", + "checksum": "a06306368404f0786a51689d96eef1940572cb8e19237e107082aa86ef4fe662" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.28_macos-aarch64_bin.tar.gz", + "checksum": "4bf1b3c4d1426471f06f02d78e546f2ee7ae1c089c4695cfeeb34c2fb92cabc7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jre-22-ea.28_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.28_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jre-22-ea.28_macos-x64_bin.dmg", + "checksum": "b47ecd911df536eda53604f65dd0e36ef4fac966c8fb0824ad5f0ed7e25e8f79" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.28_macos-x64_bin.tar.gz", + "checksum": "e943902207afadb3b6522032265d82de5f42ad88a15e4a738c4329fa689196ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jre-22-ea.28_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.28_windows-x64_bin.zip", + "checksum": "ad5486075809e49e4879dc65252b3e50a7384ba122c5138074cddd0329793660", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B28/sapmachine-jre-22-ea.28_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+27": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B27", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.27_aix-ppc64_bin.tar.gz", + "checksum": "4f621553e523eaa64d2e556364f0999e8b07e622f9f7c3beba0e2ef4ab5f24ff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jdk-22-ea.27_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.27_linux-aarch64_bin.tar.gz", + "checksum": "635fec486776bcf50bdd419d7639ef63a7d980eb9d9d6ce249ea47da3e117a17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jdk-22-ea.27_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "fd94e08abace7cf24666e3ed77f1fd37b3420b4ea7e32daededadd6edb182800", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jdk-22-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.27_linux-x64_bin.tar.gz", + "checksum": "b1174f10a1a731ca87e533a3612eb209c2200aa5779068807122f55ba61eee9c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jdk-22-ea.27_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.27_linux-x64-musl_bin.tar.gz", + "checksum": "df3a33e30e38178f70cf37d1d945641b85fcbdfb0e6e069b34d959de579e070b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jdk-22-ea.27_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.27_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jdk-22-ea.27_macos-aarch64_bin.dmg", + "checksum": "1bc5d196993db3fdf8a67729ca717e572481da05d7738cd0b18b571aaae76568" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.27_macos-aarch64_bin.tar.gz", + "checksum": "edddb3a7f09e6f046abc8fa6836e818db175dcbedef7638a3cee8d23165f5af1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jdk-22-ea.27_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.27_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jdk-22-ea.27_macos-x64_bin.dmg", + "checksum": "07d7eb416fd2683826a903d3de7f368818845eb8f527617fd72606e4d5335cc7" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.27_macos-x64_bin.tar.gz", + "checksum": "8df754f235f227566d7694ecc07146ee90f5bedebb6c098b4bd7ed9353d5d389", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jdk-22-ea.27_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.27_windows-x64_bin.zip", + "checksum": "07dee677a5b0b8bb707c985558f0f6035c7ae01942377644353a48ed6cde7cd4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jdk-22-ea.27_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.27_aix-ppc64_bin.tar.gz", + "checksum": "e0f960be4751ce079f7f5c2e71182e05ec5f8c66c9e5084cc0961e60f8170356", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jre-22-ea.27_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.27_linux-aarch64_bin.tar.gz", + "checksum": "646dda087a35c48d912f215a0217089695501144407d0ec9fca8ca23ab3e2654", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jre-22-ea.27_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "ad674c39376acfe41e230c1bdf00305a9752be6209344100a86dea426a0758e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jre-22-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.27_linux-x64_bin.tar.gz", + "checksum": "74a94b4e5a0ef3ce724b9532e1470f98a0614afc04a7dc25f3526af10f537a6d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jre-22-ea.27_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.27_linux-x64-musl_bin.tar.gz", + "checksum": "6ec8174f71e586e3fb2436993a1146ea702b2d2fac6096631b6f57d8b8e8298f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jre-22-ea.27_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.27_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jre-22-ea.27_macos-aarch64_bin.dmg", + "checksum": "5b2a1819c85dbb585f3e7b8b951733e3d1f0eaaef6f985c34d160200df27ad37" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.27_macos-aarch64_bin.tar.gz", + "checksum": "85eed677e6485da8e2c1d87ca7c740f79101fd445fc67754687cd3ac8bc10f9d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jre-22-ea.27_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.27_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jre-22-ea.27_macos-x64_bin.dmg", + "checksum": "ccde4bcbcb958edf5cd1c56f247d0574be9b4a1a3672524f9401e4bc3766d42b" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.27_macos-x64_bin.tar.gz", + "checksum": "0cc1a9e064aec35479c4e484317da49b80f7b3972eb8b86587b3534f58d77599", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jre-22-ea.27_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.27_windows-x64_bin.zip", + "checksum": "1dd1b1ab046a7442006c4c7acb0dc18aab0868d21fc5908c04a656c142f08ffd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B27/sapmachine-jre-22-ea.27_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+26": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B26", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-eabeta.26_aix-ppc64_bin.tar.gz", + "checksum": "9fd127de8e65063221ace7d28fa02979a295077dd13b0f4a49b6f513e11da8f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jdk-22-eabeta.26_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.26_linux-aarch64_bin.tar.gz", + "checksum": "b083d7cb9ea2cbfc99bf36550c348aa8f1b7d42f49e0afbd14558662c78f2af6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jdk-22-ea.26_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "0ed80a86caac3ca0a8818b45f9eed61428e71c7f2dbe79ed3962883ceb881dcd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jdk-22-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.26_linux-x64_bin.tar.gz", + "checksum": "27c66d88eac3bec00fbd8ce9f811d27becdea4bfbc8a6ce8f7ddec033aa2b2a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jdk-22-ea.26_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.26_linux-x64-musl_bin.tar.gz", + "checksum": "3aab45aa850621e8825fe5c067f24724e266d16acbf617317fb6756daed99ca2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jdk-22-ea.26_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.26_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jdk-22-ea.26_macos-aarch64_bin.dmg", + "checksum": "c3fb981268699d2f822ea8f01fd131f41106452de0dc1f42cbbd442a8b97daa6" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.26_macos-aarch64_bin.tar.gz", + "checksum": "4a8724ad217be1897709b61fbd7c8c06f14ffa2d12420b97533d3cb16e608c41", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jdk-22-ea.26_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.26_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jdk-22-ea.26_macos-x64_bin.dmg", + "checksum": "ab250316500ee463340636696a126039f162d6922e7531a60399dc29a7ff912e" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.26_macos-x64_bin.tar.gz", + "checksum": "d099d68e34d4cdc6a418798f3ca60107d4d3efbc41c45c7a8d5fa31388ce8c13", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jdk-22-ea.26_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.26_windows-x64_bin.zip", + "checksum": "33e6269a7b909df647ee18d4e1b0751ff5fc8bc5233858587acfc36941a502c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jdk-22-ea.26_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-eabeta.26_aix-ppc64_bin.tar.gz", + "checksum": "78dcd89568186941107cd26095f39d0c05575e762f5265298c82c9bef8dcc6a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jre-22-eabeta.26_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.26_linux-aarch64_bin.tar.gz", + "checksum": "2b4508e8195ff90d22d86df45460ca5772d846dc71ef8e678a816d3a878f1091", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jre-22-ea.26_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "5d654cc2831dab27b44ea2dbc0ab5ace2519337862f97c120453e71a67171501", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jre-22-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.26_linux-x64_bin.tar.gz", + "checksum": "9368f5dd81b4bc69053857242b717540d19310424d7df319bc364258497ebfea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jre-22-ea.26_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.26_linux-x64-musl_bin.tar.gz", + "checksum": "3bb48922d75aa16c8ddcbdff00abb103b0ceac9ee58e6676a6e3481e1dafb36f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jre-22-ea.26_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.26_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jre-22-ea.26_macos-aarch64_bin.dmg", + "checksum": "fc274edd3f8d930d27bfa3b16cdc59554257a4a3433752b5c6c8f2a461cce561" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.26_macos-aarch64_bin.tar.gz", + "checksum": "b851a844df37a226e1e3247a857d6b7858d5fa1e03e334fcddc0caaf0625815f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jre-22-ea.26_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.26_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jre-22-ea.26_macos-x64_bin.dmg", + "checksum": "88a1ff52e0db03ea149dce7bbd62429009b0aeef68e618cf1cdc15dc58e966d2" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.26_macos-x64_bin.tar.gz", + "checksum": "f96ab6ad330ea71802400829854c2c73cd82060bce76396a5840d560abe948dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jre-22-ea.26_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.26_windows-x64_bin.zip", + "checksum": "db98ffa1c34a4efa5ccd11d57afd7da74e998d1ddfd54e7ed7c9a95f268af531", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B26/sapmachine-jre-22-ea.26_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+25": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B25", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-eabeta.25_aix-ppc64_bin.tar.gz", + "checksum": "3531db100e5349e517efc220998842511c7e90afe8d65e29898846a1fc1eeaf5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jdk-22-eabeta.25_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.25_linux-aarch64_bin.tar.gz", + "checksum": "ad02ca8ad3f240dede073a9b08c0cc8cdf3eaf17dcebbf75b53d5bedf8b6b136", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jdk-22-ea.25_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "d1e158d8852fa7679d962830e6ddcdd77e4cbb7fd5d10d4851d3440413764647", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jdk-22-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.25_linux-x64_bin.tar.gz", + "checksum": "8af9305984b3e9a6497b6482e5caf188664b6cd83f285690b5f3c58e9b73d8ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jdk-22-ea.25_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.25_linux-x64-musl_bin.tar.gz", + "checksum": "27ac5124bd7b0bf7508938bdf544e97ab82fcd0886453ed4a121efaf677fc4ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jdk-22-ea.25_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.25_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jdk-22-ea.25_macos-aarch64_bin.dmg", + "checksum": "e13c81306a5eef3a56e31097927988e13ab162fcb78969ee76c74d0a0bb6fd35" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.25_macos-aarch64_bin.tar.gz", + "checksum": "b2d29dd32f38a2c325bf46c3cad5f5cfdf65b12c073397ce5b98c7bc51fc46b6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jdk-22-ea.25_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.25_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jdk-22-ea.25_macos-x64_bin.dmg", + "checksum": "f698fb7859a3a855aafebaa3408139e3b1d7da1ff839333ed4a74c16c45a00fa" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.25_macos-x64_bin.tar.gz", + "checksum": "423845c1c7bdd5eca819c0279a71e404b22bb6cb6689712669312841486125ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jdk-22-ea.25_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.25_windows-x64_bin.zip", + "checksum": "0248970a6d0a03fa33277b492f4ea178f871eacf3bd1ee03c8d40673a7a1db1b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jdk-22-ea.25_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-eabeta.25_aix-ppc64_bin.tar.gz", + "checksum": "b51b4b9bd1bf7989db4b468e4524e6493d2f82f81c2aa2bd985d73bb543fc9e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jre-22-eabeta.25_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.25_linux-aarch64_bin.tar.gz", + "checksum": "8413d9e008fc4e4a3694f0ceaac4ea74638a9898e0fb7016a050d2d014e8df3c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jre-22-ea.25_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "57e44ee4cf3adc527e4d9a1c5e0e531f3e29cc8170d80b15b9d6d769f7f67787", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jre-22-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.25_linux-x64_bin.tar.gz", + "checksum": "a99f3c1104b604ff1358f5285c859b95f8c2478e829526a411299ef1b5efeee8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jre-22-ea.25_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.25_linux-x64-musl_bin.tar.gz", + "checksum": "006b22533e3b92a9037443ba8550043f8149505a0498e07b83e3b00486fef7e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jre-22-ea.25_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.25_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jre-22-ea.25_macos-aarch64_bin.dmg", + "checksum": "e6b041fa8f028b3b98d0dfee81a2896106588536b38f7bcf67d0e034f610f9b0" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.25_macos-aarch64_bin.tar.gz", + "checksum": "bb482be5bcacef718c49ccc518bdf8afdedade637ae7b1ae4314b573082be69c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jre-22-ea.25_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.25_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jre-22-ea.25_macos-x64_bin.dmg", + "checksum": "075767e2a87a8494cf17d48ba2e03459bd54dfa321061816dc2dd6d182d1b76a" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.25_macos-x64_bin.tar.gz", + "checksum": "d656f497f41a3c2b8c2c1ac14f204298922a07bea435264e2b0629961d65ca60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jre-22-ea.25_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.25_windows-x64_bin.zip", + "checksum": "80a87ca766964ea9cb9b97bfe822d9a1140d9bb428635edfa745908f7be1f861", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B25/sapmachine-jre-22-ea.25_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+24": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B24", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-eabeta.24_aix-ppc64_bin.tar.gz", + "checksum": "d57b33912635d88ec5e3c4193a14fdb5a965474328c44f28db0cc0eb4b018b16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jdk-22-eabeta.24_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.24_linux-aarch64_bin.tar.gz", + "checksum": "74b94c5ce061fccc32d63e911dba812f69d631a68c7753af5b27511e00540b73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jdk-22-ea.24_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "914f16c28b653e22d09eb57e8a01b9e87dcc5621d45e7c9d5399256dbca88d0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jdk-22-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.24_linux-x64_bin.tar.gz", + "checksum": "bd8d904a73bd2f32b8de2e395379f8ccb5672852eec123310f25e4d6166a3563", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jdk-22-ea.24_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.24_linux-x64-musl_bin.tar.gz", + "checksum": "54b44a5a353c7cf840828b55f3cc217b643eacbcc995b08a7e9f82e0f64b38c2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jdk-22-ea.24_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.24_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jdk-22-ea.24_macos-aarch64_bin.dmg", + "checksum": "d393b268dc529c2efa88adebc970c8a3c6ca53f5c454d1888f5d76877edff679" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.24_macos-aarch64_bin.tar.gz", + "checksum": "17f353a26f646d7aa0ddf409d442948510982c164c27f36c6512ffd3c18cc4be", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jdk-22-ea.24_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.24_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jdk-22-ea.24_macos-x64_bin.dmg", + "checksum": "b6f61d7d74ced6823b15289bc524aaf94a19a8c87a6a4ec261d6598593264197" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.24_macos-x64_bin.tar.gz", + "checksum": "cf5425987323f095bb19bcd3f7d61cd8a73078a530056ddc1a23234f3a65b93c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jdk-22-ea.24_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.24_windows-x64_bin.zip", + "checksum": "53c9e283a048f9394bdc63e292cad9881bb4d3d74395b7c41ad5a0524b009c85", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jdk-22-ea.24_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-eabeta.24_aix-ppc64_bin.tar.gz", + "checksum": "1eb466b7ac0b43dd97b009d78249bf5e2771deb6bd8e827a7ba97621b02cf8d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jre-22-eabeta.24_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.24_linux-aarch64_bin.tar.gz", + "checksum": "30e8770117544040ba8a8703b4414a2824f3be7512a1f8a6257a7cba15176ed4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jre-22-ea.24_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "0a2701828b8da330d95de88a751e773951dccedb848a1680147260d52121a9e3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jre-22-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.24_linux-x64_bin.tar.gz", + "checksum": "80c6913670397868c3993596e590b50fd6248e0b5b63c520bbfb5e3d1b5bb648", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jre-22-ea.24_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.24_linux-x64-musl_bin.tar.gz", + "checksum": "3fe4c60b58e309c1f9a548f9e0adf6f0e018002ff9edf61187b05c7812240ee7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jre-22-ea.24_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.24_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jre-22-ea.24_macos-aarch64_bin.dmg", + "checksum": "d6fe8d63be54a89ff17cbbfe1cd8cac425bdc62b0f55921d4819d899da42843f" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.24_macos-aarch64_bin.tar.gz", + "checksum": "ee816b2360e617e4c3260694462a6680b12ad52ef450da7aae18cdebe8c1b525", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jre-22-ea.24_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.24_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jre-22-ea.24_macos-x64_bin.dmg", + "checksum": "d94c4a64ce5711b2bb1446ef3c9b230fa8db9593dd6d1ce3dd7c1e3b41082cb2" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.24_macos-x64_bin.tar.gz", + "checksum": "e9e0e64b53d87c90c26a954eecb1ea453c4ea3267e5aa4ee38e56b1dfab1a0e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jre-22-ea.24_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.24_windows-x64_bin.zip", + "checksum": "a74e50c1a67ae0325358aa1c46e2b0890d8c159a23cf485bf39f45d1af638d36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B24/sapmachine-jre-22-ea.24_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+23": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B23", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-eabeta.23_aix-ppc64_bin.tar.gz", + "checksum": "47c5818a1933f2f0253498c8c8a8344e81dee54ac07f5431c64ddcf0d8471227", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jdk-22-eabeta.23_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.23_linux-aarch64_bin.tar.gz", + "checksum": "1095743995d04a0548c15adf193ca7bd4f34737f94f7daf57da9bef7285f8aed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jdk-22-ea.23_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "472fe711c5a1871a8d83a76f9f8ca4f6c2c7e50c86500b03ee611a5eb44737cb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jdk-22-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.23_linux-x64_bin.tar.gz", + "checksum": "e59d4f3e6112706887d7d99c8bf134594f329157d13473341a81ef84164da7b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jdk-22-ea.23_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.23_linux-x64-musl_bin.tar.gz", + "checksum": "8eb710547837f03de59275539c2644af1516ab7aaa9c2271edf12512c7b3c291", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jdk-22-ea.23_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.23_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jdk-22-ea.23_macos-aarch64_bin.dmg", + "checksum": "6d1db3ba413630863af85aa4fcf0504ff2acc5b8c2efb06611303347c4fad3c4" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.23_macos-aarch64_bin.tar.gz", + "checksum": "6afed2d1b09c8324e416a865018c17b3ee250cae1820820187d309a812ca4a44", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jdk-22-ea.23_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.23_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jdk-22-ea.23_macos-x64_bin.dmg", + "checksum": "564db86ff5a0afc91820d1a5b48a0ff8ed216432f747d367fa8b642cf129c880" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.23_macos-x64_bin.tar.gz", + "checksum": "5e11ad1167ce722ecf059505c34df47b18552d6a40976f24786f2c8826847867", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jdk-22-ea.23_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.23_windows-x64_bin.zip", + "checksum": "0a16d25d05aa3bfc48589e9bda20cb0065d7a8392b63ea31d12359fed6a0267e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jdk-22-ea.23_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-eabeta.23_aix-ppc64_bin.tar.gz", + "checksum": "b0cb214adfdcdd2c816c71ba928ee16ef318b6fdf74fb15a4ef90ac5802229aa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jre-22-eabeta.23_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.23_linux-aarch64_bin.tar.gz", + "checksum": "18a55e61d567b0ba6a8d6012a788ded04904b0d6f691b37ee8f5d8249bc0c7d8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jre-22-ea.23_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "471de18545f35663bfa2a492335432f0fefeab677e17f2236120b830e66452d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jre-22-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.23_linux-x64_bin.tar.gz", + "checksum": "1cd2e4670dbf68ee31a260a9607834b1f5ae94d3181ecbe037884a8fead020e3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jre-22-ea.23_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.23_linux-x64-musl_bin.tar.gz", + "checksum": "4f29879cf07da89984f0ad060d471aa78eac4073e4ef1c5869887a0dc7fbe21e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jre-22-ea.23_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.23_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jre-22-ea.23_macos-aarch64_bin.dmg", + "checksum": "77075e663d73762217a4ba7a088832cb7d260a3e2993d11c92e6f5cb1342ee45" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.23_macos-aarch64_bin.tar.gz", + "checksum": "354ece969a23252cb75cbe75d637ec19517bd475f009093be358446dee533603", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jre-22-ea.23_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.23_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jre-22-ea.23_macos-x64_bin.dmg", + "checksum": "37e97a2f81088053e00a17b453b00154cb1631171fb7cbfa3cbbea85e453d52a" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.23_macos-x64_bin.tar.gz", + "checksum": "5ec6ecf9b0b99286e4a4d7e492472fb348170274f2b9f81b2f81e6d83506b665", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jre-22-ea.23_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.23_windows-x64_bin.zip", + "checksum": "776f97b2482493aa7d20f184b2b39303147cccc3a0f1fc065ffd68eca6a7870a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B23/sapmachine-jre-22-ea.23_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+22": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B22", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-eabeta.22_aix-ppc64_bin.tar.gz", + "checksum": "a0ef937e65bb2a7ff5a45073b4228e24c1d329fbfe77a4f635d5cd93cd7ffcfd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jdk-22-eabeta.22_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.22_linux-aarch64_bin.tar.gz", + "checksum": "a7a3c63caf6599612932c0ed0bbcf80ec776e6aedf9a842fedc68267dbe57ca2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jdk-22-ea.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "e76c571b0f5338c8db5f8a03b8c96985cf690d7cbb1d6abf88c79c2b78dd6ca0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jdk-22-ea.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.22_linux-x64_bin.tar.gz", + "checksum": "1c40f0712248411eb3e4f51e2d951018e4c98cb218291229280faf5c7c4bcece", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jdk-22-ea.22_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.22_linux-x64-musl_bin.tar.gz", + "checksum": "661bde4f90d26b9ce1ba50f7cda94c941dec1041f1606da38865d496173eadbd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jdk-22-ea.22_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.22_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jdk-22-ea.22_macos-aarch64_bin.dmg", + "checksum": "5b2c9b8fd3898dcd3256cb00a8392070f8a769f7c6106f3dc33fe9f3743cd7e2" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.22_macos-aarch64_bin.tar.gz", + "checksum": "5ef9505e1f53cfaa436774aa1ea3b10a3d5c6b72aa2f17f5ce047f4978886c7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jdk-22-ea.22_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jdk-22-ea.22_macos-x64_bin.dmg", + "checksum": "54a2f72eb5a2e1a228096d5cffb4fad473eff5ff98078a0b08c5b880d925d979" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.22_macos-x64_bin.tar.gz", + "checksum": "ff95cde664e9857fdf2b2880e11c39bc2b523bbf98cc04b87628bc21755fb776", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jdk-22-ea.22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.22_windows-x64_bin.zip", + "checksum": "f138efc2fbfb63ec0286cedc20fb2b304318d5340984c7061da44f0af1230435", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jdk-22-ea.22_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-eabeta.22_aix-ppc64_bin.tar.gz", + "checksum": "c4656ea49a0e729a5e3d05338951381cb65af4bbe1896b041410e5cef09a29b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jre-22-eabeta.22_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.22_linux-aarch64_bin.tar.gz", + "checksum": "71a06644470d8842be668918e294f20fa857f3becaa16b767795ff55a19640a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jre-22-ea.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "cf4ff8dc8886cae4b83d60300e464a78c85900b12a694f4acb48a621ee0c5396", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jre-22-ea.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.22_linux-x64_bin.tar.gz", + "checksum": "ce1891ea8643a255f14332882d0b40133f5e7155e09dd8a8daab033c4608b9cb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jre-22-ea.22_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.22_linux-x64-musl_bin.tar.gz", + "checksum": "d26ddcbb1be4cb70a8ee7dcaa6a52e3307db8070101686a36ba0e7ef17bec532", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jre-22-ea.22_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.22_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jre-22-ea.22_macos-aarch64_bin.dmg", + "checksum": "a7e85e89695f1728281aaf4f51f222fa51c2a529cb34474587e5a6d4178d6d56" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.22_macos-aarch64_bin.tar.gz", + "checksum": "136f6311647bf3d1412d99cfe806f625387e0d3aad247e66c7db88afd94d74c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jre-22-ea.22_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jre-22-ea.22_macos-x64_bin.dmg", + "checksum": "48e6632487ff145f954b30622c0b2dba0eb49c4b8310eda2e4986cc1dc30ad8f" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.22_macos-x64_bin.tar.gz", + "checksum": "4c2bcbff5f61be71ac763c5ca678bf8cb10dfbacf73f008d076b3e037124b9e3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jre-22-ea.22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.22_windows-x64_bin.zip", + "checksum": "9551ba47a34253f948934b1250471d7d836e68fe5ce3a7be603f23ba5b01f74b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B22/sapmachine-jre-22-ea.22_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+21": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B21", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-eabeta.21_aix-ppc64_bin.tar.gz", + "checksum": "1eb63211fd0a00066d47e0b7aaa5afccb15e6c6cc968a225b7b90f3a096600cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jdk-22-eabeta.21_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.21_linux-aarch64_bin.tar.gz", + "checksum": "c6e9a16fdc49649399a818f88554f3c020ec9eedcea9124b85604b0bffb56369", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jdk-22-ea.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "ba2b01189a0bfdb412a6ff69097a119f717e2ac9dc7d5a1945172b31f8687406", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jdk-22-ea.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.21_linux-x64_bin.tar.gz", + "checksum": "132882018c47f1dd4b5237d9fc9743825c3de921abea5937c9ed74d6cbcd7654", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jdk-22-ea.21_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.21_linux-x64-musl_bin.tar.gz", + "checksum": "69597199dfc69d8f1705b5973138082910781a62490c35c2804bdb7eb6443d03", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jdk-22-ea.21_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.21_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jdk-22-ea.21_macos-aarch64_bin.dmg", + "checksum": "572f58e6bbb1d3057a53e6cbc0ad889cb2645edeef8d0556a3d8473303345ef4" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.21_macos-aarch64_bin.tar.gz", + "checksum": "89f1918c4c82c77962969a58fdd4264dde6023a584dbd7e80e5ea2face3061dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jdk-22-ea.21_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jdk-22-ea.21_macos-x64_bin.dmg", + "checksum": "e024245ba61775c60fc473be76a95928ee0f7f2edd1c410701ab3395a72fde56" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.21_macos-x64_bin.tar.gz", + "checksum": "98f0f611d915d0734f17ffd836eed365dcdaada7067efd319d63910ed78d65e7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jdk-22-ea.21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.21_windows-x64_bin.zip", + "checksum": "b89cb4a6bb18acf103dd8ea7f277c3982529fa53390611f91cc2128d44155d5e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jdk-22-ea.21_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-eabeta.21_aix-ppc64_bin.tar.gz", + "checksum": "28e0574b3b3302a3f5b6d91f4b1006172e376248d79d9c0ab8f6d84dc8fbcff9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jre-22-eabeta.21_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.21_linux-aarch64_bin.tar.gz", + "checksum": "10dc4a3fb241d6e8bcf375b043dca93a8fd106aa390437e2ad8c5948f38312d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jre-22-ea.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "879cf026ac0abdc7630790b73710f017879f66245d98632df88acdcd28df3249", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jre-22-ea.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.21_linux-x64_bin.tar.gz", + "checksum": "c032b59270fe01bb7ae75d2dfdd97930f8ef4f44c5421a49fcfaf7bc3397c459", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jre-22-ea.21_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.21_linux-x64-musl_bin.tar.gz", + "checksum": "fa64114176576dd7010a1aca4fb68c658d43b08b5afcf7e911b3d65ee008723f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jre-22-ea.21_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.21_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jre-22-ea.21_macos-aarch64_bin.dmg", + "checksum": "8d77b847d29a955dbee5f9920f4ebff0ee9c45707c9226e52f10717a5365b649" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.21_macos-aarch64_bin.tar.gz", + "checksum": "f7d851621456c79ad7e2dbc5e9dbaac62f3a5ceaa8db5ce255165676d1f54af8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jre-22-ea.21_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jre-22-ea.21_macos-x64_bin.dmg", + "checksum": "69990e7add54d21e9b2daa314987cec343c0a1ac5552ef71a7af0f558dd6d486" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.21_macos-x64_bin.tar.gz", + "checksum": "1a1e2a28350f514d271d7bc85293958154c07f21970a6d603b1eb1a363079328", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jre-22-ea.21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.21_windows-x64_bin.zip", + "checksum": "5d29c6bfb09e2faade3e24b6ae783d862b45ed63084fc80587090e6dc770db36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B21/sapmachine-jre-22-ea.21_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+20": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B20", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-eabeta.20_aix-ppc64_bin.tar.gz", + "checksum": "35b0d8a6eac1848dcad5792a3d00c9ec34a1f6d3c397fe0a3984e3852fe49d02", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jdk-22-eabeta.20_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.20_linux-aarch64_bin.tar.gz", + "checksum": "212a021e97f964e9e422dbe27521ee3413044848383e29af593e510704176414", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jdk-22-ea.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "fa25a660b93cf60ff87da0888b06c76261cc4a4f171d6f80e7e101957f297521", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jdk-22-ea.20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.20_linux-x64_bin.tar.gz", + "checksum": "605135326fab53edd6f4930ff18313f2dc5807e0427bc52b0ec5a7870136c109", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jdk-22-ea.20_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.20_linux-x64-musl_bin.tar.gz", + "checksum": "5a0dfb5c58af87a44f4bbb931bf99e6955b4c1e26368720e70bc49d01747543f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jdk-22-ea.20_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.20_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jdk-22-ea.20_macos-aarch64_bin.dmg", + "checksum": "0e61c34e18a91fb2b409c6ecdcd39cded8521acc4283970db5ef6fd3d95634a3" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.20_macos-aarch64_bin.tar.gz", + "checksum": "0ea1021d61a20737759d034a8e8aaf38866d6f100f202d8334b821e0b2957b2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jdk-22-ea.20_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.20_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jdk-22-ea.20_macos-x64_bin.dmg", + "checksum": "cfc710a698dc1270a62bf135dc24bf0940f09973d7ade3f599b04f31b0cf6ded" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.20_macos-x64_bin.tar.gz", + "checksum": "07e796bb659e84dd95b453388a6f0e7638874819ffd6bc94413ff36249bd54f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jdk-22-ea.20_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.20_windows-x64_bin.zip", + "checksum": "4006f90479c3f8dc68294c2a90d5d5749d3844bc79255d3b12ee2ebfc99071b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jdk-22-ea.20_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-eabeta.20_aix-ppc64_bin.tar.gz", + "checksum": "39e47290adbaf4b6542e1408a3a3f73baac26bb0902eb6ad851d6ac516256ddf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jre-22-eabeta.20_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.20_linux-aarch64_bin.tar.gz", + "checksum": "caff0f2912c3151c294b2da06beca05d12ee4c663b28619fbdbb738641d89d55", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jre-22-ea.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "92cede53ea52e625e14129a985df2e1b865a9c24f96006c72ae590fe67df42ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jre-22-ea.20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.20_linux-x64_bin.tar.gz", + "checksum": "d0e79939113186033e330a7ffc3de0b639844633336b83295dce178288cbfaed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jre-22-ea.20_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.20_linux-x64-musl_bin.tar.gz", + "checksum": "59489fc83e5fe2ab05535c9dc2068bc42faff6b6be0d0db73e4229f0493a8f90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jre-22-ea.20_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.20_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jre-22-ea.20_macos-aarch64_bin.dmg", + "checksum": "5410f48f03bbf96ff215cbc686895f6da0112b2a0cbcd1a83f51bfcd83daf6ab" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.20_macos-aarch64_bin.tar.gz", + "checksum": "d194fa46f362d801f262707d6852a9bf8ebf05be22adadbd89e75f6a72f9ff23", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jre-22-ea.20_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.20_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jre-22-ea.20_macos-x64_bin.dmg", + "checksum": "fe226ade3843b447c083895351042cb82f07455a652611fc3187411a3e20e64f" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.20_macos-x64_bin.tar.gz", + "checksum": "8cfb8b3661bc85ba965ea62a7c73b892788253ba94ea0f8187d70eadff23a3f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jre-22-ea.20_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.20_windows-x64_bin.zip", + "checksum": "c494200fd5407bc6665f336e99f75c9ad06e60c17c0a35534f5412c7f952d3c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B20/sapmachine-jre-22-ea.20_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+19": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B19", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-eabeta.19_aix-ppc64_bin.tar.gz", + "checksum": "b46697dcbc7c4c60992576ebb2e9668e0850ba5b8d4ed3bffc40a5ce5632207c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jdk-22-eabeta.19_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.19_linux-aarch64_bin.tar.gz", + "checksum": "fa186478d7f8ef7972451377409c75a33896fd28663cfb51bc40afc382746835", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jdk-22-ea.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "b939129fa19b5a90399097201bf6219fa769c649acb99c640adec44253625bd1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jdk-22-ea.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.19_linux-x64_bin.tar.gz", + "checksum": "c376ad5575c9536818b404c067b4424a96bc90027326b5cc2f0c0526cd58c572", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jdk-22-ea.19_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.19_linux-x64-musl_bin.tar.gz", + "checksum": "42dc216062746d7e04a482acf965423f0b2afbdd72a99fdcd3235d276a41579f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jdk-22-ea.19_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.19_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jdk-22-ea.19_macos-aarch64_bin.dmg", + "checksum": "6e5b684ae30517b83a8e6c50d20b20548d56926c40f8cd116b83cc3f40907093" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.19_macos-aarch64_bin.tar.gz", + "checksum": "bbc9300ae986605ce5643f50b83feec47c583c320eb8a6571da019376db9ad60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jdk-22-ea.19_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.19_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jdk-22-ea.19_macos-x64_bin.dmg", + "checksum": "5dc9a15bb22bb5f05154d27e7b7d316df0059c01e3223fb51957dcaff85bdb96" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.19_macos-x64_bin.tar.gz", + "checksum": "de270a104f100c48afb3209b237a6c7d1b54afc8492b43885fcaad4169cc15e7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jdk-22-ea.19_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.19_windows-x64_bin.zip", + "checksum": "4e5cf83365884d32adf4d76ef4da113e14340441a3f700eb3f7f8f7ae804f8a5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jdk-22-ea.19_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-eabeta.19_aix-ppc64_bin.tar.gz", + "checksum": "b173df1e62b9d7aabbc205f3a5bde73fb1530d2ed7c422e65b1122d542bf4f31", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jre-22-eabeta.19_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.19_linux-aarch64_bin.tar.gz", + "checksum": "86786c958c9b74233acaefdca5c1ac1751b968912b9886e641fbc9bf94929522", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jre-22-ea.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "b51034992ccd63e6e2072a727c03ad44f57a8f63cf4b8eb96911a3223032e83a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jre-22-ea.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.19_linux-x64_bin.tar.gz", + "checksum": "14c9c388dc40bd2ab0b9469c482828692d04c095d0591f4a39e74c85eae010f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jre-22-ea.19_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.19_linux-x64-musl_bin.tar.gz", + "checksum": "60d7929b60e7493358080892dd3757ff2e488e07c1e9f66c7f5075e030e879b0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jre-22-ea.19_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.19_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jre-22-ea.19_macos-aarch64_bin.dmg", + "checksum": "e5c51d4d545131e74bf9345bb15787ee7ddc4e342d4e1de85ba4ec89f0113a34" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.19_macos-aarch64_bin.tar.gz", + "checksum": "80928370936eb1441b88de1c760bdb254efaad8f8febeedbaf79d0b981c80cce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jre-22-ea.19_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.19_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jre-22-ea.19_macos-x64_bin.dmg", + "checksum": "8f5b025c8537c7d19b5dce256446887c9b8eaffa061a3401209eb72badced801" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.19_macos-x64_bin.tar.gz", + "checksum": "5fe6fedf2d19bc2ac43e58c453ac736320d669e3ff6c3a5d854f996f2b19a1dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jre-22-ea.19_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.19_windows-x64_bin.zip", + "checksum": "0d0e92ea797554578f771e5b12a2d1d3b03029fcadb2b171fba2d756d3a43bd1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B19/sapmachine-jre-22-ea.19_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+18": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B18", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-eabeta.18_aix-ppc64_bin.tar.gz", + "checksum": "9c9bf5950c49696cd36b6ca743fd67ea965542c973c410438d57169247c03dbb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jdk-22-eabeta.18_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.18_linux-aarch64_bin.tar.gz", + "checksum": "57b473afb2796173ff6a269eeb7293ce47a331e2851b61446f5c688bd9ae9079", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jdk-22-ea.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "4b0f2d3537575f517a203a121af306dbc179c0146d497fe91c4dcabcfeb9a8ca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jdk-22-ea.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.18_linux-x64_bin.tar.gz", + "checksum": "fd281ddfbedaf02e14dcdc682b1c0fb108b269e7fdb3ad184efe4ec3e0058bd7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jdk-22-ea.18_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.18_linux-x64-musl_bin.tar.gz", + "checksum": "03dbea5938e37316066574eeeda489b20a2b44271a06dab57617eff30df42110", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jdk-22-ea.18_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.18_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jdk-22-ea.18_macos-aarch64_bin.dmg", + "checksum": "d26e4b0e9a0183c35ee6e351e0c51f008c7dc5d0e57c79cf0ae058ed2481313f" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.18_macos-aarch64_bin.tar.gz", + "checksum": "e2621f6e68d59df073818eb05973a6fa04c407114b46586aec7347bcbacba5b0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jdk-22-ea.18_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.18_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jdk-22-ea.18_macos-x64_bin.dmg", + "checksum": "1ab625a755e8a1ebb96bfdbebf1a2eab517cc11c83405ca25138559f803aa66b" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.18_macos-x64_bin.tar.gz", + "checksum": "f363534d9d95f5b994c8a1406c995c6896a2ae8e897cadf2f7ce29c89c5d101b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jdk-22-ea.18_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.18_windows-x64_bin.zip", + "checksum": "5007876f03ed5b05edd16f904e1b6b5f136d8a46a3bae33df04c99320dddde26", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jdk-22-ea.18_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-eabeta.18_aix-ppc64_bin.tar.gz", + "checksum": "b4842afe1c6490111e09be4669129d71ec760faf85d31686411c86f9e39f39a7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jre-22-eabeta.18_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.18_linux-aarch64_bin.tar.gz", + "checksum": "5ee09c05bae8a9e703ef2bed4717ad52c379e118dbfb3b7c87f564f6ac63a5a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jre-22-ea.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "5e4c37e0162b72a89fdf5d754348e1385d9363bc0d1b7d261f11841da7730d68", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jre-22-ea.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.18_linux-x64_bin.tar.gz", + "checksum": "873ead9aa5927babc68e49f07a25d417d7eb78d343806a4ae4d7968470fdb379", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jre-22-ea.18_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.18_linux-x64-musl_bin.tar.gz", + "checksum": "bacf04e704f8da002912284352202a9da7d7756c9a6744c13e5a8987448b608c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jre-22-ea.18_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.18_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jre-22-ea.18_macos-aarch64_bin.dmg", + "checksum": "7667d20b1e847a50c7f4a16b6bc9e2db2c690872a323ea6c95de2963e2d28797" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.18_macos-aarch64_bin.tar.gz", + "checksum": "911cd5b84ad756acd983c24cf3e89dc9328637f40dc88abca107f8e493823eac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jre-22-ea.18_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.18_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jre-22-ea.18_macos-x64_bin.dmg", + "checksum": "12ffcc2b07b5bad39478a69998930ed85c827f39acfbcc5c454523dc47fb9b51" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.18_macos-x64_bin.tar.gz", + "checksum": "3c9d192c879f73b3ff484080d03e75fec96e6a7410975bfcdd63c56a2c2300d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jre-22-ea.18_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.18_windows-x64_bin.zip", + "checksum": "9132f4001b3e13726228f168430950ba240247685bc611929fc4238870f70d72", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B18/sapmachine-jre-22-ea.18_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+17": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B17", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-eabeta.17_aix-ppc64_bin.tar.gz", + "checksum": "f1e2166421446cc3d314e0b66b673af3516abd106b5334376bce5e62036214a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jdk-22-eabeta.17_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.17_linux-aarch64_bin.tar.gz", + "checksum": "5a4ea92487a461d1fb04064a85d4cf8f9a75aba960f67e159382d0dca24a8a53", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jdk-22-ea.17_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "536167d4182ddfd171cf1c4c6a0faac1514c0d5db3a3c615994bbfaf0ce3b3d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jdk-22-ea.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.17_linux-x64_bin.tar.gz", + "checksum": "733f734767b9b8314281938486b05df1077365a9a2f515f831e4988258a6209e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jdk-22-ea.17_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.17_linux-x64-musl_bin.tar.gz", + "checksum": "cf1c069f51fee51b21188b7f72c126923d640bf27c13945d60db05b3bcb77332", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jdk-22-ea.17_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.17_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jdk-22-ea.17_macos-aarch64_bin.dmg", + "checksum": "04b991725bd81f670dbbbf1201bf6a926b3e53c6d2a1ebe5dcd546a790e3a92c" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.17_macos-aarch64_bin.tar.gz", + "checksum": "b4d627fadd227ab54ca3d945d20989094f93453e94a2d092b1643188ffc4bbd9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jdk-22-ea.17_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.17_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jdk-22-ea.17_macos-x64_bin.dmg", + "checksum": "09027e8def7b9200efc0c737bf423030619d7f577b6e3234deec3bac0703d5cc" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.17_macos-x64_bin.tar.gz", + "checksum": "b32245e8c0a6524baf1594bf3617d2880424fd82be7756ffb4782f89a2373d01", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jdk-22-ea.17_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.17_windows-x64_bin.zip", + "checksum": "0226c7e44ec2ad3724e2ab294bfc423dd3e3b4f6201b43283bfc47d8f6354dc6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jdk-22-ea.17_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-eabeta.17_aix-ppc64_bin.tar.gz", + "checksum": "1a76843b6837af91c4a6092b9c7fab120d89e64b0f37700b8b3242d89ac4fee0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jre-22-eabeta.17_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.17_linux-aarch64_bin.tar.gz", + "checksum": "1bc995ade5afb5c94d7729b0b1302db90578f38dcde0941aefd4b27d6683670c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jre-22-ea.17_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "b10bc69a74300ee8d704b8066772e04613c81211e5faf09af02e332028b73190", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jre-22-ea.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.17_linux-x64_bin.tar.gz", + "checksum": "fbe7a0aa6f01d0a603e0c9b4ccbb9d6a25df1d892d3e7cf67b6f9e8fae7c88f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jre-22-ea.17_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.17_linux-x64-musl_bin.tar.gz", + "checksum": "b757da228632b68b2ff17c18ec1560e733840b23cf9b17d1fc9910c8abe1f863", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jre-22-ea.17_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.17_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jre-22-ea.17_macos-aarch64_bin.dmg", + "checksum": "2368ac0d1f6fef28113a3f07fd2afbc9bc3db31207e8be671fa0084a3a79d763" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.17_macos-aarch64_bin.tar.gz", + "checksum": "d218b10886f1507c90a878092afc898c44e12beaeba583e2c90085345079b372", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jre-22-ea.17_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.17_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jre-22-ea.17_macos-x64_bin.dmg", + "checksum": "9b103f2265dcc6fa7f38122fb4be2280d909f805f9683f66cb33d4412effeae7" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.17_macos-x64_bin.tar.gz", + "checksum": "b53c3175357f67ae8f7a31df10889452666fa6103427e01f0febc08876a80056", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jre-22-ea.17_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.17_windows-x64_bin.zip", + "checksum": "6a48beed4014187608b13defe6b78dfbe97522552892514fcda54a44605e19ca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B17/sapmachine-jre-22-ea.17_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+16": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B16", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-22-eabeta.16_aix-ppc64_bin.tar.gz", + "checksum": "c5710e1e6ead573218c37b51fdcc23f31c539bd871e0be9b128978ea9dc23d17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jdk-22-eabeta.16_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.16_linux-aarch64_bin.tar.gz", + "checksum": "4e0ff56046d88a1848d676b61d90f7e32daced2995358153a316614f38f2e7b0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jdk-22-ea.16_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "8737b03a0f1ca9d92b56d62f82f326f924ce925c7299187c0f50fa74cce64c4b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jdk-22-ea.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.16_linux-x64_bin.tar.gz", + "checksum": "6d125285dc9310d459acde6c2d5e79ddd380f9715559839f2819858748eb1e3f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jdk-22-ea.16_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.16_linux-x64-musl_bin.tar.gz", + "checksum": "7056463387d8109d88c05de597268c0781d30b07031ccf24fc236c0ffa6ad9e1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jdk-22-ea.16_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.16_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jdk-22-ea.16_macos-aarch64_bin.dmg", + "checksum": "1955a27eb81a7db71c71fa8ba1810cce5eeec1a24c3e59c68fcffa4e1f811c2e" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.16_macos-aarch64_bin.tar.gz", + "checksum": "1d5995dcd4cd7bb7aca4029b49f4f25b1f8fb3494551c53592728a02ecd78c53", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jdk-22-ea.16_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.16_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jdk-22-ea.16_macos-x64_bin.dmg", + "checksum": "407cc45b47e844a0dcacc48dda92d769b764dc7d9ba74093f020dae5c8e7db56" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.16_macos-x64_bin.tar.gz", + "checksum": "0173b0243e7f1881426134660df674c398ecc8313a44d40cc240dec2a69f31fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jdk-22-ea.16_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.16_windows-x64_bin.zip", + "checksum": "7a038d9329493d4f6f760eb542d4a9c0a31051e31b2876a5f9567ca4d1d24ee4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jdk-22-ea.16_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-22-eabeta.16_aix-ppc64_bin.tar.gz", + "checksum": "a529fa038a8952f650bc38280d0da0812bdd10f2b312c93fea44c44072e81b17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jre-22-eabeta.16_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.16_linux-aarch64_bin.tar.gz", + "checksum": "afdf25476fb02f8b6e546b6e0dff29ffbde0413851fdf494f246623d54252a24", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jre-22-ea.16_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "db8be16ea04c7b900b55487305226ecdc187289a7ced8588953895b604be74a7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jre-22-ea.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.16_linux-x64_bin.tar.gz", + "checksum": "b9b2ab4e8fa8f4c53112c94128c46306a929d150c29eb66ddf3e664f3f7c7e44", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jre-22-ea.16_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.16_linux-x64-musl_bin.tar.gz", + "checksum": "cd4a42939432244f713bf2861f29c2869a48384b8681ca8b068cd3204f624920", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jre-22-ea.16_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.16_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jre-22-ea.16_macos-aarch64_bin.dmg", + "checksum": "52c244908a4c29ac665d098267fcba48d5f580e931c0fe0d4ef166ee2c70fb7a" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.16_macos-aarch64_bin.tar.gz", + "checksum": "1b524d70080298816bcec8477520edeb1dfb9698c378c97514f98037b3197e5c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jre-22-ea.16_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.16_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jre-22-ea.16_macos-x64_bin.dmg", + "checksum": "4b981ce6e19b542d94f344ff6d2d4e6117ed644539450247fa0f67c1fffac2dc" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.16_macos-x64_bin.tar.gz", + "checksum": "fde8c7f83dc3cca544cd170a975f5ad0c63749029fd11a6aab1ae708cdef2adf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jre-22-ea.16_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.16_windows-x64_bin.zip", + "checksum": "7464206def10a0b68c8c94532e0aba46642d252ac3cc600aff1b128e88faf382", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B16/sapmachine-jre-22-ea.16_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+15": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B15", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.15_linux-aarch64_bin.tar.gz", + "checksum": "90edc27828230ae52b65cc1bce05f43b1fc42c776db0c866e7a1c65d2f9c6311", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jdk-22-ea.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "b01aa06e9d3d3f78eb61c4c9bb11e92d28f3ae1f4e01913949bd44ff01c142ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jdk-22-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.15_linux-x64_bin.tar.gz", + "checksum": "35945fa9f449f0f14d77add5812249c46715a47d28ec15a88b3de435a9ec6ce2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jdk-22-ea.15_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.15_linux-x64-musl_bin.tar.gz", + "checksum": "c2ff826de9affc4bd9d20e624a771c738cd5cf7f4836fdd278cf455c329df406", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jdk-22-ea.15_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.15_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jdk-22-ea.15_macos-aarch64_bin.dmg", + "checksum": "20f4e80d2fdc6d27f4b6b9bebc68aa710ee0f413714df5138a853b43f5b9909c" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.15_macos-aarch64_bin.tar.gz", + "checksum": "562437c9195623314423e7476326e7dcee67f3e043b703156972905e21b44eee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jdk-22-ea.15_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.15_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jdk-22-ea.15_macos-x64_bin.dmg", + "checksum": "31aad7a9a4e650e8dbbf2a94b45ab656fab74777ad3bed8dbfb28897f1709cdc" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.15_macos-x64_bin.tar.gz", + "checksum": "e8361ef85fadc1f8382ce69b2e562cdf414252f5f4ab4386d75e19663db62241", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jdk-22-ea.15_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.15_windows-x64_bin.zip", + "checksum": "4640ff2db287fbddddbc4f83416e40c5a81b7e9ea7915bdd9024978d2c169676", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jdk-22-ea.15_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.15_linux-aarch64_bin.tar.gz", + "checksum": "04d7bc366ff76c000e47ef31a30927ee0eb6bca3c5d5ed2320ff7adf88b2b114", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jre-22-ea.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "084fdc58b12665d5420a23a826126e5799028565437322ed7e9ec31dd9c37b21", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jre-22-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.15_linux-x64_bin.tar.gz", + "checksum": "8c1af115a0335b6b98e1fbedbce806222570c5af42a255258c528380dd29d263", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jre-22-ea.15_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.15_linux-x64-musl_bin.tar.gz", + "checksum": "ddc93accf6a7864e9aa08f0eca09fe6851a60dccea44931c4194e9795a8bb638", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jre-22-ea.15_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.15_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jre-22-ea.15_macos-aarch64_bin.dmg", + "checksum": "4f6963ff86956594348b5569c68e9af17bb5cd3f21f14c30e2418ed28e2a5bad" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.15_macos-aarch64_bin.tar.gz", + "checksum": "433a90991cf01cf6be12291ca87211c1354b98221947693f54fdd72c49f90ad4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jre-22-ea.15_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.15_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jre-22-ea.15_macos-x64_bin.dmg", + "checksum": "68275169f33926fb951403fad0abfe1108ea9ea6ade6c8d2b10437a5541e7f84" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.15_macos-x64_bin.tar.gz", + "checksum": "aa891b38c88752ef0f1c645c68a184e9ea33e9f2e547af010c04ddbd8e4138b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jre-22-ea.15_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.15_windows-x64_bin.zip", + "checksum": "621a350125437d913eefcbdb8a4d9dc5d0926518e73011d5534c5c31c4fde500", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B15/sapmachine-jre-22-ea.15_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+14": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B14", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.14_linux-aarch64_bin.tar.gz", + "checksum": "79bfbc7d6b2827db49c47b330322927008c4ae35b5452ef457b0e984bc8c1d7f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jdk-22-ea.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "27926532e7f737884e5ea6d2521b475e60b6a9810bb5f382c3f0f85688c42898", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jdk-22-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.14_linux-x64_bin.tar.gz", + "checksum": "f8176990365111ed462345fb9dd71be7b286f7459f484c4b9944879c857499c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jdk-22-ea.14_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.14_linux-x64-musl_bin.tar.gz", + "checksum": "d0dad65015e56e7e5ed693457ce1a625e78f4e68f2222fde4afe2436bcaf33bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jdk-22-ea.14_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.14_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jdk-22-ea.14_macos-aarch64_bin.dmg", + "checksum": "e186b2f6bce60ae3754b14f3db52b525af7e780074ee230a00c3a579b37c1afd" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.14_macos-aarch64_bin.tar.gz", + "checksum": "603920ce7267f597ae0ffe64550674b13b7d0527cf4f36d040f8357fb15d43a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jdk-22-ea.14_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.14_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jdk-22-ea.14_macos-x64_bin.dmg", + "checksum": "c8f3948f7872a589a8e9d3bf656b5cfeb5542f89b2cd6ae4f9752b3dc0e4fab9" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.14_macos-x64_bin.tar.gz", + "checksum": "c8ce08821555e5c30a8a87ed133e3e4f0dd6f1dd8a68dd623c9c09929b306520", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jdk-22-ea.14_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.14_windows-x64_bin.zip", + "checksum": "2064400d7255fcebe89e696feada505c3b8e895a88a4623e5a442dae27118706", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jdk-22-ea.14_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.14_linux-aarch64_bin.tar.gz", + "checksum": "083fa52be402538488671e019ffdc875e3bb94c964813519dd6e154519ff38c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jre-22-ea.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "ea0b3143689fe5c5fc7ecaf2098dcf4162af9d2cb44cfc1705571ac50c62b409", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jre-22-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.14_linux-x64_bin.tar.gz", + "checksum": "5022a3dc9b17d7114532da7083652f8df64e95096119330e5f149aea45e8ee31", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jre-22-ea.14_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.14_linux-x64-musl_bin.tar.gz", + "checksum": "e936f2c638bf502af7b4ce5056c4c731425c2328221171c16364fd4092b55716", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jre-22-ea.14_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.14_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jre-22-ea.14_macos-aarch64_bin.dmg", + "checksum": "da396aeb409c581f71089b7c5f008a2db1db9f89cc3834e614e320f9ac932abd" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.14_macos-aarch64_bin.tar.gz", + "checksum": "587070428da59e467fc5752533235616391414fddf0d79e998a877240a7c9bdd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jre-22-ea.14_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.14_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jre-22-ea.14_macos-x64_bin.dmg", + "checksum": "9e3e85aeb53a63269db518bdf76c3c2a01c59adee22482947c0dc5323ba15978" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.14_macos-x64_bin.tar.gz", + "checksum": "cde539820a7cb77847a8ae98b7b72cb8e13248007b1e7e1ed8ffe15e2012d655", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jre-22-ea.14_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.14_windows-x64_bin.zip", + "checksum": "65bce33a40c18ecffbcdde49db724bcc887f048c4584c9f4ff0703e6b9d02475", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B14/sapmachine-jre-22-ea.14_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+13": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B13", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.13_linux-aarch64_bin.tar.gz", + "checksum": "28dcf1c55eefb9edcfbc7543bc60d429ced7641a13bb18e5bcca6611dfeb12ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jdk-22-ea.13_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "edf179cfd8d9800d344965b50745ff1b87ca58237ae8a9bf3e2a5ff50f8806f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jdk-22-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.13_linux-x64_bin.tar.gz", + "checksum": "69975057eb7adcf4ee8e50501121b94d151b85a4a9ba07d01bdb3c395af64e3a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jdk-22-ea.13_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.13_linux-x64-musl_bin.tar.gz", + "checksum": "aba5302b78486d576232d50e4441eeb6f5e54347a2376a9804be588172e5e81e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jdk-22-ea.13_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.13_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jdk-22-ea.13_macos-aarch64_bin.dmg", + "checksum": "504bc3f81c319a7a427202f8b9aca1d6d69d1222f7a9619f2afd9771798dd9f9" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.13_macos-aarch64_bin.tar.gz", + "checksum": "676437170ab29ae5fbc3f3a7e740fd2b767e0173c0468d6cc400b605f7e25621", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jdk-22-ea.13_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.13_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jdk-22-ea.13_macos-x64_bin.dmg", + "checksum": "b3ca4593b00a462adc1b72a241ce09645af7945a9e5cd1f37423696bc3332915" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.13_macos-x64_bin.tar.gz", + "checksum": "39f75dc1e7760bc78b5196324266635ade05fecdea623375acc4c2030c277efc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jdk-22-ea.13_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.13_windows-x64_bin.zip", + "checksum": "e7bdbad69750d6caeeabbcd061338d4f8956967751e5c7e972cd75b369e34fdd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jdk-22-ea.13_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.13_linux-aarch64_bin.tar.gz", + "checksum": "d92ba4fd438ba45c25ac766f5a0e59a490f3fd6ecdd0869b46ad7e05b7c21f1f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jre-22-ea.13_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "665cd1822c0693060fb2c162086c66cca89ad53922012980e96410fb16faf045", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jre-22-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.13_linux-x64_bin.tar.gz", + "checksum": "c9feaf6b39608edfd07b8b5aeaad0de9ec84fa7a5acfd8d92c54f30815317af4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jre-22-ea.13_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.13_linux-x64-musl_bin.tar.gz", + "checksum": "4ed7ed0f37f23c77f969de0cac46b3106438a3b250f482d05be94caff8cbb02d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jre-22-ea.13_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.13_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jre-22-ea.13_macos-aarch64_bin.dmg", + "checksum": "4879fbdd0c5a2573a749008e397b0e855fcb6d2dc209a5a9f800f0f2482ca170" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.13_macos-aarch64_bin.tar.gz", + "checksum": "f576a4f4e0c424084a62697ff37ff5f2294c50fb4d3259c05857f46e2ac9e689", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jre-22-ea.13_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.13_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jre-22-ea.13_macos-x64_bin.dmg", + "checksum": "bb8b7eb45c64b0bbea9611b71628e29dfd019a5539fdc7858021c0ddfdf9b9f7" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.13_macos-x64_bin.tar.gz", + "checksum": "a35ea1c473572490fb1f16eba232254f704dee3b915e1fa8a16cb5af26c7abf1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jre-22-ea.13_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.13_windows-x64_bin.zip", + "checksum": "a1897c19adfb89aab743fe26eee42b489b4d70df6cb1b6b5ebd548f3ae65cfc3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B13/sapmachine-jre-22-ea.13_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+12": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B12", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.12_linux-aarch64_bin.tar.gz", + "checksum": "218cfae627535a33f0f1b492d095507d2bfefe1ab7288eb4cfda109bf4caa021", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jdk-22-ea.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "7d4dd3352f33f408f562d435b268a0a792919c11f5d0c19356af5bb3fdcdeece", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jdk-22-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.12_linux-x64_bin.tar.gz", + "checksum": "9f394d630b2fb922444d632c6843103ca3f921c69edd5005e3d20a08f3555aa3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jdk-22-ea.12_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.12_linux-x64-musl_bin.tar.gz", + "checksum": "2882ff2974281aa0a71be511160760410d0d8b90352e75ea9e34b37bd7be4f98", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jdk-22-ea.12_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.12_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jdk-22-ea.12_macos-aarch64_bin.dmg", + "checksum": "c8aa47d5c7949d1b3b6c8742456ea7b0669006a5fc5205d250cec68df381c7bf" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.12_macos-aarch64_bin.tar.gz", + "checksum": "ed3ad8ac46ad30adce61271094336d7345d4021c3af6fae6f8e4ebf7fa3aaf7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jdk-22-ea.12_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.12_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jdk-22-ea.12_macos-x64_bin.dmg", + "checksum": "11af2298da1eb271ba92d129df84298948d44b5b153bf5df09de52f61f4ce6c6" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.12_macos-x64_bin.tar.gz", + "checksum": "fd000d8fc295463cf73c5a23b5b07351cbd7ac4fd96964e5055604b488b0100d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jdk-22-ea.12_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.12_windows-x64_bin.zip", + "checksum": "6a112bfb4f9ab31429dfefa5f0266d1a64a982e8eb6eddeecde0572cd9f376ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jdk-22-ea.12_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.12_linux-aarch64_bin.tar.gz", + "checksum": "3316e9413c1f591fc0b09d0794364625d8ff74f7d346b45aaf257313dea6b8b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jre-22-ea.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "be38656414a378f7225a632ee07dd62d9a2e15bd4a49b375b30837e59b1f2d16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jre-22-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.12_linux-x64_bin.tar.gz", + "checksum": "600598504acb10a09ed5625779cec3dbbac40f8a756418d4c4607ed27d97a538", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jre-22-ea.12_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.12_linux-x64-musl_bin.tar.gz", + "checksum": "c08a287662d0d362fa1a6749c3ca362c1f9b15a9c55ef97d8b07784aa3c2a9db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jre-22-ea.12_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.12_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jre-22-ea.12_macos-aarch64_bin.dmg", + "checksum": "0ede315f913ce033db1857639776d2d7499ea10f16e05c3bfe911d27e01f95ed" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.12_macos-aarch64_bin.tar.gz", + "checksum": "908a2a54ac43d5eb2c3b76c5b4bee54d5fe980d559cdb918eec3fd20a81211bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jre-22-ea.12_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.12_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jre-22-ea.12_macos-x64_bin.dmg", + "checksum": "4ba305a0abb014458ff34c523caf54cc30bbdddd51dc1e38e48de8fa6f5420b6" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.12_macos-x64_bin.tar.gz", + "checksum": "6f1cc22974e0d5f621a95bcc4f0123a07ddaeeda4a2c5f424fb134ee192010b0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jre-22-ea.12_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.12_windows-x64_bin.zip", + "checksum": "339c0173b2e810c334b9e13b3cc32e8d6ca88b930a406f643ed6cec3dae892a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B12/sapmachine-jre-22-ea.12_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+11": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B11", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.11_linux-aarch64_bin.tar.gz", + "checksum": "f64315bb56f46693c1263bf7e5c357ea36895818e76fec43a14700dbe648cc34", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jdk-22-ea.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "e50b9d6b38ba6f3bd33e0da6d55c95277be9b912024db461b6db5967df102976", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jdk-22-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.11_linux-x64_bin.tar.gz", + "checksum": "0a2a3163276078f697740efac3bf301e7858004ac0bd740341bb18ead0da0af1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jdk-22-ea.11_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.11_linux-x64-musl_bin.tar.gz", + "checksum": "1d558415d9c4a1952965b8bd6a47baf5ad125ba63daaf59ab679d971c88dea49", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jdk-22-ea.11_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.11_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jdk-22-ea.11_macos-aarch64_bin.dmg", + "checksum": "b82e616c2666083dab7e7f4135aa7c88b006d4c15f66e325f2834d7dadd4d361" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.11_macos-aarch64_bin.tar.gz", + "checksum": "05755a3d685f8edd9e73116f684da66c7cfa311cc7aaef52a41e5802632b7b9f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jdk-22-ea.11_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.11_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jdk-22-ea.11_macos-x64_bin.dmg", + "checksum": "3ab30bbbe5cb9781810c4647863bb077147ffe1c745751d826dcfb623baa07f8" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.11_macos-x64_bin.tar.gz", + "checksum": "635a6320e8c1b2d6e80cdda343e5bac57b3080ebcc899f9157f8d144563c6f11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jdk-22-ea.11_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.11_windows-x64_bin.zip", + "checksum": "3ce35ff02c6fe8b336a317e56c38200262fcd7e62882dc4e38027dc31e29eccd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jdk-22-ea.11_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.11_linux-aarch64_bin.tar.gz", + "checksum": "a85b350efef99b177b95c982f4fd3559e7979b971df19417b308bf63127e5b24", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jre-22-ea.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "1ce8675989187cdf552d3b77523615ed4f64db80f858e542b4ee1c475f1cb4fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jre-22-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.11_linux-x64_bin.tar.gz", + "checksum": "f39c5b5242a2c2b340ecfb883962b932bf7952c97c77fde0f80a848ae55de674", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jre-22-ea.11_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.11_linux-x64-musl_bin.tar.gz", + "checksum": "0d009ef3e4be25990b566a4760444f4d9d0505e6b69531c49c139950226b9cf7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jre-22-ea.11_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.11_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jre-22-ea.11_macos-aarch64_bin.dmg", + "checksum": "2c4bd7a718e95bc5355f8658c5c89f68d6194a57db4610a619759b8722c82fe1" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.11_macos-aarch64_bin.tar.gz", + "checksum": "d0fb897e77926f2947a996f547a474e7135538d729639735aabeb93742cb45fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jre-22-ea.11_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.11_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jre-22-ea.11_macos-x64_bin.dmg", + "checksum": "55f7cc8eece41b8bfd42b3a19ee6f586689e51cc3d99f0cf7b73b54e832652cd" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.11_macos-x64_bin.tar.gz", + "checksum": "62e915f7152f67a14011f94467adc39eb990191b6277d89cf61c300bbbd70948", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jre-22-ea.11_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.11_windows-x64_bin.zip", + "checksum": "083f8a53ad4e12c4eb4a466ec57f9d9479cf4d5de936e0fd1308bd251d01b85b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B11/sapmachine-jre-22-ea.11_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.10_linux-aarch64_bin.tar.gz", + "checksum": "fa5a7e0bb5a0df284cbef53ecca872d1064a81bb4995797a8f2d0eda911e911d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jdk-22-ea.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "eb7f5439f93e5fdd4d5194da82a63c5821672f7dfa41300c229d5fec8ab991fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jdk-22-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.10_linux-x64_bin.tar.gz", + "checksum": "8503c99ebd5260df89cd75fefc761fecde2586949db2fdb74b03c2e0acd98a2b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jdk-22-ea.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.10_linux-x64-musl_bin.tar.gz", + "checksum": "09602a1e8539ec367de6b365e5dd039ea13e8a4ff1abf7b84e65c964c5146b06", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jdk-22-ea.10_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jdk-22-ea.10_macos-aarch64_bin.dmg", + "checksum": "ada57857b71fedbc55a8cc9ed99d9cb613d8ccc3b2dc9577d17f055be44e959d" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "3cda8423dc2ab715837097c9b0c05102c6253e82578254a492e74abe97eedc8c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jdk-22-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jdk-22-ea.10_macos-x64_bin.dmg", + "checksum": "6b073ef355b009ddff009e16f936dc1e1f9ad3ab50f066ec477d42faa969d21b" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.10_macos-x64_bin.tar.gz", + "checksum": "8946b6292aaccfdba7f3ab9c3dcb53de6f33f44443cdd001a74a15840e1a9139", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jdk-22-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.10_windows-x64_bin.zip", + "checksum": "c3a2ddf4e3ca53d4d1c36186eb318e8370ca5ce9b88b59baf7b87dab509d0dab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jdk-22-ea.10_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.10_linux-aarch64_bin.tar.gz", + "checksum": "8d226ceead2200e9845175e8b7faa8de6224d2de83529a4ae693cdcfa606045b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jre-22-ea.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "fa48b4c080ad03e1b6dd85bb98da5eac5d3f9c4bf8b9f704b93316b00507dae5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jre-22-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.10_linux-x64_bin.tar.gz", + "checksum": "d602806d9c66b0f3a6f78116e03400975bc1ca07b15418b8e8eb3b370b96e70c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jre-22-ea.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.10_linux-x64-musl_bin.tar.gz", + "checksum": "fe7694599eeab7d78b2fe03051ce463f720f941fbbf4e7c5b1b337a977710812", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jre-22-ea.10_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jre-22-ea.10_macos-aarch64_bin.dmg", + "checksum": "4de0d5d07d5e99e94da7ed57d55f83e338a795ab50786809b495ee1920354af7" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "9768bcc0e3cbe699624579eefff3426be1235825c9c239bed9289ce39768e055", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jre-22-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jre-22-ea.10_macos-x64_bin.dmg", + "checksum": "2f52b1beaaf559e41f3134bffab670086f4170cca2b51a2be2312e082ed007d7" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.10_macos-x64_bin.tar.gz", + "checksum": "90668c11c655c5cd8eb5d353b7f665778b91eca8f46ad94d68ac6a3785d54c7f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jre-22-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.10_windows-x64_bin.zip", + "checksum": "00974fae6d95151b7ffcd9e9a44934cf635442514dd0e8e8d9b42f76525b105a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B10/sapmachine-jre-22-ea.10_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "cfc8c3c3284038277a267f448e965add011e6afdcc215d33da106f7e48cdb964", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jdk-22-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "b88897965c399316da1a164ff333ae21be20646b83fd71253e58d23154b548c1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jdk-22-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.9_linux-x64_bin.tar.gz", + "checksum": "d42e8ca43ea4fa19aa6aac09cacc7d5995b2ea8f138b2b6dd200d13abb4735fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jdk-22-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.9_linux-x64-musl_bin.tar.gz", + "checksum": "5047cd678e3d69e94d1ba7f67b04db28fec6b4c2160a67b87600f0cebb0bc4e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jdk-22-ea.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jdk-22-ea.9_macos-aarch64_bin.dmg", + "checksum": "307662697069268cca72f0748dd2fb8ac09d62f0aeee04be0d4a94931fd395b5" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "44adad6ea6cdd3415a5a98f2f08e55385515abff63961a8645940c42031cf873", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jdk-22-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jdk-22-ea.9_macos-x64_bin.dmg", + "checksum": "9b9b50f2936f9d864f782d4693c6a09952acab2688975cc89c6660b5ebdbfe94" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.9_macos-x64_bin.tar.gz", + "checksum": "158f6aae30dddb45fe680db1bfddbee857ffe9a59e69580688e205f769c928f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jdk-22-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.9_windows-x64_bin.zip", + "checksum": "701f0a5c3e1269ff7468516d18969883016392656de721ac6bd7cf1651894339", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jdk-22-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "795df3854e365dd7b1e0a264798561d31705eb648f394fc18fab0d72e741c66b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jre-22-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "1eb18849820f73471cfa4322272fea02b20e3c88dcf4d22db1f8d464a714c106", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jre-22-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.9_linux-x64_bin.tar.gz", + "checksum": "1f499945808a4712a11cbedaedc6c5e18c9d2f9e725474ff5ea3d51f988572b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jre-22-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.9_linux-x64-musl_bin.tar.gz", + "checksum": "536e234e0b21463d544828ad3d441d12f688f150eba45503a5386ca16e421826", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jre-22-ea.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jre-22-ea.9_macos-aarch64_bin.dmg", + "checksum": "74dca901857adfda138e0271c04a646028689111be3e2925eb877dd2eaf6e8d5" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "59e4cb8f1c895180fecf32957dcea15eecc28a6fa0289ab9faf4b73f4d55eb43", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jre-22-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jre-22-ea.9_macos-x64_bin.dmg", + "checksum": "36ca8a1ddeef59b1394443aeaa267cdde597ce940f5d4290155e6e8a5f801a2a" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.9_macos-x64_bin.tar.gz", + "checksum": "8963ab2b4d9ef149a22caebbbda4237f8676de1a9d90edf7b29ddb332d67de28", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jre-22-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.9_windows-x64_bin.zip", + "checksum": "67476fd998f6da1deeb30c7f51ddcf8e8718ed70789574c510b0bb9fb1dbc72e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B9/sapmachine-jre-22-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "09c79d97c980973ac30f9a285655707a91a7f907bb7e9be71c9eff1dd7f74ecf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jdk-22-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "c0edf373b57a832bbd13b2ca982d1c9587865616ea7263732bff6c3a73e4ddcb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jdk-22-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.8_linux-x64_bin.tar.gz", + "checksum": "665f1c7092cb2e41b54399cb4ae1c3ae0aff99f24cde8e6bd932848722c94b4d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jdk-22-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.8_linux-x64-musl_bin.tar.gz", + "checksum": "752f2f3c08520870977549bef6f15e84290e21586ce604fc51a0c4a6bba7b1eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jdk-22-ea.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jdk-22-ea.8_macos-aarch64_bin.dmg", + "checksum": "fabb864a1caa27c9c847afb119ec77455485a1f812ceceb240f91053d1b70350" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "0cf01ec05cb3de647d84f8e83b022a2101af4d0d971fc10ff537d4eb560e0fc0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jdk-22-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jdk-22-ea.8_macos-x64_bin.dmg", + "checksum": "cf584e49a15ae3ac9bde4f2761d65d6979c4cb77bfa9f1c6f00333c19dfef2fd" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.8_macos-x64_bin.tar.gz", + "checksum": "d33c8cc0cc2d072b329acf7ad1950f3a21d2ffa667a41cab8dd6a97b68663f18", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jdk-22-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.8_windows-x64_bin.zip", + "checksum": "1584d3a131f292b4e09e929f82d71114781e4d0d95c3425aa2fcfed3fc149102", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jdk-22-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "9349def6b1c1fb877b1c701d7557e369d329424cdcca0c639a2a5ad169ae5de7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jre-22-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "8e726713df2e5342b1418748341f709e48b70c4edc862d4c77058f887c89d316", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jre-22-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.8_linux-x64_bin.tar.gz", + "checksum": "7e43fead7f2ea1519e8db50e1dec8bcea9bb434dff0a2e0d46a07c8babff761b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jre-22-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.8_linux-x64-musl_bin.tar.gz", + "checksum": "ae1526bf247a297c5309dc10c2846073fcdeb5bc8065f00f71883eb778262bbb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jre-22-ea.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jre-22-ea.8_macos-aarch64_bin.dmg", + "checksum": "a501199793efb84988954bdc46aa1dae9be4f8c366b7e3252c02fffcc5cb0475" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "f8c55e084e3ded07c83589120be5a219a9879b329930dba56d89aad1cbdd8e8d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jre-22-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jre-22-ea.8_macos-x64_bin.dmg", + "checksum": "e5723cf71eb5aebbc4a1da3f786d690d37fa1e8526b907809c8f5374ba6e62df" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.8_macos-x64_bin.tar.gz", + "checksum": "2657c0d029e18bfcf049be294f2c6b88abbab14b5e890d5a8ff31b7f1eb0f5b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jre-22-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.8_windows-x64_bin.zip", + "checksum": "b9b0874dbffdee3f2ede1e31f0e15555ce360372fe96ebba72e55d8fa8fd5199", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B8/sapmachine-jre-22-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "6b66ebc5d69f54316a48fc77fda1e5e4b7b9e3eace84122b28a2a208a9773e53", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jdk-22-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "940adf229511a5d6405563585b22a154cc9051e3635cfee9f3c83e2b1253e7ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jdk-22-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.7_linux-x64_bin.tar.gz", + "checksum": "cdfaaaa1098d9fdb2df10ddfe74139a0875e6f4ec1e70c5044062477aca273f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jdk-22-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.7_linux-x64-musl_bin.tar.gz", + "checksum": "466f71a4a0237ef2bfa5cc289a3a2e6e99ba3875f701d8aa0403fb5c3be4ed93", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jdk-22-ea.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jdk-22-ea.7_macos-aarch64_bin.dmg", + "checksum": "802a6dab473181668f72ff68ac9dc18644c1a8c17f8fd98087a6869c0de0beb5" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "9e65f9ae91ac794c2ee04da3a05c8b6fe15e78b28c752e0a158026a2c4587ca8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jdk-22-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jdk-22-ea.7_macos-x64_bin.dmg", + "checksum": "70a268966e297f1b7efdcbe2a366d1f497346e927c96d390de4102137b650881" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.7_macos-x64_bin.tar.gz", + "checksum": "9939015ffd15df5c223ddd594f161b151826b695017b47fac570c4ea5d8cd59a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jdk-22-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.7_windows-x64_bin.zip", + "checksum": "56a09288c18e67a7c651c00cfb01303f3f4f88bf8dcd47bf86ac946bad923a2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jdk-22-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "de33e44787f365f32c52168cf33f147679c9168c42363b08bb9168a7841ad0a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jre-22-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "050e79d66ae356c7d5bff7823091886672276391a07e2b46a1645b17090b4c21", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jre-22-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.7_linux-x64_bin.tar.gz", + "checksum": "120430d556c339b384e51e93df929a5125d149d1d6b3eec0b7d490519b91de9f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jre-22-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.7_linux-x64-musl_bin.tar.gz", + "checksum": "347484ee923ce8bc382de6cf7e1ad598abc3a08373b2d458d989cd24c62ade11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jre-22-ea.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jre-22-ea.7_macos-aarch64_bin.dmg", + "checksum": "eefcd0d21ae201c1c5221bfc83286b3d1139b9d699e8ea23d51284f137015657" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "472817c979d4b99fc64312fd2e35b815a8d4a02e54c72df1cd656c0f05c27c0f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jre-22-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jre-22-ea.7_macos-x64_bin.dmg", + "checksum": "dc231a99d3a60e568f4731cd63f817a73b0f0974ed9c6560a3f3c8eab07d3652" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.7_macos-x64_bin.tar.gz", + "checksum": "71e7bec58b56b8bc31362f1f6148b3efb22a0d1c49bdb9802a12599c8adb1a69", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jre-22-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.7_windows-x64_bin.zip", + "checksum": "0c0e7931e18d6669fdc55d67e55ca7c6b1f632e3a0ba9dbb42c8d495a0b6a007", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B7/sapmachine-jre-22-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "cfc562857e3e5d5bec904365fe8b41192169e2a9319c33a780d40e81e82b1461", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jdk-22-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "3cf59a80fe1b48e681e7e0534cee821e052da9911f6518136b4c3e68119cfbf2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jdk-22-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.6_linux-x64_bin.tar.gz", + "checksum": "21e843e2ca3a5122310c525e88b69a7c8efbe4560fd7d1f8bff1b65a1336d355", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jdk-22-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "91a614c192a88344b1d61c5e494ba087eb4b35d3f1f10368408d78a4c0552d09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jdk-22-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jdk-22-ea.6_macos-aarch64_bin.dmg", + "checksum": "d18a3af0b99e064951f6ec18cdb1be952a7f037e95f4565c40fa4f95f0d8ade2" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "a2dcaed07d5e1b963e0aca1973657f9323c72a56c5bd495574d9724debbb7afd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jdk-22-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jdk-22-ea.6_macos-x64_bin.dmg", + "checksum": "a454817453677ee5a5f712b49a657a7640096a740ed0945642cb29c9c37df0e4" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.6_macos-x64_bin.tar.gz", + "checksum": "5bfc0d730b0d506123bcd9db8b7efc3abdfb35b817d84aa8c0aba4dc29ec6997", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jdk-22-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.6_windows-x64_bin.zip", + "checksum": "5372f582553470b21570af7429bee61226a7eee3ea0c75834ffde3bc7bb854fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jdk-22-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "cd191c17b6468f2236717107c4f146b783e7f2572447f15fdf320f65ad86e443", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jre-22-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "34467911e7febf2b18e56b81355442e645dfd103ca408f3dcb072dce97246038", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jre-22-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.6_linux-x64_bin.tar.gz", + "checksum": "e2eba7d0068090e7639bba19cfced831a931e10f55e5b5dddfbd4beb530df3ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jre-22-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "17a6752d349f82cc5bd638766a23fb9f3e4ee4e00734d28d943eac460b2b02f0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jre-22-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jre-22-ea.6_macos-aarch64_bin.dmg", + "checksum": "9bd2c79df202d9744fb02aee1b872158cc865b9e208edc2e31b9732483b33f7a" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "9d5de69cc35ff7133ae4bbd5ce4696bfde4bd3f1e81ce2546049661e71fbe685", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jre-22-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jre-22-ea.6_macos-x64_bin.dmg", + "checksum": "ea817593d4f5279efe163ce5562139cb6de8fee33ca8935b674cb9a276a1b619" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.6_macos-x64_bin.tar.gz", + "checksum": "cf8a200fcc82733ae86a35fe27d595d81b0bdfbf7a45241760a50d25b2ceb9d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jre-22-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.6_windows-x64_bin.zip", + "checksum": "c47a0b1667bcb5d88f8a21c7652618e155f6fa55b06ecd2f7f204c180a075bf2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B6/sapmachine-jre-22-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "b39defd8b9e0fde54798af34e1a1903ce319bfb200508928618bb2f29fd55747", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jdk-22-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "2be9061d758b0392464bd4c8722ff2b7073cdd00130827a900b717d3bbfd89b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jdk-22-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.5_linux-x64_bin.tar.gz", + "checksum": "5e0dc75cf725ce5df2de970fddf4d04dc06f17c1611501d78763ce005e1039b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jdk-22-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "b77fc98f4503c6edb3bce3f6dc58f19133009dd0146542e4b11643740abf741f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jdk-22-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jdk-22-ea.5_macos-aarch64_bin.dmg", + "checksum": "63af026f8075d6d37e428651174507c74e01afc1bc87bebe6e8ad0d5510c4ef8" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "27a4f1e3dfe88bc4803c7cb88933d13645cdbb5a96dfa18a493eb7fcefa684b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jdk-22-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jdk-22-ea.5_macos-x64_bin.dmg", + "checksum": "90b07ad02dc01887a7c74a9ef37dc56eaed7a284bba6ba9de143d47ddae6775d" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.5_macos-x64_bin.tar.gz", + "checksum": "b4bcb0c02e6cdc35683f493f388c9469b1f325f81acfc92ee275faca8c9e5900", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jdk-22-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.5_windows-x64_bin.zip", + "checksum": "0bb405d09e6e4245b66b643331051999fcd998840ce57cacb04246d6753feb28", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jdk-22-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "a323e112b3734af43bfb53ab85b016663b4ffd93694c277b930e24d89e6f4656", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jre-22-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "70f302b98075467c91fefae9fb63ff9d01a12ca02f9e4d39ffddbca72b676509", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jre-22-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.5_linux-x64_bin.tar.gz", + "checksum": "7248ea1a7905e45b8012c421850075a16c01f6509713f2e4e7c41daba6bf845b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jre-22-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "bd2132b232151c203eb5308a71ee924e0605284cabed09d81d82f06f98036b0a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jre-22-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jre-22-ea.5_macos-aarch64_bin.dmg", + "checksum": "ab7c977d7ded23e26b4a8e14b9027f8c6a515b23c00d05a58b41e810f2128a8d" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "ed6e205b85536f7511f7c21bc8b394e2cf70807e9c97274f09edeba0bd6f032d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jre-22-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jre-22-ea.5_macos-x64_bin.dmg", + "checksum": "b52fa770c6d51cc51ccb4a32533958fcccde3b0d81cfa916f5d16e2aa669fefa" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.5_macos-x64_bin.tar.gz", + "checksum": "d6b3df2d25225634aeb66e9cbaa13edfefe2d928407df15ddce42779fb59135c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jre-22-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.5_windows-x64_bin.zip", + "checksum": "3018eff38ea789aa910ee8c2bb5ef972b8be0ceec63d77a9b93f4399a84dd8cb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B5/sapmachine-jre-22-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "7a3adfd91994899e22662dedbecb16579e10efa9a6af825d6ac94e901c33d135", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jdk-22-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "9a3216aa2549089f40cd2b7ab8aa21ddd0af2228f8a3b7b78976ed1ced4cb110", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jdk-22-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.4_linux-x64_bin.tar.gz", + "checksum": "528d7b843164efb8d0344750002de3d0e357bc9fb9856b7d2946eef0b157a3a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jdk-22-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "31bfd195dd6e99b080c2021c41358f7bd5463f900e7a1f0e1c80e9105edb171b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jdk-22-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jdk-22-ea.4_macos-aarch64_bin.dmg", + "checksum": "f5edcc3d36f8517b364bfc6f7989f0876c048f6c57b453adde5bb1def460785e" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "393a911509e1c1b72fd644381a5b1d684752b09852f54e701e000e522f3b8f0f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jdk-22-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jdk-22-ea.4_macos-x64_bin.dmg", + "checksum": "56e6148894f69c7adb79ed99a99a2bb1ef8f5d1d46cd34a8dffc76c0c43d0d4e" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.4_macos-x64_bin.tar.gz", + "checksum": "8bd3fa1c73a9645a9b41109a89a76ee63edb95bc4ff8fe44eb96c3e25bed8d5e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jdk-22-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.4_windows-x64_bin.zip", + "checksum": "3bb3b490df035fdfca97d8cdfb3c2529892c344e3aa2eb5223d59d131470d57f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jdk-22-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "67ef7c801eb43b43b75d3549187843110cf949c8f56b72026af4c5e40c89710c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jre-22-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "cdad638c95d6e41e9943eedf146ad02f47cde5789589e3e177d9eab2a2b1f16a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jre-22-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.4_linux-x64_bin.tar.gz", + "checksum": "5ccb38c5a71996c396ea5358c33efe9f7d27a81eaa55653c1dfca02a41884555", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jre-22-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "69bf60b99e49a1419bfb0aa79eec95e3988a9c91a2c92ca66706b0663984e4c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jre-22-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jre-22-ea.4_macos-aarch64_bin.dmg", + "checksum": "15a2237bbcacb2b281865871042335ccb2e7b2f12c97b807c2bca0e41603c8d9" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "93c9520234531919dd19f72f91b343174a31990653a12a4c5ccf7e7feaa79ca6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jre-22-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jre-22-ea.4_macos-x64_bin.dmg", + "checksum": "fbd1673ce0caaba12064ada104de75812c4a2a11644b53fdb986cf2bda3d406c" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.4_macos-x64_bin.tar.gz", + "checksum": "f54b7a4c27b1486c8d6b715454e45254eab01628d716275b505685a3998d2b47", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jre-22-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.4_windows-x64_bin.zip", + "checksum": "d44ba61151c0b619c3180ffad0b0b36733079e2bf011962a082ea364229d5b79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B4/sapmachine-jre-22-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "f662fd1740fcf1e9a05e3ec64adf86528c116dd00387bcf408c181759f7a34a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jdk-22-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "8bc790b1a9bb7799dcdefccb372f58c7190e37af3e82381480d213cf6ff407c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jdk-22-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.3_linux-x64_bin.tar.gz", + "checksum": "cc80c0d554480a625da3ba868219c500e07292a70a3032d6b2862eead3851448", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jdk-22-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "52e6f6132373ce7f6d9127e6a3fcab71be63e6aa2bb3e8512b9244ab49232597", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jdk-22-ea.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jdk-22-ea.3_macos-aarch64_bin.dmg", + "checksum": "6f8d89a97fcd1f106747834682fa3ec0a3f0b99361924d6368f1c6467c215f22" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "04a14d8369a2866677b9b2e1c948b8d589ee47d53213f8163e0beea7c0eb3539", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jdk-22-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jdk-22-ea.3_macos-x64_bin.dmg", + "checksum": "62e4830cca6cb2c80d39e969b4d968993ca1de6eb6676500c9d3bf2e33aaf4d2" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.3_macos-x64_bin.tar.gz", + "checksum": "24e186c0a33dcceefd9cfd8856782f598a579026f16c2121e03767fb209ae1d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jdk-22-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.3_windows-x64_bin.zip", + "checksum": "53031c86404d8974cc170759ab3bb50c1ffde84c1df41702ca6676e4ce4eccf0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jdk-22-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "04ef803f2d84b47f8a306996b2244705e91d4bddfd7672b33dc73171a16c7873", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jre-22-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "f95069a4f042aee3a34f7948f418c52fc1882546def287d3fcf29f53c1103e9d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jre-22-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.3_linux-x64_bin.tar.gz", + "checksum": "34c7cbd050eeb64ac681ae7b5c4b0352910feaaeb53d552826bfa987fab4e70e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jre-22-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "4bf29a34ecc0e0ea7c8194c70b3a3d64587a6bea3aeb096ad26d5600b76e5a99", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jre-22-ea.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jre-22-ea.3_macos-aarch64_bin.dmg", + "checksum": "fe8f17872958ae43462a76a88f98457625e846a609739e7ba3e4fd9006cc0725" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "8c8f2eee7d3bca5888304c540fb62a74fd48f09e68fdff2296c851b8bb95a9e5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jre-22-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jre-22-ea.3_macos-x64_bin.dmg", + "checksum": "6bc69fed91328893391d28befce90e8ba4fe7dec973025fb77f3572d0c7ba798" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.3_macos-x64_bin.tar.gz", + "checksum": "3cad07dacccefde9a89c11084dc7fc550d8c2b403b60944b04c02820cbfa4da6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jre-22-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.3_windows-x64_bin.zip", + "checksum": "1fdac84435eb1616b82d349ffdda3ae3c6b8c65e74e018e82cf046df71c614e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B3/sapmachine-jre-22-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "db0c820fb664bb955ab96cf135508d28601e89812535d42b8a7e6467cc7fa40b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jdk-22-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "cfe5a5c97d4f31c1a57f64bef80b0fe02fd3ee9ec5b8546a7431bf6837502667", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jdk-22-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.2_linux-x64_bin.tar.gz", + "checksum": "02415da41715369afa7bfd2aeb108f6d8dd439e8dcf52ad36467672d25db2060", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jdk-22-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "746e9812d517f807d7abf85deec0cd2ccc8b68872ad3dd11c58f3fe0d744febb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jdk-22-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jdk-22-ea.2_macos-aarch64_bin.dmg", + "checksum": "a9d66630765de0cd6c5515ce83ff8e474766bc081e2888930032470c344ba0a5" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "93c232ee8b8e4e9dad55c993c6467d5effa036c161db08f3d06bd56c0f7bbe9b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jdk-22-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jdk-22-ea.2_macos-x64_bin.dmg", + "checksum": "26768e4be30cc374aca3f3f9243efcf82d741a2693e7c6d109602159082587c2" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.2_macos-x64_bin.tar.gz", + "checksum": "eb43a964156e101f3e7a55e3ca18ec2cb4069e1d8d15690113edb52e2fab4ec7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jdk-22-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.2_windows-x64_bin.zip", + "checksum": "d5b7a5c10bf97dff82e04dc8e7b83368f160952c625ecd09ae7c07a26bdb2936", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jdk-22-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "bedbf8e54cc7a2f9375225752039a1ff47a1512214c7ead3c8a1928d3cfec045", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jre-22-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "613cca60e69fd0f30a0a91b35901a19f55300e8bd2855f5e467d9fbd9e68d8e6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jre-22-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.2_linux-x64_bin.tar.gz", + "checksum": "aa6735b71df904a9c0e084e2b1f3929fbdb91e739a784909b36bdfaeb32d5f2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jre-22-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "5c2de1822b3280fa959ec62b1cb9061a4497eb466636f5e8049728546a3d6af7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jre-22-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jre-22-ea.2_macos-aarch64_bin.dmg", + "checksum": "ade698c2ad51ef2e19f065ca44cdb7e418df3a67f189d516099b3b6045cad767" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "68fc3eb517b76b4413b90e1e4a278a9ed517d04eccc56fb1819b3c43992f7632", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jre-22-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jre-22-ea.2_macos-x64_bin.dmg", + "checksum": "f07542a8c9fc539957ff7bc5abfce47b2859b1788f95450f7c111416204e4974" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.2_macos-x64_bin.tar.gz", + "checksum": "7b84c4f97e90471f36977f6d7088ec29c1257b63caa1875c60710f08fd069bc1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jre-22-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.2_windows-x64_bin.zip", + "checksum": "aef7908d9b8d4607b9f0e01f689812fcacdf0f5370eaefe5f410071e89a50fcf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B2/sapmachine-jre-22-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-22+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-22%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "819de739ec8186c83fb7d322dda9eb009912e02caf0db19a0b13a7a5dbb716ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jdk-22-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "951148b1a4c9a63c46936482b4fd832f54d2268e9b4d087406057ca3e30cec2c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jdk-22-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.1_linux-x64_bin.tar.gz", + "checksum": "04c10e42992433e0f1358f1ac92a820b185ddd4f0a114d6c80315bc7a9a8fc85", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jdk-22-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-22-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "9017829441e870f62188dd698abffeb8ab7f63b97129f10ddaf274334dd6c985", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jdk-22-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jdk-22-ea.1_macos-aarch64_bin.dmg", + "checksum": "d854f768e1147bf871af82caecf43c7e60ef0ae8cb286cd531a683a1636968a5" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "7eab27fbd4e1daa25c95953a0238c497e96f24fbb77e88cc72b2e4286dc8ec27", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jdk-22-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-22-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jdk-22-ea.1_macos-x64_bin.dmg", + "checksum": "ec313a45d83e59d488537e08909d19d0d82ccc88cd05e03ddde7afb478f9ec3b" + }, + "tar.gz": { + "name": "sapmachine-jdk-22-ea.1_macos-x64_bin.tar.gz", + "checksum": "76240f6361dde8e89fde82c62e1479238ef1e578fb119f9ce9da5af1d2201bc7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jdk-22-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-22-ea.1_windows-x64_bin.zip", + "checksum": "d7b2a5665fcef0110d4792435bd7a25bb4711448ffca8e641346bc85a6ea111e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jdk-22-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "2f09f2e25dc1dc064448992b472aff94215ffe4c0d0a45881eed46df5c458c19", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jre-22-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "5d50f8c3de02986c463f0433d40bf512b7c4213940bf0a3e5028d1fd10fdcb3a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jre-22-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.1_linux-x64_bin.tar.gz", + "checksum": "979b82fc6c363de82de3e586a8759a46dcb8cb5fc4a89175d5d652b86685b005", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jre-22-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-22-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "ab7e46d98ba656b42ef5a0520455644e2bdb2b1a0a060ef9318afa2222307b6c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jre-22-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-22-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jre-22-ea.1_macos-aarch64_bin.dmg", + "checksum": "ff4218ca09b5209580e1ec54b53cb8964100807c404b86ecfc67a666fad0bb80" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "4360245435b723c592b57dbb97236f024dc48e255de57b06a56382988e4c9d8e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jre-22-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-22-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jre-22-ea.1_macos-x64_bin.dmg", + "checksum": "53f7acec26c8b424b7870c87b170fe1e6a95dd8a45ace68d32919d9f5e0e2a7e" + }, + "tar.gz": { + "name": "sapmachine-jre-22-ea.1_macos-x64_bin.tar.gz", + "checksum": "8b5a0a8ac9dba3433fe31a0c41633e0d8e30cbb047e2851f83dd534577033fb2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jre-22-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-22-ea.1_windows-x64_bin.zip", + "checksum": "86163ddf5d8a4f9740a57b1533202e53fdbf6f1c015277bc54c9d67ed5cb6d44", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-22%2B1/sapmachine-jre-22-ea.1_windows-x64_bin.zip" + } + } + } + } + } + } + }, + "lts": "false" + }, + "21": { + "updates": { + "21.0.3": { + "sapmachine-21.0.3+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21.0.3%2B7", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.7_aix-ppc64_bin.tar.gz", + "checksum": "380cb017e907770aab38ae0bd4e2a7ac8df139fbd2038aab2d3169bf52973c33", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jdk-21.0.3-ea.7_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "e3a07b504a2fe2561a2eab0319089b8b27264717cf40ce160ba347a4ca617538", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jdk-21.0.3-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "ad98da94ea2eb65284dcfb0dc72891db179da1a71dc14159cf4f6e05f59dea3d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jdk-21.0.3-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.7_linux-x64_bin.tar.gz", + "checksum": "1bcd6098580941e3830e0f99aebf3db387c5b64c7687fab782c24af680568404", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jdk-21.0.3-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.7_linux-x64-musl_bin.tar.gz", + "checksum": "4217db07e1478c2a8657681f965ba650467d206f032e600cb6e1cb58a34434a8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jdk-21.0.3-ea.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21.0.3-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jdk-21.0.3-ea.7_macos-aarch64_bin.dmg", + "checksum": "d6caabc6811b8b8a7742e0d32242ca2098ad7a64fa06a0791678daa6e4ba693c" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "1f36fd499ea4dc814ba815c64ce153aa0be30e5e7f61b6174cf70506a4ddf8af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jdk-21.0.3-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21.0.3-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jdk-21.0.3-ea.7_macos-x64_bin.dmg", + "checksum": "9de4d51ad796f0ede660415bb5af4018871a380af0b74e0f9475beeeaab1a9c2" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.7_macos-x64_bin.tar.gz", + "checksum": "7c987499c2c7d5ef8d2263ca27b57c3ab8a56769665861e16213e858e936ec26", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jdk-21.0.3-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21.0.3-ea.7_windows-x64_bin.zip", + "checksum": "8d6c1886d5b4537033d29f9d3b221e301f3a65007e367460ce1f945e311d1088", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jdk-21.0.3-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.7_aix-ppc64_bin.tar.gz", + "checksum": "04c2e8001c5935ec8b2d889edb14403f95cc2cfd74be85c8466da5612177d877", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jre-21.0.3-ea.7_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "687fc2cdc986804c3c07d2f7317ec0a5b82bb214d06f8b1556a48b5933c6dbd4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jre-21.0.3-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "1149ab90303647095b0c75fda4e0bdc3006aaa3ffdd10d45f2b25ea695042443", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jre-21.0.3-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.7_linux-x64_bin.tar.gz", + "checksum": "c8cd5774c4c201c67671b459ad03fcbd1bba02a71217187e78eeadbd7157c8b0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jre-21.0.3-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.7_linux-x64-musl_bin.tar.gz", + "checksum": "9d186dc5513f1bfeecc78de26ac115469f8af3e883e4da89b8a686b7c75447c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jre-21.0.3-ea.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21.0.3-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jre-21.0.3-ea.7_macos-aarch64_bin.dmg", + "checksum": "82cd1624af91e1e1edb533f850a8396ad17c868b9831e043ad8aa2ad72152cf7" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "117cbf8830b465ca914185de7771e3b8c509baf2ccc72a3d2da1a7f31fccbca2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jre-21.0.3-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21.0.3-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jre-21.0.3-ea.7_macos-x64_bin.dmg", + "checksum": "12c4991d06b49ff8e1d3ad26e224a4b4634cfc841860ebeb4cae158035a86f56" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.7_macos-x64_bin.tar.gz", + "checksum": "8f3857c393179e13d9a70320655b31c1d5e1f881a4c3f30d860ec24f8fb32255", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jre-21.0.3-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21.0.3-ea.7_windows-x64_bin.zip", + "checksum": "bc0a04fe4fcdcbbe9968c154abfe0a578652a461a89624576124261429b86739", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B7/sapmachine-jre-21.0.3-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21.0.3+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21.0.3%2B6", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.6_aix-ppc64_bin.tar.gz", + "checksum": "b5113a77aac9c203ce0d19a207c406f1bac231a9ba2e5cb7a3e4902256e0cb87", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jdk-21.0.3-ea.6_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "340a4839e65c698811ea31318606e312502a7469e611585c59455fdd5c8f8c77", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jdk-21.0.3-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "e6bfc20fd1cfbaa357baf5e58d69f3165aaece1fd6b66ae4864203f9aa02bed6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jdk-21.0.3-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.6_linux-x64_bin.tar.gz", + "checksum": "39538af9457a15e320ee0c2214c70255a0597d88bdcbc7aa6cda40399f131d07", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jdk-21.0.3-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "159dee7f1a9d1997dcac53534e2e6482226b2f059a0c950d1dd0c90aa5a6ab4b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jdk-21.0.3-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21.0.3-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jdk-21.0.3-ea.6_macos-aarch64_bin.dmg", + "checksum": "579e495608525f61efd47f984ba4a3ac96851c81d5042c362176b35c4b02993b" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "b704d9f639c80b33b0e4cd68d61ccdc379edb79eea0d6516bfccdcf6e71b536b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jdk-21.0.3-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21.0.3-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jdk-21.0.3-ea.6_macos-x64_bin.dmg", + "checksum": "38b5e8c3c27b9526111c39b68004b15bea1c1e891ba58dc1416de394dd937c1a" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.6_macos-x64_bin.tar.gz", + "checksum": "74f2910acc3e20561c584febb110170899b984984054ed45534dd47b5ed110a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jdk-21.0.3-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21.0.3-ea.6_windows-x64_bin.zip", + "checksum": "4b6429197480c39b8e3ba27aec334772c57c0de4620174ded430989201b18971", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jdk-21.0.3-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.6_aix-ppc64_bin.tar.gz", + "checksum": "da718131a72894cf6c4b2dc3c6848bd9ceb59f1a2a8df0c5aea0c6b75c9493b6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jre-21.0.3-ea.6_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "29b5dbb4c3f9249ebf24eafdd9dfa1fd16ef27b899e1ea5a496097486e844df0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jre-21.0.3-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "aab1cd6e2569d904fb8235f33ded91fac0bc18140c09628090e9ba86db1bdc5a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jre-21.0.3-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.6_linux-x64_bin.tar.gz", + "checksum": "606d5c82039abf90d17d20caaaa4063fc80c4cfa993ad7e2cb54b631bfb79576", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jre-21.0.3-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "abd46a585222e953267e1958ac7936fac6d0acab498884963bd92cdb8dcfc3cb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jre-21.0.3-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21.0.3-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jre-21.0.3-ea.6_macos-aarch64_bin.dmg", + "checksum": "ac2e45ceaaf151b3f92bb1fc4d818307dcdae029d89a9ea72f5f0d26e1ab7a3e" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "6f634100ba582f6eb2a140d31b6663086fafb6bfb169f877195cab3421591185", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jre-21.0.3-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21.0.3-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jre-21.0.3-ea.6_macos-x64_bin.dmg", + "checksum": "b505dda94cd01f5e000bb48984e30c9d25bcf564b7e7d30e41c82bcff92ee6bd" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.6_macos-x64_bin.tar.gz", + "checksum": "7aa06014cf3bf689d5d38f3d85179eb709fc013fa767a372014829712f242917", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jre-21.0.3-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21.0.3-ea.6_windows-x64_bin.zip", + "checksum": "ceb384edaa311419b8bf7e27c8c660d8a4dfa7526409ebe34bcf88236d48e5d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B6/sapmachine-jre-21.0.3-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21.0.3+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21.0.3%2B5", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.5_aix-ppc64_bin.tar.gz", + "checksum": "4d01dad2c6da097f6592907f3b48930906885452d617de48ac833cf87aea701b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jdk-21.0.3-ea.5_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "89cfea23df65812dfa1704acf22d5e2bbf51c896af6925b2e72894746e1f6ce2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jdk-21.0.3-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "291bce7b408fe59698a7013a7ba9607310296140b697fbaff27d03bee0069d5d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jdk-21.0.3-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.5_linux-x64_bin.tar.gz", + "checksum": "9b0664be0ca9f0bb9857a3509c15c82d649c438342e77a70124080a82e6b9169", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jdk-21.0.3-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "083bc23c1d23d328b571263f9d7a3f2d996699feef76a2cad35eae2c00fc9136", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jdk-21.0.3-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21.0.3-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jdk-21.0.3-ea.5_macos-aarch64_bin.dmg", + "checksum": "94c6661dc9a78c844e053a24087bd205b6251f5ede81430476f3085f0703dd0a" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "619877eb346faf5471feab9fecd12d10513a7bb6893b38f7bdd3b15c4213bd7b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jdk-21.0.3-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21.0.3-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jdk-21.0.3-ea.5_macos-x64_bin.dmg", + "checksum": "a98e3d32e13db4868b0796940e7a9a17950fb0dff56bc13e7550a2c87fa81287" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.5_macos-x64_bin.tar.gz", + "checksum": "dd8838f32d277798418c72eda0c7b27e29510c03e6383825260c085a2a004a11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jdk-21.0.3-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21.0.3-ea.5_windows-x64_bin.zip", + "checksum": "36c210eae2989947de72537eca32def56b6237915e8acdd7e79db3fa95299d28", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jdk-21.0.3-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.5_aix-ppc64_bin.tar.gz", + "checksum": "1f288d7288af69866a3df5dfa4d9ac39aa7965afc43b4a07492df0b7928735dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jre-21.0.3-ea.5_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "154fe4a8fa80d4049dd167fbefd38b8e945752f0afe82fb51f4e96de9e6c8e3f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jre-21.0.3-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "112a8e6bc01f85a348e9d9cc810f85fd3cbd817028654c8c61a95ac90dcdb857", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jre-21.0.3-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.5_linux-x64_bin.tar.gz", + "checksum": "7cfc2a68a92232638ace0d4a211afd6d5c30d9e7fe3907d851d788afea9aff87", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jre-21.0.3-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "686b8ecc114e990df1ace95d19c9f8029031a0896a41caa5a20c618f3a3b5048", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jre-21.0.3-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21.0.3-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jre-21.0.3-ea.5_macos-aarch64_bin.dmg", + "checksum": "0748525d070c86408c0c37b3348531d84dd36e243b6fb827fa7f18a97f2a8ebc" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "bc53d0eed1602cd278c7073947da234d604486ebdf9e99dee9512db785575c77", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jre-21.0.3-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21.0.3-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jre-21.0.3-ea.5_macos-x64_bin.dmg", + "checksum": "9f5c1fc8ece3f9b42494e184cd919a1016d3450251119db483303f10756d5088" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.5_macos-x64_bin.tar.gz", + "checksum": "61ef1be268962f4258e8da0c7273935590c8402f77c6ec733764030ea6d2a61a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jre-21.0.3-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21.0.3-ea.5_windows-x64_bin.zip", + "checksum": "750356e4bf575ad9e7fad49f0f56c7cdac418b11f6a4f4002f76a74ab34ac17c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B5/sapmachine-jre-21.0.3-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21.0.3+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21.0.3%2B4", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.4_aix-ppc64_bin.tar.gz", + "checksum": "d3e9ef851ff215fa4537650ad49c1e5ad8694f140ffe3c34f757ccebff4dfc13", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jdk-21.0.3-ea.4_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "b36f99ff0a0050b532d57e8e29e7d36c04b7107db8bad94c8d78bd8a042ca81b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jdk-21.0.3-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "48c46bbc23bebc02dc9e8484783bd04afb15ad42a7b26379010321482e1f765f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jdk-21.0.3-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.4_linux-x64_bin.tar.gz", + "checksum": "4bc2441e66511a2f413dc7b82b9e00d8183a23b06283e98e6a573e89f4078090", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jdk-21.0.3-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "964bc6c8e905aede804d20045a0e6348b4950e5bd49f604387e23b120dac9e3a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jdk-21.0.3-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21.0.3-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jdk-21.0.3-ea.4_macos-aarch64_bin.dmg", + "checksum": "885b6a36402184371d48c5487e4c6681bb38b6724e28cc0f3bf3023c1fdc7d50" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "f912573d83abc85a8f512300a47a345354e3cfc726816f66ea948c74f4574560", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jdk-21.0.3-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21.0.3-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jdk-21.0.3-ea.4_macos-x64_bin.dmg", + "checksum": "4084ede847d27ac92a80d11bae9a0bd13ac749e702153231dfca98c541b7f880" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.4_macos-x64_bin.tar.gz", + "checksum": "de65d4af0dd327f276b1737e1128c485c908bfc5bc69b599ea1675831dc22628", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jdk-21.0.3-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21.0.3-ea.4_windows-x64_bin.zip", + "checksum": "d0f57a6775371b788530ccae54cad337d15af9311aea9b96fda2b3faafd501a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jdk-21.0.3-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.4_aix-ppc64_bin.tar.gz", + "checksum": "540d72ba053ca478119d6cf97f9e2f55ee1eef803ccae61be2b47be111bc59ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jre-21.0.3-ea.4_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "7f42b14fe4199410226330809f5e4945e6286bdc56c936aa664ee1fe416e3dc5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jre-21.0.3-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "2f49512e7ac0215258973bc40d1e4869e656803d114cfd85a1354a4ba95d1822", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jre-21.0.3-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.4_linux-x64_bin.tar.gz", + "checksum": "bfaae6613cdb249c89a5f6f528a897f046bfa8860e49a468cc9988ef9dd88867", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jre-21.0.3-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "e3f9537e8ee7cdc71a828b6fa39c93f6778757642f33964b1554ebfb60e2bedc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jre-21.0.3-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21.0.3-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jre-21.0.3-ea.4_macos-aarch64_bin.dmg", + "checksum": "674e4ac80a85d5729003fa1b49a36abf5643dad940cd0ab004f2ab8ffef1e91b" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "d8905f87c7ea090d2e89d13b6a7596addbd99de1e692c420bde800c854424d96", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jre-21.0.3-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21.0.3-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jre-21.0.3-ea.4_macos-x64_bin.dmg", + "checksum": "71b257de0100d27a002310bc3fd36845e8b73b5c06829192c401f5006e627854" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.4_macos-x64_bin.tar.gz", + "checksum": "9c83402218ccf3defa5976a84063c0b15393384f01791ee7baac2188a185d4ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jre-21.0.3-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21.0.3-ea.4_windows-x64_bin.zip", + "checksum": "b255483b6e106ab7ce9541c2504733d59172f64d6375d0fc756f189f3a6c8699", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B4/sapmachine-jre-21.0.3-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21.0.3+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21.0.3%2B3", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.3_aix-ppc64_bin.tar.gz", + "checksum": "39bf9eb88c30315667f66470744f9d9dfac048818c3d5d12a965e86a9a2265be", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jdk-21.0.3-ea.3_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "160b47ae3391b9ef0e66973f6c31f87ee607ffebec43ea8aab3575c5abdbfbdd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jdk-21.0.3-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "6c1bbfb96a9b2f0959a9fc109d20b8d3f434bf66d74843bd5d88fb1a9f17969a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jdk-21.0.3-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.3_linux-x64_bin.tar.gz", + "checksum": "adee554eab91ccf94413c03b199c95b5ac93f3afd11eb4e50694968badbd1b09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jdk-21.0.3-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "b2820adbd0935e823a3eaa97e8720b246a6b2a0dde908fefc8e196a5e85bcdca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jdk-21.0.3-ea.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21.0.3-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jdk-21.0.3-ea.3_macos-aarch64_bin.dmg", + "checksum": "a176306bf19f0918986f9d9cf4480fd82a67130583f5462db675cfb4fa913323" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "95b4d9c36db80265eaf8cb96ae71b3e7b3590c317ebec1a6552dcd7cc782f667", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jdk-21.0.3-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21.0.3-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jdk-21.0.3-ea.3_macos-x64_bin.dmg", + "checksum": "65f0794fa7edcb84d842c9d8b55240298a5d15f32975c9763c9037eb9a777291" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.3_macos-x64_bin.tar.gz", + "checksum": "fbe9e7f560dff761c5f79a1dfb405c41400af8f3d1ed758994cfa10ca3733c35", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jdk-21.0.3-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21.0.3-ea.3_windows-x64_bin.zip", + "checksum": "c46197fda4c3f7f66078771f761432b5be741e02389d5ea692284d6255204daf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jdk-21.0.3-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.3_aix-ppc64_bin.tar.gz", + "checksum": "1abe25f444662ebee8de6f4c8419ed5f526aab36ed84ec23db29aeb4ad8a6a3e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jre-21.0.3-ea.3_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "7c7d3b40cf2d279755f5f676a001bc0f656b4a6252dcdfe3c482b8b11d845203", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jre-21.0.3-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "9c960c812aba207c4169fe7ab690243f52ff867429a1e3b0cde5c51c68700c2f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jre-21.0.3-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.3_linux-x64_bin.tar.gz", + "checksum": "618cfb30b02738a344e296959ac0c5a294c49de37a3f72adedf1f330e7e95432", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jre-21.0.3-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "89654f1475c6b34b1b15efebb632a454432afaf816dd1ccaefc64b086cee1ffa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jre-21.0.3-ea.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21.0.3-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jre-21.0.3-ea.3_macos-aarch64_bin.dmg", + "checksum": "34164179d21225190efe5c43327600c012f6ccddf226e9e954a579dd4df89982" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "4a65f736b8f41e140aa6b2886ec819d49d7beb8b55f9ab7debf3e23c2ca5552e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jre-21.0.3-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21.0.3-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jre-21.0.3-ea.3_macos-x64_bin.dmg", + "checksum": "2240bff7f9bef75b1f04f280c8b73426f2377f4f1790c94c36a2b112deae50ea" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.3_macos-x64_bin.tar.gz", + "checksum": "e40316cd421a6184c2c11bdd55187a08c8f672fe77d0e1971c9b8454eed69319", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jre-21.0.3-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21.0.3-ea.3_windows-x64_bin.zip", + "checksum": "4c1320a4ff54e32a1a99086b8894f24c038a5c3ad98a7c88eabcd4c6152ba1a7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B3/sapmachine-jre-21.0.3-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21.0.3+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21.0.3%2B2", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.2_aix-ppc64_bin.tar.gz", + "checksum": "c1d19a24d1a8c58a87b5a7868b93ad48d9879bc1aa227e484dd5441c5b0d2a3b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jdk-21.0.3-ea.2_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "e1d75b2d1ea10e9533796d7b2a8a8fdb197d930d6a65715a814bdd300ff3a647", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jdk-21.0.3-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "bcd8c6c3618aaa134b83f07f039128c9e7a18b4579c9a7a6650deef883487a30", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jdk-21.0.3-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.2_linux-x64_bin.tar.gz", + "checksum": "ab1069327f1d8fcde2de83a55257b2317e31ec4d713924688a9a2e3846870b75", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jdk-21.0.3-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "eb6a2c98f639ad54242536dd8d1ad94cf71e34a3fa951898108834b115cfa5f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jdk-21.0.3-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21.0.3-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jdk-21.0.3-ea.2_macos-aarch64_bin.dmg", + "checksum": "85633fb36364a4a35b0ccb705b1aedcdcd0a1fec229c68e0fb167189b265086b" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "41e1347805f2526edf555774967be604644861b3f2c100958331758dd7a8838b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jdk-21.0.3-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21.0.3-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jdk-21.0.3-ea.2_macos-x64_bin.dmg", + "checksum": "4dab6f3ffe8e6b9212458330c1920ec2be036c214e0e6382260cb9f429dacff5" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.2_macos-x64_bin.tar.gz", + "checksum": "e22487db8087c1eadb0895c097836242775aa1f4603a944727d777e19262db8f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jdk-21.0.3-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21.0.3-ea.2_windows-x64_bin.zip", + "checksum": "24d49ac86e924e246d9644d92a68810baa1fc8a2977955e923a2d43fe61699ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jdk-21.0.3-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.2_aix-ppc64_bin.tar.gz", + "checksum": "fbcb296b5d8a078c0e831b2ebab69657acc153f5a07d1c15f20c08a79de69188", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jre-21.0.3-ea.2_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "08aa830ef9f460268367f2d924d5df14ec7913660c9b90ad94cf19bcdc43e466", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jre-21.0.3-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "34c460021cf7626a754e64c530dde760f6972ce36edfb3249390c4c85c5ffd46", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jre-21.0.3-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.2_linux-x64_bin.tar.gz", + "checksum": "648a1635eb8a2e741a13661f9a8a9fff80a354fa2d0a62bb8eb5845f8333d43f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jre-21.0.3-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "e28fcff96fd09aa1cbc8c42a4fbfcca736c4d3cb5dd832c24c8f87db3c1d8862", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jre-21.0.3-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21.0.3-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jre-21.0.3-ea.2_macos-aarch64_bin.dmg", + "checksum": "9b457024ff8853cf67b248b7f321f63446505f4abb95069fc46dac648c7185de" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "dbf7f116dcf69079f97376507efa553a99f6999378eb9e6f2eec2330d119a39b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jre-21.0.3-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21.0.3-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jre-21.0.3-ea.2_macos-x64_bin.dmg", + "checksum": "930be71b61d6a52f7a2051b5925c00041ba6f9c4a22870ca88bdb243b489228f" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.2_macos-x64_bin.tar.gz", + "checksum": "0fc33f9c627b7ff63be276f0c1903a56206addb940774162298478ac48f9920d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jre-21.0.3-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21.0.3-ea.2_windows-x64_bin.zip", + "checksum": "230e42f45ef240acdd0c33c04b6076584ef7d8a65f080955f7e43ff21c4c8c92", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B2/sapmachine-jre-21.0.3-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21.0.3+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21.0.3%2B1", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.1_aix-ppc64_bin.tar.gz", + "checksum": "e79df751d49742f8df24c88dc2b4546c0bbeb720ff1997aaec4eec3da445ba01", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jdk-21.0.3-ea.1_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "8838ccd7112ebba9e59dda59b4986a24a0a5e97ecc071b0cc220fd8f3bb3d6db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jdk-21.0.3-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "b8c23521b0680538e230bdcd8bd4b4eee20a3c85726b8a9be0688e0cae69006b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jdk-21.0.3-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.1_linux-x64_bin.tar.gz", + "checksum": "ed67877c4e33b29fcdc3b6751a801a0668a195721e16813997b629a29f2731a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jdk-21.0.3-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "dc40723f337fd05dfefba65612dec744c03f0ecd0c0c246405176caaf522cea2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jdk-21.0.3-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21.0.3-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jdk-21.0.3-ea.1_macos-aarch64_bin.dmg", + "checksum": "1b69464c46f3575707242b440bdf5778d4a6e57b0e243e125c64202f23d46c37" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "7d390016379994b2cd4da64e24e0051d907ec2e044ba049067da7c6ed0f45fac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jdk-21.0.3-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21.0.3-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jdk-21.0.3-ea.1_macos-x64_bin.dmg", + "checksum": "4724d22a04d3f26dcc16f408313419bb81922ad68e8598dd65399bf142b8298d" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.3-ea.1_macos-x64_bin.tar.gz", + "checksum": "8d504c3ab93bd6dba70aa9bd59edf18c87729ed956fc41d30c3b0fe26a531d2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jdk-21.0.3-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21.0.3-ea.1_windows-x64_bin.zip", + "checksum": "f26cfa173e3b05d3c98a937deb6a0c61bf7be93000591404a4a790bf3fec39eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jdk-21.0.3-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.1_aix-ppc64_bin.tar.gz", + "checksum": "27b258c065f557c81f4664b2c9f16130dd38facdde94889b24a4f667c087a9c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jre-21.0.3-ea.1_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "67bd820df3b15ac741d0dbda03c7f876a73945e58ffda5d8fe0f2935abbdf92a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jre-21.0.3-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "c3d21a3622277df9d80af572eb0bd7533cf649c693d7083e071bf8e988c1ea3a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jre-21.0.3-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.1_linux-x64_bin.tar.gz", + "checksum": "711040f10984872ed599df4561605a861134dbc99f196045c63b072abc876934", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jre-21.0.3-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "ef20a8b15a5327d46eb6c871b73591153fc3a2cf3c9347d87963aad0ce844d56", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jre-21.0.3-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21.0.3-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jre-21.0.3-ea.1_macos-aarch64_bin.dmg", + "checksum": "9010546df66391f8d0504b14b0d7d24451e9554737c98a2d6564cdd12258d6d3" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "6ace329eadd683163a6cda2b35ea4696a5559b5beaeea07e5d4047e87da530ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jre-21.0.3-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21.0.3-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jre-21.0.3-ea.1_macos-x64_bin.dmg", + "checksum": "4b18abf78016797d7d21de9004cfd62a6797ff25a9ae4405b9ca78bc72b23f63" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.3-ea.1_macos-x64_bin.tar.gz", + "checksum": "bb04010e23039e9dcc31a835c21ad6bef3d02dc37152e7346adb03bac5c04a2d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jre-21.0.3-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21.0.3-ea.1_windows-x64_bin.zip", + "checksum": "def17e20bd3957004c739e36eeeff42a423faac55e54104109a8b0e9a35a2f7a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.3%2B1/sapmachine-jre-21.0.3-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "21.0.2": { + "sapmachine-21.0.2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21.0.2", + "ea": "false", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.2_aix-ppc64_bin.tar.gz", + "checksum": "dfa8c80057d1fad0b5162e4fd9f64579a2a31006766115d2522e49ec549a7d5c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jdk-21.0.2_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.2_linux-aarch64_bin.tar.gz", + "checksum": "e5a3a1c377cd35d2068de2337685c9940e27654370768008c1d82b0400fbc628", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jdk-21.0.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "b3b95295461e05d2cb58e192e29af27c2586d868848f72f1a86e216cc20707a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jdk-21.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.2_linux-x64_bin.tar.gz", + "checksum": "3123189ec5b99eed78de0328e2fd49d7c13cc7d4524c341f1fe8fbd5165be31f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jdk-21.0.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.2_linux-x64-musl_bin.tar.gz", + "checksum": "4534dc15b952590aaf167ca908ed924a875c6265dd06f0a23d588bbdd41f4c93", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jdk-21.0.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21.0.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jdk-21.0.2_macos-aarch64_bin.dmg", + "checksum": "5382dbb1f80b2c5bdac2713cf6e3a9aec2b7315b62870f110ac7dae628c8f08e" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.2_macos-aarch64_bin.tar.gz", + "checksum": "3e8bb34477c760d145955a12d8554180b9636295a7b0f49b2ef50702f70f3c4b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jdk-21.0.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21.0.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jdk-21.0.2_macos-x64_bin.dmg", + "checksum": "06f1e707b913e6ca3f3ac7714bda28ebebb0d2cc8f9a3a7cb89f17281da4c2f0" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.2_macos-x64_bin.tar.gz", + "checksum": "826fb6c8c5b4c24a1150ad3e393114a8be9072b9f9a65bc10ec8343971eb48fc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jdk-21.0.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21.0.2_windows-x64_bin.zip", + "checksum": "8b2bc8007381240728ca50a23f020a3603ca84314308df707d4b3eff5b3bcfd5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jdk-21.0.2_windows-x64_bin.zip" + }, + "msi": { + "name": "sapmachine-jdk-21.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jdk-21.0.2_windows-x64_bin.msi", + "checksum": "f3f77b87051e7b42768ab4c3fd8b0f2e5adbd63dbab8cee67e2bec4c43960d50" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.2_aix-ppc64_bin.tar.gz", + "checksum": "cecb536e68e33f0183abac2d3cd808a0c15ae1a3ba360bcfd6e81a4d1a1e52eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jre-21.0.2_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.2_linux-aarch64_bin.tar.gz", + "checksum": "396876d56ecc988dd5631ff3f71aa16414ff37695b00bf75df7647a0f0bfea1f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jre-21.0.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "2b37a1683e152f1c282b6b4ac74262c19b2e6749b18b5812ca5cd65c3bba1c82", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jre-21.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.2_linux-x64_bin.tar.gz", + "checksum": "9b80175e20c846e29ee5c7c02af6b0d3a8d74a8e483f07954168c49d776afbf8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jre-21.0.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21.0.2_linux-x64-musl_bin.tar.gz", + "checksum": "75a7c2aefae00cf681fb6cd79d2cf8e003dd7097a95b5cff943ddaebb57a9912", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jre-21.0.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21.0.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jre-21.0.2_macos-aarch64_bin.dmg", + "checksum": "ce059f4b66affc81f053d81873c9313b08e5e9006fb9dfcc66e23bcfd2a6ae19" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.2_macos-aarch64_bin.tar.gz", + "checksum": "1ca2c9105f94b1894d31ccbb8e93d54704e6c107517dc5ad8bd4bf78b93346b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jre-21.0.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21.0.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jre-21.0.2_macos-x64_bin.dmg", + "checksum": "824431d9d9ba6453c3e85aa2692e117d3f9fad198abcc77a4a0eb06b59b789af" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.2_macos-x64_bin.tar.gz", + "checksum": "0cb9e6d1b7756ee10c70c638b4f889387e5fac0e253de74028325c6ca6807b77", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jre-21.0.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21.0.2_windows-x64_bin.zip", + "checksum": "65ec3f9d67334a93e139b132ee87b74220eea27ba909c600f24034336c221c09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jre-21.0.2_windows-x64_bin.zip" + }, + "msi": { + "name": "sapmachine-jre-21.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2/sapmachine-jre-21.0.2_windows-x64_bin.msi", + "checksum": "14dcbc01f4c34d4c72ed83292f60f6f5b2d29960bdabf4e3bbfbf1b7d26e86d1" + } + } + } + } + }, + "sapmachine-21.0.2+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21.0.2%2B2", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.2-ea.2_aix-ppc64_bin.tar.gz", + "checksum": "03ad969f17ffbb3f38312679d05005d99666e85d21df040519dc1fd42e9c53de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jdk-21.0.2-ea.2_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.2-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "b050d9ffcb841f47bf8ec5afbebbbf367b40af2b7262015f72e8b6773a8555a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jdk-21.0.2-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.2-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "b294274d250372c2939b5e8484eb2ec2fadbb532831f2f3a61ab026ae315f6f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jdk-21.0.2-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.2-ea.2_linux-x64_bin.tar.gz", + "checksum": "320e13af77180100792e1ebff3f118fbcb38f3b890b1dce7c1823b513480acd7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jdk-21.0.2-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.2-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "f95edb7ada03bf0eb9e92c8e32993c7b14620daf95f5cfc723d689f73522458a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jdk-21.0.2-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21.0.2-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jdk-21.0.2-ea.2_macos-aarch64_bin.dmg", + "checksum": "5e3a7f32fc4c90a5d5c5a26ab65b1d9dd0c534bd894b189e16884f20de3b1e9a" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.2-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "cd7125890ac87f126db0fb7415c13532ce9525d294e8e0d4d105545ca7f92b55", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jdk-21.0.2-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21.0.2-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jdk-21.0.2-ea.2_macos-x64_bin.dmg", + "checksum": "adf0627822c170e6843330aef6e134bf0a8f88a02651c6d2a2419481f90c088e" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.2-ea.2_macos-x64_bin.tar.gz", + "checksum": "6116a0ecd34ae74f531928afc4230ba144a94718619a1ed6970de456aba875ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jdk-21.0.2-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21.0.2-ea.2_windows-x64_bin.zip", + "checksum": "57f7886c052146fbf12da841e972c73cf7bbd48a7af0f341c1b516def0699737", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jdk-21.0.2-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.2-ea.2_aix-ppc64_bin.tar.gz", + "checksum": "cb1b00399ceccfc36b96c703071ec9a9212b2adc512251d8b2538507a15fba79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jre-21.0.2-ea.2_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.2-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "7b12304723b274476aaaa20e648316adeb49225f03e58b8621fc9834ac67ae8a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jre-21.0.2-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21.0.2-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "db9f679a2d933186e34c4e77ec93ccd79dcf77fee40c706a630109a73f20f9bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jre-21.0.2-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.2-ea.2_linux-x64_bin.tar.gz", + "checksum": "a7d9f07f4050ca28a78ae65a039dcf6e80acb721ce4a111e433c884bfb5c6613", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jre-21.0.2-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21.0.2-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "42202d2a2055dbdde7e665bd6936051b7af01b4e657b218ab5face4a8545e1e5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jre-21.0.2-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21.0.2-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jre-21.0.2-ea.2_macos-aarch64_bin.dmg", + "checksum": "6a9201eb69a1dc1df6963129ec8cbce93cf8c52c5ce612c417f58556fd60b3bc" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.2-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "eafdd1c6467e9f12ce666fc9f5e7131843ca2892e889d38b4474214fc7243f34", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jre-21.0.2-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21.0.2-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jre-21.0.2-ea.2_macos-x64_bin.dmg", + "checksum": "1a2503c7c9ad3fb28c99e41c3ca2bbf030cceefb1071b7047b8ac22346fe3ec1" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.2-ea.2_macos-x64_bin.tar.gz", + "checksum": "db05dc3c09acc69d421ee5231a91f77a1d7f2ed488984be6ad9d3b4e84865919", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jre-21.0.2-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21.0.2-ea.2_windows-x64_bin.zip", + "checksum": "4d59f4f43f0b9ba3b0c24c1e9e8637049490ca3b2b70ba30131e06690f9103f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jre-21.0.2-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21.0.2+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21.0.2%2B1", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.2-eabeta.1_aix-ppc64_bin.tar.gz", + "checksum": "d2aa4f6e8e612cdf94aee3e102a01d0de5597065c2bdc5bd3fa9d97d70c31b0a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jdk-21.0.2-eabeta.1_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.2-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "79e338728dd404920fcf45dd8204bcf51162c6258250e03b1b86bf098defba6e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jdk-21.0.2-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "a4ca31ad8730122d5d35e5c952236a2631277d03402f64fe26793dd64aaaf3bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jdk-21.0.2-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.2-ea.1_linux-x64_bin.tar.gz", + "checksum": "96d71521ca2be7373ba249173cb233533821fd61ec6e455787b56bf85c017d72", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jdk-21.0.2-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.2-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "557e493e55f57814b46014c3978b650e7ff9de8c45bf856df0d92ebc27f50646", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jdk-21.0.2-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21.0.2-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jdk-21.0.2-ea.1_macos-aarch64_bin.dmg", + "checksum": "8e0daddf16377fd2e15da63169f216bf2f363e089c73a9861fc4f4c7dccc7509" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.2-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "091df0b5a64853f1157f0a994f888590ac8bbb376a2c06a50b9e676211853a4d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jdk-21.0.2-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21.0.2-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jdk-21.0.2-ea.1_macos-x64_bin.dmg", + "checksum": "ac8f8a4037aab8fa93e39accc170d495ee116f696c6b918eb736b95efa4ca3e7" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.2-ea.1_macos-x64_bin.tar.gz", + "checksum": "7c8fb99a45fcbfac1c4052671f6b0899f5d46b8ebf3eedf3ac2eb8823a0a9cd1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jdk-21.0.2-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21.0.2-ea.1_windows-x64_bin.zip", + "checksum": "ebb2fc1d8f5a8f8d9141313453cc0065b980350ed93ad3822584d92e06c1590e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jdk-21.0.2-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.2-eabeta.1_aix-ppc64_bin.tar.gz", + "checksum": "46fbdca5bafc68c9bc7ea0e3dec21f9542741aeca521c7c37c457d2f37864cd5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jre-21.0.2-eabeta.1_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.2-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "c3ac312d15b0cebef57754bb23a56e1de596bfc923f79b728f6ffbf7b1f8cbeb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jre-21.0.2-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "a6a01fbb94c503311eecb8ac5a0c39815f76cd8a17d067a4692f09e7caf38cb2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jre-21.0.2-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.2-ea.1_linux-x64_bin.tar.gz", + "checksum": "1664da7d5ffb4636858f35f0ab296b8ffda921d2007062441d6f2801b12f32fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jre-21.0.2-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21.0.2-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "16a096bb22c9230b7d43dd5d8d373285648943a9aa3b1dc46d121ffd63010a74", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jre-21.0.2-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21.0.2-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jre-21.0.2-ea.1_macos-aarch64_bin.dmg", + "checksum": "7ba79731ecd024c9eb0205e3b1ccba62b2612066cd4ced72b495880ed7d722a3" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.2-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "1fc86e9823d671931f98ed5875005baae6059918ea9b4a8a9ddf75b21fafb756", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jre-21.0.2-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21.0.2-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jre-21.0.2-ea.1_macos-x64_bin.dmg", + "checksum": "41261105f063d42ba52f81c306bcfed3a6d46aa8476f75ee0e4efeb2106a7098" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.2-ea.1_macos-x64_bin.tar.gz", + "checksum": "b31e0f1f76223ffc19110770d65e1dae44447bd6ccd31c5e0dd33a05dc677be8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jre-21.0.2-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21.0.2-ea.1_windows-x64_bin.zip", + "checksum": "6965cf5ebc5db82803d304138bc4bf069b30dcb913b1b26e8a7e22f87cc766e3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B1/sapmachine-jre-21.0.2-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "21.0.1": { + "sapmachine-21.0.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21.0.1", + "ea": "false", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.1-beta_aix-ppc64_bin.tar.gz", + "checksum": "1c4c2ece50b1aaeeaa2155d6c0b31fe76d709c3bca8dcf1b93219419c43680f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jdk-21.0.1-beta_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.1_linux-aarch64_bin.tar.gz", + "checksum": "a157f4236307bfdf4efe2f2726958040ef18d10c67dbb4752e0dc5b569a7afc0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jdk-21.0.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "ae7227826ad60b463bc45064a7fb65843f7424ecfccdc8f7266729120b30977d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jdk-21.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.1_linux-x64_bin.tar.gz", + "checksum": "450426abc41695696c49c02df437882e6763344522c70a46ae6b0b682ba370ff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jdk-21.0.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.1_linux-x64-musl_bin.tar.gz", + "checksum": "9443df09772041419c8c9f211520abd75954df964d7ee7624e213c4e2e728004", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jdk-21.0.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21.0.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jdk-21.0.1_macos-aarch64_bin.dmg", + "checksum": "1da0413c09f94d7ba9fef3c8249588e3754d317d0a6d821a8ce0f4dbb1d5cdc1" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.1_macos-aarch64_bin.tar.gz", + "checksum": "8a052e50e4b48e87d6519489b0c7116df1e8f87a52480b81db27fee8259a5cc0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jdk-21.0.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21.0.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jdk-21.0.1_macos-x64_bin.dmg", + "checksum": "13a9059cbec76083ae0c0d12c1cefcc3818dc4be9dfbe0f23020e99268f147d2" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.1_macos-x64_bin.tar.gz", + "checksum": "498bdb5635be4b784ccfe12f83dc4c83f6a5fb2f37666a4fec408a2fd4083afa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jdk-21.0.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-21.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jdk-21.0.1_windows-x64_bin.msi", + "checksum": "fbca3339248aa045fce94c8943a908c6172842633421b4462820aea0df86c46c" + }, + "zip": { + "name": "sapmachine-jdk-21.0.1_windows-x64_bin.zip", + "checksum": "d200fc7b4e5c13293caf992aef3207dd627917353c3f189901e4d95fe23bdea5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jdk-21.0.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.1-beta_aix-ppc64_bin.tar.gz", + "checksum": "1f10e475e737f0f38238e7e180437f42f6f0c87c00948f68494840652c9cbc1a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jre-21.0.1-beta_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.1_linux-aarch64_bin.tar.gz", + "checksum": "71792196d5cf1b501df0f453fc57f3becab3b682affca2b7886823075a79296c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jre-21.0.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "05388fd8711aaf0dd9d0ff533bf9759084ac4bde370a725adbe41f4f8b88ca33", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jre-21.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.1_linux-x64_bin.tar.gz", + "checksum": "8eba84c547954eb49cd7eef5bf3ef8c271ca66df7b5fa9fee06e846b9fb5c3de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jre-21.0.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21.0.1_linux-x64-musl_bin.tar.gz", + "checksum": "12b41bae07cfd03d0cc1099d234fe5fae6d31e9b860b5195e165fcf86920ae2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jre-21.0.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21.0.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jre-21.0.1_macos-aarch64_bin.dmg", + "checksum": "a337a9028831cdf6cdbf3ae9bc2685c7120155e0772b03e33f8e4dde8937368f" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.1_macos-aarch64_bin.tar.gz", + "checksum": "074331f5ebca12b51d9326949595f8f044297e8a5a02085960813768a5744263", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jre-21.0.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21.0.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jre-21.0.1_macos-x64_bin.dmg", + "checksum": "9e43d0035675c8639b6fbeb37a3c800f4dfeb26c9c7a2bbb3be0be21d4219464" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.1_macos-x64_bin.tar.gz", + "checksum": "b01507f65c0c6a07fe16ba5c3e622e6e212fb323f2f420c606db3828a3b64ff9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jre-21.0.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-21.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jre-21.0.1_windows-x64_bin.msi", + "checksum": "4d6e0c8d00410da0184d538645088a4fd04c41816c922333bfc19d9fb5a28693" + }, + "zip": { + "name": "sapmachine-jre-21.0.1_windows-x64_bin.zip", + "checksum": "16b83c8f60e90f18b491af1350c9d2f417e7dab9c8f0d847d82f9f6d8c4fd7b2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1/sapmachine-jre-21.0.1_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21.0.1+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21.0.1%2B1", + "ea": "true", + "assets": { + "jdk": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.1-eabeta.1_aix-ppc64_bin.tar.gz", + "checksum": "96b4d26570fc1b131372bbb2ae308d32e399ede94569f54f113384487b311475", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jdk-21.0.1-eabeta.1_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.1-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "b2660c4a8d1ffb384938fc68769dff81eea83951c077e4595abc38ff2f962b6e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jdk-21.0.1-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "6751d076875c46fa69958a6e0859da09593c58b8dd6874dec6cb97dfc7666098", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jdk-21.0.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "a21427f124e68291f1ac9f433d9c4e63fdd636255f29b400e2fe033173d89e54", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jdk-21.0.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21.0.1-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "3da62023efb4bd119a4977342ef8b33a5829f9a8e904c67db9b3f8468d7ab76a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jdk-21.0.1-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21.0.1-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jdk-21.0.1-ea.1_macos-aarch64_bin.dmg", + "checksum": "62672728dd909c618ae0cfd7ed67d3d73fb21f59a97aa1409b1a7c173ad78c64" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.1-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "55c90dc2f8c3a1de47af90437a034d56e2bd472c8ec5addb3795b634709f0dba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jdk-21.0.1-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21.0.1-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jdk-21.0.1-ea.1_macos-x64_bin.dmg", + "checksum": "4d2bf5f56a15dad0cafd36db613fef3df34358e3070e0358006129ce7f8738cb" + }, + "tar.gz": { + "name": "sapmachine-jdk-21.0.1-ea.1_macos-x64_bin.tar.gz", + "checksum": "f38726626b0b2af0819e389d23baadd2a655406b817119e204f0d109857835cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jdk-21.0.1-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21.0.1-ea.1_windows-x64_bin.zip", + "checksum": "b6042ea31e26002cce28e9eceea9fe71296500de210f61b4eae0397e8a3ad139", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jdk-21.0.1-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "aix-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.1-eabeta.1_aix-ppc64_bin.tar.gz", + "checksum": "a46cf8d92fa61bebe1b8b0b9ca120024dbf5b881edf62ee5f27ac143a81918b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jre-21.0.1-eabeta.1_aix-ppc64_bin.tar.gz" + } + }, + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.1-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "39312fc3920b1260cd7afab6d5d4f8a403db0e79bae34fb79a9a57a49bf5cd11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jre-21.0.1-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21.0.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "21a67c5fc0724e025c621591d26825493872005df8045c0bc68ffb77658d0822", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jre-21.0.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21.0.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "d6f0765f7c06f997a6ace556539cfa6d9f41f6c63f7c36e08a8ae49418ede741", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jre-21.0.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21.0.1-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "d9d381bf6fee5471720852bddc68f8dda2d875abe3fc533db3dca78f3946b1b2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jre-21.0.1-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21.0.1-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jre-21.0.1-ea.1_macos-aarch64_bin.dmg", + "checksum": "d304b6d52543ab9fea6269523b4b12fab2ec8efd8721ce6fc3d5f3446dbfbd65" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.1-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "4168cd858315e67b694e60aa3f7a3b3fa857455ffc20a8fe59e8f23293e04e1c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jre-21.0.1-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21.0.1-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jre-21.0.1-ea.1_macos-x64_bin.dmg", + "checksum": "c01b26ab9f6aa8fc473ca005b7dcd0264ca8f8397314bd261ed46c780ba6580c" + }, + "tar.gz": { + "name": "sapmachine-jre-21.0.1-ea.1_macos-x64_bin.tar.gz", + "checksum": "ac0a3a3f64cc76d6e863968042e86850313f094a93f70e97d16e678e32510125", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jre-21.0.1-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21.0.1-ea.1_windows-x64_bin.zip", + "checksum": "0736953a0fde57646ccf65a37a7b7a6055b33123e48ba9bc38db50bbf15a52ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.1%2B1/sapmachine-jre-21.0.1-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "21": { + "sapmachine-21": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21_linux-aarch64_bin.tar.gz", + "checksum": "ca6f5a06253954a41ffaa398a0d9e15a21e7d2cf3c9a86aa25fad0e993858872", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jdk-21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21_linux-ppc64le_bin.tar.gz", + "checksum": "4a8df67b9cd9cec7a8165e935c84cb677a68509c6c85811640a52b9d045d6753", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jdk-21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21_linux-x64_bin.tar.gz", + "checksum": "3e5ccebadf96a5399c5bebdf5360260ade37b3a6d6ad76fa26f0552c57bbeea1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jdk-21_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21_linux-x64-musl_bin.tar.gz", + "checksum": "2fff28d4e2479c621d1f27df6d0ba104341e81f88317760aca8013147f06fd93", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jdk-21_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jdk-21_macos-aarch64_bin.dmg", + "checksum": "12f0fa4af1c1f97845542f511db485cbc838d3ab5d87e88591cb58a1f5e58f7f" + }, + "tar.gz": { + "name": "sapmachine-jdk-21_macos-aarch64_bin.tar.gz", + "checksum": "9075930a2fdc48c960b9dbac68418ecce9107696736c8eaf34720db3fa69ab4c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jdk-21_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jdk-21_macos-x64_bin.dmg", + "checksum": "326250808c81212e31707605d98939aaec47ff1b8e95f40c606100f20cb5eac4" + }, + "tar.gz": { + "name": "sapmachine-jdk-21_macos-x64_bin.tar.gz", + "checksum": "665f34d7730fd769383df9bbfadef1ea9819f06b151903e9219b570ca3b0dc73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jdk-21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jdk-21_windows-x64_bin.msi", + "checksum": "0a7e9c7aaa6c17ce6e66c70f07b4142a4b68f2be3a08fd54413da2d7a7c1b486" + }, + "zip": { + "name": "sapmachine-jdk-21_windows-x64_bin.zip", + "checksum": "cb81b42cfa7d1cf822525ee76b69eb526449749aa48e030dfded16a9a3e1292b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jdk-21_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21_linux-aarch64_bin.tar.gz", + "checksum": "cdfd617f8d25fd71a4d0464d00e93b04af7d89a8aed5ebe805e89fd7ac64bf09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jre-21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21_linux-ppc64le_bin.tar.gz", + "checksum": "17c6819c96b07cf3022a22cd76e31282ad1b496ccddfd61facc5a64939ca894c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jre-21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21_linux-x64_bin.tar.gz", + "checksum": "4d36b9f97a0f8d17b0193669d4e0c8f2957b73299c25ae5b9356fa429365ee26", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jre-21_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21_linux-x64-musl_bin.tar.gz", + "checksum": "e32a121004281044634caad6aa39ef19d31e5c89a54c419fb34574fec9e8aa5f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jre-21_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jre-21_macos-aarch64_bin.dmg", + "checksum": "90fd1c500132712c1b95e98d4f0ef7b7eb534a0f9fab8af54358692b909e1429" + }, + "tar.gz": { + "name": "sapmachine-jre-21_macos-aarch64_bin.tar.gz", + "checksum": "fb196ffeff9ec2810ae38a052956700342876f2db97f552e907c8e57907bddff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jre-21_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jre-21_macos-x64_bin.dmg", + "checksum": "1b9384e43403e860fda834bf6d2dcfc6c0883da209db17be49df8466d21c39c1" + }, + "tar.gz": { + "name": "sapmachine-jre-21_macos-x64_bin.tar.gz", + "checksum": "a66ce82a95e04199623c2db387c17d5169fb1142df33a888688822132515a0e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jre-21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jre-21_windows-x64_bin.msi", + "checksum": "46b507395253a252c518aec8f70c492124bbff7dc69464dc8a84bcd01a5e05c8" + }, + "zip": { + "name": "sapmachine-jre-21_windows-x64_bin.zip", + "checksum": "f747b9ee576e5653d64a34385324113fcc7af9f3e12b8316317fd50b062e466b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21/sapmachine-jre-21_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+35": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B35", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.35_linux-aarch64_bin.tar.gz", + "checksum": "c452da9d60173d96867a2a8038e23be70b70f3715fc76eb2fc60bcfe67fb7230", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jdk-21-ea.35_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "ce35c02313759a2783b4183eb5c19511e88bd313d16e660e1ae1ad21879feaa2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jdk-21-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.35_linux-x64_bin.tar.gz", + "checksum": "4955e4c2f2663306009a834bba3f202bd857bb85314cc8c33d31e56e909afa35", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jdk-21-ea.35_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.35_linux-x64-musl_bin.tar.gz", + "checksum": "b006a56c478f3658ab05c79f1ef6b69b457aa5878a5f603ad705e5c05f099c5f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jdk-21-ea.35_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.35_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jdk-21-ea.35_macos-aarch64_bin.dmg", + "checksum": "c257276430af863a0f642a75a6bbd8625d78aa6bbac12db4c622b58e20ac206f" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.35_macos-aarch64_bin.tar.gz", + "checksum": "41d880593aac47c8abaa085d0e9b74738f657644a01620918643d47b9f4c95d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jdk-21-ea.35_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.35_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jdk-21-ea.35_macos-x64_bin.dmg", + "checksum": "ffee4dd8557262701a2079d96f823cadc1e2b6359c9f196cf03445ea9fffdd5f" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.35_macos-x64_bin.tar.gz", + "checksum": "c492758833afda0765225a866eaefc1fe3dbac2ec9dfee6b7456379a9a54c8c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jdk-21-ea.35_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.35_windows-x64_bin.zip", + "checksum": "dcab836fff5016f7b85127b17f15e6dc97ee7609f74df8838c916b342eca5fce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jdk-21-ea.35_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.35_linux-aarch64_bin.tar.gz", + "checksum": "7132bf29cc1afd417391e6e495503ccdb4cc82fc870d59ff0cd912498136740f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jre-21-ea.35_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "e96135d60f93e5f2e29336f23a045674b4f3b025bd2216b66e2eeec9d5dab2d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jre-21-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.35_linux-x64_bin.tar.gz", + "checksum": "032da432c2881b12b626efde352453bdf0e9b950bf3601528c84735fe99b11a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jre-21-ea.35_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.35_linux-x64-musl_bin.tar.gz", + "checksum": "c2a12558ce2799a2687c0c3f31a1834f99e0824e051108fd95b5e6f0ebad4319", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jre-21-ea.35_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.35_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jre-21-ea.35_macos-aarch64_bin.dmg", + "checksum": "85360b081f2ef58e136e5923da2c92f84c4d16f185fa56cb2e92d479512e1e6a" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.35_macos-aarch64_bin.tar.gz", + "checksum": "5cca300df4ad106bdb34f091aab14aae4f55d00ae1e6b6d147e3d72078134efa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jre-21-ea.35_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.35_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jre-21-ea.35_macos-x64_bin.dmg", + "checksum": "6f9ffeb3a6796edcdb6664fc9d564616f1b623880f7a1921f313087b14499df3" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.35_macos-x64_bin.tar.gz", + "checksum": "66f2d2f2a549eb3e4849c86c1c38464837b919af0c0ebd2104d5e2d58c2e1d0f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jre-21-ea.35_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.35_windows-x64_bin.zip", + "checksum": "78a6d0e5a60435bbc7de679a90b3cd48d1d889df1369075ca877ef292e6bf27e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B35/sapmachine-jre-21-ea.35_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+34": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B34", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.34_linux-aarch64_bin.tar.gz", + "checksum": "e8620c4169de13e24fadcb1e498f942d240532b0e8dc1046050048084006a9db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jdk-21-ea.34_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "39b78efb8103dcf72cf5c9e5d480aab69ca898d8e117b57634115f6454632562", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jdk-21-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.34_linux-x64_bin.tar.gz", + "checksum": "ee1b1edd7ef4612fea2d93acd9fb0f6e897089bd90303e8602b952483dc65af8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jdk-21-ea.34_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.34_linux-x64-musl_bin.tar.gz", + "checksum": "e603cfa83537cf1c027e556040e279c11c827146eca5ebc1633bbfbbf5ca0a9a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jdk-21-ea.34_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.34_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jdk-21-ea.34_macos-aarch64_bin.dmg", + "checksum": "a832c59d04099bb3014e3392955eb887d4fd743619f0ec11e95580d578879ffc" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.34_macos-aarch64_bin.tar.gz", + "checksum": "178fc2965d8218fa57115aff2d878a7d7e34be2213ff89784a7090e077efbeb3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jdk-21-ea.34_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.34_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jdk-21-ea.34_macos-x64_bin.dmg", + "checksum": "e09b1747fa7a03765262ab427dee52df56aa5c5caa927ba2a3db214350e4ade6" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.34_macos-x64_bin.tar.gz", + "checksum": "0cbf76f18030eb3d887644522273f22d6b9223295843b4ab94e35317232936af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jdk-21-ea.34_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.34_windows-x64_bin.zip", + "checksum": "cf826cf37a3567cbd0fd13179e3a6665d55dae21a68011cc350391f04500cfba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jdk-21-ea.34_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.34_linux-aarch64_bin.tar.gz", + "checksum": "678c1c3946d7fa6495099f34b7105dc9c7fa9d631bc12a352b1198a7bfe1280b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jre-21-ea.34_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "41315c1584f7302ab4861573831f51aa5b4f92f63b83f4663d07b63687c07119", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jre-21-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.34_linux-x64_bin.tar.gz", + "checksum": "a8f04b6d652959363a29181b7caf8980612f90079b98f1977fcd98b166f5bcce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jre-21-ea.34_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.34_linux-x64-musl_bin.tar.gz", + "checksum": "74c7454db613681b9e2d1233c3c780d2b546998d5f1edcfec440347dd913f3fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jre-21-ea.34_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.34_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jre-21-ea.34_macos-aarch64_bin.dmg", + "checksum": "40ab36e5e7abfdd77cd052d5d3c1e3639693670ad1968a19017a3e17b22ca9fc" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.34_macos-aarch64_bin.tar.gz", + "checksum": "3ed056719d31886e40eb68c8bf91297a4cfcd362896db4109474647dfa6b9a0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jre-21-ea.34_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.34_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jre-21-ea.34_macos-x64_bin.dmg", + "checksum": "6ff5e2aaddc21ae2fec6bb52c79ec505b06e10bc755d40c3eb09ed3fff4269c5" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.34_macos-x64_bin.tar.gz", + "checksum": "29d55e193e81e92a9a9fd0a393f39b136d050efb7cfab6199cca781dfe7aad3c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jre-21-ea.34_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.34_windows-x64_bin.zip", + "checksum": "b0a3bc8afde28d832f534921eafed14bad609f86a28e18f40b13f3eaee5dd4d0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B34/sapmachine-jre-21-ea.34_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+33": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B33", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.33_linux-aarch64_bin.tar.gz", + "checksum": "47078466af73e56979b923edaf419c03eaa1f0a3681a817b15e49da94bdae21b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jdk-21-ea.33_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "bcdcee3ad5a8bd03ea5e270abe59811cf4433f201bed76c193b99868ad4c8386", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jdk-21-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.33_linux-x64_bin.tar.gz", + "checksum": "4438270857b350d19a21afd5883a27a2f86075b0cd1ba447ecdd3a095fe89eb2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jdk-21-ea.33_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.33_linux-x64-musl_bin.tar.gz", + "checksum": "ee941fc7b84320c78e938cea9e128ec23a8f8f992c2df1994bdb5d1cd3188b73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jdk-21-ea.33_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.33_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jdk-21-ea.33_macos-aarch64_bin.dmg", + "checksum": "f36857682b77a8f816cc39d1fbe37f0ed4b4c500c2733a94ca4a34ee7957b490" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.33_macos-aarch64_bin.tar.gz", + "checksum": "eee8595ff4f079bed9f10008ad93517960f37da493abc37221ba538edaf23de0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jdk-21-ea.33_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.33_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jdk-21-ea.33_macos-x64_bin.dmg", + "checksum": "104371bd1c3709faead992b8f53cc713cf7551db7b9351588a7c9dc3a762c154" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.33_macos-x64_bin.tar.gz", + "checksum": "a63325156baccb52500f1fa5e209dd415dff8fd53411d9976d9f4dd4ab43ef5a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jdk-21-ea.33_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.33_windows-x64_bin.zip", + "checksum": "ae7059d719114ae22f0e20260ce17335bc0aab3f6b867354120a47f000816f8d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jdk-21-ea.33_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.33_linux-aarch64_bin.tar.gz", + "checksum": "268077cbdeb42dd465a66d64f693df78150ceb4ea966b580ccbc99bb5b283285", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jre-21-ea.33_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "4ffd3eac995994b2f3e18441c56b383911541c62ab78981b207556e460c90720", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jre-21-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.33_linux-x64_bin.tar.gz", + "checksum": "f2da62b9cd4c600a574df44665b97bdc2de73b541524882bb79ec751a330c63f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jre-21-ea.33_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.33_linux-x64-musl_bin.tar.gz", + "checksum": "86e7208e12c6bcff2fd12b78c6f18bb50542d7f2310ae9a10d6d2d58834bc893", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jre-21-ea.33_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.33_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jre-21-ea.33_macos-aarch64_bin.dmg", + "checksum": "b402b879f84886e27f7d68ba124b3cbe51d18b04703cd82750b24eb47f4573c7" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.33_macos-aarch64_bin.tar.gz", + "checksum": "6d3c84f83db6842e217038d3abfc8ff3cabd12d1e6c1363ddb1171ff3c56b8a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jre-21-ea.33_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.33_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jre-21-ea.33_macos-x64_bin.dmg", + "checksum": "9959a8613c834e79dd0f3a7f2be1a8b2eeb5f57446f3cce6118167946aae504b" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.33_macos-x64_bin.tar.gz", + "checksum": "f0c7e95eadf80c533f0ca06097ba21d50ae096e337b5c1289497e2309e39d3a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jre-21-ea.33_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.33_windows-x64_bin.zip", + "checksum": "1675cc6b93e5de4ee7e1ba3aa1d662f0306ade1628c1286eff50debdd378c815", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B33/sapmachine-jre-21-ea.33_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+32": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B32", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.32_linux-aarch64_bin.tar.gz", + "checksum": "f696808fd5b99d5ab7a35a9368138fb0f8f32ef4c8064e6b40e6d3674b96c8dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jdk-21-ea.32_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "47892500efcf8d52819ecba18245c99b4762640e526fba0b8a514b0b0c92af9f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jdk-21-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.32_linux-x64_bin.tar.gz", + "checksum": "814cd0c3a30d4a1f53683fa060b6c60be78bff815bce57aa82fd20b756f57e57", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jdk-21-ea.32_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.32_linux-x64-musl_bin.tar.gz", + "checksum": "c2231c21d3aea7e348513f3460cca87b32b715b6945956231dc66ac3d1a415da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jdk-21-ea.32_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.32_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jdk-21-ea.32_macos-aarch64_bin.dmg", + "checksum": "11eb4f9cca6553f470881ae2bc6d21f3dec4d6cbcd24feb53eecd8f0f7e5df84" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.32_macos-aarch64_bin.tar.gz", + "checksum": "b8e371faf44a47683077a321e25ff1282b9b77c75d7dffed992453f38d6a5e22", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jdk-21-ea.32_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.32_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jdk-21-ea.32_macos-x64_bin.dmg", + "checksum": "10800937b7c7b7670471caff66df9e4c0dd1850fe03160a32247327a8f5bb43a" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.32_macos-x64_bin.tar.gz", + "checksum": "e9bec4c31301394daefc26c146d74e279a6ea20c4710c62776354ebb5c7a6a14", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jdk-21-ea.32_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.32_windows-x64_bin.zip", + "checksum": "b9e13f8e959e7f5392603f6939be0f7251e4502699ce670a4676e0cf8b543cef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jdk-21-ea.32_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.32_linux-aarch64_bin.tar.gz", + "checksum": "8f74b29dde5e3e400f89a2999d380756249b17b5511008bfba31374f59a5f548", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jre-21-ea.32_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "7d090bd9fe24d04b5699f8adebbb4065d8c56b887fce3bb9130fbfaf089e5887", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jre-21-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.32_linux-x64_bin.tar.gz", + "checksum": "ef195ee08b72ab611a0a3da072f4f6989bcf05c86861302fcd17daeb3d65ec1f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jre-21-ea.32_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.32_linux-x64-musl_bin.tar.gz", + "checksum": "6e30a641e28ccc07d844ff7ae4c6ad5f140562ce371156728b5802cc19e86621", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jre-21-ea.32_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.32_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jre-21-ea.32_macos-aarch64_bin.dmg", + "checksum": "ab37a6f877b6b10ce1c2b67d91451408b230a85d8886b0ed046363aeab9613d9" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.32_macos-aarch64_bin.tar.gz", + "checksum": "6870263837cff5a8d06d69021111a1788e075b2cff259b2b60ef26725fb89cb6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jre-21-ea.32_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.32_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jre-21-ea.32_macos-x64_bin.dmg", + "checksum": "dfea2a026160d77366b236787d029c1647889bece78e1aa61ff3c51d93d30d2d" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.32_macos-x64_bin.tar.gz", + "checksum": "dd433832f1d72d2fd047ed7fca56d85b78fab0970567743d3b36c1870e0b7df8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jre-21-ea.32_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.32_windows-x64_bin.zip", + "checksum": "7f21c5b94710ef49477cf12586d69a88e16f495c2d67d78cfee77049bc651bee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B32/sapmachine-jre-21-ea.32_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+31": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B31", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.31_linux-aarch64_bin.tar.gz", + "checksum": "cec8ca250567c81019e988650bb108fb710c3f6c97367aff948f6da3f4683a22", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jdk-21-ea.31_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "7fa54c0a1433029e9ee54d5cbf8d3e7a45a095e424a8325ebf3a9b888811b3f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jdk-21-ea.31_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.31_linux-x64_bin.tar.gz", + "checksum": "c5283c47a56d4d557c067a20d7432abdb99f8a0016e57becf91780c6550ca625", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jdk-21-ea.31_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.31_linux-x64-musl_bin.tar.gz", + "checksum": "e3f67baa30fd09c132e3ffeed0c84230bf60cfbd42b136b3d000a7fe2ac988c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jdk-21-ea.31_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.31_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jdk-21-ea.31_macos-aarch64_bin.dmg", + "checksum": "cbca1dbf623d0695f33e179707e9e857e3736e649ea6a775d8328d87596032d1" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.31_macos-aarch64_bin.tar.gz", + "checksum": "f6a111834e7a0dacd127e38eab2d148b938b5d92f586e79157a5723998f52e40", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jdk-21-ea.31_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.31_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jdk-21-ea.31_macos-x64_bin.dmg", + "checksum": "9749b4ebe69e040e9611d30524f79056aa5be26b60db160282bc26dad1150e54" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.31_macos-x64_bin.tar.gz", + "checksum": "316b3d7d2f612a98800e132be6c8f0d254325b1f1b29201933fb8b7a3fa39a60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jdk-21-ea.31_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.31_windows-x64_bin.zip", + "checksum": "49b514581bdc7e5b35209abaa0136e2c84aa0b3d3f8b2f63169e16fbf4c5db21", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jdk-21-ea.31_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.31_linux-aarch64_bin.tar.gz", + "checksum": "d2a6447beb3742b926515afa384438259b0796ad23dbac8318c784da5db330f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jre-21-ea.31_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "0355324a788765f5a47d4a146496ff71cf5e7313aee49da995478896b16d2058", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jre-21-ea.31_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.31_linux-x64_bin.tar.gz", + "checksum": "574ac2d5378dde71be120c5526f628e3bbb32bb864d74521c81d474fb7d54293", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jre-21-ea.31_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.31_linux-x64-musl_bin.tar.gz", + "checksum": "be6e56b664919c7b6cd4cd1be820be61b82c0f2000b7a3b3402de6d98f8b4b13", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jre-21-ea.31_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.31_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jre-21-ea.31_macos-aarch64_bin.dmg", + "checksum": "23fb532cb95503f879ff140a30c2f4c6b8c50cd5c4b892242a2e4ff3b62a123b" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.31_macos-aarch64_bin.tar.gz", + "checksum": "ff85a987f9d1bcb9c9a054aa9a5685c019b098a6d8d14df865edcc9e34025674", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jre-21-ea.31_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.31_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jre-21-ea.31_macos-x64_bin.dmg", + "checksum": "f8c2cf5c0271d128a2d78b8defd392532a9a3c7894452f5998df1904685de250" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.31_macos-x64_bin.tar.gz", + "checksum": "fb5cab08d5c4e99e33890060968d0e2fde33c5858aa32da509698fefba0cce34", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jre-21-ea.31_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.31_windows-x64_bin.zip", + "checksum": "c6047aca55609139d8e764538e92efb28a11be7a1a5d918e893e12f03429a4df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B31/sapmachine-jre-21-ea.31_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+30": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B30", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.30_linux-aarch64_bin.tar.gz", + "checksum": "dec1e6e6a0b4928aaf3b180b4cedc371b35941888b2ed135840925dc7c508d37", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jdk-21-ea.30_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "803583ed4329dc8d0875c986074a2db8464e2fb4ff0aa7f136159966d8a5d7f0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jdk-21-ea.30_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.30_linux-x64_bin.tar.gz", + "checksum": "e8ad60aa14c96050c1687622b46d909e30dd9c866bd6434078cca630730bd5d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jdk-21-ea.30_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.30_linux-x64-musl_bin.tar.gz", + "checksum": "2da577abb70ef3477402139c888c157d1c3033098133fdaa27924c64dd054587", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jdk-21-ea.30_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.30_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jdk-21-ea.30_macos-aarch64_bin.dmg", + "checksum": "891391f110689b8f5085f3b1dc4ee33ce205672b6bb76e1b567ff99a0ec08379" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.30_macos-aarch64_bin.tar.gz", + "checksum": "188c6b6dd2e194d025627b10dbfdf4e4f8410c2d1e24357a54f6eac653ec0b89", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jdk-21-ea.30_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.30_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jdk-21-ea.30_macos-x64_bin.dmg", + "checksum": "99424e7f14ab93a7c29a1941149126d56622b0bf3393c5878f5ed4c9b065584e" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.30_macos-x64_bin.tar.gz", + "checksum": "a64cc15e7601c8468a90068305eb4be2a38dd62b8a0b1fd3328444c41edb666a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jdk-21-ea.30_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.30_windows-x64_bin.zip", + "checksum": "1a97d891bf8353cd76e50e10d7627fe895dcf48f58ab48c3ef5cc1c8dcae3dbd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jdk-21-ea.30_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.30_linux-aarch64_bin.tar.gz", + "checksum": "555f1794e1ad74ae3d68f4c114f619c4ad11332b04abbfae5b9ef7f9e596c612", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jre-21-ea.30_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "c0fb786e81f0e0f5b349a28e63bdcef9c8b2e0d5c18eb332774231a6b717098e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jre-21-ea.30_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.30_linux-x64_bin.tar.gz", + "checksum": "1e2df10f4c16c0af52a54e3df2ed6c9c1eff64b98905f4fa9f0da8319e81a64c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jre-21-ea.30_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.30_linux-x64-musl_bin.tar.gz", + "checksum": "34337641458c2b3b28a05ec509957f0fc9da733e68d3768bdf4327a7a3570514", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jre-21-ea.30_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.30_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jre-21-ea.30_macos-aarch64_bin.dmg", + "checksum": "e43a9c479709d2adff1fb00951f584e2c35a85a6a619335d4c4f39966897717d" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.30_macos-aarch64_bin.tar.gz", + "checksum": "abaa3a92d3d825e281ee9ff7b2feaf8d70eda3ee33b8b1c9c2e844289de24592", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jre-21-ea.30_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.30_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jre-21-ea.30_macos-x64_bin.dmg", + "checksum": "825f6f9c6f73381a11e3b2f0d9074ba19c2a3e72e30764bb158eafc9b97c7c78" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.30_macos-x64_bin.tar.gz", + "checksum": "ed63a593dd150a519d5b749c2c6dd8e26ec47a894fd44177222099699a38cbff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jre-21-ea.30_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.30_windows-x64_bin.zip", + "checksum": "635649d0910c5cd627ab3cb27b3f35cb5236db14342544d9259f8f782220174e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B30/sapmachine-jre-21-ea.30_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+29": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B29", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.29_linux-aarch64_bin.tar.gz", + "checksum": "af522b6b21bc8e307941e04a1aa6c0f58c3d57942d01bb047328c577fdc41671", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jdk-21-ea.29_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "7397f9926bece939b5514b7ae77edca6c454c7c17ac93022c142f7ef40d1185c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jdk-21-ea.29_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.29_linux-x64_bin.tar.gz", + "checksum": "3e17467880dae20c0e36df23cfac7b2697fa77cb2f142d73b70025595b92b2fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jdk-21-ea.29_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.29_linux-x64-musl_bin.tar.gz", + "checksum": "dc77ce94ee5daf28f9737b0d187463bfae956b96b8556c4750c34962f3cc12fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jdk-21-ea.29_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.29_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jdk-21-ea.29_macos-aarch64_bin.dmg", + "checksum": "fe7093d6f3ea4e4824122b4aa6c65e4d68275faee55f1d7e62c71ff2bf027015" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.29_macos-aarch64_bin.tar.gz", + "checksum": "17ffc99b8ac9a9bd7f36cb991f00eeb9523e54a73f95f19e45b75bc9803e6f0c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jdk-21-ea.29_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.29_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jdk-21-ea.29_macos-x64_bin.dmg", + "checksum": "63d3f3de8debe9e331eb6627ad89732d41831689ec02315a21108d4d520ce16e" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.29_macos-x64_bin.tar.gz", + "checksum": "44cfb42e74b8ffb0885fe3ce08abdddbd2f88fb7f9d67cd67ae864e708fb62da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jdk-21-ea.29_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.29_windows-x64_bin.zip", + "checksum": "0f1ad3cb90f4a76ce067f8589a64f2a6bcee7669f2915938947b3ebaff243282", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jdk-21-ea.29_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.29_linux-aarch64_bin.tar.gz", + "checksum": "18ab7852a7675e2cea8f61a86308ca396ec9ded79340c00eca84c42f7f47aaa9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jre-21-ea.29_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "966012b76f6bd0725de3dcfa6392992b9055597076bacd1caca43d127836534e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jre-21-ea.29_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.29_linux-x64_bin.tar.gz", + "checksum": "de0d094f1548ed7911da25d19a5361bf3cdf3585a511b17ec6d8aea33df4ebf5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jre-21-ea.29_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.29_linux-x64-musl_bin.tar.gz", + "checksum": "fe36e7dec8211af8bf3c290e75420e685fc726f21f207f75b633660bff0ab1cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jre-21-ea.29_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.29_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jre-21-ea.29_macos-aarch64_bin.dmg", + "checksum": "f8fde4deffe64a6c6b7fed501d6b538e6e86e18591b1016e1489569fbda26712" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.29_macos-aarch64_bin.tar.gz", + "checksum": "5c28fb541f35a165c6a40329ce0046b7ff1a34117bc7bb62a3c6af9ba985c59b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jre-21-ea.29_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.29_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jre-21-ea.29_macos-x64_bin.dmg", + "checksum": "801c18c963db9cbad9184c3a44ab2d25143462c90ea4778a44db62f4dd2fc7b9" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.29_macos-x64_bin.tar.gz", + "checksum": "e767b7156ae5c049622d78f8716f40e3a3f6a71296a00fc0b245a15c3c4b1b2d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jre-21-ea.29_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.29_windows-x64_bin.zip", + "checksum": "c7b032776abad0d14933aea9f4024b0fba104f4a4fcee25b183516869fa99921", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B29/sapmachine-jre-21-ea.29_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+28": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B28", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.28_linux-aarch64_bin.tar.gz", + "checksum": "aa540802fa493d1b55c2ad7081d8239a1a73ef4d756336a17babceee20f9269b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jdk-21-ea.28_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "592b9ec03d11531779b87d15cb3fb5dfcf8e68817c5853a0ff47fd99dbc18053", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jdk-21-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.28_linux-x64_bin.tar.gz", + "checksum": "05f925d8cb7fc08e55c88916c94b9b59354224fad034eb4f992597ca0b52fab3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jdk-21-ea.28_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.28_linux-x64-musl_bin.tar.gz", + "checksum": "0294feccb997f9244fed3f5c66d5407f65aa975c51587056815ace4a92208868", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jdk-21-ea.28_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.28_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jdk-21-ea.28_macos-aarch64_bin.dmg", + "checksum": "3a35f24fcec27b02ec81cca0d63b1e457a84a9093d91dec15b3685d47bbb04c4" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.28_macos-aarch64_bin.tar.gz", + "checksum": "b760f378cba911da76dd49f4a993b5fbef62bbfc123239700656598122ba4dc7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jdk-21-ea.28_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.28_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jdk-21-ea.28_macos-x64_bin.dmg", + "checksum": "f9acbf0d85ca6459f9cd18c5ea25a41f7c62792df417698b2f9641d19b9f0e97" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.28_macos-x64_bin.tar.gz", + "checksum": "6cb7e233636ee83cc768061d0bfec8be53d59cf4f37518f2ad0ea60d06a18779", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jdk-21-ea.28_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.28_windows-x64_bin.zip", + "checksum": "470d90e7199929c4fe0408d673d0e677a7bc3dc5f72ad90b223e4d62a00ed027", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jdk-21-ea.28_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.28_linux-aarch64_bin.tar.gz", + "checksum": "52a66943b715bb613ee18171877899a96529ecd00a8582da22ae4f7a220026be", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jre-21-ea.28_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "e06a17fe0821e9299b61f96a3da6e177e7271dd7bba6c07e15f8c317c477befe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jre-21-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.28_linux-x64_bin.tar.gz", + "checksum": "dddf42c7139ddc9709cd3145c6625a41acf8701b21247d8bf28cb13f8766ffff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jre-21-ea.28_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.28_linux-x64-musl_bin.tar.gz", + "checksum": "3a10b8783ca60ebcc84eff25685fa30aa474833a49d72ed3f565c54713e0fe4f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jre-21-ea.28_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.28_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jre-21-ea.28_macos-aarch64_bin.dmg", + "checksum": "c45daba10bd5014e0cdf28f175b90261f352870284ed1600d8ff8ac86dfc7694" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.28_macos-aarch64_bin.tar.gz", + "checksum": "6d55b3876d8a0c6c2b158f5d4ecbc36a50513dda6e8ac5e173fe8ce31b739f7a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jre-21-ea.28_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.28_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jre-21-ea.28_macos-x64_bin.dmg", + "checksum": "0db26fd90f39cf22d02b64d499f2ec351c279063a9a13d56b995a3e1b14ee6c1" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.28_macos-x64_bin.tar.gz", + "checksum": "726691e29441f7eddb3c4927014e1fa197c26df67f709dd1742f54dc88fa9161", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jre-21-ea.28_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.28_windows-x64_bin.zip", + "checksum": "1bd39a8a002045ecda712f6cda05df95d576e983900356474b2f4003bbe136ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B28/sapmachine-jre-21-ea.28_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+27": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B27", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.27_linux-aarch64_bin.tar.gz", + "checksum": "524fbabf7f7611b32b035e6f6e0a7d90522033b8138821078699094c005e5d36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jdk-21-ea.27_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "a508725cd0c4f8ef4799b1736092a7c5f0b8c32a7a4fd92e9e6a103e00859dd6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jdk-21-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.27_linux-x64_bin.tar.gz", + "checksum": "c510638b1c055017dff4cf83a6f3db644acb2fca05c714aee2701a6223725486", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jdk-21-ea.27_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.27_linux-x64-musl_bin.tar.gz", + "checksum": "1a1a27c6ee14458caba952f0615a3da6192be882e0e92ce3aea1bbe43d2b17d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jdk-21-ea.27_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.27_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jdk-21-ea.27_macos-aarch64_bin.dmg", + "checksum": "fe1d558998c194e89f9f32c51b2e3e6aeb1679295ed74fe86e44214081639d0c" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.27_macos-aarch64_bin.tar.gz", + "checksum": "4e6d61d8bf9c1caadde495827543d2a8eccc0648e7d4e8b60efa81853a79b094", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jdk-21-ea.27_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.27_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jdk-21-ea.27_macos-x64_bin.dmg", + "checksum": "df57ae4c5b8f768f17d8bdd6885ed3cdfbed519e4faa0df8553c42eb7db164ec" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.27_macos-x64_bin.tar.gz", + "checksum": "6fb45d26c0cbb5ce4e3a555b5fe9517360adc7ce02fdd91f93ac4355fa7dc3d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jdk-21-ea.27_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.27_windows-x64_bin.zip", + "checksum": "13ccc8c371fbb25d48f7e18bd76280ac6cd6cbd7d3294d9998ea525c7c73e5e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jdk-21-ea.27_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.27_linux-aarch64_bin.tar.gz", + "checksum": "ff40c3c489111d07d80dd6f02d215240d93e14547c16661c7bd07d6765dbaab2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jre-21-ea.27_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "4dded10eedbeca7d1290a278fe3f5f46543c02290a333e121052ae2ade991160", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jre-21-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.27_linux-x64_bin.tar.gz", + "checksum": "adc5dc9fa5c0eaa0efb25a214bf0d6f55eca8cb210cb80864b2039fc9c9094af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jre-21-ea.27_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.27_linux-x64-musl_bin.tar.gz", + "checksum": "bc7f544f95c17156b7f75c38142723ad230a389bc9070dd35d1c2e631de05fd3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jre-21-ea.27_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.27_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jre-21-ea.27_macos-aarch64_bin.dmg", + "checksum": "a7630a8e26ed7ab972f96e14b9ef27e652ac40977da7958d44b0acd006e3af18" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.27_macos-aarch64_bin.tar.gz", + "checksum": "126b6d96730512f12459d53b7b2461c24fbeae3e6fc55b128087c2796d508d29", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jre-21-ea.27_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.27_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jre-21-ea.27_macos-x64_bin.dmg", + "checksum": "8e757c7c8def124a6f770beb3961e6379478e40bdb78f31c5344679b83adee7f" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.27_macos-x64_bin.tar.gz", + "checksum": "a4c198d159bebb3082ca04ff2b3be0f4d287041d06d786b8961282738b478301", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jre-21-ea.27_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.27_windows-x64_bin.zip", + "checksum": "b717e5dbcf593e549acebbd696fe78082b1c182dac315420c18258997d9c8d49", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B27/sapmachine-jre-21-ea.27_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+26": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B26", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.26_linux-aarch64_bin.tar.gz", + "checksum": "84875b55fb798cf8a9b003bf9a4cab9cac7ac28a9314000bf1f4531c448f85e7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jdk-21-ea.26_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "aa624562b125663ee8e9b6b37a7da0fd0bbe4aef68ed6dcc95593adab498f659", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jdk-21-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.26_linux-x64_bin.tar.gz", + "checksum": "820bec726a6e01efa54019d032e7dabaa4b8ad5d22bfd6568fe53a3e56b84fcc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jdk-21-ea.26_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.26_linux-x64-musl_bin.tar.gz", + "checksum": "271802127798fc5da06f6f62d25c6d39e36a8469ff700fb55ac51a6a97b0b705", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jdk-21-ea.26_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.26_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jdk-21-ea.26_macos-aarch64_bin.dmg", + "checksum": "de6637446bf8d536bfa4f99ffeb1b63f52ef0330a20cde77500aa1da903684ed" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.26_macos-aarch64_bin.tar.gz", + "checksum": "176eb28512e9aeb6993634a9dc0ae722a9f694320ac47d1f530b61c1783d3142", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jdk-21-ea.26_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.26_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jdk-21-ea.26_macos-x64_bin.dmg", + "checksum": "9470ba921676eafd2f9195d787f8b6ca7a219c5c14efaba5f8928fb2b26483d3" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.26_macos-x64_bin.tar.gz", + "checksum": "d28fc56c32c583db1d3ddb499e8d345af19ad46baf9e2bd2b88761a01996ed4a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jdk-21-ea.26_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.26_windows-x64_bin.zip", + "checksum": "2622628f0a941ec7e68720dd7fd6b1e7ec71936411d2a1b829b8eb6458251020", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jdk-21-ea.26_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.26_linux-aarch64_bin.tar.gz", + "checksum": "53f41bc2d38eae9ceb1356acdeef2a79c66797abdc3ae714b4370a264f315018", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jre-21-ea.26_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "5c5d9c9819d7acb67672553635d51fc37971d50618b458e74fe8abb46d6529a7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jre-21-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.26_linux-x64_bin.tar.gz", + "checksum": "4d44b32d5b4404707e38dcb4b93ced979e1b9949b80f61604f005105bd488b8a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jre-21-ea.26_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.26_linux-x64-musl_bin.tar.gz", + "checksum": "9d013ebb3debeab1a26db2a8146b7150a1e6f3220e1520173f0eed30bbe2a2fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jre-21-ea.26_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.26_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jre-21-ea.26_macos-aarch64_bin.dmg", + "checksum": "5d530c27052ffdf8713c144b5bef9754dd3b1f88156773317da5c894ad5ab3c0" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.26_macos-aarch64_bin.tar.gz", + "checksum": "1ab89b366be0ad05a2cb3158913531f0d2ecfab3ac2ac78146f15853ce075170", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jre-21-ea.26_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.26_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jre-21-ea.26_macos-x64_bin.dmg", + "checksum": "eb26201d70f75a09bc282ec273b2c454f953baff1663987cf9a1dd7254e1706c" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.26_macos-x64_bin.tar.gz", + "checksum": "bd4f76342b83c3a7cff0550b1bf42356fa0702c0e76a410f9c4db4608d1edc3d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jre-21-ea.26_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.26_windows-x64_bin.zip", + "checksum": "92905a2215b780d3cfa9134b9662295ba277d3e2a677624e7b06a40fbba55a91", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B26/sapmachine-jre-21-ea.26_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+25": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B25", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.25_linux-aarch64_bin.tar.gz", + "checksum": "f23f54f42f7f3eda830b90bb6c07bbaa55593a89cbd45068e7cf3a242e67859e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jdk-21-ea.25_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "85ade3791cbf755106e50ec060e7be7b840e47beba5ccba0bcda4baa511fa022", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jdk-21-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.25_linux-x64_bin.tar.gz", + "checksum": "e89a7afca10e89c7f4ffcfb19b1c9da4c2cfbb772b924a143c7ac5e62cca9564", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jdk-21-ea.25_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.25_linux-x64-musl_bin.tar.gz", + "checksum": "058efabdb59859f3ab5f99ce008c960f31e4b841d8c5b00530f351ccee0770ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jdk-21-ea.25_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.25_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jdk-21-ea.25_macos-aarch64_bin.dmg", + "checksum": "b2dc88d1a8354db3a471a103e6b261a4c9a1fb25c5a33c36661bb3062449015d" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.25_macos-aarch64_bin.tar.gz", + "checksum": "02db1de1b082b0c3f4e59b463834b568e05da4dbb8716e7cf84ba8c1b407f6a2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jdk-21-ea.25_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.25_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jdk-21-ea.25_macos-x64_bin.dmg", + "checksum": "79368a7a782fd76d60a9cbe7a1a565c6e8488c7de821e071de4b7d84f53777fd" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.25_macos-x64_bin.tar.gz", + "checksum": "a68eee2068c1b2c172308da67644bc398bca0987316cbfc94ec20d14d697521d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jdk-21-ea.25_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.25_windows-x64_bin.zip", + "checksum": "4681b07e525d260956d5496f51bd5a6895d92ea06da3bd57f189571d4ceb8a94", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jdk-21-ea.25_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.25_linux-aarch64_bin.tar.gz", + "checksum": "a3d51a192620bbf7377a419c5faaff54abefd7b6c9b4d422a0ee5a627f2e4a39", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jre-21-ea.25_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "a3ffca72f9d4d128178683e000a4410346b92367aa087f5c978260cf331b0ed7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jre-21-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.25_linux-x64_bin.tar.gz", + "checksum": "8d4acebb7e311cb21af66a08c88ccea890a2e60c607f7cd5122a56433153bf89", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jre-21-ea.25_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.25_linux-x64-musl_bin.tar.gz", + "checksum": "1c91a6f632d3d7b467d4e465711547775b691a74fb458602599daaa3bda556a2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jre-21-ea.25_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.25_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jre-21-ea.25_macos-aarch64_bin.dmg", + "checksum": "12f86a5942fe4adb95e0cedd794d616434e203cff2bf354f95e712cdf55ec483" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.25_macos-aarch64_bin.tar.gz", + "checksum": "af9ac037cdadab099c2b55a2a01bb8ca005eaabc697f25cb5ecc87ee62976363", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jre-21-ea.25_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.25_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jre-21-ea.25_macos-x64_bin.dmg", + "checksum": "4eaf4f4adc043ad5cd8a0769496e9546e7b8fcd725094a4b70c7c9ccd70940a3" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.25_macos-x64_bin.tar.gz", + "checksum": "42ae47719e3372e7a7517c7ff3a6e2a00743e0e57004d18fe1d8b9ec653dc514", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jre-21-ea.25_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.25_windows-x64_bin.zip", + "checksum": "d6f599513743f2bfdccc858aa7884d2cb2f855d3eb647a9b2a3e3ab8911d92f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B25/sapmachine-jre-21-ea.25_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+24": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B24", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.24_linux-aarch64_bin.tar.gz", + "checksum": "775d76d4abcb7f185c880e9eb0a5aaabaafd55a3fb611225ed0f5ecbd645d090", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jdk-21-ea.24_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "54fc1967750c75e2a9edf9594375333151d3ea1dd8b9f0a4cc381ec44fc64bd3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jdk-21-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.24_linux-x64_bin.tar.gz", + "checksum": "2df696f38ce24dc3e36494e983e1b2bff78ab9ca3d6f535a7a59df99aa35e391", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jdk-21-ea.24_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.24_linux-x64-musl_bin.tar.gz", + "checksum": "211f5b38a67ab85e98e00bd3380430173cff70a52e7a1c91565dd1a7e7092c88", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jdk-21-ea.24_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.24_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jdk-21-ea.24_macos-aarch64_bin.dmg", + "checksum": "45ca7fba0bd3cd368c6a8987f3c01195113e3ec3be8c9e08cf037baa9afbe50d" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.24_macos-aarch64_bin.tar.gz", + "checksum": "f84a4f8fca82f9ea21046f1d7a15772b991b555c31b7d0680da0acfac73d48ab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jdk-21-ea.24_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.24_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jdk-21-ea.24_macos-x64_bin.dmg", + "checksum": "5cb154aa7f10f0a1c5d121e1450d0a147ca500015cf63adf3d45eb4a1fd845aa" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.24_macos-x64_bin.tar.gz", + "checksum": "68a781ebfdfca83b75daf7fcaddc95083dcab9a597003c2dfc76e6235e494d7c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jdk-21-ea.24_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.24_windows-x64_bin.zip", + "checksum": "9cc605388cde0895d6a7519acd0c75987cfeeea02c967764c642922312d6bdbf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jdk-21-ea.24_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.24_linux-aarch64_bin.tar.gz", + "checksum": "f76c4a2c9d237a6dfbb4629fd8073e89650edfe1a69a0abcb91c52fa0a65ddd6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jre-21-ea.24_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "1908f9998ab9c379e56533e829662e589d810707c2b05beddddb1e2631eb2373", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jre-21-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.24_linux-x64_bin.tar.gz", + "checksum": "7aa5ed980c02c0cae420fbed21629903320b383dd793d926ec61eb0da6ac9e6a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jre-21-ea.24_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.24_linux-x64-musl_bin.tar.gz", + "checksum": "3d95b596c9a88fe085571c84498af24c47f68df490d04eef94886daa5b2b3214", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jre-21-ea.24_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.24_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jre-21-ea.24_macos-aarch64_bin.dmg", + "checksum": "0b6caf6bf2f3db3fb73ea366594cbe4dc29af353ca813d16d3033fb2acb6e1fd" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.24_macos-aarch64_bin.tar.gz", + "checksum": "15a00491fd00b05887bb61777403556a12f914864a39da1b83b93ede32e5c176", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jre-21-ea.24_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.24_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jre-21-ea.24_macos-x64_bin.dmg", + "checksum": "41e35ed96d7b2be61c82ad05b4563d3e44fd11570e4dbddf959443cafc060c3d" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.24_macos-x64_bin.tar.gz", + "checksum": "1dcb99323b80b47a8b3916bfe08f6d082e6b9bd2abf7e6ffd4e33d1e0f245248", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jre-21-ea.24_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.24_windows-x64_bin.zip", + "checksum": "edb797d48fa7d90e8c68b4317befdcef0c8dc9b64574e7d917bafa166cb5356f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B24/sapmachine-jre-21-ea.24_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+23": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B23", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.23_linux-aarch64_bin.tar.gz", + "checksum": "85243bb74ee9eace4c6fd67e08737112311bad21b0321d07155bbd9af35456d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jdk-21-ea.23_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "c1ae390bdedcd50eb519b76455c74525d8525b6cf399aefe4b11b3346a8854b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jdk-21-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.23_linux-x64_bin.tar.gz", + "checksum": "39e4d81dc1decbb7438eb4d02404a8d34e055774917974e0fcdbe18fc85cc90b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jdk-21-ea.23_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.23_linux-x64-musl_bin.tar.gz", + "checksum": "647e348aa1799d53686148d5ec1434e797fe2bf40df88b69df43ba4d4dd07452", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jdk-21-ea.23_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.23_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jdk-21-ea.23_macos-aarch64_bin.dmg", + "checksum": "016cc3bc174053c4a43e852c8aa9b7a4bf33658a397aa8e2e85ddd6dd5f1c34b" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.23_macos-aarch64_bin.tar.gz", + "checksum": "27b2ad3ebc15cea810f37f1f71914512cd0085d1115bf83e8765ed4144b0f9bf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jdk-21-ea.23_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.23_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jdk-21-ea.23_macos-x64_bin.dmg", + "checksum": "646ffbd9f2668be09e2ccd8533f3cf9d49c05a4ddecc6222396abe6abe4d80f7" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.23_macos-x64_bin.tar.gz", + "checksum": "ea2d8bb30d3e4d3fade9e751394f4e16407cddd4c702303ce5272d1b0452ca45", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jdk-21-ea.23_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.23_windows-x64_bin.zip", + "checksum": "c84780a9f0ab8bcebf74fd94a964bfc3b4e46c091666b7a9b3814730593a13c5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jdk-21-ea.23_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.23_linux-aarch64_bin.tar.gz", + "checksum": "5b33886e9fe21aad8bf83c60505a0d847ec6ba38ac4d3671877daccae8e443a2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jre-21-ea.23_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "21d55e5a5696fdce68f9ca095b67a87dd3e5627d363bf0b17f5440c371b2652b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jre-21-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.23_linux-x64_bin.tar.gz", + "checksum": "f7f8a7e66357c3965ce1733661f86de5a5c3271c57189483d441d4e385bfa448", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jre-21-ea.23_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.23_linux-x64-musl_bin.tar.gz", + "checksum": "0f219c083a6861ab547cd7648e659c97b55c493454160e44f85ff31689a0ed2d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jre-21-ea.23_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.23_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jre-21-ea.23_macos-aarch64_bin.dmg", + "checksum": "85a35d3e6515f31b12d658f8785cffc975fb617b160460a4de071f2f05e950c6" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.23_macos-aarch64_bin.tar.gz", + "checksum": "fc4f28e6edc1fe80e4a95c3551c7dd39153be8e12262efa0dde1e727085b3fde", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jre-21-ea.23_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.23_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jre-21-ea.23_macos-x64_bin.dmg", + "checksum": "efb8531a162a305f95e07bb92ebddcf11a167f7bbeaa76a13c05527f8f586665" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.23_macos-x64_bin.tar.gz", + "checksum": "5c5d9d5f57f3378ee2336322ed870f6ccb49e0ffeaeafb6ff7c62aeb70d13817", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jre-21-ea.23_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.23_windows-x64_bin.zip", + "checksum": "610272326b300ef5a848539f735a8455465d40131871957a36b5bffb3487322f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B23/sapmachine-jre-21-ea.23_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+22": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B22", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.22_linux-aarch64_bin.tar.gz", + "checksum": "8aac441bb5df92ef1f9fa78ea9b0162ca458ef8b4adabe2f9918e08ac566dadc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jdk-21-ea.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "ee2803912bdc8730f84a98ba413e4b5aa6e54db359f2ba1e5aa2cb8b6fb87d64", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jdk-21-ea.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.22_linux-x64_bin.tar.gz", + "checksum": "48444c8f34a38667ae59d62016c3305913a722a736f2713c27f2edc44f00532c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jdk-21-ea.22_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.22_linux-x64-musl_bin.tar.gz", + "checksum": "81e423c46edaf57a2cbd190d36d7ae5fe7f7ce38ddb906771663fce90f8cc83a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jdk-21-ea.22_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.22_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jdk-21-ea.22_macos-aarch64_bin.dmg", + "checksum": "ddfd5ae2db66fc678f1997932f7f9e314b142d27c76bdfe35cebfeb0eae56506" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.22_macos-aarch64_bin.tar.gz", + "checksum": "1f8b5514051215fd755e34c39d560ad56f9b79438598d617cd0b217cc0749460", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jdk-21-ea.22_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jdk-21-ea.22_macos-x64_bin.dmg", + "checksum": "2c6ef6543a16c1528e274ec54281c6de42a36ad554732546472c8094d9399665" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.22_macos-x64_bin.tar.gz", + "checksum": "9de5d9df407a912b2e6afead0265391902ec3ad1e380f67873f6c3007b239ade", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jdk-21-ea.22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.22_windows-x64_bin.zip", + "checksum": "e35e97581e9f0ab0e80a9a842d2f1810731d3cdc42fb4c299abf871511e58c09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jdk-21-ea.22_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.22_linux-aarch64_bin.tar.gz", + "checksum": "2fd96478bae731ce070f0f673fbae1a5fe5be33c6d679bec05329f2c98d9221a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jre-21-ea.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "2aab47185bfdc02823acb1ebb5dbf31bd26adf7a92b8c898731b13f7718bd5bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jre-21-ea.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.22_linux-x64_bin.tar.gz", + "checksum": "1cda3c15ef37fc8ef083c3ef4b2480b09144d9f2321770de1ef2e3093bc2feaf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jre-21-ea.22_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.22_linux-x64-musl_bin.tar.gz", + "checksum": "86a9f9fb549d0ce269b5513d7fcda1ca887d3250e8dfcad6fcd230bd008b6b60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jre-21-ea.22_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.22_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jre-21-ea.22_macos-aarch64_bin.dmg", + "checksum": "b1bdfa829f35211f932b6e005ee5e11123cb84ad53b14aadb9201b0fdaf97d12" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.22_macos-aarch64_bin.tar.gz", + "checksum": "a6a7a483268ebd8adf4ac63f79294a9b00556212b698d36d96528814b6e36ddd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jre-21-ea.22_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jre-21-ea.22_macos-x64_bin.dmg", + "checksum": "fe5d898dfaa9c0fadae08b63782fd1472bc96a8c3ca17830385f0ac972aa32f0" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.22_macos-x64_bin.tar.gz", + "checksum": "ae91870de5b0f6f938e48b8135468133d3416dc66ba3c3b4ec92f17341728065", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jre-21-ea.22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.22_windows-x64_bin.zip", + "checksum": "9388c9856eeb86e91b8d2d619af89449d49bb5ac0cb6e0270954d7d701120c4e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B22/sapmachine-jre-21-ea.22_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+21": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B21", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.21_linux-aarch64_bin.tar.gz", + "checksum": "5d1c5f7057ebca6b6415a93e9de946dbe8c57ec268caeb457867041b599577db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jdk-21-ea.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "8c49b76448f053580cf09d01bcc75f06fc2677cdcb1443bc2943ec8c5e485d60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jdk-21-ea.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.21_linux-x64_bin.tar.gz", + "checksum": "ca1adf07cc13f4e779d924bf7d9dec37c9de89b51075349284584a67d9da61f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jdk-21-ea.21_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.21_linux-x64-musl_bin.tar.gz", + "checksum": "0305b30a16f77dece7e730012fe097692f27794ceaf1a0096ddd6be82b167a66", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jdk-21-ea.21_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.21_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jdk-21-ea.21_macos-aarch64_bin.dmg", + "checksum": "1912d9500c63eaabf3a47cdfcdb49efeb7e88a5e8505736b2b2c6de0760200c4" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.21_macos-aarch64_bin.tar.gz", + "checksum": "0aa1e63e65095b7647f2d58141c47a50108ac937e098e42b92973df61c9f9ebb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jdk-21-ea.21_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jdk-21-ea.21_macos-x64_bin.dmg", + "checksum": "8af65bc9f90ab0250748a69e8939b5d8178cc98a26086f46dfc24cf2fd1d90a3" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.21_macos-x64_bin.tar.gz", + "checksum": "57dc5e780bad9b51a9a2a3958fc72af3331f55750a10f88ca11aff91e87a5331", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jdk-21-ea.21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.21_windows-x64_bin.zip", + "checksum": "4c844256b7e77714e55ff133bc088e0ae4b68dc7fd5dfc8a4b1b19449a6aae11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jdk-21-ea.21_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.21_linux-aarch64_bin.tar.gz", + "checksum": "5e55d1f19ae3ac11fe599bbc9692e590f6087583a600a2edeaa9ef283167279b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jre-21-ea.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "3809e6d09377006a79a6dad20abb6a3547d297c0187b649cef3c1241b7578eaa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jre-21-ea.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.21_linux-x64_bin.tar.gz", + "checksum": "a629b214a1c3e5e91c71dcd6c5c132f25f55e69af5da59f52419eb67945a748b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jre-21-ea.21_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.21_linux-x64-musl_bin.tar.gz", + "checksum": "d30a67045c5c9d4fb64982dd63cd103abb7d42900be7197f62cbad7d8da6995c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jre-21-ea.21_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.21_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jre-21-ea.21_macos-aarch64_bin.dmg", + "checksum": "9d631f707cbff589b6c6111d431752150184281f111752d457519689ccea9201" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.21_macos-aarch64_bin.tar.gz", + "checksum": "4ae66d4730c2a38bb47182be6c3acdd19fd6e73043b1e109102e83f6d0fa216c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jre-21-ea.21_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jre-21-ea.21_macos-x64_bin.dmg", + "checksum": "895edd076e8346177d5a5e5f0541b2f2da7e0d482f1b245bd5597221ffa0f618" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.21_macos-x64_bin.tar.gz", + "checksum": "14adc782a713e7f2e9eb257f1d955982160d8c78e655b920b37d801c1176e5f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jre-21-ea.21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.21_windows-x64_bin.zip", + "checksum": "a8900f275bfc13662659803cf76608b41a3f3134f7874bd11b45e4fabfef31a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B21/sapmachine-jre-21-ea.21_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+20": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B20", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.20_linux-aarch64_bin.tar.gz", + "checksum": "538778f2d7957b5fc2f7da4ca9b3aa841e3cc29ad7f2d45abc4a4d0e0fea9c30", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jdk-21-ea.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "5cd9ed6582693be84149dbd007f53d1f543d04a1d465bae8af77a2399484dea0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jdk-21-ea.20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.20_linux-x64_bin.tar.gz", + "checksum": "e0a951fdc96ae702ed3c3c1e104a503d1eda9962cb9918ef180f606c1a347ef1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jdk-21-ea.20_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.20_linux-x64-musl_bin.tar.gz", + "checksum": "992a41ef0a4b16feb8f4b4902d2511aad0c69dba024d785ffb3b32c868095930", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jdk-21-ea.20_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.20_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jdk-21-ea.20_macos-aarch64_bin.dmg", + "checksum": "3fb67e5cd5acc2a98efc3422a7b0af16b8c1b7a1462689f95b2b9766624f8c44" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.20_macos-aarch64_bin.tar.gz", + "checksum": "a72cb8c1b53e25397e965609a94d3b9fee19579eed4b9f53d80ff854d3051c66", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jdk-21-ea.20_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.20_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jdk-21-ea.20_macos-x64_bin.dmg", + "checksum": "c6305a4a0c5e3448552554612761468e48eaa013de88368834580fb063c92909" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.20_macos-x64_bin.tar.gz", + "checksum": "08001f20623c4ac6a506bcd935cb92ae68594a2298c9126f66a198bb416587c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jdk-21-ea.20_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.20_windows-x64_bin.zip", + "checksum": "714e90835d579d3e2a7c976204167048e1785cd6fcc8d9a31c9db72dc89fa2b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jdk-21-ea.20_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.20_linux-aarch64_bin.tar.gz", + "checksum": "bfa4755f3582562278a2554fdcb789962280c638c21968ee645ba2c832a13444", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jre-21-ea.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "ff2aace219891b05e8879b592125b114c7ec83c48bce9a942cf1127780199218", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jre-21-ea.20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.20_linux-x64_bin.tar.gz", + "checksum": "d656075bd07b0fe6448a349dc344546145480e848fc483b9c74866fa2d130532", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jre-21-ea.20_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.20_linux-x64-musl_bin.tar.gz", + "checksum": "cb196726d6e471bddf6c7c3fc18b647f32d4276905453b7b23f90bb623575e97", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jre-21-ea.20_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.20_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jre-21-ea.20_macos-aarch64_bin.dmg", + "checksum": "55db16a7a3bca15b95107c4abebd879bf2a46a6bc6b8ac11064080ffce199eb6" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.20_macos-aarch64_bin.tar.gz", + "checksum": "feaecc7163d105ebcdb479ae37349799e5d91534d75212d7b6d49769e9d00921", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jre-21-ea.20_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.20_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jre-21-ea.20_macos-x64_bin.dmg", + "checksum": "06d6b990482a801d7d0be13e2652787cce118f58cbc53de3d9c08f1f18e82bb4" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.20_macos-x64_bin.tar.gz", + "checksum": "0f05879fad44399fd4024838af8dc4a3124f6b306a479d924fe95b7b5ec631ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jre-21-ea.20_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.20_windows-x64_bin.zip", + "checksum": "365c18c5e7fd0be971dd75814e46107c98cdac7c6ee22744b8dfaad42a236e42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B20/sapmachine-jre-21-ea.20_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+19": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B19", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.19_linux-aarch64_bin.tar.gz", + "checksum": "e4b66c44a95a4b4b47d1a39269edbc5fd567544adcc232f1178159abdb747a0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jdk-21-ea.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "2f413394d13848c157af3ce89ae4be37fac5c7bc462ccfcfc22f7ed6f3b5fb75", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jdk-21-ea.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.19_linux-x64_bin.tar.gz", + "checksum": "0e2b356b0dd26f7433cad2a684066a2ba5116e99d1fead31a235e7fde8febb99", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jdk-21-ea.19_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.19_linux-x64-musl_bin.tar.gz", + "checksum": "e475fb4894e6bbef820f8c160b61830bc3b9957b0c366090d6e475c9e4ca518c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jdk-21-ea.19_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.19_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jdk-21-ea.19_macos-aarch64_bin.dmg", + "checksum": "641bd4cdc64d1156c347996033a1df42dfa4f17d0d040f7a7d01f4da8378864d" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.19_macos-aarch64_bin.tar.gz", + "checksum": "47a01393941b4308de4e2b9644bfc892490656ee57663da8adf1046a61caaa8b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jdk-21-ea.19_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.19_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jdk-21-ea.19_macos-x64_bin.dmg", + "checksum": "ffa043e7a3b920b4313fdf470737d22d3a9f3668d46aa9932f30c0cd700b8e66" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.19_macos-x64_bin.tar.gz", + "checksum": "7cdbef3a028efd595e8ec3f2395b9ceff4fe11deff6aa005f52762c1cad84d43", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jdk-21-ea.19_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.19_windows-x64_bin.zip", + "checksum": "5abdc3729b1a803e92986a1309f34dfefc6b2cdbeb62de5844afa6a7be153c5b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jdk-21-ea.19_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.19_linux-aarch64_bin.tar.gz", + "checksum": "5489264241dbf7e46339df890ead720782226012877df161b105cd9c1f8313a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jre-21-ea.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "eac9ab46885a70b21d7afa24a82d6e858da77184e11d31943507df6d52c2c3e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jre-21-ea.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.19_linux-x64_bin.tar.gz", + "checksum": "3fee9605f9517ea40e843c22122b20ab3cd54fe0f35f5de1dbf078160e585eb4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jre-21-ea.19_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.19_linux-x64-musl_bin.tar.gz", + "checksum": "dd329f35508ad2518322f64f711f072a98d6ec314deac1757f3b070c27d25e5c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jre-21-ea.19_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.19_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jre-21-ea.19_macos-aarch64_bin.dmg", + "checksum": "b99b6e99f5eef70f278d1435feabbb405ba47f541deeb2595fed4b2bb2448799" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.19_macos-aarch64_bin.tar.gz", + "checksum": "db16993d5656cdaf5825e8285ce34f008bcfc2f5e48d37461756f5691003f8ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jre-21-ea.19_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.19_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jre-21-ea.19_macos-x64_bin.dmg", + "checksum": "03cbc0f85b866a25d10c1ccfb521d1503cdefc4a21e20c7c80589d5314835106" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.19_macos-x64_bin.tar.gz", + "checksum": "c700c4cef10baa944892561f0c7e0a80bff3fd2d881d2435f4c656cc89b40395", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jre-21-ea.19_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.19_windows-x64_bin.zip", + "checksum": "f0ec41299fb1ee0a4e8c5828cd8a2c3985329c2ead54321f8495ba5cc20279ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B19/sapmachine-jre-21-ea.19_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+18": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B18", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.18_linux-aarch64_bin.tar.gz", + "checksum": "dc8ede39dcd73c8568351d6bdabedd42129c3c109492188b1840fa262a66ca17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jdk-21-ea.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "6e537a119f29c65a0b1c7c4f87836eee6adc62f29e08eddc16bbd2fd479bc538", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jdk-21-ea.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.18_linux-x64_bin.tar.gz", + "checksum": "cbb85e90ac97f5a83ea986d5b0c8fb398b11cd36fff7b9b1591a54bda2981c49", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jdk-21-ea.18_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.18_linux-x64-musl_bin.tar.gz", + "checksum": "ac5675a50d3028ac75e9cdf84154d2fe934f033ab2308038381fcb2b7e5f6738", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jdk-21-ea.18_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.18_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jdk-21-ea.18_macos-aarch64_bin.dmg", + "checksum": "5848dbc19bc06271806701c02a4b60fe1ab3427e70b9e0e56fe72e420ca797e0" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.18_macos-aarch64_bin.tar.gz", + "checksum": "056a53120d3ef4208d5163bfa553d879e1080a6a5cf4470e6278f141bf8ffb9c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jdk-21-ea.18_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.18_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jdk-21-ea.18_macos-x64_bin.dmg", + "checksum": "a621ae8bc066c67f47d24583738220e77ade0063f661ca3ff8c91587cbc50bff" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.18_macos-x64_bin.tar.gz", + "checksum": "69b0ed11929518212dd12f88d905746fffc0023689b588a71d58c40f34c3b12f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jdk-21-ea.18_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.18_windows-x64_bin.zip", + "checksum": "06869a2e400de35faebf7879dae79fb57b0eb76b44e073b6040e3166541f4645", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jdk-21-ea.18_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.18_linux-aarch64_bin.tar.gz", + "checksum": "bc5a73778e39b0dc152c75d9288e8a6764604b81eee2280a1d4eb0bf08e15084", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jre-21-ea.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "89a3de3bdfb4c25a70908fcf0bde4a7d75f9351aef99e23a3470e7752956543c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jre-21-ea.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.18_linux-x64_bin.tar.gz", + "checksum": "d8b1f543b9a4452d9b6d7ee4b0d7533e65cd5638e51ae3b7109acff0b4756372", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jre-21-ea.18_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.18_linux-x64-musl_bin.tar.gz", + "checksum": "21811ca46bb3523e08b306ba53995e23047ff53ae4eaa020021869fc365c648b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jre-21-ea.18_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.18_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jre-21-ea.18_macos-aarch64_bin.dmg", + "checksum": "b014f8ac92a6f5d9ac09d77081b6623bf69ed27db89da7a4ae1ab32f1400c7ad" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.18_macos-aarch64_bin.tar.gz", + "checksum": "a3ffbd02cedb53b4c6b4aa569c08986f255eb2f3155f94a163ff6d6aa183d5d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jre-21-ea.18_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.18_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jre-21-ea.18_macos-x64_bin.dmg", + "checksum": "f06e1a0a18c0fb330e15c68fe4139bb30ad525ffa166d331bec1382f2d8d522c" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.18_macos-x64_bin.tar.gz", + "checksum": "a1217bd45fde15cb9b3cf16839fe1506d1f2a2f01418cde60c3bc3c9b4387ae8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jre-21-ea.18_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.18_windows-x64_bin.zip", + "checksum": "5b4e57e3d7a347a88df7a59971c5f8d33ab9e2087f17747db58ec3fdd86c8ef2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B18/sapmachine-jre-21-ea.18_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+17": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B17", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.17_linux-aarch64_bin.tar.gz", + "checksum": "054027b936a4fb6eade0522ceff821446680a6e23f1be90e791939c6c6a86d72", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jdk-21-ea.17_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "dd1e0c15a6651048d92d384c38ada8537f3bdd6f9154e94b152739c1f7257303", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jdk-21-ea.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.17_linux-x64_bin.tar.gz", + "checksum": "d3525b944df5fed1231b34507b8a219da885844ed21a1d2b46df6bdb7f883af6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jdk-21-ea.17_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.17_linux-x64-musl_bin.tar.gz", + "checksum": "073a664891cac4a8f8aba06db5bef419a366a5fd8680c1f38a080637540a75a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jdk-21-ea.17_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.17_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jdk-21-ea.17_macos-aarch64_bin.dmg", + "checksum": "8c79819886a6b8260fbfa6009ce7f1843df9de081d04acaa9835003c9eb3cd87" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.17_macos-aarch64_bin.tar.gz", + "checksum": "00811aab86c5443a6bf7bc39d6ba233729b62800460e6dc46b964b237b386ccd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jdk-21-ea.17_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.17_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jdk-21-ea.17_macos-x64_bin.dmg", + "checksum": "37c3e77cc7fba91aebc5b6c46c410546d676fea67c6648819578bbcf0ff4f68c" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.17_macos-x64_bin.tar.gz", + "checksum": "bb2a568214fd81d93995e8944ceeb8ac9983083dd2e5b179d3b8fd44d693e3a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jdk-21-ea.17_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.17_windows-x64_bin.zip", + "checksum": "169e4508cf1880bcda5e9b1877aa84aae94442fe83ec7a043bbd61639938e128", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jdk-21-ea.17_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.17_linux-aarch64_bin.tar.gz", + "checksum": "27b14e9355524be165506ca983bca1f2881b39b7230f18a0d43515e81c3b67dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jre-21-ea.17_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "552fffc7da883a79226a099ef277dd194245a63e356ed565180414e392fb29fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jre-21-ea.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.17_linux-x64_bin.tar.gz", + "checksum": "9ac9c6ea92c0f40fb34a331bfeb6880284c0133c03b5610355c97436427b92cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jre-21-ea.17_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.17_linux-x64-musl_bin.tar.gz", + "checksum": "34ad39aeaf4d5cfa4cc39f7e6ca0bcad4c22ce71c7b15f95286fdcdf11bf8a97", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jre-21-ea.17_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.17_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jre-21-ea.17_macos-aarch64_bin.dmg", + "checksum": "3dca3232b868f1b60d53878c06648a14f5e7fdbcd85a2a1967d3f8eddf2857b5" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.17_macos-aarch64_bin.tar.gz", + "checksum": "689a97059ba9b8eb18664dd3cf2b25dc42ce7bed0e8d0f5bd85f294b7b272052", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jre-21-ea.17_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.17_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jre-21-ea.17_macos-x64_bin.dmg", + "checksum": "5941e25770aff2771e08b6764f4bc525b238765f1a36efc9020125ad6737a648" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.17_macos-x64_bin.tar.gz", + "checksum": "f516ea4990fa3e0ab56e3c70608e0ed26a6efd08df06a658d54dd52a6649ccd4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jre-21-ea.17_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.17_windows-x64_bin.zip", + "checksum": "917888816d4d0ca87edcf532fc3ffd16d0a5fa649d22d4d52a3858e39d85e41b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B17/sapmachine-jre-21-ea.17_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+16": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B16", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.16_linux-aarch64_bin.tar.gz", + "checksum": "7cce92a7cabea8db5b2b8194fc7af0adcdca11e5266a1ab6e0ede147878fbf29", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jdk-21-ea.16_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "ead3c9018a66e46449f72dbd53f7bfa4e5ed1196cb464b8455325bb4a6e19ad5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jdk-21-ea.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.16_linux-x64_bin.tar.gz", + "checksum": "8af314dd4a4c8113245b98cbf986997a65c7887fb6e8e85ecc30f11f90ceef82", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jdk-21-ea.16_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.16_linux-x64-musl_bin.tar.gz", + "checksum": "61e923efb9827cd232fe27903c5ade9e1ee521944734e41e6ecc11db35cc1ad4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jdk-21-ea.16_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.16_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jdk-21-ea.16_macos-aarch64_bin.dmg", + "checksum": "efe69cde98b80a6b992dd47a1910350cf6a4d43817862b7f187f93f837b2c408" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.16_macos-aarch64_bin.tar.gz", + "checksum": "c81f0800d17e95e1a952c6a8772f5779e1196e9408188f638140fb7fdb3f3070", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jdk-21-ea.16_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.16_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jdk-21-ea.16_macos-x64_bin.dmg", + "checksum": "c6b540924c68e6c9abce005122dfcbe06dfde92d9b39449970d247fb5dc0b6e5" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.16_macos-x64_bin.tar.gz", + "checksum": "fb8ea07a87e172f8d461a2fbd9419254c17c548a26027fad125f672478fbc733", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jdk-21-ea.16_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.16_windows-x64_bin.zip", + "checksum": "fceaa0ec2107cea06176645a8820de330d57e1028293b75f15b25bd37423bfba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jdk-21-ea.16_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.16_linux-aarch64_bin.tar.gz", + "checksum": "8273e274e1e2526df0a64ca01cec64617ffa24798e9681ed125d5950854ee352", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jre-21-ea.16_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "c7e0191f4c24ae756abad889990c00c96ce6099c7d836a76e18cd4fd872b6d39", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jre-21-ea.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.16_linux-x64_bin.tar.gz", + "checksum": "7b1f16a01ef9b511b5edca76e56872e3cc95d590b5867410cd1defa17ae70168", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jre-21-ea.16_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.16_linux-x64-musl_bin.tar.gz", + "checksum": "99f65b4799e08cc216acbd8836d43b0f048cf76365bf326cc8d81038281bc4cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jre-21-ea.16_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.16_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jre-21-ea.16_macos-aarch64_bin.dmg", + "checksum": "096ddc0fa36463f64ab6f7156c395edc052fce2075ea0b96b3f9fbef6444e239" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.16_macos-aarch64_bin.tar.gz", + "checksum": "248a00be2ae09f8cb392ab0ee534fecded93e3a5798dc1f2fb00a0612df77170", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jre-21-ea.16_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.16_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jre-21-ea.16_macos-x64_bin.dmg", + "checksum": "252cd525f97975426330fb04c21341c816a6ae2e03baf2e0e101803858d52073" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.16_macos-x64_bin.tar.gz", + "checksum": "37ec1c9b8426d059d0b1cc02b5f16d4b4fcf82411afdbf8f4b8a5ee6c86e6979", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jre-21-ea.16_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.16_windows-x64_bin.zip", + "checksum": "b01809f60d83f2ebc09bc1fe167c6d0aaf11441739b308ddd98d33561f5cc112", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B16/sapmachine-jre-21-ea.16_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+15": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B15", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.15_linux-aarch64_bin.tar.gz", + "checksum": "ea48c6f618e908ad63718794ee51025de54ad741638a6b3ed55b23ee7fc9b12f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jdk-21-ea.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "83215a0e67cfe2dec1073219ce0c8b5d2f1ead17425a5fd0f2efe6a9110ab587", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jdk-21-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.15_linux-x64_bin.tar.gz", + "checksum": "c5ae15e3c62365a102546f250a2ec706b00925ac82d4a2d149df7efad179042f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jdk-21-ea.15_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.15_linux-x64-musl_bin.tar.gz", + "checksum": "33834a5fb25a9c2923ee8c953af3b2295cb5713a408a85e507ea6aa45c5b831f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jdk-21-ea.15_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.15_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jdk-21-ea.15_macos-aarch64_bin.dmg", + "checksum": "487cd845a56e0a00dcfde840ab4ea6d55ed97790c1fc52a31de1e45fd1b67694" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.15_macos-aarch64_bin.tar.gz", + "checksum": "03b24846baffa73c40374820f23a7730de90aff8b9fe218e9793b13a997dfefa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jdk-21-ea.15_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.15_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jdk-21-ea.15_macos-x64_bin.dmg", + "checksum": "6b4dcd995cd821a36735b64baf4962bf685725926f859f82ac2e658be698c7ee" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.15_macos-x64_bin.tar.gz", + "checksum": "435d7d97897d2d81816e86856e9989e0588750033aead10fa11968f7b41c437c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jdk-21-ea.15_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.15_windows-x64_bin.zip", + "checksum": "e6007d12986108bb01616f609ee9a1c8b67196e1feb1c8a19876d78ee9033f20", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jdk-21-ea.15_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.15_linux-aarch64_bin.tar.gz", + "checksum": "2af9b6a453d87745fab88638768ee35d847e38ed566f8ee7967575485918885b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jre-21-ea.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "dabaa32088bcb8a3c3dae9a28fbb6beee4a41231b81ec3a27287e803910a27fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jre-21-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.15_linux-x64_bin.tar.gz", + "checksum": "4f6e6aa8d0b1db8a5a259ba65a43d31f654cd675864b3319afcf53e09c8a0454", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jre-21-ea.15_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.15_linux-x64-musl_bin.tar.gz", + "checksum": "764c26b464c205bf75c3b6108e3c726900548ca44db25e79ed490f7e63539968", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jre-21-ea.15_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.15_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jre-21-ea.15_macos-aarch64_bin.dmg", + "checksum": "16126dcdf0beccadd18c5abfcbbb26fee44d6465ac719908e5aa68de1037fad5" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.15_macos-aarch64_bin.tar.gz", + "checksum": "89c0884ee4484d6ef276e31694b27b958e1f5530fd72c2f196adfac4468a42cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jre-21-ea.15_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.15_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jre-21-ea.15_macos-x64_bin.dmg", + "checksum": "9548ecf595210cc25c4a7da9b5e1fe464fb6497146aeaeb359c13663f83a109b" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.15_macos-x64_bin.tar.gz", + "checksum": "9d2b47f96fe041bf400d9968c3d1d0b2797e5adc03e47b8720a117d712819ab9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jre-21-ea.15_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.15_windows-x64_bin.zip", + "checksum": "df4d267fa83d81e9eb05221771a252b0ba2cebe180c68e1809883e3ecea39782", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B15/sapmachine-jre-21-ea.15_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+14": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B14", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.14_linux-aarch64_bin.tar.gz", + "checksum": "4f2aff4144ba86e88d9077f1c337407215930dd423fbc8ab8446aa1241803f65", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jdk-21-ea.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "438be65ada96856d7f89d8fde4caa56db3e508746ef21e61589cd211addd3874", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jdk-21-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.14_linux-x64_bin.tar.gz", + "checksum": "421b1896f29f055852c3c154d8e586dfa33e64df1e28642d3eae2725370d7050", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jdk-21-ea.14_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.14_linux-x64-musl_bin.tar.gz", + "checksum": "6c7fa3bec4576733ad7b83ad1d5f28d286292d5d0ba17e60814ab563045de838", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jdk-21-ea.14_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.14_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jdk-21-ea.14_macos-aarch64_bin.dmg", + "checksum": "c79e791d317489664f79a1b8db58db0e31f14a2c969e61855b0a5ec7418e55a3" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.14_macos-aarch64_bin.tar.gz", + "checksum": "17b8a12d9a0d8f6c94f182bff788f17800f1edf611fe883c913c4978ffffe4a7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jdk-21-ea.14_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.14_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jdk-21-ea.14_macos-x64_bin.dmg", + "checksum": "1bc5c32a064bb2070bde42da1c9f0f710cc30d137d5fbf53da9b5b44d49dd774" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.14_macos-x64_bin.tar.gz", + "checksum": "0cb161ea324de4e802f519d1ba147ad53c4f7ebb52f60500752b0cbe69054464", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jdk-21-ea.14_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.14_windows-x64_bin.zip", + "checksum": "b4034d07ae816f10a05f9c35e61f5b5b5276256c2c1ec2d267b457cfaa66f681", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jdk-21-ea.14_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.14_linux-aarch64_bin.tar.gz", + "checksum": "ac3e4fdf6f34e70e7481f72123cc27b042d59e550fc44430500ba2786aeae91b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jre-21-ea.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "104e11406ac356d90286c98651e7d0ec889b1e56afd108d959e9acfda92fcbeb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jre-21-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.14_linux-x64_bin.tar.gz", + "checksum": "ca81550f7dea36f690e18cf24909f29fc1f1addd6160d04f1f3183a26418b77d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jre-21-ea.14_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.14_linux-x64-musl_bin.tar.gz", + "checksum": "3ca1d0a24c6c811a2447e5078d2f26654af799b4c5bd1a9ff46e09f2ec90f11c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jre-21-ea.14_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.14_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jre-21-ea.14_macos-aarch64_bin.dmg", + "checksum": "ca86efad60000f7ed50294b0d8ae2d06f13efb3218bc91982bc55a3e11189bf0" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.14_macos-aarch64_bin.tar.gz", + "checksum": "61cf73b074b16da18f536ba0893e8f15955eaad0aedf7cfce913acaa54c4be20", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jre-21-ea.14_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.14_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jre-21-ea.14_macos-x64_bin.dmg", + "checksum": "e11fb451083552b977fdb2ac8fdf2a63bf5ac97c94d38f7e5db7300d3d58b738" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.14_macos-x64_bin.tar.gz", + "checksum": "fa98275b10acb02022974e9d51c3cbb1d24310d18444a24a528e208550914ecc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jre-21-ea.14_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.14_windows-x64_bin.zip", + "checksum": "a4aa092ee55240f6dc82a62fd0ce8f588ab31f758a5553d3c5ddfaeb2b3b36ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B14/sapmachine-jre-21-ea.14_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+13": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B13", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.13_linux-aarch64_bin.tar.gz", + "checksum": "2ddb19adecad38b478b658a5c88c127f9f0f3f8d2ab5d19b3e8e663c79cdea2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jdk-21-ea.13_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "4a67ac085fb88714b14060c9a3cb270b318f05777c2a9b6193af96d4b3778bca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jdk-21-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.13_linux-x64_bin.tar.gz", + "checksum": "6c7112f918faecd4557fe5db7c63748c6ce66dd9f03b84763917ac823a15ec88", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jdk-21-ea.13_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.13_linux-x64-musl_bin.tar.gz", + "checksum": "1432fd7a2cada1d99152ca325d4cdaebd8a0faa5f4df357e00a442440a797d83", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jdk-21-ea.13_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.13_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jdk-21-ea.13_macos-aarch64_bin.dmg", + "checksum": "26c6e0380ddaca1bc3e05edf7fdc474d89eda1393f495d58e97072bcca958802" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.13_macos-aarch64_bin.tar.gz", + "checksum": "ba4db3ca9e07e369f927ae2eb4447025cb826cad893a9c0d5785402564f79a8d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jdk-21-ea.13_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.13_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jdk-21-ea.13_macos-x64_bin.dmg", + "checksum": "976eddfdeff1b551c7bf9e181042c5d97a9b678ab632c106441dc55e5d12e630" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.13_macos-x64_bin.tar.gz", + "checksum": "57b9cc67093afef0202fa5c7b74a8189b491583641716681c6caea91e8bc1f71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jdk-21-ea.13_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.13_windows-x64_bin.zip", + "checksum": "91df4431be42cf76732e9172b03ef21cde6fe9375ca942692b22522ac5310dad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jdk-21-ea.13_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.13_linux-aarch64_bin.tar.gz", + "checksum": "3522f8a76b0e9b3c98aee8cfd70afbe976e8ed0b0d7270329fc695f1193fbbc2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jre-21-ea.13_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "68accb81fc1d668a89ad1edcf067d48feb4bf6f93355aa3b303ee5e37568c074", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jre-21-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.13_linux-x64_bin.tar.gz", + "checksum": "d5dd162efb6aab5734191d54564b2f7760c8a7a723e7e5493291cdf80af759db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jre-21-ea.13_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.13_linux-x64-musl_bin.tar.gz", + "checksum": "c467a354daf25598156c0b2c5a4d20cdbbac5f27f257bfcf99dd36b9a6bd411d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jre-21-ea.13_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.13_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jre-21-ea.13_macos-aarch64_bin.dmg", + "checksum": "e4dceeecb725556d496e1011149db91a17585c885bfd6d8d0abe92df0d82c318" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.13_macos-aarch64_bin.tar.gz", + "checksum": "b2b4a4ae9d3ffcb35795940fab0deb92cab8efc63561b2e061701f0eb71d6e7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jre-21-ea.13_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.13_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jre-21-ea.13_macos-x64_bin.dmg", + "checksum": "ace54ddb3cd21197b773fe7ff3f36f5737a825a27844f385a6ed3c029790db55" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.13_macos-x64_bin.tar.gz", + "checksum": "a63d82ec396f7532714878b311ad04329c16631d55467479556e777bed2ea99c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jre-21-ea.13_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.13_windows-x64_bin.zip", + "checksum": "b546ace69a6d7b1490dc405901a8a2fcd7f08095a37a593aff898a5854465bdb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B13/sapmachine-jre-21-ea.13_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+12": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B12", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.12_linux-aarch64_bin.tar.gz", + "checksum": "e9adcec520f729f0911b1d08977d30da497e65838589b42ccc6660e6ae3b16df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jdk-21-ea.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "63d0d3fe52942842279674ff30bfff40276fe01c9782e491849e448ddf7d61dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jdk-21-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.12_linux-x64_bin.tar.gz", + "checksum": "3acfc5da8cface4025215091eb28f0df57b6598205238765d672baaef780e236", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jdk-21-ea.12_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.12_linux-x64-musl_bin.tar.gz", + "checksum": "05187dfac256da240e610cda740eba523c9b1784ff3ab71de1f58089ffd7fb36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jdk-21-ea.12_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.12_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jdk-21-ea.12_macos-aarch64_bin.dmg", + "checksum": "693168946b41756fceee3487aceede173ea80fd2f27b7b37f1a4d0e258d8f5a9" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.12_macos-aarch64_bin.tar.gz", + "checksum": "f9fc65bf6eaf1938dded83846c9e5434d5f816b8b999dd6ab3048f6f624e35e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jdk-21-ea.12_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.12_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jdk-21-ea.12_macos-x64_bin.dmg", + "checksum": "da0a113c4fc26a9ce2ecc069af34c7eadd003a7db77f58069144bf48f675867d" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.12_macos-x64_bin.tar.gz", + "checksum": "86d001e732504383c031606c06e8dac45ebaa028bd3b1b4625ea44175a3687e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jdk-21-ea.12_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.12_windows-x64_bin.zip", + "checksum": "06acb89c040a442726c47d4ef15a5ea08db9ac21cbec4d69980cfbdc24fda8f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jdk-21-ea.12_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.12_linux-aarch64_bin.tar.gz", + "checksum": "84e958a1be0c717794b8cff1eef77454f88cb218adf5389a70d4fb0b98d1a362", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jre-21-ea.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "aeae2d94931719d5452b31af89c9652f8b902421cd749cc99eab3091ec238c11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jre-21-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.12_linux-x64_bin.tar.gz", + "checksum": "520366b9bcee21a7f79082a0eeaf8fa60e5f0369a2ad3596fdd680c11c547dae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jre-21-ea.12_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.12_linux-x64-musl_bin.tar.gz", + "checksum": "e0bc0671dbc0a12c5bfcf3415d89370f9e22d5cde15d04496f2cc6c36cb06178", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jre-21-ea.12_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.12_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jre-21-ea.12_macos-aarch64_bin.dmg", + "checksum": "5ee0cbcd4f9a9f46a7879b83ab31e11686f399ec8021b40373ed0a9a52dabe8c" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.12_macos-aarch64_bin.tar.gz", + "checksum": "2569a45fd1ffdb03220c55c3a419f8345fb3c6073a9bc66cc444eb522bd4e60e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jre-21-ea.12_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.12_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jre-21-ea.12_macos-x64_bin.dmg", + "checksum": "24b49f81d6c79e8a73853e6fb16160cad97d4bca56194e9a34182c899ea9a49d" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.12_macos-x64_bin.tar.gz", + "checksum": "e01983b76d4247cc032412e2b0b838139b2f1d9b3bdc95e24eb97ebeae0311af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jre-21-ea.12_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.12_windows-x64_bin.zip", + "checksum": "91334e6f4e4c7435e99f3842e5ad0d67bc86582f9bb6e059b338d10f2c8b10c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B12/sapmachine-jre-21-ea.12_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+11": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B11", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.11_linux-aarch64_bin.tar.gz", + "checksum": "e80343d9fe49685a4f485b127056f2a3223a60273af338d3a541670f263105a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jdk-21-ea.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "6e815e3d1bb5af933a1e16794840d7385631858ca068455df9c3ab8882f82647", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jdk-21-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.11_linux-x64_bin.tar.gz", + "checksum": "d9e53387f1a145a42947ea23e6d3a869fa93c76fec82841b24a9b1ef000acc71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jdk-21-ea.11_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.11_linux-x64-musl_bin.tar.gz", + "checksum": "9e6da24ee9dde35e324d16b43814594c24dff1f148591eaa9a57a31cab478423", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jdk-21-ea.11_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.11_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jdk-21-ea.11_macos-aarch64_bin.dmg", + "checksum": "e521ca4adb427e01850b4b6246e08c300380a7dd62314a174c8591f2a2366fd0" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.11_macos-aarch64_bin.tar.gz", + "checksum": "085420e120355c4812d39738186e102d16e4dc8796ac10239161224ce67d1437", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jdk-21-ea.11_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.11_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jdk-21-ea.11_macos-x64_bin.dmg", + "checksum": "23f498ff33341e6aa52919563d9c1437f51cb3feed9ddde8abdbf9a2ac29feae" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.11_macos-x64_bin.tar.gz", + "checksum": "80521e808dea36fae218897401b3fdd76b661de5c5a61c371f9766aed874a60c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jdk-21-ea.11_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.11_windows-x64_bin.zip", + "checksum": "60fc57eee337e9b6139beba1531207695060c13770dc5388a4d285d7dca3ef17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jdk-21-ea.11_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.11_linux-aarch64_bin.tar.gz", + "checksum": "5bd4f5fbd1fb4c658e610e94f6d5be1d64bf51424771d8bf67d8198712c38c1f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jre-21-ea.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "c332d86e558646008d36beb0c2c8e8b3bd17c239e8acbf1f350858f474936463", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jre-21-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.11_linux-x64_bin.tar.gz", + "checksum": "4005aba9d571b00ac7738347aed9c4f9b520a5d7963268a936d64a942a9b6712", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jre-21-ea.11_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.11_linux-x64-musl_bin.tar.gz", + "checksum": "9e2a51aeadd9b8a192ec7a373473d548a560f73250ce183fd145a2a48473ad30", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jre-21-ea.11_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.11_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jre-21-ea.11_macos-aarch64_bin.dmg", + "checksum": "531997f704f12dca04b458ed833c7bed380cb983fd5bfe04df1f668f8163c693" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.11_macos-aarch64_bin.tar.gz", + "checksum": "bd12ceb6e56941e8f1f76a4030e275da4e2e8d7e0b37dcd684ce0beff145093c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jre-21-ea.11_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.11_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jre-21-ea.11_macos-x64_bin.dmg", + "checksum": "f341def20885cc9988c44a19fb8c81ff0fc55683e4d230afe3676a251b1e3c0d" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.11_macos-x64_bin.tar.gz", + "checksum": "cd7cf19fb74812bc4d33b8aeaea276458747ec8ff725dafaa0215b84541c9a25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jre-21-ea.11_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.11_windows-x64_bin.zip", + "checksum": "22ca617edaef013f5529834e5ccc253d58b9dcbf7fd8d2f1d9a52be8c295d05c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B11/sapmachine-jre-21-ea.11_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.10_linux-aarch64_bin.tar.gz", + "checksum": "3653389541f52bc605f2c0f001546fb5bfe15f99407e1ef307425f8c9c636853", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jdk-21-ea.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "1c30974c6bd7866779e8c388e5d5c2079b410530dd6e34f8c6c85db788438857", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jdk-21-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.10_linux-x64_bin.tar.gz", + "checksum": "86833ebda89cddd1e3845b05c8b1df2d2d26b82d028e814aac85abb7197a5d7a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jdk-21-ea.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.10_linux-x64-musl_bin.tar.gz", + "checksum": "4ec1a889c617869965a52e6319a204fcc4bf843785b6c8824cad9860bc24343a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jdk-21-ea.10_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jdk-21-ea.10_macos-aarch64_bin.dmg", + "checksum": "a994880d068edd1dd651dca84d542999ca2c127d4968b955840a472cbfe83a3d" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "bcd8d61c918da6467645f04c152b71942f0c0e507259b40a5cce68f7db767a6e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jdk-21-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jdk-21-ea.10_macos-x64_bin.dmg", + "checksum": "fb700998f6a66af8df68ee1031e7722d17de8627a7a6a2147d1b0a48c8a4fdb0" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.10_macos-x64_bin.tar.gz", + "checksum": "b804f188ac95ecc0989e3f1b49c2f3e558bc87b24aba53b6ccd0b4c8482e346d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jdk-21-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.10_windows-x64_bin.zip", + "checksum": "0a2c967adadeefb527e247652ce70560d9b78d9e3acd3437c29b1a52ea5dd8d8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jdk-21-ea.10_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.10_linux-aarch64_bin.tar.gz", + "checksum": "238ab319a1f6abfe38835c4b91f2bd4153b4538c4ff3e7840980e4fb56cb807c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jre-21-ea.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "7f1f3c4a0540b5dae4f0deac1e79ebb7874fad30b9619b375e8cd1e22c21e2a2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jre-21-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.10_linux-x64_bin.tar.gz", + "checksum": "4d1034cbb68d1e4287ccee0f906ce0cd6dfe7cafc5825fa9d411597189efe88a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jre-21-ea.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.10_linux-x64-musl_bin.tar.gz", + "checksum": "c9d3b718d54543d2818bb8698f80ee1da0af3b10735e9042762f54f81d72749a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jre-21-ea.10_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jre-21-ea.10_macos-aarch64_bin.dmg", + "checksum": "a50cae87f961880ab195a9569029f0c07a5f124f2e9bd285714fb9992c912553" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "3e5c5fd6bc5b7f575b9fcd8ac7c021660268a1ab240ec0c159e46d94fbd8dbc4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jre-21-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jre-21-ea.10_macos-x64_bin.dmg", + "checksum": "6dd3f81e210fc647e579da6f57a07cc8c24e6ae682fb6aa70548151305b2cdfb" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.10_macos-x64_bin.tar.gz", + "checksum": "af5f25ff7618cc19f6c935d6cd4f45165d3bd82c48c2fd8d0044fe402413e59d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jre-21-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.10_windows-x64_bin.zip", + "checksum": "a1126ed7103e9bf6a385ceecc37d58344a07012c8314fc5da07dc73d6b404661", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B10/sapmachine-jre-21-ea.10_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "e3ea5308d95379f727dd62d07ef71b3c9d0824fd78fcd025b359c687423613f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jdk-21-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "449f4dfa30ef6d65b779dbf916ef22a4fbaa6e20e518aacc7fbe4151ca168896", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jdk-21-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.9_linux-x64_bin.tar.gz", + "checksum": "84f105e02546d601013b3441466bf7da53482345b445b0ba1646a1a5d197ae44", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jdk-21-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-eabeta.9_linux-x64-musl_bin.tar.gz", + "checksum": "a829fe36bea31c0aec97609f18c5926479fb9a620b223acf6fdc6c27365764dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jdk-21-eabeta.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jdk-21-ea.9_macos-aarch64_bin.dmg", + "checksum": "de76e29dae387c42857423d2f3ce53cc218def828942e2dd1c0299ea84f679a7" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "7720d149a6fd245207799f2ec523dc491a41109add398db7c84ec67bc8f83756", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jdk-21-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jdk-21-ea.9_macos-x64_bin.dmg", + "checksum": "1374a2d2990d089000cb657082cf241e1e323b78fbd1f80564c32cc422552b85" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.9_macos-x64_bin.tar.gz", + "checksum": "22fb85a1cecdefa56181515f1854980029766ca6857fb1472fac0127e647312b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jdk-21-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.9_windows-x64_bin.zip", + "checksum": "a0a7c567bde4fca5006b49a281b47391bee063caa761860531f60ae4e8d803c5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jdk-21-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "38094026f3fd636399e0050aa51164eddd7a255ac48448f7c8532160810745a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jre-21-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "5e44358188263621a8e6b77becd07c4203d6f918cef24c8b520100349aa479d0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jre-21-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.9_linux-x64_bin.tar.gz", + "checksum": "bf7795d021e43d1eea7aefbd1820b5d03220206e1dd0365ea0919af7c0884b9b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jre-21-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-eabeta.9_linux-x64-musl_bin.tar.gz", + "checksum": "f07047917f60122b9165f7e53cfd2d646567558c9a44d5ae36a171cfa71d66ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jre-21-eabeta.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jre-21-ea.9_macos-aarch64_bin.dmg", + "checksum": "811b2aee686586334b6ca3a42e4717fd93d3993fedad80df25f79ec5b04eadf1" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "a56502729789d4343aefee0aeaecddb47d1940131cbfc439e92dd24fabf34044", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jre-21-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jre-21-ea.9_macos-x64_bin.dmg", + "checksum": "0be46954875a88575e3313066b6d2fd77fca72018629a8d6245e6adeafc64a23" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.9_macos-x64_bin.tar.gz", + "checksum": "7bf3dda9018a1a6228a7cf7c759a8b569ca63e8866938e0af4e9fa390b3bf913", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jre-21-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.9_windows-x64_bin.zip", + "checksum": "3cdfba5f6b6f823d19c452379856b238024dc7d882aa708ec1f19b285ad4f7a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B9/sapmachine-jre-21-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "315fbcf0a8007f655b7aa01bb187c52743d0b3bf0061377e58f5483ad84a8e70", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jdk-21-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "afcd89791cea84a8e685f5ea2b7e6348fb46586e5664a62f4d570d080b129008", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jdk-21-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.8_linux-x64_bin.tar.gz", + "checksum": "b7b93fd7229a39710442694bdf82e47a5b2197cf1c966427926f74b30e04da78", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jdk-21-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-eabeta.8_linux-x64-musl_bin.tar.gz", + "checksum": "c0e5c19631b0fa26e3422d7dda81cda22ff77eae83a2d032e4f71ef1e18f2428", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jdk-21-eabeta.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jdk-21-ea.8_macos-aarch64_bin.dmg", + "checksum": "1f16a8f52aba09a3db7dcc59e6dea00274e44896b2765289537d7889fd16775b" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "579d39ad89c24f951c86620521d98d2c7edffaed8b747a5f3682ad32afa7aac9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jdk-21-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jdk-21-ea.8_macos-x64_bin.dmg", + "checksum": "3e9df681d50e9e4e71381147aca5873778b9799a4d4637e7bc713974783b6300" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.8_macos-x64_bin.tar.gz", + "checksum": "cf1afa4659f1ec43419f61bbdb5b3c01111f0e203578f369dcea5aa6e067557f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jdk-21-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.8_windows-x64_bin.zip", + "checksum": "adc89efaa70ff824d1eee03a52ce9bdea9d48e2e2817c731b11b1692f97e9ee4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jdk-21-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "94c9a3cee3a2afb6d3160eb6a35dfcf715c3794e752b6e1cbf996d8543a177e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jre-21-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "c1fa9f8185e8591406616adf7bba501b385617e20ca9361529808c2d529fb2ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jre-21-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.8_linux-x64_bin.tar.gz", + "checksum": "fb387d0ec84ce85d0f2303a53840886b6e5f998eba564e0c66d7271c415f4c71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jre-21-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-eabeta.8_linux-x64-musl_bin.tar.gz", + "checksum": "d1635f7c28bfc4d42f07f83629eb370644c15dfb8d38d4c57434f4ced56e2883", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jre-21-eabeta.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jre-21-ea.8_macos-aarch64_bin.dmg", + "checksum": "abc6974c18cad7fd30c9a7deb6d20c9c6bf99f7411aa9aad398acea05fedf3f8" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "b810a729e714fe335bb0ca55d53365d0761101ec444e308a8d4bacecc33e28e6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jre-21-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jre-21-ea.8_macos-x64_bin.dmg", + "checksum": "813bb5e2f79c778e1edf41ce37ec16c3a9a4ea1b1a630d6950ca4a8073b86c01" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.8_macos-x64_bin.tar.gz", + "checksum": "235be515976d9ff184ffe9286a17cf1e0cd9e048f9c17a25a725789ca1af5f72", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jre-21-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.8_windows-x64_bin.zip", + "checksum": "f0fe187d8a50d7c7d617cebeb7ca6fc4abf6d0382620fc650eee6131b338465b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B8/sapmachine-jre-21-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "78ac5d57513dcd4e7395470f4e0b411c54de765e1309b4286dae27d8fa65e99f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jdk-21-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "e21b05fb091f08b4a42f9897078cf55ce936cc635cbe0100412ea8450fa7ee01", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jdk-21-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.7_linux-x64_bin.tar.gz", + "checksum": "0a20e3e1f474c812cfbb705d30a75637de573a96400307c14e2738ae1a014b0a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jdk-21-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-eabeta.7_linux-x64-musl_bin.tar.gz", + "checksum": "318efd1e65fcde3aa9c3f2a45565fa7c1ed3d55487ba253b9ef5caf071420bca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jdk-21-eabeta.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jdk-21-ea.7_macos-aarch64_bin.dmg", + "checksum": "dc9fe443f59b81a80ed28d4b1c3bb20cabfc7a0ed580853adf9d61d535f9aee5" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "5e8f0a66ec608dbe0cf2a08d46c4a5f7a8961c338805279f448f1c5fb0552fed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jdk-21-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jdk-21-ea.7_macos-x64_bin.dmg", + "checksum": "73c1f35441122648d9386b727c5c7d07d46a8ab7a256d40b155ca72d0212eb1d" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.7_macos-x64_bin.tar.gz", + "checksum": "e7b6134f4fdc96737e6755c0034e13aeccb567b9a3742c58bbd49e0e7ab2eaa7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jdk-21-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.7_windows-x64_bin.zip", + "checksum": "c5dee71542019ab0c2b34d3bda9b230bbdebebc7df222cbaa9355b84e780cb8e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jdk-21-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "5d94471d3ea8969a0b9d0b805272ccfe3608f7acf187023b4df0f01e073a4814", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jre-21-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "0b2c7ba9c59081814c521044d8c9fdeccabbcebffb30a6978f845448dffbf705", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jre-21-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.7_linux-x64_bin.tar.gz", + "checksum": "7df2d33b7172014f864fefcb4a48be8348455e703dd964c40c16688cb70d997a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jre-21-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-eabeta.7_linux-x64-musl_bin.tar.gz", + "checksum": "3ffbdb125b0c2a697269300b02bef8bf1e19513fe93372fbcb79b7a4b09f334d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jre-21-eabeta.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jre-21-ea.7_macos-aarch64_bin.dmg", + "checksum": "ddd77434cd94b0fe7560f573503b982157289eeddee0f4adb4de3953c54566af" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "88259b714b0ef881fbc2b4215daa6d7fa185aff2d1d01b54204e3c8db6295386", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jre-21-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jre-21-ea.7_macos-x64_bin.dmg", + "checksum": "82675559c38e4aa48beb93e4518fc81455a284cc489a376dc355ad562737215e" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.7_macos-x64_bin.tar.gz", + "checksum": "45d885cff1bb9e5cb2c7cb7fbb957e1f90e07c28d4dab86a6fcf2318c83289f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jre-21-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.7_windows-x64_bin.zip", + "checksum": "07e330d1989f09d6e81fca36258da7ef00d64a7760b724d81b640bd118e5c424", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B7/sapmachine-jre-21-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "5ee167e85b75bfb2c14025bf7ab5460d6e2863055204e9ea770f9b3477a74f22", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jdk-21-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "d1b4b4cb8e0c914ae74e0c73f3498930afdfa695645f8699a2f32f781bd9700b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jdk-21-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.6_linux-x64_bin.tar.gz", + "checksum": "dbbaacc444961b93a2bd7b6dc0634d963b5b7a66ecfb5433052e25d97aa53d25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jdk-21-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-eabeta.6_linux-x64-musl_bin.tar.gz", + "checksum": "83cec0b33512ed220b8bd8f39c12912f624a61ebcb7b8dcbab5b8301ecc453da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jdk-21-eabeta.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jdk-21-ea.6_macos-aarch64_bin.dmg", + "checksum": "8ca954dc4854770b834be38619e277e1cb2fdf3855ebc99893d5d8cc6660c8ff" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "7d2ade4de054ef54f67e153d2b54cfa0926e3b08c5e22fd6b3bfa30125dacef9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jdk-21-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jdk-21-ea.6_macos-x64_bin.dmg", + "checksum": "7055703194762f53d9fb5cd66c265dce6ab63bca7e1123820dae5581f4214bea" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.6_macos-x64_bin.tar.gz", + "checksum": "1ba0e5598dddc144ac9bdcdee90f67c5477cc95b2eba4e7e1fb3597db768cd8b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jdk-21-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.6_windows-x64_bin.zip", + "checksum": "6707a38d74c62b9684fd762bd66978238695981631039359ead24938306cbc57", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jdk-21-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "a9ac2bd3132f7f7be4e916d0a8911538c8e755a4b018378ecb90606558e4f3b6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jre-21-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "b1323d049c16ef2c892a3710cd038e45a0871933d031f10fd95dcde39dd3a00a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jre-21-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.6_linux-x64_bin.tar.gz", + "checksum": "b561764ff1a540c03ed365b62e55cd5b05379fa521a99b956848c2d9ad1bb96c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jre-21-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-eabeta.6_linux-x64-musl_bin.tar.gz", + "checksum": "17e3acb9505b648df9fc0b7578d4fed5c946f153ccf1900aaf8f24c898ec481f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jre-21-eabeta.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jre-21-ea.6_macos-aarch64_bin.dmg", + "checksum": "84589a429c85ec4fe67186f1aa60de692f11a29564ae4afaf40c028c91302157" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "e2972d2ff855ac548f935f9078442e2f6ebff8578ce633a59db2f45f77cd2917", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jre-21-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jre-21-ea.6_macos-x64_bin.dmg", + "checksum": "d021a2b1d52b278c1f05f3debc1899f0333fb86e3cf30808a55192b92c707adf" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.6_macos-x64_bin.tar.gz", + "checksum": "23e065ef1e76bf375c724381d54c5bdb7601a0f3b47e234476a6ff446b4eb4d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jre-21-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.6_windows-x64_bin.zip", + "checksum": "ef63b3f51b9dc0a0a4adb3487222161a96a5d29da64b7c48aba901266baa6b63", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B6/sapmachine-jre-21-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "c48cdebcefcb5485133a6a1f74e46eac9cbfb13af07fe03abeb1a0e85e7256cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jdk-21-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "257f426fca98f36c2925e4235357abcc60396c531a0cb7dfc6fbece71e21f7cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jdk-21-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.5_linux-x64_bin.tar.gz", + "checksum": "1ed63679f6450492bc537aa980696ef56ef1ad826ea92a5d26036643e7ec3974", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jdk-21-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-eabeta.5_linux-x64-musl_bin.tar.gz", + "checksum": "63f78bf71c9544ac2476d552a45fc1597181be5a25d664b1e2c34391be6db563", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jdk-21-eabeta.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jdk-21-ea.5_macos-aarch64_bin.dmg", + "checksum": "655fcecd1d09ee9798a88a734060e1afdc7e55410686843333eb196e28ec677d" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "33ab45eab49c9ade5cce15d5940b47201fc2013771eff15120e68da77c38fc84", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jdk-21-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jdk-21-ea.5_macos-x64_bin.dmg", + "checksum": "9d504a20a80f878c46e99cc02690f3b673b4503f26924f91748ad30d254e8a44" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.5_macos-x64_bin.tar.gz", + "checksum": "923d49397ac1db3e57dac401b9cc6e890fd4e7ae5a76ecab00f7bd62653c62c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jdk-21-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.5_windows-x64_bin.zip", + "checksum": "545fb130f6f5b9d2ddfdb9f8983aeb5727917f0c7ccafbfe29411e5d6d3af5e1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jdk-21-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "d2a153f45a7544c620ea0deac87a281047055b4bf0d084b23d0807d47e09c433", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jre-21-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "147c03428838c652b8ae844b0d6b5cc85e9bf0c3708934cd5f37bd242d8747ee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jre-21-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.5_linux-x64_bin.tar.gz", + "checksum": "39af75404d8b64c6455b2ee506cad60101fe1e99966bbf11e269a7b956155359", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jre-21-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-eabeta.5_linux-x64-musl_bin.tar.gz", + "checksum": "54229bc6e7c5c5f2b0ae5c671b92b8192b42040dc4d9502355ad63a5b93b26de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jre-21-eabeta.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jre-21-ea.5_macos-aarch64_bin.dmg", + "checksum": "c0d4fb9c2b4deef20db14f834f1092a92dfa92f04e5fb7059e84391476d4a25c" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "9f9cd6fa60bef4a5a3746449b2371232780c462674756c25d9519e4f611d0f60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jre-21-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jre-21-ea.5_macos-x64_bin.dmg", + "checksum": "11514e7a04f9739862f9f827f28973809cf5e647211f3f64e283290569d71759" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.5_macos-x64_bin.tar.gz", + "checksum": "bb0a019ffd85fb2d01d297aa5a510b38bb7c89d02048770dc6f34549d636b477", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jre-21-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.5_windows-x64_bin.zip", + "checksum": "778e98cc3cbaf693f84cbd1c7cddfb270b50f19941d0ceed59e37523c3e22133", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B5/sapmachine-jre-21-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "db1ab5f0ebc01f30d3ac1216e65cccb191e81141c121523d1e76f4bf2845b45b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jdk-21-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "7c27d670b9906c86435e130aeb387f52f75bff21f07c6ef77648d5cbd7c254e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jdk-21-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.4_linux-x64_bin.tar.gz", + "checksum": "03cdcc68f02c6da14c2d715506904fff3cca9248803d3ec5b8df10e9040f93ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jdk-21-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-eabeta.4_linux-x64-musl_bin.tar.gz", + "checksum": "95dc4ea75c8099ec4f5a371c3cdfddf4c875324a6b135daf6cde9f10a4e05fc6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jdk-21-eabeta.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jdk-21-ea.4_macos-aarch64_bin.dmg", + "checksum": "9e4ed157ca217a009bd9ecf847cf3be1e6603c700d447a8f40be88dbbcc487f2" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "df791f7c9a52c2ae32562f7abe376c76a06ee80f7f4360898a1008db3800ea31", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jdk-21-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jdk-21-ea.4_macos-x64_bin.dmg", + "checksum": "d1060dd61f9092c71d1c5d480c141fd8015002a278bea5b4ef27b31f8f76d330" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.4_macos-x64_bin.tar.gz", + "checksum": "65fc144518ccf573feaf10d77317eadcdf0ba9817b76994670674c8756c6537b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jdk-21-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.4_windows-x64_bin.zip", + "checksum": "7692d9c289f49ce8ee62d8bdf4fd1dd1c84f1151379aa560ca01feff733dcedf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jdk-21-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "203e7113185dce5bd59e76ce63e687aa87127773143ffdec601b0b76cb53c2ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jre-21-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "fda3108072bbc30cab2cd5e716997a66417430dd02a08be2ffb23c55d822864b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jre-21-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.4_linux-x64_bin.tar.gz", + "checksum": "b2c53b428c0e2d5057e017c64bedb6dfb77c1bd8735c3044b23178cb5f84c17f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jre-21-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-eabeta.4_linux-x64-musl_bin.tar.gz", + "checksum": "823ba80392e2051707688d1d82b7c44cb9dbe4559ffa077b2d7cebaca9e71fbf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jre-21-eabeta.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jre-21-ea.4_macos-aarch64_bin.dmg", + "checksum": "a19de558a5d7bc7faa557132c2d7bf62eb0bc1d2ee10393208db6b83b4730adc" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "81a397dce9bf59a530011b4030e85aff78cc95b59276efc0fd5f1dec0ce7583e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jre-21-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jre-21-ea.4_macos-x64_bin.dmg", + "checksum": "e34207516f1a4d6c4563447e8f30b9095252c3762b3bc5e4826abdfa21ec081a" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.4_macos-x64_bin.tar.gz", + "checksum": "db07a5f292e1ccc296f9f9c60aa94dd9632103c328098a12d61ded46145b3a41", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jre-21-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.4_windows-x64_bin.zip", + "checksum": "354650bdd0e81d85c6dfbb591496c92f044e1171205c0fa37c94c0b5120b5218", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B4/sapmachine-jre-21-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "e99263b97bba181164ed2dcaa8068b6a05a1b20743aef3d02eac4b5b6d7b6dfa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jdk-21-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "0a05f22fef63b80bde73e09d186d885a8bc7a794bc7c738790bc032733897a5d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jdk-21-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.3_linux-x64_bin.tar.gz", + "checksum": "6c9498ffc0cf0c16b93345db31f005ef143ac6a91fb6d316daa2fc4b34567789", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jdk-21-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-eabeta.3_linux-x64-musl_bin.tar.gz", + "checksum": "790a9ef91db58a058c1bfb0fc89a7175a6a82dea1a04b3dfbe56d732500e2699", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jdk-21-eabeta.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jdk-21-ea.3_macos-aarch64_bin.dmg", + "checksum": "9f235f31206bf54616e895814195a6847d6648e94fcd45a5f51bb1339a6da1f3" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "2001bdc53324f816452fc84c1f3074b7f5a9ac2424c8d7dd691bcee71cbedb67", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jdk-21-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jdk-21-ea.3_macos-x64_bin.dmg", + "checksum": "ff9f99ed6f02312451145aa6838459e15d14f60e94fddfa0ddba7e7f11b9d9f8" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.3_macos-x64_bin.tar.gz", + "checksum": "229a38eb6d04e660330f81ecd4db5d0f919c09454d6904ce0c82d7a3f124906d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jdk-21-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.3_windows-x64_bin.zip", + "checksum": "d5751cadb3a826fbc0b938b6f832a213eeb6288728a77b6c6eeb89b58429b63a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jdk-21-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "f1e700c94dece6766de05be45e4771690449b91334e633428783f1211dda0947", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jre-21-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "edc9e30a40e05ff4131cc7e15646e50d5c48d273f8e16e79ccba5ac52fbd964a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jre-21-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.3_linux-x64_bin.tar.gz", + "checksum": "28cf24e863cf532e58e3d67149074ff382ace5f8215749a1f2fd05020fb220c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jre-21-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-eabeta.3_linux-x64-musl_bin.tar.gz", + "checksum": "e75c7cd5240df9e4079437387f2e30bcdc779ba69498323fe086aa32e2c03443", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jre-21-eabeta.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jre-21-ea.3_macos-aarch64_bin.dmg", + "checksum": "2071d6e3ed724d15fdfad52951087a4771c21c10d019097a138ff8e33edf7026" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "1bce00f6e585b4b131a1fc3c1f9f08aad5c00be9528b11f79237251720c84677", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jre-21-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jre-21-ea.3_macos-x64_bin.dmg", + "checksum": "d69d052315170fcec56dc95aba077d00b7f3d349c81155a6f01ea6964f4aa726" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.3_macos-x64_bin.tar.gz", + "checksum": "eaa6d0fbe90692db7515d3aa965053435caf06b86d952793a9b8c3d57e22ff7e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jre-21-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.3_windows-x64_bin.zip", + "checksum": "957be49d82d7732e492ba9bc638d2cc207f04004623d21c955cefc88e8f54db4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B3/sapmachine-jre-21-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "b7ba2376f7d5c850f2836957e8343a683fd191719d5aac02b8c5d8c6e15bb4e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jdk-21-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "6fdb656f4286fd1428b92ca1ea54eefdd7e0c45a75f98349ada13003356ce6cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jdk-21-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.2_linux-x64_bin.tar.gz", + "checksum": "2d271b5ac0f813b8600ac87cf93066e1277df9c6713ccdfa0a69d9f5c95534bb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jdk-21-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-eabeta.2_linux-x64-musl_bin.tar.gz", + "checksum": "0fd66b7039566586ebfa5c06b5786ae6c7090b8d09c9ec941dbe0b167bd499c9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jdk-21-eabeta.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jdk-21-ea.2_macos-aarch64_bin.dmg", + "checksum": "98d4e14838f1f7e0c1645bfaf8d29f29b577c195ce73bb2a1ad5567d0f431221" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "eed6d24ecee66716f80fb8c2a24aa9630b1a8523e65f0556b547021b40ec85cb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jdk-21-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jdk-21-ea.2_macos-x64_bin.dmg", + "checksum": "4f0c4e2695330d34657b94f29d96dcacbd06ce75fcc997a37ef1f9483114b4c5" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.2_macos-x64_bin.tar.gz", + "checksum": "556f51aebf1cc16942bd98b16c1ee49d2818f2eb94bf57392e7a981e7fdcbbe6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jdk-21-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.2_windows-x64_bin.zip", + "checksum": "94c20776a515c5dce2483e3358ba0fee0af1abaeaea003dfca5f8658f92b9827", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jdk-21-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "e08684f5378d9eb04fff8e633ffbe859a59886b3ff47214ba0c3a3ba49dc2719", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jre-21-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "9f315f691a867c1ed5a4f36497af7ba4850e767426c2f30c606caaa9ff8aeca3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jre-21-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.2_linux-x64_bin.tar.gz", + "checksum": "66725d75a8c6125913493cd5fd9211ab1b66accc2291b2eb83bced7b70a69099", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jre-21-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-eabeta.2_linux-x64-musl_bin.tar.gz", + "checksum": "d4b64b77ea5e6fa5abc3739b5a294e6c496a39de766fd6fb8a6a7c0eb4728685", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jre-21-eabeta.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jre-21-ea.2_macos-aarch64_bin.dmg", + "checksum": "24bd2e084b4d09d53dd9da8d039e5923ce4bf47c12bf4e4eb2d6112229bb9ddc" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "64e6ca2e976913310ebd0cb4c8afe897274cb1b617f30000ac6a5fc497004a57", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jre-21-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jre-21-ea.2_macos-x64_bin.dmg", + "checksum": "647f3789e4c227ca8a51f5fb1fef12e4b5f7596cf556dbcbf7d3fa4f4b6f0e1e" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.2_macos-x64_bin.tar.gz", + "checksum": "da782f83e3cdd03f068dfaf6f4346d9944ebbc75c704f48735ba63f07913aace", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jre-21-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.2_windows-x64_bin.zip", + "checksum": "5e3f9a69e19a239f11b6e9ef63d596a79ef643a586a1c642af6d7a32faa38462", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B2/sapmachine-jre-21-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-21+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-21%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "f8316be7f6d520faca93bbca59062660277b15e8edf53ab378bdff9b2f333e9e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jdk-21-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "3a9e59d7a59a20c35f8832950d6c7ca531b5fe53271bd8664382ee33da3b6018", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jdk-21-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-21-ea.1_linux-x64_bin.tar.gz", + "checksum": "f765d92a0544e943c1d06cbe59b8fea64f27b4f6075d360eca667da58efe9f39", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jdk-21-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-21-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "1d36b9d5e7c9136bbbeeabff8935be364bafd7118d5a595220945b853a8160ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jdk-21-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jdk-21-ea.1_macos-aarch64_bin.dmg", + "checksum": "d29e960aa80564253eb7645ce4707a36f0289eb05e829e42fe5404746c36056e" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "2418fcc48dab9cd818327007f2261803d5e09a419fd98e0e26eb61e9ee70923a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jdk-21-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-21-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jdk-21-ea.1_macos-x64_bin.dmg", + "checksum": "73452cad0b2464359e0e88c9cc51251618a6bc0de23395c57542892c40588562" + }, + "tar.gz": { + "name": "sapmachine-jdk-21-ea.1_macos-x64_bin.tar.gz", + "checksum": "d414a2ad9be411027f82145632145608baf67fe5b0d6f32b3587ba37f53e2dea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jdk-21-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-21-ea.1_windows-x64_bin.zip", + "checksum": "457a24361f8dca1a0d4c83cd2a512f1534f5f03acc1fce5e8927e6255e013bc1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jdk-21-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "3be5be939166990653e7c5a19d79fb5b498308302302b8300b21df8edabe4853", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jre-21-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "b33293ffa579248d7b290a07d82d90b62898f9606e599b5f370bbf76133db2ca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jre-21-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-21-ea.1_linux-x64_bin.tar.gz", + "checksum": "74b5a5e184e5824d534bb4cc99e0bb82d38c1e50c70054c37cc204ef69f91bf6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jre-21-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-21-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "970c4d70805cf5eab15678bfc03d45e0ed101c9cc81832e679088bf887756dd9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jre-21-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-21-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jre-21-ea.1_macos-aarch64_bin.dmg", + "checksum": "310945d1e348a9f3a1ed089e08c79c66914fae716368b336b86ef36c1c561520" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "fa36150e9ef935a58b1176f4376c1d67c608a8f41eb835d38f3115a4ed007877", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jre-21-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-21-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jre-21-ea.1_macos-x64_bin.dmg", + "checksum": "36a113a3e7ea29fe623a1a91bf1cc00f0e27fd3c6865f0092bdcb36b764cbed5" + }, + "tar.gz": { + "name": "sapmachine-jre-21-ea.1_macos-x64_bin.tar.gz", + "checksum": "7b34693bda135a8e13e5f49c9c0d4b629285b9c6309c7ddb578389a2737c3e6a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jre-21-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-21-ea.1_windows-x64_bin.zip", + "checksum": "a532686822312c87e655080adaff89620d6a06baa841f98d70cc474c1c63ca16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-21%2B1/sapmachine-jre-21-ea.1_windows-x64_bin.zip" + } + } + } + } + } + } + }, + "lts": "true" + }, + "20": { + "updates": { + "20.0.2": { + "sapmachine-20.0.2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20.0.2", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.2_linux-aarch64_bin.tar.gz", + "checksum": "2632998967a16de48e89e944d1ed1a4f35372f980455868e564eadafb207ead1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jdk-20.0.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "338a5b5aa74173a2fa6cdf98338668db71f560bb939c0b478fb34f11a7995f8d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jdk-20.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.2_linux-x64_bin.tar.gz", + "checksum": "79a8e2bced58a45e70bb5d7e4cfdc8593bde6784f8c3b2587db26bb578e9bef1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jdk-20.0.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.2_linux-x64-musl_bin.tar.gz", + "checksum": "6d1039ee0d37c3c34fca20f8b1bf8af6b3ed17b425a1422cb9b98da5259036fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jdk-20.0.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20.0.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jdk-20.0.2_macos-aarch64_bin.dmg", + "checksum": "8b52aef8ff440ffce862349c226dad1423c6550e1e367873ed84643c61dc2bb9" + }, + "tar.gz": { + "name": "sapmachine-jdk-20.0.2_macos-aarch64_bin.tar.gz", + "checksum": "5cedd9a935ed094df5f6ccecbb937f1c65b0db11ede2ca3e1a41de92084c42c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jdk-20.0.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20.0.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jdk-20.0.2_macos-x64_bin.dmg", + "checksum": "56943625ec616509b7569c456ff19dfa7bf3489563fbe2f8ab3506cd18f5a33e" + }, + "tar.gz": { + "name": "sapmachine-jdk-20.0.2_macos-x64_bin.tar.gz", + "checksum": "3565914dffecafbccb31c7768b8efd804ee47144cff8a593685d06f6945ece94", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jdk-20.0.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jdk-20.0.2_windows-x64_bin.msi", + "checksum": "81217d8606c57f7cb1aa1479e8c21658199b7ef4d90db7bb675f79c030fcef8c" + }, + "zip": { + "name": "sapmachine-jdk-20.0.2_windows-x64_bin.zip", + "checksum": "7fddcee932a40b5d55647f4d96c83ac0796e9aeafdde9bcd42e01ee65703c6b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jdk-20.0.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20.0.2_linux-aarch64_bin.tar.gz", + "checksum": "145f4703a1c5ce56d0c93f2b6f8d936ce66682cb019d2191efdec17eb72051f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jre-20.0.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "84bf7344635e9afe172680befb88a62895dc0934da5a3e58934a1077260fe2fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jre-20.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20.0.2_linux-x64_bin.tar.gz", + "checksum": "27797965f81909ee8907ec86d6d150d98fac8527aab5e942f403e40f09697b5a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jre-20.0.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20.0.2_linux-x64-musl_bin.tar.gz", + "checksum": "221afa3e5f5dca5a196a8a2154ee7f3477f47c53b5a04c6c3eddd9a78efd5b3a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jre-20.0.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20.0.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jre-20.0.2_macos-aarch64_bin.dmg", + "checksum": "ad78d1d70cbaf0140d92392de88099535623c48271480e39d9c6dd17229e1ff4" + }, + "tar.gz": { + "name": "sapmachine-jre-20.0.2_macos-aarch64_bin.tar.gz", + "checksum": "62ee8652a9b95e9987bf143c54149773c38bb41b0670b15af8de9c2725cd42d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jre-20.0.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20.0.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jre-20.0.2_macos-x64_bin.dmg", + "checksum": "6d89166e1be4b102d939d0f79961a133ca289c1fee72183481219a60a9fffc67" + }, + "tar.gz": { + "name": "sapmachine-jre-20.0.2_macos-x64_bin.tar.gz", + "checksum": "e71cc1788be2f428471bacaa151ab3f55b9eaa5d52f325d64aa6421cba63e8ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jre-20.0.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jre-20.0.2_windows-x64_bin.msi", + "checksum": "b7aa31fc34c64e994fef73c7fed7dac032800f210044322688e2e8400a718bf8" + }, + "zip": { + "name": "sapmachine-jre-20.0.2_windows-x64_bin.zip", + "checksum": "3c432706827719710d6e26d7f8acf24b686d1dbd1e10d75ab94493459ec87601", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2/sapmachine-jre-20.0.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20.0.2+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20.0.2%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.2-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "eac40ee5a3db7dd2017e6626053e221e8025c760bbc65fa402d2bd70e112c790", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jdk-20.0.2-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "ae5c322c980388374ccb22323dcada473e93caeec6a5d367877de75a8265a4f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jdk-20.0.2-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.2-ea.1_linux-x64_bin.tar.gz", + "checksum": "80d4538002c2ad8bed33e9f7e4a47279fb24c75ca70f2de51ad6bb9802a5c50c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jdk-20.0.2-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.2-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "9771561aa9d3232c73140b929c71a95a73770b71d11f9cadd1f949536f2b57ab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jdk-20.0.2-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20.0.2-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jdk-20.0.2-ea.1_macos-aarch64_bin.dmg", + "checksum": "9eec454b566e2e0b9476e9c661b5662f96d6fcdec8e8c36b00f9d0a09f8392df" + }, + "tar.gz": { + "name": "sapmachine-jdk-20.0.2-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "c6af4c71d8c0c5dc4e14124befa580339116730da671f4c1ce711fbb0c258799", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jdk-20.0.2-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20.0.2-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jdk-20.0.2-ea.1_macos-x64_bin.dmg", + "checksum": "eccf459ecd200db7a12a19ac0f82bacecef0b0b26e5df23d8ef8da2664dba754" + }, + "tar.gz": { + "name": "sapmachine-jdk-20.0.2-ea.1_macos-x64_bin.tar.gz", + "checksum": "b7031bf969dda5175971ec9566ac9d11305b68fae1d195d30ae03f119192f68c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jdk-20.0.2-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-20.0.2-ea.1_windows-x64_bin.zip", + "checksum": "cfe56fb536814c9b608d4a800670a44686cfa937b3bd1ddc66f2a256659ef15c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jdk-20.0.2-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20.0.2-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "59e3120954b2a8b2a5641b75f6e4705af31a113e56469a7dc9848ced4d7d6a30", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jre-20.0.2-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "24b182b9f810ad68d7cdbf8f194999d0cbed7bbf14d3057e63adb734b3d0f083", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jre-20.0.2-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20.0.2-ea.1_linux-x64_bin.tar.gz", + "checksum": "1a506b7e5ca84336e1d928acf924aa634991d167734a9aed2e63df7b462de0e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jre-20.0.2-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20.0.2-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "4676e91caabc13c7ab4d53c6e1d59cad297307e3bfc5858db190e1fc37b9ac4f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jre-20.0.2-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20.0.2-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jre-20.0.2-ea.1_macos-aarch64_bin.dmg", + "checksum": "8cbadb9ed42eabe426922f7b76c8d4b3d63908eb3648c53ad9bee02af3c81d84" + }, + "tar.gz": { + "name": "sapmachine-jre-20.0.2-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "d32ef04cf445a6cdf99de16d3a0b0f19b1e877c603cd1766f51be948af2f8b25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jre-20.0.2-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20.0.2-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jre-20.0.2-ea.1_macos-x64_bin.dmg", + "checksum": "72c7c8aaea19075a341225ffb68782234cf188fdbcd8b60bf07745ea2222c412" + }, + "tar.gz": { + "name": "sapmachine-jre-20.0.2-ea.1_macos-x64_bin.tar.gz", + "checksum": "d0833182174579a1633bea86f7ca43e68c268d174382dad7b845cb2ba0947939", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jre-20.0.2-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-20.0.2-ea.1_windows-x64_bin.zip", + "checksum": "4393b1ee8166bfe6c67e398cb167324df055d4add53fe3ba384b095079d680f9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.2%2B1/sapmachine-jre-20.0.2-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "20.0.1": { + "sapmachine-20.0.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20.0.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.1_linux-aarch64_bin.tar.gz", + "checksum": "eb5c0ee77bd9121cc4a4c9c80b86bbfe6bb061c71c5d918727ce33cee3887743", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jdk-20.0.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "eae061ad131bcfd6cb81160a00a044ee4c05216a849005cfff8186ae5bb1c517", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jdk-20.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.1_linux-x64_bin.tar.gz", + "checksum": "192de59d7c7b7b6577539117f03ced5b46b4689add537b1e2b1175d013380ecd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jdk-20.0.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.1_linux-x64-musl_bin.tar.gz", + "checksum": "681e3ab6ac374b759807161570b996c04e67557207016b67b7026720d8e955b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jdk-20.0.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20.0.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jdk-20.0.1_macos-aarch64_bin.dmg", + "checksum": "75f85bfb4db30e73e7893703c8016c5a087d412cfb656ad5f89652ba432b0f7a" + }, + "tar.gz": { + "name": "sapmachine-jdk-20.0.1_macos-aarch64_bin.tar.gz", + "checksum": "7f587844546558174f3ab48d7e1523373bb4b35144cdf87b66ff4c9e88885177", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jdk-20.0.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20.0.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jdk-20.0.1_macos-x64_bin.dmg", + "checksum": "449efda64407162788eb04734a522d79540510663d3a648dd487519ab281450e" + }, + "tar.gz": { + "name": "sapmachine-jdk-20.0.1_macos-x64_bin.tar.gz", + "checksum": "2140c1c35966c5202e4ded8e3a22b2e2114ad011cd49ea561b529dfd2b4257ab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jdk-20.0.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jdk-20.0.1_windows-x64_bin.msi", + "checksum": "90cfd91c0e0d80eb5d15720e158f2fcf7aecb231afd66f4980f464ad51caa662" + }, + "zip": { + "name": "sapmachine-jdk-20.0.1_windows-x64_bin.zip", + "checksum": "031f0116e4c7d69ddd08c0d448dc5decb912cdbbe7e46f9fdb771576e4ef104e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jdk-20.0.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20.0.1_linux-aarch64_bin.tar.gz", + "checksum": "66bb3eba48f14646b1844b5877f4f5a4951e5960a7f893a4efe4c2feb3428520", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jre-20.0.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "8a10413c2d09a431f343e9dc86b5d9cf5e3fb59147fb24c8335a969be5a82b78", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jre-20.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20.0.1_linux-x64_bin.tar.gz", + "checksum": "c49d6928c57913bcf6d5da00763661b5318c9b5dd96cb30f110e1e470561f796", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jre-20.0.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20.0.1_linux-x64-musl_bin.tar.gz", + "checksum": "dc3a34fb560cf72b4c7a12364259ce231849bd64d4bab14cd2e4025cb42d448d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jre-20.0.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20.0.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jre-20.0.1_macos-aarch64_bin.dmg", + "checksum": "2eec57e1919cc135b1d3020443a091e706476c562d2632e8964b21af3304d1e4" + }, + "tar.gz": { + "name": "sapmachine-jre-20.0.1_macos-aarch64_bin.tar.gz", + "checksum": "a11b7664494c7882e4c583b558820f632702101e2be4cab991fcdccfc55cf599", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jre-20.0.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20.0.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jre-20.0.1_macos-x64_bin.dmg", + "checksum": "47bf70c3f553c1b1d674e023f7967646cd09565b4f649a6ad2756c3831c193ca" + }, + "tar.gz": { + "name": "sapmachine-jre-20.0.1_macos-x64_bin.tar.gz", + "checksum": "77600ec23ee2f137411de2cf769d11709f8459283f479f1584263ba069ae00ab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jre-20.0.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jre-20.0.1_windows-x64_bin.msi", + "checksum": "82f075de31d3035522865407eb50d04c065de64628416107c1a03c01def526ad" + }, + "zip": { + "name": "sapmachine-jre-20.0.1_windows-x64_bin.zip", + "checksum": "44fe3cfd9dd37608c7b4ed938efabeac91c7dc29f60c45b361c72f6f72910d90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1/sapmachine-jre-20.0.1_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20.0.1+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20.0.1%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.1-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "9b78a367c50762accc4d8df6e8e0d567dac07d2d128ce56934f7e0114e9f7d3f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jdk-20.0.1-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.1-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "11485b40beba2105150f240a8bccdd7966f8dfb845abe2d4649384d0673d7455", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jdk-20.0.1-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.1-ea.9_linux-x64_bin.tar.gz", + "checksum": "06b460aae472e198657c568a426868f4da878df7150150e0baa2f0d6ad930a61", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jdk-20.0.1-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.1-ea.9_linux-x64-musl_bin.tar.gz", + "checksum": "9e271b1311fa3a126d3547604b57e95fdbcf707dede5784c3d9e22d4929bbe65", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jdk-20.0.1-ea.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20.0.1-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jdk-20.0.1-ea.9_macos-aarch64_bin.dmg", + "checksum": "9b90798d1acb9d2b6b9b0175aa7b1f04cb68fab7fef43acc2bb3a2421aac9092" + }, + "tar.gz": { + "name": "sapmachine-jdk-20.0.1-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "49db0772bfa2cc76daf9f56ad182484528dc26f6da5a751e48645b28f576e3ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jdk-20.0.1-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20.0.1-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jdk-20.0.1-ea.9_macos-x64_bin.dmg", + "checksum": "8624f60e2ecb8c69d34b1c813392dfa9f57fb6e4f8f5b1c22513c6eab4820128" + }, + "tar.gz": { + "name": "sapmachine-jdk-20.0.1-ea.9_macos-x64_bin.tar.gz", + "checksum": "19bc3e272c74b5e6fdd20234c244dbf4540165265879b4a7a8cfd9b95def5530", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jdk-20.0.1-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-20.0.1-ea.9_windows-x64_bin.zip", + "checksum": "1cdb7ac6c07b59ec3f225f94a616076a62cfdf7697c52195d21fe16ee8e97e5c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jdk-20.0.1-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20.0.1-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "f08095a1e92a381171c3f48242e43638368c7d8f4a2fdd54b8094bacbec8582b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jre-20.0.1-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20.0.1-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "7472bc36a51101109b64c902ab32da8204db761fcec4b5193f27428e02a5e4a5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jre-20.0.1-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20.0.1-ea.9_linux-x64_bin.tar.gz", + "checksum": "cefbc9a833e072377a58d05f3a71c4dfb34cc7573dab477ae261f3374090073c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jre-20.0.1-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20.0.1-ea.9_linux-x64-musl_bin.tar.gz", + "checksum": "c3db5638a0dcad561c701a7963be010a8526d6335db6c8cc3c71deb7060cfead", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jre-20.0.1-ea.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20.0.1-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jre-20.0.1-ea.9_macos-aarch64_bin.dmg", + "checksum": "b1f3423ea3f45f09a309591f0f13f81952d2204ec7364df8f808fecc88ed653a" + }, + "tar.gz": { + "name": "sapmachine-jre-20.0.1-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "e58f3b8e3f4b4d1e4bfe955896d0643a344eae7fb1c7b43d6d567f6e7e6f63ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jre-20.0.1-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20.0.1-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jre-20.0.1-ea.9_macos-x64_bin.dmg", + "checksum": "e719ca4de4f591dc5670001560f86d765f8ebbae3c6a9bea4381d1d52373e1e2" + }, + "tar.gz": { + "name": "sapmachine-jre-20.0.1-ea.9_macos-x64_bin.tar.gz", + "checksum": "3b80360af3a1903cc31bfb4e691d15d8d1b485c2f63753d302de9ca5fff3efbc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jre-20.0.1-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-20.0.1-ea.9_windows-x64_bin.zip", + "checksum": "85c967dbb05f0c70eecbf6180834cccbf4748370c83a160030e6338727abd8bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B9/sapmachine-jre-20.0.1-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20.0.1+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20.0.1%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.1-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "56e950169c8330f283530f48df79358e4559b3084e99b403ec677bb41fc32a32", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jdk-20.0.1-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "ae97da06745c38bf6503014b00ba20663ecc535b8961416523311e6735d9274b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jdk-20.0.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "348b18d9a4ad433902917fc6983035838780a07f16e2be8a213be398bbd98946", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jdk-20.0.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20.0.1-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "0f6aad9216b5d4ee63e80024c211e7978ca8f7fb2472d00cf50db32a894649a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jdk-20.0.1-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20.0.1-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jdk-20.0.1-ea.1_macos-aarch64_bin.dmg", + "checksum": "0f3a5b10dfcae37e97fd914ba8cdd49903a535f6819afabee4db373fe6402b43" + }, + "tar.gz": { + "name": "sapmachine-jdk-20.0.1-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "6c3ba020bc282c2ff64e6604bb9cae81c47cae3b988692f551dfda3976fca260", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jdk-20.0.1-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20.0.1-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jdk-20.0.1-ea.1_macos-x64_bin.dmg", + "checksum": "8f0561028566c4ce32ca414324d8c5ef9a13da15acb58e4c950297178a952ab4" + }, + "tar.gz": { + "name": "sapmachine-jdk-20.0.1-ea.1_macos-x64_bin.tar.gz", + "checksum": "00028b3f302175e295365792ef4c16d269ba419a3cf82f16ed67ed000b33a6e5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jdk-20.0.1-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20.0.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jdk-20.0.1-ea.1_windows-x64_bin.msi", + "checksum": "5c5db8ac107ed728906e655cb089f656d87d74aeb026bacf811e7b1825ff466e" + }, + "zip": { + "name": "sapmachine-jdk-20.0.1-ea.1_windows-x64_bin.zip", + "checksum": "e2011172a00dc624386ff3c4c31af47ed5e0a869a59ca8a62278eaf5dc2c2106", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jdk-20.0.1-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20.0.1-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "b35be4f3961568dd7be730c117aa2db507d7e404271ec955894849ec1177bde2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jre-20.0.1-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20.0.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "281f25ea1dbaa7823a21463fa60121e644017bb28963315cdff38a98ce453827", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jre-20.0.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20.0.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "a66386e12f81e4652d220f759d9176e6ed548d0cea8904135426e9516424f185", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jre-20.0.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20.0.1-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "90d83c2d81a130d58aa8bb9ffc8efdaaa01714b7b9308009d31272617a5fd1af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jre-20.0.1-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20.0.1-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jre-20.0.1-ea.1_macos-aarch64_bin.dmg", + "checksum": "959d7a3f4b1ca4efcc8ac20dfd1d54c109290b670945aa952fbd6085c2082e29" + }, + "tar.gz": { + "name": "sapmachine-jre-20.0.1-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "b0c6162300f114edd174372a46d0fdb9755159cd7ad0f79ffd3bfe4d457022cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jre-20.0.1-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20.0.1-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jre-20.0.1-ea.1_macos-x64_bin.dmg", + "checksum": "73d331e092132b12ba7450d9f5d84347c377bd1a51767c02d7b251a14cbbcd07" + }, + "tar.gz": { + "name": "sapmachine-jre-20.0.1-ea.1_macos-x64_bin.tar.gz", + "checksum": "3cb104daaadc40b98496c266faadba2e839076e3411ca9e042ea67f2353af2b1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jre-20.0.1-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20.0.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jre-20.0.1-ea.1_windows-x64_bin.msi", + "checksum": "85d1c2a062c63cb576a9e11a1e677673375cc6b4fc20efae96cc5b6da733ddc4" + }, + "zip": { + "name": "sapmachine-jre-20.0.1-ea.1_windows-x64_bin.zip", + "checksum": "93e45f293b4ed7e2f3faec814d304cb1bdfc271c3a7ab0e39b6bf32cce756dac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20.0.1%2B1/sapmachine-jre-20.0.1-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "20": { + "sapmachine-20": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20_linux-aarch64_bin.tar.gz", + "checksum": "f673855182d92973f1928d5695a504dbf17262828c9dd00f30c60c5e10e0eac4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jdk-20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20_linux-ppc64le_bin.tar.gz", + "checksum": "50749b911e1d6eb0535088c59c74d99dd049d894e0df70201a92d37edcaf8291", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jdk-20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20_linux-x64_bin.tar.gz", + "checksum": "29fbec8a7c89561264d3e53547636b5eb4a8af65e8aa3892504418e0b9b60e16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jdk-20_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20_linux-x64-musl_bin.tar.gz", + "checksum": "a6704d9023cfd5850af92ca4b2b968b4e5ecaac7fa8f709a5a102f193f7083b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jdk-20_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jdk-20_macos-aarch64_bin.dmg", + "checksum": "86b57d7ad1011e459efe80ad947bcbd59b1580f6d63220e8464426263ac1577c" + }, + "tar.gz": { + "name": "sapmachine-jdk-20_macos-aarch64_bin.tar.gz", + "checksum": "c5c360e340902514c4c7a8966e2e48f0b73c9ef10dbd73527afe0384a2bb058c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jdk-20_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jdk-20_macos-x64_bin.dmg", + "checksum": "cb5a0abefdf02118747c89f6e8a9fc59f37feef361bb68b39be40d368012b80c" + }, + "tar.gz": { + "name": "sapmachine-jdk-20_macos-x64_bin.tar.gz", + "checksum": "d4e47a7b5cd233a4348aa393c4d9fb2d4c30ef76ce5bca163fecab85241386a7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jdk-20_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jdk-20_windows-x64_bin.msi", + "checksum": "68eef2eab33e8201d794c078e08203ac73fe3caa17e9b23ad187678fd940fb5b" + }, + "zip": { + "name": "sapmachine-jdk-20_windows-x64_bin.zip", + "checksum": "3c05efd803b6c3c0e007039c6d50fb49257399a5bf40b3d1ba37464c44afcd79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jdk-20_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20_linux-aarch64_bin.tar.gz", + "checksum": "c9ca206026f8816cc680fd326c0d55740da1f293456d134e312dc0b57302a3fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jre-20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20_linux-ppc64le_bin.tar.gz", + "checksum": "5cc9dd95f86c7e87feba962400e878458b8dd1161cd72f3346090e4aa024d903", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jre-20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20_linux-x64_bin.tar.gz", + "checksum": "bf759512ad35a8f812d23960100de8222f40f1b37f561692655ae22315b17b81", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jre-20_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20_linux-x64-musl_bin.tar.gz", + "checksum": "426ff7ea99947f129a6816cf191a35f215df95054054fa174172eed7d8dce17b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jre-20_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jre-20_macos-aarch64_bin.dmg", + "checksum": "a6be67c1942de4faa49f88780832165064bf493eca69d99c69eb017352a9a0b5" + }, + "tar.gz": { + "name": "sapmachine-jre-20_macos-aarch64_bin.tar.gz", + "checksum": "c16516b25a320d2e7ffa4c13a79f0b0b302088e1633268bfd6e84f82898570be", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jre-20_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jre-20_macos-x64_bin.dmg", + "checksum": "7fd600d4de49ae03977f43ee25e81571a82f5fd4c993921f2ab76003f42f74bc" + }, + "tar.gz": { + "name": "sapmachine-jre-20_macos-x64_bin.tar.gz", + "checksum": "a32bf4d97ef0a7abf59f031e92f541f24359dd2fb8a62be117c9c5072cd01fbe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jre-20_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jre-20_windows-x64_bin.msi", + "checksum": "c017c9781cefdd45fc120a024515a363243824fdde90bb23c4e99f87c95d5f5f" + }, + "zip": { + "name": "sapmachine-jre-20_windows-x64_bin.zip", + "checksum": "48529cf25bd386b06b54f266cfb51510d0128cfd0fa32e5c2efab3f372b9dcea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20/sapmachine-jre-20_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+36": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B36", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.36_linux-aarch64_bin.tar.gz", + "checksum": "433138cf44a4adde5d56710fb7cfac1072be29db391966c4701235b66e5fc8e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jdk-20-ea.36_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.36_linux-ppc64le_bin.tar.gz", + "checksum": "0aa494c2e076d9c2ba5fb7fda6354755d6029c4f7738507299780cf1385aedf6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jdk-20-ea.36_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.36_linux-x64_bin.tar.gz", + "checksum": "0919f2fcf90ffdec2d98ce264c6a9ecc8343f1fb4628291262c59cc162483529", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jdk-20-ea.36_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.36_linux-x64-musl_bin.tar.gz", + "checksum": "2f2a6a21ba891c44305637aed987363f9bd74782eb3ad2aa106352f20c5ea15d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jdk-20-ea.36_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.36_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jdk-20-ea.36_macos-aarch64_bin.dmg", + "checksum": "c6cf4427b33b7dfcf071e5ac23962f92a0093fee863f6aba40baccf0bdbea971" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.36_macos-aarch64_bin.tar.gz", + "checksum": "15bdb1557a15bcb84b3fbba1c2ed8a3504ede3317cf4961d18ee072964175930", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jdk-20-ea.36_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.36_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jdk-20-ea.36_macos-x64_bin.dmg", + "checksum": "508769a108cc42488d1e88941cce5ea87d09c95cf3563b0ff07f09b3ad5dd242" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.36_macos-x64_bin.tar.gz", + "checksum": "df126fdf9e0d3187ba9636353e4af9881e159d7180ad9ca7c513b8b2984a5dcb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jdk-20-ea.36_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.36_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jdk-20-ea.36_windows-x64_bin.msi", + "checksum": "e4a81bd52549c10e671f98644865e24c47549190baf0f36b7d86cdc62fcdc73d" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.36_windows-x64_bin.zip", + "checksum": "673ff4ed26b38f1426067da8276089ed4a01177dca945c880ad0015797413f05", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jdk-20-ea.36_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.36_linux-aarch64_bin.tar.gz", + "checksum": "7508488d86c1cd44c219f62dad795e1ae8305de84cb4c8cd6acc1f3eaa82da6d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jre-20-ea.36_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.36_linux-ppc64le_bin.tar.gz", + "checksum": "8f887bd020c83afa6791a000085fd70069f896bf196f630e14447c7287b1341f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jre-20-ea.36_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.36_linux-x64_bin.tar.gz", + "checksum": "bed0fca6dc93a6c218f6ee0960d1b43e31a6baef92900cdb61411f8018277a93", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jre-20-ea.36_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.36_linux-x64-musl_bin.tar.gz", + "checksum": "43111db5ad6ffae9fc0e2a2d85a15924f95b64275c54484b8ad9f6aa1ae8ee37", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jre-20-ea.36_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.36_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jre-20-ea.36_macos-aarch64_bin.dmg", + "checksum": "1de66dd83289b92cf92913d1c6c55647fad5aa607359ef3cd37aafc675a388ba" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.36_macos-aarch64_bin.tar.gz", + "checksum": "0d8d52b595e71602477a6e5c387009e909253eaef78bd233540cfa98a8836b86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jre-20-ea.36_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.36_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jre-20-ea.36_macos-x64_bin.dmg", + "checksum": "108a72d05a45dc2c63faa8d26c7796caa7207a88dc041d2421e7852b5afd137a" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.36_macos-x64_bin.tar.gz", + "checksum": "6e8a376e0f94ffb841e6757b9c52bded7de1c9dc5ed69f2919948aed941c367f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jre-20-ea.36_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.36_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jre-20-ea.36_windows-x64_bin.msi", + "checksum": "63dc9a1013b99930a1ed2a16bdab67f884da3a96015aaf5066a84605a22911fe" + }, + "zip": { + "name": "sapmachine-jre-20-ea.36_windows-x64_bin.zip", + "checksum": "d2883338758949ab8d5c3fe69b6415a573546d69c5b144cc32a2494198dd63f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B36/sapmachine-jre-20-ea.36_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+35": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B35", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.35_linux-aarch64_bin.tar.gz", + "checksum": "fb5fc1785b7f807fb73e995b12571061a9c356aa61bcb6451e6893b4d1550fb4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jdk-20-ea.35_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "7c00c3b655fccde940f0237a4ae9c800d2459a18f19d08238e473bfa055d5777", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jdk-20-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.35_linux-x64_bin.tar.gz", + "checksum": "4ba52ba4e3b6bbec325da5437b8265045547e8931e3f867faf0edaef2c327afc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jdk-20-ea.35_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.35_linux-x64-musl_bin.tar.gz", + "checksum": "510e5cccaa1152253f54d9e0940e24f0e6fb61a8ebeb0e8422f2e48670297ef3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jdk-20-eabeta.35_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.35_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jdk-20-ea.35_macos-aarch64_bin.dmg", + "checksum": "74a9402ba893130de4c23171f77bb0401c38735acf37086669d55a13035c7520" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.35_macos-aarch64_bin.tar.gz", + "checksum": "90aa488e8c8da82b2273a143c1e78c69f7364821059c3ddd8f2214677da36c75", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jdk-20-ea.35_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.35_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jdk-20-ea.35_macos-x64_bin.dmg", + "checksum": "8bcb16a679bed1e075e8f3f032f38f6b1f0788f5d1199fc33a3414ce62c4ccda" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.35_macos-x64_bin.tar.gz", + "checksum": "19e6dc88492cd9058ab58dfc1d609aa7e952ab9221bc43392fd3eafad6c878e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jdk-20-ea.35_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.35_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jdk-20-ea.35_windows-x64_bin.msi", + "checksum": "01530a3c25a0ca45e2bbe06530d6c5c88362e2873aefb35031aa529dbc4b6276" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.35_windows-x64_bin.zip", + "checksum": "3d676c83c8ccc6ce104bb82d39cfdff35f1fb6865e9a5ebb1d9b003b4cc453ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jdk-20-ea.35_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.35_linux-aarch64_bin.tar.gz", + "checksum": "9947ac3ca45dd20ca0ecb62937153b2ffd1daac870cde03f2ee3d9ca695f1584", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jre-20-ea.35_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "9f550a6e8a687567add885d4e834b2780a146c9df8bcbe0b40c52e9c5510f498", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jre-20-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.35_linux-x64_bin.tar.gz", + "checksum": "d8c759c89a466d9e0c70ffe1809d291a632120c6b029e3768d2f6e5a32bb9fed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jre-20-ea.35_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.35_linux-x64-musl_bin.tar.gz", + "checksum": "98b4686a4cdce52d8fbb502112206897f6d08d2897c144076d5280c33ee7c808", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jre-20-eabeta.35_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.35_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jre-20-ea.35_macos-aarch64_bin.dmg", + "checksum": "a561f47821866bb3628a027d904a156dac6c0cc7e7eaf0b0a6ee9f49edd597f8" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.35_macos-aarch64_bin.tar.gz", + "checksum": "b8e4c78278e3561b96056b9dc1d487bcfdc5707595cb94ca7318592f1b4535d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jre-20-ea.35_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.35_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jre-20-ea.35_macos-x64_bin.dmg", + "checksum": "33aa770811c02e03f5f8683b9478ab79055a5b1c7330b1103fd7f3ad4d313663" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.35_macos-x64_bin.tar.gz", + "checksum": "974ae4520606777b470bf63670ca79f6aee57204b5987bb855bbd4ba30743e73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jre-20-ea.35_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.35_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jre-20-ea.35_windows-x64_bin.msi", + "checksum": "f0e910c5d40adf999a816a6f740e63336e3d1e95d450becca22b72c10682be49" + }, + "zip": { + "name": "sapmachine-jre-20-ea.35_windows-x64_bin.zip", + "checksum": "4ea48e2141f32030f709d663ccf58663a5b8890ae4371396f96af59620ed675a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B35/sapmachine-jre-20-ea.35_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+34": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B34", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.34_linux-aarch64_bin.tar.gz", + "checksum": "590d585d5ac9571c1af946aaf7684af9b96e987bb85352b825b9ac056740f51a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jdk-20-ea.34_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "4625d378c2303949cf336f6f62849e56f1c9faca206a38ebbc1a34d7cc69dbe2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jdk-20-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.34_linux-x64_bin.tar.gz", + "checksum": "6208fe67411405625611fd9a458358da3fd19528260b261bc63a39c184a0d87a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jdk-20-ea.34_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.34_linux-x64-musl_bin.tar.gz", + "checksum": "fca7778ef6ef43360a0fa24cd2c942cf57afaa4765b598954aede03d93c487bb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jdk-20-eabeta.34_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.34_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jdk-20-ea.34_macos-aarch64_bin.dmg", + "checksum": "403e75b5b2fde6f172aaa015f583661ae89252824872a69f4674d4ce0f2220e2" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.34_macos-aarch64_bin.tar.gz", + "checksum": "25f941a14573d1883e5a4be7fde0954767892fe179f2969a397db18476d1f18c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jdk-20-ea.34_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.34_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jdk-20-ea.34_macos-x64_bin.dmg", + "checksum": "bf9af73ca3deb5068de683d9042a4c569187c2e765dc9476863f557eeffd9abb" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.34_macos-x64_bin.tar.gz", + "checksum": "18b274b164b93caeaa81e54bbc551456dd78dc10ef0fad3e74ad570f9da569d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jdk-20-ea.34_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.34_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jdk-20-ea.34_windows-x64_bin.msi", + "checksum": "f88afc4e0b28b12c735de58172094a31d98f49c1f97175d1e925eadd577048af" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.34_windows-x64_bin.zip", + "checksum": "8cd30ce3f27f4d0054fd9d424165ce95608ee94a51dbf8053e3519bee85c244e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jdk-20-ea.34_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.34_linux-aarch64_bin.tar.gz", + "checksum": "ae2d5fa42c9025ddeaa85ab12a0ae340f08433b4a7193e546696d13842981a3f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jre-20-ea.34_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "6910e44af2d952ff673591f9f3312bc855978d238a5caf4755a739324493dbd9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jre-20-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.34_linux-x64_bin.tar.gz", + "checksum": "d951bcce7766bf944d85be46b1595b634fd8df7b851b564eaca0bed5f1e1a136", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jre-20-ea.34_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.34_linux-x64-musl_bin.tar.gz", + "checksum": "0e15331f4a778b19b2fc73f7723e5623897e40241ad2576497b77d4c0b78d2c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jre-20-eabeta.34_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.34_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jre-20-ea.34_macos-aarch64_bin.dmg", + "checksum": "64854ea1744427b4afcc6dda9909613d425fb7c89d57b5ac131510894ff7ac21" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.34_macos-aarch64_bin.tar.gz", + "checksum": "b75629f01ab48bab46ee76ef6ebc7742e685e09042e66b86d730bb112302c2e1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jre-20-ea.34_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.34_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jre-20-ea.34_macos-x64_bin.dmg", + "checksum": "7e04452a2e225fa6a2268ed9559eada13d68d5bf9b6e2c29fe768759cedbe196" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.34_macos-x64_bin.tar.gz", + "checksum": "61c4a83cf297757b81a3482f428ff7953f10b3f6187f1c2547d70d94d63136ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jre-20-ea.34_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.34_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jre-20-ea.34_windows-x64_bin.msi", + "checksum": "43fdef493cfee91ad6073de580973f86f7d1d4e28ddc57e92d67ba6c1947aba1" + }, + "zip": { + "name": "sapmachine-jre-20-ea.34_windows-x64_bin.zip", + "checksum": "0cc72d7211b31025ea5500a2b3980d2f16ee727b0f94ceced7bb31be890a5ca5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B34/sapmachine-jre-20-ea.34_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+33": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B33", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.33_linux-aarch64_bin.tar.gz", + "checksum": "174799a0f98063720c3a7adb19e3c2e4ba3069efd548c27690ceefb548cb41e7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jdk-20-ea.33_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "9cf4d4a381a8c3a3e58b3baa95aafdc75e97d6be46243ca5a07a682a13b8912b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jdk-20-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.33_linux-x64_bin.tar.gz", + "checksum": "6f8faea94889340f2100bbd468769f2173fff6b3e4c120d10d0d90560b75890e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jdk-20-ea.33_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.33_linux-x64-musl_bin.tar.gz", + "checksum": "310d3f4ce816ac5a07e174d1e919f491f9ad332379bbc9b3a4ea55d2ee5898ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jdk-20-eabeta.33_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.33_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jdk-20-ea.33_macos-aarch64_bin.dmg", + "checksum": "d983cb7d0a5d2dec0d34c373280535d293d7a61f78fc7f99edbd5129e85e2c17" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.33_macos-aarch64_bin.tar.gz", + "checksum": "fe53e02f8f97797dabb4d97bf85224f8df2cdf6ad3a3a96d2aa41ae6436f9a40", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jdk-20-ea.33_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.33_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jdk-20-ea.33_macos-x64_bin.dmg", + "checksum": "3db7607ac59a29084d958d3b2013e789076a90335f9342a7c81c5eceaa53ba72" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.33_macos-x64_bin.tar.gz", + "checksum": "8e378354c9c5ac398f8514d6d58c79ff1f0faa42a11438ca493bb653cc37dbfd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jdk-20-ea.33_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.33_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jdk-20-ea.33_windows-x64_bin.msi", + "checksum": "0a072607b75a36555940835c617dc0a3b69149a704bca423c849b42c06efafef" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.33_windows-x64_bin.zip", + "checksum": "bccd8ba8bb55c09ccc5cb144c7eac1a1df8189c03e3bd388c05395619b84ae6f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jdk-20-ea.33_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.33_linux-aarch64_bin.tar.gz", + "checksum": "e1a2c99f871757a823d0e3435961adf15a42a3d7c1b3b627a9dd82692dcc8717", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jre-20-ea.33_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "467840ce4442562ec7296787e7f4d99f28014ce05e2816499f4813e1b8537c79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jre-20-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.33_linux-x64_bin.tar.gz", + "checksum": "277bef3e72915e54afa4d45311cabd6e89991863eebf245b1b463f8db5eac809", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jre-20-ea.33_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.33_linux-x64-musl_bin.tar.gz", + "checksum": "2969813f2348057da1bcbfaa5a0a1a593f63fa2f056f505527750d9de15f43fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jre-20-eabeta.33_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.33_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jre-20-ea.33_macos-aarch64_bin.dmg", + "checksum": "9acff9e475e7af393f41e7348177dd42dca5ae062529d078ef428bd08bca02bf" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.33_macos-aarch64_bin.tar.gz", + "checksum": "3662e501cba7cb1686b8a413f0e83ffb197ec3061b142bf940eede7305bfbb06", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jre-20-ea.33_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.33_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jre-20-ea.33_macos-x64_bin.dmg", + "checksum": "1418ef03522556595c5fd6664aec1a6127fa244e2392a00497ad3fa08305f0d3" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.33_macos-x64_bin.tar.gz", + "checksum": "79fe1180cade30b0b02950cae87e93aa308bcf7ea74b32fd892dff66707eaa2c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jre-20-ea.33_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.33_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jre-20-ea.33_windows-x64_bin.msi", + "checksum": "75abe7890005f4ede8b0c51cd6a3c1d9995d172e2f7f452698889fc6041dfa68" + }, + "zip": { + "name": "sapmachine-jre-20-ea.33_windows-x64_bin.zip", + "checksum": "2aec20f3761f0aac76ca7fc58cbfdbfebfc83f4975b5665efef85ecbafac9ea7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B33/sapmachine-jre-20-ea.33_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+32": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B32", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.32_linux-aarch64_bin.tar.gz", + "checksum": "525eea6ccb78764d42607580f476bbddd262c029f683c44bd90d2aaf4ffbbbf7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jdk-20-ea.32_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "50c58cb7430d7dfd0d7b4f7067aed06184a9c898ccaf54edc813d4c99e1a341b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jdk-20-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.32_linux-x64_bin.tar.gz", + "checksum": "14577709e88384795ae1e81b3cf87ded3d1327f7e29ab369cd2a9942e50bcb38", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jdk-20-ea.32_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.32_linux-x64-musl_bin.tar.gz", + "checksum": "53cba9718d61bf6b7605b8f3611c0e162ecd0d2f6627e18950006a4f7ed370d0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jdk-20-eabeta.32_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.32_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jdk-20-ea.32_macos-aarch64_bin.dmg", + "checksum": "41dde2fa3338a750958d6fa356e9f183cda8c40691046f74eed9e1e613b624f9" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.32_macos-aarch64_bin.tar.gz", + "checksum": "f712f174a1fe3962d1c38b92eb5de313e2f30b9837b0fdc409aacdfd5e57bb1f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jdk-20-ea.32_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.32_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jdk-20-ea.32_macos-x64_bin.dmg", + "checksum": "a54f2974f6f755fe1c017e4524db50c04b73c7e44eaeca897378948638f31ab0" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.32_macos-x64_bin.tar.gz", + "checksum": "cf34c9a2efc4f5e543cee77d79e185db75be712ffb5ff61e3bf25e5b903df8f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jdk-20-ea.32_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.32_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jdk-20-ea.32_windows-x64_bin.msi", + "checksum": "baf52a215327e79b13d6d907829420681695a26bcf83689c830a1a4bfa2807b2" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.32_windows-x64_bin.zip", + "checksum": "cb191655baaeed1fb0d725a596e221d885b63de8fac77d3aa8865bdc572fd1eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jdk-20-ea.32_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.32_linux-aarch64_bin.tar.gz", + "checksum": "47df1b3f14e6ae8d6e02e5fff2d17f4a37b0adfcc8e6204b3902021dc06f9ff8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jre-20-ea.32_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "ad680551b5dc1cf968baeb1cab23323c0e03091d6ae0621366cb4d6dd8085388", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jre-20-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.32_linux-x64_bin.tar.gz", + "checksum": "b4d8073fa639ad92d1df87cc5bed66c046f2ef2e6cf3f5077583258557f9e208", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jre-20-ea.32_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.32_linux-x64-musl_bin.tar.gz", + "checksum": "4710f8ab23e460e3522641f9ea4613df6743148011139f9f916a9ff59acbcfae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jre-20-eabeta.32_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.32_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jre-20-ea.32_macos-aarch64_bin.dmg", + "checksum": "dca16e6d52857f10ca54d9062f011655fe15aeae81b50f20664adf397eb02eb8" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.32_macos-aarch64_bin.tar.gz", + "checksum": "94f2b33976a503063275589a6df99479ea20fef335d419016aa541aab06ad6c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jre-20-ea.32_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.32_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jre-20-ea.32_macos-x64_bin.dmg", + "checksum": "1caf617dd54fcabc45e040eaf30a6eb5f40f653cbef0ebd47d12e6d727887bc2" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.32_macos-x64_bin.tar.gz", + "checksum": "765cb6bc6c49c19d6aa8d8c02fc58d8f907ada19cbbc43d92c73082d48ea852f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jre-20-ea.32_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.32_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jre-20-ea.32_windows-x64_bin.msi", + "checksum": "7e9c83e2a35b25631bc2c4bc51f63deb60b6d8aefe7181502dc59756a3190e95" + }, + "zip": { + "name": "sapmachine-jre-20-ea.32_windows-x64_bin.zip", + "checksum": "9fa49aa6de3f605298ee84a742f1bc639ba35423ba9157d77ca3c5bba7a8aeb0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B32/sapmachine-jre-20-ea.32_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+31": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B31", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.31_linux-aarch64_bin.tar.gz", + "checksum": "efb5fbfabf31c7d5b4cf59e5a8376707d22a0d1eee4158f708949fd86a6c6db0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jdk-20-ea.31_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "c1cea501ec312ecf97b8e9356f97eb92b713cd52a8da431ab123c25194ef5cdf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jdk-20-ea.31_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.31_linux-x64_bin.tar.gz", + "checksum": "3115013ff5e5e3a8b698dea03c2597ba5d4cd230e6a5e4ecdfc0ef64ea930d86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jdk-20-ea.31_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.31_linux-x64-musl_bin.tar.gz", + "checksum": "72f915ff90f37e6e2eda4183caeb5627744041a2dc4bf8c9d7a8bf40bc2b87e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jdk-20-eabeta.31_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.31_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jdk-20-ea.31_macos-aarch64_bin.dmg", + "checksum": "54fd2a412d3359e89af71a18cbc8eea9a307c6422edfa7a9bedd751686f8c881" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.31_macos-aarch64_bin.tar.gz", + "checksum": "ba15e423ff8376ee73ab25dd72e356fb0c88287a1864348874b70d3043bdb942", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jdk-20-ea.31_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.31_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jdk-20-ea.31_macos-x64_bin.dmg", + "checksum": "f3c5b5c9ed5acec0d667c8e2a297719786623f2a8d246d3704a5d2808bd1fadc" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.31_macos-x64_bin.tar.gz", + "checksum": "b89abc27ea32ac9f6df7c54f2d9e2e68edc948217d77b8415a45cf55d7018894", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jdk-20-ea.31_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.31_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jdk-20-ea.31_windows-x64_bin.msi", + "checksum": "f0d99ff7bfdebf8a1e83b3b2ae8f8fa82e67a5ee9c3997e4a1337b2c2d16e2a6" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.31_windows-x64_bin.zip", + "checksum": "4d1c6be5d0c4e98de3612048edf4870897bc26faa7ec5a8420e12baf3e251e4a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jdk-20-ea.31_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.31_linux-aarch64_bin.tar.gz", + "checksum": "c7b4fe985704fbeef4cc58923c4df3baa82b5c07ee5c6b113afcd85f8b1418e3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jre-20-ea.31_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "bea57e2e0cb0a423b5438af8d9a461a760bf1436ce0ee5dbb50bf3b7ce52e4a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jre-20-ea.31_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.31_linux-x64_bin.tar.gz", + "checksum": "b1093863ba74a5bc5ee357774fa8372b046587828e9b1da27ff6cdc6d233aa66", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jre-20-ea.31_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.31_linux-x64-musl_bin.tar.gz", + "checksum": "a6d30c0c0171469f0aeed91c447cc5ea2a14dda6b8b43e4dcd4ee3863780d6b1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jre-20-eabeta.31_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.31_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jre-20-ea.31_macos-aarch64_bin.dmg", + "checksum": "2f06d67b09dbb8dc8870b0fdd3b308f28a4801b00f41af902591986eb8654220" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.31_macos-aarch64_bin.tar.gz", + "checksum": "94309cfcba359cd335935be77a981f3848e452af56aee641b891f376454c3b94", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jre-20-ea.31_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.31_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jre-20-ea.31_macos-x64_bin.dmg", + "checksum": "8365eb2e615d1646f2f2909f661348261e997f6c20f7688ef94e9fb225e820eb" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.31_macos-x64_bin.tar.gz", + "checksum": "31d77c404935ae083eecaca96d53c4e7b4b37163541751da0d043ffd3d756626", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jre-20-ea.31_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.31_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jre-20-ea.31_windows-x64_bin.msi", + "checksum": "a29bd541a6e06cd98a23a069252030732cf58e5ee7dfb2f81b9c5f4168d4d329" + }, + "zip": { + "name": "sapmachine-jre-20-ea.31_windows-x64_bin.zip", + "checksum": "79f71994ff70cf8ebdac4e9b9e5223c24ec69500eef8becf3b0fede86ec2c1cb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B31/sapmachine-jre-20-ea.31_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+30": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B30", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.30_linux-aarch64_bin.tar.gz", + "checksum": "4c136a2b198431b96fd8a51eb0a050a22bb314251de5f45eee78fea09f6cfc61", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jdk-20-ea.30_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "fbb2c33cfac921c52a53295aa2712d36f53dd356c9086b2548be402a6ab4828f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jdk-20-ea.30_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.30_linux-x64_bin.tar.gz", + "checksum": "a462bfe24ee74ca34974a16f461951f698a840536c3a0fd828725233f0fcf2e1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jdk-20-ea.30_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.30_linux-x64-musl_bin.tar.gz", + "checksum": "db5f8ccd57e23c9a7387beb8a47c3d8a45c7a7d95b410e862274c2e64f9e4c2d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jdk-20-eabeta.30_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.30_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jdk-20-ea.30_macos-aarch64_bin.dmg", + "checksum": "cb983ed901981aa79f5435233639e8bb66331f9d3fb4093a08d842055c66aaa5" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.30_macos-aarch64_bin.tar.gz", + "checksum": "8c3bdce3f2e9270def7e65af07244fa0f503efc1a66b8699b2028ee352bd9f3c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jdk-20-ea.30_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.30_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jdk-20-ea.30_macos-x64_bin.dmg", + "checksum": "ecadaf0769a244a4c3f9a140742b11ae18980e4dc6b8d29eff277131fe01ee5b" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.30_macos-x64_bin.tar.gz", + "checksum": "5493cb31cfe243e5655dd4d658b26a9497c5624f03cf3a9d6fd54b4d4e4c3c76", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jdk-20-ea.30_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.30_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jdk-20-ea.30_windows-x64_bin.msi", + "checksum": "f2730d8356968f04c7ac7bbc8e514e0fd2f47315dc8d8cbc8ed90a1b1357b04b" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.30_windows-x64_bin.zip", + "checksum": "5c716aace5250eae041dcbf8a8b7aaf5bda6e8e22e6a4782f66b049bcef5c1f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jdk-20-ea.30_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.30_linux-aarch64_bin.tar.gz", + "checksum": "8fa80456bedd233c0f5b7665faa2a2c23204ce1a18e0b3ac5742df9ce3b10cce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jre-20-ea.30_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "ef84b1282946698fd52469028f6dfa011f6d210a1a6ee5fd6837db304c984cdb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jre-20-ea.30_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.30_linux-x64_bin.tar.gz", + "checksum": "40aa0da5ff2c05781812f364685335061b587630fefd0ed300fd610f1f28909b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jre-20-ea.30_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.30_linux-x64-musl_bin.tar.gz", + "checksum": "bfe341585f8e256385398c9dd83440320a3f9bbb15bdcd0d32c446ad9e7637ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jre-20-eabeta.30_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.30_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jre-20-ea.30_macos-aarch64_bin.dmg", + "checksum": "f6d9d2e4f96a7c18f50c6fb746bfa62d1ab974c47c12d6b4acfd1fed24de9df0" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.30_macos-aarch64_bin.tar.gz", + "checksum": "1795f9fe2533e2bdd2fa51da5b85bf8f20d286c9cc77dc8ff3fe7f2703d3b6e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jre-20-ea.30_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.30_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jre-20-ea.30_macos-x64_bin.dmg", + "checksum": "037d2d620be04d0a5b5ccc9600c1b3b065590430b073f90b2b9369516dd3c44c" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.30_macos-x64_bin.tar.gz", + "checksum": "fc3e429c460ef3d4279d52b313deaef915dc0fbe0fb983773b5925915169f82d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jre-20-ea.30_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.30_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jre-20-ea.30_windows-x64_bin.msi", + "checksum": "980c2a39235c6e33315bd2a2d08c726205d81fe23b8e2b7cf1655a0fce1ce7d6" + }, + "zip": { + "name": "sapmachine-jre-20-ea.30_windows-x64_bin.zip", + "checksum": "c9792d8546ef485744dbd29f192f22ccc1bc7b69730583531e36d1d74e84ecce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B30/sapmachine-jre-20-ea.30_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+29": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B29", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.29_linux-aarch64_bin.tar.gz", + "checksum": "7770d1ff37afc30d363b715b54d0c36116b48375111e5dac909d125b6358b239", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jdk-20-ea.29_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "9a4e43150b4effe9e6a20f2a358f58af3e6304905a5bd8ef38e537e623954554", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jdk-20-ea.29_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.29_linux-x64_bin.tar.gz", + "checksum": "ea792332b545ef2b697b34749c99255c47a215e1b98360404797e6b3394de5aa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jdk-20-ea.29_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.29_linux-x64-musl_bin.tar.gz", + "checksum": "3de3f181590087c6bf381f10f12d2fd9a7b6195ab5ecaccd1277e881ba19516c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jdk-20-eabeta.29_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.29_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jdk-20-ea.29_macos-aarch64_bin.dmg", + "checksum": "127f844039c8e2557de128be58f031b115360969397b5ad7fdea246dad1cc98d" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.29_macos-aarch64_bin.tar.gz", + "checksum": "04be75a50b8ef4492cda0feff87e71ef7eed4c2647de4aa529d01e230455d96b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jdk-20-ea.29_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.29_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jdk-20-ea.29_macos-x64_bin.dmg", + "checksum": "32b5d609a0ab04fba0a735c67dab01756593291f676cfdf720a6da918d0a5bf0" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.29_macos-x64_bin.tar.gz", + "checksum": "fb443543fce150de8874afa3ae16046936cd0b87556e533817da68134272e22e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jdk-20-ea.29_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.29_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jdk-20-ea.29_windows-x64_bin.msi", + "checksum": "44a796c5b780c7cbdf04280ff5fcf88d676a89f11c6c2e60fc8ba02e62080016" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.29_windows-x64_bin.zip", + "checksum": "a4dfb04b42702926933e1c61af6e4c6871b404ef69edc529bc48d10752414ef0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jdk-20-ea.29_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.29_linux-aarch64_bin.tar.gz", + "checksum": "5688e1cd4f0eb29ff04c98e14f43265ae89e6e961e553bd15054fd8a477a26b1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jre-20-ea.29_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "185f3bf210b8138915d087f5d88d1677ec35fd07f281e36e9272d64fea6cf320", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jre-20-ea.29_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.29_linux-x64_bin.tar.gz", + "checksum": "7a0a32bec3cfee3d5f4e10550e2f8813a65a5f9e0972f125be1f796c0e9338f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jre-20-ea.29_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.29_linux-x64-musl_bin.tar.gz", + "checksum": "588eb371f565a7c28a568bd4eb44fb97005ec30d44470f2dacb7dc9dd5ab0bc1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jre-20-eabeta.29_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.29_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jre-20-ea.29_macos-aarch64_bin.dmg", + "checksum": "3aa1b6d0d111220742d675a3d689e554d6fa4e57d5a6be6b639c83f23664b985" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.29_macos-aarch64_bin.tar.gz", + "checksum": "c325a4a3c51b31e58ce442ba5b72d3696260b9b9a5209f3820fbdc16fd9222c2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jre-20-ea.29_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.29_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jre-20-ea.29_macos-x64_bin.dmg", + "checksum": "349112ff7af7957ccce847da407c6c6605035f86cf0db6f22f6a3ad15ff72955" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.29_macos-x64_bin.tar.gz", + "checksum": "af9b612ef0660ecc4e87ae6e21c2500dca78b862a01726260dc6026ac833673f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jre-20-ea.29_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.29_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jre-20-ea.29_windows-x64_bin.msi", + "checksum": "5f46d8aff88d1497f411acc92ceae90a4977a7067e4973f81fefa2aedab7811a" + }, + "zip": { + "name": "sapmachine-jre-20-ea.29_windows-x64_bin.zip", + "checksum": "a70c227a1cc35d3558f1fb80069c59087386ef6ab9d8952feb595aefb7f44fbf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B29/sapmachine-jre-20-ea.29_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+28": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B28", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.28_linux-aarch64_bin.tar.gz", + "checksum": "35ae6b9dcdf3a13f8dbb0fdb4f9a1edfa04c41f7820d3419ab42a803c1a781da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jdk-20-ea.28_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "26abc7b1350f43b561ff0582dd525e714a9b0f09a4f2f3dc4fd2704947099bea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jdk-20-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.28_linux-x64_bin.tar.gz", + "checksum": "5ffc7604e4dc93485d1f2a99ffcb01cb2eec04d0768ab47f956e52890517093e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jdk-20-ea.28_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.28_linux-x64-musl_bin.tar.gz", + "checksum": "9bde1709ae09800c04ca69a99e5339aa9424f6a3c6d303bd51071f976f8dfa93", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jdk-20-eabeta.28_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.28_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jdk-20-ea.28_macos-aarch64_bin.dmg", + "checksum": "98f763fa6c39f489443e3573c6a322c0f11fba0ad650400d264bec9cd56f23b5" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.28_macos-aarch64_bin.tar.gz", + "checksum": "b891856de84027611dd3c33b7eaa9b62a722b372d3effdb80acd1a4707f4ebee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jdk-20-ea.28_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.28_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jdk-20-ea.28_macos-x64_bin.dmg", + "checksum": "3c1930eea2c2388c22ab9edfb583301bdddb07c89b07f76196f98a7b24fb9a9e" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.28_macos-x64_bin.tar.gz", + "checksum": "b3825dee9254a8f3af0fbc5d8d77b9f0fb865694fb8ff5473e7d2159297c7710", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jdk-20-ea.28_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.28_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jdk-20-ea.28_windows-x64_bin.msi", + "checksum": "550c51f057f35a401925e967a9f976311ede2948ec2d56a0f432fb518a6a55b3" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.28_windows-x64_bin.zip", + "checksum": "279d867d51eb7ffcd3da518d6a260ee13da9a4c40885a8ed493db40977108c94", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jdk-20-ea.28_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.28_linux-aarch64_bin.tar.gz", + "checksum": "2278458079f4541388b4df9d612779ef62dabd54c6f40f45bcb368584d3b68f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jre-20-ea.28_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "b0b53805a08a31c0a97e3022103297fc7d8a1a186e2c60e28e96ff7e6b108f0d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jre-20-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.28_linux-x64_bin.tar.gz", + "checksum": "945ea21dc4fad25dc92648a2105162400a0f5c24834d104f0707755345b3a479", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jre-20-ea.28_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.28_linux-x64-musl_bin.tar.gz", + "checksum": "ae8ae68d06cd1e9c5275df3e7d4229f23a92309d2007935bd49c970576b10615", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jre-20-eabeta.28_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.28_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jre-20-ea.28_macos-aarch64_bin.dmg", + "checksum": "36e3bd67d0c5e1408046ccd88663356c056b170558cee9741431ecb0de55f849" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.28_macos-aarch64_bin.tar.gz", + "checksum": "df6fb2a13229a967f6f9ffd2b613c811a27d936748556d46c15c2d98a54894ab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jre-20-ea.28_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.28_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jre-20-ea.28_macos-x64_bin.dmg", + "checksum": "1551197fdc769ea560fc42f753205604eb992f3218b7e7ca57f80edad5cd1685" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.28_macos-x64_bin.tar.gz", + "checksum": "b5e7ea8aaa8ab8213987dc95485a43fc1a039a26d0aea72e74258418e5071052", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jre-20-ea.28_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.28_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jre-20-ea.28_windows-x64_bin.msi", + "checksum": "aa11237d50ec09267cfeac0b65d20e287fc5d6bd43ca987b1abc9b4b51996a86" + }, + "zip": { + "name": "sapmachine-jre-20-ea.28_windows-x64_bin.zip", + "checksum": "9caaaa1e5de9253a039fc465222381e2a0e9f71d06854541c0ffad59e30ce2c1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B28/sapmachine-jre-20-ea.28_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+27": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B27", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.27_linux-aarch64_bin.tar.gz", + "checksum": "67bd1e676367ea21487a753c1a7429b0a4599b9751405dd3bad95b1e10dbda5c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jdk-20-ea.27_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "d719cb7b9542ddbec90a6afc681c591f0f08881becf6330f36395c33cefd7350", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jdk-20-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.27_linux-x64_bin.tar.gz", + "checksum": "ec1353d0f017c5dd07e24050bfb4c98f2ef0cab79c1752d0fd1bc9e776f19e7e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jdk-20-ea.27_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.27_linux-x64-musl_bin.tar.gz", + "checksum": "03222554ff8db000b3c92fccf296832152ff3e9e6ce3dc55408c7d4d17b52e81", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jdk-20-eabeta.27_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.27_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jdk-20-ea.27_macos-aarch64_bin.dmg", + "checksum": "a97acbadfd1605ba53ad4fecd9cb40befb3304d4fe14661cb6df98a46c8af2f9" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.27_macos-aarch64_bin.tar.gz", + "checksum": "0364126a8c9f0d538cd545fa697efee9aadd61d2e375af01c7e14a4f28124c72", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jdk-20-ea.27_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.27_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jdk-20-ea.27_macos-x64_bin.dmg", + "checksum": "a7e9590cf82f1e6c5eb8d6c7ccc023871a0318d89378244aece36f747d3df257" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.27_macos-x64_bin.tar.gz", + "checksum": "52c630ceb13cfe99f7e1f207497b98e09a2e3bdbc15596c5d31bf6f8c847cda8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jdk-20-ea.27_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.27_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jdk-20-ea.27_windows-x64_bin.msi", + "checksum": "0ff05f8d56760582350273cf463f297e3eca0a2471ea2828bbbd36111f36a507" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.27_windows-x64_bin.zip", + "checksum": "14c1e086e7e09518916a789a261dc353f84a4dd3a3c7054cd06508954c909762", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jdk-20-ea.27_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.27_linux-aarch64_bin.tar.gz", + "checksum": "7a2647bbfff2fa11c42a0f98b469063926c4d987c6b32d531e5f6fbfdbddcea0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jre-20-ea.27_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "d542e76525bcd3ff3e36a6feeebf8da60f287934067bffd56af399c7b557699a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jre-20-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.27_linux-x64_bin.tar.gz", + "checksum": "094e8f91a8997b9e0e9fabab862abff2236fdc873ed33e4200fa60a9c896821c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jre-20-ea.27_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.27_linux-x64-musl_bin.tar.gz", + "checksum": "440196b2d0273cca9bcc2777f2330773e1d37b0c63fcdfb9542a5eb936da0761", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jre-20-eabeta.27_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.27_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jre-20-ea.27_macos-aarch64_bin.dmg", + "checksum": "ce73803f3aebbd9654bdf117510b3ecef720a7bc8637e45719df4223fa4b8d39" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.27_macos-aarch64_bin.tar.gz", + "checksum": "3a821990d79a95a56ca0687919b3c5a6a290ad643c58ab5b0e614f59816aa946", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jre-20-ea.27_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.27_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jre-20-ea.27_macos-x64_bin.dmg", + "checksum": "851a9de69b87affa7b3cb4cdc10e9278aa435ec9c45173443b8633a8b431fff6" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.27_macos-x64_bin.tar.gz", + "checksum": "b4fa5cd30cdcc5c63a5acbfb9bcde9bb5292db9dff6f88072a68ddfa8316ecfd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jre-20-ea.27_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.27_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jre-20-ea.27_windows-x64_bin.msi", + "checksum": "00c071c659c7c06d2a32af4100279b132babb2811a805fd5a6af6c4bde24b96f" + }, + "zip": { + "name": "sapmachine-jre-20-ea.27_windows-x64_bin.zip", + "checksum": "beb227827ab71b5a1df83016522e3902a26c864a3ca59fbec36014a843072fe2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B27/sapmachine-jre-20-ea.27_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+26": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B26", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.26_linux-aarch64_bin.tar.gz", + "checksum": "557a37e714711e0ffdb232451a1a96e4e902e0bb12b8887ef738a942ec868141", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jdk-20-ea.26_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "0dc20589add3d80e663b1584f8f7e61c4186bb875b0594e44da3c423dee02ce0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jdk-20-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.26_linux-x64_bin.tar.gz", + "checksum": "7c8b70101d04dfe34c0b3b3e05f3d9d4a18ed26ea1d5dfa68bd7f4811ee70259", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jdk-20-ea.26_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.26_linux-x64-musl_bin.tar.gz", + "checksum": "33526b254641bd481d3ba5220232fbe83ac8bd07a3502451b1e2e559ce8a99bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jdk-20-eabeta.26_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.26_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jdk-20-ea.26_macos-aarch64_bin.dmg", + "checksum": "0906100917342ce36b301370ff598e49573c84d0246de3c75f1e4c789f50c5ae" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.26_macos-aarch64_bin.tar.gz", + "checksum": "1456116f282b11de1ae2a0469d391b5515e63a4edf62550e7d14ca0fb851edcc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jdk-20-ea.26_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.26_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jdk-20-ea.26_macos-x64_bin.dmg", + "checksum": "075930ca1149e1b0dfcf3da7e1c92626bbd7b3f2125068958c3193dfdcdf8ed0" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.26_macos-x64_bin.tar.gz", + "checksum": "054e146228a666924810e819d3f3b88b8a026ba8215df7d4f6c8b7f28e0e0654", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jdk-20-ea.26_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.26_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jdk-20-ea.26_windows-x64_bin.msi", + "checksum": "b2b9eebddd17a0d25a7e4da00993eceda02ca5e73d3782f2d8f403d96e9838d7" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.26_windows-x64_bin.zip", + "checksum": "bab8adf6eec56eb5cb456794d067872bd1165c8737760b4ee147a128a4570eff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jdk-20-ea.26_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.26_linux-aarch64_bin.tar.gz", + "checksum": "c8ec64d5950ce6b044afc2203d318d7ffcbf7ddbcd93e7a3a3d98694ec96d0b2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jre-20-ea.26_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "f262ddfed751222be98c28f8ac27bf735a59661314a3d9f5ec79b15e4b93b576", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jre-20-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.26_linux-x64_bin.tar.gz", + "checksum": "1816b98a6d9b2cdc62c956d08c6332ca06e5415552002aadb4a6297fd0d1ce96", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jre-20-ea.26_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.26_linux-x64-musl_bin.tar.gz", + "checksum": "b6c837ff38bdfb10a9c9a0b878690cafa22d0339441b9cfc17a04839f091a969", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jre-20-eabeta.26_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.26_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jre-20-ea.26_macos-aarch64_bin.dmg", + "checksum": "f605bd043ebe2ac08dd7491d348d190b905f494dba831a12fdfb63c52b9498c7" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.26_macos-aarch64_bin.tar.gz", + "checksum": "60f2569108f2541eb12152f532bafc2191ff5a7b8e20f6ca6346309d29257d81", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jre-20-ea.26_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.26_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jre-20-ea.26_macos-x64_bin.dmg", + "checksum": "d85cf149b64aa824a0dda914c26c7722e67b32c9de00c6c7cf3537c6ec85226c" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.26_macos-x64_bin.tar.gz", + "checksum": "a153836dde3b20da240cb08dded38aa92fd9e959b32a1e37bb009859b7d20637", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jre-20-ea.26_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.26_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jre-20-ea.26_windows-x64_bin.msi", + "checksum": "5bb50f4a33efecf7ab6ba1cbbd76a1d6f4f84d3e6e69725058aaf19921c79748" + }, + "zip": { + "name": "sapmachine-jre-20-ea.26_windows-x64_bin.zip", + "checksum": "fe17b01cb5b400d0aa6118eba908e41b4007fd6b34cafff846026593ab281056", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B26/sapmachine-jre-20-ea.26_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+25": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B25", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.25_linux-aarch64_bin.tar.gz", + "checksum": "5afa2b58753156d44f2f1deaef4b74051f5995fc1c2b2959c50d1c6ebca0699f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jdk-20-ea.25_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "1efc055e2c5bbd20c9f2354e9d774548e4189369237488ed7a76c39c3d9e112c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jdk-20-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.25_linux-x64_bin.tar.gz", + "checksum": "4747fcf673b90cc5ea87cbc2ce93b2ef98b8896400d4007f343d7865aeaba469", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jdk-20-ea.25_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.25_linux-x64-musl_bin.tar.gz", + "checksum": "44768618bd571b6dce82aa789817b61f4da9f3d034066cdc07ef88a0b77a6205", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jdk-20-eabeta.25_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.25_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jdk-20-ea.25_macos-aarch64_bin.dmg", + "checksum": "77779665141e81a8d210c1bec2f61d0b4b5806c933d11c54c8de506342bb7d0a" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.25_macos-aarch64_bin.tar.gz", + "checksum": "04b160d012407242066d4bf2a9a40cbdcb9369a4834f551197f7b55ee0c4db01", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jdk-20-ea.25_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.25_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jdk-20-ea.25_macos-x64_bin.dmg", + "checksum": "cab9efea440d97cdccaaa33162088bbb6fe994e18ad93efdb47e2ad8e9922c7d" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.25_macos-x64_bin.tar.gz", + "checksum": "f60ba48a2c061dd71345d25c84244bf8f60ed6f74ab97c5c99a6d03fd4f5d0b1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jdk-20-ea.25_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.25_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jdk-20-ea.25_windows-x64_bin.msi", + "checksum": "69e09bf0a27d9f86cc917bc62d0829cf83b0f7821757424d5e7541b199d42d8e" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.25_windows-x64_bin.zip", + "checksum": "2f86e85359ef9868a8b81ee41e6cb770c82c59864dd224abff7ef4a96b510b96", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jdk-20-ea.25_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.25_linux-aarch64_bin.tar.gz", + "checksum": "95eea19fe2db927dd90b81e8a74edc426f0b8799117c73f7b82c6913b9f070a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jre-20-ea.25_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "f05aa816f507f66db2ff78529c83e194651b37f7e766743e0052a70e10983eb1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jre-20-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.25_linux-x64_bin.tar.gz", + "checksum": "5f57438d9bb17d20328dd2eae80a6facaf34f1efad7e468755b1b67cf5c46df4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jre-20-ea.25_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.25_linux-x64-musl_bin.tar.gz", + "checksum": "241d4d6c6f8af21a3615dcb2099bbff133ac8bcff47813267fec04750b38ca56", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jre-20-eabeta.25_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.25_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jre-20-ea.25_macos-aarch64_bin.dmg", + "checksum": "bc676684b8bdc3852a08bff239806a5568830fd928f06972cbebec49861f4301" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.25_macos-aarch64_bin.tar.gz", + "checksum": "c7dbe45d6e4714ef20090861344cfb31cbf9ee29583f3e07257d1e15c9918fdf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jre-20-ea.25_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.25_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jre-20-ea.25_macos-x64_bin.dmg", + "checksum": "cfc2d1e18187dfa92b798df3629b58188dc3112fc741ae89c7d90468b4e7b301" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.25_macos-x64_bin.tar.gz", + "checksum": "0c0c7dbd91ea95f51f7be84d3d06fb9e38bbeff540340c5bcc034a591b3e7829", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jre-20-ea.25_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.25_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jre-20-ea.25_windows-x64_bin.msi", + "checksum": "36fd3aaf17a162133bf547ed212d8ecda0413d014270cd150f3fd97b26af3ab9" + }, + "zip": { + "name": "sapmachine-jre-20-ea.25_windows-x64_bin.zip", + "checksum": "e85bbb0aced6628e716c881f12effa3983c486ae5758980520968ab4007820b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B25/sapmachine-jre-20-ea.25_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+24": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B24", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.24_linux-aarch64_bin.tar.gz", + "checksum": "4d12a096153f243cd5e3aa869a111037631e67ab6ac45120807c900c45534dfc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jdk-20-ea.24_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "fb23e997119c77dbaae447d119255e1ad4d4ae6bb6be5db779d6d9ec6d3b0164", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jdk-20-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.24_linux-x64_bin.tar.gz", + "checksum": "c1b11539e75bb7c4e6b3d4ed60fd103efb46371e7f852eb996f50a03d64ed543", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jdk-20-ea.24_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.24_linux-x64-musl_bin.tar.gz", + "checksum": "625f79da1d32140391050f61afeb395274c9026ff12bdd87590064c00ad3a096", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jdk-20-eabeta.24_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.24_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jdk-20-ea.24_macos-aarch64_bin.dmg", + "checksum": "61d24e91d4f4574164d7cde0299f81c303a61febd91f28cf09c7d5c9d968214f" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.24_macos-aarch64_bin.tar.gz", + "checksum": "e13ef9657c4858c77b520eb9dcdde46c91dc47ec4be490a7937713fe38269dff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jdk-20-ea.24_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.24_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jdk-20-ea.24_macos-x64_bin.dmg", + "checksum": "cececa0390ed09b080fc47547641ce257192b07b45ac49cbbf20daf0aba361cf" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.24_macos-x64_bin.tar.gz", + "checksum": "129eb538ef8dca4a7682dbeababead8515bb707ef934c72cdd52452cc14b88f9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jdk-20-ea.24_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.24_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jdk-20-ea.24_windows-x64_bin.msi", + "checksum": "ee603690e90a7f85d3a3f4a99e20badf79809b4d591a37368d3166469eaea6dd" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.24_windows-x64_bin.zip", + "checksum": "eb5f656590c0228637998a45cf4a52cef251a8cc6e21e8672c926d44772865dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jdk-20-ea.24_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.24_linux-aarch64_bin.tar.gz", + "checksum": "a0f21d60d4b98db4f1775133b1535abaa1948ca4b5fd137b1058a0f915be599c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jre-20-ea.24_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "b0dff1dff3f5302d480b56aeba41537e1e004b0e29496f506b688cbb2177e478", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jre-20-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.24_linux-x64_bin.tar.gz", + "checksum": "2258efd6ee04ffd76e9bb669ec061fb980564935d41683a321d724ebcb64f8cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jre-20-ea.24_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.24_linux-x64-musl_bin.tar.gz", + "checksum": "bfbd4621883d3c019b87d8581b86f6c5ec016b92b1c0f135820bbcf8608f4ed6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jre-20-eabeta.24_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.24_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jre-20-ea.24_macos-aarch64_bin.dmg", + "checksum": "ae88c3178db2df821c83596d83eeb81a1ed2c443b73c3d5a22f23285e3ae35b7" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.24_macos-aarch64_bin.tar.gz", + "checksum": "d5e11fc541ee919760ed402729317fc308ad8d526b02c18e7cb3011dfb6b0007", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jre-20-ea.24_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.24_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jre-20-ea.24_macos-x64_bin.dmg", + "checksum": "bc05b8ba8b548647ab0711e2bf85a2506f0cbba7e6446af372a57a995b52f6a2" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.24_macos-x64_bin.tar.gz", + "checksum": "e6a941ace7fa831f946d53eb26ba567ae49a0d4bcccf623241da726dfe83c45d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jre-20-ea.24_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.24_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jre-20-ea.24_windows-x64_bin.msi", + "checksum": "9a5f45c20de2f3cdf9d94d8a7abccb7d5176661b44ad77230379a8130b53116b" + }, + "zip": { + "name": "sapmachine-jre-20-ea.24_windows-x64_bin.zip", + "checksum": "4140bea9faacccc74d3664c72eef1d9ce6a891d0a4e380a3f287dd410820fcc3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B24/sapmachine-jre-20-ea.24_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+23": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B23", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.23_linux-aarch64_bin.tar.gz", + "checksum": "9533e42b6fb41e785d43a324de62f3bbeb6decde6f0e43dc381daf0529ae4c6c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jdk-20-ea.23_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "c78edb2c6390904ca79143e6e3bcf718ea13d9770fa44d5e949a1a96a51c38ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jdk-20-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.23_linux-x64_bin.tar.gz", + "checksum": "2f9e3943e5d9a59803ba11cc3b82670379a015b0c6dd3b11a556bf586ad171c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jdk-20-ea.23_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.23_linux-x64-musl_bin.tar.gz", + "checksum": "8c3b403048e8b7330b98b3c80698b8cb04a28aff6e07a464631d3f35dc6ab675", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jdk-20-eabeta.23_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.23_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jdk-20-ea.23_macos-aarch64_bin.dmg", + "checksum": "23f3789c30d5eca01ea9cbe8decd53d7dbb25c85a3ad494a5e4b66da75bed34e" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.23_macos-aarch64_bin.tar.gz", + "checksum": "5e0d815921e84f1b27c3be1fd10f4b36868583ea33b71e2400fa51e58877b4bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jdk-20-ea.23_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.23_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jdk-20-ea.23_macos-x64_bin.dmg", + "checksum": "a07f30514aa942a2e3b0bca9ebcf8838bbac1ec4aa1fc3d45f8bbd3b6ea995ae" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.23_macos-x64_bin.tar.gz", + "checksum": "589d609887d648eadb2c62dfc76d3a6067530b9f43a5e4421dfb1f4347f8b5f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jdk-20-ea.23_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.23_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jdk-20-ea.23_windows-x64_bin.msi", + "checksum": "a2222690cd291dd0598553f99751bab3e0e958b58ab974e5681bd24ff4ced1b4" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.23_windows-x64_bin.zip", + "checksum": "d68e2b3aff2fc600a03546f5109f6df143493770d5c45f9565b7509f3be1bb18", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jdk-20-ea.23_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.23_linux-aarch64_bin.tar.gz", + "checksum": "682588ef96d1e119bd742cb7501010c4f65641e28f585b0674269854987fe8df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jre-20-ea.23_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "d543b51e482a6d0bccefb64bcd57a8e591778bfe5792ad46c495d2d7913dd5ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jre-20-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.23_linux-x64_bin.tar.gz", + "checksum": "e1dde615950339320238c9341f064617420d7ebc29ded7405d4393b5982aeb33", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jre-20-ea.23_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.23_linux-x64-musl_bin.tar.gz", + "checksum": "13c4f48d7c0713247390733e4e64436e5270ba3351a1054c73fc5644f880438c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jre-20-eabeta.23_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.23_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jre-20-ea.23_macos-aarch64_bin.dmg", + "checksum": "27ce21cca8b01ec823c0f58e8e5ed35f9847c4edca2c48844a4567a236ba2878" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.23_macos-aarch64_bin.tar.gz", + "checksum": "317ae7e7a1eed9e2cb6cb3304d8f0d407965c0bffd1241f1c744f6ba8b878eb7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jre-20-ea.23_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.23_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jre-20-ea.23_macos-x64_bin.dmg", + "checksum": "3a6a3ec5aee2f090065f120a482579a4a8079f38668503479d2ac9abb108592b" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.23_macos-x64_bin.tar.gz", + "checksum": "9dbe170045ae5222c519872851db95e68d8ba60d96ec828ea05d537eddc25dcb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jre-20-ea.23_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.23_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jre-20-ea.23_windows-x64_bin.msi", + "checksum": "78b516e2820f7fe74b7722c71979eb17f07a639c35ee576c66be06b724496a3c" + }, + "zip": { + "name": "sapmachine-jre-20-ea.23_windows-x64_bin.zip", + "checksum": "83e2a07b37ee95ff65aa184237e4ac7b697a12d9f09facb33002017161786e94", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B23/sapmachine-jre-20-ea.23_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+22": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B22", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.22_linux-aarch64_bin.tar.gz", + "checksum": "02a30feee45ea3f6a6e2de968ca83a4c5450fb405456a81bd01032740b894cd0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jdk-20-ea.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "b21bd4b9266b558763e12b439369a266ae7d6e6ac29a3f574932e7cc79b953a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jdk-20-ea.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.22_linux-x64_bin.tar.gz", + "checksum": "fae2edde78dd7d0508bc0f47f2ae82990c2a88446b8f11d6864c9284d5fcb17f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jdk-20-ea.22_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.22_linux-x64-musl_bin.tar.gz", + "checksum": "a77c8d30932e9371000384295a5d20858c3a9d3c2dcca93c2ae0393ec33426a7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jdk-20-eabeta.22_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.22_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jdk-20-ea.22_macos-aarch64_bin.dmg", + "checksum": "3e3957a42650a1b55fddbfbb04fc43454991848d297f6b561776d4fc32b3fd29" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.22_macos-aarch64_bin.tar.gz", + "checksum": "926c7c91069832886fb6770b4a901aabc717411204821e1b06a7f60ae88effe8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jdk-20-ea.22_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jdk-20-ea.22_macos-x64_bin.dmg", + "checksum": "da8a03ea6e129e216746b2d8999d9fde39a2573e489b53e1e0ae2ed1d9bd3780" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.22_macos-x64_bin.tar.gz", + "checksum": "06930952fa3ebd3fabaccfea919ade24f49585cbaf4427d49d8029f13633a88e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jdk-20-ea.22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.22_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jdk-20-ea.22_windows-x64_bin.msi", + "checksum": "37dab6875b9afb10051798120564aea7a837ba1267e87e04cf44c730a6440ca9" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.22_windows-x64_bin.zip", + "checksum": "bc5d7c92e097462d261f2dabc98b612fc11aedfdaf02e751eb7979f0651f944f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jdk-20-ea.22_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.22_linux-aarch64_bin.tar.gz", + "checksum": "fc40edaf04b08f01a88ad6e7ee2ae89c06aca24f0fd99648011ff8918c1a441c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jre-20-ea.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "16ddf4638922db603f7e70e60f7922c1acd4782d7627d17853002f8cff951389", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jre-20-ea.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.22_linux-x64_bin.tar.gz", + "checksum": "7c4491ad18b8d62d53b6c0dc28b36604dcfd25e7a3965280a504edd511c26169", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jre-20-ea.22_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.22_linux-x64-musl_bin.tar.gz", + "checksum": "840cc3e14027235fc5fb05628f6210b91951fab5724409b8fbbeb81c8f974f78", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jre-20-eabeta.22_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.22_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jre-20-ea.22_macos-aarch64_bin.dmg", + "checksum": "197f25dc3e2ccd82546145190ea46d4a0f7f4e6c71fe0ac4a1a130015166e340" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.22_macos-aarch64_bin.tar.gz", + "checksum": "70bfd2f84ae1f4132cf296dd0c8389006616af9d92f6aee8319979cbb8821136", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jre-20-ea.22_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jre-20-ea.22_macos-x64_bin.dmg", + "checksum": "cf13254fd780cda203c62d388149e3bd948e7816a27763c3710b50f904052239" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.22_macos-x64_bin.tar.gz", + "checksum": "043aaf51121b5b42cbdfcc21ebebd5a0908ce0c6700764973bd67da910fce763", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jre-20-ea.22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.22_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jre-20-ea.22_windows-x64_bin.msi", + "checksum": "eeb826ff32baa7d47dcf67423c51030c3344975e1f311ecaf39b735dfc4d0598" + }, + "zip": { + "name": "sapmachine-jre-20-ea.22_windows-x64_bin.zip", + "checksum": "3b0ee43b12d8e1cd1a79e0f8c72c0a63d12bcfef9ee2456ad85925b6cd007531", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B22/sapmachine-jre-20-ea.22_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+21": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B21", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.21_linux-aarch64_bin.tar.gz", + "checksum": "0a2b747946d93b7e8647903e8adff84d59db1b69a1466683c947ae40c29825b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jdk-20-ea.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "1ae28bff8009baf2434de6316026a88e41cbe9e9d8e5b822dd71022b7d29c535", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jdk-20-ea.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.21_linux-x64_bin.tar.gz", + "checksum": "008c33d84cda8b90d29eccbefdf79ef37613878598ffe5ec0fdec0f162af44b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jdk-20-ea.21_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.21_linux-x64-musl_bin.tar.gz", + "checksum": "a22a669ad820ded524a14c11dbed540b21b9a9feccb8b09459c6a59da8f9fc41", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jdk-20-eabeta.21_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.21_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jdk-20-ea.21_macos-aarch64_bin.dmg", + "checksum": "585c59f3de3f0c151ab0cca1c3d80e764664cdc014e0f830f043f3cd519c5faf" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.21_macos-aarch64_bin.tar.gz", + "checksum": "bf7b5b9fbb698a9c5b758c6dccce3e5d33a69c3f1837cd2c7208f9bd03954030", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jdk-20-ea.21_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jdk-20-ea.21_macos-x64_bin.dmg", + "checksum": "c29913ad34f1d16a4df6063066268076e96989d87f4986d4c99f9346450c6c3e" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.21_macos-x64_bin.tar.gz", + "checksum": "6698496b08862b8de2f8082864bc126edfd5b6f3d1d6f0a30f98f8cf4b5445a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jdk-20-ea.21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jdk-20-ea.21_windows-x64_bin.msi", + "checksum": "f6962cc010db9248b09eb52e390f83f4480d9c03b1dbeb3717bf49c90b667be8" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.21_windows-x64_bin.zip", + "checksum": "9228c52abd7f035991059bac039aed0f2f90821154ab1ca31d65121971e978d8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jdk-20-ea.21_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.21_linux-aarch64_bin.tar.gz", + "checksum": "3eb529e87ac9f5e6c50ad22cefb2864ded3a411d6fb91c15eb85b05e0ea9d926", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jre-20-ea.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "7f5712eaed70c5d5c263faabfeb3a18e231376aaa8a67e0aa6b0e169d6d98dd4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jre-20-ea.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.21_linux-x64_bin.tar.gz", + "checksum": "96e27d5d0b0f6af969e225f16317a9f1f89eb1504fbe325758034e795342228e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jre-20-ea.21_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.21_linux-x64-musl_bin.tar.gz", + "checksum": "f23611a4bb5256568ef751c567a33f8d06e8997f9d03207994d44686ce546dd8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jre-20-eabeta.21_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.21_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jre-20-ea.21_macos-aarch64_bin.dmg", + "checksum": "31c0ac2cd84880bce4e0261c4dc68cdcd42c6198b7d2db9b64b902c87bc9f437" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.21_macos-aarch64_bin.tar.gz", + "checksum": "77ddfdd1d9c8788dde8d357dc5fa8ff56c8c3d80b72848c5a13e69b31e40acd1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jre-20-ea.21_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jre-20-ea.21_macos-x64_bin.dmg", + "checksum": "1419922de0a6067d6a5715abf98b28e2a937b04345193e5b6aa94e1b1d74368a" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.21_macos-x64_bin.tar.gz", + "checksum": "7ba682308610eb57e41b2176478b26640e39da05639c99ba70901daafeeebcd3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jre-20-ea.21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jre-20-ea.21_windows-x64_bin.msi", + "checksum": "2ba661b1838c68ba4356d84d3ebf73a46942bbc3e0e4f89a012eabf60cd5eb98" + }, + "zip": { + "name": "sapmachine-jre-20-ea.21_windows-x64_bin.zip", + "checksum": "dd96928a6762e7faeb845be6afaa43318478140de69babd05540aeccb0f79507", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B21/sapmachine-jre-20-ea.21_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+20": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B20", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.20_linux-aarch64_bin.tar.gz", + "checksum": "b5212a5eff880c46fedae4fe3a106e334112a7dd53f625411c4317831e8da2d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jdk-20-ea.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "d41fb6dd28a5e2a66026215413dfd279a9e2c9ee9c5b5227949d60522991ea26", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jdk-20-ea.20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.20_linux-x64_bin.tar.gz", + "checksum": "bb4e89027816cd2ae2fd8bb16ac04c43e143e30f96776446846030bd7614e2be", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jdk-20-ea.20_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.20_linux-x64-musl_bin.tar.gz", + "checksum": "ea31b9724007450b3897e6b68b1dcc5bde2d0a8a579bd21f222e4ca00679299e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jdk-20-eabeta.20_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.20_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jdk-20-ea.20_macos-aarch64_bin.dmg", + "checksum": "05b390b53054f7a24165aa0164e05ebdb0c7f0d87bf77c1b5e95e4f7bb788e68" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.20_macos-aarch64_bin.tar.gz", + "checksum": "a587f4e65fe4cc6ab848b30893669d3b57b9fddd64c756e61fa421474a7af789", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jdk-20-ea.20_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.20_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jdk-20-ea.20_macos-x64_bin.dmg", + "checksum": "7795cad833a47e393651b34974a73bc0f1e4e56da0736551ca5b9938021ba551" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.20_macos-x64_bin.tar.gz", + "checksum": "27c98a67a2ff435b61d90e2bf29bb0e287804e4c528cceb025e7859c3dc18e62", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jdk-20-ea.20_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jdk-20-ea.20_windows-x64_bin.msi", + "checksum": "85a0911f4942a4ab9cc2ec6b2e002ac9fc9e5fc7460f52f3fb1aee3455d4e4f1" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.20_windows-x64_bin.zip", + "checksum": "aff535d4160f7aac9e2a026b9cafd36ab966a94b45f9b3fc6d04d92baff0ab74", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jdk-20-ea.20_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.20_linux-aarch64_bin.tar.gz", + "checksum": "310425e7ffa01310c19b573a7b1f4582ff43748a4d23b8b15b2a4a230ed5b6ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jre-20-ea.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "cc6bc62ab98361e6ba3e451674ae3981049c63eb8ed1efa55d833bfb08f17d21", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jre-20-ea.20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.20_linux-x64_bin.tar.gz", + "checksum": "ca39d5122229242245d330333ae448b24e6858e0cc043c47f65b162fa8c90dde", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jre-20-ea.20_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.20_linux-x64-musl_bin.tar.gz", + "checksum": "7c94efe55be62b4b3137fa9f417efe3320f72d1f42b0a01643681863a611a263", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jre-20-eabeta.20_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.20_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jre-20-ea.20_macos-aarch64_bin.dmg", + "checksum": "b7eb9460dd07e7406b53d9f2afe05bd73ce74dddc746d921aaa934742883f373" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.20_macos-aarch64_bin.tar.gz", + "checksum": "05a9e3c3c2e4c0561f0f809cde1a67b3510463dcef60ba0ff021e37f5e94f433", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jre-20-ea.20_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.20_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jre-20-ea.20_macos-x64_bin.dmg", + "checksum": "e6da67c01bb3786740d945806dc9e4d128e25ab0ef6ac61b2c33b81771855073" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.20_macos-x64_bin.tar.gz", + "checksum": "665d0f97f83f06e5f4e2ade1a9dab26c4958ed78f430ecc4fd06741a7dbeaf0a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jre-20-ea.20_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jre-20-ea.20_windows-x64_bin.msi", + "checksum": "d01922a4256512b0f775df45ac3f4000caf252e2b9c80d8905e856f2e92cf00b" + }, + "zip": { + "name": "sapmachine-jre-20-ea.20_windows-x64_bin.zip", + "checksum": "e0553059a20c05e8708a632a341dd21f972f1e081ddb0d887eb20b1455a279ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B20/sapmachine-jre-20-ea.20_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+19": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B19", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.19_linux-aarch64_bin.tar.gz", + "checksum": "69f46d316804f95eeba17a31dac81f0e00463cb80b5cdd7baf5374a2129172c9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jdk-20-ea.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "4096d43e6a14f29c4e83f06984a87e6c2af082c5ab99a1fd116a2bd706beace8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jdk-20-ea.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.19_linux-x64_bin.tar.gz", + "checksum": "e32d242093038899d53d0387afb9c878468f32bb9487b507b44510674eb8578c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jdk-20-ea.19_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.19_linux-x64-musl_bin.tar.gz", + "checksum": "bc3a8b5bb01b8a7293c988c6d2d9d98af146e07dce6d70240fc4505931b726eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jdk-20-eabeta.19_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.19_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jdk-20-ea.19_macos-aarch64_bin.dmg", + "checksum": "926fb8e417c091c013f30209a9eb61e5e38dac8b29160c52a4a28b61bb4f154d" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.19_macos-aarch64_bin.tar.gz", + "checksum": "ea2002099407f2a17be83c0bc54785d5a9f30ff9d1a92a5bc73c6f1f50f4f8cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jdk-20-ea.19_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.19_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jdk-20-ea.19_macos-x64_bin.dmg", + "checksum": "80868dc0fb839a9442c8131eaef0a2a1a27be4f065de5182dd9ff0ba88a340db" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.19_macos-x64_bin.tar.gz", + "checksum": "a8e2e12c417c98b84da3e9c02e611d2eb0ff11faa9fc57feed1a9fbe2204fa2f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jdk-20-ea.19_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jdk-20-ea.19_windows-x64_bin.msi", + "checksum": "c76ea23ea5758292e77f9476b21f17d123e267adf4fd707a48eee1ef51cdf6d1" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.19_windows-x64_bin.zip", + "checksum": "70061326e41c8e7ba8dc3af7c30d563de6ef023870a25af9daded057397dd4e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jdk-20-ea.19_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.19_linux-aarch64_bin.tar.gz", + "checksum": "cb86bdcb00929a6ad70f3c6d9b469df308b801b4f11912d8c827ade26206e250", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jre-20-ea.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "73ae45a91024e92f6e2859619497c800b232c93ab977a368408917f00ae1ab47", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jre-20-ea.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.19_linux-x64_bin.tar.gz", + "checksum": "f847355941c98cea10e7684763032b0a45ad57bfe2e3bbe32f6ac6f30a8ec4b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jre-20-ea.19_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.19_linux-x64-musl_bin.tar.gz", + "checksum": "98f042294789b04129c755b04c14aead30e42cfad213d4e6918a45a68ee8b2ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jre-20-eabeta.19_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.19_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jre-20-ea.19_macos-aarch64_bin.dmg", + "checksum": "04f59e98f6b70e40bff59fe429862efcf218ddfe1f2f099e5bb6c1bda5abac56" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.19_macos-aarch64_bin.tar.gz", + "checksum": "984657f1dbf233179128c0741f031346154e62f7d44b1112aee90a59ebca3a65", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jre-20-ea.19_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.19_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jre-20-ea.19_macos-x64_bin.dmg", + "checksum": "91fda027992a91b42be66c5809ee8e52d405d7c61a00d2798d92ef8565661c84" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.19_macos-x64_bin.tar.gz", + "checksum": "d88456322e63c7aa14d23568e6a0ea93dee3ee64bcebd794e819f79c14679c14", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jre-20-ea.19_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jre-20-ea.19_windows-x64_bin.msi", + "checksum": "d75b96db88d6350e22995d8c2be27fb1ca1589aa45f0704993e064ba263d645d" + }, + "zip": { + "name": "sapmachine-jre-20-ea.19_windows-x64_bin.zip", + "checksum": "6d6737f5f4c9cce539ca2271e61abfe11e4d8bc32bc16a093f518c0a58e2e6d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B19/sapmachine-jre-20-ea.19_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+18": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B18", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.18_linux-aarch64_bin.tar.gz", + "checksum": "bd97f2a4960f7a2fab252bdcbf4cea403005e23d20af26946ef6a25a28094286", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jdk-20-ea.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "e7d4f50e11af5ee64630db97defdeeb9336419cc8472dfa27c09108989da4bc7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jdk-20-ea.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.18_linux-x64_bin.tar.gz", + "checksum": "4786bffd242b69fc0a56cd0a410edd0c47501c69a94064eb8acd31f4c897ca4b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jdk-20-ea.18_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.18_linux-x64-musl_bin.tar.gz", + "checksum": "68bbf38a0e47460e0d54f3535fa2cb05b3b9668b81f9a612c5f570e25474a27d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jdk-20-eabeta.18_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.18_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jdk-20-ea.18_macos-aarch64_bin.dmg", + "checksum": "c798b79391fec7e81b92c3fa62c39329f9c53ad5002b23c5da75a7a2437ea306" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.18_macos-aarch64_bin.tar.gz", + "checksum": "c49358cfe48bc4fa40065f9691fc1f93fb2b2b8e5c4cef2c1b27ab24f416fb89", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jdk-20-ea.18_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.18_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jdk-20-ea.18_macos-x64_bin.dmg", + "checksum": "0ecd1e01572fd8cdd2ff09be5ae5a37ebdc746145839bb16a58605d041e41593" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.18_macos-x64_bin.tar.gz", + "checksum": "880e7bcce1a4824df7eb730d77bc122d94fee4216ba2eb33c474bac338e21ce7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jdk-20-ea.18_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jdk-20-ea.18_windows-x64_bin.msi", + "checksum": "0142b127d6b0ab161fa21315c6113b1703e9124feabd94e317bcdb7970f0ca63" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.18_windows-x64_bin.zip", + "checksum": "5ac4091029763062d2514ca8b464413de82f5a60d4c16464537e7c9d7a7c63ca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jdk-20-ea.18_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.18_linux-aarch64_bin.tar.gz", + "checksum": "b1262d083e2700d01c7e1ecb6aaae0c1f686d91145b0a9e7daa5b0b841e4fc69", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jre-20-ea.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "2d7f3b4ea3f7e560af0c2cb7e28af8a66e282a037d9b4ee989a9f2d9fa191129", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jre-20-ea.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.18_linux-x64_bin.tar.gz", + "checksum": "60e6a48a24faa8c68ba68e7564e1770443205da89c351557fd6aea943f5ae47c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jre-20-ea.18_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.18_linux-x64-musl_bin.tar.gz", + "checksum": "45d018013bd98ccd6d71f8b1328aab3f791d91084b884ee14b17794d18041144", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jre-20-eabeta.18_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.18_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jre-20-ea.18_macos-aarch64_bin.dmg", + "checksum": "e5250254a45f15996e8275df30c13f24db395794a26579f70f715f0e74b230ae" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.18_macos-aarch64_bin.tar.gz", + "checksum": "aca5ad5e1f01e8da66bb057f18af1b92518658303c4ec80c9bdd143345fbbf7b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jre-20-ea.18_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.18_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jre-20-ea.18_macos-x64_bin.dmg", + "checksum": "6fff1cdd7be92c4b8e35242bf9e381f0e1fa4c4d6f1aca7b9b7536853f1da1d9" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.18_macos-x64_bin.tar.gz", + "checksum": "e0c790ecb901dd0461395e8da8a75caa63da5c7a76aefc97ca5109f80b1a97f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jre-20-ea.18_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jre-20-ea.18_windows-x64_bin.msi", + "checksum": "c582ecbb6e091115c3566970f3d992aa436d3d4f41e68a8946e4f265741e767f" + }, + "zip": { + "name": "sapmachine-jre-20-ea.18_windows-x64_bin.zip", + "checksum": "e4f0277ca4bcf78165d198120eeb4599a7537f0ae5f8320665eab69f862d15bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B18/sapmachine-jre-20-ea.18_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+17": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B17", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.17_linux-aarch64_bin.tar.gz", + "checksum": "c326e5513cef8bbeb0bae5ee03473feeaf296726501b95e6975e8f3275c4c118", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jdk-20-ea.17_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "b8cbfb67da69b1ce9b33fa2580823d315cf7f7c6dec93e73e048f26d9ba2bd29", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jdk-20-ea.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.17_linux-x64_bin.tar.gz", + "checksum": "53b7c5820d3e139ddf136e4bb5ec40e0490da41f5a026e1832ed5dab4ced6f83", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jdk-20-ea.17_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.17_linux-x64-musl_bin.tar.gz", + "checksum": "5c7c83906fdd904f92244edd96852b5ed80354a5aa51a76fb635fedac59f6ef7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jdk-20-eabeta.17_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.17_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jdk-20-ea.17_macos-aarch64_bin.dmg", + "checksum": "a29bb27ad23add7eb983bc201b11bd46a8f6a9d9e5c3ad29e4fc62498388786a" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.17_macos-aarch64_bin.tar.gz", + "checksum": "9efe3a22c1e2c71d5026a2d3340af6f3d86d6add65afb54ceaad06d1a45c31ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jdk-20-ea.17_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.17_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jdk-20-ea.17_macos-x64_bin.dmg", + "checksum": "45864a09c1f2454c0ff3e19be0af422b87a8839735afc3e8f9fd9461ac4c54a6" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.17_macos-x64_bin.tar.gz", + "checksum": "49e634d448bb4c7fc9707510bc9501ada0e60a8795a663286e6271d1e8192d74", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jdk-20-ea.17_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jdk-20-ea.17_windows-x64_bin.msi", + "checksum": "010fa750b5628f0e59c81d19e8dc50ba71f5408422ea85cfadb65043e72cf566" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.17_windows-x64_bin.zip", + "checksum": "ac596001cdc6b0a3ea05fa8ada40437e25e5481a4cc4f0b5ff9ce366ba70421f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jdk-20-ea.17_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.17_linux-aarch64_bin.tar.gz", + "checksum": "ada98530df175a8f371243565a4e84e3f42b0341472fc47cec0a60187de9a05d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jre-20-ea.17_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "b40fa9942879050e60109202b92f714f2ff1dbd9b3bac87c20769c934faae177", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jre-20-ea.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.17_linux-x64_bin.tar.gz", + "checksum": "ad415d079b03bd3121a1337f61e18bfb6bc4cf23dd39a0e8ea6735d7282c6889", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jre-20-ea.17_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.17_linux-x64-musl_bin.tar.gz", + "checksum": "77249aac40b6995c50bfad69c1db9c5fba95007a15a8f56042e001152262f2ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jre-20-eabeta.17_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.17_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jre-20-ea.17_macos-aarch64_bin.dmg", + "checksum": "be7a5e72a32ef1b016cc4ce22642d767eed0d5943025ac37b4f877c21f91109c" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.17_macos-aarch64_bin.tar.gz", + "checksum": "49aaf5ac1c60081bbe28e2b1e98bc673251a3b404a9f1a91f074832e5135b212", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jre-20-ea.17_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.17_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jre-20-ea.17_macos-x64_bin.dmg", + "checksum": "02df72890dd68aff1409ee5c56baa99082c791ea5a4936648f92390fab47fd7e" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.17_macos-x64_bin.tar.gz", + "checksum": "79683c0f4043521cc6c4ead9ef261c8743559fc6bdabf191a736203ec70a5511", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jre-20-ea.17_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jre-20-ea.17_windows-x64_bin.msi", + "checksum": "8ba98c8b4b430b96d326cdedd02d066f7b69d4f7d6e7d8d1c11a7fc3b65ef17d" + }, + "zip": { + "name": "sapmachine-jre-20-ea.17_windows-x64_bin.zip", + "checksum": "fc6a020d8f013880d1792850a5f9e2f1c4819db6feb24a7dd1692ceef8c8d641", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B17/sapmachine-jre-20-ea.17_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+16": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B16", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.16_linux-aarch64_bin.tar.gz", + "checksum": "cc2e3fd6404e80527e3ce66d9c4f553dc5ed2068d21357ef3c09ad499ceb59bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jdk-20-ea.16_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "f06a1b3bc458e86dda932d381d1d579896de7d6c3a7219794fdf0d71fa894730", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jdk-20-ea.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.16_linux-x64_bin.tar.gz", + "checksum": "cf8ce10cdcc39b9f7064d1ecc7c3276bf0375f7eaa4619d9610098798e95d669", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jdk-20-ea.16_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.16_linux-x64-musl_bin.tar.gz", + "checksum": "38d0cad6f9e24096f3f32549ef312fa6a44a8b6284eea7c2756d7bee331b1b6d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jdk-20-eabeta.16_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.16_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jdk-20-ea.16_macos-aarch64_bin.dmg", + "checksum": "4c5e90bab25e15dbc60d32144d5a1ca3ba5de794bd45616afc983500c654357c" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.16_macos-aarch64_bin.tar.gz", + "checksum": "4a52d4296dc055127c548b39b103b66532a037d39538d6ec8e6486732904034d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jdk-20-ea.16_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.16_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jdk-20-ea.16_macos-x64_bin.dmg", + "checksum": "26710eb6b6f4d15810633e2ac1865c2c9155767c76cf0807150a4ef6e265dbed" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.16_macos-x64_bin.tar.gz", + "checksum": "a633af5249216a90e742cec2edf7b61fa6127c622716b554639905efef0c4ebe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jdk-20-ea.16_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jdk-20-ea.16_windows-x64_bin.msi", + "checksum": "d59f6480f2366e762196927e42ad4178bc5dc554f5532263d834aa93e8bd8364" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.16_windows-x64_bin.zip", + "checksum": "87d7a0cbddd8b41a20a84414ed54b6d40ee2bb6db83e219918c326ddee102b90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jdk-20-ea.16_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.16_linux-aarch64_bin.tar.gz", + "checksum": "091ad0123542e95f88cf8c0198c307a188500b271c0e9bd9f95b7612ec7e0494", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jre-20-ea.16_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "9fed673d35bb38817e6750826fd4995c12be60cca59e6823d517e2b0262c3a74", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jre-20-ea.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.16_linux-x64_bin.tar.gz", + "checksum": "3189cb0a441e15da3b0967b46ae3af71fce243b3ac91cecde5aa533d2c4b42cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jre-20-ea.16_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.16_linux-x64-musl_bin.tar.gz", + "checksum": "b39104e137dfed32c187066945afe67f4de9b860f615de998274d1c1e075e4bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jre-20-eabeta.16_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.16_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jre-20-ea.16_macos-aarch64_bin.dmg", + "checksum": "90987e87a09148ecd515c0c01f0a401b1d0d8c1887a944b27e5962acb97cc6c3" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.16_macos-aarch64_bin.tar.gz", + "checksum": "ea84fe8150851e5e322ada404679a28d9136ff87ef341fa087c8db9c05167319", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jre-20-ea.16_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.16_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jre-20-ea.16_macos-x64_bin.dmg", + "checksum": "5d90de788d47c965446493234d2e9379484acce70ceaf2ff28e88c14cd69bed7" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.16_macos-x64_bin.tar.gz", + "checksum": "6bd1454175a066a0edb73bab291f64af5e8d427037be5acb5b00acbff61aae5a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jre-20-ea.16_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jre-20-ea.16_windows-x64_bin.msi", + "checksum": "b9753848b45019de68a03953cf5ba01c4138f31e324ac62350cf67bf6972c2fa" + }, + "zip": { + "name": "sapmachine-jre-20-ea.16_windows-x64_bin.zip", + "checksum": "7276d0af753da48410cff64a86060eebfbb1b60d84242b3887d9e1843f962314", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B16/sapmachine-jre-20-ea.16_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+15": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B15", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.15_linux-aarch64_bin.tar.gz", + "checksum": "b7ca45a2eb56c934e3fe197343c7cab63f7b9c3e89cf2f781417f29f2b88e986", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jdk-20-ea.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "a9c2e2267737afd2f1c0884a9f418e15550998e24f6b322afa58fd6586265caf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jdk-20-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.15_linux-x64_bin.tar.gz", + "checksum": "40c19fa2c61ebdb2e24acbb695c82ec56cb9966ccc251b10718f98b61d66531b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jdk-20-ea.15_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.15_linux-x64-musl_bin.tar.gz", + "checksum": "21d96b587e3ca079cade893aba2329d3e3975e565af36dbcc925d51e613fd22f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jdk-20-eabeta.15_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.15_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jdk-20-ea.15_macos-aarch64_bin.dmg", + "checksum": "3378d77307e6a29e6aca0dd0925994e4f3b4af02a9babb820e19c03db52b2b10" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.15_macos-aarch64_bin.tar.gz", + "checksum": "69659f1e9ec01df80c092b98cc3b697e7d726cfca615165aecc46b9e9b6030b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jdk-20-ea.15_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.15_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jdk-20-ea.15_macos-x64_bin.dmg", + "checksum": "933db0b4821b2cbd1cc200f143fb158e6c282324bacf12882023e4f810bf4b5b" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.15_macos-x64_bin.tar.gz", + "checksum": "534f431c6316fea874afb31218afaf7fb1825a5d36b073f97b6ba4530ec8020f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jdk-20-ea.15_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jdk-20-ea.15_windows-x64_bin.msi", + "checksum": "e244b83d5ccac5116cfc5e5d5ef3fa1a868a06a465255105e5817baeaf438322" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.15_windows-x64_bin.zip", + "checksum": "baeb4790d7cdfb1d1d8472685533c2c51828452bda630e2ed0bbf4b5bc1fdfa1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jdk-20-ea.15_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.15_linux-aarch64_bin.tar.gz", + "checksum": "6d0773f17076e34e5c943d125087dab5f0396df5c32ea074499b5f00516459ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jre-20-ea.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "5cb8d8bedb44e038526f2adefa1f4f861667aeedf6f42f9112cbb76c6658d86f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jre-20-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.15_linux-x64_bin.tar.gz", + "checksum": "9847c14e1e33ba2bb8c83892c90be099c1e4181a6c3a7824880bb9c76c046f24", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jre-20-ea.15_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.15_linux-x64-musl_bin.tar.gz", + "checksum": "1863fd2580c84ce395f7ae8d6fa5fddf434ad13c4428673a198a6e3162293e59", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jre-20-eabeta.15_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.15_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jre-20-ea.15_macos-aarch64_bin.dmg", + "checksum": "bcb05aaa5902d599c6a6ffd7c5c5684b071c75b7a1264403a3e879c1a0da5dfe" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.15_macos-aarch64_bin.tar.gz", + "checksum": "74f65e407916b14cbdee23092f38475743c022f85d8d61177e90fa302df07994", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jre-20-ea.15_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.15_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jre-20-ea.15_macos-x64_bin.dmg", + "checksum": "63a779c05dac34d08478d12c4fc148592d0340032b84d6f13b312eaac2def132" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.15_macos-x64_bin.tar.gz", + "checksum": "af3d0f54d2824cbaff99d43c4212a34d990ae26780b110234c05926eec46f94c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jre-20-ea.15_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jre-20-ea.15_windows-x64_bin.msi", + "checksum": "477f684fcb5c135cb7cf5938011f44dea159e1e562be75e9d65a10ddd3fc510d" + }, + "zip": { + "name": "sapmachine-jre-20-ea.15_windows-x64_bin.zip", + "checksum": "e4656cb93f2d910b1e5a9422de612b8532c0162a76514631315dac8830bce875", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B15/sapmachine-jre-20-ea.15_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+14": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B14", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.14_linux-aarch64_bin.tar.gz", + "checksum": "e23a470f1c1e8fdee5eb8098ca3d17ea2c05ac4710e7b2e0ed356fd9faa6ebe7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jdk-20-ea.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "78ac95759df2e7b6725c01a79c773eb0d268ee5fcee791149ca624354e9e66e6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jdk-20-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.14_linux-x64_bin.tar.gz", + "checksum": "8431f5c5d584ed8924f0817c57c6c30f0e402d95ee59dde01e5ceb04e8758ab0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jdk-20-ea.14_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.14_linux-x64-musl_bin.tar.gz", + "checksum": "49fc2a2e7d0d315f8104907b28a1a61a053f26beedd2f9af08436cc7f1398a46", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jdk-20-eabeta.14_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.14_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jdk-20-ea.14_macos-aarch64_bin.dmg", + "checksum": "a511605c4657adcf6440cf3e6601d967cd5dd22d327a13e2c8526193676cf468" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.14_macos-aarch64_bin.tar.gz", + "checksum": "4b5eddaf3ff28baa53030cf66eefba68aa4edddadfe3327f3047278fd3854a45", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jdk-20-ea.14_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.14_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jdk-20-ea.14_macos-x64_bin.dmg", + "checksum": "960d672e573c6feaf2e9bea9553c6a49c2caadca350e5fb794135201fc12b8fd" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.14_macos-x64_bin.tar.gz", + "checksum": "ba667a3b63c4b4d005469be88e0415deff0c5c9362430d02f1ddda5155a7447c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jdk-20-ea.14_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jdk-20-ea.14_windows-x64_bin.msi", + "checksum": "849ae024003cfb4122de579163d5dcef27d4a5eb941354bd4e49ef653e43c672" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.14_windows-x64_bin.zip", + "checksum": "53d5425f0c91fcb0482c4acda713b714982b449dc3dff4378bb6887b4ae6c643", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jdk-20-ea.14_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.14_linux-aarch64_bin.tar.gz", + "checksum": "6f1b9bf06c202e45ed2e0ecf9841d5e2798bec98ee0e4f4800c0d549c85bb841", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jre-20-ea.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "a4267b2509fc88bba6c05e1a7096ced4ff849014a8602257b2d277cf0d741226", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jre-20-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.14_linux-x64_bin.tar.gz", + "checksum": "a72258b4934b6ee590d85b91222c5bfabfdd81c053447190fdfdeea4e5a4c82c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jre-20-ea.14_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.14_linux-x64-musl_bin.tar.gz", + "checksum": "1c39c12f841b8e5ed6931cd918a19ce9c6a76c0098a7a28ffae5188327c6ce8c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jre-20-eabeta.14_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.14_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jre-20-ea.14_macos-aarch64_bin.dmg", + "checksum": "bea982b66c188adb5417ce627289eaef37edfa9ae61c9c93d80e3deab6648456" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.14_macos-aarch64_bin.tar.gz", + "checksum": "03e29cec9671a28a4cea0d25a329af060e32240cd4d78ba3ddb0e06660e4651d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jre-20-ea.14_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.14_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jre-20-ea.14_macos-x64_bin.dmg", + "checksum": "5705db5db123f8953b6d285d424a366af3c67098baf2aa8314b152db9c834582" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.14_macos-x64_bin.tar.gz", + "checksum": "15c1c3a98f0e83e5faf39f9679e9aafc0af8a5bbdc99f9956bf949af3bde481c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jre-20-ea.14_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jre-20-ea.14_windows-x64_bin.msi", + "checksum": "5ca3bf354338776141d8af47ee6c8673fd39fa01e4574501b771ad20dd34a074" + }, + "zip": { + "name": "sapmachine-jre-20-ea.14_windows-x64_bin.zip", + "checksum": "56e8037e49132bb3ab59a719919db76fbb1297cefebb4b118ce1b5c0708e7dae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B14/sapmachine-jre-20-ea.14_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+13": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B13", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.13_linux-aarch64_bin.tar.gz", + "checksum": "44f1451dfcf496ab4378643eb0ad30ae7c46fac2c1ee6f53e2af7f025b9269c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jdk-20-ea.13_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "289509cce7168a1fc99cd7c21e8877051c00bec16d25fc94af7b4ada02865613", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jdk-20-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.13_linux-x64_bin.tar.gz", + "checksum": "546bfe89b110d0a7616b1642c85045eff87eb906d03f03b126cbacfa38eb5e11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jdk-20-ea.13_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.13_linux-x64-musl_bin.tar.gz", + "checksum": "7f3dc049ea63b70d4510d37006a3c9ef97284ae04a76e2d5090345c71cdc0126", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jdk-20-eabeta.13_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.13_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jdk-20-ea.13_macos-aarch64_bin.dmg", + "checksum": "6b2ca6fec29c65dada57585c11e356732898c1fefb6af15fa54e2301a5581429" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.13_macos-aarch64_bin.tar.gz", + "checksum": "6f7496821d3359abd175b582fe4c6abb665675cdf8f0a5b368921df9f946de49", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jdk-20-ea.13_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.13_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jdk-20-ea.13_macos-x64_bin.dmg", + "checksum": "702ff422dc24fd347cb06b285c02b56363c843d23d62f9571513f59e536d869b" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.13_macos-x64_bin.tar.gz", + "checksum": "fe480988c1d5e57dd18b1b8b3bb5ac08253ae8d58f6b35529f3114afbf537f52", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jdk-20-ea.13_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jdk-20-ea.13_windows-x64_bin.msi", + "checksum": "6196ebd09c275b2dfef575b8f13595e7d94bf559aad010db44da07eed4a97a62" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.13_windows-x64_bin.zip", + "checksum": "755af6ef348fdb69a6eca66a5a6a2a565c9b1fafbc701b2068dcc15273fc22d0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jdk-20-ea.13_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.13_linux-aarch64_bin.tar.gz", + "checksum": "16d7a890919510ed8091fb59ffaffbdb9cc6bce9b881e82c97c4f9477989b23d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jre-20-ea.13_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "b2ec77132d339ac77018f2543457adc59926c2c900af79c02b13d88ce4f0d4c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jre-20-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.13_linux-x64_bin.tar.gz", + "checksum": "3c507810daed567c0f897645efa85e43025f435aaa8c32d078405e6cbb0c9b07", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jre-20-ea.13_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.13_linux-x64-musl_bin.tar.gz", + "checksum": "ef1a6d4ec6094e5d7690b225c7d5380fcf4727d37b2622bcc1b1df0d16aa752d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jre-20-eabeta.13_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.13_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jre-20-ea.13_macos-aarch64_bin.dmg", + "checksum": "2c0615e6e429af11461306163d3b7de03ae584d1423d8e74c357b8090bd39782" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.13_macos-aarch64_bin.tar.gz", + "checksum": "66d2b599b876f71c57f1c1559f52aa18a3b0b45d1160540c8df286c8dd09330b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jre-20-ea.13_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.13_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jre-20-ea.13_macos-x64_bin.dmg", + "checksum": "d6ef6f9041d1b716b93639cdc3e60aec8bf91670d61a34205f69075656676364" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.13_macos-x64_bin.tar.gz", + "checksum": "fa49661afe14f6b8d23566ee4b5a580124913bf3a6e20a3ecbba03a9f7447847", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jre-20-ea.13_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jre-20-ea.13_windows-x64_bin.msi", + "checksum": "08939147e82e41b2b50d14c5f99914027702361fa3d5d1deebb8922b07071003" + }, + "zip": { + "name": "sapmachine-jre-20-ea.13_windows-x64_bin.zip", + "checksum": "c8c73d4d67e12c0d022767a8b7ea1df50ed029595dbf98051cd602a28c3abb59", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B13/sapmachine-jre-20-ea.13_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+12": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B12", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.12_linux-aarch64_bin.tar.gz", + "checksum": "57a7fef060cec41ba3cb1fa510a48feb1822768a3cdbc32c542f9861f5bf4c4c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jdk-20-ea.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "ca8cb10f0815b240f82d058b3a089a978c36928be050120c309b9fcdc19cdeb7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jdk-20-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.12_linux-x64_bin.tar.gz", + "checksum": "01f13c8ca8abb1c86fdc64081af8d5befc6ae25b7f8231b43d72159874cbeca1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jdk-20-ea.12_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.12_linux-x64-musl_bin.tar.gz", + "checksum": "beb953027fc9845bfe0d12e3f0192fabfa94b7ce0db786477bd4fd4bfa4720e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jdk-20-eabeta.12_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.12_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jdk-20-ea.12_macos-aarch64_bin.dmg", + "checksum": "45d4b174c884a45c0d4686dce3fe738bc83d73cd2922469c654d80bfd1516334" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.12_macos-aarch64_bin.tar.gz", + "checksum": "06d54082acae1c422444c3c7587fd292230a1b7255041f1746df86475e611736", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jdk-20-ea.12_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.12_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jdk-20-ea.12_macos-x64_bin.dmg", + "checksum": "a7f14cb6327b4a601ef3c471c4d1661b487a0936f544295b4fc293164d60ba78" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.12_macos-x64_bin.tar.gz", + "checksum": "aec9c60f7f9d2f212390e07ea2e2855ab670ad3c9bf462fa1f6baf44d7083871", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jdk-20-ea.12_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jdk-20-ea.12_windows-x64_bin.msi", + "checksum": "c623c8f81f699cced70d8d686f8b4a87bbe0855937d9656f19633555b11bb68d" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.12_windows-x64_bin.zip", + "checksum": "64a19c076a230c622ffb8780ff2e68682b151d746ebbc4dbca53c69e9140ef65", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jdk-20-ea.12_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.12_linux-aarch64_bin.tar.gz", + "checksum": "d788c727c082d6328c4a97691efdb402f3e16ad9d5797f328f684b8f4cecc908", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jre-20-ea.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "f7255f2b8e14b401264d2df34761c5b649400be0fcbbb12ddcb9fe8974c110a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jre-20-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.12_linux-x64_bin.tar.gz", + "checksum": "f36de0c29798f2b408ab1ef274f11a26b78c334502a8fe1d04a92a0bca8b0bdf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jre-20-ea.12_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.12_linux-x64-musl_bin.tar.gz", + "checksum": "932dbf5272839fecb16f529c8d4d9fd617f6cdd7bf5f47d3a13e59fa715e6660", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jre-20-eabeta.12_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.12_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jre-20-ea.12_macos-aarch64_bin.dmg", + "checksum": "17d75bb90145f1d3c6e75c29f1f99aeb556218d242bdc48de09ef0b068974511" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.12_macos-aarch64_bin.tar.gz", + "checksum": "dde5ac28220833fdbf1c20496afd79f68003a34530dc356cb5760dd32d0fbe68", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jre-20-ea.12_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.12_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jre-20-ea.12_macos-x64_bin.dmg", + "checksum": "87dac0522ba82c450e4a98721bee81da514e0f9b08cc76f2b6d4bb69dfc87835" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.12_macos-x64_bin.tar.gz", + "checksum": "05d21e7805af0ece571f4c049d9c141befee5dd93edc20fab27bb07896250c05", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jre-20-ea.12_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jre-20-ea.12_windows-x64_bin.msi", + "checksum": "8722f36365aa86b79d3c2830caf966d6362f4fc2ba58f1606c2e1073523a5e3c" + }, + "zip": { + "name": "sapmachine-jre-20-ea.12_windows-x64_bin.zip", + "checksum": "f55805ffcef28dc10df4e86aef88dac3e969b4a02e6adc03299e80d0f64acd97", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B12/sapmachine-jre-20-ea.12_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+11": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B11", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.11_linux-aarch64_bin.tar.gz", + "checksum": "bdeb568cd1ae61e1422ea3cd5655547892e96ba33184c22b4d25feacaff8046f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jdk-20-ea.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "3f2bfabbccc57ed051818d5af80cfe2155e15c33d025716def2cecabf7e3fc48", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jdk-20-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.11_linux-x64_bin.tar.gz", + "checksum": "7ca3b52a2a64e8bd869bf7edea99de5ec86bc9f452076f2e59f7841f7cfb8d62", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jdk-20-ea.11_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.11_linux-x64-musl_bin.tar.gz", + "checksum": "abb383842973abc6ef579800789ff5b824b60439c623068e7d148cf678a086a8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jdk-20-eabeta.11_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.11_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jdk-20-ea.11_macos-aarch64_bin.dmg", + "checksum": "0000ed08a6dd1703ad7ce4ba567e1c230ebec6a448d7629d7f7bf5e89fadbbcd" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.11_macos-aarch64_bin.tar.gz", + "checksum": "48c7fff79ea891bf66a41f476be6bbcd9c6e3be1565215be7c78c499b3726d9b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jdk-20-ea.11_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.11_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jdk-20-ea.11_macos-x64_bin.dmg", + "checksum": "bccc76a3b47320c100dc3a9e9988de303000b2e17ba971e3736cddaa7d2a5441" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.11_macos-x64_bin.tar.gz", + "checksum": "0544d24869cfb178314b9435cb431815f61b4d590a456ac48d850536f47679fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jdk-20-ea.11_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jdk-20-ea.11_windows-x64_bin.msi", + "checksum": "23b7010cfc770df84ae4e95113164116aa1c46e36e2388110513e8878ac2325b" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.11_windows-x64_bin.zip", + "checksum": "71cb066f932821267866b6f2c1a2955ed4a01ff69ba1a7edce79aeb977b8b46a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jdk-20-ea.11_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.11_linux-aarch64_bin.tar.gz", + "checksum": "cfe9e4dca46ead60a8abed2274b51aa758fb701e1e3cca2d0a7638bcaece395b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jre-20-ea.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "4e175f5b8ebefb5584bc745f7d2a26d3e4bbffd0dfa39813832ab07ac1f165ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jre-20-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.11_linux-x64_bin.tar.gz", + "checksum": "9bb36b631db4e883880e27a892e1a2cf4f03558c641b8ca92909226ec69ddbac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jre-20-ea.11_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.11_linux-x64-musl_bin.tar.gz", + "checksum": "f2ec42d7d96ba35f8adb797955f239f879f536391960b6176238aef70a408530", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jre-20-eabeta.11_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.11_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jre-20-ea.11_macos-aarch64_bin.dmg", + "checksum": "f7b12f27c838675ad63aed0380b4870c6b7b149c3ef22e6b2a527d37a4d84903" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.11_macos-aarch64_bin.tar.gz", + "checksum": "bd4fd56fee0e4adcc5ace0bd0a7e7fccdc68d91bb423cd24fd6a2157cd6a0bad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jre-20-ea.11_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.11_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jre-20-ea.11_macos-x64_bin.dmg", + "checksum": "a1884ca2f1f187f85b3fdb43252943f8af92e31b1e4dfd92e3a0d0ffb25fc32f" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.11_macos-x64_bin.tar.gz", + "checksum": "ee262037567791184794285b940c7a4a625b97fbd01dd4a66f65c5d27642d8d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jre-20-ea.11_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jre-20-ea.11_windows-x64_bin.msi", + "checksum": "7beb7f183abbee7003efceb2ed600024cc643376ac1d543a6077d82e35962e24" + }, + "zip": { + "name": "sapmachine-jre-20-ea.11_windows-x64_bin.zip", + "checksum": "bab00d35e39aab5fe0af0d89a1c9c529b3b1083b980581ad7a2b3405ae1340f0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B11/sapmachine-jre-20-ea.11_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.10_linux-aarch64_bin.tar.gz", + "checksum": "d348b955d792973a301e73a9d0888225c4cd56477787b774acef0c0265fdcad8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jdk-20-ea.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "8b6a9fd223f5d969187a39e469a26fef177ffb601ef6b68d41001a38da5c609e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jdk-20-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.10_linux-x64_bin.tar.gz", + "checksum": "41c15e475a9748fed6ed91ad73d7af97f2d3b5676e082b149a210551fd3442fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jdk-20-ea.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.10_linux-x64-musl_bin.tar.gz", + "checksum": "d8a966946de8e6675796ffcab04726eafa6f14cd70ec590e4c48bf9e0350726b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jdk-20-eabeta.10_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jdk-20-ea.10_macos-aarch64_bin.dmg", + "checksum": "75d3d306991f1da79dac2ed9b9701ddbacbc6461ce1576fa971527c4d3f53139" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "4ecd099c3869d10e002572664ccc30f9f4a834ca988519abe9088ab68a87bc1a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jdk-20-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jdk-20-ea.10_macos-x64_bin.dmg", + "checksum": "771defa16ad06bb886c28b7ac31b34ff4c3a9f1e64e69cd9ae96b92b2d20f83b" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.10_macos-x64_bin.tar.gz", + "checksum": "9a57500db57ba0da24996f045616651f36cf64f92be92906d9e26889cc981d42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jdk-20-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jdk-20-ea.10_windows-x64_bin.msi", + "checksum": "33ba1269107f5e531a13a6a73f21d5bb51264780df0c43ec6a1f8f471fca1d75" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.10_windows-x64_bin.zip", + "checksum": "a26c7254dad72c89c8ecc343754f6f0cdb1e60c40d49d3274c0829c1fbf0c68c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jdk-20-ea.10_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.10_linux-aarch64_bin.tar.gz", + "checksum": "49dcad8de9900fcfb805f407ff8cd74c5a8fc5f1a3bbc358cc3260e8fc7ed7dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jre-20-ea.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "e88ab4c76d49d2622e25bfe549cb1e4972509031cacb57cf8064e0db773d8ad0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jre-20-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.10_linux-x64_bin.tar.gz", + "checksum": "807fd4ed51104a501143deef7066fc8c786f9fecac8c575f7cbff4f80d5de591", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jre-20-ea.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.10_linux-x64-musl_bin.tar.gz", + "checksum": "10e60db36ab8c7fcbbd986cbaaf4eb9d50ef5a98d523dd292d3c4f4208ed2e07", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jre-20-eabeta.10_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jre-20-ea.10_macos-aarch64_bin.dmg", + "checksum": "9dbef0a90c8f12df762cb7a29e4b564674e7406d6dc4fba0ab2f9d932eddb435" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "366539667ed6e86ee9b8e5f718900b43d23cb125f3582e67e057c9fd862816dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jre-20-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jre-20-ea.10_macos-x64_bin.dmg", + "checksum": "a3a1b51618e8eda6d42353f9f61ee4e750fdd567b31d277cd2aad6a76e547d0d" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.10_macos-x64_bin.tar.gz", + "checksum": "18656833e100e7d31908e75a1316a53a0485de8c7d63fe7c0bf0cb8e7dcc6f42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jre-20-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jre-20-ea.10_windows-x64_bin.msi", + "checksum": "c28920c02115ad596a45741240d4660fd4c73137b30b5cb07cff6dc31c80ef77" + }, + "zip": { + "name": "sapmachine-jre-20-ea.10_windows-x64_bin.zip", + "checksum": "bd911c9ad7a4a00ee0e0c1761f4b0a7ce411547bd9fff8090c110755f7c0f568", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B10/sapmachine-jre-20-ea.10_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "822979460b7f4bed38deae5b5aef2f3109f9431346999e99b6b9fa3d1ebbf189", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jdk-20-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "88833b7ec1d1e8b09066f200c752d273472089a40b3396f5a872f47b646ebc62", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jdk-20-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.9_linux-x64_bin.tar.gz", + "checksum": "e9b4c37da35371223bfe72e4d84e45a574d98938f4fbe7480826726b07047705", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jdk-20-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.9_linux-x64-musl_bin.tar.gz", + "checksum": "048acb30666860831bcf4d41d52aeaefcd2514b6879730fe8999f2a3a6c86ede", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jdk-20-eabeta.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jdk-20-ea.9_macos-aarch64_bin.dmg", + "checksum": "49ffd34bcf4bd8fdf6293f056132b852b7a4c2c6dee1ba9d65f109d070d68d20" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "8199da586950bbee0cdf206f5c3123ff0de4a7553511920753f57960dee8230a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jdk-20-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jdk-20-ea.9_macos-x64_bin.dmg", + "checksum": "bdc26495bafb9761734ab61834841c34c17da9c1ec7eb49863720cbce07d1c69" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.9_macos-x64_bin.tar.gz", + "checksum": "58017bf484b0a05a9e1a44370df2a7f97ae01a1f779f271e5853381c6b9408fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jdk-20-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jdk-20-ea.9_windows-x64_bin.msi", + "checksum": "5ddec1b790cdcff1184b5c7a6f1db4c9ccd08a6c96b44b6fbfc248d1780adf23" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.9_windows-x64_bin.zip", + "checksum": "cfeba58436162c632ca0e23228256f0c321eff7b56ec932843df4d593bdccb77", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jdk-20-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "6cc4be494984b97d1ee90d33875a3110787a2e436c0e3635bbbabc932777f630", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jre-20-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "c5eae7685eca81d1437a0f65871baa240e731b5d69b66eca0975a19fe41f0caa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jre-20-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.9_linux-x64_bin.tar.gz", + "checksum": "9ad8a58f791bdf89589a43e652779f8c1f170b6a4e542da69632ba22eeb4b093", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jre-20-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.9_linux-x64-musl_bin.tar.gz", + "checksum": "6917b6c08c3093a31d01f04e07f2f2a5310861240244bd6c898ac699097d140a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jre-20-eabeta.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jre-20-ea.9_macos-aarch64_bin.dmg", + "checksum": "c2904ac15f3680354ee8e474db8552ced6622ff0cb32f342922463b0f1adbd12" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "ccab311aa163a7aaf3f0f46ac9ec37193a25b9c92487a7c38335d914625fb9ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jre-20-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jre-20-ea.9_macos-x64_bin.dmg", + "checksum": "88f8efea1accfc88163d73398882bed2910a6f187e2f52299f96bcedb535bde8" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.9_macos-x64_bin.tar.gz", + "checksum": "960546fa3f07a9428227850312f60a63f94fabe233bfc0889ae6f9361578cf06", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jre-20-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jre-20-ea.9_windows-x64_bin.msi", + "checksum": "167f263f62c25afdcf608c3a5ee64fc5d18e0c123a64e56f86d01baa9461fda0" + }, + "zip": { + "name": "sapmachine-jre-20-ea.9_windows-x64_bin.zip", + "checksum": "94badda10025faa1b0bb3ee7797f403c7b8356d32d1f1580389302ec6c156dcb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B9/sapmachine-jre-20-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "8410100ac6715fa67e48fde523a99dd313222e3fad8c786e2232e9acea86891c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jdk-20-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "6516bdc2756f1895606848a6ae9da2e5b50e58beb062b574ff585f65c3d45284", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jdk-20-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.8_linux-x64_bin.tar.gz", + "checksum": "c588d30b5d2747238c1bbf7e0a45eefbf76c918f19a73f05e7f5d48d687d7319", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jdk-20-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.8_linux-x64-musl_bin.tar.gz", + "checksum": "25fb9126fc46c06534540b543fd935a8fa9c9f70f59c99d92ed357c1a3e6adee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jdk-20-eabeta.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jdk-20-ea.8_macos-aarch64_bin.dmg", + "checksum": "866f3f0ffa5f32ca9a234945a2bba7b08ef3e6abc26685d95cfaa2f749af709c" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "6229c6aaa255cc583d18a2552c9ab7b18e882b53c6c40aa5fd445795677dac1c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jdk-20-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jdk-20-ea.8_macos-x64_bin.dmg", + "checksum": "0b267e75d481d56f2d54a881f4421f04c73881437cb264697ee076c1d2268cb7" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.8_macos-x64_bin.tar.gz", + "checksum": "57a6a950a4122bfdf153c60507e6c5d8e344a6fac3e7f2f06453a620d837136d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jdk-20-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jdk-20-ea.8_windows-x64_bin.msi", + "checksum": "7078766662be07a48c94eca4d1f8c7eb188351fa3467c4534f0b16d10cebdb04" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.8_windows-x64_bin.zip", + "checksum": "d1769dbe5e031ab43f581653f63f8963388afd5aabe2431f4d81df5d900682dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jdk-20-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "3662a1e8a1e5a4b5bc6fcf0a95bc959c7eb4e6c86db714966accf74124433cdf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jre-20-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "b64e0d615a664f114d9bce979f536af001190e3d02da80de7798448a3f5c5698", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jre-20-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.8_linux-x64_bin.tar.gz", + "checksum": "bcb6a0fb989a21ca5c1c9929c9da2a2577ccd4fb7a1823e9f22d4788d3986a6d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jre-20-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.8_linux-x64-musl_bin.tar.gz", + "checksum": "fe4872296202e04487592c53314821d7d768474af7167cbdfa5bad8dee675a6e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jre-20-eabeta.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jre-20-ea.8_macos-aarch64_bin.dmg", + "checksum": "9189a7b12da49aa42cba7c8a9aab698ca6ce312bd082ae89e7e4f656f33d2f8c" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "4984750347e5e674d28833ed71d9121a7278904aafa4400083d767aace20e6d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jre-20-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jre-20-ea.8_macos-x64_bin.dmg", + "checksum": "456ce8cae46433cecd62d260a3e4a3f7ba08bf0a389cd7117685fcd539ba206d" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.8_macos-x64_bin.tar.gz", + "checksum": "17e3078594b7f54198a45bc1bacbcfdad0307b44bd8aac74b1b8043ed3afb204", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jre-20-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jre-20-ea.8_windows-x64_bin.msi", + "checksum": "fdf2e67bdd21d50587e3970e6a1fea31478ee82ca5f2c7e20a375d9e28e9c4f2" + }, + "zip": { + "name": "sapmachine-jre-20-ea.8_windows-x64_bin.zip", + "checksum": "5d54232d97bc94184d48e3198bf55029567e597d9ea04be28358e095c3628e49", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B8/sapmachine-jre-20-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "5517e436484c868f28c5a3dacf04bb79d356152ac4db0c23c160ecea393dba4b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jdk-20-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "df37d66a048f52060b92eabc197e6d1c6cafdadaf16211e77cda91de61452756", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jdk-20-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.7_linux-x64_bin.tar.gz", + "checksum": "957b2388f6a4b05e8fd5bb4aac15c9b20d251f6ebd71a7724f480b3f36cc42f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jdk-20-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.7_linux-x64-musl_bin.tar.gz", + "checksum": "aea7e2b4cd357b772d69df539abba520252dc728705790db4681fba9daf8ebf2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jdk-20-eabeta.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jdk-20-ea.7_macos-aarch64_bin.dmg", + "checksum": "ad2b03ba9fb6a1d50696d14a6259ba41401c6b167b7801c2db9b93b034ec12d4" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "03b585c1dfde3913ccd479a3de278d82aa53d3c0878756d063956ad4677a20f9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jdk-20-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jdk-20-ea.7_macos-x64_bin.dmg", + "checksum": "fcbfdc9a8c6ccdb65119e68a4fccdac0afda67c2bbbb5c123a8109c57b5a16d4" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.7_macos-x64_bin.tar.gz", + "checksum": "a3f500ad86bd7aacd12ef8300c90e26087b1066e65b27e059a3f0a3ebe827d17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jdk-20-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jdk-20-ea.7_windows-x64_bin.msi", + "checksum": "6f90c135133a8c07bc1e18aef1b7d3ec7bd492a4cb272c13448ab7ff6a0b609c" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.7_windows-x64_bin.zip", + "checksum": "9cbb6046024449e68101253ca9ebac59f9dd14e8460fdd14902f175750c1c0f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jdk-20-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "90f5cce8d47de51d8e4cc4ba7e72a028d32eed8c64d57e6dec148976a43268bf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jre-20-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "bb216cfbae139448468609d54fb181d0a4d1f9a36aa9c95e7503d14162793f9e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jre-20-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.7_linux-x64_bin.tar.gz", + "checksum": "297376660a07906520bdd2fbdeadf42663bfa2fe725a49e587d0c9e7884b268d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jre-20-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.7_linux-x64-musl_bin.tar.gz", + "checksum": "708dfecba019bc3f1b535c91d4c4c61437f79642a24ccfc2dcdaaf1ebed291e3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jre-20-eabeta.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jre-20-ea.7_macos-aarch64_bin.dmg", + "checksum": "9746116a0525ebe7c78cbdce1c436f1c94bb53b8e4e2a98adb61a21d6fbaa01a" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "534682321959c3889537385ff1f17c9fb1436208d654a2d75575000b965fb756", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jre-20-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jre-20-ea.7_macos-x64_bin.dmg", + "checksum": "f7ab0969347f034b2b37549ea38d3fcb4df2cb9e9d6e5babe25225b797c75a3f" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.7_macos-x64_bin.tar.gz", + "checksum": "a060d29adb6532e3af98abeb0f580b9cb1f57ee8ba1aa6221331822b01aa4297", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jre-20-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jre-20-ea.7_windows-x64_bin.msi", + "checksum": "15c0af85b407d7aba9b4a9739ffbafaeef28da684d4c0a0f55fe2bad3fead54f" + }, + "zip": { + "name": "sapmachine-jre-20-ea.7_windows-x64_bin.zip", + "checksum": "0a5d34072712391db18985cc23f91337a4f1fc065343e2e273165d4649f501d8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B7/sapmachine-jre-20-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "bcb708de672e3c6aa0b58ccf5b49296d15b654447af363f9925cf53a3760a584", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jdk-20-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "e63904684d0d388db32140066c83b0f0e2d4583e53e16fd0c5ea353c0540b2e7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jdk-20-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.6_linux-x64_bin.tar.gz", + "checksum": "3e8b3bbfe4c4c4f4c16c877179d2622392871b946881bd52070a1f33fd03ce5f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jdk-20-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.6_linux-x64-musl_bin.tar.gz", + "checksum": "fe588f90156f7772b87b00f0df0ccc07ea2f03552887d3ba93efdff4bb45f303", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jdk-20-eabeta.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jdk-20-ea.6_macos-aarch64_bin.dmg", + "checksum": "f948baf4024af03ab23bf369b83abafe7ae03ee9d4685489652f8dfd25bff51f" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "74ccae002a1f375997727822457bf61907ba84b8ce50f715f95d63b7a82a2e43", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jdk-20-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jdk-20-ea.6_macos-x64_bin.dmg", + "checksum": "ffd25f39a661fdbf3b79c15b436be681e779ee9e7a6d2e9368be39742cfa8d61" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.6_macos-x64_bin.tar.gz", + "checksum": "4e244de1b886ab564e393603773c7cc105149bc4161c9503576654de79bc48b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jdk-20-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jdk-20-ea.6_windows-x64_bin.msi", + "checksum": "9e407fa1c5024cfdc15e2df68c78275f5153297c09cb21f5e64c5d09e788bcbd" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.6_windows-x64_bin.zip", + "checksum": "e421db2c2cc0c4aa095c63f18ece2ef7b0d4b3a44f38fd06c2c146311d2374ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jdk-20-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "8eefa4db1ef3aadb07f9b030eaf8dd936b84b3220ecfd90b49bef71ecc782983", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jre-20-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "44f7348cab6fef6c87a525bf7ea27de3163ba6da48059f6988ad04c34ef0909a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jre-20-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.6_linux-x64_bin.tar.gz", + "checksum": "c66227293fe82e9529d5f6828552d8df25ccc204c47b880e56d95592824f8714", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jre-20-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.6_linux-x64-musl_bin.tar.gz", + "checksum": "2b18b79840d73a28c4f4ea289be3bcff86b098c8fd68721b6fbe3ce531c3ba88", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jre-20-eabeta.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jre-20-ea.6_macos-aarch64_bin.dmg", + "checksum": "f5ab2d4939e04d1bfb6b5ee67e449bf9a86e2cb2d881e2f9b8bbbf0abba89e91" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "b8f495cc66548c94eeecf3b3299d8bc0a8ae55ede5ac76fb797697e960b14cb0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jre-20-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jre-20-ea.6_macos-x64_bin.dmg", + "checksum": "fc26b787b01ba02114bcd2bde562fd21be5e392b194d5257d2f6dd7d7ecff6b4" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.6_macos-x64_bin.tar.gz", + "checksum": "d6a69413d1080606002bd1c285e3744cdbfbe9ad10fcdd98f8d0f9905bdf5057", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jre-20-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jre-20-ea.6_windows-x64_bin.msi", + "checksum": "d08b2f7775492ad5a69aa84c89cc9e1491a17505f8f3f2fe0b4601b693a7ae95" + }, + "zip": { + "name": "sapmachine-jre-20-ea.6_windows-x64_bin.zip", + "checksum": "3ef854ad0e5e5f9ed096a795d674448000c2afbcbe2cdec0b0ffc1586b648b62", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B6/sapmachine-jre-20-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "632de185a7ebbe641edcd7b8f083a80f314431ce1da1266af321391fea444cc5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jdk-20-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "46a3d2d93e2f906b3c5677c34c0add182628deb244928f3ea14bd0ab51634291", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jdk-20-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.5_linux-x64_bin.tar.gz", + "checksum": "447bbfb6382f64b0262744dc7c0c84b12d9470d4bba474d83eda50e72a6e8865", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jdk-20-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.5_linux-x64-musl_bin.tar.gz", + "checksum": "9fd709862c4a5760a77614e95c8bd7df297c97d14dd2cc14568ff34b112f4db2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jdk-20-eabeta.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jdk-20-ea.5_macos-aarch64_bin.dmg", + "checksum": "309bdbc9d88462eca313d60a8537a142a0a963a09d6539e6465e120eb00eb719" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "4d2739108e2c80f0c8840ad4d60887c5c6cbb405e8f89c4d3f48ef5800a3100a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jdk-20-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jdk-20-ea.5_macos-x64_bin.dmg", + "checksum": "54014cb672931b2df9fc358ef0c9471e6c7452555df92025f5a6b4953051473c" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.5_macos-x64_bin.tar.gz", + "checksum": "27a7e1f7a0dd2a428f983934ede571460e459f9129286f25182ee8070ff9e631", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jdk-20-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jdk-20-ea.5_windows-x64_bin.msi", + "checksum": "d64c3fd1c52dd481afd7cbe282e3ef86392a38d8565ce9d1c5c0f0cb7c7b3709" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.5_windows-x64_bin.zip", + "checksum": "cf844b9498424369ddd7939f6caa0002b17500ff104474ad8b3dcd0bf2cd43ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jdk-20-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "1a73b3f061e1de9d44c68c6b4e701b1128e39edef8d3e588fac48436be4220e6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jre-20-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "27139f3cfcef8d75ba7b1e6b9c8803dbac7310a2d0bf546f64a95be4e063bee0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jre-20-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.5_linux-x64_bin.tar.gz", + "checksum": "0f48f91dfe52fa2e42f2e9a25e73a4f986b74af2ce5c18710c8139b181d8f028", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jre-20-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.5_linux-x64-musl_bin.tar.gz", + "checksum": "8db41a644da40c998388e34e861c780d30cad55ea5901025c2cb72d53e1d10c5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jre-20-eabeta.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jre-20-ea.5_macos-aarch64_bin.dmg", + "checksum": "07d2ae2ea46bbe51dacdfcd11048bdeb80acbf2a3025ba78de65d74df506b500" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "b8cd38d3f8ca1a09d9ce6d56478ebce4c1915cfa63b968f085ceb73e1b749ef4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jre-20-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jre-20-ea.5_macos-x64_bin.dmg", + "checksum": "5fa14c11c52c0a28d09f4c4311e9299b6d1e556d9f6149a80ebdb5408d07dd20" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.5_macos-x64_bin.tar.gz", + "checksum": "99e58f8ab48a48f247b73c5a5683ff3d54f8e2b43a28bf1fad9b6dcf3eb79a30", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jre-20-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jre-20-ea.5_windows-x64_bin.msi", + "checksum": "abc726ada21b561b47292e3122045f9603c426337dd640c7f127d8ed0b965b11" + }, + "zip": { + "name": "sapmachine-jre-20-ea.5_windows-x64_bin.zip", + "checksum": "eee2e902bdd4054c2d3fbc88093f5be46b804f7575a87734dd593329f14e237a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B5/sapmachine-jre-20-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "a71a220ee14e0f7f283591766277e6a8d2f8c39659304099aa641169482800b0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jdk-20-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "eeb2b6cfa17170242075eb372a071c3e0f6cec47e0305f64a2defa00909977ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jdk-20-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.4_linux-x64_bin.tar.gz", + "checksum": "9f3a0f14f9874452fae4195fd19f81558c373196cc9e2794a2ca03c69975dbf5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jdk-20-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.4_linux-x64-musl_bin.tar.gz", + "checksum": "cdefcd8202fff3c366c93f575ba616a3514581e9ec553dc4748e8b5611b87a8d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jdk-20-eabeta.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jdk-20-ea.4_macos-aarch64_bin.dmg", + "checksum": "d51deee5432ebc54790c099fa77e423569c10eeb4b3aaa882d03adbc70e7b219" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "f11a50fdfc0e9601d677740eadb0ed0aff0fbca33c396d54658181fac7b32d55", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jdk-20-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jdk-20-ea.4_macos-x64_bin.dmg", + "checksum": "db858e81d7eb859bb14e140bf40cb2f7868263a9da1fc68f869799d52d5a9ce1" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.4_macos-x64_bin.tar.gz", + "checksum": "96752977e7a7907f711cf819020c28ea6820067d9a900198b2c4dc3a8aa9de42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jdk-20-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jdk-20-ea.4_windows-x64_bin.msi", + "checksum": "54970768652ac8766e4b9b5035756c834ec3a176e512b7218ce7ca56e58bd067" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.4_windows-x64_bin.zip", + "checksum": "6720cbe96d81a1bd7d5504f21cd0d20c857ac73d468fa41ad60f6854bcba2d6f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jdk-20-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "683856a9200ff254a4a3e35d79e0696fc6c0af455a69f3e67223fb1a878388b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jre-20-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "66b53e8ee317146b7c5b0ac1a55f14df4d3168827d79b37bce56970185679b96", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jre-20-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.4_linux-x64_bin.tar.gz", + "checksum": "502db421e0a14fb03b473e098cd344216edf97688e09b407c8bb9fab2449e434", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jre-20-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.4_linux-x64-musl_bin.tar.gz", + "checksum": "7a90f3703ff8a04bc08128bb4695b483498134e30abc75e01f8149b96529b8af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jre-20-eabeta.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jre-20-ea.4_macos-aarch64_bin.dmg", + "checksum": "383a9df6e084c0a26a7acd674de65f4df5e22abb0dbb3950eae9806b3b978921" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "c3cfc4fd3b42c89b6a60f1838fbed0d7891939ecbbc5c760d9dfa603b53e85fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jre-20-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jre-20-ea.4_macos-x64_bin.dmg", + "checksum": "8ceb0f0ece16391b40e7f5daa1f0ac83b07ada6c6d68334dc77c4f4ee71bfc30" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.4_macos-x64_bin.tar.gz", + "checksum": "b68b0ed342c0019e64b996f052c735a4aa7f729f398d791291f34c754f1a1c39", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jre-20-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jre-20-ea.4_windows-x64_bin.msi", + "checksum": "cb0efe876c1e51f9c01ef8d33747c46805a9d3234ff6d19fc0ebc6d27e36cbb1" + }, + "zip": { + "name": "sapmachine-jre-20-ea.4_windows-x64_bin.zip", + "checksum": "c82587ce140ce49d3cfc299a2da9280950bd1e6fabd3ef26496f6467a41544b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B4/sapmachine-jre-20-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "bff89c12fdc1c49d3d2742fd5916f1958cdaf4aa24fe31d686223b4691d1f878", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jdk-20-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "65ed3f0b662e35a8a5cbe81fdb79c4e7fec3aa4e8c19c24d800c5bf5967ffab5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jdk-20-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.3_linux-x64_bin.tar.gz", + "checksum": "8fa88f77eed335f8a13bbf1aa08111f55aeff2cc5a5b02357a1bab96abf86422", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jdk-20-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.3_linux-x64-musl_bin.tar.gz", + "checksum": "ec59bec893492336cfc242193934653deeef2b1a6d8a8b996047bb4ff181a5a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jdk-20-eabeta.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jdk-20-ea.3_macos-aarch64_bin.dmg", + "checksum": "908dc393c71fffbff7d796fe326a0b5d7312d79ab4be94ab5f9dfe09f518f0d8" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "383c50d664eb216693e8b0840da431b5a94a61bc476f9ab4b6ad4b6796183083", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jdk-20-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jdk-20-ea.3_macos-x64_bin.dmg", + "checksum": "3c742be039f83a102f9138af71b3080e75d93ec7a443934e6816f8fc7ff9b463" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.3_macos-x64_bin.tar.gz", + "checksum": "2d2984d4cb60b968576d3550cdb16ab7b32e9da05af331b2301d0925cd14b4b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jdk-20-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jdk-20-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.3_windows-x64_bin.zip", + "checksum": "63c1d583e5c19a3da0573a56ac23a14d8efcedf68f6b6723293b3cd76954d44a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jdk-20-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "4bbbb809fb1b7b89d30bac871c7f6475172968273a4cef81afd382c4fb6596dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jre-20-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "37a6818c845bd33243491a748e29339e23853423e6323926f617582864241ce5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jre-20-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.3_linux-x64_bin.tar.gz", + "checksum": "eab683cbc5739db22051f2e9891ae806833296f187ae58523ea4bc635e2393f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jre-20-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.3_linux-x64-musl_bin.tar.gz", + "checksum": "f32459accf35d8fd05ee7e1aded0b5db8ff89df9c5f16bc05896dd7dee1e2585", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jre-20-eabeta.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jre-20-ea.3_macos-aarch64_bin.dmg", + "checksum": "040335667006edf6fd669724933f33f34ee213462111323eb30012b4fdf87efe" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "dfbce5605c22b0843dc1308990e652e8f61178ddab8124b9b0d0891e1c968128", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jre-20-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jre-20-ea.3_macos-x64_bin.dmg", + "checksum": "294a593b3c5a0c653d9d02b8029d0f455aa15f253e54c9459479a7d88eaaf829" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.3_macos-x64_bin.tar.gz", + "checksum": "6e4d5a8f35c146dd7ffe16c7958f3ee8838d738ffc9655131895f98670221c1e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jre-20-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jre-20-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-20-ea.3_windows-x64_bin.zip", + "checksum": "e52e4f6cd158afe71cdac010d9f3fa2d2d78ad454f80d62988d9d98e989585a2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B3/sapmachine-jre-20-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "66cd5ba3b300cd614225cfe97c7cba4ee10ca564f3c40a421ca5e556cf5ad635", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jdk-20-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "a215d551c3c11f48c9483bb13cc49ae072d3a4e1688ba620f42451c1547629dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jdk-20-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.2_linux-x64_bin.tar.gz", + "checksum": "0700afac2433125bec1a94693b19a5c5dbc9873d926b9dc86d19b4afd56e6369", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jdk-20-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.2_linux-x64-musl_bin.tar.gz", + "checksum": "76d16875c8d9d8277ac5a47963d81ce37da696941efcf46c086178d0c5480a48", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jdk-20-eabeta.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jdk-20-ea.2_macos-aarch64_bin.dmg", + "checksum": "0708476436d9587e91dbb98abb70ee01b4bbac16cecf5cf31e45fdfdce0d9f91" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "68644b3842700cd9e3b2a49a54a7fc4e109801d64ed801fbe9caa94f7380fa8e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jdk-20-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jdk-20-ea.2_macos-x64_bin.dmg", + "checksum": "4a959f38b2aae90c6276cc9cab1160afe3b1a462bb82fbc32c66c33982f7793f" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.2_macos-x64_bin.tar.gz", + "checksum": "1f8daa1ed01b593d0c5772562094afe0ca023cdeef84f7dfd3a55360d94c12b1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jdk-20-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jdk-20-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.2_windows-x64_bin.zip", + "checksum": "0150c94d5142b7ba1c4340b0479c13a949e5191765a523734f6bed19713ce688", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jdk-20-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "c75bca16127c9985eb57bb0f66fda5b619fbce229ddd1c93595adb86d6236df9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jre-20-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "dd19ec0d2fb72ea9704132f98f0be0c7b7340adda2250708be477a627fd8072a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jre-20-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.2_linux-x64_bin.tar.gz", + "checksum": "cd7808824f6232e447e28cca262bb3a198b219c091e4770bc1f491a01cfec561", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jre-20-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.2_linux-x64-musl_bin.tar.gz", + "checksum": "4af8d08c0e287c109ea5bb6103694c1d3d049e277d672a80ec3b5d13cef7500b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jre-20-eabeta.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jre-20-ea.2_macos-aarch64_bin.dmg", + "checksum": "61afe92cb3ad40a94058e24cbc44496092e21c222b68a37c7fbe6a0411df6175" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "13db27369ba42a281610a4e39906439440d2e18231e1ef2e358d4ee2c800df85", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jre-20-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jre-20-ea.2_macos-x64_bin.dmg", + "checksum": "fa0ace436a3f5cac5711a1525c831d7029d02f26441972bb02a39dd48bbe20a8" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.2_macos-x64_bin.tar.gz", + "checksum": "16e3291b522a70357bb44e293ed1ce89d2a506f184f3c54c6bdbbe20672fae62", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jre-20-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jre-20-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-20-ea.2_windows-x64_bin.zip", + "checksum": "b477792ba3dfcc73d3be5145250bb5898117ce6e04c0fb83e23f3ea5f9dc5ba7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B2/sapmachine-jre-20-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-20+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-20%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "5861b76e2f7a72516cde3472069aa10ebebcec6632be835789a4ed84ba2ab413", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jdk-20-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "faf30de7d9465e0fb48016b19aed32293a42f11f1a52207603d58f8aa3b566e3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jdk-20-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-20-ea.1_linux-x64_bin.tar.gz", + "checksum": "8fd2b8adf3c54dc33a1a3a974038dba003131a6f1620c892dc984db0d3cf253b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jdk-20-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-20-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "61a4f32f939c62c03aa6c43a721bca06c8d65cb6b6e6e9ab14edec6a3c1a22f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jdk-20-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jdk-20-ea.1_macos-aarch64_bin.dmg", + "checksum": "ab901b6cbe7a9d7454f4528304e476f4039fa350d29c64d1bb2ed7a9b6235db4" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "ddae3206622d1a780d8f1f5884002462ad46ac1e0aeeb86a15695005ba7b81f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jdk-20-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-20-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jdk-20-ea.1_macos-x64_bin.dmg", + "checksum": "fcb8663e69e2141bb5d1f6f24fb94f9343e5be5d52867871144540720181c552" + }, + "tar.gz": { + "name": "sapmachine-jdk-20-ea.1_macos-x64_bin.tar.gz", + "checksum": "882a2b9d8f0ebc71fd131a6eee4f82c65095d1485034a6bbd3eb6c991f65f104", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jdk-20-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-20-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jdk-20-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-20-ea.1_windows-x64_bin.zip", + "checksum": "21aae45e46b9506d3409de431f95408313f08cc36280c73e196fc1bc763d8d31", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jdk-20-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "cc8696e6ed45a7287912a2d9b077336ddac829b212b5a7f789630517646ad796", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jre-20-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "550729cd6d832d99f1052d0fa6eb76dfbd4c11ea3c2928eacf8826604b7e5e19", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jre-20-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-20-ea.1_linux-x64_bin.tar.gz", + "checksum": "5abf66a9f7f7415e23ae61026d23380f948856bae32f90c3ca4bb2cd2e7d4489", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jre-20-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-20-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "014fa3a0528ddb2f6187af01b8ef9b8a64a21829bc27ba5185ee54bb5e7d961b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jre-20-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-20-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jre-20-ea.1_macos-aarch64_bin.dmg", + "checksum": "985de3dd670badbe3aab6395760c2c4ba5fe30763343838abd5466fd423f47a3" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "5ae60b3dc738db3acfaab07950f8f0e6ce8f56c59f927cbcb16f6bd62a6f6ae1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jre-20-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-20-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jre-20-ea.1_macos-x64_bin.dmg", + "checksum": "639078c90a058ae9ffac4e4a02ae58b95638371c34f94970c04a03a62e18297d" + }, + "tar.gz": { + "name": "sapmachine-jre-20-ea.1_macos-x64_bin.tar.gz", + "checksum": "b2fe1ac771f19d5bf7eb110a5a1ee88ea4043cb14a272cecf98e3f0f3c6f0676", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jre-20-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-20-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jre-20-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-20-ea.1_windows-x64_bin.zip", + "checksum": "d3ac70800911af637fc6fbdbc6021b3b60620e0224aaa4f899fc431a825eb742", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-20%2B1/sapmachine-jre-20-ea.1_windows-x64_bin.zip" + } + } + } + } + } + } + }, + "lts": "false" + }, + "19": { + "updates": { + "19.0.2": { + "sapmachine-19.0.2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19.0.2", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.2_linux-aarch64_bin.tar.gz", + "checksum": "e7d1c359cf979c5517f22f6895c2a8d695ad97313a85a5fc8ce0785018ef1022", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jdk-19.0.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "9d6a3a0e36277204cb34906bb99d655a049f7b274fb7666d5e2f1c0f2a460ac8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jdk-19.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.2_linux-x64_bin.tar.gz", + "checksum": "e7b27e8b5b4ca2a172b0a6299eaba9cf7e0cceeea11aeb37fd3ff1ef71cff018", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jdk-19.0.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.2-beta_linux-x64-musl_bin.tar.gz", + "checksum": "0859d24774a45da3a26e648d733948c437d891c66570a54ee9e23dac5c76e7e1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jdk-19.0.2-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19.0.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jdk-19.0.2_macos-aarch64_bin.dmg", + "checksum": "f354ef6ce50590330973c2b2ae53918ba6471bb1c1e89862dea4d18a9c7cfa9e" + }, + "tar.gz": { + "name": "sapmachine-jdk-19.0.2_macos-aarch64_bin.tar.gz", + "checksum": "9378c84c6773fb93d4c65742aeff3d006fa636b12d9657e421a0ed2ebbd2040b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jdk-19.0.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19.0.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jdk-19.0.2_macos-x64_bin.dmg", + "checksum": "916d060f0af16fcffd20b1520028cb9383bdb8c8e231fd0e1f172eaffbae6071" + }, + "tar.gz": { + "name": "sapmachine-jdk-19.0.2_macos-x64_bin.tar.gz", + "checksum": "526d827d243c97dcee965a40ec5735fc82dcb8d8b32ab5b118a9ce9199d213f9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jdk-19.0.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jdk-19.0.2_windows-x64_bin.msi", + "checksum": "f4c353d07882c812e48cc6aa6c964caf358cb1a290b1205777f1d73c6a5bdfb1" + }, + "zip": { + "name": "sapmachine-jdk-19.0.2_windows-x64_bin.zip", + "checksum": "1be5e8578ea41afd4e1c6d433500adea4847709ba0ea6ab4e2d99a979a970998", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jdk-19.0.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19.0.2_linux-aarch64_bin.tar.gz", + "checksum": "78f417d2c961bb52c5d5297653a84b925f1b129f2435f13192ea2d889c426a86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jre-19.0.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "069b735c701c257597b0a0d0130db2cabf4118a6fcea8d79116c2261c89966af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jre-19.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19.0.2_linux-x64_bin.tar.gz", + "checksum": "2055444242d4bc3124235b2bb4ca7f2c75a2546cd98d8df6f2033d09f1baad6c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jre-19.0.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19.0.2-beta_linux-x64-musl_bin.tar.gz", + "checksum": "0d6fea887dcb83bf85f1e10e5bce9002ee1aa219725a2911c0d3faecdc011dd5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jre-19.0.2-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19.0.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jre-19.0.2_macos-aarch64_bin.dmg", + "checksum": "99dfb9a5e9614e1d8ffde8cab718e4a03bd6e822bdb77652f3348ba0fc9d4c69" + }, + "tar.gz": { + "name": "sapmachine-jre-19.0.2_macos-aarch64_bin.tar.gz", + "checksum": "f10af5ab84d3e573928ba25c5d1871dc42b5e2ea66800ae157b9ad34fd3b61f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jre-19.0.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19.0.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jre-19.0.2_macos-x64_bin.dmg", + "checksum": "09ae2fd8bcbf3f1e458f63df28398679df30c61e297c122ff998855d3bc37f33" + }, + "tar.gz": { + "name": "sapmachine-jre-19.0.2_macos-x64_bin.tar.gz", + "checksum": "fc684cf4c00a5d681d16ffa6233bab785ec083f80d8356ec67aebecaf32a690f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jre-19.0.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jre-19.0.2_windows-x64_bin.msi", + "checksum": "1d7c1b85511d07f51f4c1d2c3387bcbb4aa6488157061a5bb78b47a7ac052134" + }, + "zip": { + "name": "sapmachine-jre-19.0.2_windows-x64_bin.zip", + "checksum": "db9dccc4507f856c45975a410a189936c3f9472a0102246b1301668df7de2752", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2/sapmachine-jre-19.0.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19.0.2+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19.0.2%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.2-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "f1711d0e456de55447b0f2c0a843b750685052b63f5d544da62ccaeab2630693", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jdk-19.0.2-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "0b14e1b577e8c97881fa9a1e4de91694bd9de21b42846bba59b35c15c3b204c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jdk-19.0.2-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.2-ea.1_linux-x64_bin.tar.gz", + "checksum": "9d35fdbb5744be0ae83ab5a056311df08320576d2d148c6dea70af5c03f36802", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jdk-19.0.2-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.2-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "063d3f3c3061b12dc773f92ce47bc4204f3d764293ba15efb352f5aba9133c2c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jdk-19.0.2-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19.0.2-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jdk-19.0.2-ea.1_macos-aarch64_bin.dmg", + "checksum": "f7e685dd440591ce35ed34314337ab43c5306dfead0bfe9bc4bb77cf4d5e0b1b" + }, + "tar.gz": { + "name": "sapmachine-jdk-19.0.2-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "169fed837f822b05ee53349f3d3697048a666e6ba39817993edc88cc3bc7ab4a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jdk-19.0.2-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19.0.2-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jdk-19.0.2-ea.1_macos-x64_bin.dmg", + "checksum": "4c00d7000dd2c6a711256639d14dfebab9885398cf724554e97a48736063dee7" + }, + "tar.gz": { + "name": "sapmachine-jdk-19.0.2-ea.1_macos-x64_bin.tar.gz", + "checksum": "bff3ddc77defc5b0cde607ea0c39766a74e31b1dd5a4ffae2daf91469d4109b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jdk-19.0.2-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19.0.2-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jdk-19.0.2-ea.1_windows-x64_bin.msi", + "checksum": "265118c24e85ccdbf6e429224677bd59915dcd44d94f629a3976b2c1e09a8e2f" + }, + "zip": { + "name": "sapmachine-jdk-19.0.2-ea.1_windows-x64_bin.zip", + "checksum": "e25ec9230bda6ff9cca39b115fbcc59cae3467499f2dbfd36dd1eed1e1b70472", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jdk-19.0.2-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19.0.2-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "400db38527f07914be56f156689c71d14fa5359bac2811d772dad44c31110c93", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jre-19.0.2-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "e0d7c179ba56aeac8afc2c09cd5ae64ae5e3b2ba7b66cfe5bebf00785300411d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jre-19.0.2-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19.0.2-ea.1_linux-x64_bin.tar.gz", + "checksum": "51d8de13c6131b1d3d8bf520caaba661f500fc90d2f9691d5d76bf134783f3b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jre-19.0.2-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19.0.2-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "77a7cd5523729f933c6869b357f28d46e6e970bb4b2f7c48cbd8789e912fe86a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jre-19.0.2-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19.0.2-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jre-19.0.2-ea.1_macos-aarch64_bin.dmg", + "checksum": "21ecaea350cd4b8de7d2e9f82c0c0b9e8664f03c4dd92fb48f47a5b7d7b840eb" + }, + "tar.gz": { + "name": "sapmachine-jre-19.0.2-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "3e9743b4427b5cf7df5703cd836befec1fbfd2af0cfa07bbff701fb37e8cd93d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jre-19.0.2-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19.0.2-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jre-19.0.2-ea.1_macos-x64_bin.dmg", + "checksum": "c87913ebe0ca035a247c6d481fd1c6b91578917daeca71560ac80006f2fd42bf" + }, + "tar.gz": { + "name": "sapmachine-jre-19.0.2-ea.1_macos-x64_bin.tar.gz", + "checksum": "9f4b7e40110dc5c2621b08a330fb4df33c1f7a8c7b5844912838430e7efd7306", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jre-19.0.2-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19.0.2-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jre-19.0.2-ea.1_windows-x64_bin.msi", + "checksum": "b6bbcd309fa00ed2c77906944c01576c044cb0b9c2b73b2bdca69e51a17f33fc" + }, + "zip": { + "name": "sapmachine-jre-19.0.2-ea.1_windows-x64_bin.zip", + "checksum": "c501192fdb7316b46201fabfaf9c8e386ba3bfb5c05579bf39b8c4c5b5e2e9d0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.2%2B1/sapmachine-jre-19.0.2-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "19.0.1": { + "sapmachine-19.0.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19.0.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.1_linux-aarch64_bin.tar.gz", + "checksum": "c936c3ff014616652836cbeec4fe3afcc9c7d937e2f14807e6f3e45a2237147c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jdk-19.0.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "1c5c606bff5bd2bc9b88a5d4d153e3c0acaf0ae1ade0f519e80bcb7358dc7711", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jdk-19.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.1_linux-x64_bin.tar.gz", + "checksum": "a8aa60ce6e9bb67388cf23bb710c742d4a5132a55da2f21113d082e91b6453d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jdk-19.0.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.1-beta_linux-x64-musl_bin.tar.gz", + "checksum": "06929eb7f24a9cbaeb73952f41a3213377064833f904eab1b2f60e607e3333f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jdk-19.0.1-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19.0.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jdk-19.0.1_macos-aarch64_bin.dmg", + "checksum": "ccaacc6d33fbffc01a5f32fc33399638145ebc8fb9a08a4ce8239822e15f0411" + }, + "tar.gz": { + "name": "sapmachine-jdk-19.0.1_macos-aarch64_bin.tar.gz", + "checksum": "19830ca15d0038c01a888794588547079ad747a2696b62f4b0a3d263138eb189", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jdk-19.0.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19.0.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jdk-19.0.1_macos-x64_bin.dmg", + "checksum": "4ddd5b450b61e41501434771937dc5d1758025d8169ab0fbb382af745645db42" + }, + "tar.gz": { + "name": "sapmachine-jdk-19.0.1_macos-x64_bin.tar.gz", + "checksum": "720d2a956fa7ad4ea89b5f3d9f9ee1c9c2e464bccc54f9cb72f8e2bb40850505", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jdk-19.0.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jdk-19.0.1_windows-x64_bin.msi", + "checksum": "3f636a0f6e8a0fd3ea0f3afe37d85c2aa58b68bfe9864440a23c8b49d331a813" + }, + "zip": { + "name": "sapmachine-jdk-19.0.1_windows-x64_bin.zip", + "checksum": "176594e9f36c4d32f260f51f411fd97daea7e8d280903cab141b46afbced94e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jdk-19.0.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19.0.1_linux-aarch64_bin.tar.gz", + "checksum": "e17217d8915204467b3f5f4616f74004fb283ef41be70f23a0a2cc795572fd4a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jre-19.0.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "0bc25d7f2522ef3c94ba2bf3db80184b9947f015f7947c77fc11a9d046d523ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jre-19.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19.0.1_linux-x64_bin.tar.gz", + "checksum": "f230c375581eda3c6a542bf987dc877e2b55421f1af5ed054077e20fe4bc78a8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jre-19.0.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19.0.1-beta_linux-x64-musl_bin.tar.gz", + "checksum": "43d4b2f318c5f6e480480fa960bd4ba973fbc48d7005a92acabc89195d4467df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jre-19.0.1-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19.0.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jre-19.0.1_macos-aarch64_bin.dmg", + "checksum": "cbbc6455fc17edbd348be20ed1945330196383155486e5aa71f00aa1cc762304" + }, + "tar.gz": { + "name": "sapmachine-jre-19.0.1_macos-aarch64_bin.tar.gz", + "checksum": "1a23431f4c0c1710cfe980c09f027e0b9bdba694fe5ffdd51532f70d91ccbb05", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jre-19.0.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19.0.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jre-19.0.1_macos-x64_bin.dmg", + "checksum": "402893bb8147b83b12e7ebf2168a113db0e538bb9b08bac02a1b6543d8baaa0f" + }, + "tar.gz": { + "name": "sapmachine-jre-19.0.1_macos-x64_bin.tar.gz", + "checksum": "8a4232a6e7ad9bf670c9717f98d4711296b013058d2c3ec638c9a580d7f8ea6d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jre-19.0.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jre-19.0.1_windows-x64_bin.msi", + "checksum": "0c5f2d102c191766c1d1a76348a387c9626d83a19b199842e5acce065f2fc005" + }, + "zip": { + "name": "sapmachine-jre-19.0.1_windows-x64_bin.zip", + "checksum": "a4e6465f5e0654b976ac329d90f51a7738f6d43549b475c4ad396b3ff9c66916", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1/sapmachine-jre-19.0.1_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19.0.1+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19.0.1%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.1-ea.10_linux-aarch64_bin.tar.gz", + "checksum": "0bace7897783e095b8ac97a46a2b8326e50de4dcf9e165d1d481acb7b7a8b05c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jdk-19.0.1-ea.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.1-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "d7c6653eba059d046b9e01c5557d36147e90d0dc7d67e951bbdf7ccbb8d372ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jdk-19.0.1-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.1-ea.10_linux-x64_bin.tar.gz", + "checksum": "21de671fa27da78bb874461ed992f9a6a549e15a6806ac0a3e2d6dda4975f07c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jdk-19.0.1-ea.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.1-eabeta.10_linux-x64-musl_bin.tar.gz", + "checksum": "4997beca62f899f90be4ec7dd3e1c5de11221bcb9bda5e2bf16be0cd8cc2976a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jdk-19.0.1-eabeta.10_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19.0.1-ea.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jdk-19.0.1-ea.10_macos-aarch64_bin.dmg", + "checksum": "d69ce80c4f2c97a9676a0a72fe5ca2735724e12e60828487c9159655c9434c94" + }, + "tar.gz": { + "name": "sapmachine-jdk-19.0.1-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "a82f339e3c627c5c0cfd5e4818169d7a3c20953a0235ab8f2f0686c3544e405e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jdk-19.0.1-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19.0.1-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jdk-19.0.1-ea.10_macos-x64_bin.dmg", + "checksum": "7e6b2c2b2338258d196557ad50582b4ff878bdeacdd0283a338c610b3260abdc" + }, + "tar.gz": { + "name": "sapmachine-jdk-19.0.1-ea.10_macos-x64_bin.tar.gz", + "checksum": "ab5e216ae57fd4c21d45b1ff951b28dc03c614a455555428b464511d5f41ce77", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jdk-19.0.1-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19.0.1-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jdk-19.0.1-ea.10_windows-x64_bin.msi", + "checksum": "9b74383e71b27c24f236cb8114f511bfb3102a5f69710f6559bdc224fe42cc3b" + }, + "zip": { + "name": "sapmachine-jdk-19.0.1-ea.10_windows-x64_bin.zip", + "checksum": "45728446ad3dada62fb5abad55827b48d039a0e7db4bd9123be43f2780413e25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jdk-19.0.1-ea.10_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19.0.1-ea.10_linux-aarch64_bin.tar.gz", + "checksum": "1309c9dea006094e83124438346d085876e219421952f668dfe420e4cf37d54b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jre-19.0.1-ea.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19.0.1-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "fb46818a9d13c8a56f0d1aeb5b15d3de670ac10dffc00d3a19c1158e5bdb0e0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jre-19.0.1-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19.0.1-ea.10_linux-x64_bin.tar.gz", + "checksum": "22675092b5e4a2411ad334046a7375c21548ee4458b8638d37c5cf260e2b91cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jre-19.0.1-ea.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19.0.1-eabeta.10_linux-x64-musl_bin.tar.gz", + "checksum": "faaf50ed812901f2ebe10e3c55cee4dab601d15232f1c2e1c3420710dc8f51c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jre-19.0.1-eabeta.10_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19.0.1-ea.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jre-19.0.1-ea.10_macos-aarch64_bin.dmg", + "checksum": "5a42db55c1f74a3b2b3c13576085fe59cdef9e041e0fe853a9c636356c7f3721" + }, + "tar.gz": { + "name": "sapmachine-jre-19.0.1-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "9b406d44bedbb0fd72a3555fa1becf84986dee2c6f5010eb1aceec46493186a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jre-19.0.1-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19.0.1-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jre-19.0.1-ea.10_macos-x64_bin.dmg", + "checksum": "2977c18b74b1e12a0b4f61944a74828ced79df6034fb7bbc0d3645acf7aaa75e" + }, + "tar.gz": { + "name": "sapmachine-jre-19.0.1-ea.10_macos-x64_bin.tar.gz", + "checksum": "b4928cf9f603652741036f8370ddbf593fdf74d636e2a6d45154162a2e868d16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jre-19.0.1-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19.0.1-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jre-19.0.1-ea.10_windows-x64_bin.msi", + "checksum": "533dbbfd6a3e20d85a4341cbb76fff6dbc30c1d43cfaa4727453f6d60c93839d" + }, + "zip": { + "name": "sapmachine-jre-19.0.1-ea.10_windows-x64_bin.zip", + "checksum": "5fb0fb9d919e69f8d3e313b071db73b9d6e4b24e6d5a88ec9438eacb525572df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B10/sapmachine-jre-19.0.1-ea.10_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19.0.1+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19.0.1%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.1-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "d3cb2b2898d093e797f0e8d3ba61708a43eb798dbd8834e2c03b3054ad2d7120", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jdk-19.0.1-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "f38e950f7babd82ff5142ef0aedf7147e5fb7d3bbaef2e802606ab12e383205a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jdk-19.0.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "2c6c0c39bfcb3ab29e44ba51f40f84e93e46946f156b7cdd0b13fe58e5d5aea7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jdk-19.0.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19.0.1-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "cb5bd64acecf15a8458f3359b28a00fc9d1a793514836a77dd0c77deecf46fd3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jdk-19.0.1-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19.0.1-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jdk-19.0.1-ea.1_macos-aarch64_bin.dmg", + "checksum": "aad563fea129c9f0aa6b1d54f769fd7a885c31072c75affc805bbd5bf841ce15" + }, + "tar.gz": { + "name": "sapmachine-jdk-19.0.1-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "624e6900091643692567f6b077adc33fcaef17d237b5b9ee3b2e935464f4413a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jdk-19.0.1-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19.0.1-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jdk-19.0.1-ea.1_macos-x64_bin.dmg", + "checksum": "e23fcc37b68dcdd1311236504772fa791a34d2e8552c3853fad898c27f3884fb" + }, + "tar.gz": { + "name": "sapmachine-jdk-19.0.1-ea.1_macos-x64_bin.tar.gz", + "checksum": "44f167dba235f7ed0871a2dc0db68eb7275bb8677a007152c65ee115beba1347", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jdk-19.0.1-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19.0.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jdk-19.0.1-ea.1_windows-x64_bin.msi", + "checksum": "d9f95a24b33337dd89bfbfaaca328332b93ed5c8edd7683021487cca17d5f44a" + }, + "zip": { + "name": "sapmachine-jdk-19.0.1-ea.1_windows-x64_bin.zip", + "checksum": "1c694f1c30b62225ea7353e7fb9e02b149b4e40ea63a7723d1a7d1cc7565dff6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jdk-19.0.1-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19.0.1-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "0462344dffb11e2573eb758d70e109b6cfc9b3b33d68a2461e54bb8da2098a1b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jre-19.0.1-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19.0.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "26a4bb0268de68bd5ba3c9e0c5470028c711666b4ba942a620126d62168e0a01", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jre-19.0.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19.0.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "7d4d13e76d5c99cfbe93739e6997f937a4e9135a843eaf347fa9203fda0150cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jre-19.0.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19.0.1-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "0ccc255d22a74190225be9a1d9dc1b4eca873e168b944deb350a34955d59b86e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jre-19.0.1-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19.0.1-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jre-19.0.1-ea.1_macos-aarch64_bin.dmg", + "checksum": "663c8030bf4dffbd9c587540426bb16ab6850dabf32d1ac84c9dd483dc504373" + }, + "tar.gz": { + "name": "sapmachine-jre-19.0.1-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "a7bb987c804a87711e6486574bf0608b88033ffc5b200813b7f14b6d868417c1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jre-19.0.1-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19.0.1-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jre-19.0.1-ea.1_macos-x64_bin.dmg", + "checksum": "fc54b19763569abac3be6b0f5c0272cf61b06f625dc098c5f0eced850878bdd7" + }, + "tar.gz": { + "name": "sapmachine-jre-19.0.1-ea.1_macos-x64_bin.tar.gz", + "checksum": "2f483c676112158742727e32f59d885b61b7a43101ba44d891f0ba72f91cee00", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jre-19.0.1-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19.0.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jre-19.0.1-ea.1_windows-x64_bin.msi", + "checksum": "9cca4e614a4ffeb8560a96006f3b340fbe244838ce9d993357fca66ed6399488" + }, + "zip": { + "name": "sapmachine-jre-19.0.1-ea.1_windows-x64_bin.zip", + "checksum": "ae70e22ff686552eae691191ee4039822fdb05112e1eadd2c18aa903de814767", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19.0.1%2B1/sapmachine-jre-19.0.1-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "19": { + "sapmachine-19": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19_linux-aarch64_bin.tar.gz", + "checksum": "ae2ac322d4a2145329c10d004e1f5d8e748a68604c0692e8c15049dd90c8c013", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jdk-19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19_linux-ppc64le_bin.tar.gz", + "checksum": "6555b085e379284df2917040ef43eee251784448ff6907f438dbbc1b15a2cf89", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jdk-19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19_linux-x64_bin.tar.gz", + "checksum": "0bbd853c82524ff19a09eb0e7ad847eb846792d951435d74a138dec65e736879", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jdk-19_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-beta_linux-x64-musl_bin.tar.gz", + "checksum": "3976486008f96dba54efb53ba1551e011a659864e46a152967321032eba4262a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jdk-19-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jdk-19_macos-aarch64_bin.dmg", + "checksum": "d7d549820d1970a332c972848e09af2cc1672170802c1089e12c8230ebec437e" + }, + "tar.gz": { + "name": "sapmachine-jdk-19_macos-aarch64_bin.tar.gz", + "checksum": "c677b1b9bd021557cfa68d0d0a36c54217387be37a0b4fc84bc67121da341af8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jdk-19_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jdk-19_macos-x64_bin.dmg", + "checksum": "199b08f859548a9e8973621e2a72e4781bc997ef85ca84940da411063a1148f2" + }, + "tar.gz": { + "name": "sapmachine-jdk-19_macos-x64_bin.tar.gz", + "checksum": "5db122e254cfea9ea86938bfe529f152458841b36f103d512384ac2a94fcf621", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jdk-19_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jdk-19_windows-x64_bin.msi", + "checksum": "6861f3dbb9577c6b14502f181b07702f07e12b1695df74ede7023f2328c1ff72" + }, + "zip": { + "name": "sapmachine-jdk-19_windows-x64_bin.zip", + "checksum": "dfb392b079398c822b1970d5ba75a361bd0bd768dadd6ab4709d99bfa2426d81", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jdk-19_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19_linux-aarch64_bin.tar.gz", + "checksum": "5debf8fa898094b30fa21e0fa3be3172bce41203dc730dfb773ca08453a38002", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jre-19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19_linux-ppc64le_bin.tar.gz", + "checksum": "6cc4f951e162c6ed09c7109fae10d8c463cff7e5d6ddec9898b69e8fbb905a09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jre-19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19_linux-x64_bin.tar.gz", + "checksum": "84961c9dd962e5abae90d2ecae9f74d1cc697d73d3f6597ca10c1c1ef53aaf67", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jre-19_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-beta_linux-x64-musl_bin.tar.gz", + "checksum": "68d8e20c38fed5649192f2181dcff2b8c7a888fd9d7f71668a64c02cd8c429be", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jre-19-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jre-19_macos-aarch64_bin.dmg", + "checksum": "8f724d831ac5f76c8a6eddf693851e39b792460801c074c6670fb12a08c5be83" + }, + "tar.gz": { + "name": "sapmachine-jre-19_macos-aarch64_bin.tar.gz", + "checksum": "fc3a018baf0f0814f509b631c8426cf215b76ae1512636997e84da7cac32b636", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jre-19_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jre-19_macos-x64_bin.dmg", + "checksum": "d6959a17ff7fd0825a6e482d3628e3bdf3bc8d4f7edcb23023fa594813b1c53f" + }, + "tar.gz": { + "name": "sapmachine-jre-19_macos-x64_bin.tar.gz", + "checksum": "286cef5d0c79c15835da4c4b9f3cbd99c4e92ce54e868621071412561a77cc64", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jre-19_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jre-19_windows-x64_bin.msi", + "checksum": "a26e38d5f157353ed785112baf258426c536b0a6999d396a0245da7abe2da1d5" + }, + "zip": { + "name": "sapmachine-jre-19_windows-x64_bin.zip", + "checksum": "ed81dd6eb347ed88750a64413b90df902f090f93f0e65da2f785367aba7f80de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19/sapmachine-jre-19_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+36": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B36", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.36_linux-aarch64_bin.tar.gz", + "checksum": "c6a0ab7ba5838c6c55716465fece979a9c37e9a1df2552bb08c7c9f42950d520", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jdk-19-ea.36_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.36_linux-ppc64le_bin.tar.gz", + "checksum": "500fc1dc3bda90313969602c125c1739599421695f8c168e5402dde158c37480", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jdk-19-ea.36_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.36_linux-x64_bin.tar.gz", + "checksum": "7c24ce08dfc361ee0a0e2bdbec808d1e13c0da65143287174fdd215b9fcbba4e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jdk-19-ea.36_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.36_linux-x64-musl_bin.tar.gz", + "checksum": "b5b803379c29bec3267b97657709312ac9eddea9a737e4f84ee0c58ecb0d04fc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jdk-19-eabeta.36_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.36_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jdk-19-ea.36_macos-aarch64_bin.dmg", + "checksum": "6152225849892ac1d0b7a0532c9fa136490b2bd9ab7b963952f90a32e83292f2" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.36_macos-aarch64_bin.tar.gz", + "checksum": "c159c8287b07bcadf7847700629dbe34ce202607d99fb8b4556fbed0460f9c03", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jdk-19-ea.36_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.36_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jdk-19-ea.36_macos-x64_bin.dmg", + "checksum": "d60e5dbfd5ad79c51701ca806115c835c782a7a3d082bcc8f967864e63545a83" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.36_macos-x64_bin.tar.gz", + "checksum": "7a840863e0c68dc92b1c3b7616056c5058c1170663dd92c2c472a5d0c016b272", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jdk-19-ea.36_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.36_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jdk-19-ea.36_windows-x64_bin.msi", + "checksum": "b032f0c49c9f46491f5e479d043d46485afa617de9ed6295d67e8b92e679d845" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.36_windows-x64_bin.zip", + "checksum": "a5b86abd3321934c9c3c2b31e19975a996e6513021edcf8cbbefb6032528315c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jdk-19-ea.36_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.36_linux-aarch64_bin.tar.gz", + "checksum": "b6f5b050f008797126620887b7f5b41e0eab62ebf84a2457eee05e2837167732", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jre-19-ea.36_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.36_linux-ppc64le_bin.tar.gz", + "checksum": "d318dea851eb052607c42d89c9e874ef1d33da1b6115816c27524fb0b5c64370", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jre-19-ea.36_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.36_linux-x64_bin.tar.gz", + "checksum": "ff970977227d74d4d2d71c634b407195b9ff812cfbf90bab55a658d25462d0df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jre-19-ea.36_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.36_linux-x64-musl_bin.tar.gz", + "checksum": "f0525aa2e35735c2e8866a3a3efbf8704fdcbaefe030ece4d6147da25612ac72", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jre-19-eabeta.36_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.36_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jre-19-ea.36_macos-aarch64_bin.dmg", + "checksum": "46ccf70a19c586146341d43e4762d6c6e43b2cd2df7ee2fc80d6beb1ca0b36f0" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.36_macos-aarch64_bin.tar.gz", + "checksum": "ab3a55f122701d7d8316867cd327f0bac63af5098c0c20385776ff8f7fe151de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jre-19-ea.36_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.36_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jre-19-ea.36_macos-x64_bin.dmg", + "checksum": "4693205110d7d5bc4bbb0e62a5e4e6fc0fdd9278bda079ea18631c79e1b949a0" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.36_macos-x64_bin.tar.gz", + "checksum": "9e937a49e8e97f3d73b5645d5bd4daeed44e7488f9d1b51cca93487f3c40f0cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jre-19-ea.36_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.36_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jre-19-ea.36_windows-x64_bin.msi", + "checksum": "3941e2d0989ad8d85e30277d9d4b247753a10de916a2f93a3521a9b0908713e3" + }, + "zip": { + "name": "sapmachine-jre-19-ea.36_windows-x64_bin.zip", + "checksum": "b4504a21c0ec8e232b55bfa2e8be57ce7ab138b7d3f5df9dbb4cef14fe459174", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B36/sapmachine-jre-19-ea.36_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+35": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B35", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.35_linux-aarch64_bin.tar.gz", + "checksum": "777c27829051779c3fb17dc5b4099319636cfbcc5f72be67038dc10bf6171ee7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jdk-19-ea.35_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "12c0e342e1bd4c45d87e5c30ed22e88b8625b9496498938a9652ecfd12768f96", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jdk-19-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.35_linux-x64_bin.tar.gz", + "checksum": "6c7194f0069d237260eaaa5cbf74ecdf1750d24676575a34124b0e2953ada6e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jdk-19-ea.35_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.35_linux-x64-musl_bin.tar.gz", + "checksum": "acbe66fa53f682f1725511041b4be466a5a9d39d90beb9487e94d37760c8fc5a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jdk-19-eabeta.35_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.35_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jdk-19-ea.35_macos-aarch64_bin.dmg", + "checksum": "348546ac7748dfc36a0ea058dedf7ce053269f0299304d24c425ed62ce131266" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.35_macos-aarch64_bin.tar.gz", + "checksum": "b5802c18f63fa738f20e6da204a23ea95135097a06c170ba8bf190c1cfcb7475", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jdk-19-ea.35_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.35_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jdk-19-ea.35_macos-x64_bin.dmg", + "checksum": "75eda0e9d6f366765b8afc34a776d61d8094410c99416dcd9bb0f09514490543" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.35_macos-x64_bin.tar.gz", + "checksum": "5e801312e29351b1d53c5b29796552e11f89ef677cd42b2b92a6ff8a2f8ca756", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jdk-19-ea.35_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.35_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jdk-19-ea.35_windows-x64_bin.msi", + "checksum": "46de87ad2e63f9482ff6610b694f30471fd9836f30dc98b67ace947b8a67e70f" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.35_windows-x64_bin.zip", + "checksum": "44470a36287f86646906e8ebbb4228c3a0abbeafbab4c7a5da950c39fa62efba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jdk-19-ea.35_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.35_linux-aarch64_bin.tar.gz", + "checksum": "67e5e2f18ecdf9b2c5cfcd748686e925309ca7c7861a7ae1c26281fe02aad821", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jre-19-ea.35_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "791ec2a112faca13a69702e95347bbeb0c3f4d4343f65c9bb7a644bcef09f4ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jre-19-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.35_linux-x64_bin.tar.gz", + "checksum": "fa1ecbf65afd5cbd6eb9f8f9f003aed67a3bcf8b09c5f2a4d90a8b8f07419e09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jre-19-ea.35_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.35_linux-x64-musl_bin.tar.gz", + "checksum": "8eb580046cfb491e31ff16f6cb8ed8ee5210ef422b3f33f1de260dc01b2d6838", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jre-19-eabeta.35_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.35_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jre-19-ea.35_macos-aarch64_bin.dmg", + "checksum": "844da6159c5555e02a295aaf4a0303e707981cad1016a1b127e3532f0584435c" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.35_macos-aarch64_bin.tar.gz", + "checksum": "646d0d1592ea9928a2779da1c1d4b7665055892740920a9a90dddbd35cc53e73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jre-19-ea.35_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.35_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jre-19-ea.35_macos-x64_bin.dmg", + "checksum": "d344e067b8bb122cbf4c7acc915cfea91f3cc1c1d11874f866890f7a161ff6dd" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.35_macos-x64_bin.tar.gz", + "checksum": "ead0f195e50055f04e785de089fe286422360c3a5deec256bce4b23f7d1784f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jre-19-ea.35_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.35_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jre-19-ea.35_windows-x64_bin.msi", + "checksum": "1b729da4284a27edae7a7fe7f7c417b45053b923e1b4aa876e553e060a43fa8c" + }, + "zip": { + "name": "sapmachine-jre-19-ea.35_windows-x64_bin.zip", + "checksum": "a293d2faa972db3fc3d663f3989d9e0aa50aaedc7704f5d4873b24d569f1fd1e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B35/sapmachine-jre-19-ea.35_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+34": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B34", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.34_linux-aarch64_bin.tar.gz", + "checksum": "d487cb414b48f8906cf92220d8425cbf54676259d0f03d8f2d3dcde366177c10", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jdk-19-ea.34_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "223ea3a504e0101950b323f659c119b403e99e665a51bcc5813f669ca9bfda99", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jdk-19-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.34_linux-x64_bin.tar.gz", + "checksum": "c42259fbf51f9a66f6ba286a89a0dc1fd6562bfb03b4396583a64d45005ae258", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jdk-19-ea.34_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.34_linux-x64-musl_bin.tar.gz", + "checksum": "16c330e12a756a709f8472da5e28c7c6daecd9fc1b639aab861ca487d022b982", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jdk-19-eabeta.34_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.34_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jdk-19-ea.34_macos-aarch64_bin.dmg", + "checksum": "4e1d6a17bba52fffcf9eff152db5c511732a300e87c95a2d5a72ad07ea5d2a48" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.34_macos-aarch64_bin.tar.gz", + "checksum": "a864999ddb9cadab3a52d4d6c2ce83298f871b3d01c60db10c53ae4552c61c1c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jdk-19-ea.34_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.34_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jdk-19-ea.34_macos-x64_bin.dmg", + "checksum": "6f795dbcdbcc7b0a4d1e25899eb9fd142bcffac4d491950cb0275b7568114924" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.34_macos-x64_bin.tar.gz", + "checksum": "593dfde08f7e5d2ec13e2e1459f72a78b0ee1b8581702c8a6891b8e0613291b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jdk-19-ea.34_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.34_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jdk-19-ea.34_windows-x64_bin.msi", + "checksum": "39ba5ccdae213a92f4d81d80f3e65ade7a959e0d5a15d5e31cf324475e063205" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.34_windows-x64_bin.zip", + "checksum": "026a35d54ee1d9a6d2f51d7a61d5b181129c5d06484491a43fede60d5a2c5e82", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jdk-19-ea.34_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.34_linux-aarch64_bin.tar.gz", + "checksum": "cd4a37e0df1a845ce5b96570bb20fa2706200b738cfd1fa053435d95eb1618f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jre-19-ea.34_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "8a6bd5913cdcf3241990c2eb5fc1a78e998abe0626716faa4d5475090c54e022", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jre-19-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.34_linux-x64_bin.tar.gz", + "checksum": "991815a8250361e394f5caa9550b9d3b1cb6b37306e02d1ad6f62a8f836a3466", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jre-19-ea.34_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.34_linux-x64-musl_bin.tar.gz", + "checksum": "b23ee48a17bc43fac88daf7cebe4c2bda6f04a2668f611ebb7dfc41d0f2195fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jre-19-eabeta.34_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.34_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jre-19-ea.34_macos-aarch64_bin.dmg", + "checksum": "d18202bbb6540f732218ef31bc5094560e85fcd0154e0e68a438958993dd3ef7" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.34_macos-aarch64_bin.tar.gz", + "checksum": "a5e49a2ff08ea4de2ed9ae09c36ecbf69a7973188f3c475a75b6ff7cb57d8500", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jre-19-ea.34_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.34_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jre-19-ea.34_macos-x64_bin.dmg", + "checksum": "12e329ae074b65ae891bf721f36a933603e500d81dd6f8c7900503ef178cbbf0" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.34_macos-x64_bin.tar.gz", + "checksum": "4626564a03ff76e7f059852a4ca5c41168f5f61d8b8dca8df98a9fe13d61063a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jre-19-ea.34_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.34_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jre-19-ea.34_windows-x64_bin.msi", + "checksum": "72cb9f6a6cda592047e90741ed7260019aca4f86d5fdfdd71abedbe8fa708e15" + }, + "zip": { + "name": "sapmachine-jre-19-ea.34_windows-x64_bin.zip", + "checksum": "4584e1aa000c367e06a996e25a4acf7cd13e700e7e3ff88cb057bfa362ed5f9b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B34/sapmachine-jre-19-ea.34_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+33": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B33", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.33_linux-aarch64_bin.tar.gz", + "checksum": "bfb3d09a8b377d297ad6f11afde2d1689241da6ef6b6e0c261cb857cd1f83c53", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jdk-19-ea.33_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "64022418842629958ce8246d1e53fc689e172fd946a12962c71b32f94648b631", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jdk-19-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.33_linux-x64_bin.tar.gz", + "checksum": "cfd0b6be4e660c5cf137d6a013803d95b32f1edbd060fb2ecc2f3cd64e37a13a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jdk-19-ea.33_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.33_linux-x64-musl_bin.tar.gz", + "checksum": "89486e43ff1d23a67a95804d51ab142631b350d71312ed05ab863dd27d06fabb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jdk-19-eabeta.33_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.33_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jdk-19-ea.33_macos-aarch64_bin.dmg", + "checksum": "cead2f0234852a6a2958561f7e6a402731074385fe32d7bfce64d7e6f980551a" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.33_macos-aarch64_bin.tar.gz", + "checksum": "fae2ba4afdcbdffae8dd7072ea1eee7d204c6b257d5fee5e57ad01605b1bd9f0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jdk-19-ea.33_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.33_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jdk-19-ea.33_macos-x64_bin.dmg", + "checksum": "e54bf5a2d1ea48a81b24e2e40e1cac52a0de87a4ea362c4f508ac85645066603" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.33_macos-x64_bin.tar.gz", + "checksum": "e47c4ec57a6488fdf53fac009de5f230a56eaa764183446f7f103f1074dbc067", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jdk-19-ea.33_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.33_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jdk-19-ea.33_windows-x64_bin.msi", + "checksum": "c337e7a3664e7df566a38d49a3eebbf595583088b63878162e2de0a46a40449b" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.33_windows-x64_bin.zip", + "checksum": "fdad5200fe8e557bb734738d5890d443e573fb9a2e831ec1b8b064fa62844ad7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jdk-19-ea.33_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.33_linux-aarch64_bin.tar.gz", + "checksum": "f0d2b766a663b8691210aee220499775f239120a67d0a0f24ca7c1acda2bc2f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jre-19-ea.33_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "da039e9240c61abc97e788b5d6a878c60d3c6e8b88be34e34355c2c7b4e917d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jre-19-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.33_linux-x64_bin.tar.gz", + "checksum": "c05a9e99e2abbc1d178c1d03f9c8920dfdcb5eab6eaabb35764521b5e875b26f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jre-19-ea.33_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.33_linux-x64-musl_bin.tar.gz", + "checksum": "aa5c81e3b4c8c755f8c7a5fc3bd1b447a8172e22b26ad888b990c16c61f6690a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jre-19-eabeta.33_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.33_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jre-19-ea.33_macos-aarch64_bin.dmg", + "checksum": "103bc3933dbbb9a86b24a622b4aeeb721d8bc803c5ea73823fbcca2259812f78" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.33_macos-aarch64_bin.tar.gz", + "checksum": "274691fa4859aa0d02fef4e4b1060d9b7d12ee8e425b62b6a14c8cd0c6fa85ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jre-19-ea.33_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.33_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jre-19-ea.33_macos-x64_bin.dmg", + "checksum": "f226cb8d1f577698dc635c2c86241cc938f440aab8c35052544f7f0eea0a0879" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.33_macos-x64_bin.tar.gz", + "checksum": "060330ae97081ab562531f993f12fe35e1238c6fc0ac4a9fcf87057c5511799d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jre-19-ea.33_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.33_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jre-19-ea.33_windows-x64_bin.msi", + "checksum": "8c20739329fb602348c3ac69bbf169c050913596a86a17a0caa2a9fd56123813" + }, + "zip": { + "name": "sapmachine-jre-19-ea.33_windows-x64_bin.zip", + "checksum": "580fbb773242f6339c43c84213f2d48cb8478ac20fbca5255de49e1e22a4396c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B33/sapmachine-jre-19-ea.33_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+32": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B32", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.32_linux-aarch64_bin.tar.gz", + "checksum": "3d402cb61d03ed830d9f4e28bdca6b268e842032f19ce3a48485d2b4eda83d0d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jdk-19-ea.32_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "34c9998327f97c818c44b8808e414bd38ae16c3a4a7cd62a8a32b152172f9b22", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jdk-19-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.32_linux-x64_bin.tar.gz", + "checksum": "47f97681345e9ad7778f20a7274e9f290ea7df9eaf10bfc43e66cb14ca85186c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jdk-19-ea.32_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.32_linux-x64-musl_bin.tar.gz", + "checksum": "6873a9a0ea9f9c1fe80288206f8447cb117099be8cd21b91545257e14ef881c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jdk-19-eabeta.32_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.32_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jdk-19-ea.32_macos-aarch64_bin.dmg", + "checksum": "7e284cbbb0272025a7d7a5583c21178269453d994847dcf7bdd2813fcf156504" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.32_macos-aarch64_bin.tar.gz", + "checksum": "accf9f61b8ca13478b812bdfbfbc97c7d4180dc2feedc62accf8ae0ed424b247", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jdk-19-ea.32_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.32_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jdk-19-ea.32_macos-x64_bin.dmg", + "checksum": "1740883ffdce5c4f64ce91079f99c973d1e0d2277a920eedefe18dd88041a185" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.32_macos-x64_bin.tar.gz", + "checksum": "90c6521b550a05396caf66ca7a059d49294277003d231304db9dda73f8851016", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jdk-19-ea.32_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.32_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jdk-19-ea.32_windows-x64_bin.msi", + "checksum": "263b72b6164340fca2b291d485bfd045baa6029059f3cdb4816458cf311c0d19" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.32_windows-x64_bin.zip", + "checksum": "c8ae536198c3c121bef42e7ba88043233b8db83120927526bcb55a7c03d0a8ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jdk-19-ea.32_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.32_linux-aarch64_bin.tar.gz", + "checksum": "840472dc7c41eb65b2b13ab40686953da6fd73439a8dbc6ee2a20b40a6840d78", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jre-19-ea.32_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "ead3d8e5433ca702e0951d18816b7c0c1da01603202fbb384406c3e583db00df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jre-19-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.32_linux-x64_bin.tar.gz", + "checksum": "f6c514278bec40b940f4bfcc47d6a0ac9ebe7580d26be3ad0014b334659615e6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jre-19-ea.32_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.32_linux-x64-musl_bin.tar.gz", + "checksum": "719bee4f99256e7a75ec37c55de890725817893983d4ceabc7c720ad6fb068b2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jre-19-eabeta.32_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.32_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jre-19-ea.32_macos-aarch64_bin.dmg", + "checksum": "be7d72bd8f1e432c7034249f0db0701b780cfd96e440e877ae47dda948627f3c" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.32_macos-aarch64_bin.tar.gz", + "checksum": "7dbdfb94c00ee658842fb34a65b90e5aea00f77993f4901ec59b14ab6bb999bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jre-19-ea.32_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.32_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jre-19-ea.32_macos-x64_bin.dmg", + "checksum": "e4088e2849e2e6502826a8d452b9113b5db6bc78288d1470b767129162b023cc" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.32_macos-x64_bin.tar.gz", + "checksum": "809d86ceeb8d8e23704ded9d92ed8dbd2b467f0f75505b3e352ad76fee08a490", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jre-19-ea.32_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.32_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jre-19-ea.32_windows-x64_bin.msi", + "checksum": "94a0f524b67919ed3010a7bd08b7efe48f3d89217d16d0c5e2d9053265996058" + }, + "zip": { + "name": "sapmachine-jre-19-ea.32_windows-x64_bin.zip", + "checksum": "833bcb7d789a0641247c4bc0de5318e6510654aac912c27d2b261101e205679f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B32/sapmachine-jre-19-ea.32_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+31": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B31", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.31_linux-aarch64_bin.tar.gz", + "checksum": "b91147d79df6b59dcc1632182d605dc378bd51072e716d02b516fc21f9b159de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jdk-19-ea.31_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "9734ec21c96e5d5a307ba7ff12e571ceab00d8b02bdd8182f5448b3c5e427f71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jdk-19-ea.31_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.31_linux-x64_bin.tar.gz", + "checksum": "57f24a0186c288fb849ca2ff5017b7109fe78798307e5700ea05942ed4376cd5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jdk-19-ea.31_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.31_linux-x64-musl_bin.tar.gz", + "checksum": "10a5284c7fa9095ac62f029b86ecee8f0004d37a4cd41a0213e4dbf9d3e4fc30", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jdk-19-eabeta.31_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.31_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jdk-19-ea.31_macos-aarch64_bin.dmg", + "checksum": "553d7178bee3656dbe7946691ef64b88878b91e03fc95a9a30c4728f12be02f6" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.31_macos-aarch64_bin.tar.gz", + "checksum": "bc568a0b6ae65e4bc5b3a93d3d4fb710b9ff1c832026dec1fe07601fb7757e10", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jdk-19-ea.31_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.31_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jdk-19-ea.31_macos-x64_bin.dmg", + "checksum": "8e8a94a9386990d85144817ce948bef4f667d1504e2cf3b4ef111adb967823a9" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.31_macos-x64_bin.tar.gz", + "checksum": "26a8516e83d6d292abdfa289c344e1a4bd2e131770f04069e187ef5a910d1652", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jdk-19-ea.31_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.31_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jdk-19-ea.31_windows-x64_bin.msi", + "checksum": "b30c118faaaa9b2825ef1e46fd69af0794f091852ecf70971f77bb065f22b505" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.31_windows-x64_bin.zip", + "checksum": "b5b79ab95954a75402959797e9cbe65931d72398d39dfbedcd471fb8259574ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jdk-19-ea.31_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.31_linux-aarch64_bin.tar.gz", + "checksum": "9d00c7c9602221303f69970d5f2cee13389702e6798be7c1a8b420e448c23e86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jre-19-ea.31_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "957636f727c3749bceac1ee95e00eae1e22b106a32260a1b5097bf529f759326", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jre-19-ea.31_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.31_linux-x64_bin.tar.gz", + "checksum": "0f47f6b6e5167890f4e67df93d06f04de9360b6519ecfbeda0783add04064597", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jre-19-ea.31_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.31_linux-x64-musl_bin.tar.gz", + "checksum": "3aaa604614760f14871d0c3491313b180143ca62fcbe503ba551a6f1e8aca2d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jre-19-eabeta.31_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.31_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jre-19-ea.31_macos-aarch64_bin.dmg", + "checksum": "70c296b75da9d368599eb9fbbccb767375853f245a7a856a6112f9213fb0ceec" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.31_macos-aarch64_bin.tar.gz", + "checksum": "1c0861618d736e38b3344d366ea03a50b4da28e0af8a31915787600ef0a18a1e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jre-19-ea.31_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.31_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jre-19-ea.31_macos-x64_bin.dmg", + "checksum": "1c668edec0c4e81691c195ef21f67848b6436d5ce21f15e07062e10ccacfff9c" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.31_macos-x64_bin.tar.gz", + "checksum": "b142334e6a27af1c69e4ff8cb1999fd4a2e9e1283e492422592bd7b24ef4defa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jre-19-ea.31_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.31_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jre-19-ea.31_windows-x64_bin.msi", + "checksum": "28c4c6697891226449cf7ae799fbfbc69821e7e259e3336f1e795d5b77353aef" + }, + "zip": { + "name": "sapmachine-jre-19-ea.31_windows-x64_bin.zip", + "checksum": "33041d93d5f6f1c6b4d0c2adedc0beba28ca2423af6976973fdf2f2b02efd8de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B31/sapmachine-jre-19-ea.31_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+30": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B30", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.30_linux-aarch64_bin.tar.gz", + "checksum": "768e4cfa000dcfb515b337e6b5f3612a5c1003f6e8917893785d6a8cbebe6c5e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jdk-19-ea.30_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "bd208296f8603ef31c8f17869d43c81b1472698da7dc0e26912a08e5b675c764", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jdk-19-ea.30_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.30_linux-x64_bin.tar.gz", + "checksum": "4b793a71d8c8e0adcfe9b891a7539ae1e927b8854af05f897a0ba2dc85851845", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jdk-19-ea.30_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.30_linux-x64-musl_bin.tar.gz", + "checksum": "19b69b1458735c1a99b2b59c3b7262c6ecbc9dd3f25e1a74be6b88bac68b1d94", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jdk-19-eabeta.30_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.30_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jdk-19-ea.30_macos-aarch64_bin.dmg", + "checksum": "7cb0a138cef9c792b88730c45adaeaee71e880b31d35f6f97ca157259ef3b828" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.30_macos-aarch64_bin.tar.gz", + "checksum": "e12d8a6a447ac9101e917466d42e1f4e42b443e43c11685cf02a2f0b7fe3a3dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jdk-19-ea.30_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.30_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jdk-19-ea.30_macos-x64_bin.dmg", + "checksum": "d4a30224184043b23d127f199684a4cab534451d44c3041aae61230ca674b8c3" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.30_macos-x64_bin.tar.gz", + "checksum": "60595872764e3e4585d1a26a39e5c45abdf706bbc9c21ebd27fad994313137a5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jdk-19-ea.30_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.30_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jdk-19-ea.30_windows-x64_bin.msi", + "checksum": "abb9c619adff9ce25d845653fe46a67abe5265d76811ce3f30efebc85d96075c" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.30_windows-x64_bin.zip", + "checksum": "cc2f27afb653724c67bbaac747670db6f1202eac8de6ecac63c121cb85a8dc6a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jdk-19-ea.30_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.30_linux-aarch64_bin.tar.gz", + "checksum": "eb2e3bd39576eb90d4ec6b0e1a33181fba198475374e3076b681b3b3ecb4af32", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jre-19-ea.30_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "bb1d297e48fbec817b71ffd957adae61d6bc40037ff1b2245b6d8760e19d1e36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jre-19-ea.30_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.30_linux-x64_bin.tar.gz", + "checksum": "10e43fd3044cc19c10525c4e5f0208be867f17b9dc2de17fc08fef6bd910ed69", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jre-19-ea.30_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.30_linux-x64-musl_bin.tar.gz", + "checksum": "6be37ddef6c5f2bf61f7a9d0b82c8d5c8b314cb1d73121d2c84a9bb5481f7201", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jre-19-eabeta.30_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.30_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jre-19-ea.30_macos-aarch64_bin.dmg", + "checksum": "5cd6cca1bc2e395bfec352fb3fe133d11d91a62b2833fefbb90112de3dee8bef" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.30_macos-aarch64_bin.tar.gz", + "checksum": "aee7e92f843300ad81125c1c897fd7bd323ce8c70fc64bac595147403553af93", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jre-19-ea.30_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.30_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jre-19-ea.30_macos-x64_bin.dmg", + "checksum": "bb67825bee8deed4845e6945145d68d17dc00de61d5e4ea82f4bc583b4e4bbf0" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.30_macos-x64_bin.tar.gz", + "checksum": "b49e1567d186cde9e9b5eb0b04453af86e069f9ca15a4ca7918e66f39d13106b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jre-19-ea.30_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.30_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jre-19-ea.30_windows-x64_bin.msi", + "checksum": "3bf3eba7797d16f04aedb1c397e88a39164b55bd2c909ae8d84685a8399de7cd" + }, + "zip": { + "name": "sapmachine-jre-19-ea.30_windows-x64_bin.zip", + "checksum": "b82d3b6c00dfa1dd61c5587c554fed33c0f5549a2598c4fd462fc55fb7293cd3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B30/sapmachine-jre-19-ea.30_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+29": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B29", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.29_linux-aarch64_bin.tar.gz", + "checksum": "106b9748a18e26cbac2ba979e2c2336150b83a643d8e7b4e05fea4530f0197e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jdk-19-ea.29_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "b0d06890ae38fba4a95f2345c393ab1e3ae7e9543ffcc8001b8a548855a2730e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jdk-19-ea.29_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.29_linux-x64_bin.tar.gz", + "checksum": "06b1993437227ca8193e25147e1070f3d0bd4f7ef1272025b6b8445a38bb01ab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jdk-19-ea.29_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.29_linux-x64-musl_bin.tar.gz", + "checksum": "c3c7aab83e7a0c759a467cc764aacd5a0bd1a3e1e94a5a4013cdfb09df48f4bb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jdk-19-eabeta.29_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.29_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jdk-19-ea.29_macos-aarch64_bin.dmg", + "checksum": "6b13d753937ff9574907fd1d1527126f22a335df5bb0ed94484e906f40d857d5" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.29_macos-aarch64_bin.tar.gz", + "checksum": "88770c7d69322776ec1f47fb12fcdf6cb0d852077d2fd3dbdd2da95e8b97bd68", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jdk-19-ea.29_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.29_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jdk-19-ea.29_macos-x64_bin.dmg", + "checksum": "f0aeacf50b6ddde9e14f3941625666817cc506480c5b5ddd55ebda92592d71e5" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.29_macos-x64_bin.tar.gz", + "checksum": "87f9c667183d487f9ff6a789b77fcea2e836df1333fdd168b0c0fe854b337c8e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jdk-19-ea.29_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.29_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jdk-19-ea.29_windows-x64_bin.msi", + "checksum": "bd7d8f90b12150283dccac8135de1d979d9bd28585dacd7bff7fd50c4f80a519" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.29_windows-x64_bin.zip", + "checksum": "9695948e4ff7924bbec0fe396f0b1c86523d57758525585c448f7aaecee0c3f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jdk-19-ea.29_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.29_linux-aarch64_bin.tar.gz", + "checksum": "a3473a59a4e21eb80063daf45c4aae6e88db9dcaff233f4ad993c765c0964d73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jre-19-ea.29_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "0b7578b87f96138a20c3a90a9add25e2edbbd41bdcd70479f3f32859445bc0ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jre-19-ea.29_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.29_linux-x64_bin.tar.gz", + "checksum": "ce7a4008894261a3bd218ef7c9c8d737a47432ddece4df4c5d78f1571dc81e52", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jre-19-ea.29_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.29_linux-x64-musl_bin.tar.gz", + "checksum": "5f0827ed6c7f9cdb3da76f8e086ea935044f3906ab678169a801e4eb0b7d92fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jre-19-eabeta.29_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.29_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jre-19-ea.29_macos-aarch64_bin.dmg", + "checksum": "9eefa71a949e056bd763157015a4f2ee4e7eb7b70483975dfa0a41086a68cf08" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.29_macos-aarch64_bin.tar.gz", + "checksum": "27d173acac8460cbceb2b1f12d2ab58d8e4a3d6a2b994b5c1aaedaafd04f87ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jre-19-ea.29_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.29_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jre-19-ea.29_macos-x64_bin.dmg", + "checksum": "90018a89bd40e1ba103b5acd8770d7357d933504544810c7a9daec04f461d316" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.29_macos-x64_bin.tar.gz", + "checksum": "e4430044914878fec17db104fa4d449e29c3d522a24ab73b5c37875497d7eca7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jre-19-ea.29_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.29_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jre-19-ea.29_windows-x64_bin.msi", + "checksum": "22c5340ee4a6288144d88d51b817e1bea730af5cf0c2ffe90629c080a5492276" + }, + "zip": { + "name": "sapmachine-jre-19-ea.29_windows-x64_bin.zip", + "checksum": "d7ec90602eb6df47e3fe499300a349ccb8c6a574e2076d643d115086099ca91b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B29/sapmachine-jre-19-ea.29_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+28": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B28", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.28_linux-aarch64_bin.tar.gz", + "checksum": "c678d8014838328f6713470551bc946f780d60ad1b290d1ce6c68ca9bcaf07ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jdk-19-ea.28_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "6e5727e7d1616b2d96fd25d203af06b65206a291e8e54f8c58391a5311891f40", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jdk-19-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.28_linux-x64_bin.tar.gz", + "checksum": "3b6e99b1e255f2979dabe38d972c4a7ad47d9dcb05eeb4843b4095537a3c8cfa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jdk-19-ea.28_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.28_linux-x64-musl_bin.tar.gz", + "checksum": "5742aa10cc6da8571b284fe05d4009a6d95d683b5a7d05d9bdbab55d8c5f0507", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jdk-19-eabeta.28_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.28_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jdk-19-ea.28_macos-aarch64_bin.dmg", + "checksum": "56f1ba5f12744eebe4ca6d6fae5c4d9cefb2bc96d7f08967a1c7195d081ddb72" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.28_macos-aarch64_bin.tar.gz", + "checksum": "145bb4893864b2cda42779cbadefa2cc860e8dfe9cf02b39373bf2401312c931", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jdk-19-ea.28_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.28_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jdk-19-ea.28_macos-x64_bin.dmg", + "checksum": "35435751f5ec8cf54db092811af25fb25354e6e7804ae739d105553203307221" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.28_macos-x64_bin.tar.gz", + "checksum": "c4bbf5b6551bf355019f8d9367609df20e0b7b5b01b0c01a9d80b3d5c5063f1a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jdk-19-ea.28_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.28_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jdk-19-ea.28_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.28_windows-x64_bin.zip", + "checksum": "ba9941e114354e1916662cb0394b63ab553166cda075be55581e93c2ac979882", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jdk-19-ea.28_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.28_linux-aarch64_bin.tar.gz", + "checksum": "6ab2688abb092b025e3e00a9dc12d5e788af93f7b9b1fb54b1f4bbe710d1f4e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jre-19-ea.28_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "94ea55604b02e0ba0938de0eac00a69ac2463b63ebe0250233f9d442cbcd97a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jre-19-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.28_linux-x64_bin.tar.gz", + "checksum": "569fd470ebb7749070c86afd817d5611230b349b3b68a637c15ee05df25d6b05", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jre-19-ea.28_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.28_linux-x64-musl_bin.tar.gz", + "checksum": "94a3a6fbe99c35a2bde2c1941a50b11d1646aff5b4c2baad12bbc79dc97bf143", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jre-19-eabeta.28_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.28_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jre-19-ea.28_macos-aarch64_bin.dmg", + "checksum": "dbb372a8a45daee45867a4c6e8bec2bbf93614306f4b596920a187f9c925d305" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.28_macos-aarch64_bin.tar.gz", + "checksum": "39f4c5a2aeddd11e045e0aafab78569037a7298ca346316bc0d11cf6f180415e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jre-19-ea.28_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.28_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jre-19-ea.28_macos-x64_bin.dmg", + "checksum": "0ec4048deb3bc72d8bb3a5c47a80127c3b97834b59d2ed50b694e850f6b75141" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.28_macos-x64_bin.tar.gz", + "checksum": "1b86962d41fb45fbc8ab5f140249cc1cd400c9c2600da7b85f325d4c93bde570", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jre-19-ea.28_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.28_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jre-19-ea.28_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.28_windows-x64_bin.zip", + "checksum": "cf02931afc322bea9b0abd79d9714c3737fa6a2582ed253f5df2ac5e43da3e44", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B28/sapmachine-jre-19-ea.28_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+27": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B27", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.27_linux-aarch64_bin.tar.gz", + "checksum": "185b0bf4295528a1d40210c1ca106a4d262cfe31297c0e6dde36244c00567e86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jdk-19-ea.27_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "f65293ed0fd1be9496c861bbf52d9fe5ceed83a59516c26d1d35d07ddb35e3c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jdk-19-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.27_linux-x64_bin.tar.gz", + "checksum": "29c9c21acc2c0bdd3095f94b92ef98839e2dcbd9d54c4a7f7f84b06bc4ca0a3d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jdk-19-ea.27_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.27_linux-x64-musl_bin.tar.gz", + "checksum": "60d79538fa472bee894f05173c7340db6addad6b854877411e15ccf388227f98", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jdk-19-eabeta.27_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.27_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jdk-19-ea.27_macos-aarch64_bin.dmg", + "checksum": "7e5f845e34a5b0f53cd66631af8d8a6ebc7657b61a4946fba4283765df93e89f" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.27_macos-aarch64_bin.tar.gz", + "checksum": "940666fa855877cb29c636f6b84ae326574fb7430b8f8b904fa42690504e634e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jdk-19-ea.27_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.27_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jdk-19-ea.27_macos-x64_bin.dmg", + "checksum": "efc01c5743575ebd5266b6617093a369ac77b97438a1fa79707d3b2ae9a93461" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.27_macos-x64_bin.tar.gz", + "checksum": "d9cced9ac30cd746da4a6db5afcdb0fe39b9d98e6ce934ee8f2994e7ad72f25b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jdk-19-ea.27_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.27_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jdk-19-ea.27_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.27_windows-x64_bin.zip", + "checksum": "65842dc1097e5dde649b98f6b21379771cd12cb3724f73e32d8ecda86bd650fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jdk-19-ea.27_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.27_linux-aarch64_bin.tar.gz", + "checksum": "cd87858565a4cfe3c4e9496f0a8f58bb6349e3ad3c9c9947c4d642ebfc8580ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jre-19-ea.27_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "04af3b0f1959bf9a16c9dbd8d8b85b66b47e97e0483061a57563d90856cc264c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jre-19-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.27_linux-x64_bin.tar.gz", + "checksum": "3eb95cfb3c78c0239d8954827054627d7360d6efc78f34c1e9e1c10ccc350537", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jre-19-ea.27_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.27_linux-x64-musl_bin.tar.gz", + "checksum": "5cc713087ac0a33dc0a61931f52d019bd001b9a9122ed85b243f479fd3e0a3f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jre-19-eabeta.27_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.27_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jre-19-ea.27_macos-aarch64_bin.dmg", + "checksum": "d24a2de90642c551178ec76064c97f865e611c18f08fcf451817163ee7cec0e9" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.27_macos-aarch64_bin.tar.gz", + "checksum": "c134fc6010152499f65de9d855cea5a36ceca2c393807899775c9352194db2db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jre-19-ea.27_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.27_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jre-19-ea.27_macos-x64_bin.dmg", + "checksum": "0434be38722c20aabe4c430cac16ba8f7f239cc1b72966acf9f00800a448b5ec" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.27_macos-x64_bin.tar.gz", + "checksum": "eb34fd72838381763127c60046ece77c9936002bf4fb3dc398a425f855b1e64b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jre-19-ea.27_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.27_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jre-19-ea.27_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.27_windows-x64_bin.zip", + "checksum": "7ed3564ba811ea7470b6b01674771d56a8bbe369c9b6b5ce9ae4b0d9952843b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B27/sapmachine-jre-19-ea.27_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+26": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B26", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.26_linux-aarch64_bin.tar.gz", + "checksum": "45a319a8efaac907fa7d2da7529589554e8c2d0e9bb3f436aaad39a3305aabf5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jdk-19-ea.26_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "01813aba4950d372d33894221ca223242c1fb485fe9d767bca6147142caf43c9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jdk-19-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.26_linux-x64_bin.tar.gz", + "checksum": "3f10198ecf5d4d5da2ad3c20ae848f3a2ed90d07069dd9acef6f1fc28073583e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jdk-19-ea.26_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.26_linux-x64-musl_bin.tar.gz", + "checksum": "60d79d7070a2164f94fe38df32bdc0c7e20c1cbb1df423e1737158f6243aaa6b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jdk-19-eabeta.26_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.26_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jdk-19-ea.26_macos-aarch64_bin.dmg", + "checksum": "c1d5e0f90f66e3ef7581c377477a51c126062ba7e66c8fcce4d1a0a95f4edf3f" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.26_macos-aarch64_bin.tar.gz", + "checksum": "3cd8e1eb6689e962a33634264857cfc0041cfda45724aa9247cc771ad4f3cd4c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jdk-19-ea.26_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.26_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jdk-19-ea.26_macos-x64_bin.dmg", + "checksum": "a20050d1e52fa226ca9b2db88cb5624123e49a9e0b35add8a6aa1eaffcfaa220" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.26_macos-x64_bin.tar.gz", + "checksum": "b4e0e154840f8636ff24ffa113e13cf198f76436dafd296a27811ba0469b5ef3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jdk-19-ea.26_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.26_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jdk-19-ea.26_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.26_windows-x64_bin.zip", + "checksum": "12031d8dd8e5acda111ca38b5106455d7c0abf0e78016be73e270caff0c098c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jdk-19-ea.26_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.26_linux-aarch64_bin.tar.gz", + "checksum": "b552ad97954d8f22caf4f3825b2ef82b165739f0d762017b8c827e9e5bee019e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jre-19-ea.26_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "606d1f40a77316f9cea4a9bd37b1913bc1239fc31509c3c72c5eaf9945982e7a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jre-19-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.26_linux-x64_bin.tar.gz", + "checksum": "7edad171dcdb0b18c4dc291b9f9f0175bffdab5ea98ed53a9b7cf81928ff27ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jre-19-ea.26_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.26_linux-x64-musl_bin.tar.gz", + "checksum": "81252463a64bb95174e1f50fc399ae9d14600d36982ae2b20a3c50691c5cede5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jre-19-eabeta.26_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.26_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jre-19-ea.26_macos-aarch64_bin.dmg", + "checksum": "5c9205b9baf4e9d8d9c98b47b6532127e498d228f0ac5cfa6a886059b7fd2d16" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.26_macos-aarch64_bin.tar.gz", + "checksum": "6afb039c4e2db9224ff2cefb2e331b95f6f778b15b72316d48d2c05d3942b0a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jre-19-ea.26_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.26_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jre-19-ea.26_macos-x64_bin.dmg", + "checksum": "5ac2a89e2fc88007c216afbdc710e73e06dffe0bbab1f4a0752734b890b7b9d3" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.26_macos-x64_bin.tar.gz", + "checksum": "b9171b5b6406c3b9e9c5685267bcb6c0f4fbf309425a05310397a20ae03fc9d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jre-19-ea.26_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.26_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jre-19-ea.26_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.26_windows-x64_bin.zip", + "checksum": "7ccba189ae85d8626c9b05bc803b51bb4afe390e01a15a06921e4f6820027266", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B26/sapmachine-jre-19-ea.26_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+25": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B25", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.25_linux-aarch64_bin.tar.gz", + "checksum": "1291e9ea42c3ba3e9b91217706d3227b0d4bdb5cdbfdcd198d5ac06542a7808c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jdk-19-ea.25_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "bdfa51de4aee791292fa7b7111ed352ce485c59a1e3da5726fc3279b7b6adf60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jdk-19-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.25_linux-x64_bin.tar.gz", + "checksum": "3b5809f6182d8299f123d534eb0d6af048c06a4b46d5a957b773cfe92a8bf49e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jdk-19-ea.25_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.25_linux-x64-musl_bin.tar.gz", + "checksum": "c2928cfaa8784dbf54aaca073efd65a7af33d8d3c770cf6740ad12def8a401d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jdk-19-eabeta.25_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.25_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jdk-19-ea.25_macos-aarch64_bin.dmg", + "checksum": "57ca8a08325f64a1d4164b4f408b89ca4fe4c52bebe66141e65db2552be128cd" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.25_macos-aarch64_bin.tar.gz", + "checksum": "653d9dab68db1b42a634e5d5264f034f0f76b989eb254d664b3987d14cf03fa8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jdk-19-ea.25_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.25_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jdk-19-ea.25_macos-x64_bin.dmg", + "checksum": "8d144cbb64870dc96d746ffb6a684f6657f762f73bb34dc63d4be378995f9f0d" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.25_macos-x64_bin.tar.gz", + "checksum": "d3f2999e08f35b29a11070aa345013964746e87b27be7a99cce93c4595a20ef1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jdk-19-ea.25_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.25_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jdk-19-ea.25_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.25_windows-x64_bin.zip", + "checksum": "39614cd2496ebdd58bc0abc641631032feed9c8905c3debef625ff6140753c08", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jdk-19-ea.25_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.25_linux-aarch64_bin.tar.gz", + "checksum": "de12163dfc25a56d9b92e153e3a2c86670a567374296329c001d3faef9562bfb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jre-19-ea.25_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "1fa378bba72b3472d8723603d5b6a5f177801bb4a82073662f262c101f9cc73e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jre-19-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.25_linux-x64_bin.tar.gz", + "checksum": "be87dbf2d2854ee63962fc3cea7f2a49b0ef39e66e990c8475b55a39186fa50e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jre-19-ea.25_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.25_linux-x64-musl_bin.tar.gz", + "checksum": "00fb71a34eedb2c12ad0c2b183535ec99147890a0a9833d4edbc1da9206d7fd9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jre-19-eabeta.25_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.25_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jre-19-ea.25_macos-aarch64_bin.dmg", + "checksum": "b760ce3c638262ad7c346c42a32be7ef4f915c14724fefacd175531bdbe64aa6" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.25_macos-aarch64_bin.tar.gz", + "checksum": "3699e2506920848553c7ce823b0cc3b5d6d2d0d37e8c3fad2d7ffcf154dd4e84", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jre-19-ea.25_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.25_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jre-19-ea.25_macos-x64_bin.dmg", + "checksum": "2afb62fb5fbf3ce961ff05bc4245eae8693e3d8ab1a4e914ac7bec028e4d5736" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.25_macos-x64_bin.tar.gz", + "checksum": "4d412cf0b4d7902a286e9e4f1405f298f8f3047639930347bb2919165dffcbc2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jre-19-ea.25_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.25_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jre-19-ea.25_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.25_windows-x64_bin.zip", + "checksum": "8f011c7a49a6d82b6b4c97a92b6bc3b36a5ca06c776813f3d6a5eeadaf84d008", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B25/sapmachine-jre-19-ea.25_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+24": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B24", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.24_linux-aarch64_bin.tar.gz", + "checksum": "e2b99706c6d3f2fd60758b2969cdca8fc1cdcecfc578340bb2911358bfac7818", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jdk-19-ea.24_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "8459aba60dad0de9991a7000a85bae490a11a86fadd6d5d3ecd3726d0f1c5ce9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jdk-19-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.24_linux-x64_bin.tar.gz", + "checksum": "c9d1d23e5498ceaa30d4f6714956f17cf55f650020a861c87db3b5963cce90e7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jdk-19-ea.24_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.24_linux-x64-musl_bin.tar.gz", + "checksum": "c3602d87b1d8c6c25f2389201c4554f3fc2f1a7e4f6bdda33c337c1bb4563fb9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jdk-19-eabeta.24_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.24_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jdk-19-ea.24_macos-aarch64_bin.dmg", + "checksum": "8d4198eba93351351cd33e9db253ab36e45902bd64a9d43df97412f7ad4c33c8" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.24_macos-aarch64_bin.tar.gz", + "checksum": "e1cfb4fb9cea22c2075b04f1f898acfadc2dd6c89c1a4a69444dae3c3cb38ab3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jdk-19-ea.24_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.24_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jdk-19-ea.24_macos-x64_bin.dmg", + "checksum": "036d70871846cfc20b50c1d744a76ed19824617427032af53130b2a01dcbe4fa" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.24_macos-x64_bin.tar.gz", + "checksum": "ce0bc39fdb7375a158b189217f8510fabed42e484a0b349bc1f66622ffedabb6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jdk-19-ea.24_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.24_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jdk-19-ea.24_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.24_windows-x64_bin.zip", + "checksum": "58bdca3722ebf9a7b5a00235d1e5ec33d42ee385ac0619df6f6378a19f5987ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jdk-19-ea.24_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.24_linux-aarch64_bin.tar.gz", + "checksum": "2690f835684b1ef9d7184a4a585b06cdb0c41d21c75dc654895ee26ca1ac62d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jre-19-ea.24_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "b5709092eb5063ca49fe8a8c5a6cc285a08c0bb3639e20432f3798ab0b34768e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jre-19-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.24_linux-x64_bin.tar.gz", + "checksum": "1545ab1cf95a5017826930fc6a6cba0bf0d8e2ad03be829860395698464760b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jre-19-ea.24_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.24_linux-x64-musl_bin.tar.gz", + "checksum": "9485b992562909d592f3ee280bbda1988327cf2b5edbe1c9d4b0e79b9f354678", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jre-19-eabeta.24_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.24_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jre-19-ea.24_macos-aarch64_bin.dmg", + "checksum": "4727c5648f762db82e7dcb5513bf87d741be90ec8977e3beabdc8a79e7a51dd3" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.24_macos-aarch64_bin.tar.gz", + "checksum": "9b944248587197d57bf85f1779db7a088816e078af82f79e7ac3556d74abbc8f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jre-19-ea.24_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.24_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jre-19-ea.24_macos-x64_bin.dmg", + "checksum": "8baefd939ea2644f5abacb402d65ae41549e7c0179ee7b738c52944d8d9ced19" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.24_macos-x64_bin.tar.gz", + "checksum": "fb83439fca386880a7a6c49005db54256614872b73a0430d6043be286c28c80d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jre-19-ea.24_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.24_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jre-19-ea.24_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.24_windows-x64_bin.zip", + "checksum": "345722862c589549d490385ce9b91da254e39a4c04284d4dd6ad1e838fff187f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B24/sapmachine-jre-19-ea.24_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+23": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B23", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.23_linux-aarch64_bin.tar.gz", + "checksum": "eb6a3724276dce04d2fae7d340a18a1f8e5dd7e8d03d60b2e6f910faf2020d8f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jdk-19-ea.23_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "f9371d60ef454d73a1fed4dfb6a11e5d9cb04e821cd7004855a24d95effc337e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jdk-19-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.23_linux-x64_bin.tar.gz", + "checksum": "0530e5dd1a7ed2206e38373832901e4ce10fef1fefe58a6ab78d1a49432bac95", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jdk-19-ea.23_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.23_linux-x64-musl_bin.tar.gz", + "checksum": "5ab409cf188e0d99e8d026d7b6bd9f1ccc1d09666f2a81e11be5a0b61bf2c12a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jdk-19-eabeta.23_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.23_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jdk-19-ea.23_macos-aarch64_bin.dmg", + "checksum": "6c7df06c0eb624154a21e3e75e665c40354384e59c479f3ab45214fad1901719" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.23_macos-aarch64_bin.tar.gz", + "checksum": "2dba7a425301249bb9d93c0527a850eaf2bb2b9f5ef84c1e651ce9c268c3f5ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jdk-19-ea.23_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.23_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jdk-19-ea.23_macos-x64_bin.dmg", + "checksum": "72887148b6870147945bb07c637d7e6806c03576232a635bd98197d8e917288e" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.23_macos-x64_bin.tar.gz", + "checksum": "8a0f76db292b2171bd8cbdbabf9e9b25a6476ba649dcb9a7a9da66385aba26d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jdk-19-ea.23_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.23_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jdk-19-ea.23_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.23_windows-x64_bin.zip", + "checksum": "cff9f7741871df8dbb07a97493ade8af29f716baa0ffe8720c716a45a37bbabd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jdk-19-ea.23_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.23_linux-aarch64_bin.tar.gz", + "checksum": "34fd59878da63c85eea4fa730804fa8926145260cdb05d4b1b04058096528e24", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jre-19-ea.23_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "8c0febc24465cf9321a5c6ee80419fb9a6dde104f7a135a40c66b5c10756386f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jre-19-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.23_linux-x64_bin.tar.gz", + "checksum": "edd349aeaecd9fb9f03b8cbeeed04b065cbe427e5a44ff08e5f3c13ddc51803a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jre-19-ea.23_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.23_linux-x64-musl_bin.tar.gz", + "checksum": "147162ec82bd85822d5c473f4bc3def80c39608ade1cdf8253aade8e86039ce7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jre-19-eabeta.23_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.23_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jre-19-ea.23_macos-aarch64_bin.dmg", + "checksum": "da4f077370aabf55d4800bdafb2d20fe91591eabc9dc04b0512a1205bf7f06c1" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.23_macos-aarch64_bin.tar.gz", + "checksum": "ac54a5e09754ca9bbdaa76c8042f1546210a29798bca8a6c74b56d457b416903", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jre-19-ea.23_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.23_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jre-19-ea.23_macos-x64_bin.dmg", + "checksum": "d3d57b58142dbe1f1a45fb9b31c25af6f9aaa12787a22f10a9fb833779509b82" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.23_macos-x64_bin.tar.gz", + "checksum": "7b62d14febe2eb590a397f4d6af5ccd89ca2994272d56c9d2bf4b17b4aba8532", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jre-19-ea.23_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.23_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jre-19-ea.23_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.23_windows-x64_bin.zip", + "checksum": "80e8d74a0b3f659b445381f016b9bd7ce33ea2f1dbbd59d9c2b0869b44f8f2a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B23/sapmachine-jre-19-ea.23_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+22": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B22", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.22_linux-aarch64_bin.tar.gz", + "checksum": "74e87ae9ab531dbe54ea35f139a793d301d061ac546e80523e2186c8417ea2ff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jdk-19-eabeta.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "65555d8dde603339d48a60eed72956689e58de028f16f21edebaa32e48584497", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jdk-19-ea.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.22_linux-x64_bin.tar.gz", + "checksum": "8b93ddba700027403a9de710d6984e08f31af6d1e9edcae3b5ef94bb479a6e19", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jdk-19-ea.22_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.22_linux-x64-musl_bin.tar.gz", + "checksum": "78518579eac70e7d57210adbf13fe3bc70ab9699392576163262ae472b677ab4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jdk-19-eabeta.22_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.22_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jdk-19-ea.22_macos-aarch64_bin.dmg", + "checksum": "e53d2bf1b9372c16663f5ac419c1541bbf98c159f8ff36a05b27c14ff7f63074" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.22_macos-aarch64_bin.tar.gz", + "checksum": "3ac26d62a58616fa972f174ca32b9971e46a16001b2020683d92c33e7583c4d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jdk-19-ea.22_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jdk-19-ea.22_macos-x64_bin.dmg", + "checksum": "cdc742b3f01e23d9a5963721e2d782844446335bdf29f72489b5e925b6a43cbe" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.22_macos-x64_bin.tar.gz", + "checksum": "5189679fd1de247ade0f64589c0b4b87fe1fb3a7eb324b012eb3047f7368687a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jdk-19-ea.22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.22_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jdk-19-ea.22_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.22_windows-x64_bin.zip", + "checksum": "7ce5b9a6ee3836b83ec129fd7c4d19839aba800bf207c4bf204cb9ec9dde1454", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jdk-19-ea.22_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.22_linux-aarch64_bin.tar.gz", + "checksum": "bef178d4cfc315aef878ab643f61e9cd344d8523da31a1e233c1937a48dc3614", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jre-19-eabeta.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "1ac4be393295ec896155d1717ac93fe7920cfc212dc85fab8c56d0e805a8f654", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jre-19-ea.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.22_linux-x64_bin.tar.gz", + "checksum": "f2b21f01d3fdef5ab1da48054065876e57488e86c765654a6a3e4ecb0d86901a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jre-19-ea.22_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.22_linux-x64-musl_bin.tar.gz", + "checksum": "0e0eb49299dd2e54d38b5d853859d29759de6f715ec9f8f16b8ec43c94a23af9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jre-19-eabeta.22_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.22_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jre-19-ea.22_macos-aarch64_bin.dmg", + "checksum": "298a1d520a8b1d0d37d63a2f873e6e589ad55b9db5eeb318d18fb76b4e3ed38d" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.22_macos-aarch64_bin.tar.gz", + "checksum": "4262924c46909a4c923f572da2f7e772fe82d6523e87c10c197e26cf0f32a216", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jre-19-ea.22_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jre-19-ea.22_macos-x64_bin.dmg", + "checksum": "d6a6f68d53779a4952b9ec0c57e7fab35086827363d449c24856d3c17730eb3f" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.22_macos-x64_bin.tar.gz", + "checksum": "66389c0087c1d578726add49ccf5f7f9098ac135476646f31d1d84dc1f97c02b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jre-19-ea.22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.22_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jre-19-ea.22_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.22_windows-x64_bin.zip", + "checksum": "fe40df6167a4fd4db707962d53a2fb42a98cb6c3fb7203d09744a7b1777044df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B22/sapmachine-jre-19-ea.22_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+21": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B21", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.21_linux-aarch64_bin.tar.gz", + "checksum": "0de708a4675877759152478f4dae473db22d71c34fbb178c13237524cdd6520b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jdk-19-eabeta.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "c370b860ba6cf4026cbf87f48525b4c04a8afcf5c04ad8104a928f235f60437d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jdk-19-ea.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.21_linux-x64_bin.tar.gz", + "checksum": "adf07114f91aebd116eef435f5bf70272728cd8c0f2b30221e76de69140dd947", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jdk-19-ea.21_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.21_linux-x64-musl_bin.tar.gz", + "checksum": "2ec0f3d0b311b143f827e7f78e456a1dec29cc1d2d6a8909f38b6e4d6e5bab98", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jdk-19-eabeta.21_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.21_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jdk-19-ea.21_macos-aarch64_bin.dmg", + "checksum": "34cd18d5630f7626207ac0ff72e4cfe2037910301950bb7093826fa08c42f86c" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.21_macos-aarch64_bin.tar.gz", + "checksum": "6dbd971fab64c279d4e982babd6bc847214ab4c1a0ebd0c974a2180f81ea9116", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jdk-19-ea.21_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jdk-19-ea.21_macos-x64_bin.dmg", + "checksum": "6daf4240754f233b5048adfb2d0953181a75de2521494cdff3b984d0475df4c6" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.21_macos-x64_bin.tar.gz", + "checksum": "f60b38b7fbf4adcbf9c4688d56f84efaf5524b328b46a66c384571cb618ab6e1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jdk-19-ea.21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jdk-19-ea.21_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.21_windows-x64_bin.zip", + "checksum": "93fb587420610ebc2470b5a335a408ec2a8a31394f41ded40222eba051f25470", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jdk-19-ea.21_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.21_linux-aarch64_bin.tar.gz", + "checksum": "2b5046c8cadfdf0f9740bb12a31c2faf8d96b7486622657d5480acf4e42d91dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jre-19-eabeta.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "72d370758f9b0025fae97c8e08356be900b20bb69880cbb954375996b3d02e2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jre-19-ea.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.21_linux-x64_bin.tar.gz", + "checksum": "3f552008b5212ef1efd80a9d439fe527701fa3cffc094fdcee11668c1afcbfb9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jre-19-ea.21_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.21_linux-x64-musl_bin.tar.gz", + "checksum": "8d2f76ee2ed3b67d969363ed110b41df6f3607a8376b5422efb4f83f45396260", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jre-19-eabeta.21_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.21_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jre-19-ea.21_macos-aarch64_bin.dmg", + "checksum": "7bfda666f3e604348e698a4983ab7f3685419964b9220b5e81149ce9f26b2b9e" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.21_macos-aarch64_bin.tar.gz", + "checksum": "3fea1c3781d38916686f7493783615e130453402dfe46f22808593dccfd7bb6c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jre-19-ea.21_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jre-19-ea.21_macos-x64_bin.dmg", + "checksum": "ccfe475770bf5b473d41fe535f5279f22e8e4d14949023c28b63f98e97aabd14" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.21_macos-x64_bin.tar.gz", + "checksum": "b6c9c59976cba770b72113dba84201db24ce1dd28b6350e1a9cf002814950be8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jre-19-ea.21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jre-19-ea.21_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.21_windows-x64_bin.zip", + "checksum": "29277a48672a9a1c34ebc75b485b71a511d2e04b9a003818ffa17de04276c818", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B21/sapmachine-jre-19-ea.21_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+20": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B20", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.20_linux-aarch64_bin.tar.gz", + "checksum": "279b19d0b0fe7663b147c725d6de1cf069e52e5f0dc62a3226a4e9ca8a8713b6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jdk-19-eabeta.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "a4882f133fb64cb75f83321916e2d8ba4cf7ad4bb75eea20ceb929d6f4a46661", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jdk-19-ea.20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.20_linux-x64_bin.tar.gz", + "checksum": "0e35f2faac9518808384a6821ad4fbfec6ff4bb5b02175d1350800a65dc99d74", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jdk-19-ea.20_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.20_linux-x64-musl_bin.tar.gz", + "checksum": "e0575780f1066027a4d240c50c1b3aaa64618d2994b12b06cb30faef3b5c0d00", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jdk-19-eabeta.20_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.20_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jdk-19-ea.20_macos-aarch64_bin.dmg", + "checksum": "612a5e327f645fe6108d90e0df404ea49b6be2652cb0100575020220dfb4f2f3" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.20_macos-aarch64_bin.tar.gz", + "checksum": "1d33a72bce2cb2ac6f64310abfa35279261c2cdc180a6da2dd5b4ed80aae5e81", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jdk-19-ea.20_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.20_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jdk-19-ea.20_macos-x64_bin.dmg", + "checksum": "5ca483794152bbd95f9f81f6ed79ed13dec226d3d55a1586fb607b42498463be" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.20_macos-x64_bin.tar.gz", + "checksum": "ec4e42309d205dd12fb933a70487f638fac1850baa9ec2456ff27aa1001024c9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jdk-19-ea.20_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jdk-19-ea.20_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.20_windows-x64_bin.zip", + "checksum": "e1a5ab2727223eef0f268dce0bbe5a7c87f3da15841c78a4a7ef54c61daebdcf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jdk-19-ea.20_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.20_linux-aarch64_bin.tar.gz", + "checksum": "d482cb8df3e63aab168bebcc81a2ec642677099c443c16e5e06d3eb36deac3c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jre-19-eabeta.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "48c8ae1cae5c37b983ddde3525cfe478825b8a30a7fea3cc2c3b193293f4da7c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jre-19-ea.20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.20_linux-x64_bin.tar.gz", + "checksum": "e71502ad99f896c7976df8cfa62ca62307702416db7dc8cabe487ca287af8b8a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jre-19-ea.20_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.20_linux-x64-musl_bin.tar.gz", + "checksum": "2c51ef57ed63c9c05c4db6bf572d126f2ad28314184d38f73999c89d44b47b8b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jre-19-eabeta.20_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.20_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jre-19-ea.20_macos-aarch64_bin.dmg", + "checksum": "3506b35b761fd5a484dff5dacb023256fd2cef94792fad6e8fccb6a1158187a9" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.20_macos-aarch64_bin.tar.gz", + "checksum": "f97d36e80ae2220639116905f58dcbed34f2b0b38755c482261d539f0dd7721d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jre-19-ea.20_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.20_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jre-19-ea.20_macos-x64_bin.dmg", + "checksum": "332c16f6c237f3ebecfdfbca769dc7783756ee944b090af06d5cbd04128d766a" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.20_macos-x64_bin.tar.gz", + "checksum": "11cfa3b13b52edc0886ef2e1ab44270d513f2fc1c38400af4b13143a4524ce09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jre-19-ea.20_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jre-19-ea.20_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.20_windows-x64_bin.zip", + "checksum": "6fdab5f8da0603bbf6fe4e6a82279baedc62cd2a261312151c73d0a3ab2c2928", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B20/sapmachine-jre-19-ea.20_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+19": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B19", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.19_linux-aarch64_bin.tar.gz", + "checksum": "413cfb4dc882fa3c0c07c5ef81b5b6d23a98c1275ad46a94f602e0757a259366", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jdk-19-eabeta.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "40e829b8d8c6fa29c2abbeb101cb8b08b9ba439e3feb0c2013ec06566cd659f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jdk-19-ea.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.19_linux-x64_bin.tar.gz", + "checksum": "5354986d42cb58ffcf1ffb116ade52c659cccae5522b15eb750a5ae86ff1061b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jdk-19-ea.19_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.19_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jdk-19-ea.19_macos-aarch64_bin.dmg", + "checksum": "5e8a5651d31e0193f8f82a70bcb63e0bf12acea9192167fbcae36f82b6d52778" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.19_macos-aarch64_bin.tar.gz", + "checksum": "50de4ab553274841b39d195a8032fbaeaf02141b98a03bc213c81e46918b1b5d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jdk-19-ea.19_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.19_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jdk-19-ea.19_macos-x64_bin.dmg", + "checksum": "e1046e0d8aed0e84131130a39710dfc8ed1eee75d308d5f5b112f7257886a384" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.19_macos-x64_bin.tar.gz", + "checksum": "0f6aba80ea24fa1b871d7bd3c9a898d2cbc70ed7d0155298a9e1b008fdf58936", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jdk-19-ea.19_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jdk-19-ea.19_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.19_windows-x64_bin.zip", + "checksum": "69f41cd5491134a9293a7c7357b7b36068a88c7c3420debcd521a567af2d10d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jdk-19-ea.19_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.19_linux-aarch64_bin.tar.gz", + "checksum": "a00855e9c3d6937ca7954db8780ef7d4f0ea5edd0a07260d63fb9aa1923e88f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jre-19-eabeta.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "8eeaa27826ec9c8527d76ee93e3a866fe45b31d09940d08cdfcffdc2d6284412", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jre-19-ea.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.19_linux-x64_bin.tar.gz", + "checksum": "0b7db813cf475b4aa07aeec74bcbb06cced0debd5d51245f369378e70dcc607e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jre-19-ea.19_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.19_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jre-19-ea.19_macos-aarch64_bin.dmg", + "checksum": "c51d473ef21702122c42bc716a0e22985e572b6252ae9dc005609ad084fc4030" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.19_macos-aarch64_bin.tar.gz", + "checksum": "bee3f3871d6c6f63cb335dca304ebe87bf340159201b267a2f7b8d78732495f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jre-19-ea.19_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.19_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jre-19-ea.19_macos-x64_bin.dmg", + "checksum": "712679825691dc17effad1afca48cbe2387a16837daa26ff811ff9eb325b92f9" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.19_macos-x64_bin.tar.gz", + "checksum": "d1bfeebfd1144e96db873f78a3db6232a4e22742d250bca8b95705f807acc04b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jre-19-ea.19_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jre-19-ea.19_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.19_windows-x64_bin.zip", + "checksum": "bb003113ba373c1f6ab2ad6a498d299047d7e657a474eb761bb5b4f26515ae4d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B19/sapmachine-jre-19-ea.19_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+18": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B18", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.18_linux-aarch64_bin.tar.gz", + "checksum": "86602e3b60ef51393e249cc43cafb5db6b6ba9a4588172c376f71a377be93962", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jdk-19-eabeta.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "6b06eb0a2715887d276b19d9c41632824bdcac6e3a2ec167575385cebf3b90a5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jdk-19-ea.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.18_linux-x64_bin.tar.gz", + "checksum": "6b0dfc47e7feb8ee7aca05471b616f1585ba1c47b01a7849f33242c30fa4d07d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jdk-19-ea.18_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.18_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jdk-19-ea.18_macos-aarch64_bin.dmg", + "checksum": "1438a87152a923dca6533d0804d92e0084000b3df9a0591b805c1fd52fe76b6a" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.18_macos-aarch64_bin.tar.gz", + "checksum": "f201280141e9166f7c3a4b3dad27d37d10f167f33ae93ef7d7c2a00eb77bd128", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jdk-19-ea.18_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.18_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jdk-19-ea.18_macos-x64_bin.dmg", + "checksum": "0c82e6402907068f15d58fb5c53f88c38b7b70879ca590cf63afc5b4df1b1634" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.18_macos-x64_bin.tar.gz", + "checksum": "83e385934b575cff05a7e765edcbb44b9fff2789abb1090ba3500e93e0239bd4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jdk-19-ea.18_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jdk-19-ea.18_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.18_windows-x64_bin.zip", + "checksum": "3e71f6b6cb66019bc74238f02e6a8feceb09b3308c14350af84e22fde0112e91", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jdk-19-ea.18_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.18_linux-aarch64_bin.tar.gz", + "checksum": "37d7a581a147a29938eb89637267355c7e9121c8ec7d50c02c05d2a4a8a003b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jre-19-eabeta.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "288d982da5899da7535a941fd801ac47d115025d0c1ba851585aacda464f29e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jre-19-ea.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.18_linux-x64_bin.tar.gz", + "checksum": "54c7a961a0062f5fafaf35e5b3b4ba500daf676f8fa4628834d2d4178cbe054a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jre-19-ea.18_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.18_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jre-19-ea.18_macos-aarch64_bin.dmg", + "checksum": "d15fc072e2e980cdbb15f332ba9e65809eadcb0046e47a42a24d7c37941fc8f2" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.18_macos-aarch64_bin.tar.gz", + "checksum": "b8fd565ad6cb33dfa8b9b285f58eac4607f0250d0cdadaef629d89a5d9fcf36b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jre-19-ea.18_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.18_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jre-19-ea.18_macos-x64_bin.dmg", + "checksum": "b3ab2e389045c497a1b26cc08373ff1213e7814d98286894a41a66cd01b90493" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.18_macos-x64_bin.tar.gz", + "checksum": "62f5fcc3e26622c581dc5edec491229afb9bdc7651265533c173bcc79082e6f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jre-19-ea.18_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jre-19-ea.18_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.18_windows-x64_bin.zip", + "checksum": "2c47f2b7207647c272145fa8248df571bb49bfb8d3a5991c3c274074f35df6ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B18/sapmachine-jre-19-ea.18_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+17": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B17", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.17_linux-aarch64_bin.tar.gz", + "checksum": "1df989fe8f243b6c069050d91310b37b9042df9aae5fd316063f7547ea8b09b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jdk-19-eabeta.17_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "cd8265060eea98eb0a3990ebaf1026539cb2ecbbb5bed51decf753c15fa17241", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jdk-19-ea.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.17_linux-x64_bin.tar.gz", + "checksum": "b39399dfbef918db7158a2014779f8396956e21a7d51adb6f37082a2bf5279dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jdk-19-ea.17_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.17_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jdk-19-ea.17_macos-aarch64_bin.dmg", + "checksum": "a2422f1caa0e7f93412bbac8be0578ef5e96deab15deb5a0496630f018d99019" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.17_macos-aarch64_bin.tar.gz", + "checksum": "25c32b7df12fb2fe4c7bff8a4c839f75cdc4c680a9a5354e04990bfc0fe27f0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jdk-19-ea.17_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.17_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jdk-19-ea.17_macos-x64_bin.dmg", + "checksum": "610610bd11ff29c29603d98e851fe28b9a2661899f0fb6fba5acb1cf86cae893" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.17_macos-x64_bin.tar.gz", + "checksum": "53fb28586bbe1a8c5fa90ebfc8e040fb60c4dfe6f1a68f4789dae35c0db81561", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jdk-19-ea.17_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jdk-19-ea.17_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.17_windows-x64_bin.zip", + "checksum": "586ca3dc811b8f8b767b7ea53cde30fb4c00fe37433690db058cd2c306715c7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jdk-19-ea.17_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.17_linux-aarch64_bin.tar.gz", + "checksum": "17ee25222539555f40b1edbc694ec3d51e37fd454007617279d78fe15c13961d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jre-19-eabeta.17_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "fbf746340fc1307821eed4e1a06e7316a7f2a52cb2d2b663cf5195424b043482", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jre-19-ea.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.17_linux-x64_bin.tar.gz", + "checksum": "62cd3425a655841949c45f5df37912bc11e3b1ab60eaa61dafe001dfe36e8c0f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jre-19-ea.17_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.17_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jre-19-ea.17_macos-aarch64_bin.dmg", + "checksum": "10eff2665cae5aac29cf16839b274a6e9eb4b72ae7949d87e330baf03cae16d5" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.17_macos-aarch64_bin.tar.gz", + "checksum": "66aba6518e580ad69d9ddaea431d4a907b0aec35558181f33b61e1107de1e878", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jre-19-ea.17_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.17_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jre-19-ea.17_macos-x64_bin.dmg", + "checksum": "728e452a5184871feaee856d6850d28ed80371cc4db13fe1b2d4d2d26d7fa70e" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.17_macos-x64_bin.tar.gz", + "checksum": "21901111df9abb430acd849eebfd05ac5eea7cc82f15207d50ed7fa803573980", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jre-19-ea.17_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jre-19-ea.17_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.17_windows-x64_bin.zip", + "checksum": "8bc594bad386df6468034c24e78f54f76315aa6659e3edc30f21c9cfef1b8866", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B17/sapmachine-jre-19-ea.17_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+16": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B16", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.16_linux-aarch64_bin.tar.gz", + "checksum": "f160e4b1e6f5bdfba24d8fbc65e27f52ddd1f8f9b759f142c2901b87b620a140", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jdk-19-eabeta.16_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "46c0f1ccaf4a3123db3f3f5142a5a7d558ec6d23502312b7431998d8951de0f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jdk-19-ea.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.16_linux-x64_bin.tar.gz", + "checksum": "1692d3bc4a7a46a15bc42d662058278bf676c0f17423686a09139ffc85716058", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jdk-19-ea.16_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.16_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jdk-19-ea.16_macos-aarch64_bin.dmg", + "checksum": "fb1a5a7c7ec3e5f225f44926bd994fd4c44d3e86c6e138e043f3c2f21cc73da3" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.16_macos-aarch64_bin.tar.gz", + "checksum": "9ba52c9b8f07529c3c68f686b00b9262f31fbe5cdb84c408e421010870520df4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jdk-19-ea.16_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.16_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jdk-19-ea.16_macos-x64_bin.dmg", + "checksum": "2d83b39795111e65a7fe4b852df27e2b1c29ad9d412f364daff56330aa674490" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.16_macos-x64_bin.tar.gz", + "checksum": "15b07ffd9f1a19197b6790cec3f825bb51cb0c7453158cbaefa0a0c0745e72e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jdk-19-ea.16_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jdk-19-ea.16_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.16_windows-x64_bin.zip", + "checksum": "9bf75ab9d6941289b26b28e1bd5b78f0e3022a1bcb88f67bb48c4bd519fb2b55", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jdk-19-ea.16_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.16_linux-aarch64_bin.tar.gz", + "checksum": "3960d058a89569bed3dbff0eaf7678f0354a36113e764ba5cba9f2127507c978", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jre-19-eabeta.16_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "de11d02583f05b20732ff0a9307e61d8370711a0a93c2c96a54e3dfa44c3ec68", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jre-19-ea.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.16_linux-x64_bin.tar.gz", + "checksum": "edf376f4a32275540e6842491e0e65e2a106329fb07be689bdf9a9c7f6015edf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jre-19-ea.16_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.16_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jre-19-ea.16_macos-aarch64_bin.dmg", + "checksum": "17556f917c5c6ff00579a0ead2f76163fa6407f76b04abfcef386a9b04d68663" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.16_macos-aarch64_bin.tar.gz", + "checksum": "3a3607a5db1284edc5d8cca79bd61d5bae06fb8a2459bcbe14740698a3ae98d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jre-19-ea.16_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.16_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jre-19-ea.16_macos-x64_bin.dmg", + "checksum": "2a2aa245ee34d98e6f82350d84916c91741250b71cc45796e77f610da0aa2cda" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.16_macos-x64_bin.tar.gz", + "checksum": "9aa5b9f9c86b4cce29fcf09861595ea029f7b2c55f711846b884a9e04bee9280", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jre-19-ea.16_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jre-19-ea.16_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.16_windows-x64_bin.zip", + "checksum": "3fc0f53dfc7d087e4c6cea958c945dfb82131aa0111bb5355c6152e8f996faff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B16/sapmachine-jre-19-ea.16_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+15": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B15", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.15_linux-aarch64_bin.tar.gz", + "checksum": "e4316508f16b5b587b38e5129d5b40ddd9cedcbb31335abb8c94575177de448e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jdk-19-eabeta.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "c229d0119bae0e386629be967ff8af8de6a09064eeb863821720f0d3fb0a958e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jdk-19-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.15_linux-x64_bin.tar.gz", + "checksum": "cc9c02118091d9151c7559ef1d0f3da9684e4c06b165f37068060493fb81bc27", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jdk-19-ea.15_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.15_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jdk-19-ea.15_macos-aarch64_bin.dmg", + "checksum": "f739901b544ea5bd1e34159dd550ca4f64fd47550a630b9b382d660d4d5bc0d2" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.15_macos-aarch64_bin.tar.gz", + "checksum": "4911b0aee8a0e8e94c247c969a4592252b0f2375790e2bfeaa755ca054547faa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jdk-19-ea.15_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.15_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jdk-19-ea.15_macos-x64_bin.dmg", + "checksum": "5a27a1f49c69c688039bdfcf2e01a7f62d4d7765b8a83188dff0eeaacc237071" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.15_macos-x64_bin.tar.gz", + "checksum": "1794396363662458a89576615e42e00e08113bdc8944980603cd196cf709d585", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jdk-19-ea.15_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jdk-19-ea.15_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.15_windows-x64_bin.zip", + "checksum": "50a9b81e35de01a9be437edf2221955a3431f24bab6e5e8b6303187d0f7f22fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jdk-19-ea.15_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.15_linux-aarch64_bin.tar.gz", + "checksum": "2f85ebd77cc321b91d14c64f47eea86ba7f160322078a6d13a6a0aa7d9a85791", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jre-19-eabeta.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "91b1703873f60bcb09d5a74b23fdba779c7bd9bdd8a69ca9f52e989bed2dac7f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jre-19-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.15_linux-x64_bin.tar.gz", + "checksum": "489ec5249abbe3b8f10abf5b7625ac0467823b795b9a069926d1b8fcc3adff73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jre-19-ea.15_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.15_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jre-19-ea.15_macos-aarch64_bin.dmg", + "checksum": "fd7cd8e89b5d7ec6dabcf55b1aa2c0c2bd6a77cd06989bd31f1d8b3b1d533343" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.15_macos-aarch64_bin.tar.gz", + "checksum": "6ea91867161f759b8fbc780812c1c4a40c1318851502c61d1097a6f86cce56a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jre-19-ea.15_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.15_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jre-19-ea.15_macos-x64_bin.dmg", + "checksum": "308571f15fd77e4241f01849ba7041f617a384c18a7437ffac717caeb4998535" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.15_macos-x64_bin.tar.gz", + "checksum": "1dd07f08cf59a120b8d01864df66fc275d044e05ece0022b4b410f27ff2e9d19", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jre-19-ea.15_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jre-19-ea.15_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.15_windows-x64_bin.zip", + "checksum": "9b3f41e4422b3e0b2ceb9444c2152e738ce9f0dd2a61636b4ab2dd076c633916", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B15/sapmachine-jre-19-ea.15_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+14": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B14", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.14_linux-aarch64_bin.tar.gz", + "checksum": "32fa0015aff25f80e179e1f00bc10674fdb0d40b66585092c32da816a9ac45f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jdk-19-eabeta.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "d8f351a67572e668dc0c60f7fdd0fab9954af8d38a9dd67471e9545af8141bf5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jdk-19-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.14_linux-x64_bin.tar.gz", + "checksum": "d24fbd0fc904ca4c49eea1bba7d9bd88e836e7d7aedd7948ee33ea6c699546d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jdk-19-ea.14_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.14_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jdk-19-ea.14_macos-aarch64_bin.dmg", + "checksum": "95d4550cfd7946066f2be8f2ec3afc0ccd79e90f1d2d0a6a4e1a0482066ebfe6" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.14_macos-aarch64_bin.tar.gz", + "checksum": "2fa6435fd9e1ec5eb9e4fbf5b29790f5e9b14b53d52ddec06f6de72e3bcf752d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jdk-19-ea.14_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.14_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jdk-19-ea.14_macos-x64_bin.dmg", + "checksum": "2b4c5766475ad6eeeb122ac881747d34317fbc7f70d0dbf0d4cc68ba7d091847" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.14_macos-x64_bin.tar.gz", + "checksum": "e2e287043954c1db2fd5c82bd3c111f33ad07b3750c2d24d497c0f633ead790f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jdk-19-ea.14_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jdk-19-ea.14_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.14_windows-x64_bin.zip", + "checksum": "b4db8f5e5570db39265d45c51a1abf6a8df7d208569cf77ba51d4c875d165102", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jdk-19-ea.14_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.14_linux-aarch64_bin.tar.gz", + "checksum": "c78140876de1170d887a755811d79488088102750fc1d46fa30ed0c81557634e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jre-19-eabeta.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "6f42a59d0b3606804d332be04bfdff723c16276db654d741ac189277fbdf6142", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jre-19-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.14_linux-x64_bin.tar.gz", + "checksum": "e2811f4fd4853b7c87f8380431dee3fadf4308137a97b093eab3385fec91781b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jre-19-ea.14_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.14_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jre-19-ea.14_macos-aarch64_bin.dmg", + "checksum": "0a7524c2341b0ee9cb75f8c271d9894f6fc00efddc4e0c302c429133f3a5777e" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.14_macos-aarch64_bin.tar.gz", + "checksum": "26dd51abd58be2be9ac21276d7ff8a0379ebc36cb25c9e1b9cf7cb064b4e74d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jre-19-ea.14_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.14_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jre-19-ea.14_macos-x64_bin.dmg", + "checksum": "22c6bb2ca4b14b988af0ebdca17c87e89f8271a0f60c7625a2ec010d57ba74fd" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.14_macos-x64_bin.tar.gz", + "checksum": "9963f207b9f26845943a80343de7dbc22b88bfacab2f1a28622734d2bc17037c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jre-19-ea.14_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jre-19-ea.14_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.14_windows-x64_bin.zip", + "checksum": "226263b90c8efae269e44954a113292801a256979f1337a3b642819cfabef0bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B14/sapmachine-jre-19-ea.14_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+13": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B13", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.13_linux-aarch64_bin.tar.gz", + "checksum": "8f868bbb8cb4e68db389d5081f77ed7687f85e2704248a1987e881dd1a30eb87", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jdk-19-eabeta.13_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "52e525e792ed1cfd065f5bbc5069f5fc13681ee2625f62eb168d05cc33b12ec8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jdk-19-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.13_linux-x64_bin.tar.gz", + "checksum": "7cc4ef3ae7cc1f08a6eb2894b843580cc0fd6b5c7e7457e11b6239810c36a0c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jdk-19-ea.13_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.13_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jdk-19-ea.13_macos-aarch64_bin.dmg", + "checksum": "55dd04a1348ac975772ba073209ac4da8fc90cd70389296759c3d45dd7b6a206" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.13_macos-aarch64_bin.tar.gz", + "checksum": "efa8a27cc9f044104efc89b269923dfcb260b1aa10c272b8882b50c2dc57bdcb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jdk-19-ea.13_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.13_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jdk-19-ea.13_macos-x64_bin.dmg", + "checksum": "9139ce1f99146c6ae6f5899135d05d4f3c2842b16eef5644f75250735feec1d6" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.13_macos-x64_bin.tar.gz", + "checksum": "a44478e831aee0c481dc83f944b523926a595f20f18039abe465c5e621d42b39", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jdk-19-ea.13_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jdk-19-ea.13_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.13_windows-x64_bin.zip", + "checksum": "eab7cb055bb0ed4648140a4cb8e22b2fef2bf60e405646d44c2582faab5613f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jdk-19-ea.13_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.13_linux-aarch64_bin.tar.gz", + "checksum": "aa2060deeb05072155db88c6cc05cff39d4329a9a0e854a29823b3dfbfbff2f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jre-19-eabeta.13_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "e5a46542ce71506d1d42c34b7d0525934bfbf53b5cd4fab310bea83c1779f9c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jre-19-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.13_linux-x64_bin.tar.gz", + "checksum": "aceea7169b2338f2dcf7818acd0fe4ba5dad8ebf833b5e4b5a5e3d3e1fdbcc60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jre-19-ea.13_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.13_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jre-19-ea.13_macos-aarch64_bin.dmg", + "checksum": "9fe75b8e0d051719dec337e270d17a5e3a8152511d5db6023d0abdc2e09cc69d" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.13_macos-aarch64_bin.tar.gz", + "checksum": "0f705bc9fcd3c6f2fcc5ecabf4027f34523123e89e1b8c4ec88920395bb8a9eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jre-19-ea.13_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.13_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jre-19-ea.13_macos-x64_bin.dmg", + "checksum": "7399c09d127011b71c891e9706d2ebc66e0d7fb23d61eb1e8770179dc1d1cc6d" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.13_macos-x64_bin.tar.gz", + "checksum": "2fbf4e632a6b6e9e522e99d6432835e78d0c523852c3850c593527d1f8a6fa1f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jre-19-ea.13_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jre-19-ea.13_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.13_windows-x64_bin.zip", + "checksum": "4061bf7f0ece7da81bd1c3ce3d8f3dbae3735b4238ab16f5efe60e7e9351efae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B13/sapmachine-jre-19-ea.13_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+12": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B12", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.12_linux-aarch64_bin.tar.gz", + "checksum": "b742a163b1b2a90c81a4982d9da15347eb4bc293e413ec5cc4d7914a769fe5c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jdk-19-eabeta.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "b3eeb4150a32ccf1919d21c4f2fc24ee9aad858768c72e57c860fd562981143b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jdk-19-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.12_linux-x64_bin.tar.gz", + "checksum": "054142339e0f4e0fa46241d2f25d63716c0b7e46c6bc2a67677dea15a62f4eb5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jdk-19-ea.12_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.12_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jdk-19-ea.12_macos-aarch64_bin.dmg", + "checksum": "38b606c33b58e7f7f37e0fef8e9641bbb0634bc3a7e424daf48afa37157a9910" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.12_macos-aarch64_bin.tar.gz", + "checksum": "228d97331ee3b04c32fafa5d2cf4cc8ee9e92a06ad4e96d8eaea3f15e0988914", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jdk-19-ea.12_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.12_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jdk-19-ea.12_macos-x64_bin.dmg", + "checksum": "739cc7684a6d76ba1c1e15a1f8bd3d24a920218a02423b97963b11b65328bdab" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.12_macos-x64_bin.tar.gz", + "checksum": "d75b385c82192fa4cd76908ea92cd534a6cb1158be122089e522d1d2e08e98a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jdk-19-ea.12_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jdk-19-ea.12_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.12_windows-x64_bin.zip", + "checksum": "11b9a1548d02cc155ae3c9bc7d7d362eb76f66ba569ef57f4c99df44bd5070e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jdk-19-ea.12_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.12_linux-aarch64_bin.tar.gz", + "checksum": "8bca6f7636d1b39c1e2af89969c91612b850ec6c61fa6eb5604ddb1897eb4ace", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jre-19-eabeta.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "52e8c51bbde74b337d39a84d27639d2b5fe7370bd99d2bceb123d8d6f3ff4e0e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jre-19-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.12_linux-x64_bin.tar.gz", + "checksum": "16f8b512da6a7082b21be64766b56d4867c96ed9dec8172b6d9975cfe47fbaed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jre-19-ea.12_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.12_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jre-19-ea.12_macos-aarch64_bin.dmg", + "checksum": "99f52dd7c84dbf168a808b3c159c099e1d8b60d03d6de8a50ea84954c69a6333" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.12_macos-aarch64_bin.tar.gz", + "checksum": "73d726abf84baebce0a82ac9c6344e08d13f0ae71ad20ee7eb12d14c6dd0bdb6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jre-19-ea.12_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.12_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jre-19-ea.12_macos-x64_bin.dmg", + "checksum": "412d1acb1ed2425cdc8bfa805bd5d96547ae4fa18ad5c7e2360c6f915fd83170" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.12_macos-x64_bin.tar.gz", + "checksum": "c91dcd36f5e032aad11ac6b382ec31c9a9b6adb33cb1f2ad0deff93b59add0d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jre-19-ea.12_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jre-19-ea.12_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.12_windows-x64_bin.zip", + "checksum": "72528ce17c4c710843623efb771d198272ceb42f41c8d191618be0b52e672f46", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B12/sapmachine-jre-19-ea.12_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+11": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B11", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.11_linux-aarch64_bin.tar.gz", + "checksum": "15fd01fefad2f49af024af7fde7b498793194e0efde156fa1499848723fa162c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jdk-19-eabeta.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "c7f12b13dbfdc01338e733f821dd312c10fa7f282c2c1b3992e33d59ee532d20", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jdk-19-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.11_linux-x64_bin.tar.gz", + "checksum": "d01040af022299eedcb71cbef0fa8f9ea68ab5d82a620993cc2e3f8b8f52004d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jdk-19-ea.11_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.11_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jdk-19-ea.11_macos-aarch64_bin.dmg", + "checksum": "b1cf409c6a629766bc34b5bb20e471d3f03c075c5708035c61c2d98f96c964aa" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.11_macos-aarch64_bin.tar.gz", + "checksum": "9b7eb166bf7238427c10b4c08835b98076d49022b214989ae4d9d94220de45bb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jdk-19-ea.11_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.11_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jdk-19-ea.11_macos-x64_bin.dmg", + "checksum": "7999044ad097ca5cfee958e1924a9af894c92d67022461436a5cadd306703f34" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.11_macos-x64_bin.tar.gz", + "checksum": "41d7fa5f8c64a949f42deab154f394addb17bbf731dcad87cd7d0b4531b93441", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jdk-19-ea.11_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jdk-19-ea.11_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.11_windows-x64_bin.zip", + "checksum": "3560b015159fc1b2c561269b8c9e5a70ccef9dec723c4a3f0076ce7834d02784", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jdk-19-ea.11_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.11_linux-aarch64_bin.tar.gz", + "checksum": "53f92ef5fa79848535c5056f402c5fb7cd6687f9f362db54f9242da55f7305ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jre-19-eabeta.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "d3c5efebd4c525a41e6520306eeac451a238c231b2f9785f2226a639531825d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jre-19-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.11_linux-x64_bin.tar.gz", + "checksum": "734bd43295d317129d463e67110d7872a62225c65686c04713c1cb00744c5975", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jre-19-ea.11_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.11_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jre-19-ea.11_macos-aarch64_bin.dmg", + "checksum": "7a5440d9bba78ed8e6d017963d36b53c75b18438c7fda53a1ab458ea3ab1e81b" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.11_macos-aarch64_bin.tar.gz", + "checksum": "ea12c16f9613f0a9097ab06590be5116eb2a1e50589fcfaa25e200a9b133e64e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jre-19-ea.11_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.11_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jre-19-ea.11_macos-x64_bin.dmg", + "checksum": "e437bf5c2018ae8b61072a1827dc3efdd58e0c28778262db2bc74af653d89d07" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.11_macos-x64_bin.tar.gz", + "checksum": "75dcb555e5c79a9ae1e40c135f8540f1bd60d9dae07bd41848b73bb7be654568", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jre-19-ea.11_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jre-19-ea.11_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.11_windows-x64_bin.zip", + "checksum": "c67bb599756d3f551d9a71331d5a6f369ae14e8b017512053b49499f57933bb7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B11/sapmachine-jre-19-ea.11_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.10_linux-aarch64_bin.tar.gz", + "checksum": "0687ec4a9a39d7a2ef2ae049a9f4e5ae19ec46a0599da58d4c7581a8d72abe74", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jdk-19-eabeta.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "344c5cff72d7c220c3fff02c95f2f4648f1ccf89d0762025e15e5001e490faa8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jdk-19-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.10_linux-x64_bin.tar.gz", + "checksum": "c8de134d275467c2b29ec3501ca20a0e4e86f8d342ced37350c01451463a90ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jdk-19-ea.10_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jdk-19-ea.10_macos-aarch64_bin.dmg", + "checksum": "57691e36df5f7f7ed314c2aaca94935a6c1a0d9745afa735a74bd9f20ac9b70d" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "40d7cd22736ad46b62adf5952d6ef014b504b0aeabdc37fadce296c89c253e42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jdk-19-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jdk-19-ea.10_macos-x64_bin.dmg", + "checksum": "efbfcf565e5bab4ec186346100155e55a6cf35152801c40930f589aac781eda1" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.10_macos-x64_bin.tar.gz", + "checksum": "92b48f3c8c17e5debb567e3e0d97ce13b7600af52149098080fb840a14bb8903", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jdk-19-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jdk-19-ea.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.10_windows-x64_bin.zip", + "checksum": "956e9ca66bead711519cf2c7b9f0093a0fa4083df456cb192466d3c0d0f2f961", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jdk-19-ea.10_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.10_linux-aarch64_bin.tar.gz", + "checksum": "64507dac17a5202275546476e2d8176a92181fd9c4802ddcebd90085621f85c2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jre-19-eabeta.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "c1fb539da4c7c9511321990a45290dee7ba51b23bf38dfe5582cacec14fa8e25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jre-19-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.10_linux-x64_bin.tar.gz", + "checksum": "0732a6ed057086796db85046582499b31b5c0b5cbe720bb3e75eaf228f1b3f51", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jre-19-ea.10_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jre-19-ea.10_macos-aarch64_bin.dmg", + "checksum": "270c0c86cd557c692ddd724b5a9fd0b7c552338d9cb4d2d30fc4578c32d271a8" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "5fbe7e11dfa8ed071ef4cf171602027f51376505e7af8da9a0e1e73b1a56cc61", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jre-19-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jre-19-ea.10_macos-x64_bin.dmg", + "checksum": "5fd528c024e000c4e02db380ae41819cd70b49109b3926098fc2456cf6f8112e" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.10_macos-x64_bin.tar.gz", + "checksum": "10a81c9b9b6507c0b510bd278e226c4125891b71c804b472c1dbaa0edcbad45a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jre-19-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jre-19-ea.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.10_windows-x64_bin.zip", + "checksum": "fa1f15b46047fc4c610c1b6b3770c697275ddb5b406fdb56508ab7a1fbc63f6c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B10/sapmachine-jre-19-ea.10_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "c843744d31004442b3a515ad4bea9c95827499b3bea9577ea6d8385e91715aca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jdk-19-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "8efabb664355a8a9cb54bbff2a34a492c6d1238995ce37fac7019043ce0806a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jdk-19-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.9_linux-x64_bin.tar.gz", + "checksum": "09b68eedf40b8b367083bfce5cac21d4ba8bcb9f13697331aff68e172cedb9cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jdk-19-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jdk-19-ea.9_macos-aarch64_bin.dmg", + "checksum": "afe5d26e2faa3b39aee0a40bb86d451aa499041411e7ad6e4f3fb9d007855c5d" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "a15365dcb34709cd5323d227fd1479f62ddb743aeca2058dd45a62fb17677165", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jdk-19-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jdk-19-ea.9_macos-x64_bin.dmg", + "checksum": "03c757f0604028c91e444040e7b9d78cfda1e543f31e5fcdbe82fc59014c16f7" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.9_macos-x64_bin.tar.gz", + "checksum": "0cc147b880709abfe63b8e5a440a96001b5c23103fd9a90f6c19338cbdad31cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jdk-19-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jdk-19-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.9_windows-x64_bin.zip", + "checksum": "a5fdb4ca1a220758452188f0e327395c8bc72dc4d75ce5f65232763c6d8ddf33", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jdk-19-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "ed8e3c7baee1791aaf8cc356843b73531ea8c29d49bea1d61be05f3cc9c095d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jre-19-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "36bb174449e46c65e36c83e826ccefde674ca5ee6444eb60275e2248a8d1fb6d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jre-19-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.9_linux-x64_bin.tar.gz", + "checksum": "b5db080cad84e7460e591f8f644e5be0d8e0420ed0a235e7eebefa6037d3a020", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jre-19-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jre-19-ea.9_macos-aarch64_bin.dmg", + "checksum": "5d819a22975392bc52d79c4346f7a28f400f2a860926cead40c80099880da044" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "201816ff8fedccf9ffa81e6d481f69662775d91295981c5c1b487e2708a4bfa6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jre-19-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jre-19-ea.9_macos-x64_bin.dmg", + "checksum": "02401dbb42559ba00bfa41ba415b205f9899be08061732e76dbfc169c3168efd" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.9_macos-x64_bin.tar.gz", + "checksum": "be735cadee78a1144a9a8b0bfea769fd032135fee23f0012ef5ef5dc999536ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jre-19-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jre-19-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.9_windows-x64_bin.zip", + "checksum": "c46a79875aba79f1ff130b8f8271776876f2c257b8e8ae0fe2b8a3544339b539", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B9/sapmachine-jre-19-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "06aeecd7c9ceedcebffe6869889b8ad6742e0b67505f4d040ad4923fc1f8efe2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jdk-19-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "0a2a3098ba5e5dfddfe117b43ee53580045dede6d0a388f8e450593ae5c49ed3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jdk-19-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.8_linux-x64_bin.tar.gz", + "checksum": "31c9bcc4cdcd4fbd164a4cde64c173c8c3a3e45a9681e878df3bb8c3090338d0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jdk-19-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jdk-19-ea.8_macos-aarch64_bin.dmg", + "checksum": "1f8f0da97f7c751476b50ca28aa9ae6a8ff46af5763792bc1f30f075c0aab418" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "046365c9e976ac5fb9c1b0c448207c31b4e0ee2fe8de2019d0c322c23672d08f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jdk-19-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jdk-19-ea.8_macos-x64_bin.dmg", + "checksum": "5c1246d2b5586caa4318e9ae5349b55bcd1b2a5f64c825e1f64e334b0d49c3db" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.8_macos-x64_bin.tar.gz", + "checksum": "a351250866cb28ec121d69779e6e6b509161e291b9c39feb41ed729a1e316ad2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jdk-19-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jdk-19-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.8_windows-x64_bin.zip", + "checksum": "3461b5125652e2ec0d725d386bf42ed9414fe4f6b5256c08446814f441173d56", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jdk-19-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "4458ddc9e3fb5fd2d5c3a37a83edb8721b78279b5177698be14176342903a21d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jre-19-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "c2941d9a0d6dbaa3f6e3313837a497b07cf7da1a26f49ef4bf8ac2c79aeaa226", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jre-19-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.8_linux-x64_bin.tar.gz", + "checksum": "370e2b4b8dab67fb70be38102610af40f299424d57113aeeca20dbda76d86e8e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jre-19-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jre-19-ea.8_macos-aarch64_bin.dmg", + "checksum": "1c2d1abe5c1cb371107ea0daf86b46e45f9ee09ec6eec762e33acdacf933f9c5" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "a692314d0534e33546286090edcd0116eaa3aaf9fcad0a155ed8a4251abe4d99", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jre-19-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jre-19-ea.8_macos-x64_bin.dmg", + "checksum": "2827db7bf6cfa0d850c36bc73f74e6a8c8188bf4b71c2648cd79c379a62fd61e" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.8_macos-x64_bin.tar.gz", + "checksum": "4e4a805a2946e5dc2051f08f2a14bcf6bc429c199ef19e79d326652023718ac4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jre-19-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jre-19-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.8_windows-x64_bin.zip", + "checksum": "d1b90de5aac7db0bf8cfb1ae65207fa28d4bda3bfc2f76dca4c0222c6b093de4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B8/sapmachine-jre-19-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "93a6a7d541fd8aebe1ee2eef67aa19f266e164185b021daae63541a13819e8cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jdk-19-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "936e51b2638b03c5ed190e22db4dffa501f9788f1186018da757d4a8205ce889", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jdk-19-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.7_linux-x64_bin.tar.gz", + "checksum": "8c7330f23881892be52eb36abe43baa6bd2f84c6b40c446abecca531782c4452", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jdk-19-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jdk-19-ea.7_macos-aarch64_bin.dmg", + "checksum": "17b2938d47eb6da7bacf4ef5a7a8bb9d9126f9484a2ca47a422c8b59a73ac648" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "1ea84ff8833c015e433a6da2296bd6339f8d3a233f8d31dc350822764ba56e03", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jdk-19-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jdk-19-ea.7_macos-x64_bin.dmg", + "checksum": "0885e7a8a499a5c7565207351b73f4b5aaa6493325cc2e5ab3e2179a86d464ec" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.7_macos-x64_bin.tar.gz", + "checksum": "af882f92d5b3e7027cabe0776d872b117c7ddb0993b2ae4636e37667035cfcd5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jdk-19-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jdk-19-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.7_windows-x64_bin.zip", + "checksum": "5ec3075646e53485aa2ac36ab083c62cb5dfd55342295e81ad7041df5781f761", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jdk-19-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "877d9736b9b42f8c436aa2acc6d6662efb1805e3bc8aafaa1ba88a05b2c9d2a8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jre-19-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "1d26cb3b2af2883d9b0496a3252336b2b06f297e446bb5d34187c8aedb456c1b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jre-19-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.7_linux-x64_bin.tar.gz", + "checksum": "2eae0e04bd0703f6811a4b35eea1ace536aaff646890886ba0f5a0570e627b9c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jre-19-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jre-19-ea.7_macos-aarch64_bin.dmg", + "checksum": "d7aa7a80e1646af518049e2863b8a371d760da75850e00ccfac6efb2d0335c4f" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "17aa5b819e8a3151db1ab33bce76255515c12c6e0b03922ea740b9d56cda4591", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jre-19-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jre-19-ea.7_macos-x64_bin.dmg", + "checksum": "41c7567f4b2f320eb8dc9231ef89cbfd7804ffa0e8ca6df2271efbea2423660f" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.7_macos-x64_bin.tar.gz", + "checksum": "d0378300414cab1ea97ba36cb843c97867478942e83212e47b8e4dc5be43a4b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jre-19-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jre-19-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.7_windows-x64_bin.zip", + "checksum": "60437ef5266084d855ac9056f07e655d871caf644d23c1be254a9784a9d17890", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B7/sapmachine-jre-19-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "eda524638cc9411f45c4bf096ecafa926782a4b419e06919c87e227de65b5b5f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jdk-19-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "21cc0b0b3cbab8a38c8a104d3c10502b7f0161dfee797ca8ba42727fbcc8c1e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jdk-19-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.6_linux-x64_bin.tar.gz", + "checksum": "8cb35f51c34aa513ccc29ca85cb1fa876d82ec31388a5528ad0b60fe4095fe24", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jdk-19-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jdk-19-ea.6_macos-aarch64_bin.dmg", + "checksum": "f89995af987816cf72bcdb0994c491c97e50d667862ad256fdb3eecf9369bae3" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "91cbf4d8cff42607b7d4dc4739f3ab5e8c5fb9a51e1797bc04ddcdcecff97cb0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jdk-19-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jdk-19-ea.6_macos-x64_bin.dmg", + "checksum": "faa5267ea8b9f5353966fac2e14b521d05ff0bb4dbd1c07f909966dd25c348ee" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.6_macos-x64_bin.tar.gz", + "checksum": "3b09fce382565c68383b40de89147e8b9453e084b42c03dfee59c056d414c295", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jdk-19-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jdk-19-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.6_windows-x64_bin.zip", + "checksum": "915d1130d0d9b9cab3518d572d8284fa4a60ca91afb32756b22719a2b7989b64", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jdk-19-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "16145c4346ec39922e57c14d0c08ed0befb97df65348963454c32c3283de327a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jre-19-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "d91295f121f33b14edbf1f677129dec8e49f40b1e4c9b866e639e7a4fa951e58", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jre-19-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.6_linux-x64_bin.tar.gz", + "checksum": "9ea78b3342898942c89028dfbff5937fc7603d8b5ab89229671dc16a6dd17166", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jre-19-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jre-19-ea.6_macos-aarch64_bin.dmg", + "checksum": "27a3f29eeeaf37c616343fa352fd87292fb21bbd5c2bedc82326da7dfdae78dc" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "ea169e777adc7d6f896de0cb2c4a7917b1ec2f2be1d7cd526d4ceeaabfcca7c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jre-19-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jre-19-ea.6_macos-x64_bin.dmg", + "checksum": "5ae05e070473da573318ddff728636e1d5137bbf1af8268ed0804f9396c675dd" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.6_macos-x64_bin.tar.gz", + "checksum": "0ed7955cdf9207358c71c18d766e20bcd6a0dfdfd2bb54123910fb1fc9d9452a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jre-19-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jre-19-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.6_windows-x64_bin.zip", + "checksum": "c20b62b4248aa61ef83e768efb9f337f81550ca2dfcb04b4f8ca0cbbe29e2c21", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B6/sapmachine-jre-19-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "1e9dc2e87e9ea5b809790a8259bf484ada73406e0a05cdfd8e6467cf20b3637b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jdk-19-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "0b24846fbe4ed6c634736d5172c931a7f4eb2a6873324eb71959801d2b3faec7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jdk-19-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.5_linux-x64_bin.tar.gz", + "checksum": "36f1a4ba7f8459acef3a91ecdd97dd1dc97beff20ca12ed5a4066303277241c1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jdk-19-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jdk-19-ea.5_macos-aarch64_bin.dmg", + "checksum": "37652d40d052ff8a20ba0ad83a28c1b1c35f4da1139a5f960036c94a2f542613" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "6cc36b2efdc93fa8fee8814aedce6dd4e8e47c65b98d1970bedac6e0945eb8c1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jdk-19-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jdk-19-ea.5_macos-x64_bin.dmg", + "checksum": "c6dcde8ec05cc1d8054631f1e2c319a1dca169ec0524f7b6f9ef2b1ac59b7f49" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.5_macos-x64_bin.tar.gz", + "checksum": "15efa6015c6955d799e904beb1927adc00a8c9fdaf1968364db42bc070c8ff61", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jdk-19-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jdk-19-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.5_windows-x64_bin.zip", + "checksum": "6b68ff99315ccbbe44bdaf9621940fb35e247a28684a212e01df169a6790e6d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jdk-19-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "bb1a61d49792bd1dbdcc7dc4b74b62cdc4dc78527a205227bcac6b61b62a04df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jre-19-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "2e7f8bccf948283d1bb0db5f3b8d10cefe5eb2080556cdf675fe394baf83e2ee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jre-19-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.5_linux-x64_bin.tar.gz", + "checksum": "fd65f09c590bc2d6e64e5a85d66cdfb3adaa5617ba137b1910730ddc0bdaf1a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jre-19-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jre-19-ea.5_macos-aarch64_bin.dmg", + "checksum": "d241f8f83d9e0fc7f4a1666d3dcbe2d9706c1e85ee482f16fb91c572901711ab" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "f0f609cc70cae04df26e23c6fddeab09e1ca9782ae3dc954774d1dea7022b624", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jre-19-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jre-19-ea.5_macos-x64_bin.dmg", + "checksum": "a63af239e1d803a9b27333da4f7dd78b4e14c1339ae8b54802dfe27cb43afb4a" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.5_macos-x64_bin.tar.gz", + "checksum": "4bafa97e326bdeed05674b064dfd47a44efe1de44651bded3e6ca423611c10f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jre-19-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jre-19-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.5_windows-x64_bin.zip", + "checksum": "fd840bbaf9192f1c3bfa968ed110edc22a9cc68c76d20ffef2398774dd568f58", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B5/sapmachine-jre-19-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "ff9f4631287ba1266a254a5366b7fc559526d688b279d4f65b3003ab8ab3c6a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jdk-19-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "abc22167c9565cf42fe305f704566e6e2d6b122625e01284455354ecd9a1e695", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jdk-19-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.4_linux-x64_bin.tar.gz", + "checksum": "ab7b973445f457d07104b4a50e292cbbab88b4d37d98999027a3c72ab771a903", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jdk-19-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jdk-19-ea.4_macos-aarch64_bin.dmg", + "checksum": "f444c07eb94369ff8d9945b75f72e00d892f806beb8e15b4d2a3c8b46cbeefd6" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "1565ac1fd7d893fddacd29d6ed09baec69d0aa4580501e06a88e123a8ebc4461", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jdk-19-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jdk-19-ea.4_macos-x64_bin.dmg", + "checksum": "51caae6e946b3dd1129bbc97dc0deb9711484b65281d7b0e720dcb0614b1ee37" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.4_macos-x64_bin.tar.gz", + "checksum": "42a88ac34f23bd524db7338932e6e80d74b2bca7a43bbe5bdf61811581107091", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jdk-19-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jdk-19-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.4_windows-x64_bin.zip", + "checksum": "9b9e3314d308724ed3d1cac50341b034f9fbb8a8ca9be2414aa94694ff4d996b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jdk-19-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "01be98d885f294db65f954a2ae00ac6fc9bb356a4d60f307e012cc8664f3b9ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jre-19-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "3f1f6506394e587df7031b73362c3b24b5f2b29bd66166d81d00091db29763d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jre-19-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.4_linux-x64_bin.tar.gz", + "checksum": "812968fbf26badbcb68c9d510762504c39fbf76af53b5d9f2091f29424dd3fa1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jre-19-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jre-19-ea.4_macos-aarch64_bin.dmg", + "checksum": "ac112c2266608e0b863acd125463410dc014db77b24b8caac969ee766f5c089c" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "befdca62725e0e02f67fad81e6de1e517436a224e56df10dc50e3fdff0c9796b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jre-19-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jre-19-ea.4_macos-x64_bin.dmg", + "checksum": "52453da5211f2a3e31e032dfeaa90fe4e3f4972d8b2ae5d11c8b24e46e81d3d3" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.4_macos-x64_bin.tar.gz", + "checksum": "76c8185a9e792b8b577a38b71d68cef7d7ae30b84248ac111c25247263ac5cc6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jre-19-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jre-19-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.4_windows-x64_bin.zip", + "checksum": "49c73865a95e967a6385eca020ff8fca4c2b1a9de008ac8fca31198fe42c03e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B4/sapmachine-jre-19-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "3767a2338fc81b33b7deddc632784fcb85dc186528708a54906fced1135c3dc8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jdk-19-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "bb21c7d15f226163228729e0620edf1f686b50a4a18e0ae7ba353da4cd589fcf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jdk-19-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.3_linux-x64_bin.tar.gz", + "checksum": "6c044433a9fc1dd861edc9d2c727492dd0bf5bcea243dd002a16d15b64159c44", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jdk-19-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jdk-19-ea.3_macos-aarch64_bin.dmg", + "checksum": "638b3ef0e5f4f80646e181748794a073d08fd9930ce8deb5ed555a60f90cd0bd" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "a4530edcd6fe410a889584df864833f788efe3bcd81dd94a0736d71b6cad8467", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jdk-19-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jdk-19-ea.3_macos-x64_bin.dmg", + "checksum": "b17babdb8f771d83a6e80f6eaa8395d277fccf2582716fd77b53118daa871708" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.3_macos-x64_bin.tar.gz", + "checksum": "050f8204897f8616086dd32c14341ac8bdf1d2a116427a9422ab996db713fd43", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jdk-19-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jdk-19-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.3_windows-x64_bin.zip", + "checksum": "b6fd3b3a12318072f33562450ab8df8b1c88143bab5c0474bfe8c6206979d2b1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jdk-19-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "a40d693d74d1339b8b202cc5a710db72907ce5da1cac37f0a4f412a68362b83e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jre-19-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "2506d9fbc989cc1877072316f30e5bbae98fad6b847bc3d7b36510221e8dbb19", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jre-19-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.3_linux-x64_bin.tar.gz", + "checksum": "54c7b8b84b84da3c57b34504d7a04ff19b24ffd50c8b2184d4ce627ca9529f09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jre-19-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jre-19-ea.3_macos-aarch64_bin.dmg", + "checksum": "ff438865e1e671335d31d158d87a353a3126b633d8705991341bceea51f84482" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "f70e04875f679d6cd0c128bd8a50936ab41daea62f24d9399169d72182563cc4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jre-19-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jre-19-ea.3_macos-x64_bin.dmg", + "checksum": "2de3c3b141d265911d294508da9d6d7cb4cc6674aabe469d2b1b89e44efc0b60" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.3_macos-x64_bin.tar.gz", + "checksum": "7cbd5dcfde31c31bbca2872ab0f5b82ec83441d0f8c4b54f267adebf7fce771f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jre-19-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jre-19-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.3_windows-x64_bin.zip", + "checksum": "6685423dc452fc58b08f87b658bfc4b4e04133fa1abf3ac85725edb292945504", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B3/sapmachine-jre-19-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "5eaed09babd829dbe036b974e0312af703173837efb97424a567bed2365663cb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jdk-19-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "0136cdc9058d519d8e754a95b6d45d266ebed1784f54b2d8dee9a6a6287b2d1c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jdk-19-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.2_linux-x64_bin.tar.gz", + "checksum": "1e0dd3643335300915cd579eecdc4aef59c3007ae5d8cd33aaccc0570a449ed3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jdk-19-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jdk-19-ea.2_macos-aarch64_bin.dmg", + "checksum": "61a6f9cc83b68bdd43612e89514e34d3a9130da1e2c8fcb1650d086e3b112983" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "0fa3ada768fec6a30e2d3484bf4c4b3816fa13602c562ba129ec524b44055c8e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jdk-19-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jdk-19-ea.2_macos-x64_bin.dmg", + "checksum": "de74c4f6cb2499014aa10fedf28ba7970bdafc6a18950d65ee42d4cf7ad6cabd" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.2_macos-x64_bin.tar.gz", + "checksum": "281f9660df219c84bd2203210fdd7235e41e3864beef61d71c2da3135623d402", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jdk-19-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jdk-19-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.2_windows-x64_bin.zip", + "checksum": "a0a7f665b02c5c1289ae96c2a4d6b19576c58a7e3c4ef513ca18143e1f81b48a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jdk-19-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "8cdca73daa9d77b48b834052e987dd943e1c89044dfa6645e2290a8e84cc40b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jre-19-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "794ad5526da07bd6aff116578f77b432f9709fdd8f70a99312c6acc2bc9ac0c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jre-19-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.2_linux-x64_bin.tar.gz", + "checksum": "e69fb951944a855dcd2e7fb9987a307335ab8abcc89c40ecb61598330c6a33ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jre-19-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jre-19-ea.2_macos-aarch64_bin.dmg", + "checksum": "32c545285bbfe6e526381efd38b3efa03358709e1203f0d1acf89eadb357b109" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "4f5746d4bf2666c4c95a99b64c8588b41940d7d353ec8edd121414513fd484f9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jre-19-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jre-19-ea.2_macos-x64_bin.dmg", + "checksum": "368819af7e4620117aea4c7d3181f9d7609ff905152399f522827297d8e59e94" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.2_macos-x64_bin.tar.gz", + "checksum": "ee9d3427ab472f5ba71c45206e75e3d9efd5a9a4370e83e3111c9ef27c754f61", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jre-19-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jre-19-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.2_windows-x64_bin.zip", + "checksum": "78e35382f3d6f5f52471ffbd94019314b3e45dfcfc4a91ee7f8b448ba01c9452", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B2/sapmachine-jre-19-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-19+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-19%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-19-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "d7d3c7caf386f3a072d0d8d62bb58fba2e3a42c8effe85411c8061f867e596ee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jdk-19-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "c473194de9d3d9ebd99870321501adef4c33590090a53bcd28b58a36d643d3d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jdk-19-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-19-ea.1_linux-x64_bin.tar.gz", + "checksum": "78fcdde68bea17c3ad02c9af2736204a715467e09de6e606ee8c018593afcfd5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jdk-19-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jdk-19-ea.1_macos-aarch64_bin.dmg", + "checksum": "1211d4d00f80a745470f4efe37a44cd8da89f14d252ce3f92bcb06f5fe3d5003" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "a5bac783c3e2da4f70bcc436ad46772e06d146e6fa58f3513533c6876ab516d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jdk-19-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-19-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jdk-19-ea.1_macos-x64_bin.dmg", + "checksum": "fb46507cbfb754e7476716d77f4caac018424d8bd88461d48b781c29ba6c4025" + }, + "tar.gz": { + "name": "sapmachine-jdk-19-ea.1_macos-x64_bin.tar.gz", + "checksum": "0e9207e6b49d4426f9ba4cfbdb3c18389b898be123073351508752a9636040db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jdk-19-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-19-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jdk-19-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-19-ea.1_windows-x64_bin.zip", + "checksum": "b2b21b6195035a43c335ed86a96abd34f470c78a379766bff96c1053cf39b81d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jdk-19-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-19-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "9149dd71ba9c680a2f7849f0d646281f88d7bf42c6d6cc6e80056e79df998db8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jre-19-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "bbabe9d8b6b25def6b3bf83b4ebed0d9f4f4d4123a2cc0af90c6e368e39df7b1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jre-19-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-19-ea.1_linux-x64_bin.tar.gz", + "checksum": "6c4af347889ad01dba7734dc98a82cc0b61b1c125947338763f1aaa3cc97d67e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jre-19-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-19-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jre-19-ea.1_macos-aarch64_bin.dmg", + "checksum": "6139d036ee1cbd142104dbecf02f7fca2b834a612cb217ebd49a360be2218aa2" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "7894b95b069aa2fe8f7a0bb08dfa674c1bfa36dfa9f0a57bfb05b1d3985c110f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jre-19-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-19-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jre-19-ea.1_macos-x64_bin.dmg", + "checksum": "162154baaffcaa40edd7a4ec96db60a748aaf0086931ac84a867452f6f30bac3" + }, + "tar.gz": { + "name": "sapmachine-jre-19-ea.1_macos-x64_bin.tar.gz", + "checksum": "6d157ee80bf2b041fb0fdd67b906c295033daf6c4ade442a3fac4d0e272e2f0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jre-19-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-19-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jre-19-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-19-ea.1_windows-x64_bin.zip", + "checksum": "1b4edd2950a0ff87845e239ef08fdb386b4f65502dad6f2ddc5b9fda7b1bed9a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-19%2B1/sapmachine-jre-19-ea.1_windows-x64_bin.zip" + } + } + } + } + } + } + }, + "lts": "false" + }, + "18": { + "updates": { + "18.0.2.1": { + "sapmachine-18.0.2.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18.0.2.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2.1_linux-aarch64_bin.tar.gz", + "checksum": "16108ea2b1f0f368f08369ac90e5793214bd2fc204e88e17af0b51452dc70cc9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jdk-18.0.2.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2.1_linux-ppc64le_bin.tar.gz", + "checksum": "ebf1f8185bba80567a36c4ad1f0ed12663cb5275bd6af9644d44b549c12c0579", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jdk-18.0.2.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2.1_linux-x64_bin.tar.gz", + "checksum": "06b8caad96303cef8ad2b9012faa256d9d57146520f51b67d8778de868b0e7f9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jdk-18.0.2.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2.1-beta_linux-x64-musl_bin.tar.gz", + "checksum": "04a97ee8426ba87f18614acf11f76d0f7f5ead1d92c9af35bd6f13bd19912093", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jdk-18.0.2.1-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18.0.2.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jdk-18.0.2.1_macos-aarch64_bin.dmg", + "checksum": "1d43d404987b67fb5fa9667a4e22d01a48a79ed8a9fda52d1570414f81ba775b" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.2.1_macos-aarch64_bin.tar.gz", + "checksum": "3ec5a50c2404c2bbe19e6d9b2beb59763642ad9ab4d800e10ff8ca76c96ccf70", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jdk-18.0.2.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18.0.2.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jdk-18.0.2.1_macos-x64_bin.dmg", + "checksum": "16125f779bbb631d62eaea6e55fda405344b1ff4fc17e2b1edcc946d3f8abd1b" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.2.1_macos-x64_bin.tar.gz", + "checksum": "b1a125af11804e90ebb6d4eb1be8336b706cb39a38ffafdbf5906de9dd0cdf86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jdk-18.0.2.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18.0.2.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jdk-18.0.2.1_windows-x64_bin.msi", + "checksum": "f2b9d5955f5d9d38539d2b278bf6fc5baba35e4c3737e265c2976ad7920d0e69" + }, + "zip": { + "name": "sapmachine-jdk-18.0.2.1_windows-x64_bin.zip", + "checksum": "03db06ccccc69d519367fb1bf8142f7f447c7e955ddf9eba0b76a84c8469585d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jdk-18.0.2.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2.1_linux-aarch64_bin.tar.gz", + "checksum": "def1e6d34af92cbd52dcd2829ee21843837cbcf0b979bac29b025afbb55ca491", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jre-18.0.2.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2.1_linux-ppc64le_bin.tar.gz", + "checksum": "a7c8b40f010c8050b89169981d740e28d209e41a03e0a6c3020a5339a80c5c4e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jre-18.0.2.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2.1_linux-x64_bin.tar.gz", + "checksum": "eb8895b8eaced501dd8ebb36bf010e318f54f5c88488783203f1213138ea87b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jre-18.0.2.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2.1-beta_linux-x64-musl_bin.tar.gz", + "checksum": "a09774c96a2eb9ca6fa662be79f7f89b45a567207328de18eb3a01f1958e3b6a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jre-18.0.2.1-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18.0.2.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jre-18.0.2.1_macos-aarch64_bin.dmg", + "checksum": "dbd19c2f1addb14357dc2f4cd40d3cc620646ed61760d2850e2cb8a586714e4b" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.2.1_macos-aarch64_bin.tar.gz", + "checksum": "bee17c7fb0642ed9fef8028c4fc38db6e4ee5d319a9ff0d0b225e1aac6178e06", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jre-18.0.2.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18.0.2.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jre-18.0.2.1_macos-x64_bin.dmg", + "checksum": "f9ee7d4a142241b59c74b30407f218a81ef909becdc97f5c08243682d42bfa27" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.2.1_macos-x64_bin.tar.gz", + "checksum": "257337bace1e8bf5228eddd0fb236ff2371042d2cab202979a053997825dff22", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jre-18.0.2.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18.0.2.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jre-18.0.2.1_windows-x64_bin.msi", + "checksum": "50251d0ada8d261b888390d41a425651ac3fd516810a8d71d020c6d3d7244553" + }, + "zip": { + "name": "sapmachine-jre-18.0.2.1_windows-x64_bin.zip", + "checksum": "a59a8a19b1e487cd463d2be5a4fe73f989cb58f48cbec0389164c2acfb129f0c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1/sapmachine-jre-18.0.2.1_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18.0.2.1+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18.0.2.1%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2.1-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "a5f39e5f327c6a4d9fc9a8eee7e097601edcb18baebbd1e191a94e302d3b5127", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jdk-18.0.2.1-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "bf2f3670461bb4201adb12aaad5ccccd9d19cfa0226d43d3e97c1a0a4e530e68", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jdk-18.0.2.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "746b7be47381ba25e48a0fed5f003fe6aa07069b88fa92c931fbcc51b60d8724", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jdk-18.0.2.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2.1-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "b3efffb2682af2407addc713b631fb33648c825c6bb3d6a014694997492aeb1c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jdk-18.0.2.1-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18.0.2.1-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jdk-18.0.2.1-ea.1_macos-aarch64_bin.dmg", + "checksum": "4f01d304c51502a03472981fadfb370aa1eaa102d7e0cbaa5021448d090a59e2" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.2.1-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "d7c77079faa952e6b64303f2e1ceb5e7ef4f6e18a913a2339a44e9b3f8033d30", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jdk-18.0.2.1-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18.0.2.1-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jdk-18.0.2.1-ea.1_macos-x64_bin.dmg", + "checksum": "89a0e3015f1f4137899829d3f19602c2d6078f182425fba1169beabd350ceb13" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.2.1-ea.1_macos-x64_bin.tar.gz", + "checksum": "15a327342fdb8880a1705b664c71d25225f497afadc8a5eecc65e72894c2d61c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jdk-18.0.2.1-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18.0.2.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jdk-18.0.2.1-ea.1_windows-x64_bin.msi", + "checksum": "b67ba04affa382b54675797fb6d672089f842fccdcf1094c806c50e0793e2aa7" + }, + "zip": { + "name": "sapmachine-jdk-18.0.2.1-ea.1_windows-x64_bin.zip", + "checksum": "8f48a2a9ea4489d390b3eb7e8d8e7840375e1e66abdcf69a2e5375d497d673d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jdk-18.0.2.1-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2.1-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "7da7c3fecda6d0f89e7734bd84c2657c4159612a31eda7300b33e823d3d4d8df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jre-18.0.2.1-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "16a4da33d6392bccf5d2999cb1c8e07bcc418752ce088392df3882bc7a652e7b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jre-18.0.2.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "2074e443a96b56f7debbf258c6d033edf6ff3193255a684acbca6bea558beef4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jre-18.0.2.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2.1-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "223270fc3d92094e7d9db8552384a0adcde04bfce256daa2e3c4b8ffa7605c71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jre-18.0.2.1-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18.0.2.1-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jre-18.0.2.1-ea.1_macos-aarch64_bin.dmg", + "checksum": "bb83f000bf081c33775822bc8bca0b3f7c39250e3adcf848b2bbc7e2e1e2e4cc" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.2.1-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "e44d52bc874fa8d24fa310eec328d2697152033329860354c7fc56b2cec4ade4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jre-18.0.2.1-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18.0.2.1-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jre-18.0.2.1-ea.1_macos-x64_bin.dmg", + "checksum": "4879a76172adfde120243082b3c1c3a3f13daef6294624d35ffef973f1e31042" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.2.1-ea.1_macos-x64_bin.tar.gz", + "checksum": "217f5df539162684e538b881c80697c792be0939517630f458eb1ce55eb4ef82", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jre-18.0.2.1-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18.0.2.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jre-18.0.2.1-ea.1_windows-x64_bin.msi", + "checksum": "ac2850e8aa831e80f2be57c0f4efc33b90f7694a0c2d6fbbf956de76da42d2f5" + }, + "zip": { + "name": "sapmachine-jre-18.0.2.1-ea.1_windows-x64_bin.zip", + "checksum": "e01ca92c99c2045d871cf8bc4830ba7228d5061774a821341ac034224411ba4a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2.1%2B1/sapmachine-jre-18.0.2.1-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "18.0.2": { + "sapmachine-18.0.2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18.0.2", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2_linux-aarch64_bin.tar.gz", + "checksum": "982cd0181bb5b620b1a5a4e94309e6054fcde6fc73833cdd59facd3d0cde501a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jdk-18.0.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "2bcad719f2ba00bafc00fa90b42e11b5bc819fded54947523330b2d4f7607cfa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jdk-18.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2_linux-x64_bin.tar.gz", + "checksum": "5a6a1753d5195537ba43f9d2d272ec66a5bab91ce11e56f2041aacfa23298190", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jdk-18.0.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2-beta_linux-x64-musl_bin.tar.gz", + "checksum": "955964a738ae1ec233f004e192fa71d3c8b8d39fb4ba606c0015d694bdbc96f0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jdk-18.0.2-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18.0.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jdk-18.0.2_macos-aarch64_bin.dmg", + "checksum": "6d298f7983b2494be94e1304830fc6d8f6b47ea8a2b9be384d8072fd9173f1e5" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.2_macos-aarch64_bin.tar.gz", + "checksum": "75a7e28b1fcfa4366dec5810265b7b8f7844d53e87005176feb797d4173456ab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jdk-18.0.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18.0.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jdk-18.0.2_macos-x64_bin.dmg", + "checksum": "80812da1eb3edf40d59c62366d9f85ab1c4b51dd0e075ca0a25bb7226c17f369" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.2_macos-x64_bin.tar.gz", + "checksum": "6f3ae5267896de1fc887b455157c26eac9c6d32c64aa6aee94b0bc2c61253b14", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jdk-18.0.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jdk-18.0.2_windows-x64_bin.msi", + "checksum": "e1425b92154d35aecc2940c31fe8e1d000541eb53f3021d8b3b30a15c9827a0b" + }, + "zip": { + "name": "sapmachine-jdk-18.0.2_windows-x64_bin.zip", + "checksum": "373f06e210a19e8347469bb4cc388de8c49acac01ad8f8da4311c6f283f1f0a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jdk-18.0.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2_linux-aarch64_bin.tar.gz", + "checksum": "91955e4af687a166a14cb4cf40405720cc62af01ef478eec8cbb4d31c95b19ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jre-18.0.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "8f82545c66f63c8d0ee60e7647ee4b6b7bd03fba6d54ba0683dc2c523176ff7b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jre-18.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2_linux-x64_bin.tar.gz", + "checksum": "ddeb08a72657167bab8e4cfdaf9e5ecab72727fcae9d87f545168356cf9a2185", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jre-18.0.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2-beta_linux-x64-musl_bin.tar.gz", + "checksum": "453b18240a58ddddd6b5fc684537c71d0ed6886c42b05ad965c94f1f1d1409f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jre-18.0.2-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18.0.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jre-18.0.2_macos-aarch64_bin.dmg", + "checksum": "bcdb1223b9d8d059ba0a5027e3185c19a7531b84f36945eb3c4b9bab998cddb1" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.2_macos-aarch64_bin.tar.gz", + "checksum": "ed8a7dde62a88bd28586bc798478592b3cadc4968bd2f0834830a428efc197e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jre-18.0.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18.0.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jre-18.0.2_macos-x64_bin.dmg", + "checksum": "80946cac0c636913f256419abe74e38a1b6869ab1f8efa353058c9565d0b2946" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.2_macos-x64_bin.tar.gz", + "checksum": "994ab7b4b06109791c6200b21c44ae14c5deb5526dc8ebe3db0cf64143b6d698", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jre-18.0.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jre-18.0.2_windows-x64_bin.msi", + "checksum": "ae12a9760d5a19dc568c572c823bed48d2a6fdc30a5d1b43235b40e90bc34fe1" + }, + "zip": { + "name": "sapmachine-jre-18.0.2_windows-x64_bin.zip", + "checksum": "131140aeee666b20cc6e8111fa557759dc20129e18c687db19aee515d60b5122", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2/sapmachine-jre-18.0.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18.0.2+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18.0.2%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "e652f0feeabf8b1615eef1a913715c1afe9486da133d9ea42f45abff884b023c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jdk-18.0.2-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "383d1d4d82e8abbe615f491581796e84fc5eefa22343ab9c7277d11add3ab90c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jdk-18.0.2-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2-ea.9_linux-x64_bin.tar.gz", + "checksum": "0f98baba8284f7cddc96429e0804dbaa264d43c9037de256b0015ccd7873974a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jdk-18.0.2-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.2-eabeta.9_linux-x64-musl_bin.tar.gz", + "checksum": "4989b82136df83139a31b8d6dc23e4309e5f953bf60003891f69a30fce00c533", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jdk-18.0.2-eabeta.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18.0.2-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jdk-18.0.2-ea.9_macos-aarch64_bin.dmg", + "checksum": "6dc01ee94fcc8f43a56f9be82275234ccbb0fc3d0e823b2ddab19fbb9d84e40b" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.2-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "cb60aafea9c3461bcf297369a2f621b37ccffb5fb3dc6d8474d35ac341a1c95e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jdk-18.0.2-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18.0.2-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jdk-18.0.2-ea.9_macos-x64_bin.dmg", + "checksum": "389a4da4dbec34087e1a1af35924dc7a33e852252101fec40f3636da440d0c07" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.2-ea.9_macos-x64_bin.tar.gz", + "checksum": "6dccf3abff0749da1dffb426c627644f6a8aa616724d734a04fc37f0dd943a16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jdk-18.0.2-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18.0.2-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jdk-18.0.2-ea.9_windows-x64_bin.msi", + "checksum": "e7db98e53e234806febad47d3616d16a6fa44a196916658cc6ea7205fa9f2ac5" + }, + "zip": { + "name": "sapmachine-jdk-18.0.2-ea.9_windows-x64_bin.zip", + "checksum": "034859f42a04aebf34f14f7919efdcd8373aa62546c29e01ef80befd35593c3b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jdk-18.0.2-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "049990ce8ceb0915a05f6d85d7bbc01c594b4c46a0bf9dd2414670cc93b0aaa8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jre-18.0.2-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "70a68e834688b48ee732892aa80e48070021b5e8acd66b5defbecb4e046dcf83", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jre-18.0.2-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2-ea.9_linux-x64_bin.tar.gz", + "checksum": "1ec061d66b4b5a3d3ab6497efa664506d2407ba9725cf8be418346d36019ce68", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jre-18.0.2-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-18.0.2-eabeta.9_linux-x64-musl_bin.tar.gz", + "checksum": "9933bac7c6a039b6fc41d83ac886cb958f54d66622dd96a33d3289a8d80ed749", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jre-18.0.2-eabeta.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18.0.2-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jre-18.0.2-ea.9_macos-aarch64_bin.dmg", + "checksum": "3a7b123f85611b025210820abba6622cbb32d64d50c352007e30cfc2d93535db" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.2-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "a985b69e48c56f745c36956aaa4933c7ca22c650eb9844497b95b567d3406409", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jre-18.0.2-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18.0.2-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jre-18.0.2-ea.9_macos-x64_bin.dmg", + "checksum": "54f79377d87b54d5a842fb7f8ab360d8266edb278e51fbb703d76e285e98242c" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.2-ea.9_macos-x64_bin.tar.gz", + "checksum": "2bfb88e6aa0b35e9aff41b100f6faf02d026c2dbbc249d048d096db3d820b14f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jre-18.0.2-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18.0.2-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jre-18.0.2-ea.9_windows-x64_bin.msi", + "checksum": "c4c04e49ab9e67b08fbfb9073baaaa24c940b3b13b61c931bff6a31edf358a26" + }, + "zip": { + "name": "sapmachine-jre-18.0.2-ea.9_windows-x64_bin.zip", + "checksum": "9d146b156a274ba55c8210f2e6d5cc72f38c7fa8b251e7c4071d2ddde25f6bed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.2%2B9/sapmachine-jre-18.0.2-ea.9_windows-x64_bin.zip" + } + } + } + } + } + }, + "18.0.1.1": { + "sapmachine-18.0.1.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18.0.1.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "15d566f073278096e5b01dc451d6b9057d98b33746156ff2786425110a399a49", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jdk-18.0.1.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1.1_linux-ppc64le_bin.tar.gz", + "checksum": "d02d525400629c3c151d24b3f90661e94bed338a12ef592a1a1fc4bf0e4f3437", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jdk-18.0.1.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1.1_linux-x64_bin.tar.gz", + "checksum": "de4357f3c04fc03241047f93ae01f25c3db17408c584a7504f3545091b35d736", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jdk-18.0.1.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1.1-beta_linux-x64-musl_bin.tar.gz", + "checksum": "c5086dbdb757a39b814e7c783c7c580ccdcf90f60ac8de20cc9fb4e31d624a84", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jdk-18.0.1.1-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18.0.1.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jdk-18.0.1.1_macos-aarch64_bin.dmg", + "checksum": "0b0fd7590ae9a7ef1a9c50474d711bb994ce2fe1172c94088f0541b9cf941e57" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.1.1_macos-aarch64_bin.tar.gz", + "checksum": "21f4142aae281003867195c843f7587902402f79fc4a57a7d6fdd2162e8106d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jdk-18.0.1.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18.0.1.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jdk-18.0.1.1_macos-x64_bin.dmg", + "checksum": "e26be90ec536d7f1f24a048ab289ec36829cc6d6fc67d113423b051bcbd76ee7" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.1.1_macos-x64_bin.tar.gz", + "checksum": "b184f2202f27c72724f8488ffca6ceb7b375da8c1b41b33460a403fe3573e244", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jdk-18.0.1.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18.0.1.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jdk-18.0.1.1_windows-x64_bin.msi", + "checksum": "d8906af534f6f753adcec69485bdba27101b6580820cf721f359934b268784b4" + }, + "zip": { + "name": "sapmachine-jdk-18.0.1.1_windows-x64_bin.zip", + "checksum": "4f8932b05f5de02d30420e348d42a60d1c0f6a004b41aac5b6b6b0b32a130a7a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jdk-18.0.1.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "038177fb61439417117c3a65bc74cfea108d2c438f15babef4bcd2917f9bbc7b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jre-18.0.1.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1.1_linux-ppc64le_bin.tar.gz", + "checksum": "5c1f3fd51e8b6ffa0a077e8638da28ee3572e97642ea3c4c44f08459fc813db6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jre-18.0.1.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1.1_linux-x64_bin.tar.gz", + "checksum": "216c1b2666149117647895dd999fe0c73e77653bb915921d23be8add28a55a75", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jre-18.0.1.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1.1-beta_linux-x64-musl_bin.tar.gz", + "checksum": "eade96a8586953bb05ef6f1bddaabf7e8f32b5ac87c3a2cc0614261c8abc56d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jre-18.0.1.1-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18.0.1.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jre-18.0.1.1_macos-aarch64_bin.dmg", + "checksum": "1779b501f404c106a28bb4873c08207c750cac659d2bf44df49d955f1ecb7fe1" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.1.1_macos-aarch64_bin.tar.gz", + "checksum": "0a4d8df2bfc5d090fcc64549b70de2d8957d1f9248b705293240204f2bfca38b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jre-18.0.1.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18.0.1.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jre-18.0.1.1_macos-x64_bin.dmg", + "checksum": "a786f86029ea90f0e2d74bc1fc5096e63813f90fbc8839e6b248f457fb3b8177" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.1.1_macos-x64_bin.tar.gz", + "checksum": "ffb005923014e2249b3be6bf856cd3739f274703b738d2fd48d384807f042c73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jre-18.0.1.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18.0.1.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jre-18.0.1.1_windows-x64_bin.msi", + "checksum": "c186864157344db94ef9bc88eaf8bde8e80566cb7241c92aaebc12db81e910c4" + }, + "zip": { + "name": "sapmachine-jre-18.0.1.1_windows-x64_bin.zip", + "checksum": "2644fc5a5dd9acfeba23ecf661a0481cc113e48ee7975f2346c2842e907a38f9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1/sapmachine-jre-18.0.1.1_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18.0.1.1+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18.0.1.1%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1.1-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "9461edfeaab342c4b066c55a4e66687e5ed178ee7ff316f536390b808ef56da6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jdk-18.0.1.1-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1.1-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "ddc3a5e02b5d5cb3695d4091b751b00be486a2e583d6bac3d97a7e0ea7d07601", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jdk-18.0.1.1-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1.1-ea.2_linux-x64_bin.tar.gz", + "checksum": "dbed317c6c36a14f965bbad51000a624c8a48eea3208e4706f0eeeaaab86f69f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jdk-18.0.1.1-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18.0.1.1-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jdk-18.0.1.1-ea.2_macos-aarch64_bin.dmg", + "checksum": "46826307e35729a2281560f69ce8c3343c034e0094d690ee900c5bad3cefc6d4" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.1.1-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "b8af5effc5cb544834833e4f34bca5c96253d05e31a19eaf2dac1929e50696c5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jdk-18.0.1.1-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18.0.1.1-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jdk-18.0.1.1-ea.2_macos-x64_bin.dmg", + "checksum": "d1e322b0c0921ee352e31297d966371731d30612248a029ed1b2537f2a9153f5" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.1.1-ea.2_macos-x64_bin.tar.gz", + "checksum": "d7f07c71abe9a2fa31da00e4236ac13f9b80ac9a858ea93bb8e9a312e9878c17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jdk-18.0.1.1-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18.0.1.1-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jdk-18.0.1.1-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18.0.1.1-ea.2_windows-x64_bin.zip", + "checksum": "702241ba52b921c1131a158a97bcf1346f211e24115498712a47112015a29c8b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jdk-18.0.1.1-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1.1-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "de47632b77a44e39044cea3f0b9eb8fc01fb7056f8cbad0ca21e4b0c593e0e0d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jre-18.0.1.1-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1.1-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "333f4967bf24aeb87187883faa15dd484b93ef5b9c2431a4549b688dabb8111d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jre-18.0.1.1-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1.1-ea.2_linux-x64_bin.tar.gz", + "checksum": "5cba78fc22807fbc852ca0d9025cae172a0f058b342842f4dfdcc78f7a983a4a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jre-18.0.1.1-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18.0.1.1-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jre-18.0.1.1-ea.2_macos-aarch64_bin.dmg", + "checksum": "5b6693afd16a021a6f263fb6c63072f9e6d125a258fc1726bab18ac78c050ed1" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.1.1-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "6aa21158e789c7bcd1652129ac297ac5910a95c74371bc471d53d7702e1bfc7a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jre-18.0.1.1-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18.0.1.1-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jre-18.0.1.1-ea.2_macos-x64_bin.dmg", + "checksum": "d0fc2471a4028cc2018cffe0a17c646b2e0177d4972bcb81d9cb6857142bb4f7" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.1.1-ea.2_macos-x64_bin.tar.gz", + "checksum": "0d14faf4c3c9f36214571fa11cdb461920603d7cd96612517217e4a6818539e1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jre-18.0.1.1-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18.0.1.1-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jre-18.0.1.1-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18.0.1.1-ea.2_windows-x64_bin.zip", + "checksum": "a2e9b3faaae8b581239dcdddb91728add631f65131b4b9c03e678ced039ad296", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1.1%2B2/sapmachine-jre-18.0.1.1-ea.2_windows-x64_bin.zip" + } + } + } + } + } + }, + "18.0.1": { + "sapmachine-18.0.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18.0.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "c7a3171a0e09df42ba5f59b8574caebc6e823073a6bb4cb4b07c41e3c61c7a97", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jdk-18.0.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "b6e6008222d698a5bc44e18de2e89e796a10a7610f0ca82dc5fa75c38c5e4710", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jdk-18.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1_linux-x64_bin.tar.gz", + "checksum": "574be15adb877bcc91894468868ae4f34c56e45bd56f201f30a04a6c321e42bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jdk-18.0.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18.0.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jdk-18.0.1_macos-aarch64_bin.dmg", + "checksum": "1ac9161d77d0548f61e2b90c7f2b3b6eaf9a7da327c52b4dc79fdffd28976c98" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.1_macos-aarch64_bin.tar.gz", + "checksum": "340846512d086051e61b36be3eb4a2a30845ea759505084779ca1b9658d1c491", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jdk-18.0.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18.0.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jdk-18.0.1_macos-x64_bin.dmg", + "checksum": "e295a69941ac9345794503b47414ff2c1c8534cb66e75d00721939c63f27735a" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.1_macos-x64_bin.tar.gz", + "checksum": "f876e444c7761303c180de6f43c092c6531581576b0342e4f2d41716fb6ce16a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jdk-18.0.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jdk-18.0.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18.0.1_windows-x64_bin.zip", + "checksum": "53e93eaaeb01fffb51d629850d20e87390e8a878c396de2f3cb82348d5a62bae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jdk-18.0.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "cf1616ea570cf7123730ced1373bc7774cdc97a47f205ddb7010b4bd412bec32", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jre-18.0.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "64ad3421e865263f1fcbd430b738696e5445aaac8468316ce325db77e5d33abf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jre-18.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1_linux-x64_bin.tar.gz", + "checksum": "8d7e853bc0b770559586c1cbd4106fa2f70de841d6b289f9b209eccbb26925ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jre-18.0.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18.0.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jre-18.0.1_macos-aarch64_bin.dmg", + "checksum": "6729c76c02acc2ae3845f2e29d389d6d5547d6bcf9c13fd138886f8dd7c14b94" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.1_macos-aarch64_bin.tar.gz", + "checksum": "0dbe8607d6af23527ccf01f27866b9361a4ddbf992f42b0d66b851d0acbd0172", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jre-18.0.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18.0.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jre-18.0.1_macos-x64_bin.dmg", + "checksum": "6bbae8e09c7f788e1c00a2bbc18ebf3c32de537850498275b12bd65d8c0079d5" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.1_macos-x64_bin.tar.gz", + "checksum": "01930c37e18824f2beceadc85bb255a3d4f4eba72ec0c8fa8882e32b714383d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jre-18.0.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jre-18.0.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18.0.1_windows-x64_bin.zip", + "checksum": "60c013a80953a2e9aa72b13be135fe3c979ec9934cb8cbf9dae63bb2ab3cc918", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1/sapmachine-jre-18.0.1_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18.0.1+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18.0.1%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1-eabeta.10_linux-aarch64_bin.tar.gz", + "checksum": "be5894a48fe775785a19c6f9fb64a993c61a56e25c6b07b9e8d55e0af83dd162", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jdk-18.0.1-eabeta.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "2ef1a5c47c426100627d7bb13a162de2d5b66132a99b82439961c7e5484d5913", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jdk-18.0.1-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1-ea.10_linux-x64_bin.tar.gz", + "checksum": "9ceb59ce3ce19c79b1b3615e04c1e7e2171d3e46bfeb9eb9a9841796a610a027", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jdk-18.0.1-ea.10_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18.0.1-ea.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jdk-18.0.1-ea.10_macos-aarch64_bin.dmg", + "checksum": "2027f18b7e3ba635785336fb8066fd962edbb15d47d7a65005cb5885446c432a" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.1-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "e32b83fc688673a8e6e8bbf9b8cea9ee41564b495d02ed1f6879a4f39019e3c2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jdk-18.0.1-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18.0.1-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jdk-18.0.1-ea.10_macos-x64_bin.dmg", + "checksum": "b6c7a71c3e964fe06eeca0f4b92ea5a09f07410f951cdfaceebf8a0dc49b449b" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.1-ea.10_macos-x64_bin.tar.gz", + "checksum": "aa3fee5cf093670f3be7b9a87cc761ef18355079fef510b4956835ba21801622", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jdk-18.0.1-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18.0.1-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jdk-18.0.1-ea.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18.0.1-ea.10_windows-x64_bin.zip", + "checksum": "10a04d70be6f48d9be5fbbe1015494997b1ae0a7f4b4a439d83094f56da3ecce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jdk-18.0.1-ea.10_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1-eabeta.10_linux-aarch64_bin.tar.gz", + "checksum": "7baf96955862a8c9c0645e527c1e759924744f11010baaea9f415206f65da25d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jre-18.0.1-eabeta.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "80a897855cba4b0a1bf8faecf639285a755143cec9844990eef1bfadb009fb25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jre-18.0.1-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1-ea.10_linux-x64_bin.tar.gz", + "checksum": "0ac89c17c72a10e67234cbb00def6e9533df9be4e0e17700285f7850329be3ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jre-18.0.1-ea.10_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18.0.1-ea.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jre-18.0.1-ea.10_macos-aarch64_bin.dmg", + "checksum": "0466bd009e2816f7534327295ddbd2c5ecd1f572efba2ca8403364ead750e45c" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.1-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "ebb8153092c18461ff18ddcec166eb6c1339b671a3daf3acfef8aea3eb081126", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jre-18.0.1-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18.0.1-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jre-18.0.1-ea.10_macos-x64_bin.dmg", + "checksum": "c8f0f4cd2634e1ce4a46626b266cb26e79a2a10f9ca40c3c04f55e90c0c53de4" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.1-ea.10_macos-x64_bin.tar.gz", + "checksum": "99a1d0caae8125ca8e2e907415ec2a5e0bcfe041ac59665a1a928dbc752b5d0e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jre-18.0.1-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18.0.1-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jre-18.0.1-ea.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18.0.1-ea.10_windows-x64_bin.zip", + "checksum": "c460f0a7a6f7bd300e5d9912eb0a1ba8c632e9c9b852a05b18d6858800d299b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B10/sapmachine-jre-18.0.1-ea.10_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18.0.1+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18.0.1%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "b36008b0a386f6dac3d2868b57273c5109ced60ab1f34e210450aa9ce9a3c181", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jdk-18.0.1-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "84fb3efa0a93360be21d94ed3a358b7d29c9f36e13aad84a2ec047d2a6972365", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jdk-18.0.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18.0.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "aad9de2da8d4fc935d1920a4991de3252b6bc2a675b93ddc0cbd095c4bd42878", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jdk-18.0.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18.0.1-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jdk-18.0.1-ea.1_macos-aarch64_bin.dmg", + "checksum": "04f2cb14395ce6a4c98ca8f19951f107584957e760684d80fd031ddf53c9e80e" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.1-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "b771e3617d4357b29aad8747b3c043fafe0cded29c79d9f4601a5715d3053463", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jdk-18.0.1-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18.0.1-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jdk-18.0.1-ea.1_macos-x64_bin.dmg", + "checksum": "69e85bf076c7667195ae81ccd9b328d2b6760e0c17e6c29d793f370b5d27c38e" + }, + "tar.gz": { + "name": "sapmachine-jdk-18.0.1-ea.1_macos-x64_bin.tar.gz", + "checksum": "16075a50f6caaadd03a2138b59f2927c4a87a48263a669da803909222b298d28", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jdk-18.0.1-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18.0.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jdk-18.0.1-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18.0.1-ea.1_windows-x64_bin.zip", + "checksum": "c096ef8181d23168769fc807b418ed0602319f5d0298afa67fb458123c92de59", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jdk-18.0.1-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "642257d837440758e792562bcd058cd8ef56fb0dad48e1a8f01c7d1344f36d25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jre-18.0.1-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "60853041ddd60e2baf26f895a4bf5c4726cc75d564a1db120f0a65ba974f026c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jre-18.0.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18.0.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "8ba1da419c20deab50223247e0a4c586f4a70c0d347d98a6f5dee4f4b31c9c6b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jre-18.0.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18.0.1-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jre-18.0.1-ea.1_macos-aarch64_bin.dmg", + "checksum": "08abf2cc6d3808c65193ea1a1fdf650471b275aeacb9ff98eb144a0f1d0dcaaf" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.1-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "9bb1fbfa9d33e72d266689847679421d86c53d1a02f0027b1153b0c6d369f857", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jre-18.0.1-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18.0.1-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jre-18.0.1-ea.1_macos-x64_bin.dmg", + "checksum": "5f4b74e4cebe12b9efb5db886956e2d3d9ed01a1240010f4ee2dcef1391c10a7" + }, + "tar.gz": { + "name": "sapmachine-jre-18.0.1-ea.1_macos-x64_bin.tar.gz", + "checksum": "3905e165a05775b50297befa017eac12162f521b6e878c08dd707019dc074f5a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jre-18.0.1-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18.0.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jre-18.0.1-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18.0.1-ea.1_windows-x64_bin.zip", + "checksum": "6945b6a9040c749a51c2375c0d34ff5b6ec29402a53c86e3b50b8e329ddef131", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18.0.1%2B1/sapmachine-jre-18.0.1-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "18": { + "sapmachine-18": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-beta_linux-aarch64_bin.tar.gz", + "checksum": "b06f3e9b440ccf70c599bc6e94f4135b0dfbcd05bedbacb872267c4aca866355", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jdk-18-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18_linux-ppc64le_bin.tar.gz", + "checksum": "078ae94967506bae0852521f82aadf2fce4ce07ec88a938e7ed08af315ab9f90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jdk-18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18_linux-x64_bin.tar.gz", + "checksum": "65082c74154b7633007cf7573d26ea07820b38f84114720c896373b0a200a765", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jdk-18_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jdk-18_macos-aarch64_bin.dmg", + "checksum": "dc5febf7d11b5e60889d94d3b95ba101999cfea45f3ebc0e22240a71e85d2ce4" + }, + "tar.gz": { + "name": "sapmachine-jdk-18_macos-aarch64_bin.tar.gz", + "checksum": "47c5fb2b20dc18080426106703d616e3db8f76e0b791bc1ef32c3b4bec6867d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jdk-18_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jdk-18_macos-x64_bin.dmg", + "checksum": "bbdc9db3a47944f3bc8c7bc7ea6747b92e4c9fba40150263af7881b312f46b30" + }, + "tar.gz": { + "name": "sapmachine-jdk-18_macos-x64_bin.tar.gz", + "checksum": "930e6ab1d4452a16ef73aa519f4a47c1c06a5d21a1233a1e68e2459fb0a5d8cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jdk-18_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jdk-18_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18_windows-x64_bin.zip", + "checksum": "769ae659cacdb227027078dac8e5c827064f895489f1c98377269e403eb662f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jdk-18_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-beta_linux-aarch64_bin.tar.gz", + "checksum": "9b5fc128e46bb4e874efa6f8ec74553daee111efbe52abe3b3ac069b2f7e946b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jre-18-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18_linux-ppc64le_bin.tar.gz", + "checksum": "b2df118352056ecd866f9fb6d80db2b77f8a1d725a330bcdb7369702950f3abb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jre-18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18_linux-x64_bin.tar.gz", + "checksum": "1d93f9b324aa204a4e2022a3142b1e1571d297e32f720d095142cfda45f7433e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jre-18_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jre-18_macos-aarch64_bin.dmg", + "checksum": "3a6bb29f3ecb9683c5cd0214ada97777de7246107b0a4709936aafe956bafb22" + }, + "tar.gz": { + "name": "sapmachine-jre-18_macos-aarch64_bin.tar.gz", + "checksum": "47d1f1cd7f2b1fb460642c68be724bb23be38e1834947434b1682a150eb9eab2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jre-18_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jre-18_macos-x64_bin.dmg", + "checksum": "e341f46fbb04aa342549a24d837a255f37dbf4b67627f3ab34a5f90cf1138890" + }, + "tar.gz": { + "name": "sapmachine-jre-18_macos-x64_bin.tar.gz", + "checksum": "f4a676434b42ab43a4a61dc1b53b79640136220d3a998da3bf3e8a652916e377", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jre-18_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jre-18_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18_windows-x64_bin.zip", + "checksum": "c2cc80c0a8744530251a5b9257bc21264a2017c20009f1d9201001ae0fc0a2e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18/sapmachine-jre-18_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+36": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B36", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.36_linux-aarch64_bin.tar.gz", + "checksum": "ac0b92df66c58e98dd24fbdeb14ed44e68881ef9f1420b15a83aa5de15a3082c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jdk-18-eabeta.36_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.36_linux-ppc64le_bin.tar.gz", + "checksum": "203fe28015416fc080b2401f3b2eccff3176e8e6cbe7ebdef575225e682e575e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jdk-18-ea.36_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.36_linux-x64_bin.tar.gz", + "checksum": "75f1854b5d2ff64d3ff57240dafaa1747ef925ccc1fa7541290f1ebe231a669e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jdk-18-ea.36_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.36_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jdk-18-ea.36_macos-aarch64_bin.dmg", + "checksum": "8a4f5f68ebe8465f44a610bf9362490e9ed546aa42b8ee4946980e0e3a5cb096" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.36_macos-aarch64_bin.tar.gz", + "checksum": "c02335491fe5972b2b0800d59ec67d32f12136be824df1821be8eac999e4eb20", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jdk-18-ea.36_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.36_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jdk-18-ea.36_macos-x64_bin.dmg", + "checksum": "5c0154f449122b649354d008fcb749188163e26046428dcaf251cfea635020c8" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.36_macos-x64_bin.tar.gz", + "checksum": "68327617a59b446e695fba43e286741c0d881af5eea04b4001120824c86fca9c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jdk-18-ea.36_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.36_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jdk-18-ea.36_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.36_windows-x64_bin.zip", + "checksum": "9121c0c4e931a90049e4665de3ef6e5e6db0cd53ca7bc5ce8f09dfe1092d3b90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jdk-18-ea.36_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.36_linux-aarch64_bin.tar.gz", + "checksum": "0ae647fa65e9b49b0369bb8844e36be1a3c2cb045f53180bde7cf1f9f7f1ba48", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jre-18-eabeta.36_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.36_linux-ppc64le_bin.tar.gz", + "checksum": "863c47fef44733c106b73cf9cc3f88a75a52bc2ae29fe062c0c4478d14fd14fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jre-18-ea.36_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.36_linux-x64_bin.tar.gz", + "checksum": "831ede9c6b7168984a15528cf63da2e862005edea7e4ce5eadd1fa0e142fe26c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jre-18-ea.36_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.36_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jre-18-ea.36_macos-aarch64_bin.dmg", + "checksum": "ed3f9054c4ffcf1c4e35e04bb32e8c1c7b0418a2ff9795eb9b04d63f6d7cc081" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.36_macos-aarch64_bin.tar.gz", + "checksum": "36830beb4a4dccfeb43e4a0775a0f9d257c5da1f88eff072e28abd6f9dd8c425", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jre-18-ea.36_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.36_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jre-18-ea.36_macos-x64_bin.dmg", + "checksum": "b4cd142b33c6df58c327f812bd35abfc99ba44367c5599c54316e92d20e0f250" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.36_macos-x64_bin.tar.gz", + "checksum": "8de5b519ee4978fa4e722a4a8593f98f386b979f3efa6c4c0ad380f04c8c564a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jre-18-ea.36_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.36_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jre-18-ea.36_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.36_windows-x64_bin.zip", + "checksum": "37bd289ec65e467d164ef3f60dc6e4333a2aac0610a6b1b80710f9ee4476fc12", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B36/sapmachine-jre-18-ea.36_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+35": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B35", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.35_linux-aarch64_bin.tar.gz", + "checksum": "0156bc03f0464810d294de4fdc893cdc9a9f4fd7b9410807606cd9a647923cc6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jdk-18-eabeta.35_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "629efb94ae9bcf121fd89351cf38aff01e7fbb12efb1a046889af8ef4dd3c6e6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jdk-18-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.35_linux-x64_bin.tar.gz", + "checksum": "6bad9bed26ec8ef4a22906466ac9434b8a7a5758af771172fe7e7f68dd2c3f1a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jdk-18-ea.35_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.35_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jdk-18-ea.35_macos-aarch64_bin.dmg", + "checksum": "f58af6dfab9fd2763a0f06b52b4b463d7952baa8d2c194f937287cdd2f1ff75c" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.35_macos-aarch64_bin.tar.gz", + "checksum": "a4df357c08c94caf4ca953401887df5027d853a754d586dff51cd99cbda8bbdb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jdk-18-ea.35_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.35_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jdk-18-ea.35_macos-x64_bin.dmg", + "checksum": "b85d3407c784ab8f54d31f83c09b5743a07ad72e5be5e23d0d9279f702d075f4" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.35_macos-x64_bin.tar.gz", + "checksum": "6fd3cce9918434a0eeee366654354024f4364cacf47065c9ff88c977c5b40dde", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jdk-18-ea.35_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.35_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jdk-18-ea.35_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.35_windows-x64_bin.zip", + "checksum": "50bc9793bbb435f706ce6e4f58d1dcdea3d7e6a2b4d978755b48915b36b8513f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jdk-18-ea.35_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.35_linux-aarch64_bin.tar.gz", + "checksum": "5fa60509ba8304118543b662728641eee4762cead6e5fd6bf2472dc249f90b50", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jre-18-eabeta.35_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "e08e412405af457f8db7e13f055821030d74d090fe1d3cb5043f1d1fb76f6f14", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jre-18-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.35_linux-x64_bin.tar.gz", + "checksum": "47b58f9491e485efbd7b691192eff51a808413198bfcb4b49be004e78d3cc70d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jre-18-ea.35_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.35_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jre-18-ea.35_macos-aarch64_bin.dmg", + "checksum": "5e9df0b96ca4d04ef5b78420188668687601771f63f4d2d4776d59fe74bea24b" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.35_macos-aarch64_bin.tar.gz", + "checksum": "49669c252485960f6676c8e256a80f5c72c4e97d27d0a5c40d5c9f49dee81edf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jre-18-ea.35_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.35_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jre-18-ea.35_macos-x64_bin.dmg", + "checksum": "1774a9b242a6949043027270d3a52dc06c7f07d34bbc8ced628d7797a1fba12a" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.35_macos-x64_bin.tar.gz", + "checksum": "d7bea8d013d81f86589384e580c5ae1623cca85704d77be02efcb732a02bcedc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jre-18-ea.35_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.35_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jre-18-ea.35_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.35_windows-x64_bin.zip", + "checksum": "b26ef06e3d8e602bf7c20c04e8f34d189c191984bb34ba8b07bb7b235a95e34a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B35/sapmachine-jre-18-ea.35_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+34": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B34", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.34_linux-aarch64_bin.tar.gz", + "checksum": "1aef4d1215051ba4ddf59f280dbca49bd39c99a64d30b91a874a116f5fc78f5e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jdk-18-eabeta.34_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "09b81436400871ad1e29ad54af9cb6c7d074c2a80f38bcc08de0058c258aff8b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jdk-18-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.34_linux-x64_bin.tar.gz", + "checksum": "c8fb440f2866133e3f6dc08457447b09fc82ee8593d95d024e17feb38b97e568", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jdk-18-ea.34_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.34_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jdk-18-ea.34_macos-aarch64_bin.dmg", + "checksum": "d3fd049fd04199fb90e45b6c1ef1408368d72049d27255b6b925fd07c80cfea7" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.34_macos-aarch64_bin.tar.gz", + "checksum": "f191422c8ffba06621b7629e91f37025b8902d1dacefc09bdb478443f80d3ff6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jdk-18-ea.34_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.34_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jdk-18-ea.34_macos-x64_bin.dmg", + "checksum": "93c68f99c49e15066952d8c814ea63f72f11ac1b5b61f00cc44a416c8b421d8f" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.34_macos-x64_bin.tar.gz", + "checksum": "2c0cd60668bf855a77c585c033777ae102acec7a0f39236801f1e1f9f74ed4aa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jdk-18-ea.34_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.34_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jdk-18-ea.34_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.34_windows-x64_bin.zip", + "checksum": "ec8c9707b3c9d95af48e1ba3fe3751a10bde52a1e333d55d7c6014aa11683315", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jdk-18-ea.34_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.34_linux-aarch64_bin.tar.gz", + "checksum": "7cbc42d08b7028d7fcd54739a5371c129577be7dd9aa276dad96df902a6cd655", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jre-18-eabeta.34_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "9f4cc1ebf0a597c30ea28f3cd83315cff068065ad710a2a67a9058776f0b023a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jre-18-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.34_linux-x64_bin.tar.gz", + "checksum": "5d42227699b2f2c4bc7c09e469413c97b4ddeb55f7264187aec42c6481ebe753", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jre-18-ea.34_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.34_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jre-18-ea.34_macos-aarch64_bin.dmg", + "checksum": "f16276339a27cff78adacbeac1b2f44ffdcc632d63e481c1dc77668db8bec000" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.34_macos-aarch64_bin.tar.gz", + "checksum": "26f41a6792c140c9d490204fca77d840ed459b7372e1463f400ae79565ccba6b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jre-18-ea.34_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.34_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jre-18-ea.34_macos-x64_bin.dmg", + "checksum": "713c6044ade557feea6ab36b324111f09e8d41dd0cd00d51bd569be515131868" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.34_macos-x64_bin.tar.gz", + "checksum": "04a2a28a0b9261b35cfe99f610958c9c6e5428bf6c258cff5cacd92a685eacca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jre-18-ea.34_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.34_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jre-18-ea.34_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.34_windows-x64_bin.zip", + "checksum": "70778335f92db46b318299fc4bea62822f4ef1dd6dfb66a13fc16ec79a5c6695", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B34/sapmachine-jre-18-ea.34_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+33": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B33", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.33_linux-aarch64_bin.tar.gz", + "checksum": "6253536e69de1cb8b25d2c1c6307befbd983cd9c62046422b21d710e84f00b4b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jdk-18-eabeta.33_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "1c710b94b9efb0e3309e9225683579334a6373d7a1441ea27cd1e04f93fb4257", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jdk-18-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.33_linux-x64_bin.tar.gz", + "checksum": "40336466259969b4dfe6e1e507f44cd715d9886f14430919fe761b82ed453009", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jdk-18-ea.33_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.33_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jdk-18-ea.33_macos-aarch64_bin.dmg", + "checksum": "1a73d7ea73241ed8f56023b1024c127bf6097fa522e34402d8ff59f42cfd358c" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.33_macos-aarch64_bin.tar.gz", + "checksum": "a9708884f6dd98dc043a2bc8b12cb59ff9d45d14bfde1aeb920b03f0c571c38a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jdk-18-ea.33_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.33_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jdk-18-ea.33_macos-x64_bin.dmg", + "checksum": "b00fbd3ebfed2f2e2977f861c45cbbbe188461a00b1684ceeff845d341b7a80d" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.33_macos-x64_bin.tar.gz", + "checksum": "cc657ca1366e62b6a9d462a81b20a31feb14ef4000f12ff7f3a6de560936a09b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jdk-18-ea.33_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.33_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jdk-18-ea.33_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.33_windows-x64_bin.zip", + "checksum": "23a7ddddfff54c209ef102e18fbfe69dbe5c5c1ca7efb5a3b65047e4b8f88616", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jdk-18-ea.33_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.33_linux-aarch64_bin.tar.gz", + "checksum": "4a649e819d10a18f96edf9abf5f369f573136299e51ef4642b01bdda13fdfd12", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jre-18-eabeta.33_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "874016192b5ff24d492207bd2c14b04518228c8ddf829ecdecadeb02b99d0109", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jre-18-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.33_linux-x64_bin.tar.gz", + "checksum": "3a0bc5b7a08877653bc40392cae177650081cb51151d2bbe35b30a18ea3f2a4c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jre-18-ea.33_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.33_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jre-18-ea.33_macos-aarch64_bin.dmg", + "checksum": "1978de73f8643adc997916a9173ca3e1456cdb4607f8252e7b05a2badf933cb3" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.33_macos-aarch64_bin.tar.gz", + "checksum": "c87041081165bf08e5d980e4dfb72a07c837997bb5a1d526a2cd470990a8bae9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jre-18-ea.33_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.33_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jre-18-ea.33_macos-x64_bin.dmg", + "checksum": "c9ebec81b8d30b04f2f7bba923eae2e2efb3eccef4c353bc36654f4337719b0c" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.33_macos-x64_bin.tar.gz", + "checksum": "b7834dbb48e127f4249d0d52ab251f4602df06b91f171e88158f0e0d257b0d43", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jre-18-ea.33_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.33_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jre-18-ea.33_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.33_windows-x64_bin.zip", + "checksum": "37ecb57f99a7f8d0d4a77dfd9d806e175420adda8ce059f90523244dfc33f902", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B33/sapmachine-jre-18-ea.33_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+32": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B32", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.32_linux-aarch64_bin.tar.gz", + "checksum": "b46e8f30498291bc85246ce245e020083ba22e66023cea19f5a462a85d571612", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jdk-18-eabeta.32_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "0b1dc3a32effb7a8bf7ffe74ba0ef7ed36a6cb25bb94787e262636497ccb799d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jdk-18-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.32_linux-x64_bin.tar.gz", + "checksum": "ab96bce1c36a23b9df6c11b43f8d071948d2ae57face6a34e23bf3a8c19512a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jdk-18-ea.32_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.32_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jdk-18-ea.32_macos-aarch64_bin.dmg", + "checksum": "2ffea07bde3c91aa7f5fdaf5ee81d9d1ceeebb6d29b3ff672e42ea683fa08e27" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.32_macos-aarch64_bin.tar.gz", + "checksum": "9024b4dd66a5ea6448cd952f22c491faf11984251b030f26f24482fc789cf47f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jdk-18-ea.32_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.32_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jdk-18-ea.32_macos-x64_bin.dmg", + "checksum": "1d4a4d40bb6c344ffba073f2d1a81ff472794329577f97b17aecb5735f162f0f" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.32_macos-x64_bin.tar.gz", + "checksum": "14cdb20a9373d927406a5dcc2ee9eefb455468a96ba5294ca952b1b34e235c7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jdk-18-ea.32_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.32_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jdk-18-ea.32_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.32_windows-x64_bin.zip", + "checksum": "f1896b011c8ad4b4a62942355d64837608f8c6b13e239db47f1b043e3ba235bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jdk-18-ea.32_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.32_linux-aarch64_bin.tar.gz", + "checksum": "bc3b76d1f8a581e23741d81328d266b6f49992a0afda4b303902d0f147869a58", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jre-18-eabeta.32_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "90e6fdf2dcfd85c1f5c3cc3b1ecc8c94f8dc6af7f2f993e651bed2e7db00af49", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jre-18-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.32_linux-x64_bin.tar.gz", + "checksum": "2469acf7b5b196bb991e922ea9f4267b0d19df81ffdeef42b1826613dab1f0e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jre-18-ea.32_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.32_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jre-18-ea.32_macos-aarch64_bin.dmg", + "checksum": "c77198e38f037777a504397b43a60edd035a294d385bf50e31185bf05ec1fc21" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.32_macos-aarch64_bin.tar.gz", + "checksum": "8fe9b3fc4eb54e59246efb841197db982af441a8bcc69ac44f78f110487b467f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jre-18-ea.32_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.32_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jre-18-ea.32_macos-x64_bin.dmg", + "checksum": "717b95b8170909a3bc6aded4b4ef23903942fce21d94b427a179a30e617c739c" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.32_macos-x64_bin.tar.gz", + "checksum": "36f4c91cd69b8b78217d4f896505cf843b204deda7e451ef670ce95b07155c2c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jre-18-ea.32_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.32_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jre-18-ea.32_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.32_windows-x64_bin.zip", + "checksum": "26c34489fc7ec69f34875351aace088e1a38b92f1593111958f201fa937fa332", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B32/sapmachine-jre-18-ea.32_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+31": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B31", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.31_linux-aarch64_bin.tar.gz", + "checksum": "aac13f24bdb29f4d73a9a923d90476a4cea900fc0f61c4f50e2aa60a54ffddbe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jdk-18-eabeta.31_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "e8b0b1d99460cd57c64c03c68f40b4417fb12744b89746b0bf376c99bd064582", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jdk-18-ea.31_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.31_linux-x64_bin.tar.gz", + "checksum": "693ee8d796e823b8ae220faae23c464fa6fee9e53811b68633e59b8aa8121a64", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jdk-18-ea.31_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.31_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jdk-18-ea.31_macos-aarch64_bin.dmg", + "checksum": "033199015f81bf87bc34dd4b7a44e531bd690a3af917e7b2a31e47a2a286cd45" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.31_macos-aarch64_bin.tar.gz", + "checksum": "de70b1b129911d90bd9eaf2ca70e5233fa9108dd2dcf89cd976693945db6a404", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jdk-18-ea.31_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.31_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jdk-18-ea.31_macos-x64_bin.dmg", + "checksum": "e20aa3b3443b2db773fc9d4223b50cbbcba5b29d1c889be1ec53d1f624876df8" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.31_macos-x64_bin.tar.gz", + "checksum": "e0303219e8edeae811fe2e9e7e18937294593207116dcdde0e27a100a5e57970", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jdk-18-ea.31_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.31_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jdk-18-ea.31_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.31_windows-x64_bin.zip", + "checksum": "98dab2952b5efacd0d7aa8f6c32d2f74c7bd54ad2232bc86a6b5f70114eba288", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jdk-18-ea.31_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.31_linux-aarch64_bin.tar.gz", + "checksum": "014c3db1e6882cc1f4b60205ac8fe2ce1520736371652e0bbce4c9d907acad20", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jre-18-eabeta.31_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "4042974338aa6b04470b06962f377f680e41793982ee18eb5569e30ccc85aa6c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jre-18-ea.31_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.31_linux-x64_bin.tar.gz", + "checksum": "72522db9e92840aa373a0a40d8e927a86b10a5c3c2f7b5c405ac2475ca5e52b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jre-18-ea.31_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.31_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jre-18-ea.31_macos-aarch64_bin.dmg", + "checksum": "15dfb2628d2f1e078a0989645aaea74776ca7c5d8217c4d29739c454fb8dec6e" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.31_macos-aarch64_bin.tar.gz", + "checksum": "678bbd7c2fbed666ad91257079e1f4edb6630ed757a4b803bb220e00390e8cc8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jre-18-ea.31_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.31_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jre-18-ea.31_macos-x64_bin.dmg", + "checksum": "1401231208b1435f5b45f5479f60bf892dd7f318d3ec81fb5306a8c1692924f6" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.31_macos-x64_bin.tar.gz", + "checksum": "a503bbb55de25269f5e97f4e29d80c53cd3f288b23efd3a947348889c0cf5773", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jre-18-ea.31_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.31_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jre-18-ea.31_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.31_windows-x64_bin.zip", + "checksum": "f4f5e9f61924075ed8d5ebae62c91c77f04122a4a35e8c17ca21b70bfe3bface", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B31/sapmachine-jre-18-ea.31_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+30": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B30", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.30_linux-aarch64_bin.tar.gz", + "checksum": "0ec9db0dcdecee2a5ed8b3145f1659336ca98e58d25920def7485ccf660f4f02", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jdk-18-eabeta.30_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "fab255957eb740e5675a3bd5b2bc89d8d16c2b5fcd41a801e2251f536d965a5d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jdk-18-ea.30_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.30_linux-x64_bin.tar.gz", + "checksum": "751cdcd70bbea4d5cb327bc23e62f59a95eeece05e92c567fdf165e884928e6a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jdk-18-ea.30_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.30_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jdk-18-ea.30_macos-aarch64_bin.dmg", + "checksum": "b74868b52744eae81d5e01989b72cf789f17468d83b2b5c55db5cb3cab5dda95" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.30_macos-aarch64_bin.tar.gz", + "checksum": "ba977b6d1ff66f91a8099d27c12cd47f9c263171cc858bac3bbd74f13a7e26d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jdk-18-ea.30_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.30_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jdk-18-ea.30_macos-x64_bin.dmg", + "checksum": "9212cc00eacabaf6d4fb41b19ffa8d6b03aaf8703586e1b2c80a37db57a275cf" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.30_macos-x64_bin.tar.gz", + "checksum": "6852f08a4f708dd8e2fa26c691223b8e4a6c7ec75a38c9fef8c6170c3698f0dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jdk-18-ea.30_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.30_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jdk-18-ea.30_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.30_windows-x64_bin.zip", + "checksum": "6b2dc479101a742826e8cf2f2b2a6337d367682c0953b57f81b2608bb9fb89cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jdk-18-ea.30_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.30_linux-aarch64_bin.tar.gz", + "checksum": "5db38c2a783cce84fa1d5083b7c5552774061fac59792e7a5c8f261362f08e9d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jre-18-eabeta.30_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "da81298824ce759be7956d26ddbdc9a7b03a90e5e604705cc6e08d2ef1561e71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jre-18-ea.30_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.30_linux-x64_bin.tar.gz", + "checksum": "96ca59eaf9364c18b59d3f15b6127f5c77f4efcb88913fcf2b2b89e2e48450f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jre-18-ea.30_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.30_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jre-18-ea.30_macos-aarch64_bin.dmg", + "checksum": "5f95208f7e1011b2e3aa28a52f5ea991acdc8e2f67c9c9b8d6a68fb7171c86af" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.30_macos-aarch64_bin.tar.gz", + "checksum": "753d96eb9225238c8df6f23562cb9f7d0dda57d3ea15cb65ffcf12854064ceff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jre-18-ea.30_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.30_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jre-18-ea.30_macos-x64_bin.dmg", + "checksum": "d1c98cb29046fbd0b691941219f9cf6eea8428c09906201650202838439b577d" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.30_macos-x64_bin.tar.gz", + "checksum": "56df69f3298681f5af23c75f4bda9d5e07f3778642ac9f1f2f4dbb6eedf95f0e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jre-18-ea.30_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.30_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jre-18-ea.30_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.30_windows-x64_bin.zip", + "checksum": "05eb49d7ece27094f630ef5942fbb70bf1c9b5b97408d6f7834d4c2a45562ccf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B30/sapmachine-jre-18-ea.30_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+29": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B29", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.29_linux-aarch64_bin.tar.gz", + "checksum": "b8f7f980b413165da5977d70208b7329585205c4cb07f697cdf171f54cf814b2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jdk-18-eabeta.29_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "e29c6f1f304010da04e3cfff7286e74e914de4d6c7e74368c864daaf30919cdf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jdk-18-ea.29_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.29_linux-x64_bin.tar.gz", + "checksum": "4acbcf274a2b0c4242dc61fefab952f6285bfa270a4dab5ae6c278bb08b98766", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jdk-18-ea.29_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.29_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jdk-18-ea.29_macos-aarch64_bin.dmg", + "checksum": "308d0063dc4f0a215f6f44a174483eda5b3b701f85e931484c02da82356bd746" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.29_macos-aarch64_bin.tar.gz", + "checksum": "ce3ca66e38a18493c365db5a76192507dedd30fd1e1692e9951ac65935d3ecff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jdk-18-ea.29_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.29_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jdk-18-ea.29_macos-x64_bin.dmg", + "checksum": "b17506fe2026d238220c4bf107c4c1049a06f0de63008cd1d042b390d57337e8" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.29_macos-x64_bin.tar.gz", + "checksum": "36eea4c1250b0e37b00bd74b2ca7e4b4b698dbb06c2152037da10fcadc352a18", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jdk-18-ea.29_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.29_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jdk-18-ea.29_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.29_windows-x64_bin.zip", + "checksum": "617293613e8f44f241e8bc87551b6fb6ec3e757a6c78e68c5207e4199fa9a35c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jdk-18-ea.29_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.29_linux-aarch64_bin.tar.gz", + "checksum": "19764486c280dd40f705cc2be8dfa4e5305ab77bafdc27b5bbd4eba6475ac2af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jre-18-eabeta.29_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "4ba0cfa14a4211376bbf39925ca511b32d489c58abe15a1639148326557dfad4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jre-18-ea.29_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.29_linux-x64_bin.tar.gz", + "checksum": "d9feddc739ec7064e321fa9ba37da772680f43f3847921a11a85dfea561ad2cb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jre-18-ea.29_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.29_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jre-18-ea.29_macos-aarch64_bin.dmg", + "checksum": "f84f9099547a9a2e75490ea43d63039df3a0ba7da2ba5866a56121f8dc610b82" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.29_macos-aarch64_bin.tar.gz", + "checksum": "bdcfbbbdc6e3068ba8aacc2e53e2597f227e37f11f451e084652d2f4ba16acec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jre-18-ea.29_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.29_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jre-18-ea.29_macos-x64_bin.dmg", + "checksum": "c0e6b7c9bbc81f0ddbc216e08aa8406e6ad8d7fb036eb548efac785dd2211cd0" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.29_macos-x64_bin.tar.gz", + "checksum": "095394c20cf6bddef8b77220ce258788196e76dbda4b67e6a197a9671d6f2978", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jre-18-ea.29_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.29_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jre-18-ea.29_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.29_windows-x64_bin.zip", + "checksum": "f7a53a10be9ed01982e3bd04004a92768520bfdf2534f3a51cfb15bc2e8dcfa4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B29/sapmachine-jre-18-ea.29_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+28": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B28", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.28_linux-aarch64_bin.tar.gz", + "checksum": "8fcdf1e6b2babcb18376e630a08cac4217565ba07f712d19353a0caa03fb5e9a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jdk-18-eabeta.28_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "cb09c3d8f0d8a748643f46184e246dd221abb46e734a595153f1b834fc2c4e64", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jdk-18-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.28_linux-x64_bin.tar.gz", + "checksum": "ccfb1055b1d33cb3bc3c6abd6690978e10407cd28c1820da9c66c29d004d5fbe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jdk-18-ea.28_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-internal.0_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jdk-18-internal.0_macos-aarch64_bin.dmg", + "checksum": "8efa242f1e480365587b7ce47999b3331cec09d06ae6932140615de4c1de77d0" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-internal.0_macos-aarch64_bin.tar.gz", + "checksum": "24e42330b3c6431321485a3059d21cd2e86773867ecdf15534e445e748c6acdf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jdk-18-internal.0_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.28_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jdk-18-ea.28_macos-x64_bin.dmg", + "checksum": "dfe98e55617280f4baa9153aeec39442f88d9adc579139ce4c49ad5c90d0c721" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.28_macos-x64_bin.tar.gz", + "checksum": "e01137572d3e7064817a44eefdf76f4b01310a347faec6da0d50cc8092fc1887", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jdk-18-ea.28_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.28_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jdk-18-ea.28_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.28_windows-x64_bin.zip", + "checksum": "7a662162096eaf9de8c84f0c1b6ef0c385981dfcee7af2fdc7cb178ef1846a69", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jdk-18-ea.28_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.28_linux-aarch64_bin.tar.gz", + "checksum": "3f5ebbf0ad510ca28d40e3b5f709dee62d9207068fc86ccf246ffdae86626dc7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jre-18-eabeta.28_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "8400eaf0b82c842d81a4dde6bf14b36097312a02d88a0b8e627b3d81f611e14e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jre-18-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.28_linux-x64_bin.tar.gz", + "checksum": "c39d33a92e6aa227f0eb2ed85f76cfc310fc568680f909aeb53a1e8c1094eb47", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jre-18-ea.28_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-internal.0_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jre-18-internal.0_macos-aarch64_bin.dmg", + "checksum": "7b094b8f29d82667dbc9d823b87f1e468b0754a95e811ca95db1e01b1a61b935" + }, + "tar.gz": { + "name": "sapmachine-jre-18-internal.0_macos-aarch64_bin.tar.gz", + "checksum": "a2bf38ff1372e01e4517709e63d186e0cd0333c055e3a71dca3494d39b5549da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jre-18-internal.0_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.28_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jre-18-ea.28_macos-x64_bin.dmg", + "checksum": "3ec3aae32e4cbff9a7d33fb54067b90c563bddd20373799494675d37d7318114" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.28_macos-x64_bin.tar.gz", + "checksum": "56fc15a576257332ce3177aab396c7d43218303b9459aa9e7d7a4c0dc4cfe47f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jre-18-ea.28_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.28_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jre-18-ea.28_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.28_windows-x64_bin.zip", + "checksum": "234a7baa9e4ebe9500a2d286e03cc40894b86fea0e314a5fa52824e7fab6e019", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B28/sapmachine-jre-18-ea.28_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+27": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B27", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.27_linux-aarch64_bin.tar.gz", + "checksum": "4b11f3863d1145196c868228918191fd661cb8215b9473458743099ac80fa3e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jdk-18-eabeta.27_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "8793a9fcd41f079c1b7d9e50fa741eb63df2105d1ca2e38409dce80ca7ca74d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jdk-18-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.27_linux-x64_bin.tar.gz", + "checksum": "b29e7d14fca5138a9edbe6323a3e1b70e6abc210d4904e30bcded2e809287b35", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jdk-18-ea.27_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.27_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jdk-18-ea.27_macos-aarch64_bin.dmg", + "checksum": "042e3f194da9516d16016d05a3878c07a63c33c9d766845432c15c133e9f2789" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.27_macos-aarch64_bin.tar.gz", + "checksum": "a1d80bcf3cd2dfdcc718bd3579eefaacf74f984f678715f817f7d70f3f882d2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jdk-18-ea.27_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.27_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jdk-18-ea.27_macos-x64_bin.dmg", + "checksum": "a9785dc19e729a842f28e3287b7d11b8939843c2085471bb493de66240aab8b6" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.27_macos-x64_bin.tar.gz", + "checksum": "503cf3dff53603a90b0de62d30ceb5d655e02d4b37f9815a1693d2ee36c13927", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jdk-18-ea.27_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.27_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jdk-18-ea.27_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.27_windows-x64_bin.zip", + "checksum": "6c86b6c76aa28561e348d36bf8c8937bddfe5aa9500bdb706356c3e1bd7a4e02", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jdk-18-ea.27_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.27_linux-aarch64_bin.tar.gz", + "checksum": "b1f7f323794a0ef1bcadb12e5e283d4fe9b6255201dbb2b412bde4e7fa49c435", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jre-18-eabeta.27_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "e0154b2d8f25397e492ecb73df9ed206b89273dbb5549e8b1ad7b9f993b2fb52", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jre-18-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.27_linux-x64_bin.tar.gz", + "checksum": "bb411b6395b25fe50f27dacc411dab429c78a77151ca350231a95f24269967a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jre-18-ea.27_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.27_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jre-18-ea.27_macos-aarch64_bin.dmg", + "checksum": "3c7668a5c870fb050fe85c795776291c7047751d0655112a7a2e29c94458ce1c" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.27_macos-aarch64_bin.tar.gz", + "checksum": "f98e49a53c0463b147ce6bdb342e8299121060f5066eefecc6403da0674a7d7f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jre-18-ea.27_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.27_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jre-18-ea.27_macos-x64_bin.dmg", + "checksum": "253ed58540317c76c71311231284a4b58d65687baa84190673b1d665282c3cb6" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.27_macos-x64_bin.tar.gz", + "checksum": "9a97b71c90c6b4be7842553c87971097e81576f120476ca27ddd4c162e8f8ccb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jre-18-ea.27_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.27_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jre-18-ea.27_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.27_windows-x64_bin.zip", + "checksum": "f5990ec9568138f3b4eaee49fe211d649a496d6483925ce90b8e38ac9d8f4ea1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B27/sapmachine-jre-18-ea.27_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+26": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B26", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.26_linux-aarch64_bin.tar.gz", + "checksum": "c0e565e527960d098102f37c52bbf022565f3d8d51bbea66effb326f7edb71ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jdk-18-eabeta.26_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "113222e10059c1ec94171cdcb896ae83efdc0a94c297733366d8c26f4a54bd8b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jdk-18-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.26_linux-x64_bin.tar.gz", + "checksum": "987708f8d2c0a8fe47d22335b1a776a408f6ba271b09de51d1edd0579c2a13af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jdk-18-ea.26_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.26_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jdk-18-ea.26_macos-aarch64_bin.dmg", + "checksum": "4ea93418e1bf60312e5c334163ab2e678320195345b3121f38c80fb99751e3ca" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.26_macos-aarch64_bin.tar.gz", + "checksum": "a729b9b47ae9b2e503dfc98d90e83128aa5e09ef03fce6ccdbb51842deffa97d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jdk-18-ea.26_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.26_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jdk-18-ea.26_macos-x64_bin.dmg", + "checksum": "95662141293444779a7e0a912927c4c6e3002057013bc9e5121685077534c71c" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.26_macos-x64_bin.tar.gz", + "checksum": "700fc267738b8ac4cd8b9266ccbd4ed9f5cd2f6871dfbaf0bcf8cae91c08846d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jdk-18-ea.26_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.26_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jdk-18-ea.26_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.26_windows-x64_bin.zip", + "checksum": "82d759b30588aae0c503bb9cc0393d0a88af035430f134f4eee2978d17580327", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jdk-18-ea.26_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.26_linux-aarch64_bin.tar.gz", + "checksum": "4d134c3fb3bde7a64122fcefb2557d6a531caaa0338aa26ce28737f6a06c6701", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jre-18-eabeta.26_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "cdf0bccd201562309ff7ff72c576b8bce9c92ee0b9efdd0f0ae718044b6ff126", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jre-18-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.26_linux-x64_bin.tar.gz", + "checksum": "9d81fb024c75f8155fefae44e41b8d4d4a3232393b6208de28a1c7f1312fb6e1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jre-18-ea.26_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.26_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jre-18-ea.26_macos-aarch64_bin.dmg", + "checksum": "62b24b4106a469304671e982cbf1aefbcdc6fe479b34d1ae0ad1672ef6ccffeb" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.26_macos-aarch64_bin.tar.gz", + "checksum": "60c3a9a4ed1c79c887c9a8e964c4f1479bd842cbc0028462eb61473b1cb80b37", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jre-18-ea.26_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.26_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jre-18-ea.26_macos-x64_bin.dmg", + "checksum": "0b70411eb38ee2480e2bec394daa337dc92f93e8fc36ac34d620b8ccd80f8ef5" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.26_macos-x64_bin.tar.gz", + "checksum": "929f0a461490074bf276e6372dc4532420c1e38e0f4aa59f7bab38a75d3c1729", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jre-18-ea.26_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.26_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jre-18-ea.26_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.26_windows-x64_bin.zip", + "checksum": "25d2288a8a96481a9c82df9aa6d274ea90f8b86521c996f02ab48d3c4c5f0ab4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B26/sapmachine-jre-18-ea.26_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+25": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B25", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.25_linux-aarch64_bin.tar.gz", + "checksum": "502a1653e0c14dced4bf508f7a01dccedbabf5c6a3f631f28a80b00b0c9d19df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jdk-18-eabeta.25_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "d998ba3842c7f6728e7608539814b60c03fbdcf81ca55649c9adfeda7c5b53ff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jdk-18-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.25_linux-x64_bin.tar.gz", + "checksum": "935f20133be6d3e4d2a78e10192758e69fd57c2a70a2f3efbf714238a448bcdf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jdk-18-ea.25_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.25_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jdk-18-ea.25_macos-aarch64_bin.dmg", + "checksum": "9ee61e8af831f35d2125c8c335e36b44acfc2629014c1a13156b2e887745add5" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.25_macos-aarch64_bin.tar.gz", + "checksum": "d9eff1f92a9bc80998c5303ac0d03a5e44ecd83484d63b4ebe6f557c06ce0a9d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jdk-18-ea.25_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.25_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jdk-18-ea.25_macos-x64_bin.dmg", + "checksum": "7c2998f2cb9833f55a615db34686a045b0b7de49c98a2485d6357d75c6ffa941" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.25_macos-x64_bin.tar.gz", + "checksum": "c97a0b5a39c360bf3dcabf77db403eaa325c1aae610b9fcf1807bb1f113ac9ca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jdk-18-ea.25_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.25_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jdk-18-ea.25_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.25_windows-x64_bin.zip", + "checksum": "a4bd8e86d15b45d3c79dc7829c38aad6aa8ec235176921153139f372055305d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jdk-18-ea.25_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.25_linux-aarch64_bin.tar.gz", + "checksum": "31fd511c887cbaf4006b4e7008b3897de387b03bf9b0eb6dedc760af6ba573f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jre-18-eabeta.25_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "982301c3cd0266ef6e085214b47f58876cb527220809e794e60f300b68e40f80", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jre-18-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.25_linux-x64_bin.tar.gz", + "checksum": "1e99a73e416ce8dc70d5f3eb775909d15613a1ac122f46450f6570336d0f363c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jre-18-ea.25_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.25_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jre-18-ea.25_macos-aarch64_bin.dmg", + "checksum": "c0bab8bcde09950322d2401f6b76e11dcb62fe0626ad5294594e45efd09cf8b1" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.25_macos-aarch64_bin.tar.gz", + "checksum": "e55014fdfddb4211323da4b06af22981755c4080e02ec2faedc48d38ac9f7ccd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jre-18-ea.25_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.25_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jre-18-ea.25_macos-x64_bin.dmg", + "checksum": "422c4fa5df6edcb7cc8593f41c3739d322f57d61a6f9fb3b8d77f06e5470a45b" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.25_macos-x64_bin.tar.gz", + "checksum": "b00ab49a82e3a4646ce19a3141f7fce908f033cebd798d517c5d93a82bcbe9f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jre-18-ea.25_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.25_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jre-18-ea.25_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.25_windows-x64_bin.zip", + "checksum": "487d263aa52a35f8b81f67fba0e7c783de30183e61f58291c29feed34a2eb738", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B25/sapmachine-jre-18-ea.25_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+24": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B24", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.24_linux-aarch64_bin.tar.gz", + "checksum": "aae4589d8579eb584ac60030010ceefdfa465dbab6102c66656ade3cde3b6ea4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jdk-18-eabeta.24_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "693012301709296f1ea76d6f3953612bb45b2862d5f7cba9a494bd155357da12", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jdk-18-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.24_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jdk-18-ea.24_linux-x64_bin.tar.gz", + "checksum": "080fe56baf5896db784ac7e7f252948ffaece19d5361ca973ac7fb34196afe3d" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.24_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jdk-18-ea.24_macos-aarch64_bin.dmg", + "checksum": "b9c1b655e3f7b867d9cdffa6b1f885a36bd2922c5225d0b59daafd226131d1ce" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.24_macos-aarch64_bin.tar.gz", + "checksum": "badffdc1db6c1a3b0b3bef5c6fa19ef84a8814eba168da6aba80fc0e3137637f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jdk-18-ea.24_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.24_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jdk-18-ea.24_macos-x64_bin.dmg", + "checksum": "e9df863edb96894840c33f158801e3b214005190fdd6ce48b1a81c73882b3bfa" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.24_macos-x64_bin.tar.gz", + "checksum": "1a93720a6541633509a121549a5974dfa547e1c8ab6c63ca4d6aeb8385b921ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jdk-18-ea.24_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.24_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jdk-18-ea.24_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.24_windows-x64_bin.zip", + "checksum": "6eafbd3d828fda779ed64d69ece326c9dd499f2c890bea17da113778d3e99abb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jdk-18-ea.24_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.24_linux-aarch64_bin.tar.gz", + "checksum": "90c9794143652655cd8db51badef85f9e98dbcc268e253841986491a91028c2a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jre-18-eabeta.24_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "218225eac5fc7a8eb2f52122269efc62413a42a017e2016d94efadc086359466", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jre-18-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.24_linux-x64_bin.tar.gz", + "checksum": "7202d31674fbdaa907ada83d138a50470bc523f9540f819ea2d302ccad1a8d08", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jre-18-ea.24_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.24_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jre-18-ea.24_macos-aarch64_bin.dmg", + "checksum": "c3f297f13f87dcf7d20de8c985817b9ea1c88c032d08acd53e03c243a5f47de7" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.24_macos-aarch64_bin.tar.gz", + "checksum": "39289ae86d2f60a569f2fa3bd90d9802ad02cc30b1ce7138d6def39a725affd4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jre-18-ea.24_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.24_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jre-18-ea.24_macos-x64_bin.dmg", + "checksum": "f8eaf147b373924ef0e4f51526cb39b35242b8e5a8d30ea903b632289d1846fe" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.24_macos-x64_bin.tar.gz", + "checksum": "c319561cbbb187167a6ec8dfd826008e76bf0d02eb44f4272efa6bb73b063bad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jre-18-ea.24_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.24_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jre-18-ea.24_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.24_windows-x64_bin.zip", + "checksum": "7a2334c5b0dfb06c886d43e23b099404c62fa2333ea24757f65acb071a1689f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B24/sapmachine-jre-18-ea.24_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+23": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B23", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.23_linux-aarch64_bin.tar.gz", + "checksum": "00cd772c025919bc43b5b15d46a6fecdaf728e1ff7d1e7978ecc277390a1e92e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jdk-18-eabeta.23_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "a9b4618ff0ab11e14fa899998d5548a31a7b08f6dcd39acc6d4dc2560b8771ee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jdk-18-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.23_linux-x64_bin.tar.gz", + "checksum": "0dd7cd48c5e808c42a63f311d15dd0a567ac88f79a44fc9aa4d7938ffce11af9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jdk-18-ea.23_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.23_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jdk-18-ea.23_macos-aarch64_bin.dmg", + "checksum": "812ca6542ff21e1ea4645a13bebd4e60a20311a596a21be4d5021fabbf0f1809" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.23_macos-aarch64_bin.tar.gz", + "checksum": "c091ce229d574c6c6230f1e7b466aa1a0d53f78aae96c149a4ad40cbbd0f63ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jdk-18-ea.23_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.23_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jdk-18-ea.23_macos-x64_bin.dmg", + "checksum": "afa55e5ffc9bc3144c9fcf5f97f2ef47d4370dc6c35efedd235180778d054446" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.23_macos-x64_bin.tar.gz", + "checksum": "f4001781f8a50885c5b8da99502513013013eec57a08002d3a05e7f47b25c656", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jdk-18-ea.23_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.23_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jdk-18-ea.23_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.23_windows-x64_bin.zip", + "checksum": "e5f4a36f4a35ea1b00a7968aa2dd1e5280c56f12e5d01ae8ac9615f4d9d5dfd1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jdk-18-ea.23_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.23_linux-aarch64_bin.tar.gz", + "checksum": "b959584ed78c96eec009fc47e53466796ae531d7c6c660b878e2f8312cc281fc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jre-18-eabeta.23_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "26ef4b2a041972efa960efa0dfb0a82f6473428be01af9f20617006f65da561a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jre-18-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.23_linux-x64_bin.tar.gz", + "checksum": "c88c52487d9917ecfa233c34fb581a9f524a3bf59583e92aecef229cc47b3961", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jre-18-ea.23_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.23_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jre-18-ea.23_macos-aarch64_bin.dmg", + "checksum": "34f7051adec720e00fc78c2ee65853f34cf9345cfbf178192d4985eed575792f" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.23_macos-aarch64_bin.tar.gz", + "checksum": "307497bcbc7ed4080ba4eb4810ae3395590f7e1854a46127d92edf4bcb0b4c48", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jre-18-ea.23_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.23_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jre-18-ea.23_macos-x64_bin.dmg", + "checksum": "9f3c8e20a94dc0c806c779f1002bc7fa6aae1c681d587052bb7d825055587e1e" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.23_macos-x64_bin.tar.gz", + "checksum": "6159f454d3533c22c9b511c8e061be3f1636eef29a140f40c95368b1aea0330c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jre-18-ea.23_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.23_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jre-18-ea.23_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.23_windows-x64_bin.zip", + "checksum": "aaebd1c7af1989e67bdfac05ee9aa5c2af75646abd9cc4366240e089d5dde564", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B23/sapmachine-jre-18-ea.23_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+22": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B22", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.22_linux-aarch64_bin.tar.gz", + "checksum": "a66c4f3c504c3f4ab78d0f693b05adfd17c3bfee1250db859cbe5f97f58a7452", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jdk-18-eabeta.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "f6e2302875cdd53cecf3f1519d6056d966f9073284ce8bb75355625f7bbd9646", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jdk-18-ea.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.22_linux-x64_bin.tar.gz", + "checksum": "9e9c50a806494e82d51d76e24dad92f6dcb715f0a2d9beb07d913cc471e5ad0a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jdk-18-ea.22_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.22_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jdk-18-ea.22_macos-aarch64_bin.dmg", + "checksum": "964d5c8ce1a85ee00a2341f46c25e667648202817c0937bcca3a6be0dc7024ee" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.22_macos-aarch64_bin.tar.gz", + "checksum": "90c9665f64ca692a07b84cae70cc8d2042461a3f97e78766f0c7f19b030d27a8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jdk-18-ea.22_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jdk-18-ea.22_macos-x64_bin.dmg", + "checksum": "a2b646253b4cf03cd9534a9b2d670927d2c2c8f65ddfe0a8c19ae997e7231bc1" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.22_macos-x64_bin.tar.gz", + "checksum": "ed239d49e98aeef69430557b97e411cd130c508191fddde6871c6c1ba55a842c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jdk-18-ea.22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.22_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jdk-18-ea.22_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.22_windows-x64_bin.zip", + "checksum": "41cfc44b6cb24edc38efa79b422e1ba14a3429a35e530dae41b0989de0bf4740", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jdk-18-ea.22_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.22_linux-aarch64_bin.tar.gz", + "checksum": "1061fdf4e1538c8960a9c556ef055bb3dac64530e727122a9ec7260fe506a268", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jre-18-eabeta.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "7d360e59b79662f36e9c9495174072f9bd840f6984bcf64915034cc5f0e8d614", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jre-18-ea.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.22_linux-x64_bin.tar.gz", + "checksum": "2b8109a3d9e9ee790b729d76c185fcafbebc15e9c8f90593eb8e90d70fea4b81", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jre-18-ea.22_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.22_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jre-18-ea.22_macos-aarch64_bin.dmg", + "checksum": "ce50d2a9c8296f5b8793d610d5319d8354981bcd2924315a2026395ea0e68420" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.22_macos-aarch64_bin.tar.gz", + "checksum": "91f0a83474a1943c93cda5afa8bbbf79a30414dcdc98f867266e2de809d99965", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jre-18-ea.22_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jre-18-ea.22_macos-x64_bin.dmg", + "checksum": "1a349e718e94b27ba6cd58d1dae02ccffa638853a88e72be72582daf95514449" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.22_macos-x64_bin.tar.gz", + "checksum": "a611e2d88827542e0bdc71e09cace75e42b0e4aef0e8f3eb5803d698c88ad2e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jre-18-ea.22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.22_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jre-18-ea.22_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.22_windows-x64_bin.zip", + "checksum": "a11f0bcd9549efef0f4b8c075605be7fc102fe9cb9d970635030d0a7a86a855f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B22/sapmachine-jre-18-ea.22_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+21": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B21", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.21_linux-aarch64_bin.tar.gz", + "checksum": "5ff0d37040bd74cec28eaed0c23a25795a928c342be42e407176cdfc6622c8f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jdk-18-eabeta.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "55f54cd1e26dc6788792f8db60c23d1b42326456401438bc1406fd3892bc30b1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jdk-18-ea.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.21_linux-x64_bin.tar.gz", + "checksum": "2ef6cb06e079e36301e981e37468568178b9c13c3389cb1b925d238d54655913", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jdk-18-ea.21_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.21_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jdk-18-ea.21_macos-aarch64_bin.dmg", + "checksum": "cf29ecb8375d8a5fe5e76c7817c74e467857e44af15c13dbd17d5a5bf680877d" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.21_macos-aarch64_bin.tar.gz", + "checksum": "9c822376d10defaf92f9af442398310fde0a7027e2bff0b29bae7dae7279839b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jdk-18-ea.21_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jdk-18-ea.21_macos-x64_bin.dmg", + "checksum": "ce421fd2fd97af965ba1dde1c9d6ce11c03101afb4c38bf037095302a6040f53" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.21_macos-x64_bin.tar.gz", + "checksum": "40b73c4cae5ca31f39c8b1e853dfeb68ed4588dc966086875eff4adef7679707", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jdk-18-ea.21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jdk-18-ea.21_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.21_windows-x64_bin.zip", + "checksum": "3415d5173e346809709ba96f1250cf892558822b353d338dbc4eef4aa9466927", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jdk-18-ea.21_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.21_linux-aarch64_bin.tar.gz", + "checksum": "39bde9c2ff8aba8cd86d57afe0491e86cf839c8eb3626d512d6e0c4793af4f34", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jre-18-eabeta.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "30877aab5aeefec6ada1338391c104a49a6f4d01cf244a35b4dea26b8fc02759", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jre-18-ea.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.21_linux-x64_bin.tar.gz", + "checksum": "baed859bb0aaa5f5ed75f227e8c1f094bebc3586f95ab990acf41c53006a91c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jre-18-ea.21_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.21_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jre-18-ea.21_macos-aarch64_bin.dmg", + "checksum": "fcb6816eda3c3c8f4b55d739d4e62b1accb26c403a3b04f1de5d2dfa3dc10851" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.21_macos-aarch64_bin.tar.gz", + "checksum": "2cc6b54c3b4a2b632c3ce6513b537086bd60f5e8c6744eb49aa39c461d6c6450", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jre-18-ea.21_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jre-18-ea.21_macos-x64_bin.dmg", + "checksum": "9f284b37d96412bd57a42de9f17f88f98ac1f013d41ed8b13c62707892c8afdd" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.21_macos-x64_bin.tar.gz", + "checksum": "0dcbb627b6c1c0c83b7ad73e87f401faa257426e7c748dd8327a939ff1d91f36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jre-18-ea.21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jre-18-ea.21_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.21_windows-x64_bin.zip", + "checksum": "80503ce170377486b78d1fc0c6770e519dd3721ca7e2bebcea5a718d04d14784", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B21/sapmachine-jre-18-ea.21_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+20": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B20", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.20_linux-aarch64_bin.tar.gz", + "checksum": "5563e2e649cf050718d528682bfb2b2e94c7a48fe265cad166c0b7a7cca3241f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jdk-18-eabeta.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "c67d4c6ea35f56744a804ebaea9f87daeb9a63891e877f8b29ffbe88bdd8ac2f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jdk-18-ea.20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.20_linux-x64_bin.tar.gz", + "checksum": "b3a1e48112ec01da1c6b2a553053af44b1381649e551262f3e08348e14020cca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jdk-18-ea.20_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.20_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jdk-18-ea.20_macos-aarch64_bin.dmg", + "checksum": "6d3fe0a70a5c358f30e3d5593b06b8193ded14d13ca305789655f49c43275ce1" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.20_macos-aarch64_bin.tar.gz", + "checksum": "bfa7945833ac59ab623889d851c7d3249a03def6f66523a6a9702eb8ba718e7b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jdk-18-ea.20_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.20_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jdk-18-ea.20_macos-x64_bin.dmg", + "checksum": "0a37ac83ea22612086d58dee5f975a3351c00ca5aa4cc5a015375569a0e4f393" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.20_macos-x64_bin.tar.gz", + "checksum": "cc27f369d7a76b0a2e2e440f2fb35a0068d32795c1d36eaab0e0c3f357b3ba10", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jdk-18-ea.20_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jdk-18-ea.20_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.20_windows-x64_bin.zip", + "checksum": "fca64b5465eede4c29402ce51099e46f7d62966da5866cf3099ed93fadd7b690", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jdk-18-ea.20_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.20_linux-aarch64_bin.tar.gz", + "checksum": "905f8397b004001bdab31e25a01f0ebc10178cf54f1da35501b8cc1d1aaa7029", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jre-18-eabeta.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "02c95dc875e62f4f3dacc0aa3061a225312d3c8b4be4dcde4cdefdb5917fef36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jre-18-ea.20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.20_linux-x64_bin.tar.gz", + "checksum": "eea1cc236d8e76e42c6c5aea99acec3b6b1e648d29337facea84e3b4c8890856", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jre-18-ea.20_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.20_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jre-18-ea.20_macos-aarch64_bin.dmg", + "checksum": "9ba7083d81fb7d9fe0dcb63c505596099afa0db4d7a08d16e580c98d2a23657c" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.20_macos-aarch64_bin.tar.gz", + "checksum": "3039bcd021ee73c9b9fb86e41c0fe2e67aeee5c45d513b2bbea839d295009ce4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jre-18-ea.20_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.20_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jre-18-ea.20_macos-x64_bin.dmg", + "checksum": "e6126a7e7573b8263e9ad96aa87bab530626daec6ed2f893f2f0b0cc36b664e0" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.20_macos-x64_bin.tar.gz", + "checksum": "0fca48c2166c9802466d1302e23a9c289c318e2f6178e6bf5a6093046d2f5a2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jre-18-ea.20_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jre-18-ea.20_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.20_windows-x64_bin.zip", + "checksum": "ec3d79875cbc02fed2dd00072bee9d3aecf356e312fd3e9d858209c96322125d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B20/sapmachine-jre-18-ea.20_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+19": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B19", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.19_linux-aarch64_bin.tar.gz", + "checksum": "7a6bd3c80f7ca1856720aee23f32b6eee9e159bce626dd327b21429c70b174d8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jdk-18-eabeta.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "6c5d3521fbe0ccea1ebc1daefefeade96bd752aab8815a188e0e58c4b3479d49", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jdk-18-ea.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.19_linux-x64_bin.tar.gz", + "checksum": "f625971a762d1d08a646718d6b06535428d9ecf632e98661fdad2e40c8aa937a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jdk-18-ea.19_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.19_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jdk-18-ea.19_macos-aarch64_bin.dmg", + "checksum": "7375bb1b93eec699fb48a456d42dd91d5f74799084535dc9631321cc2208649c" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.19_macos-aarch64_bin.tar.gz", + "checksum": "0b4fb67269376528619139c7d634b2b6fd7c1025a70c3400b1d6e6ea3d9d402e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jdk-18-ea.19_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.19_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jdk-18-ea.19_macos-x64_bin.dmg", + "checksum": "601bf8fabc1f930a32d5b5c4f4f9075e4c658cb54944af88816242c4c091de88" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.19_macos-x64_bin.tar.gz", + "checksum": "814f9dc5a578002f4124046a3dfb91f53eebb65f964041b220e5398dc7aed617", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jdk-18-ea.19_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jdk-18-ea.19_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.19_windows-x64_bin.zip", + "checksum": "f481c8cb293a26de3287128f0dd537f99d995595a9c496603a3debf92e3d659f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jdk-18-ea.19_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.19_linux-aarch64_bin.tar.gz", + "checksum": "e360bc08e3e9f7fb3984f452a31ab6c7d1cc11a34d582b14a94f8f694b492b07", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jre-18-eabeta.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "9a40b03c713d36ae28af4af3412eb7752ccaa5906f11fc555916c3f508dc9c38", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jre-18-ea.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.19_linux-x64_bin.tar.gz", + "checksum": "cb97c53860a2bb34c510da2713194482549c3c70d854302f8f32ae2ac95413dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jre-18-ea.19_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.19_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jre-18-ea.19_macos-aarch64_bin.dmg", + "checksum": "8ee56c3edf9177b9f7e2f292cc77877ac515c0f0e8a8f6dbf24fdd558c337258" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.19_macos-aarch64_bin.tar.gz", + "checksum": "aa36c67abfe7232a13582c9c748911088e5c5328ad7d694e3c86722e8c9889c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jre-18-ea.19_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.19_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jre-18-ea.19_macos-x64_bin.dmg", + "checksum": "a519482f7a18980c23f19217d8f54c996d22cc99d137c64331328ae25b498173" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.19_macos-x64_bin.tar.gz", + "checksum": "6392c16bd694b0f55509c4c256e535e8cb0689155674776dd6f27a55bb80227f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jre-18-ea.19_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jre-18-ea.19_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.19_windows-x64_bin.zip", + "checksum": "2e9d1fd857245c213fc3461ceac7164ec375b2b0458d366f4f3f9635da5080c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B19/sapmachine-jre-18-ea.19_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+18": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B18", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.18_linux-aarch64_bin.tar.gz", + "checksum": "e4bd16d087485d6204493797fce0cb920596dd86871200e67f19ee09537107ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jdk-18-eabeta.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "391792254af7dbc77d992fa0935f4bbdcbc6b38ba0efd7e7f24e2e99aa5cbf82", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jdk-18-ea.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.18_linux-x64_bin.tar.gz", + "checksum": "fc2d67b7ecd42feb11510cee1ec0f1654bbaf5ffdbcd1aae16fdab1e4533be62", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jdk-18-ea.18_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.18_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jdk-18-ea.18_macos-aarch64_bin.dmg", + "checksum": "cc12c1d0096ed1f47de7a8495e6e00c77b79cb6b262e4092f111d7f09111aa33" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.18_macos-aarch64_bin.tar.gz", + "checksum": "cd2354fb2fbb18b761804d94d04c75f3d143c3924fc519f609ec5d2fc4ff4009", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jdk-18-ea.18_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.18_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jdk-18-ea.18_macos-x64_bin.dmg", + "checksum": "537952b81ad7479d1a8ecf83ba542396e02305aa2256ce80af7527cdb8106cca" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.18_macos-x64_bin.tar.gz", + "checksum": "7ee06e10aed994dff44573c10696d93f03fae8e1bcd25615bb4c52a37eac914e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jdk-18-ea.18_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jdk-18-ea.18_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.18_windows-x64_bin.zip", + "checksum": "65bfc25f385036107bc11a7ac5f0c26101f25e2787d4a8e1b5dce92121db1d81", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jdk-18-ea.18_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.18_linux-aarch64_bin.tar.gz", + "checksum": "52c0c2ca6efa2ccfb3b785ec5dbdb19b8ae9f48372106c9dd3869eea1a48c304", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jre-18-eabeta.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "74bc89af0edc5d29a464f3838f084bd5ca2283292c263cee67979e9ff4d60833", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jre-18-ea.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.18_linux-x64_bin.tar.gz", + "checksum": "a7ce53cbd1582ca58b5e33ed80b6628104607add3fbb12bb31debcbcf9ce2d9b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jre-18-ea.18_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.18_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jre-18-ea.18_macos-aarch64_bin.dmg", + "checksum": "8936628a2eaa027eeb4ab3cdeba80d019939010cb8c7da185f139e9b4f7f3c13" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.18_macos-aarch64_bin.tar.gz", + "checksum": "f726b8ccaa28e78d621611dcbc1815416f0fa544ea0e943d538cb9fb3dcc6931", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jre-18-ea.18_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.18_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jre-18-ea.18_macos-x64_bin.dmg", + "checksum": "5a46f23da9dd7f07e744ff975fd1943dcd0f1c785cdb7e7def170f61fe5983f6" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.18_macos-x64_bin.tar.gz", + "checksum": "7233a9e72782d950d3fe97a5c35e6aae750fb6d903666db8b5787aec5030be90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jre-18-ea.18_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jre-18-ea.18_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.18_windows-x64_bin.zip", + "checksum": "27d748c269e604c792d605abe34ba9fd5e9e3888e5bab2d73483f7b77ca6910a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B18/sapmachine-jre-18-ea.18_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+17": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B17", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.17_linux-aarch64_bin.tar.gz", + "checksum": "92f12da279e95006a66af360e68cea0b948861a3ea1ce0e4423e875445768902", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jdk-18-eabeta.17_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "5a88a2416630726116c437093429e54b44f7440f87bf092d8612a1fff6481622", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jdk-18-ea.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.17_linux-x64_bin.tar.gz", + "checksum": "11ea7b84ce79fc43997f4465e12fcb8ef07cbba0f8909e8e3589beaf8be3d90a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jdk-18-ea.17_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.17_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jdk-18-ea.17_macos-aarch64_bin.dmg", + "checksum": "c3cd3229bafbff300aabdea450f5c9f9a5229b691a17e68abee338cb3cf73339" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.17_macos-aarch64_bin.tar.gz", + "checksum": "a461536550672689da69e84691a6d3a8cc96aae612652518ca7da4d4e8f1ce0d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jdk-18-ea.17_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.17_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jdk-18-ea.17_macos-x64_bin.dmg", + "checksum": "d5095a95adae4758387e871a8f88ee0abbed7d03295ca7e1e4a6e451e0dfb5a9" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.17_macos-x64_bin.tar.gz", + "checksum": "b092b6ce72aec4f199c590b1857034060b8000eb9ffe56b9fdce655765875550", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jdk-18-ea.17_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jdk-18-ea.17_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.17_windows-x64_bin.zip", + "checksum": "97389f64dfae036bfbb67d4243cf0aa46f583e9798f38ed71ea6737a90b670db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jdk-18-ea.17_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.17_linux-aarch64_bin.tar.gz", + "checksum": "bd8810d02072484faefff16d51916a9313f598a0f33fb85cd443aee36f776c20", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jre-18-eabeta.17_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "8eb72b1a7df657267ed6b5aadd481ac2e5920203098fef7a27a708c6a1646a5a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jre-18-ea.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.17_linux-x64_bin.tar.gz", + "checksum": "56ee481c362ea22005a26e4873888eaf87a38903f4dba42b5c24c345dff97317", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jre-18-ea.17_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.17_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jre-18-ea.17_macos-aarch64_bin.dmg", + "checksum": "b4cd0bcea965553126bd1243f20e776b8831046ea11cfd07ce0564c8d75cc01a" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.17_macos-aarch64_bin.tar.gz", + "checksum": "96aa6e8b94cad93fb3730026843bad67f29eca00d3aefc17c02e4da8b55c280f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jre-18-ea.17_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.17_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jre-18-ea.17_macos-x64_bin.dmg", + "checksum": "9d20e4c2d42de216430901091541ede660326d7cdd1c52a7e9e1c68723a2f677" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.17_macos-x64_bin.tar.gz", + "checksum": "8ca2220259e89861537d564bb0a1ad844ddd03f4bcb739eea42b468f2fff4e83", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jre-18-ea.17_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jre-18-ea.17_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.17_windows-x64_bin.zip", + "checksum": "be2befe4c89d581c3016d79aea672f83f964159fb0e8089ca6b5fc860d9fdce0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B17/sapmachine-jre-18-ea.17_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+16": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B16", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.16_linux-aarch64_bin.tar.gz", + "checksum": "5164b825afde8599aea7a7cb6de3bd72343bdd14c20c9a8fc76035cafd1b6b3a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jdk-18-eabeta.16_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "b8fdb21386bf2421f7342cb976cd25245b9946a5dbf64cfcee8e720b0ddeb77b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jdk-18-ea.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.16_linux-x64_bin.tar.gz", + "checksum": "ce23546e3f4ac9689c5ca0383ca0530da433d6ba50e86dba04961e15ec7ef8bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jdk-18-ea.16_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.16_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jdk-18-ea.16_macos-aarch64_bin.dmg", + "checksum": "59df5b1f71479da7fdc66cc458cf565e259e3adcc2420bdc7d5a257e637cfedc" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.16_macos-aarch64_bin.tar.gz", + "checksum": "a7e84fb844d4241fb83029e1dda2f885e6953a07e2931097c9413f908b23f66d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jdk-18-ea.16_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.16_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jdk-18-ea.16_macos-x64_bin.dmg", + "checksum": "b5a53087fcffe0e488787f215db3b5dda5eda4e1690a1805705255d648383b9a" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.16_macos-x64_bin.tar.gz", + "checksum": "baa3bce133c4b5c7b73c2329b84d303abc054dd9d9a3df778f54ce11d5487d73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jdk-18-ea.16_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jdk-18-ea.16_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.16_windows-x64_bin.zip", + "checksum": "4f6f83fab52d9eacf2c1f56f86ccd2246e4d569a017ebc8334afca20b8940c16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jdk-18-ea.16_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.16_linux-aarch64_bin.tar.gz", + "checksum": "5562052dfb99a12e62978526dd6faee8f95b44ab92955ff5e2b84694c2337e2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jre-18-eabeta.16_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "3a12706f1289ef814cec40149e6142305435f77836333c7fae0d479bc0b7c5b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jre-18-ea.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.16_linux-x64_bin.tar.gz", + "checksum": "b55b1fb1642f7f3c01214edc36fd3aba36a82448b3570d44a0fcfbcb3c7958d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jre-18-ea.16_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.16_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jre-18-ea.16_macos-aarch64_bin.dmg", + "checksum": "7454542286d913f86b3a28bd2773fcf6f4dd1818df775496b3f231a244da429e" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.16_macos-aarch64_bin.tar.gz", + "checksum": "6b6bb8d6dc768fde29d70a501ebce124e86be3825b0888f50a4acc2324b01d1d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jre-18-ea.16_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.16_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jre-18-ea.16_macos-x64_bin.dmg", + "checksum": "398cc6a8f444afe6d226ab9fc89211a34eb29721d62c7921c104546a2f522c1c" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.16_macos-x64_bin.tar.gz", + "checksum": "83000a81bf98e699bd1025c1345552be8c3f2c05f92bcdc289131cf0de573a46", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jre-18-ea.16_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jre-18-ea.16_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.16_windows-x64_bin.zip", + "checksum": "24d3e23482ffed02dfe0e38fcbc51303c4bcbfd375350ffa2ca9f7543d4e8b4a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B16/sapmachine-jre-18-ea.16_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+15": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B15", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.15_linux-aarch64_bin.tar.gz", + "checksum": "dd9dba21b70937d4476bf010fe6ba4833e5c9adc12fe81db50b84a0e5826adf9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jdk-18-eabeta.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "2c9875fa9ef6c8d81ada533f89c8696876e4592586d866f56264b005f2d2c955", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jdk-18-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.15_linux-x64_bin.tar.gz", + "checksum": "628ebb55f02df3d0d7fc5af919a46d9bea0c1d9b8e578439b4a00c565dc09154", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jdk-18-ea.15_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.15_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jdk-18-ea.15_macos-aarch64_bin.dmg", + "checksum": "e50a11189d4cc01e0bbd34c460c06ccc866d0c4111b7e62c1e15e1a0cf5c7593" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.15_macos-aarch64_bin.tar.gz", + "checksum": "73d87fbf27347afe0e67b5a8f8f41501a0241830b12e58f66bae4e1935a2c95f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jdk-18-ea.15_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.15_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jdk-18-ea.15_macos-x64_bin.dmg", + "checksum": "974224ca26086ac14b38468b27ec78bfe74d40c3f3ee3608373d81b12d06c9d2" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.15_macos-x64_bin.tar.gz", + "checksum": "0f27409ad107bd592381455dd2e41b03e690340c11f75afb3682609f17be1bd0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jdk-18-ea.15_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jdk-18-ea.15_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.15_windows-x64_bin.zip", + "checksum": "8c50976987a1b6a08f794a5ba6ab8436ff58f9d115b03ec5eb05b208ddfa295c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jdk-18-ea.15_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.15_linux-aarch64_bin.tar.gz", + "checksum": "7abefe4e40bf66dfced62e503ad3109742c10a4bb72dd6b99d0207c0415a3632", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jre-18-eabeta.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "77634564d8fbceb0c3cfdac4878d383701dfccf2dc9b97723ba013e72c3a2f60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jre-18-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.15_linux-x64_bin.tar.gz", + "checksum": "5f387ed6fc35b0aa0961de3f6b31fc91fce7e0cef863ff6de5b0449b2f6516f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jre-18-ea.15_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.15_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jre-18-ea.15_macos-aarch64_bin.dmg", + "checksum": "d0e97e147cb1895b97569387f147970580eadf470e7890529805f3e1ed65e34e" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.15_macos-aarch64_bin.tar.gz", + "checksum": "a0465327d516f3550d96b340e1005a6d550224498320aff8d3b686d012efa6f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jre-18-ea.15_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.15_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jre-18-ea.15_macos-x64_bin.dmg", + "checksum": "3fa0f27f5ab84d9470a990be642b241251ad1d7df9fc516eb912be180c235fd8" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.15_macos-x64_bin.tar.gz", + "checksum": "254c10b665586f0b04c8d0fbd7883c386f16e9db59f268e56e4b7f65885887de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jre-18-ea.15_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jre-18-ea.15_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.15_windows-x64_bin.zip", + "checksum": "e4a1d68557d6b60aa3f2704ba5db3cf8e8dc512c5efcd034d780ca8d3eaf8236", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B15/sapmachine-jre-18-ea.15_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+14": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B14", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.14_linux-aarch64_bin.tar.gz", + "checksum": "fbf93422f9525d1122f8e7e3b49aefca2fc71ce52db8c42da5dea103b9e530d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jdk-18-eabeta.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "942b4867cacfb10102d6469f766c6412374cde7bf8b6a549baa9eea61fb5aee4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jdk-18-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.14_linux-x64_bin.tar.gz", + "checksum": "91c3493b4f542e9196700de341b33ff035ec5d34827b973fd47b5e26d7773fdc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jdk-18-ea.14_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.14_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jdk-18-ea.14_macos-aarch64_bin.dmg", + "checksum": "573259c994b567ca625ddd5d93f32b113cf8f6dc4282761d9f3e6a9458afa6dd" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.14_macos-aarch64_bin.tar.gz", + "checksum": "056ad257e09ac073d9cbe0f2cb47cd868b4592659327f83fc41d1a2b07c1c4be", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jdk-18-ea.14_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.14_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jdk-18-ea.14_macos-x64_bin.dmg", + "checksum": "888b6440abe1c56eacc43622794299ef53998bd103e1d5354aaa7547c85ec23a" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.14_macos-x64_bin.tar.gz", + "checksum": "035bab0f3eaedb6ac7f83a5bd93c7c346caec6e983b065bcaf37c88b73083ca2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jdk-18-ea.14_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jdk-18-ea.14_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.14_windows-x64_bin.zip", + "checksum": "e00d7aff63f31002de31563a9a5b5d873f91ac0e0c03f43b9bdc8ce024bc12ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jdk-18-ea.14_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.14_linux-aarch64_bin.tar.gz", + "checksum": "30a00803a0934c2e0641692f25ae0a56395c1ea1262fc4b2b2b459385b438396", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jre-18-eabeta.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "53c12259d4c69dc0a0c84a8cf1e4685e27e1d8f70f3b7a475ad57d460db3a04c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jre-18-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.14_linux-x64_bin.tar.gz", + "checksum": "25a61a9c98dd6883ab756def87c4ca749adc1a983786f053e853454544130c51", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jre-18-ea.14_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.14_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jre-18-ea.14_macos-aarch64_bin.dmg", + "checksum": "0494b90becd66e5c9fcb0d511a3019b52b07498faca4de944d69bd4f5236e09c" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.14_macos-aarch64_bin.tar.gz", + "checksum": "58936276fc87e1da1a90052ed597e33ca744a2ac5331c1dfe195da0f4c7c46da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jre-18-ea.14_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.14_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jre-18-ea.14_macos-x64_bin.dmg", + "checksum": "0cc75d4be5a915e4ba35441665d41486e307fb7c483660f95263aafbbc17e03e" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.14_macos-x64_bin.tar.gz", + "checksum": "9341a7a67ddb712730abac848ff340fd3c7910bc87e3cd487f38ef0a611cd81b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jre-18-ea.14_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jre-18-ea.14_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.14_windows-x64_bin.zip", + "checksum": "cdd40519ca17ce00637a886c836f16e6b8b0bd5e96cc59b82177170e2cffeff1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B14/sapmachine-jre-18-ea.14_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+13": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B13", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.13_linux-aarch64_bin.tar.gz", + "checksum": "6d67cbc19b1495401e0f85f0128804baafd0ff7b331f1ee5c968107f4e01608d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jdk-18-eabeta.13_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "80dd8fb8ce6736ae70c2002baa7668fab98db0d2f84412542b2b3ccf44dda072", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jdk-18-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.13_linux-x64_bin.tar.gz", + "checksum": "8ce5a79d6b3731437a7640e1cda22967f4983447eff4f6c5dc3b5fe0e46bc88b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jdk-18-ea.13_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.13_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jdk-18-ea.13_macos-aarch64_bin.dmg", + "checksum": "d4abc9569738c41c071aa6a023f3247e3dc7e3fbd8307d4a53848fa7ff91ab1d" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.13_macos-aarch64_bin.tar.gz", + "checksum": "589f7cf765522d5e0a05e013cd7f8c2eac7cb93841b771cc3d8f93d19dc4a132", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jdk-18-ea.13_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.13_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jdk-18-ea.13_macos-x64_bin.dmg", + "checksum": "1020e1a276fa139d80a99235b54c124521e3c3a32dd75b445a7e6c2d11a69047" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.13_macos-x64_bin.tar.gz", + "checksum": "038de3b7a87d4f0793f74199cc8cb50a563af797846862c1eb8ebf9c7f2127aa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jdk-18-ea.13_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jdk-18-ea.13_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.13_windows-x64_bin.zip", + "checksum": "e9a51a7d8be41e3252ad070b0e1b8aaa65167659d52a634e9ba7b0d62ae07a21", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jdk-18-ea.13_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.13_linux-aarch64_bin.tar.gz", + "checksum": "5dfb8c399a96bd8e9b9d2eb941d71c89b3143e1548bca2017814b21610eee9b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jre-18-eabeta.13_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "baae40b1dcb0da3f9f6d5f9b966b7e6faa8d8a2eb59c3017dd7d693be3265082", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jre-18-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.13_linux-x64_bin.tar.gz", + "checksum": "1c1d9557c6bb6a25e4691de2a9fa5652922ff489adc61ce117548419bf53da2c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jre-18-ea.13_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.13_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jre-18-ea.13_macos-aarch64_bin.dmg", + "checksum": "9b1ac539bfb6b88a04e151772cf7c7220f883468b7d191a9dfee77b771d76cfb" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.13_macos-aarch64_bin.tar.gz", + "checksum": "2e53e0dfd871bc8f893e09ec93d2fff7dccf7f071f03a92bc50d55398f7b305e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jre-18-ea.13_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.13_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jre-18-ea.13_macos-x64_bin.dmg", + "checksum": "a568e47aface64478af11ee7966447a05c16cd1bc67e7682e2bacf654903a08c" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.13_macos-x64_bin.tar.gz", + "checksum": "b30a13de3200f804773f25b8c999cf4d98b9023e65c2e54a3d7be156b7e25a68", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jre-18-ea.13_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jre-18-ea.13_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.13_windows-x64_bin.zip", + "checksum": "c01c16233c2edef47bd14b18438e9275bd15bec56caab450a43d9b02cdf2d7d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B13/sapmachine-jre-18-ea.13_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+12": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B12", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.12_linux-aarch64_bin.tar.gz", + "checksum": "94b4548a47709dab55a869a238bda4c34b326d8c15e6addb16c4ac90f70558c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jdk-18-eabeta.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "f086b376f04b987933f1a163318e5c36ab9ebd84fdfa02bf976b8f9f4b4c1cc4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jdk-18-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.12_linux-x64_bin.tar.gz", + "checksum": "9eed3d5234a0ce70838510b65f8f2ff0d1bf15b426f66e814c72a68258f0cc42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jdk-18-ea.12_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.12_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jdk-18-ea.12_macos-aarch64_bin.dmg", + "checksum": "80320c029027991f193675150c9d401598b56aeb261c29e6adbc67465405aa74" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.12_macos-aarch64_bin.tar.gz", + "checksum": "857cbb6ba5a1116333248e52f5025b1d40c53b7c5a6792078f458bc22f31bf44", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jdk-18-ea.12_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.12_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jdk-18-ea.12_macos-x64_bin.dmg", + "checksum": "1c3c8b8f06aa82e66bb4640e6796d36c38efc91bb4833e6f14d0e53e7eee81d3" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.12_macos-x64_bin.tar.gz", + "checksum": "5d87497a355a4e5857c26d4bc8bd816a6fe06200c6686b00e5c72bb6c1dda73c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jdk-18-ea.12_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jdk-18-ea.12_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.12_windows-x64_bin.zip", + "checksum": "995ea3bbb167fc18c59af24ac85121da69da3e43c385557b761587bcbf1a66ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jdk-18-ea.12_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.12_linux-aarch64_bin.tar.gz", + "checksum": "7605a31b16b9d3c7ec03e2bbfd3f7346e50d5533c735723882128ca9a45f1f19", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jre-18-eabeta.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "703c77a90c715bea6d24c246ca49f28c692d2911fa6d15433241fb01bc33fb20", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jre-18-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.12_linux-x64_bin.tar.gz", + "checksum": "ae81ce1ec5fdb66e03e6e3d1f3f1351770a74712518b37cfa3968477cb3407ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jre-18-ea.12_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.12_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jre-18-ea.12_macos-aarch64_bin.dmg", + "checksum": "911764b12e2a2afca69451bc0c7594d0b4d34ad070b5a0fb2869d9bb74ca24bf" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.12_macos-aarch64_bin.tar.gz", + "checksum": "afd2cddefaa604df9b77a5baf26e4acdb48b38dbc1bc169347f571fd2cb399c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jre-18-ea.12_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.12_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jre-18-ea.12_macos-x64_bin.dmg", + "checksum": "bbbe709b7f18cec2eb12b45d9fd8efe1d8cd8bb48c5668c195fd5fb9756111b0" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.12_macos-x64_bin.tar.gz", + "checksum": "a21ecd6c9b9fe4cc5e966ce8e0344b6bc11cc3ea677096715ff15e5ec186c0f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jre-18-ea.12_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jre-18-ea.12_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.12_windows-x64_bin.zip", + "checksum": "48fa4ab4a0337e74cdce7190154aceb740a17a87d6aaac08fe51eedd94b407c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B12/sapmachine-jre-18-ea.12_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+11": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B11", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.11_linux-aarch64_bin.tar.gz", + "checksum": "cf2709165f822533f1beee95e8507c08c73573bbf06d0691443ecc6bb52f8ad3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jdk-18-eabeta.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "72d53c9ecaa6b4ce07c6cba045566d63afac791ee2e7df094444929641526bca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jdk-18-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.11_linux-x64_bin.tar.gz", + "checksum": "181950f466934146b33c6d45adc84636f176378f536ea832e9c5d3b11e8e6f55", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jdk-18-ea.11_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.11_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jdk-18-ea.11_macos-aarch64_bin.dmg", + "checksum": "dcea45c77119bffe6590b53c59e401b314b6df142072b939a181d6a20a9e62ac" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.11_macos-aarch64_bin.tar.gz", + "checksum": "13088e7c66382212fa46119819c651acc7f2ef39c2b45c59d9e026d1bd430448", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jdk-18-ea.11_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.11_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jdk-18-ea.11_macos-x64_bin.dmg", + "checksum": "201fb52158a70d42fa0657a53ed9c4fa6c5633d75e576080bccaca33797261fc" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.11_macos-x64_bin.tar.gz", + "checksum": "e2bf09c05450ce97c92af415e3847f74092868e83869a477a85b8e9f20895dae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jdk-18-ea.11_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jdk-18-ea.11_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.11_windows-x64_bin.zip", + "checksum": "7592537d1d304a6ad083f8624385383987d6d2675db25cf89c95d95324843c26", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jdk-18-ea.11_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.11_linux-aarch64_bin.tar.gz", + "checksum": "8a5359c4ab836b2a72991ebc7779b175e4fc1563bd5f9cad531c72f73154c5f9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jre-18-eabeta.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "e31634b7a6fb0492d3c2d7f41481e34c06ec37f94671b103adfc448fc3011299", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jre-18-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.11_linux-x64_bin.tar.gz", + "checksum": "d8a9c870cba5f0cc772d0d868746c183e42ebac93b1171558518b335c6c5dd66", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jre-18-ea.11_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.11_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jre-18-ea.11_macos-aarch64_bin.dmg", + "checksum": "ad204cbdf2289b2d9c836db77d0369a023219ef1dc7cad2338d3e3a4ea5f1775" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.11_macos-aarch64_bin.tar.gz", + "checksum": "4016895fc2bd77f2cc82b9d91a4bca6197e8f777d2681945d3250d243c2f3bae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jre-18-ea.11_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.11_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jre-18-ea.11_macos-x64_bin.dmg", + "checksum": "e6519712374372939a7b14e7e97d9e0a8b5638650f7b2001e38dd173f6b65073" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.11_macos-x64_bin.tar.gz", + "checksum": "9aad0385fcf7f0da8d6723606a29f48ac4c94e9d557ff54531ab9cfa8e81a553", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jre-18-ea.11_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jre-18-ea.11_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.11_windows-x64_bin.zip", + "checksum": "7f01a29cbbc6083417c5eb7c428da4f47be5350ce86cc91680b7424526b37c81", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B11/sapmachine-jre-18-ea.11_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.10_linux-aarch64_bin.tar.gz", + "checksum": "2bd3d4cd0bc870207f272e2147d8d5696dc73dc3d41ff6e09edb11ede50e2bc7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jdk-18-eabeta.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "16c0895a133235aa08780977d9696f7cda7e83d31e08eecc8d9fb032dfd38202", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jdk-18-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.10_linux-x64_bin.tar.gz", + "checksum": "8b1e2d6a2a4585f95b4f39ccdecdf0723334e5c6440578fce054bd7a4dbaace1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jdk-18-ea.10_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "11002b091c3effded2d63beb6d892fcb0172e28943583b51fb1ab2606c5cc453", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jdk-18-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jdk-18-ea.10_macos-x64_bin.dmg", + "checksum": "327e41f98ccb6652f64f3b572fcb42228fdd3901e6404ad14a9228d1115e1bef" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.10_macos-x64_bin.tar.gz", + "checksum": "1f8ad7c9ffd07e55ea76622a23e9895cdfd2ed77aa65b7fe9d130e3890c24322", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jdk-18-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jdk-18-ea.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.10_windows-x64_bin.zip", + "checksum": "350afa27e9b8d05afc496dfa4d8aefc558e5824088089073661df58604c5bfab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jdk-18-ea.10_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.10_linux-aarch64_bin.tar.gz", + "checksum": "d8822aba44ac9356625e93290dbf1b144eb48b7e8098600150188db9fe3e84fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jre-18-eabeta.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "d49fe51994f69f3fbcfe6f6ddd78bf67e69f660ffda7aa7c212feb82cd2e51f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jre-18-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.10_linux-x64_bin.tar.gz", + "checksum": "0c848603d03b641bebeee202460e4d61fb988ce2c008b95a8dd8e2d4028249f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jre-18-ea.10_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.10_macos-aarch64_bin.tar.gz", + "checksum": "228f3d58e9fc0a9dea70aef0ae56afa98c25b17b63ac6c52bb5636767d85da7f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jre-18-ea.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jre-18-ea.10_macos-x64_bin.dmg", + "checksum": "893995c4c70d1d0b129dc0fc6048e9aab27c96b2a861fec627c0345f87749ec8" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.10_macos-x64_bin.tar.gz", + "checksum": "e59e8c815c2034137401f0bc6568a5e05236021932333dfa2eb0bad0871e8a0a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jre-18-ea.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jre-18-ea.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.10_windows-x64_bin.zip", + "checksum": "40c07eeb03793d19523e1e15d6f2b03c3014ad9f9a36f4719d7f63f04247478e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B10/sapmachine-jre-18-ea.10_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "d66df1014f639fa09d830f5fc4933544ccbe8eda67ef259cda873545e8096231", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jdk-18-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "ec97b0a6aab87d2cca1077d458b7f2978f3c0db96e4321dca8b88aba3fb8b3e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jdk-18-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.9_linux-x64_bin.tar.gz", + "checksum": "351a3ff0c2f7a31741e283b9359f2fd0a5152203b262f042b4be90b14b301483", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jdk-18-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "78fe014f4653b5015afacae6b07ba67eaa3370c1301f1c5ca9ee540f5999d637", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jdk-18-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jdk-18-ea.9_macos-x64_bin.dmg", + "checksum": "5351bbca5eb863b6a7b5253590cbbbfc7a4be51bd6432f13bd6ff1dc30e7f3d2" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.9_macos-x64_bin.tar.gz", + "checksum": "ffbd464387e6f3cb50e48f8837bb7d75ba3e61a04e7715a1d02cfb61e50f4f60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jdk-18-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jdk-18-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.9_windows-x64_bin.zip", + "checksum": "423c55c0ca77ea527db47f0d4e515332a02487bd52de82002845023b34a00232", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jdk-18-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "1ee0c3792a79dcbba341f1d73b38cb6ce1d66cd7e8f9c2e632263ebbbe416b7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jre-18-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "04f786dc81c9ce27c522a6ae7f7db5fbc428ae5273205b3e62a3b57e54bfc42b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jre-18-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.9_linux-x64_bin.tar.gz", + "checksum": "8ebb095b925dcf999d282444e96ee415ae647e7539f074b5ffbfef795e43fa8b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jre-18-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "5fed147bc192685c83b4d5a7eac74520d9e2daa57391f4b72806719f348d9e85", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jre-18-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jre-18-ea.9_macos-x64_bin.dmg", + "checksum": "461360544cb70e85be1dca8e0fb436cd602a944bb770ddef1fc4132686b6c6a7" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.9_macos-x64_bin.tar.gz", + "checksum": "df17fc73eebab06b7c1b9469736e8b3bd04b687b687fa3ccb86dc97b22d9d71f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jre-18-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jre-18-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.9_windows-x64_bin.zip", + "checksum": "af2e60fe0817c98d039293128f9d71faa50df18d57ab26bbf33ee983bafe8c4e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B9/sapmachine-jre-18-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "bca57c96e3655575757e864b6e08866c3631aa5960e0c66db8c5bea4c6aa0127", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jdk-18-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "11de8415dfc73cdf1ed78f0fea2686fcbfde2d95780d3be2f6e88fc9721f50d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jdk-18-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.8_linux-x64_bin.tar.gz", + "checksum": "6d4c7c8d2ddf88cd5fdb86837616843e94ac3ca1f1737505bf8aaedbbf644d51", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jdk-18-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "8df1a43367283a69e631ba2d9306be55a205e50c69c72e6d54484ae912fafed5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jdk-18-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jdk-18-ea.8_macos-x64_bin.dmg", + "checksum": "6d884c2379dd444f460add04b78cdb03553029b99748cd62b7e2034da32c056a" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.8_macos-x64_bin.tar.gz", + "checksum": "29f6afc89d85c201ddcbf95dc2f9d049331a08e67fa76dfd204ef7313743dac6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jdk-18-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jdk-18-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.8_windows-x64_bin.zip", + "checksum": "086049ee7bb08af7ad832e3d358055675669bfcf5373e0c6edf26bdfd169c9a5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jdk-18-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "828a98faecf7c246298cd0b9a1ee82570a6bdaf26f5dc4a70add2e7627a81c14", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jre-18-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "d15da615f422217fb5507d77f56f32d100ae07449515e5eadd7afc61964565cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jre-18-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.8_linux-x64_bin.tar.gz", + "checksum": "d4f966cbece796dfc01775c2b51cd5e1d16c2007da5657d958651cb46ce48403", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jre-18-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "b1d1282a29bf2ef8201d572492a6e39758075e39957ef5c093b5eeb64f02c516", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jre-18-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jre-18-ea.8_macos-x64_bin.dmg", + "checksum": "8fc4ab70b97c2a8856de5b149f97a23b67df0f3b1aebe0a4acd428029851b127" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.8_macos-x64_bin.tar.gz", + "checksum": "d98f56718bd9f7518201d9a775f8104a7da4767311c5007c612448fab16451ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jre-18-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jre-18-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.8_windows-x64_bin.zip", + "checksum": "3a73870d55bbcafcdb22d3c3ab6bac830ecf10a28ae96ff6baa15037e73947fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B8/sapmachine-jre-18-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "c9975687e475692fcec2f0a83ec062b85f367a3c0766bc1633308a6ac7cc4ab2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jdk-18-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "343403707ea016254a4ce79f94ccb73929fdd989450659b2c4d20cb35c14ffd7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jdk-18-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.7_linux-x64_bin.tar.gz", + "checksum": "924c3c8ab37831c7f49efad00f803f2eb04b71e6d4ca9017bedbc15f7fe0b4a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jdk-18-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "6b5b7c96921a903e14c60bbd9ba052749c497e0dc355db1248afa98d2fa7e72b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jdk-18-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jdk-18-ea.7_macos-x64_bin.dmg", + "checksum": "b8a56911ecb8c1c0202500297ef26098a1a929e71c1ae969ddd9ab5e63f30d61" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.7_macos-x64_bin.tar.gz", + "checksum": "f6573999e6e0d3698c153496090b875f38aa4d130976ae3182e07ae15d46fad5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jdk-18-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jdk-18-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.7_windows-x64_bin.zip", + "checksum": "01962b5d7d706cfc723c39cbdfcdffb7fe020e9ebf00f9aba527cc2be1987542", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jdk-18-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "2aea3835260e94945fb64936ab6060894426417abaf7ab271959fb465d0b3f5e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jre-18-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "84eeddd01eb226b8f483760151a2718ce3f45ea93745e6cb406c26c1d41c695e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jre-18-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.7_linux-x64_bin.tar.gz", + "checksum": "ecde5595a5ece8bbc1d0c883094dd21bf24ad63d3329274fa1a599e99875c7ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jre-18-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "5183c7a883becabcba584f83705cfbd69b71e23e4b99082fb4234402dff217cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jre-18-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jre-18-ea.7_macos-x64_bin.dmg", + "checksum": "18077d9e63537b57cea16756af7fc5c7910043862a3a75d57fdd344fee1c5bd4" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.7_macos-x64_bin.tar.gz", + "checksum": "33fd369070c8c3731622afbefc1eba6ecc7e2859e228743614c73ee68efb90cb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jre-18-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jre-18-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.7_windows-x64_bin.zip", + "checksum": "88cda441826c2f911d6c4e943b5f8886aa9ab52f6f62141c134422ee3b976130", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B7/sapmachine-jre-18-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "69b334966eae7bcfefe1f7afc426389c15a659a79afdc86c1ac6f47a6b6fdc2d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jdk-18-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "da473b79413b64edf8920a3935295202ad38081e919981485f4bd60f6ef7f2b1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jdk-18-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.6_linux-x64_bin.tar.gz", + "checksum": "09f9ad362840114194238b540634314b49e43fe3fbbc7240c572d6f9cf2ec7d0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jdk-18-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "db87137c2868a5242e1f06b4b2e51e0ae700ee85395e1c847643a5de2c6bdf48", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jdk-18-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jdk-18-ea.6_macos-x64_bin.dmg", + "checksum": "5b6369d459d4154e1b7275948a6603566e3c6f90c95880c81b2f68d3d73422f4" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.6_macos-x64_bin.tar.gz", + "checksum": "dd984bd6927b5f4154103ef037025067aedce4ae400fba8d9240180802b13e47", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jdk-18-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jdk-18-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.6_windows-x64_bin.zip", + "checksum": "22d06c477b678a25a2bced5197a36a6440de41e3cf6f8b4f8369ef5f3ffbcc89", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jdk-18-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "664d031cf8fc312db8f1cf7004727187e43adcac4bb5efbb0a18d5cc2ce4f82a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jre-18-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "d9589f092ff4d72ed623f2eee795400c52379a09dda3fa2f61f8dde81810c9e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jre-18-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.6_linux-x64_bin.tar.gz", + "checksum": "118252a84c5a3ade03ce38089fa68734196fb9de316c4819a70c91053cf1f346", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jre-18-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "085edb0cdc2a52c14598a83aace9eba4534b2bf9cf5bc20ede552cf8169bd716", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jre-18-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jre-18-ea.6_macos-x64_bin.dmg", + "checksum": "f6420288e121841204f0c2bd6018c34b8f2ac8a7c2d70fe0d8eb8fd660e2f2fe" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.6_macos-x64_bin.tar.gz", + "checksum": "db8644a7f2f91437e52905e83e012d15c2429d591406cc233b11be2776fee0e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jre-18-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jre-18-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.6_windows-x64_bin.zip", + "checksum": "9a4c4dc57c270a54fe93ea5ee6a6e39dd211c820d8a4f589b287c107bcbf6044", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B6/sapmachine-jre-18-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "343eff4f803b95c152c3377cef56e31816d68d07f9145ecacf4abe8e20f28816", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jdk-18-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "9f122b1ec9f312b3800117518c408696e4c1c9200176fdb2da3af35e471e7a76", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jdk-18-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.5_linux-x64_bin.tar.gz", + "checksum": "993715dbae0cc695ece188503ad3d4583fc58d7c2ec206e5a5eea7ef5be20341", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jdk-18-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "183236ab5e2ce9a46d9af12c85b816673f63bb6ef71619437b440c0a04df6c45", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jdk-18-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jdk-18-ea.5_macos-x64_bin.dmg", + "checksum": "26819665172466c8e08bfb7b8aba37ba1fe76dbebb4a4ce54bbeb2d58fd7b6d0" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.5_macos-x64_bin.tar.gz", + "checksum": "eeae3327c8b3e7569b129771890ce56dfd2087802d19220f3198ae63dcd4c84a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jdk-18-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jdk-18-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.5_windows-x64_bin.zip", + "checksum": "a6c70d505a4e9dc5c8fa60546436dd7ca8a911545b5c3fdca928a25cdaf908ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jdk-18-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "d6ffa0d661042b643a91e5d92ffe18b6b6ea819bdb55198d9b0689d4df167a73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jre-18-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "cac0ea3c64f4161f47b8e22b5a61b48ab0cd3ce44d478423e25321b2374aa054", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jre-18-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.5_linux-x64_bin.tar.gz", + "checksum": "f567befb0999c35242ae750b32e2e7dd7eb219036a3e1ff7efd726bf900b6e86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jre-18-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "602caaf296239385d3b525f6e63737f04271e7c85964b1440de09f728bc22ced", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jre-18-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jre-18-ea.5_macos-x64_bin.dmg", + "checksum": "e67a31ba5077d1fc9f7b54b604c6b22bde08a9532236199fe0bb7b81adeca940" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.5_macos-x64_bin.tar.gz", + "checksum": "b60d5cd25eb3db42b56868e2704cb4bcde4be4f6ad8dcbb810ccff3384a14fbf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jre-18-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jre-18-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.5_windows-x64_bin.zip", + "checksum": "16d7f149565757b17f6246fe58faf12e317b905552c8ed2fb8384448587ef1ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B5/sapmachine-jre-18-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "cb1b881a75365b2d57b6836278717fcb40ff691645682a1293bfd95aae247a50", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jdk-18-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "e9c565b552f6084e433c8a8701597c98dea1c1a43e587c8bc63b26d6020c274a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jdk-18-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.4_linux-x64_bin.tar.gz", + "checksum": "7ca2a4fb9a6200bf6ee4cf98b2880355f5c876d5d3b17d99f3d7859ebb7f32a7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jdk-18-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jdk-18-ea.4_macos-aarch64_bin.dmg", + "checksum": "94f234ec259ad65de5a3062bda59ee6568abef5b2fba27752f3a33b97b5e4adf" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "1ceaeadc7e488b3f529d9aac50c0a131dc9ef6031121cfd0ace4db42b50b4075", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jdk-18-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jdk-18-ea.4_macos-x64_bin.dmg", + "checksum": "159d427a5d963b52bfc76660831aa98b5e2dc2c4f64fcefe91d574e50cda052e" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.4_macos-x64_bin.tar.gz", + "checksum": "648bc1f5ddd98e937af7ecbe3bd7b86f3cef362ea5be0c91dc56febe1ebc64b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jdk-18-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jdk-18-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.4_windows-x64_bin.zip", + "checksum": "98caa03edaaff3ed60c1cfec384e4e223f017c1a99101b4961c837f1c44adcdb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jdk-18-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "2e45e2fda39b10c74bf88b5891f83a878ab8020d1ad51a1808ca19e881f05754", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jre-18-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "cd59d63fc5411921480b93a4a0adcf12620de16c886abc73ce44a85ca48b21a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jre-18-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.4_linux-x64_bin.tar.gz", + "checksum": "86146eb1df7b058fe9d9a9d478e75343ee546d2957e61ce7de58c255724f089a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jre-18-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jre-18-ea.4_macos-aarch64_bin.dmg", + "checksum": "72907780cf547757dfa3ae9f51b11c9d3d527800f00f3e090891003efa010562" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "81b21b5b7f3a3afadc07189ed4300b103aca46ccf65834609a899e441c2540ca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jre-18-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jre-18-ea.4_macos-x64_bin.dmg", + "checksum": "b8a1668c6b3c37799e1be1c4c081760a4b2ca7d9d82be9752c7dd6008dd94b47" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.4_macos-x64_bin.tar.gz", + "checksum": "611c633d9b34b9e4a3bb343d559d3a70ce368f51f7b0b34c0b41d186ca587bbc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jre-18-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jre-18-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.4_windows-x64_bin.zip", + "checksum": "b93d52dad99ab8bef9e879a706ee1d236a26afa3379129cf1b3678546c30a6f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B4/sapmachine-jre-18-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "181c5762fa2005c79e3508373581611c84968146fdbd305f8e932d12c404c39a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jdk-18-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "f3f7480f2c9763a38498be81eb02ed4309da29492c53d5e4a4cd859ae0f93ca4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jdk-18-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.3_linux-x64_bin.tar.gz", + "checksum": "eac1dc7efc3b6014e0fdcbf06ebf6adc1ec59b82140a57f52a0b91ff20473649", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jdk-18-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jdk-18-ea.3_macos-aarch64_bin.dmg", + "checksum": "4b7539512e99fafe78d9556f007e59b9b1843dfa5d090b26c1b8075eb380f0d4" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "bde2af8e6d3b2804a7889733f0a68750c80467ca87415c7aa61f1b9fa0f003f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jdk-18-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jdk-18-ea.3_macos-x64_bin.dmg", + "checksum": "e49bc4c8d9bcb8e0d65ec25043cf9d88b5fed92356c833c1e36a6363b80d4322" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.3_macos-x64_bin.tar.gz", + "checksum": "3eaeec612b69e58e43e0fea20cd4b04db1bd49c932cbc7134b9539c5cfd354ca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jdk-18-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jdk-18-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.3_windows-x64_bin.zip", + "checksum": "ab91319df30ebbb999f74fc177d0c9e9fd53562b10f294d4a35a7d65c3d6ad3d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jdk-18-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "db94e371d8b8dd415bb9ec5de7c7bc8df4723d643e53f23585d7ed2867ec2b56", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jre-18-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "d37b69cac3c389c1535fcb0e39c5fa74ea8d77220728be04da42bd5e8640b33c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jre-18-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.3_linux-x64_bin.tar.gz", + "checksum": "f446dc375b918c43041756252eb09e1acc927008c365263097b7d98c021d699c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jre-18-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jre-18-ea.3_macos-aarch64_bin.dmg", + "checksum": "dd5bab9122bef6cd90f19067f4edef2e778c0cca235c859b8207374659ffcfcf" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "da578386bc1191f803edc21b87ec35cae7e69663e62d27c4a8ff4dbdd32f9a11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jre-18-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jre-18-ea.3_macos-x64_bin.dmg", + "checksum": "dbf1943d1f694852f6024f9a2e2adfc84a269ef66c3e2757306ce5d6d09afe87" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.3_macos-x64_bin.tar.gz", + "checksum": "1c9edd956bbd466976fa8b59cd640d659a60ad388f1601ddc9af122c35753e35", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jre-18-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jre-18-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.3_windows-x64_bin.zip", + "checksum": "a9eedf2078eb8563d1278229d7bdf03a8822662c2865b399ff7331ace905be7a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B3/sapmachine-jre-18-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "b08d749886cb235ec4a567152ea7a2774e6dce2ea3d40cec707b6b231ddf2704", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jdk-18-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "3aa95eac84e11ce6c7e2d982fba5c2feb9ebea4981e6fd62ee90fe369b1bbe7a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jdk-18-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.2_linux-x64_bin.tar.gz", + "checksum": "9da6c10fb2373ed5ef223ebd6db8d24b34dfd7510752bb0cd73112ec89e58ec1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jdk-18-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jdk-18-ea.2_macos-aarch64_bin.dmg", + "checksum": "e2e35ce2ee0e2e162c4bd82cde78c47839d6b4150c2c9459e022506408d492db" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "a1d04a8361bf0d67856dfe38209faaf689ff63a232e9766adb2f7a2df7dbf549", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jdk-18-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jdk-18-ea.2_macos-x64_bin.dmg", + "checksum": "847e4799f2513a441fd6192974b014f221ae77ea8241628f68ed95a55c8ceac4" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.2_macos-x64_bin.tar.gz", + "checksum": "adbe795f203dd1642f3aba76134c1fe852596fc67e029b4619f232e2e507f3d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jdk-18-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jdk-18-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.2_windows-x64_bin.zip", + "checksum": "062de09a399b4bd6fbc6cb60200473e6712bb99f7c703cb455cac92ecfbc54d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jdk-18-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "28e337e4f863ebb713824fa88eb102446e03a1a1a8694e7a39d74dd8263ed827", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jre-18-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "690500b6c1b4d9e70c77c9c06c7e7d22b076209256a6c76591307ebd7a3ca2b0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jre-18-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.2_linux-x64_bin.tar.gz", + "checksum": "ae116e025e739da8ec8dd515c879fd87604d8f0cc30ae880c021a9e7a7333bd7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jre-18-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jre-18-ea.2_macos-aarch64_bin.dmg", + "checksum": "63c3658ef2e93918edb4ea944d06d1300804edbcd632b3db8518a1c3e4f06c95" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "7785daaf07b2c07c698a03d8d8ad133f568cd18b90782faa3ab79c2abf04ada1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jre-18-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jre-18-ea.2_macos-x64_bin.dmg", + "checksum": "12c3102ecb2d0778abf9353a434088405090167d26701bae7e21d13d52dc1253" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.2_macos-x64_bin.tar.gz", + "checksum": "de4839b857cf6d781c053cf1f33940d9f25ec4d0c4916896ece4de53bcf88491", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jre-18-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jre-18-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.2_windows-x64_bin.zip", + "checksum": "4ab350224ea56403522e16044a818e7c471b1bd18c7c74b0be8b3c3ebf48464b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B2/sapmachine-jre-18-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-18+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-18%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-18-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "b075f1b5d9759a80042fd31763fdc918aaedf4a6105393e079bfa7c8c9ad73f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jdk-18-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "91153dad8f3e46560d253b612155d2d11a9ad46a25838253ff42aaf1b29c1710", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jdk-18-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-18-ea.1_linux-x64_bin.tar.gz", + "checksum": "866228a3ab5a913e1b5c1ed2ce7c4afb7c05150ab2c8285d618b97d4ceb5eac1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jdk-18-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jdk-18-ea.1_macos-aarch64_bin.dmg", + "checksum": "6947ae8f5a9158efbffa642ef93a07b40f2f9654faafb9963bc3ced37b0a42b3" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "80f25989ddc85172047e2b4d829ce9faca32e2b30f15635972cfd56ec2a603cb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jdk-18-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-18-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jdk-18-ea.1_macos-x64_bin.dmg", + "checksum": "c25f2406b333366f568632555627fdc033d3c5a6e6ced2e109369913a8004957" + }, + "tar.gz": { + "name": "sapmachine-jdk-18-ea.1_macos-x64_bin.tar.gz", + "checksum": "1a67105bec5b16b08572fa9c8cd0837a32fd86e31c7c2845d70c91414e2d7e51", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jdk-18-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-18-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jdk-18-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-18-ea.1_windows-x64_bin.zip", + "checksum": "b2a9b7b86d033027dd8541339aa02a5c6027f7e5ca891a73b7892a89a1d9b045", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jdk-18-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-18-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "f07bf8fc442a4ccc45ad59271c61c61ca129babb0b4e48407e813f6e3528cd5a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jre-18-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "d6c2d3875ac30a5a21fe1606cb72edbddc13b6370478ab64d8c36de043211d34", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jre-18-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-18-ea.1_linux-x64_bin.tar.gz", + "checksum": "4952f344ede424b62d9938640219aacac58ee6399ed22b16a2e41c47632a19ca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jre-18-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-18-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jre-18-ea.1_macos-aarch64_bin.dmg", + "checksum": "2d1ccff7f4b3d215c3cf2caad3d8ce1af77dee33abb685b3ec1f5768c993fff9" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "bf6debce89721673af3c6c21f670f1b79311ce5d74fd11dd2fafdc9b64c6177d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jre-18-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-18-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jre-18-ea.1_macos-x64_bin.dmg", + "checksum": "85be693abea57a2d8d42be133601ad4bbe1c85a5bb26722dca6bff895c859fe4" + }, + "tar.gz": { + "name": "sapmachine-jre-18-ea.1_macos-x64_bin.tar.gz", + "checksum": "cbe141c691456f946c8fa488d074b8f3b4d124d939c289eabd313c4631bb1d70", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jre-18-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-18-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jre-18-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-18-ea.1_windows-x64_bin.zip", + "checksum": "0babb99f8f4f428832a4d1dc5ca6351ae6508c6dfee038f36c3cb6cc0a460fbc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-18%2B1/sapmachine-jre-18-ea.1_windows-x64_bin.zip" + } + } + } + } + } + } + }, + "lts": "false" + }, + "17": { + "updates": { + "17.0.11": { + "sapmachine-17.0.11+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.11%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "0c59defd20e17df72dc51d42905caa648a56bf4e6b61b3b4a4c72fef61ba0cb5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jdk-17.0.11-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "1e6f118092edb60bec6065a23b54b136f94d6bfac50353a5f0ef364b4fa720f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jdk-17.0.11-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.7_linux-x64_bin.tar.gz", + "checksum": "af735b5e68f526e37bb38a4ea6055b3f23fd406fc3e64cd74c0e54e24c313e79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jdk-17.0.11-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.7_linux-x64-musl_bin.tar.gz", + "checksum": "ec24eaa6bfcf12062e0ddaf41d2bb7bc14c1e9a228e1d33bd5b5d5a63646ecdf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jdk-17.0.11-ea.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.11-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jdk-17.0.11-ea.7_macos-aarch64_bin.dmg", + "checksum": "8938c2b9ad42722832f06732be7f59abab26a33f631820ab804049980925ffa9" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "7d407179207d7b4fdfc189f6798045170dafcaf2570587a588e698d04d19296d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jdk-17.0.11-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.11-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jdk-17.0.11-ea.7_macos-x64_bin.dmg", + "checksum": "51388b5b821e57ae201df9afd334211c9a010c6ae5b9ad71c91993c32f0b9baf" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.7_macos-x64_bin.tar.gz", + "checksum": "5c1e66bb7ff4aa2e0a5cbefac8d0e0d06505e4fd180d56800fd22636ddf219f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jdk-17.0.11-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.11-ea.7_windows-x64_bin.zip", + "checksum": "086ed5d0378c115d63cfd31cbab1fe49038e6deba639012df0463eeb8ce0009d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jdk-17.0.11-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "66055d6aa7b89fdfc936a7c2c334cb220b32641f70410bda0000dba008bee410", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jre-17.0.11-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "2a9b6f3e5afaf4ccfbb1d11a59cdaa838f6fef29d50a86ce50c8a26775d9293a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jre-17.0.11-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.7_linux-x64_bin.tar.gz", + "checksum": "a2cd11a26f8144d3529a16b8ce43a12db3e3992cb47b2057456ef847ac86a27d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jre-17.0.11-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.7_linux-x64-musl_bin.tar.gz", + "checksum": "292c6dc6cfe3f6502967308d20b55f894dae6a5826a7a6130c7bf9059f08bd6f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jre-17.0.11-ea.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.11-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jre-17.0.11-ea.7_macos-aarch64_bin.dmg", + "checksum": "23dda4a224308b41fc959df3cc611ea12b097a7d120444de6fe2b9f8d3b9efd4" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "2428357df157e5c4fb74a4b32aaf5039e0b222bcd23ec1faba07ebd76e65eb78", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jre-17.0.11-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.11-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jre-17.0.11-ea.7_macos-x64_bin.dmg", + "checksum": "2682238a44963bfca21ff3901923ba7a5dcece1547adcfcfd3c14dbc1513c8d5" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.7_macos-x64_bin.tar.gz", + "checksum": "3529eb4a43baf0fdf6b2e32c33258e906286337800bcf999f83185ff2226a684", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jre-17.0.11-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.11-ea.7_windows-x64_bin.zip", + "checksum": "14fed07a2df0737aa6c29d56b41c17fd6f427576c7250eb2603b1ad6dc5b3ff5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B7/sapmachine-jre-17.0.11-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.11+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.11%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "1f1026614c51a54fdb986611be0fe8b15c72d5694d2b6b04b0bd9abdc8e5b51a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jdk-17.0.11-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "f9d24676a8ba9fb4812231a1522a8bf4ed37b974304874390a50548c67324b39", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jdk-17.0.11-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.6_linux-x64_bin.tar.gz", + "checksum": "47a0f170e7a73eb3b8c92643b94ee4c93f61ed57e2e8c7c915485820f65a4d66", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jdk-17.0.11-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "4b27cb13efe1465a1f22e46311f8a5dfcb1a4a8d3890f080751f517dd4785879", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jdk-17.0.11-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.11-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jdk-17.0.11-ea.6_macos-aarch64_bin.dmg", + "checksum": "513519eb12958e763df021b7af28699a6076749ba748aaa600eb2a26ad05769d" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "1d32113ae39c184c8480d64f90c2341b9ab805c78d8a391edebdb34ef41ff02f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jdk-17.0.11-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.11-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jdk-17.0.11-ea.6_macos-x64_bin.dmg", + "checksum": "c21de53b81068b478dcf8489de99269cf5c13dbc11ed8d0f6d08289e32c7250d" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.6_macos-x64_bin.tar.gz", + "checksum": "d167da1ce391741655b74a956f0e9d777758432435d14a2a881dbda4d8cb1888", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jdk-17.0.11-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.11-ea.6_windows-x64_bin.zip", + "checksum": "c22f5dba492ca989832123d5431bc6f95ddfc15394a1086eddd391e0bb336dca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jdk-17.0.11-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "f1328f4f20a6d80497b6fbac2369c2373c2e7b08d4550d7261ee621926fa5291", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jre-17.0.11-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "110f0fb5c25e866b4a7bd23a47efd36043092ee2b675e21df12b9b1f4cab3267", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jre-17.0.11-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.6_linux-x64_bin.tar.gz", + "checksum": "8c27aae7f58b143d823b40a94c946f4744f8a05940d6854f4cf351709cffd577", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jre-17.0.11-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "3da04ba1318b17c7882b9ead671eed0aff586614a7fea07dbee42780058b6a2b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jre-17.0.11-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.11-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jre-17.0.11-ea.6_macos-aarch64_bin.dmg", + "checksum": "5858dec191d707d3f2cd050b75b0b165c0a6291f7e0d4c93f1ae0ac5f8cdc5d7" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "426579184edc5841eeaa919a7c62b1b3811de92e7fffd3a52cae2e3273bf8b45", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jre-17.0.11-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.11-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jre-17.0.11-ea.6_macos-x64_bin.dmg", + "checksum": "6822bb7971a9c7ffa92bcd05701fc8cd5d4ef7509d8d28b34f81c7bb0c9b4f19" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.6_macos-x64_bin.tar.gz", + "checksum": "49407448f7d68b82d0df384bdb6f040e905ae14eb855687deee93ff20676c88d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jre-17.0.11-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.11-ea.6_windows-x64_bin.zip", + "checksum": "e4b940c16825d18c6e2aa9323861f543bd5dbb8b8201f5e9417357b764388283", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B6/sapmachine-jre-17.0.11-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.11+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.11%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "34743b78172b1aa0210d0a1a9ee51c96b5f2737cd8f0af0006c87fcef3ba27c2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jdk-17.0.11-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "aa4ca07e3237db0072071902c580384bfaa405f988f56a28da9335664ae7d29b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jdk-17.0.11-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.5_linux-x64_bin.tar.gz", + "checksum": "9cc67ac8b8c9b4fcf86d8d3dbe97c24ed12a8cffd18c2eff824d268fd44c2ee0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jdk-17.0.11-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "bef3746f56333465d9fbc84c4cc8157c78f36f5535a79e844803db3dd32c0f98", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jdk-17.0.11-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.11-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jdk-17.0.11-ea.5_macos-aarch64_bin.dmg", + "checksum": "28fbe766535e30b53a486d31928d7a1cb32c5073fada61a5a677ba76f32e988a" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "4b21196155c305ab4e3bebb819d53a7d07c74a1eeb0110d59ca89c218dedde16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jdk-17.0.11-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.11-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jdk-17.0.11-ea.5_macos-x64_bin.dmg", + "checksum": "7f4fe272dac20c074698e8bc6ed9382344350c2bd22b4fffbc17661394ef5f80" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.5_macos-x64_bin.tar.gz", + "checksum": "a2555dc19f83edf692e1bb6d709b731871ae9c5ddf8a05e136393c68f097f107", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jdk-17.0.11-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.11-ea.5_windows-x64_bin.zip", + "checksum": "b789377efea2d709b9ea2d4c63d199dc054f562fd73ed92faa411e85b06c9459", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jdk-17.0.11-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "eb12b10027848f65a17bf7fd8abe0d7f705cae16a9936498b3c6490e051c5614", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jre-17.0.11-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "0cc5cd80feacef61fe81a2d07eed4158b0d2377885253fc1a93d6e7e7443bb84", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jre-17.0.11-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.5_linux-x64_bin.tar.gz", + "checksum": "f8084ea88253c409282e4403cedcd8c9239a377e5570a6e540cb27fabaae3d75", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jre-17.0.11-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "cd8807e17440e77f06e26b0ed63d5fc414a724e97e1a6b9e70c39e3a9e0e6df4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jre-17.0.11-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.11-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jre-17.0.11-ea.5_macos-aarch64_bin.dmg", + "checksum": "c9e066479027f08c95ef9593a8ddc365f2200f7354234e170e5a9d462b24cfd1" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "c6949d924d0d9d51aea793b27ef9734200886ff01dfebaec360e1dc2acfb5842", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jre-17.0.11-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.11-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jre-17.0.11-ea.5_macos-x64_bin.dmg", + "checksum": "51d8754a64fb473184d0e8bad6a84cb2bfed78e03e155c5e8d9b3b054fd55002" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.5_macos-x64_bin.tar.gz", + "checksum": "fee179f87f46aed9f838975b31d30b7a90661341e45128d565b1745c71a05658", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jre-17.0.11-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.11-ea.5_windows-x64_bin.zip", + "checksum": "2020ed290110dc2652b29c582344a9b9a2e160459f01d2a8b66d99a1e91d0e2d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B5/sapmachine-jre-17.0.11-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.11+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.11%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "a196a4b048a0622f0a4b2949ecf5cee781f8a27ac4707e215d82783915b09ee3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jdk-17.0.11-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "4409a913a8383f03c3fb4f63dc6381f4ba2aa1bae21d6b090b5c3760310ec2a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jdk-17.0.11-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.4_linux-x64_bin.tar.gz", + "checksum": "a847360d3041639a9845b6252f50fcf4d4ddf3463830c5564b6042b155160fa4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jdk-17.0.11-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "9c33225d4954dc53836c973bc782dae6731bc2407965227bb28c4bdacb27be1c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jdk-17.0.11-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.11-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jdk-17.0.11-ea.4_macos-aarch64_bin.dmg", + "checksum": "6723477357b3884ace0c0abcdd19f83f3a8a25646f5c7672fee3bd36c9df2d67" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "fa306f2a284292b72e3d48ae41620303d6b9dc80ad2feec11f0f094644b9f27b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jdk-17.0.11-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.11-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jdk-17.0.11-ea.4_macos-x64_bin.dmg", + "checksum": "9acb004322a18512d24448def59d01ed8a3cf7b728a59a75ed7c7276ba39ace3" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.4_macos-x64_bin.tar.gz", + "checksum": "ca055033d096f59211cc8bda15b410d9225063df282d85b6e66a9e15e7bdf65e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jdk-17.0.11-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.11-ea.4_windows-x64_bin.zip", + "checksum": "0149439e4fd17fe30bb0ffe98d73bf7b0e1da7bd8150280e5f5b80b3676850b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jdk-17.0.11-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "53367785538bdd000f7ac1c3a60edb9e92e5206c82e1bf0b6795bc8b44074bb6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jre-17.0.11-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "44ad080a45a24f930f070fbc89079c488a82169b9cd5f8068c16dd23d8f6b21f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jre-17.0.11-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.4_linux-x64_bin.tar.gz", + "checksum": "605954a486e92e45747a2108e96d8b24ba55d3cc58e21f68819ade1ca671eede", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jre-17.0.11-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "28bd44086e0a5631512816fb59a157d51dfbe4de6570ffda243b375a0aecff2a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jre-17.0.11-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.11-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jre-17.0.11-ea.4_macos-aarch64_bin.dmg", + "checksum": "b8e2df53ab6b4a354af18e5f2851adbf246769cded03c1f90f95905433bc1dcd" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "b9a2b00f1ed49e8e41b7994fd71a8f88f145d4661562a0dfe39c998f438bbc5f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jre-17.0.11-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.11-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jre-17.0.11-ea.4_macos-x64_bin.dmg", + "checksum": "440dd259cc2136de4c27879fba384cbced05e24c23d7fefb3925c6b53881b54a" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.4_macos-x64_bin.tar.gz", + "checksum": "b1c232fca76a90cff5c046f2740aa63c9edb445b1e2dc6acee2cd77254f1d50e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jre-17.0.11-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.11-ea.4_windows-x64_bin.zip", + "checksum": "87ce4802ce95551ea34ddb143ede0ff373a42d51ab3d6334c0829e832886c385", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B4/sapmachine-jre-17.0.11-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.11+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.11%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "b6ffd19f487facdad169020cca52e23726edc69c030744dac2c9e1157fbbf595", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jdk-17.0.11-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "cd74edb613e863e6f10b3cb9e436b82b9fcd5a35a15031c51be5764f62787df9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jdk-17.0.11-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.3_linux-x64_bin.tar.gz", + "checksum": "030075fe17573fde31d3c3ba905263aaf587e9981bb35fb48a2b912921717aac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jdk-17.0.11-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.3_linux-x64-musl_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jdk-17.0.11-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "3fd878e48f76e40fdcfdb6cfe11a07207d34f0c282875a120d67000de82674e6" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.11-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jdk-17.0.11-ea.3_macos-aarch64_bin.dmg", + "checksum": "dd1a5cfda885275e9ceb8e17b311557c8188f60593ba20d9dec875e8b83a61b6" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "3e6b6e18b15b282ca021c8d2ebade1a5b2321cc6dd52ef5236fcfa18da26a341", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jdk-17.0.11-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.11-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jdk-17.0.11-ea.3_macos-x64_bin.dmg", + "checksum": "08bdafb0073cea7664ea14fef95fe17a9b8fd3157be6baec25753f8f2adefa5c" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.3_macos-x64_bin.tar.gz", + "checksum": "79ebf5a22d82106911e5995e8b02b933e499db9b56604e00082f47a049c5133a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jdk-17.0.11-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.11-ea.3_windows-x64_bin.zip", + "checksum": "e5b7728f3f7b37444dd7ea748911c65bdd4ef67fc195e1f0bd70cd80d0a00562", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jdk-17.0.11-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "82cda5279352ac63e6f427435df056f143ff9ef5b30da0dc6e6889b0e3edab41", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jre-17.0.11-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "822b3caab014071d664d6a2196531d44bba55db01b5ff144cde8169528e0514c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jre-17.0.11-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.3_linux-x64_bin.tar.gz", + "checksum": "914ff851e9832c442667592d1c3fe608e98a4ea4c1a8636033bc6e3ca209a137", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jre-17.0.11-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.3_linux-x64-musl_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jre-17.0.11-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "8876850ce011201b538c286fdd3bf6fbd35554deb1009c03e78e8ec43662b9cb" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.11-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jre-17.0.11-ea.3_macos-aarch64_bin.dmg", + "checksum": "4ab828b0b61a5149b60a96fe7ebd07fad1af48c86fb45da2fea3927faef99447" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "de4c2270a96aed587d84373ef8947868c97edcca8c5518b811ce4974ee2cdb1a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jre-17.0.11-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.11-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jre-17.0.11-ea.3_macos-x64_bin.dmg", + "checksum": "186bd04bf3187476acdf808a6b7f7c0563fa32e6223b3d604be66b402fc8813d" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.3_macos-x64_bin.tar.gz", + "checksum": "ee544933e30fd8e9637582865faacde77be9654de7c6646ddcc9679ddc230d0f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jre-17.0.11-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.11-ea.3_windows-x64_bin.zip", + "checksum": "8a8ff7e9bb71d6027a2c2a3a6c55a2fb93ece3fad149b556aae8809a5cab8897", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B3/sapmachine-jre-17.0.11-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.11+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.11%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "19696b7d1698ebf18b1a3d36cd27eb46b3942f4da04cc6230c79eee12eea95f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jdk-17.0.11-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "5ca7d3796ea3e0e7728996c6069f67c367d607fe72fe034b9969ef56eea24466", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jdk-17.0.11-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.2_linux-x64_bin.tar.gz", + "checksum": "a151aa43fcc4c2faa4b19f761cef71a895385030378ab4cc1256f8048a164a5d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jdk-17.0.11-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "16ed2ba619b5cff2703d974f9cc94d42605909e8c7edbdff3efd4dc77e3e80c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jdk-17.0.11-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.11-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jdk-17.0.11-ea.2_macos-aarch64_bin.dmg", + "checksum": "661b23a77ada5bef60b23fc01dc58cf3d0666feb7ad02cb4414175f8de8e8688" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "307c0037ea34c33596bb806f94f7cdc90f76c4f6a03b35ad16890f8c787bb8a8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jdk-17.0.11-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.11-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jdk-17.0.11-ea.2_macos-x64_bin.dmg", + "checksum": "87d043e7338ad0f2c94cf962a0a3fa6f7d04dd569003b2919e606bae0967528d" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.2_macos-x64_bin.tar.gz", + "checksum": "0ab9a8f5c6815fcb55358c9031d14d7e1ab9d08dafdd0cb9294914f41d06fb7f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jdk-17.0.11-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.11-ea.2_windows-x64_bin.zip", + "checksum": "00fc13183632694410ebe29e507a6030987676170c8b4b71739457c28af9cdcf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jdk-17.0.11-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "98462ba621fa16ebbd396fb7ba4dd1e291dc89c456f1e87a2ea53e5e9a2d1329", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jre-17.0.11-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "acea8168b51972b0b0129e59012f85b6279c409f5e49fa9d57a8b894856f5c7f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jre-17.0.11-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.2_linux-x64_bin.tar.gz", + "checksum": "de3d0e555b165ae19812a6e87e2e10a6764dccb81b8b88b717889961805fbf9b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jre-17.0.11-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "4bd10c3d6519507d4ae075893ef2bf772f9d901a09594f9a80cd2632276febdd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jre-17.0.11-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.11-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jre-17.0.11-ea.2_macos-aarch64_bin.dmg", + "checksum": "5fa723ffdf256b04254d8cb3ed87b0f26555c27d8b6aa2947f6af995bac84cd3" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "715448fd7375775aa6fc82287cfa326db3815455cb5f754b7e2a04aba2c4fe8a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jre-17.0.11-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.11-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jre-17.0.11-ea.2_macos-x64_bin.dmg", + "checksum": "9717960e93d255405ef1272f34a96611db113d2ff29731a7c8737bfa45b38ac3" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.2_macos-x64_bin.tar.gz", + "checksum": "7de3e9c41f61bdf898c53e8a9d22c536c41999b56fca5adabb17be9dfde1c32d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jre-17.0.11-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.11-ea.2_windows-x64_bin.zip", + "checksum": "2fa321e8cf4e708f1788e7f8b12c63df0edef6dd76d08bba1a518f84d4618c43", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B2/sapmachine-jre-17.0.11-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.11+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.11%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "9ce85de3d334f2aeb900d1465963ede9924f378dc4e94ba5756e9641f1edb9d0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jdk-17.0.11-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "a42072f4b6d3d00eefd056eff63c01f5b88d54f182ead175b3e84d11887e0b5b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jdk-17.0.11-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.1_linux-x64_bin.tar.gz", + "checksum": "a644598562d1c02847552f7f74428d94f28a2007df56ffe838bbdfbb536b365b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jdk-17.0.11-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "351c45a2e08d39fa37c255866e090fb869745d344a19dc66b6fbb27fe738cd02", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jdk-17.0.11-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.11-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jdk-17.0.11-ea.1_macos-aarch64_bin.dmg", + "checksum": "f8e9ef5ebb287894d57173f37c41d6e54ad329abf9bc0593449cce7d80d88a16" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "07ca3cf87a29ac29d8f71d964b60014df2b810da62b1cc583bac479d0e4a25e3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jdk-17.0.11-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.11-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jdk-17.0.11-ea.1_macos-x64_bin.dmg", + "checksum": "3026e1ce54ecff4732ada7a30df791bfe726b3862bc6e485012b0e61f39dca6c" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.11-ea.1_macos-x64_bin.tar.gz", + "checksum": "532deacc806f04acd15e70dac788e22dfc79eb0953cb3afe25c888a4b68a4914", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jdk-17.0.11-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.11-ea.1_windows-x64_bin.zip", + "checksum": "26e29376890fd3afc7a0fd0fe8a304a655d0eee7059596b474ff3b86bbb3dc47", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jdk-17.0.11-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "f5b8cad113a553113eecf31b7d2b44142b617ee4b1e6cc2dcbc240bfbe2349c2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jre-17.0.11-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "f7cb47cf2d1d074086012dc5bb9b40e576f38d45193f17607d45f65bf9e55c87", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jre-17.0.11-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.1_linux-x64_bin.tar.gz", + "checksum": "0dff10de9e68abe6857fd930e2731675c2fcb7b6c74a6fa7a10cea35c0c46066", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jre-17.0.11-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "18761c788af2175cec87b1cc064e289ea9b35bc61270ce4a174e6e4bfa47a8cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jre-17.0.11-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.11-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jre-17.0.11-ea.1_macos-aarch64_bin.dmg", + "checksum": "a6b36482339c0d59bd23f304d9d681526aa9294121eb71c5044bcf3253010f6f" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "887196776bf090c9c459b73a01573e42720d12352e3bdb9bc1eddfa358cef040", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jre-17.0.11-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.11-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jre-17.0.11-ea.1_macos-x64_bin.dmg", + "checksum": "a00c9ab6b512c7dd2eaa3a85856db3cf896627d2834f7490e68c152040b92db1" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.11-ea.1_macos-x64_bin.tar.gz", + "checksum": "740ddd343861f44d3f8a767abc39d00093b07717a18c477dbda2ace49dd8cc1f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jre-17.0.11-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.11-ea.1_windows-x64_bin.zip", + "checksum": "19371485b0445e28d1f41c0b056bc6a988aa9c96947860ffc381eb1433544bb3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.11%2B1/sapmachine-jre-17.0.11-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "17.0.10": { + "sapmachine-17.0.10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.10", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10_linux-aarch64_bin.tar.gz", + "checksum": "595dfc28d7219b1485a140ff0bf6244e71d0c87309cdd1d46e207b97817b2657", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jdk-17.0.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10_linux-ppc64le_bin.tar.gz", + "checksum": "e3e46215463d1733aea550e8513d096328d204d8af456fe3d0e67d44a39817b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jdk-17.0.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10_linux-x64_bin.tar.gz", + "checksum": "959b15787880abc09949207cf66d53ed0590dfe176174cc6690f90de27c49e58", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jdk-17.0.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10_linux-x64-musl_bin.tar.gz", + "checksum": "8f3b59e05779629db4fc513736220ec57c2e19ec6376f77d28ef87567794823f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jdk-17.0.10_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jdk-17.0.10_macos-aarch64_bin.dmg", + "checksum": "8849d4cdd83447050dc48ffc32374a1611fa3d2b345ff4f5f0bf57b18a7e0897" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.10_macos-aarch64_bin.tar.gz", + "checksum": "5f52866432a5b4df193b332cce51195e5f3b1bdd5507338c10c125d8a3e2bbdc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jdk-17.0.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jdk-17.0.10_macos-x64_bin.dmg", + "checksum": "d28da6a312a09f72a0aab45cbecd479c1c00ab8da35dfbc1baa1849acd8bbb68" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.10_macos-x64_bin.tar.gz", + "checksum": "e46767f542377315bd7986454cbc227711ae89c0e273ec51c6dd65177062a914", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jdk-17.0.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.10_windows-x64_bin.zip", + "checksum": "514a84103475a5b40b8bf5953ce1a9cb2e93899898a08ff4b2aa952a807cab3f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jdk-17.0.10_windows-x64_bin.zip" + }, + "msi": { + "name": "sapmachine-jdk-17.0.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jdk-17.0.10_windows-x64_bin.msi", + "checksum": "c363035e8bd0d031cd1cadb4d5094c88bcaa5956d021ff89d7389baca0208ebb" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10_linux-aarch64_bin.tar.gz", + "checksum": "06c013c6184f77f26a3b5d935d2b9fbb8345370ce92cf761b217a1a46619d873", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jre-17.0.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10_linux-ppc64le_bin.tar.gz", + "checksum": "63ea2425b7647b00c5c3649b4f1d4f41b98441af08b74bb1ae1abe15851feab0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jre-17.0.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10_linux-x64_bin.tar.gz", + "checksum": "96abda2018e4b537d21de67ffb7a192eea7b7b6a0e54e0982aaaf5e53edfb7eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jre-17.0.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10_linux-x64-musl_bin.tar.gz", + "checksum": "885ff6ff1517d4d0048f92b138b880dfa47af340be79b578757fba94509e6e22", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jre-17.0.10_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.10_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jre-17.0.10_macos-aarch64_bin.dmg", + "checksum": "23d50cb52368eddcdd38553460e11e60e6e885d88a3842a2ed484634136bb073" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.10_macos-aarch64_bin.tar.gz", + "checksum": "fc7a970aaa2efce2c9a9533a82bc5686700a0bcaa246f1199be6f2300c2304a7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jre-17.0.10_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.10_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jre-17.0.10_macos-x64_bin.dmg", + "checksum": "f615f5dcefc43b517b2c5bcd2041ed94c5fdb7f13b57a43040933f8b391b94a1" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.10_macos-x64_bin.tar.gz", + "checksum": "0b6ac5556963a388528cfc81bca33141817a4dccb595cde7d10e45a139f13a27", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jre-17.0.10_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.10_windows-x64_bin.zip", + "checksum": "380cb3357ecfb933e0dd997f5edd9725fc1275dff176e6769ab9c8aa3bbb7388", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jre-17.0.10_windows-x64_bin.zip" + }, + "msi": { + "name": "sapmachine-jre-17.0.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jre-17.0.10_windows-x64_bin.msi", + "checksum": "234fe259e500cc5dec31a8deacefbefdbe7b43c0be1c6b60e2a4b848b9382ca6" + } + } + } + } + }, + "sapmachine-17.0.10+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.10%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "924825326c0a904b70b768e9fa9438a983d43f1ee9fe253af95c8c1dca522cda", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jdk-17.0.10-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "7204cfe02d2c403e3c768fd5794317874b27cd34d683e14f5d2fc5584a3efbd6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jdk-17.0.10-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.6_linux-x64_bin.tar.gz", + "checksum": "96925873d0a5711e3ecb403957ee3f5ac11c9924b3cad6055066156479ea7bbc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jdk-17.0.10-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "b4f966506f84dd72a74825866ad57d0c42e091fb4d5931877245eb2594704edd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jdk-17.0.10-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.10-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jdk-17.0.10-ea.6_macos-aarch64_bin.dmg", + "checksum": "f56b3a15fbd71aad3a5f6b4cb3c3479137cf5cad01b0fb3409f13b6a26a830a4" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "2ad379b8051eae5b35fd3bbc7e70b41f7bfaed19100398e9422b5d4ea6acac29", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jdk-17.0.10-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.10-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jdk-17.0.10-ea.6_macos-x64_bin.dmg", + "checksum": "e73f8410f1968635fc5bd79c914d28f3155a69e236ab1371d22195e01b72b424" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.6_macos-x64_bin.tar.gz", + "checksum": "b3a3908819526105c4765b63939e02157e64f86f555ef532a75f1e8523708761", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jdk-17.0.10-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.10-ea.6_windows-x64_bin.zip", + "checksum": "5c774415c546a6668fa25ba6e11df8145ab82fb0c7f7e6d6de5408ab35da1a37", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jdk-17.0.10-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "49564e06a0fdd7c2af81cf813eee6163cb88afed2466796459e96058880e746c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jre-17.0.10-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "1c5fe7693b325be70b6b8384839b236bbb15cc6c863cf49ddd3ba1655c949f0c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jre-17.0.10-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.6_linux-x64_bin.tar.gz", + "checksum": "e93068d8b88960fdb34c1bf2686b14c60c820b45c0ea9d063ba4e7ea221b831a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jre-17.0.10-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "6688c73e1fec024ecbdc7390e8f84f7e1d0bca8c263b5e3ed24955ae95a197c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jre-17.0.10-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.10-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jre-17.0.10-ea.6_macos-aarch64_bin.dmg", + "checksum": "a3c91cc4f9a7b9d47b8af80fa616cb6825cb2203320127f39aef9ca73a32a598" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "622bafac19f137690172a8c041af992e930ce4307bb50776010944c13cc6fd00", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jre-17.0.10-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.10-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jre-17.0.10-ea.6_macos-x64_bin.dmg", + "checksum": "2d3ff5873df71d257751c41604bfde6bd4b3a28777db5d580d935b3d729d34cd" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.6_macos-x64_bin.tar.gz", + "checksum": "3ae56e6eef2d6e3703bda130bb931f28dc6c32520b9f65e08d070c23f5245602", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jre-17.0.10-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.10-ea.6_windows-x64_bin.zip", + "checksum": "86a2d84333811c6a816e647ca4b8552a4357174b4ae0e6a5201d43c43bab6e89", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B6/sapmachine-jre-17.0.10-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.10+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.10%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "686e66d1e24244d9f155def93ecde732e18fb846d1b9f6300c208200fa150e55", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jdk-17.0.10-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "3cfd82d79f266447682fe7f3d5c1ee09ab21d33f02bb185c84e96bb73ee461b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jdk-17.0.10-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.5_linux-x64_bin.tar.gz", + "checksum": "062c22ada854b46c48e5384c67241967995f0c54f1098acf9d8586c4fb12844b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jdk-17.0.10-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "5f36b1e40587330ff2109257e0046af55a8b351e1683e4e77ef9dfa5df380908", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jdk-17.0.10-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.10-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jdk-17.0.10-ea.5_macos-aarch64_bin.dmg", + "checksum": "723d619451f9a6c24ab8db1bc3b639d4a4d07fbe0fe9027871bfa5c11407ad4c" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "5d42dd22cd955a34965019d9c46ffc937aeada0d79e41a7c732a6951a9fe378b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jdk-17.0.10-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.10-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jdk-17.0.10-ea.5_macos-x64_bin.dmg", + "checksum": "af2d405ce02a767134cb0222c338d6a3e77ac173efa3a374032ad3760aa90c17" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.5_macos-x64_bin.tar.gz", + "checksum": "c961fb1a3116c151dd74d95f3fe04f933ef0b6c0bcf7e6df63e313e85baeafc2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jdk-17.0.10-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.10-ea.5_windows-x64_bin.zip", + "checksum": "dac9057562a55022c895dc36cfc095b84e6e92a8711089b6dec2685eed1cf4a5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jdk-17.0.10-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "a8a296fb153a722194412e6698b9f8f7cf2c530fde1e5914e6207535bce8d22e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jre-17.0.10-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "f93f2bf3d0700a8d035e1f130fce982d2f8d5a5cd3c97b2e99febaabc11cbd4d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jre-17.0.10-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.5_linux-x64_bin.tar.gz", + "checksum": "fb6a81a9fbcf996d973991d691cf040fd2cf8048ac43ceec4f5676a9c34742f9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jre-17.0.10-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "29962d07092266aaded3774266bc36b635502a6c73f05bd2fca3099f69a8cbc8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jre-17.0.10-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.10-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jre-17.0.10-ea.5_macos-aarch64_bin.dmg", + "checksum": "1aa8c9dbf6a397607b3ead385bbd90a8e69102662da2c84492afd5ff26e33ab9" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "1ce65da735286bba71f0619c7275ef970d777086cc2e83b05eb33573f9514f99", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jre-17.0.10-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.10-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jre-17.0.10-ea.5_macos-x64_bin.dmg", + "checksum": "f097a60da01c152e300363de8117751035e942c65f3647b7469260eb860f3328" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.5_macos-x64_bin.tar.gz", + "checksum": "19cd5f56297b4dc82f3f9d762e3a607ea7c217e2867ff2c7e45939b181bccda5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jre-17.0.10-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.10-ea.5_windows-x64_bin.zip", + "checksum": "cf7c047b10e246628b3fa8f94777a7203fe88cf516bb0f87c09f779ed2e4b5d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B5/sapmachine-jre-17.0.10-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.10+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.10%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "c89d5382aa0ad6310a7b217cf7bc4b389930d5dd8e93ca3aead18ca50c70732b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jdk-17.0.10-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "25c387184c237668fc91e49ffdcf6533994416fd76c3c73913152e808dd45f83", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jdk-17.0.10-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.4_linux-x64_bin.tar.gz", + "checksum": "ac6b324f696e8aef43149dd2a03ef68413aaf389aecae0a993960daa9dd2b8f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jdk-17.0.10-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "b035a156544ef6ac2e816676ee0efa8af1553ad67aae5e08d4792377f057fca6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jdk-17.0.10-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.10-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jdk-17.0.10-ea.4_macos-aarch64_bin.dmg", + "checksum": "031c4f009b4d0cd2d67711a69e7e9bd2965fdc06e3535e462bd9e31b372900eb" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "b70fa9701cf480bbe60535eb419a878d767c32a113939ec22f32d2a5e4a5c76e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jdk-17.0.10-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.10-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jdk-17.0.10-ea.4_macos-x64_bin.dmg", + "checksum": "b35d1a812fb92c85313591f92b38b62cfeb0321e8860b2d033ce0348686ec436" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.4_macos-x64_bin.tar.gz", + "checksum": "736aed3f251971e78cc63fe8fdd634ac9e690849c9ce43a85a1ad52bfbf59802", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jdk-17.0.10-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.10-ea.4_windows-x64_bin.zip", + "checksum": "34fe338e3ec4f61d7deaca375e70847c7d1fe43190cec1eb2cbedcf0db5788fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jdk-17.0.10-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "66aa439a4dac8816e2bcc0e356ee0dbe58e0487731b41362f5611ddefb947317", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jre-17.0.10-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "60145b7465ba525154b1daf61febe592afd683dc7f26f2c21d53d4a2b5189c4a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jre-17.0.10-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.4_linux-x64_bin.tar.gz", + "checksum": "8ae7d8f8ab0ec8e4aa3c40082ce4683fffd91f0662b4974ab896263cfe71be3c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jre-17.0.10-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "450017fe69c3f8f7b0c36a606a38cc8e7ff9cb3b539fc0c3b6ec0f07bd2403d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jre-17.0.10-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.10-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jre-17.0.10-ea.4_macos-aarch64_bin.dmg", + "checksum": "4cb814b09010ed6e71a332569173b23681686d5b34c4863783ed349e274c5d61" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "188adc08e55781df12e6ca2dfd2058e5f277abb26db73ff6f44828d9d173e19c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jre-17.0.10-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.10-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jre-17.0.10-ea.4_macos-x64_bin.dmg", + "checksum": "7cae229026fa67ae2dd959ec86b220ae4c8949e54b3464afcd864e6e920fa3fc" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.4_macos-x64_bin.tar.gz", + "checksum": "dfa08889a76064f9c682b29ecf28cf57580c60f1565254831fbb0970af372832", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jre-17.0.10-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.10-ea.4_windows-x64_bin.zip", + "checksum": "47563fd750151520d889dc093aafd758d6720df8c34d3054a7370ee05f33208d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B4/sapmachine-jre-17.0.10-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.10+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.10%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "ac41701dd79923edca9da99139d49d2faa6472d2181f9c5cd4d42c1e7e771d6e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jdk-17.0.10-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "c1f4deda489c3e0f6099ff0891353f434030477dbb91527e30e4ca0a2575565d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jdk-17.0.10-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.3_linux-x64_bin.tar.gz", + "checksum": "4188bf8f3bbe3489d30dbb33f9f625b2149138bbfdb026656d0e3ebbc42d6bb6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jdk-17.0.10-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "03650f4b12fa3c0e6d12c5e899256e4adff6fe2d39f255ee747c2bb6aeb546d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jdk-17.0.10-ea.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.10-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jdk-17.0.10-ea.3_macos-aarch64_bin.dmg", + "checksum": "2cf428dd883141c33df342b613ccd72ec5a6d85f60bb70f2d28d0b97c8d3133a" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "a8873520a1cd75ad546f707bd093439aea739334d9298f8db44483d6674a5f5c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jdk-17.0.10-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.10-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jdk-17.0.10-ea.3_macos-x64_bin.dmg", + "checksum": "b533f48338b2dacd3c63cacd0144499858c6f850213fb2f8681c6073afe13854" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.3_macos-x64_bin.tar.gz", + "checksum": "784ade2d311eeb85cdf2f3d426cb4a3a35374da1cd12e390ffb47101002c1339", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jdk-17.0.10-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.10-ea.3_windows-x64_bin.zip", + "checksum": "0fbea1360e1278cc66f5a42c7f51d266b4c3b9cd7078405a45ea64a38d8bc8ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jdk-17.0.10-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "7511fe50bc84b2913e25161049ef27b425da6da44f4b81237e62c3387d3c7346", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jre-17.0.10-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "338de2279e15e096083ce07e468d835acc20dbb7304ff0ee398d488f3739543c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jre-17.0.10-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.3_linux-x64_bin.tar.gz", + "checksum": "be0dad7899b2e8eb37d39eafeab38a2bea55cd5a3efba1eddbd95c884c7f3d3d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jre-17.0.10-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "4b5c4afdc9e81eeb12700e4af782c2a057051d7d9fdadbdc0c267f879f702287", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jre-17.0.10-ea.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.10-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jre-17.0.10-ea.3_macos-aarch64_bin.dmg", + "checksum": "217c427840c962dd0608805bc737b8e4c6229a696e2a22a89e641f9073ed4fd2" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "749e0d9a466842795e3c5f579697e422112c5a1ce67d360203db411214c9a2ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jre-17.0.10-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.10-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jre-17.0.10-ea.3_macos-x64_bin.dmg", + "checksum": "eb98c814f139665938b81dd40993bb956015cd8cd9548f9260577e4b20460b8b" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.3_macos-x64_bin.tar.gz", + "checksum": "8525e0e098dadc11267e0410900f0fd662c2e0dd21a836d138aa659a00f6e58c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jre-17.0.10-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.10-ea.3_windows-x64_bin.zip", + "checksum": "fee08a35a3324cc1a036c0302185d9f9bdc5c808a7861407ef015e84affd3397", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B3/sapmachine-jre-17.0.10-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.10+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.10%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "b06b6dc7522714d3281d4477e3de9e6d7f39c0d7326bb9c9c92be21bb2389213", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jdk-17.0.10-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "d9b2b5b4907012135c6b3081fd64cb5a7ef7c19c5cf64e810310c7fbedf11fcd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jdk-17.0.10-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.2_linux-x64_bin.tar.gz", + "checksum": "af733f600e69e0feb5dea7933d1e91b2076fbfa62013bcc72bdf3e07567c9bcb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jdk-17.0.10-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "b8a195d18fb98e122cf8ba4382e5c62e9f1c49249ab7e943bf886904b7694b9f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jdk-17.0.10-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.10-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jdk-17.0.10-ea.2_macos-aarch64_bin.dmg", + "checksum": "2dc138291b5f0781124da93c901d5ff6b591cd2415475c5bba907ee11ffb0fa0" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "aecb8cd3d0b56a8a599ce541591a3824feb691fe689199a7d8372dfc282566bf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jdk-17.0.10-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.10-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jdk-17.0.10-ea.2_macos-x64_bin.dmg", + "checksum": "0629f6ad5014f8dff17896d9ab965a00b0916e4c86d2a7d42a6bc0c8801d61af" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.2_macos-x64_bin.tar.gz", + "checksum": "e398bfe080c375a0eb6f1086bbad672b75a024e18c0c3743f2c987197240f2e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jdk-17.0.10-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.10-ea.2_windows-x64_bin.zip", + "checksum": "3e83ff0ae0d0e0c063aae126031095429d58cb3d2d0e4add5dd081e23e924e73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jdk-17.0.10-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "fadcd8f0ba2da16d6a0eb4291224daeb0f617b3148820f62c68e54bf81c97204", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jre-17.0.10-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "82801ca92929468a11509bc9580065b428b9099406ee73f70ca55a1a12be1ba3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jre-17.0.10-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.2_linux-x64_bin.tar.gz", + "checksum": "416db41a077253515a0d539f20bc0a50397af52a754a134fc0bb074f9615c10f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jre-17.0.10-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "5d341f0309a1fc78f149569785bc2d25a7380388b17946c6111e35d33693afcf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jre-17.0.10-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.10-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jre-17.0.10-ea.2_macos-aarch64_bin.dmg", + "checksum": "550151c52e674fb29504aea4c6b24d6d3533a469efd3dc9bd18f5a2077602c19" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "b5d3400064d83e6d3973ff4349c7eeb501d3539d8651dfb4dbedd1eddc5dc6fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jre-17.0.10-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.10-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jre-17.0.10-ea.2_macos-x64_bin.dmg", + "checksum": "8296c988a7f66ea3707d11c3ea97ca707fcfc7e5a48c0e470373610a4eb2cc14" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.2_macos-x64_bin.tar.gz", + "checksum": "fbc6c9b7ef4a270670192638552b594d7e5847ca62b4f4310d859c618161cfbe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jre-17.0.10-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.10-ea.2_windows-x64_bin.zip", + "checksum": "bafc0c7de8b30d607367f3d78ca860de932f1cf146ab49b54b0c9481b01f2076", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B2/sapmachine-jre-17.0.10-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.10+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.10%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "24523825adbf1e35226baaa095a12ce58c1a01e8117881479be4847bef185208", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jdk-17.0.10-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "33f7a024d06ef684de5f7056ac4c56f6549b6f6756721f457ed7c238a7092a64", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jdk-17.0.10-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.1_linux-x64_bin.tar.gz", + "checksum": "6c9eff7ce55afd75d8b1c34bd21c0e62bc00026f4076b0607fbdb1618b41a2c5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jdk-17.0.10-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "6fc09a8897fe9b2220c21f8e5ce231dbfe3b7c81e8ed91d182728631bf4d961e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jdk-17.0.10-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.10-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jdk-17.0.10-ea.1_macos-aarch64_bin.dmg", + "checksum": "b98171bafa98419efa977fc68151c1604c61a2fb6b31c9a1901b63e28ffb4e9b" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "398089b8a171f76416b76c15a880d7e5cc73e17832a531f59dff9b3987b01b62", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jdk-17.0.10-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.10-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jdk-17.0.10-ea.1_macos-x64_bin.dmg", + "checksum": "0d696bc86857413e409f4ecf272592ee3db586fe7288ed2ce95f344485008f77" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.10-ea.1_macos-x64_bin.tar.gz", + "checksum": "d817e78fc3d26ed792ad633fa356870723fb6b68e2d67e73e27a1d3a429e7674", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jdk-17.0.10-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.10-ea.1_windows-x64_bin.zip", + "checksum": "2579530f0a79d3510bd883bfb0d22a08df2f094ced83ca7746e2a888ba5df5a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jdk-17.0.10-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "4742aa5ceaafa7855ad8075f92aed584ad2f669f7b809e4e0ae955a6854c6a13", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jre-17.0.10-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "7d4317d66cbf414f8e05ccf8c6b246bf8f6e32d9bdd1f07b8ac990a14cf92449", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jre-17.0.10-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.1_linux-x64_bin.tar.gz", + "checksum": "46e5f3d5dae392a10199fb5857e1aa717549c54caaaf85ef38e2393fc358f0fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jre-17.0.10-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "a5f955d39929ab73f70c9f37a83e499fff270c1ee5fb50884fb3d0394b7ee505", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jre-17.0.10-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.10-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jre-17.0.10-ea.1_macos-aarch64_bin.dmg", + "checksum": "0caff2b9e7376fa048bbae4c99b6fa9492070e4c8ba557b53db54dd9a54a6f2c" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "43222200233ac77cf807d487cba66063e7edb0652a104805c8238acc40ae99d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jre-17.0.10-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.10-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jre-17.0.10-ea.1_macos-x64_bin.dmg", + "checksum": "31a89fe68b67681925dd3909f344117c35e76c2b3409624e082d3b73c2b6c072" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.10-ea.1_macos-x64_bin.tar.gz", + "checksum": "c66c88c1791f6e3b9ebbe4da7b919bfaad78572217f769a88d72db1dc1e7c304", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jre-17.0.10-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.10-ea.1_windows-x64_bin.zip", + "checksum": "d2eaa5016cfb0a07cda95e3467b8e2d2d93ca7bb4347971a112e84c45f928b36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10%2B1/sapmachine-jre-17.0.10-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "17.0.9": { + "sapmachine-17.0.9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.9", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9_linux-aarch64_bin.tar.gz", + "checksum": "041096f68edf86522d8fe076148128bb652aa33583bbd4956f31cd886c9d9c67", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jdk-17.0.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9_linux-ppc64le_bin.tar.gz", + "checksum": "d6b5a04f92596a05f8a95b948ae30ef7c8ea13513e4eb087fb3f36d995c4156a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jdk-17.0.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9_linux-x64_bin.tar.gz", + "checksum": "502107296e925e6323c368017e74a5cef51f3664f72c5a1926e174319d1d39fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jdk-17.0.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9_linux-x64-musl_bin.tar.gz", + "checksum": "1cc5e6f864b9f695fb83d8bea30a8bed517e6bb3d6e82e1f18571d2e93c9d843", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jdk-17.0.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jdk-17.0.9_macos-aarch64_bin.dmg", + "checksum": "6b2e16189ce41fa48cd237e942d58b7dbbb86c2f361271573510b45f3f286ffc" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9_macos-aarch64_bin.tar.gz", + "checksum": "dd731745e9b43e589bde40535368376b4e11452377a40848ff05eca19c54bf24", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jdk-17.0.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jdk-17.0.9_macos-x64_bin.dmg", + "checksum": "0d8e3ba48615fce3893cb4caf056edc75399469ac96c1d2764b8ed8f308707c8" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9_macos-x64_bin.tar.gz", + "checksum": "b025d24f1ae1ab0834b262ea0ff4c4f0fd823ad88732d444a3ec676d8d2d1952", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jdk-17.0.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jdk-17.0.9_windows-x64_bin.msi", + "checksum": "e94736b15ca932e10aeac44017597998c518ebeb11728f22961fc4747c0e26cc" + }, + "zip": { + "name": "sapmachine-jdk-17.0.9_windows-x64_bin.zip", + "checksum": "7066ed52936f65d6e99def2ca1d70cf97eaf39d125f9c7f1bc23a1ff2303d468", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jdk-17.0.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9_linux-aarch64_bin.tar.gz", + "checksum": "7b66efb5b78b823df4eaef2f2bd563d11fde4b1c267e39e73efa70d1c8a8a87f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jre-17.0.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9_linux-ppc64le_bin.tar.gz", + "checksum": "f66e74c1fc7d638c80bde53fbf8e343b86bf8edabc4de9d9c97fe9c70ed107f0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jre-17.0.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9_linux-x64_bin.tar.gz", + "checksum": "869e556c33b8743ed57ec8a40b4aeb63e3dd7d65f36178445b88882c91ac901b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jre-17.0.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9_linux-x64-musl_bin.tar.gz", + "checksum": "d42b60ae5ecd0ba75474f35774a0597d36e64d40566f3fefcc3a8a560e9800bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jre-17.0.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jre-17.0.9_macos-aarch64_bin.dmg", + "checksum": "354a2fef3dc9876d58cda96805741f45601876d9df9f0127979cb39dfeba7f37" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9_macos-aarch64_bin.tar.gz", + "checksum": "a29714fbb31b26a405db15c3a839790e2cea7a9dadad870572ef6b3eff78d929", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jre-17.0.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jre-17.0.9_macos-x64_bin.dmg", + "checksum": "1e33539a8f860c0c32c835d3b82a17489dc140ca52ce922744e04fad9293fa2c" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9_macos-x64_bin.tar.gz", + "checksum": "db68c8711db2ec794efe38f7b4bab992965da1e76829f4efd3c76c35cf8c8cc1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jre-17.0.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jre-17.0.9_windows-x64_bin.msi", + "checksum": "39b40ff606f02e3b6e8fb17d4fc71506ed45f269f2cea76515c9dedafd47fb50" + }, + "zip": { + "name": "sapmachine-jre-17.0.9_windows-x64_bin.zip", + "checksum": "271e982870181a5c60c7b5256f6fb174702fe1f57fe69e3aaae1e492c050fa0d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9/sapmachine-jre-17.0.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.9+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.9%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "bdbafe37f5aa9c747b24a3860d7bcfd76036c9c0ab18f5780cf7c9f8c626a660", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jdk-17.0.9-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "bb87b8f8cabcb68d1238a8e1427d9061f94336b45b5e9679a57dac62778300b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jdk-17.0.9-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.7_linux-x64_bin.tar.gz", + "checksum": "7d3bbf06aeff1e84f77beaacc2aa249e2ef6c6882f03efaa59e247d6cadd8811", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jdk-17.0.9-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.7_linux-x64-musl_bin.tar.gz", + "checksum": "1b20ae1531f13fc4d3c5e805b97206830e87168a0db87e865e94661fc062aa9b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jdk-17.0.9-ea.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jdk-17.0.9-ea.7_macos-aarch64_bin.dmg", + "checksum": "48968fe60b3a8c4a67193aff7c8dcba9ec45f7b36c54667f0acf9ce4428c79df" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "5c9e22979485d194869b88df7eb17b75bd4aaab94beff02660cccd0890b7f9e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jdk-17.0.9-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jdk-17.0.9-ea.7_macos-x64_bin.dmg", + "checksum": "1f4e5d8562198ed767dd1867c9c6826206f7164456688195bd24ca7a0a660f5d" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.7_macos-x64_bin.tar.gz", + "checksum": "cebd08fb30dc2982556181de387f130599975d0a9a22395b002d6f82b4e717d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jdk-17.0.9-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.9-ea.7_windows-x64_bin.zip", + "checksum": "a61227dc7e11010502552aadfad28175fbb023c514964191f29b495d065dda09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jdk-17.0.9-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "43bf52ed67e6424cf9cf3c992ac5d69e8cb1cd473bd00eeb0d819442f60ac938", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jre-17.0.9-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "5ddb76c5932a5d555ded610332bda26e8209e00fa75e2d28971aeec840659f10", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jre-17.0.9-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.7_linux-x64_bin.tar.gz", + "checksum": "c52914535a04a4e343e0f4f14d658d1f33205974f8c186758b68e571852b8fb3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jre-17.0.9-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.7_linux-x64-musl_bin.tar.gz", + "checksum": "538b67c929540a66f41eabb7bf4f58a3ab7c823e3a549fca4d52b20589521b50", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jre-17.0.9-ea.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.9-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jre-17.0.9-ea.7_macos-aarch64_bin.dmg", + "checksum": "ff45ed7aa17ca82fd13394c8890af3d0eb6d343943221e08db487971aa08369e" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "5e4e1d64106787a223b57b6bcc078086c01f5a025a1fb1efc606c9fa3293d5aa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jre-17.0.9-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.9-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jre-17.0.9-ea.7_macos-x64_bin.dmg", + "checksum": "5367a59ed36ea994c99c6742421fafe40a3bf1c80285ab0b382c5f2baa0d4ad4" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.7_macos-x64_bin.tar.gz", + "checksum": "4783a1f573ff9fc3c6724841b5c92395800ce74daf3aa9df6e85c88595721ce6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jre-17.0.9-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.9-ea.7_windows-x64_bin.zip", + "checksum": "f7904d0c78b4273efa245edf63d9e9336b0d0e6224fcf7ae1842ec6c43bd9583", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B7/sapmachine-jre-17.0.9-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.9+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.9%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "e50214fba1e027a4f6efe76adb13c54fa3263780e419d132d3844c4c0859cc70", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jdk-17.0.9-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "8d56f7eea65744096c7d9556117f900be4d10a2b6b0bf9d93114f207e1cd19ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jdk-17.0.9-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.6_linux-x64_bin.tar.gz", + "checksum": "9af74b9edbbcdf6020b68ec2299c4a1b14830de1a4f7185237700d21952c4609", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jdk-17.0.9-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "6467a5634a80973cc8ad446c3908ce0faf9758d2f9ea4f531d005b58d3891f6b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jdk-17.0.9-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jdk-17.0.9-ea.6_macos-aarch64_bin.dmg", + "checksum": "1b5a65a6fb7f7904e330e83a25129c3bac50e2bd7df1676944ecff08a4802256" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "4d0d76845eaac295c4b7873eb6508632ee3fafa9c83d676938162647959257dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jdk-17.0.9-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jdk-17.0.9-ea.6_macos-x64_bin.dmg", + "checksum": "4a713abd47eaea63d9b83682bfcbfc82afa8f59525128150bfe08c15417450e4" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.6_macos-x64_bin.tar.gz", + "checksum": "90131e95b4dc9e349e3d4b2706e04d711b8b417523f358b7bb144ddf34b22ed7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jdk-17.0.9-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.9-ea.6_windows-x64_bin.zip", + "checksum": "f7548c2b62536f56d60da3948e7bad590c0327e3af26f804d09354df39982e85", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jdk-17.0.9-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "b153848416b970f87d07992ea0e046a385b57674a271f0f94d09472743f0aa96", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jre-17.0.9-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "a708266ffa0e109074669c38f749e525ac95fa7c5bc68b1e8cbb5c1d9ceaa053", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jre-17.0.9-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.6_linux-x64_bin.tar.gz", + "checksum": "ecb73efe41c5dbb7d0bfe72412e5e2f852c49745036d4fb5d96b5011e65caf6d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jre-17.0.9-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "e6b1af410e96414e6b945e05f39c5e328173deac1cb7a7b6b516268a70c38977", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jre-17.0.9-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.9-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jre-17.0.9-ea.6_macos-aarch64_bin.dmg", + "checksum": "0ddc49d9f2490a556fef184f1ece4c680dc1817c6d088cbed5459792abae8184" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "1f5fc3975eda88dbf06c364e2980d8d5afdaddd6010e7a76bfad7d3136211627", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jre-17.0.9-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.9-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jre-17.0.9-ea.6_macos-x64_bin.dmg", + "checksum": "70b6afb82dd19b68d85c124b6e7e75bb9f3c0532a103b6e8208a5b40f6a39214" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.6_macos-x64_bin.tar.gz", + "checksum": "cf5a23359f02a9a9ff4ed1f55b09eb5eae995802eb5b490b3e676af6c029f14b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jre-17.0.9-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.9-ea.6_windows-x64_bin.zip", + "checksum": "a295c4b671433d25595f65f169ff44b24f5a7afaab032c6a5f1b53639bfe61ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B6/sapmachine-jre-17.0.9-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.9+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.9%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "fb240fafc2a12abd083e346afd77ab71fe1bee00cc07b8ab383bae61b1a5dfb9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jdk-17.0.9-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "c9bbb0eee8bfb15b2782e3bfc0663ef062b330af871edcfc3b6d0ed6e1ab7a09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jdk-17.0.9-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.5_linux-x64_bin.tar.gz", + "checksum": "21f466cd0427d737a24ea27948e9cd024b84ed8363e7d028ddb63f34713e6d92", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jdk-17.0.9-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "9245dedcdf457425202b6d06ba8cdb19a90c1061b9332a6126092f17d9590bba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jdk-17.0.9-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jdk-17.0.9-ea.5_macos-aarch64_bin.dmg", + "checksum": "9736da350e90f0e78718fa3a1ba1d69a115840cccd6791d70a1c101c112fe0f4" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "d86b6b4e38275ac9f6527197492624b67a5fc021990c257787f1893eacd45b9b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jdk-17.0.9-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jdk-17.0.9-ea.5_macos-x64_bin.dmg", + "checksum": "7adb193d885043d253ba356992048ade34433e6e99b046150eeadbbb6f0e0fa9" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.5_macos-x64_bin.tar.gz", + "checksum": "366725a930bcceecc632f56f357eac1961db25d1179ea1bb2c9eda349ef901d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jdk-17.0.9-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.9-ea.5_windows-x64_bin.zip", + "checksum": "661af6518c77481fafd827cdfa93f292fff414e0343e814f8916db03fd061f9b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jdk-17.0.9-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "fa101ab280e19577dec7db3e30d5953aed55c2a5d4202feb3b86750e36d14480", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jre-17.0.9-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "352c0bc37319f77c531baadea7f56353c1a9ee34381e07c631949f914b889d57", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jre-17.0.9-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.5_linux-x64_bin.tar.gz", + "checksum": "6273b64fefacc2e8741a76b7a69aca473490a99e736fa0dc095ebfa93a277292", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jre-17.0.9-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "81e8d7cd591d69f3da3b10c9b502b672bff97528ff4117bbc14f885d1cf5081e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jre-17.0.9-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.9-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jre-17.0.9-ea.5_macos-aarch64_bin.dmg", + "checksum": "725c85d0f4ccea560d65e09d077ee70bbd4f7ba853dc1a39db87b3be821e9d48" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "2ee55217b5d2b3f7b47d57bdfb5696bee78813db5f639a8c125d97a42d1081a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jre-17.0.9-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.9-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jre-17.0.9-ea.5_macos-x64_bin.dmg", + "checksum": "fbccac43e71261e76a38c73833b6c237cdd02591f9cbf8eee86b0515ee11c6f6" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.5_macos-x64_bin.tar.gz", + "checksum": "998b8c2a373da8779e41939745cdca662d7b9e8d5d2072870b1dd340371609f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jre-17.0.9-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.9-ea.5_windows-x64_bin.zip", + "checksum": "1b0547ed9b817b7357621c200f6439678ce263db7d064eff1d7148ea29dc4c5b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B5/sapmachine-jre-17.0.9-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.9+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.9%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "486a40060e538d2e129694991b5be30c693dd1a6f7690a658bf4310040d8bb8b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jdk-17.0.9-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "f525931cc1aa63131b41aaf61b245fb02deb2103723cdfab404c2761f1792cea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jdk-17.0.9-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.4_linux-x64_bin.tar.gz", + "checksum": "0e0e7a1aa8e77b1c57006907c37fa205fdf148c90effe9e2447feaadd9fdaf06", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jdk-17.0.9-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "74a5f7e5def1589eb19f6a8f3d05e5ee32984ace74c6148af9980f0edd0e45cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jdk-17.0.9-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jdk-17.0.9-ea.4_macos-aarch64_bin.dmg", + "checksum": "d80930d3d7bd981b24a3b29a31f462ea4bea7a20a9bf1ebe1d9478e355081576" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "21df186d36eb73d89db3ddb673ccc7e579a77879e9df296bf6080b72cb01454a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jdk-17.0.9-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jdk-17.0.9-ea.4_macos-x64_bin.dmg", + "checksum": "4756b4bc85774868e87c2dc9ea0e8be60c0381b3866644e74950d4771112f10d" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.4_macos-x64_bin.tar.gz", + "checksum": "cd106519fdd368bedfb69eabb69af4091c77e2ea51c357ca44694b996d4c911c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jdk-17.0.9-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.9-ea.4_windows-x64_bin.zip", + "checksum": "a9b06725771b13c6c8c92edeebd2b1bba835de81153ae34756d2b32e938ffd6b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jdk-17.0.9-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "3c532058165b204b635727f405ee7e5e00c5f3b3e39e78df741f7db2647de018", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jre-17.0.9-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "1b965367ad66dbb19b8e4b6a2d093c4afb0bb6ff4203e8ef9074620c996af0c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jre-17.0.9-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.4_linux-x64_bin.tar.gz", + "checksum": "0fbb623959d74151faf8c04dcdae1956d0e87fe726ca84f504fd4380815f1f59", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jre-17.0.9-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "04e8bec049b9bed67f9063269739c3262d2e423a3d1049eb0cc11e3faf868871", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jre-17.0.9-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.9-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jre-17.0.9-ea.4_macos-aarch64_bin.dmg", + "checksum": "2b3630db8bdae33c89d700af7666aac72d91ddce8bf3d3854048407301dc22f3" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "61b75447fccfcde74e08e1c8ae7bad3a3faf50c1e8fbfe8365cea97a4801c71e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jre-17.0.9-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.9-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jre-17.0.9-ea.4_macos-x64_bin.dmg", + "checksum": "c2977540e027bebdad82d011aba3088779227e4688d068b1eab2975f7f2bf272" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.4_macos-x64_bin.tar.gz", + "checksum": "4592e65480e8dfe21b626dddbbf97936648d92204ae1e9d58c49de82894caf06", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jre-17.0.9-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.9-ea.4_windows-x64_bin.zip", + "checksum": "b3ac4c983352cc40677e305027a1b798beedbbe92695dc3e824004e2d9fdee39", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B4/sapmachine-jre-17.0.9-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.9+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.9%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "8943d4f9e8cef6824907db20bab984c815e6a48cd5c5973a0ebd85c49b617e8d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jdk-17.0.9-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "feaa37f2d629d1b0fbdde3669e2281e9cfb4956c67d61eaad29ae9eca78edb61", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jdk-17.0.9-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.3_linux-x64_bin.tar.gz", + "checksum": "de0fdaa72c8d2a796b35cd06a12a88cd63c41d7a53b7cd3036670c4b6c98ec97", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jdk-17.0.9-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "aca04dcd820d43ddaf89001e62887e8823607ba229cd62b3098e6412c148464a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jdk-17.0.9-ea.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jdk-17.0.9-ea.3_macos-aarch64_bin.dmg", + "checksum": "72c219b9844a50ccd19a6f37c52de2d10917d92fe40a95ce01c65357e8e872ea" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "7ccd995bde1f941f2e8ceb4c5ec2da94d4cf64361f69de5ee3da42b6b13e506d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jdk-17.0.9-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jdk-17.0.9-ea.3_macos-x64_bin.dmg", + "checksum": "36901fb763383dc7114b75169b39852d1f35363e5ef0a62bc311860f9971ff1c" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.3_macos-x64_bin.tar.gz", + "checksum": "d1da119421cc1520c56e6d0941028d18fd922cdee787b273781e93a26428fe22", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jdk-17.0.9-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.9-ea.3_windows-x64_bin.zip", + "checksum": "4a5b21c1f75774a76c0f24dc40576f7e7a2970c76f7371d08b1df80253da6f10", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jdk-17.0.9-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "8a1a7de02504ea39d663da36cbe563a3cb1a5622ceec40bb683e9a06d0e395c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jre-17.0.9-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "c15a3c2e9f327bf1bbb885f102de9d2d6cf0b723eb4c13629181d6ffa20ccdb6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jre-17.0.9-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.3_linux-x64_bin.tar.gz", + "checksum": "9341890e9fb8fa9f6febeadf43d7a5f59bc97c4fbd7176b70f78b2ce2f90c6a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jre-17.0.9-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "910117e373ca60fd784ba5ee44fb052734eb7343b2a84af20108d048fe81dc5d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jre-17.0.9-ea.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.9-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jre-17.0.9-ea.3_macos-aarch64_bin.dmg", + "checksum": "5b634c80daf162633c7ecc201bed7cbcfd7888b2b60189a8bd65b3ac9deb613d" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "08c8744dee5edb74c62ea534de86903d91a476ee11b8ea56a3f301d67dfaa21f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jre-17.0.9-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.9-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jre-17.0.9-ea.3_macos-x64_bin.dmg", + "checksum": "687415ce9a8b611f1913035c60627689206662afd51cdc7469a665d40204838a" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.3_macos-x64_bin.tar.gz", + "checksum": "a5e45b9a3cbb75731ec2fb776d5e8f6708bcabb612650495f22eff1dfe639dfb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jre-17.0.9-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.9-ea.3_windows-x64_bin.zip", + "checksum": "a43551f55c480984be40d370713ac0e2534d3d65ea42feb285784920dd21a057", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B3/sapmachine-jre-17.0.9-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.9+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.9%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "055616ae2e035d70c84ea4b6ff3f2b99d903760f9387ddce838b830a3ff3303f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jdk-17.0.9-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "6c87c2650e8a9b0afd2fe53a71d60e2e08438317e1dadceb4c1f5dc6bb949d51", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jdk-17.0.9-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.2_linux-x64_bin.tar.gz", + "checksum": "35d7d5190cd26a0b1e43353eb8747a4f9e9600676c7be1848457aab5f843d99e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jdk-17.0.9-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "ba8fec7bf54771d01400e9648c7eb93d90046874446a8f83ecbe3357495f3502", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jdk-17.0.9-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jdk-17.0.9-ea.2_macos-aarch64_bin.dmg", + "checksum": "d7687c92ddd7de5ade02b7eed0857294f503d08f6cc63b9cf74f67fef7bbcae6" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "bf78b9f57052c608729626b4925cc4464e54b61727a4cfab960476663783100c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jdk-17.0.9-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jdk-17.0.9-ea.2_macos-x64_bin.dmg", + "checksum": "1f9f56f2d5b615cf4946620fed6ad2b393f67387f6011cbc92f1ed5f2837ecb9" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.2_macos-x64_bin.tar.gz", + "checksum": "09063d2e0157e8553eb2bff2e5353ca2b80350880a878afc31d432c4e39305bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jdk-17.0.9-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.9-ea.2_windows-x64_bin.zip", + "checksum": "34b436697015a42d283ba6a907fe1dac80677e8697e33bb9e9130c5a18898f38", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jdk-17.0.9-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "dfe31612e4df6382ab730230767ab81bf5c4d277645ab2bc8a3d21de9106d5ff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jre-17.0.9-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "39e73588d36de210da7a3a41e1cb3b715bd51189dce34244622857918f46122c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jre-17.0.9-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.2_linux-x64_bin.tar.gz", + "checksum": "5c82aa98f8a14fa9a56b0b78a0fc9961530da28e543820b0cca1208a18380897", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jre-17.0.9-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "bc7ad4afac8c7ffdf19c6864524b10113436c93938b42d72c6bf68192db50b46", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jre-17.0.9-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.9-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jre-17.0.9-ea.2_macos-aarch64_bin.dmg", + "checksum": "60ecd1ca23ec8d5e7b34deac326531846246c910616bd9d63015913ca99b8497" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "87afd12751e8d9616166935b5dd1a98695878d6b14cf9fef575099a6ea66bb60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jre-17.0.9-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.9-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jre-17.0.9-ea.2_macos-x64_bin.dmg", + "checksum": "efc1fef92bb5a35ba1c2aa1644ceaa1ebcfceea85ff5355b96dc47b59e050886" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.2_macos-x64_bin.tar.gz", + "checksum": "66d85a4dcc5af9bdb8891be18f015d2d88d548b9d7e9476de3167d11b103df6e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jre-17.0.9-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.9-ea.2_windows-x64_bin.zip", + "checksum": "0713f3764038a71ac588f08b2a7cd0eeda0cd1f659072df07742e34298afae6b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B2/sapmachine-jre-17.0.9-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.9+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.9%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "c95128bd410d23448c57ec324130c32a3a031d8e404e259719b0a76bcfa0040b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jdk-17.0.9-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "db103a65c19c892b586f15987ab326a0cd22f5056661d3c5eb9c230e46ca5f4f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jdk-17.0.9-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.1_linux-x64_bin.tar.gz", + "checksum": "faab393ee9b46ed7f4e7a0fd409a47c840fcf110f6d94b93939e4f0d654b8d6a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jdk-17.0.9-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "0446a4ced17dca680368a82a3fbd2b5a1255abb34f5626f0acf812ab8539c211", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jdk-17.0.9-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jdk-17.0.9-ea.1_macos-aarch64_bin.dmg", + "checksum": "f2d132bbd8fae9b2290471e71eabb5a25eaf41d3ffcd306734d1daffe6abe393" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "68c26fc1624690fedb9767571cd1d6f3797eb1d15243529ea2cb870fe22e1432", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jdk-17.0.9-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.9-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jdk-17.0.9-ea.1_macos-x64_bin.dmg", + "checksum": "3b85bbdc590019ee3d3e8e43c37069f84f3eb7e24e20b6d0e0cc990b5e874cc8" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.9-ea.1_macos-x64_bin.tar.gz", + "checksum": "d4e926e2fad91b6b198e645eca80aaad42c4f74bc524f0514041ef95ac49a676", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jdk-17.0.9-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.9-ea.1_windows-x64_bin.zip", + "checksum": "9e706d60e7866abb7de3bd60ffb3d1a37c9011ea354287bbf248425a064dfb03", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jdk-17.0.9-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "4048d6c0dc26dfbfee3429568a74a288c0c0a71226a1c8fa4e226a9a7e046c4a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jre-17.0.9-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "0443cebab1e73fffe69fb5c57af623fdd44017e351bfe2ebea00f145c351f5e3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jre-17.0.9-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.1_linux-x64_bin.tar.gz", + "checksum": "993cb43dab7b7a46066870b9acc5122e2a329f017f449d4f69c059429aad868a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jre-17.0.9-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "2a235f5f0722019bccac2159fd09c3ed66e4f86c0be2ab6fd511dfece5d79d30", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jre-17.0.9-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.9-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jre-17.0.9-ea.1_macos-aarch64_bin.dmg", + "checksum": "4ab1b9ece84f8552d3744af08bda8967fc6fd5d52f67333cd83306953ab2987a" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "6dcdd358957454e695d560845e2d82e7bd63d0db27c48de8c475186bdcdb96da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jre-17.0.9-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.9-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jre-17.0.9-ea.1_macos-x64_bin.dmg", + "checksum": "95c4c488e0ca1a00add7dfbba8aa0927ba812f1036022435dc1167d6443638f8" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.9-ea.1_macos-x64_bin.tar.gz", + "checksum": "46298b3615f1d047eb62bd73a188646b6d944b77d72faa5bc33a2b0622ab09ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jre-17.0.9-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.9-ea.1_windows-x64_bin.zip", + "checksum": "d0c1982aa3d375f1a0f16fb2b0bb6264cd7d49bfee418f641b646583f468bf5e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.9%2B1/sapmachine-jre-17.0.9-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "17.0.8.1": { + "sapmachine-17.0.8.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.8.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8.1_linux-aarch64_bin.tar.gz", + "checksum": "59329e8445eef359d1de41ae18e63d3dd197a0cc34e76afa2c96952375bc326b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jdk-17.0.8.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8.1_linux-ppc64le_bin.tar.gz", + "checksum": "020f32299a4b82b02ad2fb5422b6e71416534ec545bba1abe742a49e382daea4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jdk-17.0.8.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8.1_linux-x64_bin.tar.gz", + "checksum": "1c439fce29d1c0026acac466400abf6306b3060663b7c632f06b4390e95a5a90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jdk-17.0.8.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8.1_linux-x64-musl_bin.tar.gz", + "checksum": "9cea01a5ea25e074de8c21b6f345c60165019516c20dcc6d8cdc95849065fdb8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jdk-17.0.8.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jdk-17.0.8.1_macos-aarch64_bin.dmg", + "checksum": "331a91196672b6158c24c71b40125896da59b19c547bd63092e8ef730ff44b93" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8.1_macos-aarch64_bin.tar.gz", + "checksum": "8164e13176ca80cdf15d22ecb33b502721b42ef6b5f98c480089e2f7d79cf2fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jdk-17.0.8.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jdk-17.0.8.1_macos-x64_bin.dmg", + "checksum": "3c57d060555c51983fee527ccae66f7cf81a5e63e38d3f492cdbd7e83baad594" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8.1_macos-x64_bin.tar.gz", + "checksum": "db7611f5429f94f58f17c7b9e9c16f99b5e48d082291ff2757ca7f69065b2197", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jdk-17.0.8.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.8.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jdk-17.0.8.1_windows-x64_bin.msi", + "checksum": "b037608afb48bfb7ce73eb1096013afeffb019791542826731037d497704760c" + }, + "zip": { + "name": "sapmachine-jdk-17.0.8.1_windows-x64_bin.zip", + "checksum": "331052bb54218dab63479471b76a7593f35bf37a9623a7578942390fbea8dbbd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jdk-17.0.8.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8.1_linux-aarch64_bin.tar.gz", + "checksum": "a6d9d2f6fe4431a3a9baa623fdaf9d3ae4e051f5884829b1777ba63f3f85428b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jre-17.0.8.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8.1_linux-ppc64le_bin.tar.gz", + "checksum": "d0c055e1cd399e1182ca33ef2e594af64e743b610c1aa9f83029c9b827c15017", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jre-17.0.8.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8.1_linux-x64_bin.tar.gz", + "checksum": "ad10c3cf9a65f892dbd16204c70186a5945a88a8355e8d06c200e08f5dfb8718", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jre-17.0.8.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8.1_linux-x64-musl_bin.tar.gz", + "checksum": "029fa1803fd2c8dc45c13493b0786d878f0d975145de0fcd132327b578f99578", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jre-17.0.8.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.8.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jre-17.0.8.1_macos-aarch64_bin.dmg", + "checksum": "2e3b259d6b1ada63c17837dd903163f04cf96f3f37df4fa045ad461c3d0f470b" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8.1_macos-aarch64_bin.tar.gz", + "checksum": "d4b4ad5622845e9bc9f1070353199f7673c8d2802d298540b4910ad73cf9ccc0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jre-17.0.8.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.8.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jre-17.0.8.1_macos-x64_bin.dmg", + "checksum": "783583d30a0848b2c0f4a06fa6435b37961de79fbaebc2f1de0b1ef18916ab5a" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8.1_macos-x64_bin.tar.gz", + "checksum": "00ae7342ee0d0097d545d3f3c52834f47a83550938de251cf61c776095f5f861", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jre-17.0.8.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.8.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jre-17.0.8.1_windows-x64_bin.msi", + "checksum": "474e9f82cd6c46db7d4d0099dc272bf6bb77554109739108de40535cb83a4d89" + }, + "zip": { + "name": "sapmachine-jre-17.0.8.1_windows-x64_bin.zip", + "checksum": "67642dc266acb946a0f513e71abe8d1c865b1544eb539eb5e3d8b4ff2253d728", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8.1/sapmachine-jre-17.0.8.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "17.0.8": { + "sapmachine-17.0.8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.8", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8_linux-aarch64_bin.tar.gz", + "checksum": "0d55b992eae869cec53bf2ff4e7901fe161d51a6966bcdc18859d77e17d6f4ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jdk-17.0.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8_linux-ppc64le_bin.tar.gz", + "checksum": "7085ae9e29107d9a819fe55c81a44f9048a696386b50c58da445f9b750882980", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jdk-17.0.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8_linux-x64_bin.tar.gz", + "checksum": "892e5db311b6afbce70ede2931c6698d49ed3bb6c07cf7a034cfe5884a686e89", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jdk-17.0.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8_linux-x64-musl_bin.tar.gz", + "checksum": "a0a7e2d8b6680d654cd323a6d944be3e81d3c1f4781caea7363d6bcafec03481", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jdk-17.0.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jdk-17.0.8_macos-aarch64_bin.dmg", + "checksum": "5096bd71f73d426180a6fdedbc0b79e3b6c07ab8608f0b371e3e8b21247f53b9" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8_macos-aarch64_bin.tar.gz", + "checksum": "7650dd4daa01e5a0189180d945d2f8a93b1141c24c1ecc4a8fc78067e512e22b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jdk-17.0.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jdk-17.0.8_macos-x64_bin.dmg", + "checksum": "4082bf0a4c9d9f3661fc6beea53150973fbe78efbc550104cba9bf883dcbd42c" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8_macos-x64_bin.tar.gz", + "checksum": "c78bddc218c1548cf5d06c9c5c1baeb1ad951b9247bf8be539e73bb2b53af7e5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jdk-17.0.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jdk-17.0.8_windows-x64_bin.msi", + "checksum": "0d15003d81f8f49b6fb13c787fe483fa6060811a37a120703e3270df4886e85b" + }, + "zip": { + "name": "sapmachine-jdk-17.0.8_windows-x64_bin.zip", + "checksum": "27f05b3e4707b07de40c9c687250f6f91861261fc6886064b915e8130cf04275", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jdk-17.0.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8_linux-aarch64_bin.tar.gz", + "checksum": "0634fdbd5ba6736168e5e5332978e1cb42f7f7a2f343efa232214e9ab53f8a28", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jre-17.0.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8_linux-ppc64le_bin.tar.gz", + "checksum": "b0386dfd56c4521bb18710b59199e06c5dbdc5b1e41f307416c25f640423ddd0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jre-17.0.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8_linux-x64_bin.tar.gz", + "checksum": "7b10859e3c27d68c23806c97793d21c12a1a6badcc2146279169eb153f3cad6f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jre-17.0.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8_linux-x64-musl_bin.tar.gz", + "checksum": "dff20bade155737e6e0e57caf768acef88d0ce59bb7331d5d5a9e9104e005168", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jre-17.0.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jre-17.0.8_macos-aarch64_bin.dmg", + "checksum": "a28cf02a671f7d5b675807eced0ddca29ae68899b48b1268589519d630cc603c" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8_macos-aarch64_bin.tar.gz", + "checksum": "4f27be6670a4be0c9bcce614acd052d158e907afe4741aa5e92644e03eeb00e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jre-17.0.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jre-17.0.8_macos-x64_bin.dmg", + "checksum": "1a4b0951aef428e705047ed357ef4e3f709b7c58bb4719321654b5ffb8e871bb" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8_macos-x64_bin.tar.gz", + "checksum": "b94a3c8f986ddf4c356cb0bdde3ebc60adfef83fd73012db4f5fe24cbfe55942", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jre-17.0.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jre-17.0.8_windows-x64_bin.msi", + "checksum": "c3e8bff2c80b21adf9955a1c7c07257db0c9df243c0f802f7cb5a12625c0d059" + }, + "zip": { + "name": "sapmachine-jre-17.0.8_windows-x64_bin.zip", + "checksum": "8bbd140307a566b86c24eb6c3d66523269385440ef3879f4afe7e348fd273285", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8/sapmachine-jre-17.0.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.8+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.8%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "62e61984611caa9dd6d016a62606a9860007a45971145ab04c41c399be0707ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jdk-17.0.8-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "f304138de8d5aaea2dbaa2686b23aead493b6d9b15241f0c2535ef98f927c20e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jdk-17.0.8-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.7_linux-x64_bin.tar.gz", + "checksum": "2e6b0f68e82c802e2eb655c0dd920b4642a638c3077686ad7292ecb250e8bbf4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jdk-17.0.8-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.7_linux-x64-musl_bin.tar.gz", + "checksum": "1894fc5240dd6b8bf15e713c2302b6976dfbfa620accf65e2c8af12246024469", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jdk-17.0.8-ea.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jdk-17.0.8-ea.7_macos-aarch64_bin.dmg", + "checksum": "b49bed1faeb605f48af488a72d40790ab0eab046572981780e9f54e2db379bbf" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "953d9e9614fb34bcdaef5601020a027acefb2ec802e94c9b497d741d26dd352c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jdk-17.0.8-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jdk-17.0.8-ea.7_macos-x64_bin.dmg", + "checksum": "c565034dca3861a4a0d6f491f87e90d6ea45b75ec9a31ee9f154913c135ec0f9" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.7_macos-x64_bin.tar.gz", + "checksum": "92142691bb8d503b300aa39c5c9abd046f65415ffa72883589fa365e1ea625e5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jdk-17.0.8-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.8-ea.7_windows-x64_bin.zip", + "checksum": "b8223026c456c77fc0535425541a0efdd35d2d74c3202472a4b1aeafbd39472c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jdk-17.0.8-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "84160110c44a0e3dd4f0b2a82d32d698691d369b98aac55e50b7c2d5fc3fcc69", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jre-17.0.8-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "366f1343bb24e18b75ece31da7a97084b36e56f55637f23305bf273717684f99", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jre-17.0.8-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.7_linux-x64_bin.tar.gz", + "checksum": "c78093e5f4f45cc02bca64e075bd6d79ef80081c908832d37673a9f41f58534f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jre-17.0.8-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.7_linux-x64-musl_bin.tar.gz", + "checksum": "5a99183675d9e0f05d22e305d131bb92944575448e92bbb0541abb8884100f25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jre-17.0.8-ea.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.8-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jre-17.0.8-ea.7_macos-aarch64_bin.dmg", + "checksum": "4533ab5f78b479c7de01978712dab7a17fd5af9ad191ebc35cf3e4f222e2a9ec" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "93b8207c0c39c951c9dc2e79e2bd647ab8d98335c0e4202b0780ca9ff6911b91", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jre-17.0.8-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.8-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jre-17.0.8-ea.7_macos-x64_bin.dmg", + "checksum": "c109332445adaf62b9118dd1b9413f8afabe47825705db6ebf3cf1040152682c" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.7_macos-x64_bin.tar.gz", + "checksum": "3935e21fd80ddd4e983dcbb6ca9a868af1cb447a42ca30c567008f2637b0c3c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jre-17.0.8-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.8-ea.7_windows-x64_bin.zip", + "checksum": "6a7340dc205bd836d6206b67609db66e3d539bae5a38fb3db145ba2afa47c196", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B7/sapmachine-jre-17.0.8-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.8+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.8%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "bfedf3bbe1345a7dcb3d6cfa05ea31aaf1efb859898171ad6b60698072911783", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jdk-17.0.8-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "a44b79ad0f52bdb712b5ee25e5cedb81c6b3070851a6a33f1e3a79e6192be608", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jdk-17.0.8-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.6_linux-x64_bin.tar.gz", + "checksum": "28eaa7bb60bbc5f6af3328243969d525b708b1ef6260517ac9c66b54a6bb137f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jdk-17.0.8-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "a0bd189bd66b950de7a94297428d754d3e49e6403a5a95e043e01baaf928557a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jdk-17.0.8-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jdk-17.0.8-ea.6_macos-aarch64_bin.dmg", + "checksum": "7754466405b6c77ddf6c22132711c3105b16cedd55a8ae3d1c1872b2ae73cc68" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "5c6d368ef360da45eb7a1b163f77c510a3dc2816e87e054f7e520a700f5535e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jdk-17.0.8-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jdk-17.0.8-ea.6_macos-x64_bin.dmg", + "checksum": "e7c0c30076047d72fce68d48e79f9ee82e98079eac57a2841062ded18d4ba6c4" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.6_macos-x64_bin.tar.gz", + "checksum": "c5d1434ac898f669f26a3b3796fb9650a755c8c996957a9072c56a15a81411a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jdk-17.0.8-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.8-ea.6_windows-x64_bin.zip", + "checksum": "d0b088d1e4f95c554918460dedd9bb3bd8b9d26396eab8e34bec3679ee82c9ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jdk-17.0.8-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "3f5f9bd5af26932d5ba3c1285b82e62a362f2966fb5af8e04905b3798ef14332", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jre-17.0.8-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "aea1f9f9b782660ab470fcf49bd386dc6282975fc82465ce470e3971761264af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jre-17.0.8-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.6_linux-x64_bin.tar.gz", + "checksum": "b6292b645be254b0995d0176a43935591f64e992598846c3fc96550490106e14", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jre-17.0.8-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "4d151e1cd8e9f88eef90329e98a4076e452ebcbe87422121a798e06254aaa28e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jre-17.0.8-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.8-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jre-17.0.8-ea.6_macos-aarch64_bin.dmg", + "checksum": "b319471ec2fef9fd7dfd73b1378fa6eef37b7ac1729f1c404a351804ac1aeaf9" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "d0642cd2cb3914c52699b7ee4db32792c0561ac9a03269478865a890c41e8e89", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jre-17.0.8-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.8-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jre-17.0.8-ea.6_macos-x64_bin.dmg", + "checksum": "4fd18d9580bf9bddd5c3ce7d49ac5c5b5965071fa15a86f187d76c4f9a082681" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.6_macos-x64_bin.tar.gz", + "checksum": "e856f9b3f2da920033fb9bcd5a9b33ca415859ccf3ab7aaf8c4e3136fab454c9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jre-17.0.8-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.8-ea.6_windows-x64_bin.zip", + "checksum": "a9beb5be0a97dd5ce1cef882232e4ecf7489140c5d94c7432db6e3704c93fa17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B6/sapmachine-jre-17.0.8-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.8+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.8%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "2e41c987bb76a997be798abbda589111046690ef425fa02bc10c1c1131de6d06", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jdk-17.0.8-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "9bac2acf229496f33d36429f733d9e4ee77b15d5735a9c6d03db0adb5fa64d17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jdk-17.0.8-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.5_linux-x64_bin.tar.gz", + "checksum": "bb0e351af1975acee0c9c6c5e8ca0d225376b47e0b1ddad36776dce779efd760", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jdk-17.0.8-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "dec580551f63cca8021697a1338133848fe343bb924ab19f92f361d7587babfe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jdk-17.0.8-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jdk-17.0.8-ea.5_macos-aarch64_bin.dmg", + "checksum": "e077f7f460fce52ff80efd4d5c77f78a0e37361a87f48df0661286d60e8bf962" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "0313c8f51d4e4cfdc9b5d9bb48abfb73a4fa6cdca75f8d6568c09b2f3dfedf52", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jdk-17.0.8-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jdk-17.0.8-ea.5_macos-x64_bin.dmg", + "checksum": "291fbda12d1bd16667972ad9ed4e4ae3d0d756cf70233f2260aae3a61148d816" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.5_macos-x64_bin.tar.gz", + "checksum": "ddb27c18e52065f0b8620d529e7c116218ede2535b167e84ece07211cdd531fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jdk-17.0.8-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.8-ea.5_windows-x64_bin.zip", + "checksum": "dff6191ffb1de61028d74582dc420e47401422a500a3fece18d76a49b8d3c148", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jdk-17.0.8-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "288c98565612e3c7b5f9629beb9492d69b4bfe7a1f4c4de900d7d4a0143a44ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jre-17.0.8-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "5f08ea39ad92544c1e6eac0bdb05d07d1ab8b35ee2b50046b819ed0e34618481", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jre-17.0.8-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.5_linux-x64_bin.tar.gz", + "checksum": "d008942fe3b0dc612ddf60d377ae43afccd04a8a9801467c79ebc503dd06e2f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jre-17.0.8-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "dc429b93ef166c975e2ca876994f2a1dfa26048bcf80654d9eee5681a79d08a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jre-17.0.8-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.8-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jre-17.0.8-ea.5_macos-aarch64_bin.dmg", + "checksum": "27e763dbf89411012e102d68ff704ca460de9b02abe8598328186ca7438d5f38" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "bd011d393bc56ab6d474d8e33194b0b9cbc907db03c744d324c2ca4baf1fc137", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jre-17.0.8-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.8-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jre-17.0.8-ea.5_macos-x64_bin.dmg", + "checksum": "8754bad9d641e10640e5e7c091b0c894a1425724707871e3d1bfb0e140faeb38" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.5_macos-x64_bin.tar.gz", + "checksum": "a6ce829b32028592af91e4d63f70815e517f800aa4320daef7e55456f9d4757a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jre-17.0.8-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.8-ea.5_windows-x64_bin.zip", + "checksum": "cc8b5bfd38cdef5f413b9e9792fa141f29a5fe8ddeb5e17b2891c1db3d15f6b2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B5/sapmachine-jre-17.0.8-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.8+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.8%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "939311acf3d7efdcaa7e3789c2b6aee708db02e06c7d31b593a604becc726189", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jdk-17.0.8-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "8540f37042cd23f4bad8cabece045b0c7c80220af67212018c180c336cb709a2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jdk-17.0.8-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.4_linux-x64_bin.tar.gz", + "checksum": "938e3f46faace100352299b590cf45bb522dabbb998b514cd90834dba9965d06", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jdk-17.0.8-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "85523152515568ef860e2d6016357f2872db5d98ac2334041a2e5f7da23c03f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jdk-17.0.8-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jdk-17.0.8-ea.4_macos-aarch64_bin.dmg", + "checksum": "938dde2052c985bedc155590dcd27201ac299fddf6d99e94b62dd19703608194" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "c6aac401ff465838787e5b45e02621cfb20e01d037f8bde6e34562f660ad1fec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jdk-17.0.8-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jdk-17.0.8-ea.4_macos-x64_bin.dmg", + "checksum": "330ddc7a8cdfdcb72a9a6c9e2448f4a4b7a2e791e78ba74e7b12e4fd0739fb15" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.4_macos-x64_bin.tar.gz", + "checksum": "a1d99ebc8748cc8a606732b5a2cec0e7eab5cadbcfa57f1c69e89361e582381a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jdk-17.0.8-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.8-ea.4_windows-x64_bin.zip", + "checksum": "d626401b86f5fda1f7a17a1a62dfeea2fa633db046238edbe794a0acb6066b23", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jdk-17.0.8-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "f30d8b0c3f73e7cae9f8c1df7036821ec5707eb1d1a27f1c9d0d2725d929e852", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jre-17.0.8-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "691bc6b19f0da40d853916d276202e91c181679983239ac35034bf7ef7519011", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jre-17.0.8-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.4_linux-x64_bin.tar.gz", + "checksum": "8e393a8c3df86a00612139a27f38090ac789f70631caca3987208250961d0cd9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jre-17.0.8-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "aa7d8e7df4d6b49f4fb5e22f246af848838e1061b1a08e18d97f2747374b002c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jre-17.0.8-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.8-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jre-17.0.8-ea.4_macos-aarch64_bin.dmg", + "checksum": "61306b77f102477088d15bf7df99248027307a686b89afa0a86067dd90f1dd93" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "8be01ce72940caffc4ffdd4caa78424160f03dc023d4dc604f17a4cff9c90deb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jre-17.0.8-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.8-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jre-17.0.8-ea.4_macos-x64_bin.dmg", + "checksum": "4da0317dee51ada6b5fed8b52ac92d8f6e9aa8ea074e15909ab1aa2af5ef252a" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.4_macos-x64_bin.tar.gz", + "checksum": "3fee45d15b27074587a4209892926719ad92169d3c88e0759081296d38792d33", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jre-17.0.8-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.8-ea.4_windows-x64_bin.zip", + "checksum": "3704a66ad9d6ff7e04f32bec83b972264804dca387d83c6e0eae55887934cfe4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B4/sapmachine-jre-17.0.8-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.8+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.8%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "d6e08da0e72fc93b315a1556f57d992194dad914a4a7987a9dab53767d13b987", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jdk-17.0.8-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "48f8c03573af1859585cee75b0f053624ad41978d402af36b1496d485c8c553d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jdk-17.0.8-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.3_linux-x64_bin.tar.gz", + "checksum": "bea1abd4ff7214e7c2799aede09af525c7bf1118edfeb293e52f7374d10bf54a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jdk-17.0.8-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "936dca8ae2ffe99f92a35818c44acfb4fd44a65478987f0266fe948a83e76905", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jdk-17.0.8-ea.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jdk-17.0.8-ea.3_macos-aarch64_bin.dmg", + "checksum": "551b4b1d99024f529611c9a2ec00af16f130076849bdd5b7fcacf037cc110608" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "47ff11c6d6d61c6512811e76ce6a6d584f405863e53151deae76cf1fb6702018", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jdk-17.0.8-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jdk-17.0.8-ea.3_macos-x64_bin.dmg", + "checksum": "a495490e0c90fc83cbb2c1f96ffa2f3a9cd114feab5e37c6ec3623ef99fea0cd" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.3_macos-x64_bin.tar.gz", + "checksum": "14517cd1ec33924f189abed44edb9cf4adf84a9de788dd96aaf3061b50f7ea62", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jdk-17.0.8-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.8-ea.3_windows-x64_bin.zip", + "checksum": "8ff27d36bf0cebeeb4d6ddeeb1cd8792908fc3c89f505d6d986a8699ba121c53", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jdk-17.0.8-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "7578e33a0e05652ff5d770060dc3bd405e7224abc392e7e7bdd0f27b7d112a3e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jre-17.0.8-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "01ee75a9821471e4e6d9a0e70848b7c8892c1b972b22276d104ee5a044b835a8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jre-17.0.8-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.3_linux-x64_bin.tar.gz", + "checksum": "737dca6b00ef09cb1c4a1e613a18c79e7324e3293aa95ea52c4ea1f093c6669f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jre-17.0.8-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "9412a883f45df37878b9c8ff2a31820ec5a0d10c7a1578349feab4bc9767dbc2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jre-17.0.8-ea.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.8-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jre-17.0.8-ea.3_macos-aarch64_bin.dmg", + "checksum": "1c406c7fc9cc6b9e7fa14b9728e5acf90d0bb0e066ace8e1509a9f6ac1a6c3c2" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "bd68831eca41e34e690a74b5f0d93c59de8e44122080642fa318b1f55bfdbdfb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jre-17.0.8-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.8-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jre-17.0.8-ea.3_macos-x64_bin.dmg", + "checksum": "0840adcb8ff9c81a5013afd9c7bdfa074c07a55df7911acda85fd19c0951117f" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.3_macos-x64_bin.tar.gz", + "checksum": "c39bedba8e03a92cc8df269fd1b53b3f6b560ec7398cb17ac10723ab0ad3e334", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jre-17.0.8-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.8-ea.3_windows-x64_bin.zip", + "checksum": "10bd4ba2d124a5e7d88aa11af3d0f2e807a2dc7189362f1ecd7dfd07e50fe285", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B3/sapmachine-jre-17.0.8-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.8+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.8%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "72b5f9aea742208a62980dcfdcacc4d0f0629bf5026c0285558f87b5527e15bf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jdk-17.0.8-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "65588d4dec9e8d5a4e31d81ceba28d520a05468f4ce0ce03015b45147de0dff0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jdk-17.0.8-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.2_linux-x64_bin.tar.gz", + "checksum": "fc35599cda509a92e1d721253d899d7d081a1398783a36366f34669e89da4007", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jdk-17.0.8-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "ab0da2bdf95114357f42d68f771bd66a2c301509499084784e7e61760408a079", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jdk-17.0.8-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jdk-17.0.8-ea.2_macos-aarch64_bin.dmg", + "checksum": "510799abdd1d9122910b7886e363a62239fe8ab381d5a3a6d69a3a6e8413d3b9" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "31448de04b870efbe8947e1e0cbb4c113e3f3af61d8b53b5c37c1bf9bd639ba9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jdk-17.0.8-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jdk-17.0.8-ea.2_macos-x64_bin.dmg", + "checksum": "f88588e2db0d430805644da17f0724696adfc0f28ddc58c598e43b73da42c048" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.2_macos-x64_bin.tar.gz", + "checksum": "4366c2c7a475e5e23705030f62b379d5a4a39782c9a21ed4c4e4be174a7b36c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jdk-17.0.8-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.8-ea.2_windows-x64_bin.zip", + "checksum": "c349b224b394cc7d68f34b0a3503fee2f24d0c4ff9c8861c20c13559149b75a5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jdk-17.0.8-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "ff510f4f1b78d0108cad0d856e6978f67ecbd394dacb15162b59d399961c2be6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jre-17.0.8-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "18d5f188bc517b215099c8de7e2b6b05c0de41c5c2df09e7492abcc9cdebaf37", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jre-17.0.8-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.2_linux-x64_bin.tar.gz", + "checksum": "1839d808c2851777e9146773fd1df6c2aea7d71b0d5abcf5fdb58295959bcd04", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jre-17.0.8-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "c02089dae6cca94399501bc1709a31de0e2a0a2f9f87fa66c7c95c788ad7eedf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jre-17.0.8-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.8-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jre-17.0.8-ea.2_macos-aarch64_bin.dmg", + "checksum": "432104d7ec07e48434b3f85083709a291d92b788d072dcf9b0a3776008f82d2a" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "5392c305aca7ebcf23b0dbb84541a083ad64592e2e029d0b5692b13c399c0f6c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jre-17.0.8-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.8-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jre-17.0.8-ea.2_macos-x64_bin.dmg", + "checksum": "c57fba3420aeb449cbd2e4e7642ad3bf5d1a2c68b96fc28148e27c67cdc94575" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.2_macos-x64_bin.tar.gz", + "checksum": "112f981958ebbbd374f35172dd0a2d2b410d31305d77ad5c78d927cd553ace18", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jre-17.0.8-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.8-ea.2_windows-x64_bin.zip", + "checksum": "87499b23f4f5860ed03ca64de5a3edfd781172429880f6e9092dea283d24c620", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B2/sapmachine-jre-17.0.8-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.8+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.8%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "328f232937ce7b090fe80ed47a3c5a95c566c0218db3ddbf726d5aa46e5c49c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jdk-17.0.8-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "bf2b1d83b9afea7689cf371329835a43a98789f51a20b8fdbf8c96459e7a13d8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jdk-17.0.8-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.1_linux-x64_bin.tar.gz", + "checksum": "979478025a9d1c6a751c91382e1b41fc2b90a585e6d448e06e58d0ceb42cfabd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jdk-17.0.8-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "af0f1aeb8183685d15cd64e4dc5530dd1baf33c61985df52ae2acddf29271ab5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jdk-17.0.8-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jdk-17.0.8-ea.1_macos-aarch64_bin.dmg", + "checksum": "b154797fa0aaa8892e016e5b05d317e1230f066a3a592d9e037e986c480b08ad" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "a46155d41b5819dfcd77fd091f24154e5d274c03bda675fe9721e5956ff95ab1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jdk-17.0.8-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.8-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jdk-17.0.8-ea.1_macos-x64_bin.dmg", + "checksum": "04e9a414707b81c601b909b8ed87d11b13539672e3e5c83993fdac623ddb0154" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.8-ea.1_macos-x64_bin.tar.gz", + "checksum": "9127edd67cbb2e1dc991aa11c0f7e43f2e05f43a94b042062478f3aed0dedd21", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jdk-17.0.8-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.8-ea.1_windows-x64_bin.zip", + "checksum": "bed4b81707f6ab272795597cef9771a992d3bdf9704cc3d8d296d574d2fd376d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jdk-17.0.8-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "bedc137366f1fae5a4082f295dd5163ce729d10d0a76dcfaded1ba2f30d04c0c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jre-17.0.8-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "6e6ba98b16e32330cfa50f8af65331cf7318351cc1f4e9d6ce09d97e751704ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jre-17.0.8-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.1_linux-x64_bin.tar.gz", + "checksum": "f678a0af24434ca5a5cfd248d564f5a283598e041665844fd49520da20b79c0e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jre-17.0.8-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "5409c42237bd5a6442057e85398af786fc8869dda57fd6d2e5c19a2883394bde", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jre-17.0.8-ea.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.8-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jre-17.0.8-ea.1_macos-aarch64_bin.dmg", + "checksum": "f37647cd41da567bf10adda625169d6da209c2546a419639438b3cdaa825376f" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "1e1fcb3cb01c111f74e4ac84aa254a17fe2aa6a723ea7ac3ba8e209289b41af8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jre-17.0.8-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.8-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jre-17.0.8-ea.1_macos-x64_bin.dmg", + "checksum": "508f60dc630964d3f5f1ed6f2e01f203f4020956043423c4ddcc7ee80edb5826" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.8-ea.1_macos-x64_bin.tar.gz", + "checksum": "afb249e089b6e1b6882a4dc178b5746131918874493f6e91aee06a4f6f1f1e50", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jre-17.0.8-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.8-ea.1_windows-x64_bin.zip", + "checksum": "e60ad6c79844d0956d089cb4ee0976b0f84eee1375b53d213b3698908c5499af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.8%2B1/sapmachine-jre-17.0.8-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "17.0.7": { + "sapmachine-17.0.7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.7", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7_linux-aarch64_bin.tar.gz", + "checksum": "77bf9ed226d01436f9f90896706309ddf5376d93e769e188fe9a845880136c61", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jdk-17.0.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7_linux-ppc64le_bin.tar.gz", + "checksum": "c498452ad40300e90abc7c42f1990b2434f45f6cfd4972368f448746125871c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jdk-17.0.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7_linux-x64_bin.tar.gz", + "checksum": "4b50fad2be69d3955f53faef5e54a3ece89ee74bd279d55a93ba8d864f3d718d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jdk-17.0.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7_linux-x64-musl_bin.tar.gz", + "checksum": "413a0791a6fa8651d24fd0e4471043a69f49be6e1f3e8ef7517bf5c1aa60b514", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jdk-17.0.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jdk-17.0.7_macos-aarch64_bin.dmg", + "checksum": "ecaf8a1c2fe8fe2df00cba36c7c87678b9bf46d8428cffc66f7a1aa6b2c44883" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7_macos-aarch64_bin.tar.gz", + "checksum": "3db9ccca0b5df89a10f53c566bc78f3fd5742d07c11044957996e13f2459c6f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jdk-17.0.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jdk-17.0.7_macos-x64_bin.dmg", + "checksum": "3edf63f35a55ef6f906adab1985e2e85a2c3de13672970837428df1d29793128" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7_macos-x64_bin.tar.gz", + "checksum": "16b876049d34050d1442fe7971c70b581e70c1dec74c3755e2f53c1d04bd2ad0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jdk-17.0.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jdk-17.0.7_windows-x64_bin.msi", + "checksum": "c3de4d9568fd61294c2b400e2050cb397ae9164e5e7f935287639635683dc2c6" + }, + "zip": { + "name": "sapmachine-jdk-17.0.7_windows-x64_bin.zip", + "checksum": "7cf36f89a8e009214fd3238175b5074edfabed4f2d61b98d8eb92244ecc03df5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jdk-17.0.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7_linux-aarch64_bin.tar.gz", + "checksum": "620571190431d0c398c85ec25d6fc57eb3892f2712075c69371a3f12417d2912", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jre-17.0.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7_linux-ppc64le_bin.tar.gz", + "checksum": "da8b83cca44ca40fd8f8dd227906cbc5f6482695a3a1d2beebe0a2848f3b8a7e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jre-17.0.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7_linux-x64_bin.tar.gz", + "checksum": "1e5d8e9e18f4a4e45e554e1614f5feb06df44d65ae098d0bd992dd3fc72e4b6f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jre-17.0.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7_linux-x64-musl_bin.tar.gz", + "checksum": "4c4961e94bfbab75406d49996b422bc54c892eb912d9b3fc8396ccc857872631", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jre-17.0.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jre-17.0.7_macos-aarch64_bin.dmg", + "checksum": "922b7f7ef71331653e7555f3ff584922b8faef45341cd1c4eab2509e1b4491c7" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7_macos-aarch64_bin.tar.gz", + "checksum": "79d26077e60cc24c3ca7d55a41dda99cbaa5fe7d05d057c8645209234cad4244", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jre-17.0.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jre-17.0.7_macos-x64_bin.dmg", + "checksum": "26c1229df73e08369590ee07d74428791f02b7ea04e78dbe502b5e3d4e62a6c8" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7_macos-x64_bin.tar.gz", + "checksum": "93ed8d3f634c7bf79c372947d05f476c2f76fe2321190cfc3f1d12ba568c56b0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jre-17.0.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jre-17.0.7_windows-x64_bin.msi", + "checksum": "59e69408676a47f54e85c071abccccbbff6b5f724649505ad4ce70c66df10892" + }, + "zip": { + "name": "sapmachine-jre-17.0.7_windows-x64_bin.zip", + "checksum": "248e02c322e6f7d0d5a3e1161e420c24b99dc656bc10550490ee4954d15ec75d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7/sapmachine-jre-17.0.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.7+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.7%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "7f75fcbc401edac34d81547ce95a2fbca39eebcb0365bc66bcf2e7a61f621a8a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jdk-17.0.7-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "57ea212e3dc1e23f13aed80ba3b28da757c91a5f47f209acd7452f92c0993ccc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jdk-17.0.7-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.7_linux-x64_bin.tar.gz", + "checksum": "81f4856183c11afba763bafd6516120bc22eae32d603d8b732ae0b9612a065f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jdk-17.0.7-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.7_linux-x64-musl_bin.tar.gz", + "checksum": "a526fbd9e607a523da7c68318876b89a1939b49696379c5dfe73a02aa270af4b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jdk-17.0.7-ea.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jdk-17.0.7-ea.7_macos-aarch64_bin.dmg", + "checksum": "e6f45a05fb122a29810d04b2faa8e2e45b6d984dd379af17ab271bf7fb6c0928" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "3fb8b3abd1480ef164e83c18c21f0125559c476a568f3c708aa61cde1a3b066b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jdk-17.0.7-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jdk-17.0.7-ea.7_macos-x64_bin.dmg", + "checksum": "8f90541609c31f9cba30082d6f51881fcc20b92890b18dc6f292a6d9bc56e758" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.7_macos-x64_bin.tar.gz", + "checksum": "b3d028a994d5a824ad4900dd397d0edb1bc296d2e0bcbdce451fcd83d897518c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jdk-17.0.7-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-17.0.7-ea.7_windows-x64_bin.zip", + "checksum": "32a5407aee629f27ef88258d02e832d51eb4ec8bb213880fb9dab3826e887a1b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jdk-17.0.7-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "3bf3cd4eea697659c8b5ac984cb0131444919572f24fb55779b933e4af997a00", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jre-17.0.7-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "5b0113127dbe5400663d80a6ced77d8480bbd4ec1832fde8ed5215b72f1de3b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jre-17.0.7-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.7_linux-x64_bin.tar.gz", + "checksum": "22d2946455940d63abbfa20b1a104c92b0d7ab044251cce7b4171d3fc460e88d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jre-17.0.7-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.7_linux-x64-musl_bin.tar.gz", + "checksum": "4201c126424595cacd9f78509c41b93a9c1c0ddf6d860269ee5702dfba25cd55", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jre-17.0.7-ea.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.7-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jre-17.0.7-ea.7_macos-aarch64_bin.dmg", + "checksum": "14cb67fe8dd57e84eb5101c24ba01bf46828c995bef20a6cc5825c4ac378ef4a" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "13c102758e215296ffc063190c124477b0b482ba9a232e22e066e70fc7f9be80", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jre-17.0.7-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.7-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jre-17.0.7-ea.7_macos-x64_bin.dmg", + "checksum": "615c2e73e64a39eec7446e244411cf945cb8ffc0a6e5c3a1551dd7f3511e2fd5" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.7_macos-x64_bin.tar.gz", + "checksum": "a3fdad31c36ff35855140b6726c7361daf118aaa022743c1435d4c4832419617", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jre-17.0.7-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-17.0.7-ea.7_windows-x64_bin.zip", + "checksum": "8b70f724a4e06936a527cc0abeeea8c1ea67f18a05525f7382ef1df9eaff6eb6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B7/sapmachine-jre-17.0.7-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.7+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.7%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "446f59b9500430a00b08498b3c63ecbbb83eef2a032554a6fc0c73e05f91b137", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jdk-17.0.7-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "9dd43ff6523eda76167e9bd3f9010f70abe7589a10559fa5b76a5ad1bcbfb002", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jdk-17.0.7-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.6_linux-x64_bin.tar.gz", + "checksum": "a4485690f5c4293ca54d63a950989d5a68240d6e002bd3d6c102b375185fb059", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jdk-17.0.7-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "ca62c204c0a98774eff03accf163db2b53e98c672189fc30f4bd3ec026d40ec2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jdk-17.0.7-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jdk-17.0.7-ea.6_macos-aarch64_bin.dmg", + "checksum": "f276db8ce596fbd02fef5003cd7411a7c7ef8a95336f6f54c874da199aee4411" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "e870aa0f39ba40de133d65b413a8bc4fc2419013314b16d4afacc1ebc493a432", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jdk-17.0.7-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jdk-17.0.7-ea.6_macos-x64_bin.dmg", + "checksum": "4bc66440ff518180e2a35525cc85151115c6fcf5d47cd1f103b0cd834fba1441" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.6_macos-x64_bin.tar.gz", + "checksum": "7e916f2a160611dc1312e90b7fb76d79ceb9bf636ad85fafb20b0640f9bbe3ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jdk-17.0.7-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.7-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jdk-17.0.7-ea.6_windows-x64_bin.msi", + "checksum": "2e216741e8be74dcc4d845a8e886785a4e9de1575e10e33e939ccec1dd773b06" + }, + "zip": { + "name": "sapmachine-jdk-17.0.7-ea.6_windows-x64_bin.zip", + "checksum": "62cccc1bef290aeb48fe46d5a20241e2fb047a2e79d8c25182670eaa53e1d5ab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jdk-17.0.7-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "6076918f7687c6ff2ca1bf5479f654f8e1d4dbe7ac4f744638dbccb6f31ad7f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jre-17.0.7-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "5e5306f4fa20b16cafa5f2f933ee36a7f9587da2ade71a9fabe0149370d705e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jre-17.0.7-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.6_linux-x64_bin.tar.gz", + "checksum": "23e2386f2692cf51d37fc70a9495fea9080206aabcabd206c0ac5c18541374d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jre-17.0.7-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "81e2ede87d09441f4bf5570cd551eb9e4ecce8cd0cd8c119c54afcb4eaabaf22", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jre-17.0.7-ea.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.7-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jre-17.0.7-ea.6_macos-aarch64_bin.dmg", + "checksum": "8355170713afff7ba6db901351619e798d70a3e254b2521365b0c9b82570f03d" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "5d747b219d11bf95837dbdc8e15623a41d91e611e12e15eaf7d2f51a5190cf75", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jre-17.0.7-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.7-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jre-17.0.7-ea.6_macos-x64_bin.dmg", + "checksum": "0f58cbbed9c4b323a61c1d0ab4a2a211112b3605b52bd689c69792de55e49b55" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.6_macos-x64_bin.tar.gz", + "checksum": "e76e308842ba86e8fdeda36d4ade0cb1fed140cb6834da142d6df383764a18a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jre-17.0.7-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.7-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jre-17.0.7-ea.6_windows-x64_bin.msi", + "checksum": "34760475187c03cb6739dfa5aa2905234ccd86bd7f2ff1dec1f4d8408830c6af" + }, + "zip": { + "name": "sapmachine-jre-17.0.7-ea.6_windows-x64_bin.zip", + "checksum": "9e5eccf1e9d643b38b100b282c6d75c11fdbd33190a77aec2975bcf8bfc00bf5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B6/sapmachine-jre-17.0.7-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.7+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.7%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "08d2f0ef0cdf5e071990147a986eaa8558df9f763560b23975c6e7dd0374ccd7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jdk-17.0.7-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "0114729a9180be8dbf41efb89b4099cf85d630e4033678677a9c315fb91583d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jdk-17.0.7-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.5_linux-x64_bin.tar.gz", + "checksum": "84fc1c22d161bb8044e8ad1c4acd4633482c7ac1631d10db8490d360943abc78", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jdk-17.0.7-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "8769e65a835512feba5021d7a8bbf60555be3b678efc37e3e5194f32acbe3b4d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jdk-17.0.7-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jdk-17.0.7-ea.5_macos-aarch64_bin.dmg", + "checksum": "35df4711dc284c2f66a90124c4ee3ebdf5496d446535618eeb7a99b285f617c7" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "afc0cb0b898c5d0480bed27b7410010fc1d9e9cdb89ccc1b8163b525e8476aaa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jdk-17.0.7-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jdk-17.0.7-ea.5_macos-x64_bin.dmg", + "checksum": "17cf8294bc866e7a22c099dfcf5059e8f6a053146e3efcb07150220036d0d07a" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.5_macos-x64_bin.tar.gz", + "checksum": "2abc983e1979b11388bddfb6368987275c7b197e20fa0b8fe317e912667ebad1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jdk-17.0.7-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.7-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jdk-17.0.7-ea.5_windows-x64_bin.msi", + "checksum": "9ff5a21fa6db40a928611d337d6673c33ab57ce1549efca607f205ebb437ffde" + }, + "zip": { + "name": "sapmachine-jdk-17.0.7-ea.5_windows-x64_bin.zip", + "checksum": "2098abbbd80d181432ca11cc0879ea39a595f5ae19cb66f04e46a9bd2f63dd43", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jdk-17.0.7-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "e77961dd6448a88cb3c2fee105082a6ffa75cef26da7b3c863b7c6f32ca3d905", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jre-17.0.7-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "f9322fb4b71d61c1bd5222dd9cd6efcc013652f83828ffb2051c473b5049632f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jre-17.0.7-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.5_linux-x64_bin.tar.gz", + "checksum": "b1f8335a0e3f440d8d973eb94c28d42de0ab47035c65f01b109d4507b3c17c85", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jre-17.0.7-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "97efca71fb9aa7f755bbc6b8eee204b184f0e0f50648752555b9dc672266ef71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jre-17.0.7-ea.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.7-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jre-17.0.7-ea.5_macos-aarch64_bin.dmg", + "checksum": "c06da99b6691ba65be64ef54ddb69263a47547af98387e13befa4aa54f47d1de" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "ffdc429db0c0f50ce4409efe6f182be725408e34a2e51854d080d3f75346759d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jre-17.0.7-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.7-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jre-17.0.7-ea.5_macos-x64_bin.dmg", + "checksum": "9064f81bfdb09ae2e31de0fbbad535d5beb2d968327af1f62691913291b4f6e2" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.5_macos-x64_bin.tar.gz", + "checksum": "f41f543987000b0afff170d69e87c3cf9994121b802e365fdbf3077ea00f4fdf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jre-17.0.7-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.7-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jre-17.0.7-ea.5_windows-x64_bin.msi", + "checksum": "1e444fdc8b467c9f14ff3283bf574e2cc167d57fc499aac19b0ffbdb1963bf6f" + }, + "zip": { + "name": "sapmachine-jre-17.0.7-ea.5_windows-x64_bin.zip", + "checksum": "5ca68529ecd4bb05a9ec43c6884e249c6051979bb3fb7b85b81c5489f6e40bcb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B5/sapmachine-jre-17.0.7-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.7+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.7%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "d74bb85c21d392e6ba1e609b2bd9b7966b5a9c648613edae88484fb669d8948b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jdk-17.0.7-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "2fabd1c4e461030570bf3d2481de036df5ec745f57a41b37d20aa0b8534be3d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jdk-17.0.7-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.4_linux-x64_bin.tar.gz", + "checksum": "719c3f771c6fa6f7d8d6168235352c8c1557ccfad729866d4dfc2e558c67996c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jdk-17.0.7-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "802ce0bab76b6c3fd601039a47eb80ec094e2d0ad866648051ff4b0c96e8db72", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jdk-17.0.7-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jdk-17.0.7-ea.4_macos-aarch64_bin.dmg", + "checksum": "0137702c9ae93ec5d6397445bba4c4b212e3c556f8b9d0d237c7a8e647034de9" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "666fbd2e305f743d91573a57b5e25d1d51764f771540da0bfe86fa725fe6ef53", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jdk-17.0.7-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jdk-17.0.7-ea.4_macos-x64_bin.dmg", + "checksum": "9846e71bdc9cdc73e2a946be80c2ed0015cfdbc6b6025e92da41aa9d81a627f7" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.4_macos-x64_bin.tar.gz", + "checksum": "16fc9fadd0149af574b8c71c1987c8f0861648779bc6babdc555b42aff64c1bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jdk-17.0.7-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.7-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jdk-17.0.7-ea.4_windows-x64_bin.msi", + "checksum": "1744a1ca01606b58eb8d9ebe8a7429a140a13816273b68c88c63a643764bd746" + }, + "zip": { + "name": "sapmachine-jdk-17.0.7-ea.4_windows-x64_bin.zip", + "checksum": "1d348ece8a6c907110e0d92431ca083618748c27e7fd9b5b62e06ffe4bcb4ce9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jdk-17.0.7-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "2ab61f48e2a8161eaaf86d027c6c6f995014dc492f06442d8233e7a50072a2ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jre-17.0.7-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "2d087debe9b54fc9e2ca3888e474edd25ce42d49c0b7161441397a319792840f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jre-17.0.7-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.4_linux-x64_bin.tar.gz", + "checksum": "17c9b62fdd0436b98f8a7bf81d97818d96e1498e3fd1b6da8c03c3aff5f8a733", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jre-17.0.7-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.4_linux-x64-musl_bin.tar.gz", + "checksum": "4b7dd41580951ba6517a16c7612e089374237b339d30809c7c35fc67e060d59f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jre-17.0.7-ea.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.7-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jre-17.0.7-ea.4_macos-aarch64_bin.dmg", + "checksum": "68e44bac84e9451425611c98bb2b6d55639eef0c3a62db25fc109aadf30fa3ff" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "3eead8164d4907a80f7d3cfcbf8decb0552e8a027e07250c6771e9e82e8cf533", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jre-17.0.7-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.7-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jre-17.0.7-ea.4_macos-x64_bin.dmg", + "checksum": "5d06744d1ffb91f2654008e49e298b5dc118c867345326ea969cc2ee5722f891" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.4_macos-x64_bin.tar.gz", + "checksum": "d4634c88ea1b8afe59f787149c6e7e6ea1bcc666c0a2057a62dfd7c65152756f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jre-17.0.7-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.7-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jre-17.0.7-ea.4_windows-x64_bin.msi", + "checksum": "2383b0c417042533e403af9028334cc48fe3e29710ea78198cd679ac17b33ecc" + }, + "zip": { + "name": "sapmachine-jre-17.0.7-ea.4_windows-x64_bin.zip", + "checksum": "dfdb970ae4daadbb800680e9761e8481c97b4ad0185942f3343ceeceba3e186e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B4/sapmachine-jre-17.0.7-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.7+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.7%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "6db425206ba9e5e06e40b839d5172fd9418fc00f5488fe5943c13e6412f55ef7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jdk-17.0.7-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "dc9b058a646e84c0f980d88e94f8714ff81edaf9dd5dd3171f5fbe0a669a1bcb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jdk-17.0.7-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.3_linux-x64_bin.tar.gz", + "checksum": "04b70eddd0002ca8b70046a90b86b7d48b8aa217f5aca02234525a7ae95f0e36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jdk-17.0.7-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "effaea751e77b34695b9c35400de09d246b770c25942685e31e8ff2a0d6471d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jdk-17.0.7-ea.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jdk-17.0.7-ea.3_macos-aarch64_bin.dmg", + "checksum": "d6d79eaf77c95c5a851c32770ef5e54876b83c0458da33bc9f1e1709b247d17c" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "5671b2047c51e25a83ccb9174fe6236ddbef9f359ef9a5d53ab8e27cfb8d71d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jdk-17.0.7-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jdk-17.0.7-ea.3_macos-x64_bin.dmg", + "checksum": "3ca707e1792d0aa1f18c8f1a8afee9116ca8e44b4b80f965780e900bd62161c1" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.3_macos-x64_bin.tar.gz", + "checksum": "cc2f3b5c1fe09df3e50b4a4ce9b7f6f3fec4db43cdb9b6a82bb4fd7e122adbb8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jdk-17.0.7-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.7-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jdk-17.0.7-ea.3_windows-x64_bin.msi", + "checksum": "4cecf71be15b9caa3704ac046b9a7ea5d93aa6c69271969255b93b2d500bd4bb" + }, + "zip": { + "name": "sapmachine-jdk-17.0.7-ea.3_windows-x64_bin.zip", + "checksum": "ef83e811ca26fe160e57e29e67cc944f222ce713d44655eb6dcdf45d89132d7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jdk-17.0.7-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "79f20c69b27471c3183b371e21b8e68b2f778c44bf748f845c7649c6fce0dadf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jre-17.0.7-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "71420d0ab15c01f10f3c0d2daebb680b9abedc6f210bb68a786196639971045b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jre-17.0.7-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.3_linux-x64_bin.tar.gz", + "checksum": "7efee1239296acd41a2067569c24cc56d8197320d441c894de2cad3ff8efa2e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jre-17.0.7-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "8b3ac6f02e3a85ed603639c1c70419caa2967d5a7dd70cd089b207ee17e78ef0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jre-17.0.7-ea.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.7-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jre-17.0.7-ea.3_macos-aarch64_bin.dmg", + "checksum": "9fa537e2dd602ddc654fe27ed10b1f8152309103133a05c7b7eebb89a4e62916" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "8909a799c1929f149f521712691cb6098a16d875e039c58dad6a102a234c4b9a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jre-17.0.7-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.7-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jre-17.0.7-ea.3_macos-x64_bin.dmg", + "checksum": "540f622558477417738ee7842e06413ef9c58c09643ff55027dee8c37ebe7469" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.3_macos-x64_bin.tar.gz", + "checksum": "9be745953e704988d9d8fbd4c2ea064af3b55019f07b7ad760a72cf444278c71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jre-17.0.7-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.7-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jre-17.0.7-ea.3_windows-x64_bin.msi", + "checksum": "6bedcf2582bbc33280cbfe1442882883dc6c08d5194ef71adad682c148e1e015" + }, + "zip": { + "name": "sapmachine-jre-17.0.7-ea.3_windows-x64_bin.zip", + "checksum": "49f81360af6c56804fc5e4237a0e122e726b19f7412cdd19a03fd538b01d4017", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B3/sapmachine-jre-17.0.7-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.7+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.7%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "8d1cefbf0638d82c5c7cca267abdfd3ff6bd851cd58ae3416b3c2f1581e4af70", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jdk-17.0.7-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "d914278f6d4c68a50aa207be6228262b0727e20a3709140ba5dbff370b66eb55", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jdk-17.0.7-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.2_linux-x64_bin.tar.gz", + "checksum": "00160ec05fa8c63cd2e95c919a905d17b9e255a9bb675abc0bc324944cef031d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jdk-17.0.7-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "4f1335ef8c365be505c408c2480a34e07603687e06200550a1358a66bd56caef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jdk-17.0.7-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jdk-17.0.7-ea.2_macos-aarch64_bin.dmg", + "checksum": "c5657984920ace8fb5d47ede0378c78d051eb1676f179938d323f30e74531f6a" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "da7f3771d5e0764efd2962d07bdce438869109fbada6c3f81d6c752707a403f9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jdk-17.0.7-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jdk-17.0.7-ea.2_macos-x64_bin.dmg", + "checksum": "43fd4449de79b334106683767fb428f7fff7dc35352fd85aa64e5b0709045d00" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.2_macos-x64_bin.tar.gz", + "checksum": "8259c4f809ee060d65aacb9249169bf843c0c7681a27a1c3bd1b45fb923ae43f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jdk-17.0.7-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.7-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jdk-17.0.7-ea.2_windows-x64_bin.msi", + "checksum": "fe27bc8c583ca7cad861ab9d5a7eb1a4d39d8c610e0dce6ac0ce25df2ca0d2e6" + }, + "zip": { + "name": "sapmachine-jdk-17.0.7-ea.2_windows-x64_bin.zip", + "checksum": "a37dace165874edfc139597fa6cb60e1977cc4259b1118bdf3fd92171175be48", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jdk-17.0.7-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "d513cd782e6c149a692339ba5e23f13e387b4fb23bc7dc6c469c0c8bf8d464c1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jre-17.0.7-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "594e61f9514c8ebf79b4377251fc3adc1024d838b0d57da02e33e0cec0184cac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jre-17.0.7-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.2_linux-x64_bin.tar.gz", + "checksum": "830ecedda817367ea39a71e2bfdcbb9bd6ae555e73696a2b7e9b2ee5a63991e6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jre-17.0.7-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "a2e611506e159de077c4a542898dbf71bbc64c659a0631416ed3b4183717a9fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jre-17.0.7-ea.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.7-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jre-17.0.7-ea.2_macos-aarch64_bin.dmg", + "checksum": "a6ffd11bd304877795a0cad409aaadf31b0071e98a34484238bc39051f76a5d6" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "f61365dc2cddb25275041d669c263d8dea26b6cbc83a917997251047a8488158", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jre-17.0.7-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.7-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jre-17.0.7-ea.2_macos-x64_bin.dmg", + "checksum": "b8ebd7952e9ecf2d47b8696bca3c150d1b997418cb04b63700795d1aac6cc1d6" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.2_macos-x64_bin.tar.gz", + "checksum": "b32bd49e267925639143b4ed6d33cecb1421b06e49f09025f7fd18841efbf5af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jre-17.0.7-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.7-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jre-17.0.7-ea.2_windows-x64_bin.msi", + "checksum": "82cb83c72933b42f138881b239f9af83665b01c5231444fef72c4d9fd47ce37b" + }, + "zip": { + "name": "sapmachine-jre-17.0.7-ea.2_windows-x64_bin.zip", + "checksum": "829e3e1000f05af0e47bc2b7a50bb93d2d4ddfd68152e51bf8bb98240646f065", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B2/sapmachine-jre-17.0.7-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.7+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.7%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "d305f6b1508a86af5596d7b3e021bb0b3b215a4a896e7e074235700e20d81816", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jdk-17.0.7-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "20cd507fe631b48e1e7718227ff1089e995629b7c1528778b7953f28ddf5db73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jdk-17.0.7-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.1_linux-x64_bin.tar.gz", + "checksum": "2e118b8c05cebd4a3cef867b904ac9ba3df0e2cdfb147de1223124e665ede05e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jdk-17.0.7-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "ecbf29ff9d4a502e922d1191132417c26aa431df0ae1c6ea60d5c6a1dcab4cb4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jdk-17.0.7-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jdk-17.0.7-ea.1_macos-aarch64_bin.dmg", + "checksum": "2eaa888ebfc1145f99ca31ef1d838ec45fc93fd569128f3689f9a3fb11f7ccdc" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "5b244ca93f090338a68e41798fb4e33bce327cb3743542bdf9910feb1e79d009", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jdk-17.0.7-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.7-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jdk-17.0.7-ea.1_macos-x64_bin.dmg", + "checksum": "de43b60d73e60e821d3b9361758b4e075beff739652928f5d6c953fe067c422c" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.7-ea.1_macos-x64_bin.tar.gz", + "checksum": "e35baa30a1589e622ce56dc5d18d98782dc9182a2333b797adbfa35581fbf1f0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jdk-17.0.7-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.7-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jdk-17.0.7-ea.1_windows-x64_bin.msi", + "checksum": "cc9c873b8606e189a32f2db055812825358eb2096c69d0b34886464406299823" + }, + "zip": { + "name": "sapmachine-jdk-17.0.7-ea.1_windows-x64_bin.zip", + "checksum": "952d336ee534ec2071e70844f974e7cda7c8303a18193a7759f55323588f0229", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jdk-17.0.7-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "9c747fccb8619d2e2639bee306beb3ed4fedf1053eaa68f37474f948eb65ed69", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jre-17.0.7-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "c7e7090d1f38647b478a3ffc0b55f2ad5dd48d6b363a01dd4fc8c30807737997", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jre-17.0.7-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.1_linux-x64_bin.tar.gz", + "checksum": "4bdc109271e5809fe154452d0b766f926c8017c29ca06069edfd2caf8927e581", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jre-17.0.7-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.7-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "9c2ce205fb746701c4be2ff14ba7410d9729228ec76e4cdb507638f81e1fa07c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jre-17.0.7-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.7-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jre-17.0.7-ea.1_macos-aarch64_bin.dmg", + "checksum": "6e3f4e6d2256e614220fdf5f031f8be669d9a3c4d7910eb27bed011c57b06e8b" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "1916cd5128f296ce90a01093345c97245788767cefd402a4ba62fc06c601b613", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jre-17.0.7-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.7-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jre-17.0.7-ea.1_macos-x64_bin.dmg", + "checksum": "330e9438197988778fd0f3df5fef0b6270764b764a368e70022b0481a4871581" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.7-ea.1_macos-x64_bin.tar.gz", + "checksum": "9e6e6e7a3b98df75155669f49e027c7e3adaf2c2cb2e58adabd31c308eea6e4f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jre-17.0.7-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.7-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jre-17.0.7-ea.1_windows-x64_bin.msi", + "checksum": "18a6c67f356a713b581b15dedb60e36b8904b12eedbe7e5184261efa05e74b44" + }, + "zip": { + "name": "sapmachine-jre-17.0.7-ea.1_windows-x64_bin.zip", + "checksum": "21a5fae1aa262d2f2801c807ad217997a30467c3e269dd40a2bc050310b302d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.7%2B1/sapmachine-jre-17.0.7-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "17.0.6": { + "sapmachine-17.0.6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.6", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6_linux-aarch64_bin.tar.gz", + "checksum": "15703d71e12ec1d43b827dc46bc63db687aa2c2455f6e699aa382837493204f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jdk-17.0.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6_linux-ppc64le_bin.tar.gz", + "checksum": "ceee857ee5188af4b20e9e1fd87542cc44c11c365cde45fada51c7d85a17dea3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jdk-17.0.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6_linux-x64_bin.tar.gz", + "checksum": "a9d61a0dc7260505bdeb626ed747c8503255a634884b5126b31e18965464d0f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jdk-17.0.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-beta_linux-x64-musl_bin.tar.gz", + "checksum": "d1c1e1c1c973e6d17160b296f884e44d227cf9f60a4529fccf018cf5b4312ae6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jdk-17.0.6-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jdk-17.0.6_macos-aarch64_bin.dmg", + "checksum": "1c2695f97847bffefbec7c7dedd2be234219a42b44776a39712862e789e8039f" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6_macos-aarch64_bin.tar.gz", + "checksum": "31c7d36a8dfd4d0b14fcd82edeccb14be408128099dcdd41e89f0698f0882ac9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jdk-17.0.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jdk-17.0.6_macos-x64_bin.dmg", + "checksum": "b1e7c066692d56de7b1a5e945701a7094fe5031820df59db1a69dd13c165bae5" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6_macos-x64_bin.tar.gz", + "checksum": "2332a717bb7e204b93fb017035a9ecca33ee440df652df2c3ab32ab76be4bcc6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jdk-17.0.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jdk-17.0.6_windows-x64_bin.msi", + "checksum": "2d133b54ec96ae1fe3342c4e8e7d5404cf6a25bec5a7542645f71122505cc898" + }, + "zip": { + "name": "sapmachine-jdk-17.0.6_windows-x64_bin.zip", + "checksum": "77cc1b941c25f82836b599c6b294b3b92178efc5ddc8feaa7ffd32cbc6b76d3b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jdk-17.0.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6_linux-aarch64_bin.tar.gz", + "checksum": "9fb3b5afa2e527bd5095d251632e7282e76de88c904077fe8ec509df0a95ebee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jre-17.0.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6_linux-ppc64le_bin.tar.gz", + "checksum": "6aaaf58064519059b74c424c5b07e1385897f732f544876587a2ba5d74e8edcf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jre-17.0.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6_linux-x64_bin.tar.gz", + "checksum": "2774ee35461af4ab60f197d5262ceba1eb5c82f7ce21c371e3c8cd62106b222b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jre-17.0.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-beta_linux-x64-musl_bin.tar.gz", + "checksum": "c1840a644f23a26632e35d9513ca970dd4ac7a96d8c5a7139e160413ce376090", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jre-17.0.6-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jre-17.0.6_macos-aarch64_bin.dmg", + "checksum": "18fed837409d8575e23296f95f05ca527451036b23f4c6d4d2ada982d5537100" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6_macos-aarch64_bin.tar.gz", + "checksum": "c29e6891eacddd2c2351dabce8c9db03e39795d063a5ddb4ba84e7eac25242a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jre-17.0.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jre-17.0.6_macos-x64_bin.dmg", + "checksum": "69707a7678a0bc87b791da3bd82d5ec33ae475cbe3235870d157c2eda705c4fb" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6_macos-x64_bin.tar.gz", + "checksum": "d259064b91a6bdaaddb7247a7c8c01b430c0dd3cde43170c36bf6f8b048a791f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jre-17.0.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jre-17.0.6_windows-x64_bin.msi", + "checksum": "1be56c3500d099a78073a36db40d26c3b65563c21d8fbe3908b6e4b148f40e06" + }, + "zip": { + "name": "sapmachine-jre-17.0.6_windows-x64_bin.zip", + "checksum": "59a987eed3a616f83e5a8d4236b7c92a5e6e1ea5c4b136d30609985ca8a959d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6/sapmachine-jre-17.0.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.6+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.6%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "4ac2293da069395a9871714aa3ab7c84b8204633f61420279c3a5a190726bc4e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jdk-17.0.6-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "40ca2b3bc567c1c006ba05d89dd98ad98e68cb5d89c4faa45afc7238a87ff62c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jdk-17.0.6-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.9_linux-x64_bin.tar.gz", + "checksum": "c792fdd8b0f183e0ebefd10e5c6395a93ee351d178fd29c18c98a4ab1b0df2a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jdk-17.0.6-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-eabeta.9_linux-x64-musl_bin.tar.gz", + "checksum": "d00816acb56196d31c1f18e1911f64579bfe749c1377cfe9020214fcc01c382e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jdk-17.0.6-eabeta.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jdk-17.0.6-ea.9_macos-aarch64_bin.dmg", + "checksum": "8ffbec25ac9df35cf1315b667349a484c99d596df17dc178b72cc8fdf0478205" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "b1e512c95502da7d26e5f1ad33a93958ada1112281e7d224ec7dc569f9499165", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jdk-17.0.6-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jdk-17.0.6-ea.9_macos-x64_bin.dmg", + "checksum": "c3745eb0514dfbf07c922dd0275179133ccf3594efb4e0fbc057a729a78cefd9" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.9_macos-x64_bin.tar.gz", + "checksum": "f80b5d301d871ef6bd7115d3cfff2820bb6ea6ee75820b3d98c3cf42551569fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jdk-17.0.6-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.6-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jdk-17.0.6-ea.9_windows-x64_bin.msi", + "checksum": "e497092ea289bda173b1e8c09ceecdaad9de49489cf24f349a73f428d29c5ffb" + }, + "zip": { + "name": "sapmachine-jdk-17.0.6-ea.9_windows-x64_bin.zip", + "checksum": "a8bfce0ae787dc695570769996f75c50c143f7e84b3ce7c709f2e3c9b2aaac3c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jdk-17.0.6-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "37e995d8fd7d86681924da2fc01d3a42c451dc37fcfc76e222f54115be7a9130", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jre-17.0.6-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "ef1577b3bc5e6071c036c6e5bfd1481618e5dcf2a6bda1433299b603dfaaf08e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jre-17.0.6-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.9_linux-x64_bin.tar.gz", + "checksum": "bb3b388fdd79c5db3d6f236d3032d23bb5d8bf050644ac840212043a865227fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jre-17.0.6-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-eabeta.9_linux-x64-musl_bin.tar.gz", + "checksum": "85248e79b296235bca2a8dec6c2fb6ab0e8add2b470bf639cfd81f25875adad1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jre-17.0.6-eabeta.9_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jre-17.0.6-ea.9_macos-aarch64_bin.dmg", + "checksum": "bfca770acf4bb5c7c421c9890b4f1694f66ed94a62455067d60c225611d3f23e" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "af204ef9064d7e044898c089d961809492b5c528efd14d5cb524d0d593366e9d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jre-17.0.6-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jre-17.0.6-ea.9_macos-x64_bin.dmg", + "checksum": "e84ecc302d35f52d3261b16dbed2c3abfa10745533b733b42e47300c29c4b92b" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.9_macos-x64_bin.tar.gz", + "checksum": "2b52c93df1d1c6b572122ffc18e1779ca4c49e3df03ab27dbdeaee5324c1af92", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jre-17.0.6-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.6-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jre-17.0.6-ea.9_windows-x64_bin.msi", + "checksum": "003cc63c2555d1b1f187d91d8cdb2d95a59df4eb21c64ae2876ced86255a1ac2" + }, + "zip": { + "name": "sapmachine-jre-17.0.6-ea.9_windows-x64_bin.zip", + "checksum": "db0a941bbf45a4afb06e42e2e3b8bc8b87e8aacf9c611a4b3d9af94852c3dd99", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B9/sapmachine-jre-17.0.6-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.6+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.6%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "bc6fd06782eee609401865d40d9c7dd05c45e8c95efa24181e47df76743041b2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jdk-17.0.6-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "c3b27398dfbaf0df751e7ebc45f93318bc31383d9503bceffbb75a26c27cb789", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jdk-17.0.6-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.8_linux-x64_bin.tar.gz", + "checksum": "2641b042d2eaa27e37384e61b7d970a17de15550d8f640cddd3485cb2918a62d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jdk-17.0.6-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-eabeta.8_linux-x64-musl_bin.tar.gz", + "checksum": "f38cd6a785937d3eed003e0930a51ac3b3949d75e75a6f04b2a057cb9ec26639", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jdk-17.0.6-eabeta.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jdk-17.0.6-ea.8_macos-aarch64_bin.dmg", + "checksum": "6d857d4ac4b2debc2e7d2ac13ab1de4dac944bda907d10cfb4093a9b7355511a" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "94c7f93df03ec8fd3253731d9284b31b317f353af102bbaab1c3c54b35eb389f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jdk-17.0.6-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jdk-17.0.6-ea.8_macos-x64_bin.dmg", + "checksum": "cfc01d30b6e5420ab22e1db89def3002662b96d7634e22d144134d3fa9632311" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.8_macos-x64_bin.tar.gz", + "checksum": "43e9a636b3c4d6fabd68c6596b89c478c0c8f674982dc6fc201d571fc4b64710", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jdk-17.0.6-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.6-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jdk-17.0.6-ea.8_windows-x64_bin.msi", + "checksum": "be20873bab393ec938a3b74525ea2cfa6c21c21ba62e5331b2e1fdbf85a08ab9" + }, + "zip": { + "name": "sapmachine-jdk-17.0.6-ea.8_windows-x64_bin.zip", + "checksum": "07a64d2089bfb9679d895204fa9a1758561a4cb684b0e90fdbd24d1d5409ba89", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jdk-17.0.6-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "d273e0507efceff8947aa355ebbc84252610a5486b9615bf4d41d8105737e89b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jre-17.0.6-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "fc5a16030bd94c61b9412e49d8237916780303413f1eb398b3261519293db1e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jre-17.0.6-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.8_linux-x64_bin.tar.gz", + "checksum": "37aaa93f8abf1867947c9da3b0271effbfe08bf057cc90cd5a79c0f504ad9840", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jre-17.0.6-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-eabeta.8_linux-x64-musl_bin.tar.gz", + "checksum": "b9282d3a4857c36dd28d9e6b1464437ebc8cbe3a10d4c2ba0d4a7a34114916ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jre-17.0.6-eabeta.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jre-17.0.6-ea.8_macos-aarch64_bin.dmg", + "checksum": "a7a5d27b18f05df9d624204895f6c92cba96eb8ee76a2f69fef38de09cbcd4dd" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "8c76bd5026662e60a6387c022f6488399c1eddaf760b4ce31421a5a78cc9bf66", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jre-17.0.6-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jre-17.0.6-ea.8_macos-x64_bin.dmg", + "checksum": "7f5623492c5b987b284d55003d378b2bc6b3c8721499119b64dec74edd5ba15b" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.8_macos-x64_bin.tar.gz", + "checksum": "64689bd2dc63799efd47deaf33cff8658cb796f75459fac309bbac378b0f783d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jre-17.0.6-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.6-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jre-17.0.6-ea.8_windows-x64_bin.msi", + "checksum": "83b00e734b6f91c80d684d0a62e22c20dbfce68d334f958d75e7eff1af773e26" + }, + "zip": { + "name": "sapmachine-jre-17.0.6-ea.8_windows-x64_bin.zip", + "checksum": "45bc636993bca89050ed1d593e3046002c6931b4d2f61206107b5e38620c7d17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B8/sapmachine-jre-17.0.6-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.6+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.6%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "faa6a8d0af75d68a4ae1c618b103c63523b26240190a99b2179737ffec899ae4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jdk-17.0.6-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "a6bc8e1395bf9d8ab8aaa3ee3a626564d6cc20eedd7cb11745efd7a2445ce307", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jdk-17.0.6-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.7_linux-x64_bin.tar.gz", + "checksum": "f992d50333b69795f9a96ebf01ae94bb035c7fd462bde654526fedb01a94f6bb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jdk-17.0.6-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-eabeta.7_linux-x64-musl_bin.tar.gz", + "checksum": "5f85c904ee0987f937080e8678c75b89fb966b4dc6c1b477479c7fb05d6009b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jdk-17.0.6-eabeta.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jdk-17.0.6-ea.7_macos-aarch64_bin.dmg", + "checksum": "445cf3adf4fa9c4b80b5fe1dec3a7adb0b7b1d9b81abdc820b8c52a292da18db" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "356ec7c10dd82730ab660ffb52a8f0179a57d4d10594e76c2d619554e66b0944", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jdk-17.0.6-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jdk-17.0.6-ea.7_macos-x64_bin.dmg", + "checksum": "2c1372379139df25fa19fbebd3f4637009050e1b02726daa0927cc38f64ac20a" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.7_macos-x64_bin.tar.gz", + "checksum": "60d320f02499b832e0ca97f4d3e7e239841bc02c2860f3f8f77d06fc4accd2b0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jdk-17.0.6-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.6-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jdk-17.0.6-ea.7_windows-x64_bin.msi", + "checksum": "9f1fc6ea66c624abf61cbf06caff9b076b2eedd55951d65ee0e9ba6f68d1c3b1" + }, + "zip": { + "name": "sapmachine-jdk-17.0.6-ea.7_windows-x64_bin.zip", + "checksum": "1f530042975ff837c4c76c5c8b293e61a2f60e6b6e81659cdfebe87a9543ad05", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jdk-17.0.6-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "a2ecddcbe2b9853494d9072a92bf68274d1ef7e1d3fe42b540bee6459c60d742", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jre-17.0.6-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "cd5e65514ae75084eb075925ba74d5f1d1b663fbff0e91f1d07719b9b4d1ed58", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jre-17.0.6-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.7_linux-x64_bin.tar.gz", + "checksum": "a6793aba04569166533c3913af35056604f398b573176e8f77e3411dd7fb3eb8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jre-17.0.6-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-eabeta.7_linux-x64-musl_bin.tar.gz", + "checksum": "0b0ea2719c87797c3aa8a973b4c76fa834abb632d22aab9ca5224fb31575ed02", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jre-17.0.6-eabeta.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jre-17.0.6-ea.7_macos-aarch64_bin.dmg", + "checksum": "8f15c7e5ac3756a272c6c990100d8b9f1f7d936f5887f17cd6a8168a963e33da" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "3c036ea27e31c7dd439513cbaebedc0d63a3278ceda496cad5b8c18fb338ba3b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jre-17.0.6-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jre-17.0.6-ea.7_macos-x64_bin.dmg", + "checksum": "d66889bbc071d0497cbf5320c09d6917d36f9de549faca1d8c294cf88b9acdc3" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.7_macos-x64_bin.tar.gz", + "checksum": "f79a43018b47c5f31eacf39d007f2fd4374a75938de471abd46ca0ca52d9a609", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jre-17.0.6-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.6-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jre-17.0.6-ea.7_windows-x64_bin.msi", + "checksum": "68a2d4c3086f0cbd2e9c787464aac12752dd592a0a57b16396e7dc299f0db8ea" + }, + "zip": { + "name": "sapmachine-jre-17.0.6-ea.7_windows-x64_bin.zip", + "checksum": "a0ab7eabd0e44064244c4497736dcf723145415f041e855f38ad90f361e6cfa9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B7/sapmachine-jre-17.0.6-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.6+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.6%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "2e616001b3fdf5974f9cdd8f7b33998860bd870e02361dd4b9669026c8d3c5e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jdk-17.0.6-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "d6760292c5dfa6430f4c91fcc114f3107b5e11371b7e6f058dff601261e67a24", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jdk-17.0.6-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.6_linux-x64_bin.tar.gz", + "checksum": "34ea722b3beffac04c0704c216726011e29c844f2c3f24197bc62c4ff8a1e6ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jdk-17.0.6-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-eabeta.6_linux-x64-musl_bin.tar.gz", + "checksum": "1c222eae967e0eb0a24afafa962029f8f477008b167a4b15b5ea25d5fb8c982d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jdk-17.0.6-eabeta.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jdk-17.0.6-ea.6_macos-aarch64_bin.dmg", + "checksum": "847d4c2c2e5666ef92e9d7a2c48aec4744267c0ff7098ceadf31282cdb6da39d" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "b5200e0fa415c2e660ddd1ae56717564a5eb7eb423de7a3cb24e85baf8666863", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jdk-17.0.6-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jdk-17.0.6-ea.6_macos-x64_bin.dmg", + "checksum": "bceb509084eeedd42b94f8ce62a1820419018834307630167a8922b8356c0167" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.6_macos-x64_bin.tar.gz", + "checksum": "97b453c6452bce7b9fd10a95d54089378869b3882011c8085bb2fcdc7eff9ad9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jdk-17.0.6-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.6-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jdk-17.0.6-ea.6_windows-x64_bin.msi", + "checksum": "164f0f6da345fd5bd777fdd4d751782a9bdbc85d45e6926c42e85df87854cffb" + }, + "zip": { + "name": "sapmachine-jdk-17.0.6-ea.6_windows-x64_bin.zip", + "checksum": "6a3e9668c30ce87aa455a865140b351457ac37bbdb700dc9b86f9d376ebef4e5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jdk-17.0.6-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "eed636708760fb030685d3403addaca3621220ec4c8ca056907529dae2d041d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jre-17.0.6-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "3ef485b5351c7f6b295f32bb821ce224a96832026488fe6a176ca26290f9cb23", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jre-17.0.6-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.6_linux-x64_bin.tar.gz", + "checksum": "229556821d98af2a053809d46a2a5158d78a7082448aa163528973736fb750df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jre-17.0.6-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-eabeta.6_linux-x64-musl_bin.tar.gz", + "checksum": "233cc8d941cfcc226cfaebacf2075dc2656f10f607b3dc0c736d483ac7dc9f42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jre-17.0.6-eabeta.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jre-17.0.6-ea.6_macos-aarch64_bin.dmg", + "checksum": "64cb7927d8c068aa4a51b93e435fe9af91f7022bbb8f341df931f9da77193f73" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "6b001d1bfb7274fd6e49525fc3fae9a0b920dd8f32b86d08ae190c5127130d4f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jre-17.0.6-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jre-17.0.6-ea.6_macos-x64_bin.dmg", + "checksum": "027609230d8230eb4fce0c53ad871717677bce466f53895699328113dccbea89" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.6_macos-x64_bin.tar.gz", + "checksum": "8de25022b2bc3604a2ce8bcfd2d6a0e3313d0b0f01cdac4d197419a7b4fc4ba9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jre-17.0.6-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.6-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jre-17.0.6-ea.6_windows-x64_bin.msi", + "checksum": "857ee443d0fa35746f9011e97d23bc3a7afcf0954b76a2a292b878179e3830e0" + }, + "zip": { + "name": "sapmachine-jre-17.0.6-ea.6_windows-x64_bin.zip", + "checksum": "021f1eceecae6d44c95b58f195ec19e8acf15bcaa933289fb352e2a69726211b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B6/sapmachine-jre-17.0.6-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.6+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.6%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "7a2bfd40ee3d912ae5aeda19b8728c07485699d1e457649ee3e82954c61b250e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jdk-17.0.6-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "0ff3db4a3d5bfa75314aa214bdfc09be7081b1d91efa5e6fd9b93bc830866447", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jdk-17.0.6-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.5_linux-x64_bin.tar.gz", + "checksum": "2555aaf2efe5ba5c808aa4b9626304242dfac9a3a984c990c2d5958a0ef22535", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jdk-17.0.6-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-eabeta.5_linux-x64-musl_bin.tar.gz", + "checksum": "7eee279d0fac811bcfa469c865e6a338a5b0a5359767f5673dbb7e1cde09242a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jdk-17.0.6-eabeta.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jdk-17.0.6-ea.5_macos-aarch64_bin.dmg", + "checksum": "380d0ba3a40b9dd4a657b073f47ef94627a90136b6e6dea3b618ac42fffd9ed2" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "3cf66e8e674e07ea08e2a498aa94cf65eb49ff52ce144b87315109b1cdda9120", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jdk-17.0.6-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jdk-17.0.6-ea.5_macos-x64_bin.dmg", + "checksum": "0bb566e5a41f410fae8de7d3cf20227707d84ba034df5d03a5f1e377877a2e45" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.5_macos-x64_bin.tar.gz", + "checksum": "fe1864ebcd91ca0814f75b700f16fddae0bf5fe91f2ebbd05ec407fb898d1b79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jdk-17.0.6-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.6-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jdk-17.0.6-ea.5_windows-x64_bin.msi", + "checksum": "07b51fc72fd1a93082d7ec95aca2e789c6ecb9e3b81d09be44f4791f96eac3b3" + }, + "zip": { + "name": "sapmachine-jdk-17.0.6-ea.5_windows-x64_bin.zip", + "checksum": "93123baef7398dda05c92cfbfbbfae0a731d57823fe9beaa6047f5b6222ee320", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jdk-17.0.6-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "2f6a59be357b663faea4f1f3a346052c2977eaafce3a3f54bc4d33a219f4f0d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jre-17.0.6-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "1aa75ef6864d790080abe2ec7ccc5178e3cf214fb794f6d926cc683d3897853f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jre-17.0.6-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.5_linux-x64_bin.tar.gz", + "checksum": "c12e4cea0714c04942087844ba6fd432567869a4926442a792ad084eb560b6bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jre-17.0.6-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-eabeta.5_linux-x64-musl_bin.tar.gz", + "checksum": "2c1514c367574850a2bb3df616095340fa3d050c8429aae07893f7a920680863", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jre-17.0.6-eabeta.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jre-17.0.6-ea.5_macos-aarch64_bin.dmg", + "checksum": "9354a5b58b71bb28f900e0ae452f4f1da3f40ca1843446ec4fab34c6c09df6be" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "d3b0af426a2b877bdfba9323e8eeb4c879d30b96f1637d57953e88aca0a6ea9d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jre-17.0.6-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jre-17.0.6-ea.5_macos-x64_bin.dmg", + "checksum": "f8a4a321d3fa2758aa5143f2486f07ffef5fe275b478b22225a73535881a0c31" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.5_macos-x64_bin.tar.gz", + "checksum": "7ee363396777baad63ce1325959292d88144f6110acfae3965749099ac494e23", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jre-17.0.6-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.6-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jre-17.0.6-ea.5_windows-x64_bin.msi", + "checksum": "ed2387e8266e8370e28078a2af30c24b9cd4b7f8de3bceac1f86fa430c63a99c" + }, + "zip": { + "name": "sapmachine-jre-17.0.6-ea.5_windows-x64_bin.zip", + "checksum": "4e500428342be8ffa6ae7efcc150c4bd930e88e679b533a62c6c49a0edf7cfca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B5/sapmachine-jre-17.0.6-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.6+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.6%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "2ba12573ab8fca4df226a839e9245eb78a0dcb5b9f4c5c0853119ef09f8efa7c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jdk-17.0.6-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "6b9b701e5347ec838187bb0527edc688f252ef5c25925ea503ab3cd9dc1fe936", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jdk-17.0.6-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.4_linux-x64_bin.tar.gz", + "checksum": "9944002a5712584648d396b351cb1cf001af3f34156f1d226dddd492b99f4fc1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jdk-17.0.6-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-eabeta.4_linux-x64-musl_bin.tar.gz", + "checksum": "1cd0d7d6469d9a48c0f84c9faaf393f82cf33e9e5db57755702e738f7492b681", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jdk-17.0.6-eabeta.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jdk-17.0.6-ea.4_macos-aarch64_bin.dmg", + "checksum": "0156f8a9de654443b156af50298b63325499a22e5df5907b85be662d3ab066b3" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "921ec80fd4046a41201a106033df5662e1b65877534811b4dceb0530a44bd329", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jdk-17.0.6-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jdk-17.0.6-ea.4_macos-x64_bin.dmg", + "checksum": "8164f41ee3576b85fe4171c22385c9978ce5aefa5a377550580859f7f0dbb109" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.4_macos-x64_bin.tar.gz", + "checksum": "8d6bfb7181c97ad9872bfca26542e393a4466b46367eaa29fdcacb290d826106", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jdk-17.0.6-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.6-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jdk-17.0.6-ea.4_windows-x64_bin.msi", + "checksum": "f2534ce3f0ea00854bc709ad5577f1cdbbb571eb48f6b43959fdda95a1f3e66d" + }, + "zip": { + "name": "sapmachine-jdk-17.0.6-ea.4_windows-x64_bin.zip", + "checksum": "a820f5530a976dc51a541eb127f41d6f3861cf356cd8897c45058fb8c8504c9a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jdk-17.0.6-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "4c67decca7c285ea2da51e65de9f83cf86903a556bdb059d3a87ba77ebc73029", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jre-17.0.6-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "12caada09dad5f9368c3c4b0b76a3fdd81001d26d9beedc73e44d3d7ae285bb5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jre-17.0.6-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.4_linux-x64_bin.tar.gz", + "checksum": "0dba666414cf340d8781d9079fa0adc00d18ce023a5539180556ea32c5156049", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jre-17.0.6-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-eabeta.4_linux-x64-musl_bin.tar.gz", + "checksum": "dbd9f93bc9a7023d0dc687a0d80674e94badf1f439899c8e2601f2373a5bb3b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jre-17.0.6-eabeta.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jre-17.0.6-ea.4_macos-aarch64_bin.dmg", + "checksum": "8a597490b2f5556a54d01507a05c009c0d159d890bce379f2a69f9b5a27f16b3" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "fbe3fd165feafceb158ebe8092d2242c30044470f8d6394996c9748ae2e7b7fc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jre-17.0.6-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jre-17.0.6-ea.4_macos-x64_bin.dmg", + "checksum": "37f3e56e7e5e3dd1efa4ad3201bd743d149c1529246825dfa68214c1cafdbe86" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.4_macos-x64_bin.tar.gz", + "checksum": "ea94878809ea35f6034573c3c53f6539c61ffd5729b0d861f610390abe60d30b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jre-17.0.6-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.6-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jre-17.0.6-ea.4_windows-x64_bin.msi", + "checksum": "4eaa63764afaf1fcfc699fe1b829e155737e83d9fe984fffdc1453df0198559d" + }, + "zip": { + "name": "sapmachine-jre-17.0.6-ea.4_windows-x64_bin.zip", + "checksum": "057847ed7777f8163cb0d382382216db541baa23b13c7cdbdbd5210b6bbe9d92", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B4/sapmachine-jre-17.0.6-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.6+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.6%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "f8e3d4cbf89a488ba0790832376fed49e8f6dae0a463cabb310877e76481f463", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jdk-17.0.6-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "35e89c188bd79ed43115ff773fdadcf4ffdb6c855b5fc010b2cfceb5c82b465d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jdk-17.0.6-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.3_linux-x64_bin.tar.gz", + "checksum": "47d7a7fd15710aa375e99e53cd70ae6c669d78cd8a99ca6a56badeee959967e7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jdk-17.0.6-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-eabeta.3_linux-x64-musl_bin.tar.gz", + "checksum": "ec06cdb6230248f7811929657c3bdb25287b181acc939cd175136b214844ad3b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jdk-17.0.6-eabeta.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jdk-17.0.6-ea.3_macos-aarch64_bin.dmg", + "checksum": "54e48c37af7a07df1244de49527678a82fdc097cb46c1b30d88010db0bd8d5a5" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "55746066fac78c04576dc8efd654c7e5b39fbbaee2541f7006fe9431574e1036", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jdk-17.0.6-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jdk-17.0.6-ea.3_macos-x64_bin.dmg", + "checksum": "7f8e7136401a6f3e4a96831771fa4f49d41d86c5c3e26ddcdab4af0255ffeb3c" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.3_macos-x64_bin.tar.gz", + "checksum": "f1023ce8f3c170f76fe08139f7d9974796997f6378e4f53e4db4c703a0a829cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jdk-17.0.6-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.6-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jdk-17.0.6-ea.3_windows-x64_bin.msi", + "checksum": "760557b62beee3cdd12b458413cef7df893df630305dada26d5481f7abdaf07f" + }, + "zip": { + "name": "sapmachine-jdk-17.0.6-ea.3_windows-x64_bin.zip", + "checksum": "09773a8dbd083c4147df4808e864b52bb2c1fa134dba1379f43346abc42165a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jdk-17.0.6-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "9b6e20ef1e3cc51f1bbbf709301f502a762219b89e53b8733e0bab0033b0120d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jre-17.0.6-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "b0f39d6ece4d2d417980ba7195c3fc95df049f9a3aa21a6b88c31fd42d1049b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jre-17.0.6-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.3_linux-x64_bin.tar.gz", + "checksum": "12fb24efaa0039a4e1703230e3e9a89afd5b764859ba79b381c8cf5eb45e5974", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jre-17.0.6-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-eabeta.3_linux-x64-musl_bin.tar.gz", + "checksum": "d3edb8a762ff27fb38f4c50765ace248d577592a0f33ae17991d7382692607da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jre-17.0.6-eabeta.3_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jre-17.0.6-ea.3_macos-aarch64_bin.dmg", + "checksum": "3d20839f50584d27c80d9659079cd10619fe2e2ac4c29818883ae2d912498544" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "15ac2161f1c6c87946bca760e6904fa77048966d23bcd7b246f2d5f4e663fadc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jre-17.0.6-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jre-17.0.6-ea.3_macos-x64_bin.dmg", + "checksum": "b7509b68b26b3c069b235d3708e10b52769d4c986c3a40e08692106d2cc920a7" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.3_macos-x64_bin.tar.gz", + "checksum": "d203f76c35ecb9346c11e985abde7df99a5eccbf9c61d6d5d6f05acc7280c9b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jre-17.0.6-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.6-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jre-17.0.6-ea.3_windows-x64_bin.msi", + "checksum": "e89989eb5cdea8562ff844fda7b318ccd6266b7c69d7aedc36370315b675363c" + }, + "zip": { + "name": "sapmachine-jre-17.0.6-ea.3_windows-x64_bin.zip", + "checksum": "1215ee1b60b2ac9a6b8aa1f5064df157bfbc05969daac5c7a0f400203480ddf6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B3/sapmachine-jre-17.0.6-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.6+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.6%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "2e52a315952a7990358234c9cf80549d7eb23d73f7eb9e41ae54987aa7fbe3db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jdk-17.0.6-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "54234ec79332653bb5db62cb518b0bd4af870ba3ee113455cdbda914083f18ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jdk-17.0.6-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.2_linux-x64_bin.tar.gz", + "checksum": "4671d89c4c77ba48cabb7c2bfc8313c97de7625f495cb90c3407ef6bb06fbe2a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jdk-17.0.6-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-eabeta.2_linux-x64-musl_bin.tar.gz", + "checksum": "1e217e538d70a256b27e67afaa73b0bfcc3f2a534e0d097aaf999a13638414e1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jdk-17.0.6-eabeta.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jdk-17.0.6-ea.2_macos-aarch64_bin.dmg", + "checksum": "96fb91e03d75f38e023d39c82c5f7d5dea8edbb083c23fa4e01ff53f4e5042ba" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "09ed1c4c22ecae0ffa9774689bdafbed7ebb3d42af7bea5222a03767533deb21", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jdk-17.0.6-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jdk-17.0.6-ea.2_macos-x64_bin.dmg", + "checksum": "92459064506dcb003990dcccaaf6ec3a5de54c7fab675c34ed36b6d1c2fc0125" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.2_macos-x64_bin.tar.gz", + "checksum": "9c339d2d4fd5f20dea869ff7936757a93c730200baf669f8c0b5d390939934a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jdk-17.0.6-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.6-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jdk-17.0.6-ea.2_windows-x64_bin.msi", + "checksum": "4749fce86b41824a2ab466dc45f52b66ee3b1db75414d8f395a428e0ecfb3c8c" + }, + "zip": { + "name": "sapmachine-jdk-17.0.6-ea.2_windows-x64_bin.zip", + "checksum": "46699e352811fc4011ad122ff245420ad148cd38138f2aa501c3844169ebcdb8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jdk-17.0.6-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "74aedce5611d636af8ee32b5110a57519bc53a3257d270db6b676aa6d83f7ddb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jre-17.0.6-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "790952153ba0630e328823d9a943904d422c58f52f8242bc9a902a0f4fdc1fd2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jre-17.0.6-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.2_linux-x64_bin.tar.gz", + "checksum": "7b6f7894336cb88b0971c52505df205f5c6b7d5807e78f7334f9484ea22d6b68", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jre-17.0.6-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-eabeta.2_linux-x64-musl_bin.tar.gz", + "checksum": "757e99ee6774e1280478047c59374727c4914c2f76c51b4d7e8c3f9dadafe3df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jre-17.0.6-eabeta.2_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jre-17.0.6-ea.2_macos-aarch64_bin.dmg", + "checksum": "cbc7d26ae7c2face5ba8cda3d72f145b018e3c3f65bb06abd9098b08529dd983" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "5cfcc1ca7574dad780b2f1c4ee71fc84524aa12cff36ec1a64379101b566ffc8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jre-17.0.6-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jre-17.0.6-ea.2_macos-x64_bin.dmg", + "checksum": "57144e86d283585649279595db3c89b80f88597236b53d892fde139963f4c2a6" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.2_macos-x64_bin.tar.gz", + "checksum": "fc5dce11002c848113e44966c2b03d19be1a46ced3fb6d126f16123888f23fb0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jre-17.0.6-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.6-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jre-17.0.6-ea.2_windows-x64_bin.msi", + "checksum": "09e067175792b3a40a65f0cbd9f84b202de1ae875bffaf7723d4a00c18681928" + }, + "zip": { + "name": "sapmachine-jre-17.0.6-ea.2_windows-x64_bin.zip", + "checksum": "faf894cc30f8d77d76a52ec609817f47609d35ad95bbd1ac984545130de01791", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B2/sapmachine-jre-17.0.6-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.6+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.6%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "bf91b91c7379411678a77b13a3b5951720d92a260578aeb21a88a0de02c81a30", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jdk-17.0.6-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "9e901b673d2700064263eddf85d8730723ece3cf311cabc8ee62ffb7f2852c1f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jdk-17.0.6-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.1_linux-x64_bin.tar.gz", + "checksum": "e69591c4c6a84a2c177c0775a88baf254fbc035716cf388a8818e677ae507f59", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jdk-17.0.6-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "622e25174c1aaf4e7fe354d67aed0d64498aebb41589693190ac56c08031ded7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jdk-17.0.6-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jdk-17.0.6-ea.1_macos-aarch64_bin.dmg", + "checksum": "ad804835e6fbdaea69a2fce19df546acbd7d4afd706e5fd480337bcd038cb3b5" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "f49f1cac7d4988178ec344dcd40284e0183f21bc3a38e398a384ea996832866c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jdk-17.0.6-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.6-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jdk-17.0.6-ea.1_macos-x64_bin.dmg", + "checksum": "89ba7b36c7a3df64669a5dd2e9487d33ade22cb49e678946dd37089b31799fdd" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.6-ea.1_macos-x64_bin.tar.gz", + "checksum": "481e9ac0ff820fa788fb71edb4c086f8bcc73efb5e77c074d1ec279c37210b8e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jdk-17.0.6-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.6-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jdk-17.0.6-ea.1_windows-x64_bin.msi", + "checksum": "7f5eb18894c0fb30010347e6c377ca753efadf1ce991e0df62709aabec3ff560" + }, + "zip": { + "name": "sapmachine-jdk-17.0.6-ea.1_windows-x64_bin.zip", + "checksum": "e85f265c744d544098d185a40fb0944dbf727f677cc9674dfec2d20e8d6aa4b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jdk-17.0.6-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "6fa4a22414c0eb93efe49d41221f515b155dec187314725987e45f730595fe81", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jre-17.0.6-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "719cc630eacdbe0cde2cb3f54b88633256b47d57400e66a42afe006d0ea22c18", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jre-17.0.6-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.1_linux-x64_bin.tar.gz", + "checksum": "6581fca5b8957a9aacb500c6b82b030213930879c4c69c1abbee699d3a4ce0cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jre-17.0.6-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.6-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "26387f33c275055a84759389ea9af580e721efa76aac071c3fc0ed46e55f230a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jre-17.0.6-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jre-17.0.6-ea.1_macos-aarch64_bin.dmg", + "checksum": "e60e770e2213288d045511a99735b49f8533154d1200ca5e73ecca11bc3851b4" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "2d9f978c9c2c5a0a0fe1ce6fa4e518efc6067519a57bd5209f5fc5a124f15ef0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jre-17.0.6-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.6-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jre-17.0.6-ea.1_macos-x64_bin.dmg", + "checksum": "a03af9d11fe143ff58a4ff1fbe744a462e9f0b0de12d30df65c783b350ca43cf" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.6-ea.1_macos-x64_bin.tar.gz", + "checksum": "af80b4df173ec00a3f4240bfb641674dbf5150289c53d83c97587f1b3b2ea778", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jre-17.0.6-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.6-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jre-17.0.6-ea.1_windows-x64_bin.msi", + "checksum": "1e865a1d9a40725a1bbd0abf677aacc2982f3f8ec2946ced806c82031bc6041e" + }, + "zip": { + "name": "sapmachine-jre-17.0.6-ea.1_windows-x64_bin.zip", + "checksum": "c82cb543b2ce446c50fa4b6d2e10f4279f45b68e57c0f3e61cb03f9cc13429bb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.6%2B1/sapmachine-jre-17.0.6-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "17.0.5": { + "sapmachine-17.0.5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.5", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5_linux-aarch64_bin.tar.gz", + "checksum": "c0784ea43df77d4edf624e1f8e62987095e93ce86b1b497026b6a47011d56fa7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jdk-17.0.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5_linux-ppc64le_bin.tar.gz", + "checksum": "a7069bc8907e4dbce866efb7aff0cc90b30552b8f0b08797f461d5599d2cdc35", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jdk-17.0.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5_linux-x64_bin.tar.gz", + "checksum": "910de7a2a045f6df52ef96573f2ab83fe9375417651b94a7c96cc30487d4357a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jdk-17.0.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-beta_linux-x64-musl_bin.tar.gz", + "checksum": "6d9cf8a8957efcd8da139a37d1a91fef4b2e4dac43449794168358b5d3ed7917", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jdk-17.0.5-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jdk-17.0.5_macos-aarch64_bin.dmg", + "checksum": "69b0e647e8d3d0e0de84e5169a305b36b6059cfd77806dfabcbac5364ceccd76" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5_macos-aarch64_bin.tar.gz", + "checksum": "62325dd21f25bdb403e04dc3661241ac485d79444953aaeaf354b1be48040f93", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jdk-17.0.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jdk-17.0.5_macos-x64_bin.dmg", + "checksum": "392f565a07eebb20f3483b7c5f0511224abffac6c0333d6689e74b6e7289a473" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5_macos-x64_bin.tar.gz", + "checksum": "ced97fe7eef75beede2a70e59263353c3862b05d20153d2381bd7e9fa3d3ebff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jdk-17.0.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jdk-17.0.5_windows-x64_bin.msi", + "checksum": "d019d731661bfab909ad0cc1fc5119f243f65ded63f2b0d7d15afc9eb587f56e" + }, + "zip": { + "name": "sapmachine-jdk-17.0.5_windows-x64_bin.zip", + "checksum": "482ad4dc9a85d1a57e157f3d1ed60c9e8be23bea3b5e3ffd7190307daa74d690", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jdk-17.0.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5_linux-aarch64_bin.tar.gz", + "checksum": "7d28c07648b89798191f2bca3817491b9e5a88af674ca8298d57d803e5ef822e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jre-17.0.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5_linux-ppc64le_bin.tar.gz", + "checksum": "9aebd47cfa43f90f85598831517a34c9b5b623279e3f6dd44f7885be0580d088", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jre-17.0.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5_linux-x64_bin.tar.gz", + "checksum": "016bf2b709fb21c516264d975da041338e7da36a0bc17a1cf0543f3dec2c6940", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jre-17.0.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-beta_linux-x64-musl_bin.tar.gz", + "checksum": "f7c3369a595bb43b49263d94b7097e03128f1c473a73dd56ef42ada69e6829d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jre-17.0.5-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jre-17.0.5_macos-aarch64_bin.dmg", + "checksum": "5e992c3de79ef01da4f8f16e1ac6346ed686ea69afdbaabc62716e7d4c6b6c88" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5_macos-aarch64_bin.tar.gz", + "checksum": "b1e23c1d911ae78ac4184d0b360392ecab70046dba0f270ed3a548b208d09c03", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jre-17.0.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jre-17.0.5_macos-x64_bin.dmg", + "checksum": "eb1c0952bb88cc6c75a40183f1bf0e30776776e1247004399e3a51ec775e7daf" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5_macos-x64_bin.tar.gz", + "checksum": "ceecae5c77bb1a56c1cd926aa918581af2db08785970228bcb873b7149e42d69", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jre-17.0.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jre-17.0.5_windows-x64_bin.msi", + "checksum": "5835852da062bdb950f2c5245a32fcd69d8c50e11fdd8c735c2af6684e045bc7" + }, + "zip": { + "name": "sapmachine-jre-17.0.5_windows-x64_bin.zip", + "checksum": "d18796848ce78e41cc2242ca3664620ef41b4571fa6104272adbbc8e21429a57", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5/sapmachine-jre-17.0.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.5+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.5%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "3408b6f72036ac92332949a408988585dccde6a06624e29604eff743979a4e84", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jdk-17.0.5-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "104e6d936942222cbefd9404cc4f1242414cbf7ddbd730bea99944cd59b730fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jdk-17.0.5-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.8_linux-x64_bin.tar.gz", + "checksum": "853a598c6705ffc872c4d23c950df9bb450036b17202b3639e5dd3424bd66a03", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jdk-17.0.5-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-eabeta.8_linux-x64-musl_bin.tar.gz", + "checksum": "4eeaa922044044adec8523a911c5b690bd33e8350ca14628462003c41ee889a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jdk-17.0.5-eabeta.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jdk-17.0.5-ea.8_macos-aarch64_bin.dmg", + "checksum": "59bb299dcbd1bc1f5d0b2faeec2653fe891f8ad3b06493f0102c748281ad4427" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "2db96f3df4d1615386be5e52b3de02c9ba446f2e163a0432b3ce10faf9627bc1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jdk-17.0.5-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jdk-17.0.5-ea.8_macos-x64_bin.dmg", + "checksum": "905a00085f3ef9fdeca2bf66ac84585d219a7c9a768c15b46e5d21a1c8e1694a" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.8_macos-x64_bin.tar.gz", + "checksum": "5a61b8c2b6b80fae2e6746162f5d9c6c97e4a6fe053044d81c9ff8473f2899e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jdk-17.0.5-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.5-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jdk-17.0.5-ea.8_windows-x64_bin.msi", + "checksum": "bb69abda9cd1ccfdebd9a729d254a97fd9044d33b1b2cf9f9e71410d7c37f0d0" + }, + "zip": { + "name": "sapmachine-jdk-17.0.5-ea.8_windows-x64_bin.zip", + "checksum": "e278530310fdb8d787fb90bf535a355f1b9921adf9855896086a2145ceaf3c80", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jdk-17.0.5-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "037d94ee50508660df617c9b5401ff6ca305eec43239a8c197a944d841a2cae3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jre-17.0.5-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "6e3a10d0d6033ff24c080db2305ba600efe0b126bffdbd34226e7a77483b3df9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jre-17.0.5-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.8_linux-x64_bin.tar.gz", + "checksum": "349e7a1094724fa41763ccb2ebca4c4b2ec20021752b123e9b57ad67551e34d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jre-17.0.5-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-eabeta.8_linux-x64-musl_bin.tar.gz", + "checksum": "388439e8c3fc33c19b0c6b6256724fced9bf19a49335a896b25fd1051500fa51", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jre-17.0.5-eabeta.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jre-17.0.5-ea.8_macos-aarch64_bin.dmg", + "checksum": "8324583b4a29fae0f675d879e82cd559c3a069f0c33de74c65e3d7f5f9e3f1a1" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "39edbb2ddd952284c974bff5148cf4fb309913d4cd8159d988ed2f82ec792cf0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jre-17.0.5-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jre-17.0.5-ea.8_macos-x64_bin.dmg", + "checksum": "d681433d17d7b12dc17d60649a43e92fb6614b351ad88031d4d0120f244dc51c" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.8_macos-x64_bin.tar.gz", + "checksum": "fdc5a3647a3b0a7facc49e6d1054999fcdca3cae8a97130ddfeb67b6de4ac3ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jre-17.0.5-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.5-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jre-17.0.5-ea.8_windows-x64_bin.msi", + "checksum": "a5ab394752d0f8aec6fbda63853d8897bad50dd6627c8f1ddfb41401d45c76e2" + }, + "zip": { + "name": "sapmachine-jre-17.0.5-ea.8_windows-x64_bin.zip", + "checksum": "6997234e1e20a5853ede6db5d49944c622a28007e5aee5b152a1b37a44f3a4bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B8/sapmachine-jre-17.0.5-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.5+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.5%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "c0652c90d0ba879f2f3622c20bcb26b61bb320fa9e4f5394a3254fbbe11edcf7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jdk-17.0.5-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "cb332eb331c4febffdbec3487541f65454285042033b53d2c9ebfce5386ad080", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jdk-17.0.5-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.7_linux-x64_bin.tar.gz", + "checksum": "78bd4c2b8e043cd28a0bbec5085e684e22233fe4c8576efc5185a51295a4282f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jdk-17.0.5-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-eabeta.7_linux-x64-musl_bin.tar.gz", + "checksum": "dd54019c754935036102d2e4aaa0d9888c7e3e4eb42822052aa7e021f99ebe40", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jdk-17.0.5-eabeta.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jdk-17.0.5-ea.7_macos-aarch64_bin.dmg", + "checksum": "ff8a030d3c3ea023bf2a10e087b3edde871c5cd20c3669501085776c0651fbdc" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "7edf0728dadd26aef1dd6dfc6318f22283a97349196aea72707780ebbcf77134", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jdk-17.0.5-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jdk-17.0.5-ea.7_macos-x64_bin.dmg", + "checksum": "4fc5e027a5c5f181c45fc3e2331f24feb71e25714c35a182753383d90a6ccec3" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.7_macos-x64_bin.tar.gz", + "checksum": "f1bb5ec7b9d0cc39fb0864f616d5b17c1996492839a386f544e40f6edfad90b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jdk-17.0.5-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.5-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jdk-17.0.5-ea.7_windows-x64_bin.msi", + "checksum": "b300f7109bd0f2ba30798ac229f5c6bc0b4b505cc5071c4ccfb9d97b350be620" + }, + "zip": { + "name": "sapmachine-jdk-17.0.5-ea.7_windows-x64_bin.zip", + "checksum": "938fa53eab82c2cc243131ea86424901b83951d8ef6321f062b0291a4585878d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jdk-17.0.5-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "2efddcd316f66c28fbc48ba7f26453fb71abdf1c6c9856d7c808550a19c05e3c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jre-17.0.5-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "b60fffe166ddd5085b7c9966f01415308ef21c59bcb36457334d097652d39f0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jre-17.0.5-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.7_linux-x64_bin.tar.gz", + "checksum": "9271a6ff654f50424d936e77e79cb4469a502e8cd1e3151dcae493a89499d1a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jre-17.0.5-ea.7_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-eabeta.7_linux-x64-musl_bin.tar.gz", + "checksum": "2ab27adbe7b2ad11799dcf100acb9d8d498776b24b1f2894ae5ff419f7779d71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jre-17.0.5-eabeta.7_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jre-17.0.5-ea.7_macos-aarch64_bin.dmg", + "checksum": "a3b55ba1dfc4511279649dd525c75bc16486b207b5949b6ea580e13088cd1ce8" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "2ac59903620230d3e3241e28dc32981daded7afbcc4b5f29d7cf73ead2c71c13", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jre-17.0.5-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jre-17.0.5-ea.7_macos-x64_bin.dmg", + "checksum": "459d6c6d6f1e82900f3f34dd00fd62c54fb47ddd1aecda3b43a6664744629e83" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.7_macos-x64_bin.tar.gz", + "checksum": "bf9ee9de5233f8d2d3b00947ab6a62a3038a69355a99d4a5907d01aa22862cdf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jre-17.0.5-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.5-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jre-17.0.5-ea.7_windows-x64_bin.msi", + "checksum": "eea4a07bb3f28a2192a87797b13bf7777ae0a0058a96923316c265f261401132" + }, + "zip": { + "name": "sapmachine-jre-17.0.5-ea.7_windows-x64_bin.zip", + "checksum": "1569ef5c2639792f0376ed3f9740f4d032d8c960fec9cdecc3c04de7df6fe046", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B7/sapmachine-jre-17.0.5-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.5+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.5%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "d11a8bbd11998096ce6f3f6cefb2434a446f925354920d014a37cd64e9730a6c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jdk-17.0.5-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "4bf1bdfc2a2bd725ecd492aa8948670f70d739491eee222a140b3b6b0f997507", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jdk-17.0.5-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.6_linux-x64_bin.tar.gz", + "checksum": "9c3fc20693b0889369365e1e1d34db5102b92a0b8d4a8b5a53902f2fd1829d02", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jdk-17.0.5-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-eabeta.6_linux-x64-musl_bin.tar.gz", + "checksum": "816947235c3755eb926dad9dda4dd17fd30e82f97f1b54ebb1e1473ecd339013", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jdk-17.0.5-eabeta.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jdk-17.0.5-ea.6_macos-aarch64_bin.dmg", + "checksum": "6e8012eb9ca78da00c56b2aaf41f3dae78bcdba44a8826bdfa32c6bab234910e" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "ea4ced79b352f7bcbcf204885404cb5640d1d67bb4dc8d29716b248c9405ebcd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jdk-17.0.5-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jdk-17.0.5-ea.6_macos-x64_bin.dmg", + "checksum": "36f63cb20c57b595e1bf6419529f8fbcf71ee7a9dff3a67adbf25be6d26d75f5" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.6_macos-x64_bin.tar.gz", + "checksum": "f8e8b2ed65cd2f064a21fda66158fac6bc88c0b837419d5ba576d7a28d1556f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jdk-17.0.5-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.5-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jdk-17.0.5-ea.6_windows-x64_bin.msi", + "checksum": "d3f11dfddcbefd9a2ed7167dbe634536c77d6cd720122286e8eb3df4803b747d" + }, + "zip": { + "name": "sapmachine-jdk-17.0.5-ea.6_windows-x64_bin.zip", + "checksum": "85bed86e829c513d7416ee8f896e4fab9588446f9745b5efb488e4a17bae7593", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jdk-17.0.5-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "732827c9891aa9e868b871ffa5e6925668b65013e80dbc5e3f751ca2ccbbb8f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jre-17.0.5-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "b60f6ef5c02f620af66b71de073b388b8564ec1b55ccb82712938cf59a84db82", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jre-17.0.5-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.6_linux-x64_bin.tar.gz", + "checksum": "c5b6b0dbd8dd3cc1c479b78607a65327b30076348a8f5b27398adf151425e54c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jre-17.0.5-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-eabeta.6_linux-x64-musl_bin.tar.gz", + "checksum": "954647083ae7034995901d60af54410bf8403e422bc863dc8abba5cd580cbdf0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jre-17.0.5-eabeta.6_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jre-17.0.5-ea.6_macos-aarch64_bin.dmg", + "checksum": "482b0038f93bc8dab5aa303f04779bd267a3a39b2401e258fa37a290b3a24520" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "70afca6b8cb785510ddf2add138266425cc47089be9af668c1ea8c83da386a97", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jre-17.0.5-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jre-17.0.5-ea.6_macos-x64_bin.dmg", + "checksum": "d3e01e739d3e3142f7b5cc7487af331007368c9c8289f4bc8153c4c8c4efe2a8" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.6_macos-x64_bin.tar.gz", + "checksum": "d99f2eb140f022688f16517be32b99ecdb2e3812aa03eebbd54c9727628d4eb9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jre-17.0.5-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.5-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jre-17.0.5-ea.6_windows-x64_bin.msi", + "checksum": "d269fb4ec7b8acfb389f4aa7fee2f1f866ce8fe22482d96a4f08e08ff2a73349" + }, + "zip": { + "name": "sapmachine-jre-17.0.5-ea.6_windows-x64_bin.zip", + "checksum": "7b450d13247aebbbe3003f49800e663c4d2011da6acde913e17bd40511ebc1df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B6/sapmachine-jre-17.0.5-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.5+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.5%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "ab92c07df81d5c6c50c718c00965dabb28051faade6bb4aa134ca8d4e85c6a19", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jdk-17.0.5-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "b3ebb1e44924be4c492d7e11c9ef9340cd09974b4e29da9c5e194e6e3f2b65fc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jdk-17.0.5-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.5_linux-x64_bin.tar.gz", + "checksum": "09f349d30c36fa681cea064e9b486c7c632cdd8dc70ca87ec7489b725f00025b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jdk-17.0.5-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-eabeta.5_linux-x64-musl_bin.tar.gz", + "checksum": "118f497152f9e34f4eda10cb6739b127747b0b1566ba2023d518702fcfb39b86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jdk-17.0.5-eabeta.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jdk-17.0.5-ea.5_macos-aarch64_bin.dmg", + "checksum": "803c71c1a694954655a93d4a83be727022299d087daf035d4961c2b5e1a7e8e8" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "fe8df7938ba61bb30ab1ccb999920245ed971816030b334c466a3430af956001", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jdk-17.0.5-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jdk-17.0.5-ea.5_macos-x64_bin.dmg", + "checksum": "9d31fabd3bf77f5731c63fdf76e9d859aab6fcd19e227113373d3903be858236" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.5_macos-x64_bin.tar.gz", + "checksum": "19c6231c7a665d8a99c1799496bd03fd98c3a2306b2a56f77328f72a3e7908c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jdk-17.0.5-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.5-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jdk-17.0.5-ea.5_windows-x64_bin.msi", + "checksum": "0bd5a6131eb21ee2b808d6047e9ef785d457eefafee56de2f3b0a049d4b67d1e" + }, + "zip": { + "name": "sapmachine-jdk-17.0.5-ea.5_windows-x64_bin.zip", + "checksum": "e978733ec35997e09365be73fca1979117ad1328aea99682c7a105188cf562a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jdk-17.0.5-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "050cb29c31716d5462584d4af1f6292ca137a490ac30328485560f5809982b65", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jre-17.0.5-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "b05b1f0d2f21927fefb5809ea829f964a38ffa02bf7cb114657193b763b666df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jre-17.0.5-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.5_linux-x64_bin.tar.gz", + "checksum": "39bed37e6b9566603862218e825ef6a20031fc08c0fb769e2fb80e7fe9cc895d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jre-17.0.5-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-eabeta.5_linux-x64-musl_bin.tar.gz", + "checksum": "39ad0cd1a83d45c95d2f2dfe94b877a8eac354be18647031287b1ac1c1642d3f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jre-17.0.5-eabeta.5_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jre-17.0.5-ea.5_macos-aarch64_bin.dmg", + "checksum": "7d7f84f556b61069dd016e1399ed8945a4ac8631de6d911331a7efc4e7d0fd08" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "094bb1e092ddf69a160df689be2020fefea9caf70894e863291da9e51f5dd62f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jre-17.0.5-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jre-17.0.5-ea.5_macos-x64_bin.dmg", + "checksum": "9de9e90646dc47b6292ce8def07236ab27e3cd811efd96db885b230c46061b98" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.5_macos-x64_bin.tar.gz", + "checksum": "ba6e8df4c8155e6cfeafbbaceea8f2b1177a3d2faf914ac3a2a3f334dae70061", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jre-17.0.5-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.5-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jre-17.0.5-ea.5_windows-x64_bin.msi", + "checksum": "c78628f0c45cea5efb4a798fabe4fdf3a32a6883f5ec166a75b5420bb68bd6cf" + }, + "zip": { + "name": "sapmachine-jre-17.0.5-ea.5_windows-x64_bin.zip", + "checksum": "4b0158313d4cc96f8a264aee0f153319263d4cd062990aca134ee62cddb07e25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B5/sapmachine-jre-17.0.5-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.5+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.5%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "d636f9b26f123d3402b6a6b219ca6b35111acb0487fe4703c2bbae6f4e254d94", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jdk-17.0.5-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "df288092b1e9ae916f77504ad3dd2ae8e3ac42d47982bb770c78f7fa5e7eed15", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jdk-17.0.5-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.4_linux-x64_bin.tar.gz", + "checksum": "f3276a5a4e0518b78fa2e05b014e69883f1ae0a4c03414170d0be4fd9dea72a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jdk-17.0.5-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-eabeta.4_linux-x64-musl_bin.tar.gz", + "checksum": "128b8bc794a3584c1c2e71bba976d9ae4f4b9f9bb6beec9afc7c81eafabb0c7b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jdk-17.0.5-eabeta.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jdk-17.0.5-ea.4_macos-aarch64_bin.dmg", + "checksum": "49920de7a6a688c05dab7e36952f19260ce4b7b90e532be35d002dfd7cf2e85c" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "8194a2bd2f9a309459526b8b6d9f56a62b409424eacb7203b8ea86825a69629b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jdk-17.0.5-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jdk-17.0.5-ea.4_macos-x64_bin.dmg", + "checksum": "b142994758215da129e93853044beb238b5fd7c67be5c37e1ea6253d6498e828" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.4_macos-x64_bin.tar.gz", + "checksum": "59de6a46d659aed73f2748c1dbbd1f7e0df4e6879a089752211596ea4f0c770b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jdk-17.0.5-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.5-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jdk-17.0.5-ea.4_windows-x64_bin.msi", + "checksum": "1b88a896e7633e7f83a03a7fd14300c4a41b988e574b42d870490ffc5beb5eb0" + }, + "zip": { + "name": "sapmachine-jdk-17.0.5-ea.4_windows-x64_bin.zip", + "checksum": "159192a31c1c2cae99a752fab1b647393c37309f3b201520c48089d5f7f2f668", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jdk-17.0.5-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "8ea6b604c694ad8ff62f23585df70b8788a27ed0c0cf97b35b3df538dfb014f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jre-17.0.5-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "52a84d96f2474fa97b2a12b8a7ab4d33db2c56ee7c221354dfe8e59c0bfd23cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jre-17.0.5-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.4_linux-x64_bin.tar.gz", + "checksum": "9e151a132e5d926d651f8675efe8b7f0444c0ebaf52f1a84f57da5283a425ef0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jre-17.0.5-ea.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-eabeta.4_linux-x64-musl_bin.tar.gz", + "checksum": "8b2f039ff38d604a87fa33f01f2431382dfd6d1d10d67571f57377be829aacc5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jre-17.0.5-eabeta.4_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jre-17.0.5-ea.4_macos-aarch64_bin.dmg", + "checksum": "5c939aa760570a65284906ca79c01ad7e62abcbcc683d13d201e9d51ae0645fc" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "04b86a9d824930b88eefa5152cd1b4ac498a2ba257ec8d964a7b9091d50e194c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jre-17.0.5-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jre-17.0.5-ea.4_macos-x64_bin.dmg", + "checksum": "be75ab776660dd05257a9aedf9cb8604f2064aff419e9d9f3aedaee60ff1d04f" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.4_macos-x64_bin.tar.gz", + "checksum": "25230bcdb75670169efdee6220cfe0af5eab55ee37ae46eccf28544e02359391", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jre-17.0.5-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.5-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jre-17.0.5-ea.4_windows-x64_bin.msi", + "checksum": "45f289cdcd16c60abd162ef843b333035bb8f421b9ebf97ab3119f4b9704ce34" + }, + "zip": { + "name": "sapmachine-jre-17.0.5-ea.4_windows-x64_bin.zip", + "checksum": "19884cb153ef1dfaa6c148fda5e1c31da3f661621f30e0a74af34e1753d0cfdd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B4/sapmachine-jre-17.0.5-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.5+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.5%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "34a16ee0e606fddc5919b61356b1dd9f317392440e10f437a16ea01f7c9f0ddb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jdk-17.0.5-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "2b244be6304c79d175ed63ae40031d9eff3946e5b791ce0fc2f4b949aa37321d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jdk-17.0.5-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.3_linux-x64_bin.tar.gz", + "checksum": "638bdd02d71846e5cbc982016aa38e301f4742a2d09ee17224370d97b71ec2ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jdk-17.0.5-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jdk-17.0.5-ea.3_macos-aarch64_bin.dmg", + "checksum": "7c1f0815e1d27c83f1b64069b314912fc78b0d80db3144873bdcf492ece0c24d" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "90c3f34978c678b000f1c9ec80a4c0c3a7a6645fe9c43c93eb0a20e4aaf7d60e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jdk-17.0.5-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jdk-17.0.5-ea.3_macos-x64_bin.dmg", + "checksum": "a4a57372148e6155d191ef1a24a2438f4ca689efc7dfcc58d8f86e2fbcdae19a" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.3_macos-x64_bin.tar.gz", + "checksum": "db72591e8d5200a891b8e91bc2e160ab071dc14bbb5429b0f1d6ef68d8624dab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jdk-17.0.5-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.5-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jdk-17.0.5-ea.3_windows-x64_bin.msi", + "checksum": "ce7e0a65cd973b8a1e7f71ea30e63f7020e985f88dce3fb06caee64e4f3c18dc" + }, + "zip": { + "name": "sapmachine-jdk-17.0.5-ea.3_windows-x64_bin.zip", + "checksum": "d64c1793136474d90acb6a0beb1f8f4e94ea3dab451bc7230eea84240c243c97", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jdk-17.0.5-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "28194e7ba2496bf515518e7f655f4b2d17544b94f09f350c7fdbbc825d5a6790", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jre-17.0.5-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "34c96417468ee9ad2fd6b1f8c68701e230915f8a6b171bcde884e9d63e33c4c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jre-17.0.5-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.3_linux-x64_bin.tar.gz", + "checksum": "5dba59af890c1743cd3f71ed4b2c1a1a924d471f52910c00453c476dfe32967d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jre-17.0.5-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jre-17.0.5-ea.3_macos-aarch64_bin.dmg", + "checksum": "3bc342b6cebd1f36d11a137c9b565a27b0afd6b29a603de5e0f1d515d0d73792" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "db50a885612717e110cfa37781257214e5b6e351fc0a08d9cd89e7b7cd42670e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jre-17.0.5-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jre-17.0.5-ea.3_macos-x64_bin.dmg", + "checksum": "278a053835cdadb861ca08a8476e42cbab8e4c7023c3cf16b03bb6b6836abe89" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.3_macos-x64_bin.tar.gz", + "checksum": "7a965c254c7b43a677709c883c5b6d9bfebc45ad453498487cd06eacb7e2960a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jre-17.0.5-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.5-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jre-17.0.5-ea.3_windows-x64_bin.msi", + "checksum": "885938edf20ad53ca02baaf93e8884e58c6e28ae48b6c23a6235d2d3a94e192f" + }, + "zip": { + "name": "sapmachine-jre-17.0.5-ea.3_windows-x64_bin.zip", + "checksum": "f27f8084adbcaa5a63d1bdf4654ca8971a7e728b903569944c44b8a6e2facd0a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B3/sapmachine-jre-17.0.5-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.5+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.5%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "e9b62ba9f288ce3c536056bdef43e657a66416b5608b0840954c1c586e8c4de2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jdk-17.0.5-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "d432026489c0d83f099c2217b6d9213f3a25c280055fe04250be4ae7694ca93c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jdk-17.0.5-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.2_linux-x64_bin.tar.gz", + "checksum": "856558ed13f5bd42fb549ea20f5a6439aa14ef79f36c88cd32597d170f0267a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jdk-17.0.5-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jdk-17.0.5-ea.2_macos-aarch64_bin.dmg", + "checksum": "371c80df0b993a44f90d7134b82ff911ede714254e352dcc750449fd31e34620" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "633169eafb63fd9a7c51c9ca8e7f966eb8cc35b2169d4103871cfab1f13fa79f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jdk-17.0.5-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jdk-17.0.5-ea.2_macos-x64_bin.dmg", + "checksum": "3b5be20580e959f6b23e34bc49b6531e653217536c0a3aeb05f4026e426dd324" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.2_macos-x64_bin.tar.gz", + "checksum": "cb3920b8d886f7aed59b3463003cf29c27d09a327882fdb2edc19afa2d2aecbe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jdk-17.0.5-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.5-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jdk-17.0.5-ea.2_windows-x64_bin.msi", + "checksum": "bd6971d6a6a8c43744bc4848681eb397f0532ff61e00035d20547beda2a83bc9" + }, + "zip": { + "name": "sapmachine-jdk-17.0.5-ea.2_windows-x64_bin.zip", + "checksum": "375e2fd4974189a1f9e512080606bf82043e03f775566f1a4c0f959670e531c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jdk-17.0.5-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "81c1845ef1ffe8cff54913157c62eb799952d89a7b386c8be44345e21e223154", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jre-17.0.5-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "559954fd27d25dd23758ba9d98dafa1641d9853949182287a2afceb5052b1bc5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jre-17.0.5-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.2_linux-x64_bin.tar.gz", + "checksum": "31aefff5bb83e3746b1105b22ddd7936ec68156f174bc7897be2cf131c79bef9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jre-17.0.5-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jre-17.0.5-ea.2_macos-aarch64_bin.dmg", + "checksum": "41ac4e96d0d66aa5e8291edff3fb0a4623ceb07953b3af1da262a40617937c0c" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "b833ebb4c707bf8364486a801d5691b058c0bbb16fc6999de08a10d4361cfe7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jre-17.0.5-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jre-17.0.5-ea.2_macos-x64_bin.dmg", + "checksum": "3d02e842f4bb0c7f9c1be925f45e56c1662f7f41a3875ea7b2a0c8ba291ba185" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.2_macos-x64_bin.tar.gz", + "checksum": "459f284248bb7f56afbf3b574ebbf320362b1cd3aa42752ee4d1a19bb9dda277", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jre-17.0.5-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.5-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jre-17.0.5-ea.2_windows-x64_bin.msi", + "checksum": "21a3c959e8129dff71f42132c4fc3e5bb755e7e6be1148b4e203a58cec744db2" + }, + "zip": { + "name": "sapmachine-jre-17.0.5-ea.2_windows-x64_bin.zip", + "checksum": "26f9cb8f2380539286b7e6b107b6aa2af4f10c1714d5c79e76392fa6e90f4282", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B2/sapmachine-jre-17.0.5-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.5+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.5%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "a280c0931a809119920ffc28fa0a76a131ba5bda6cbaea902fe42f6fee477abf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jdk-17.0.5-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "079667df1024dab0a722de0f629dbe8d96c1d90f9a097afbd4c0b19f16e68c8d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jdk-17.0.5-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.1_linux-x64_bin.tar.gz", + "checksum": "1417fa4d570bfda2ef3226fd39bdd1d1254ecaa99eee541a00670cc4295c4ae6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jdk-17.0.5-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jdk-17.0.5-ea.1_macos-aarch64_bin.dmg", + "checksum": "2e45aa68894c6d1fc5c7788fdf4623814a01534c18d3e49340e2997e1c8fdcea" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "0df03063a4ae3943f78a970844285c7eadb315d9772c1aa8701d4d2cb06cde51", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jdk-17.0.5-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.5-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jdk-17.0.5-ea.1_macos-x64_bin.dmg", + "checksum": "6b557cd08daadaa4df66363353bc24920c4f8a9902f53e5ca783e62a371b4e8a" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.5-ea.1_macos-x64_bin.tar.gz", + "checksum": "6ae32a68ee68a5c09724dcb5a62ed90ed9cbb6931565286d650cc10a45c91c9f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jdk-17.0.5-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.5-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jdk-17.0.5-ea.1_windows-x64_bin.msi", + "checksum": "ac9402b68e77ced365ecf9c0f5b472b790ce09db70f32616e557364b63f1f06a" + }, + "zip": { + "name": "sapmachine-jdk-17.0.5-ea.1_windows-x64_bin.zip", + "checksum": "dadcb4c70e4d899740a46b3d212eeb598314c5e0cebd08c827d03bb6671dda16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jdk-17.0.5-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "c65439a7766405d7ac770e432ec4c43da7d9b05dbb4c35f7c13344a1d151b953", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jre-17.0.5-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "e55162d255a31b9ffc9b4bec96d2a39be4e79734f3dc8a1277fafcee8248bded", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jre-17.0.5-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.1_linux-x64_bin.tar.gz", + "checksum": "2670eb22a19c69676cf7ee2c3472158e0b7fb009eb4064f1b6a2856b0b1750a7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jre-17.0.5-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jre-17.0.5-ea.1_macos-aarch64_bin.dmg", + "checksum": "642826e69a108cfadcd7740e9742fa7b6b4d88d92f47e43cc77d5e96ea2755e7" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "d3fe4b40950504fd232eee63b1878ec2a4365335bc2ab2ebbb6330dc2303e775", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jre-17.0.5-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.5-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jre-17.0.5-ea.1_macos-x64_bin.dmg", + "checksum": "28032133b26d4ac893e8289645fa7c6847071800593f5a220107f66f78616623" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.5-ea.1_macos-x64_bin.tar.gz", + "checksum": "56142f7ef743255d1e2829a5a70eb9d5f1a94ee437893678a884368d4fbbc78f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jre-17.0.5-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.5-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jre-17.0.5-ea.1_windows-x64_bin.msi", + "checksum": "a4635313a380d1ed8c0a6381ddd9feb3ef05cd06034de42403cf7c356641100a" + }, + "zip": { + "name": "sapmachine-jre-17.0.5-ea.1_windows-x64_bin.zip", + "checksum": "db44ab09d6136f1284ebc8c97482ce8620e1e68a143f0a6c376bbdd710e594d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.5%2B1/sapmachine-jre-17.0.5-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "17.0.4.1": { + "sapmachine-17.0.4.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.4.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4.1_linux-aarch64_bin.tar.gz", + "checksum": "ce74118ddf73310935e96c52c4590848c7fd80230132b5d7b40cbdf51cd9893b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jdk-17.0.4.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4.1_linux-ppc64le_bin.tar.gz", + "checksum": "9c2846fedbf169b48ee9eaf79b5e3a06c4771e360529262e5a0446c7adb3adfc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jdk-17.0.4.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4.1_linux-x64_bin.tar.gz", + "checksum": "f3325f56ed91d6ba840d7ef84b928be948b8f970f037fe4cfbb6194f96e51e21", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jdk-17.0.4.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4.1-beta_linux-x64-musl_bin.tar.gz", + "checksum": "e260f193f51b97c50fd62da1d45ad98ebfc36ec3e40512fcc6199c6e50ea1923", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jdk-17.0.4.1-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jdk-17.0.4.1_macos-aarch64_bin.dmg", + "checksum": "519a64b209e61286757f6c218370f008230ebe712e6e2c7fca67a82c80738f35" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4.1_macos-aarch64_bin.tar.gz", + "checksum": "0f77e79f2314243c736170f90527418f8dcad404e3a8b7c991052f1d6f53d9f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jdk-17.0.4.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jdk-17.0.4.1_macos-x64_bin.dmg", + "checksum": "5f12f032fbb50bb269528d0d5adbf3bbc9a66152823808467c2dcb984c119b34" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4.1_macos-x64_bin.tar.gz", + "checksum": "9650dfe7f85edf28bf01f5d1243e60c2b351e4434e6f0207664534af8e220f1c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jdk-17.0.4.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.4.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jdk-17.0.4.1_windows-x64_bin.msi", + "checksum": "15a5c0ef268e4c979311294abe95c996560f1cb4c56f15a14ad6bb93a48f035e" + }, + "zip": { + "name": "sapmachine-jdk-17.0.4.1_windows-x64_bin.zip", + "checksum": "1ff66ed99105593e265277fba2ddc6879c3c5912f30ccf13e81cbdb972410792", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jdk-17.0.4.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4.1_linux-aarch64_bin.tar.gz", + "checksum": "8ddc8e0c3929e651e87fc4ef63c930d241e60687ca50814404dcea8ea24a8e36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jre-17.0.4.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4.1_linux-ppc64le_bin.tar.gz", + "checksum": "21e59f327a6cb02cecd8b7fdef059d7de04cf842fda50a945a83fa2c3e54dd0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jre-17.0.4.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4.1_linux-x64_bin.tar.gz", + "checksum": "415a7ecc8dde01265da0c50ea50b7e24fba8d922f007c09abb0d2b9ba5421892", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jre-17.0.4.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4.1-beta_linux-x64-musl_bin.tar.gz", + "checksum": "8d132ae973c84daa1e11a956aa50c58153548cfbc99caede1c269925a13429c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jre-17.0.4.1-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.4.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jre-17.0.4.1_macos-aarch64_bin.dmg", + "checksum": "b3086339711663f4a713f7f97318bce684514b1e1c60e5901c9d6616f4ee53ab" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4.1_macos-aarch64_bin.tar.gz", + "checksum": "f795446b229e1888ff9ef16f848cdbbe1d6ca325db8d9c9ee83c38dc5c3ebe1c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jre-17.0.4.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.4.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jre-17.0.4.1_macos-x64_bin.dmg", + "checksum": "e6e52d88189f36671bc5312ca73031ded8fd2d6f72073f807332a7c909f67de3" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4.1_macos-x64_bin.tar.gz", + "checksum": "0f94321d4a9e8766cd4d990800c7d58925da318518d4c52df7ab8f755e3ba607", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jre-17.0.4.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.4.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jre-17.0.4.1_windows-x64_bin.msi", + "checksum": "7e516a32ca890b6488923f361fd048a44d1e58d8ea5963093edf47dd75d0daf8" + }, + "zip": { + "name": "sapmachine-jre-17.0.4.1_windows-x64_bin.zip", + "checksum": "c91d9c94c62d474beb719e88d499d87ebbaa8aa508764b19126c7538f87ea02d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jre-17.0.4.1_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.4.1+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.4.1%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4.1-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "d888c91af27f5033604ca0c61c199aabe9e9f24c1794503e1183ff3f4f79049f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jdk-17.0.4.1-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "ccd8f96866414448d2ca97e52e94025514581b04047227ab0193fefc6f48947a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jdk-17.0.4.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "ca80bb71ab9316affbdcf4e0b91d75f38019384a72eb60f6703d70cb5ff8ca35", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jdk-17.0.4.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4.1-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "a05b6de36295def34cb03a37feb1dc9eff5cb380c2d60ed27ddf48a1468b4a56", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jdk-17.0.4.1-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4.1-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jdk-17.0.4.1-ea.1_macos-aarch64_bin.dmg", + "checksum": "9d9088bb50f89392038ddfe14a48193c252d87123a20a9f9386222417b023657" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4.1-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "c345f96eccddfbb0516f0dcad3a152762a06f203886d5179035ef2e6e3a0a07b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jdk-17.0.4.1-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4.1-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jdk-17.0.4.1-ea.1_macos-x64_bin.dmg", + "checksum": "f1024cf4952d1c0ad49b49786a095e6140228dc23fae0066fe264eda7aaa4af1" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4.1-ea.1_macos-x64_bin.tar.gz", + "checksum": "8241ee7eaa0d2dc69fb7a67652a59df8c06a1f7fbd2c9780ecf7db5dc1ea6a10", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jdk-17.0.4.1-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.4.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jdk-17.0.4.1-ea.1_windows-x64_bin.msi", + "checksum": "52a6d90b34d83af7405390b6d156fc770bbc97e465cf904099730362472bca8f" + }, + "zip": { + "name": "sapmachine-jdk-17.0.4.1-ea.1_windows-x64_bin.zip", + "checksum": "c58d507b6bf09900f90bc1c8dbf213f8cd5b3b65153064f35d8e2523f310c1f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jdk-17.0.4.1-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4.1-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "e4b35fa75081a48b958f63c4efd7af82d79a2bbb66c84c3e34e00cc1b1c8fb21", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jre-17.0.4.1-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "07f34071e799fcca27b77d197dad9fc71b7764c3a79b7698a162e4aff82bca5d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jre-17.0.4.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "9d4d766cbd2b0f9e5a4b6f83d959bfbb2bc724d763b84f258cdf8080f9f010dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jre-17.0.4.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4.1-eabeta.1_linux-x64-musl_bin.tar.gz", + "checksum": "5a0a91d17fc333b94f098518e51ea0362f9d0ed11264f8999dfac2e73f07dd49", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jre-17.0.4.1-eabeta.1_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.4.1-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jre-17.0.4.1-ea.1_macos-aarch64_bin.dmg", + "checksum": "6df88b609610fb9842ad35c65f6120f1d16ba6864fccc333ebd7ab828925f8cb" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4.1-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "6f93c72e917e239f5ec0f0f4b9efaba7b9908b18b8067b05563bee6c4bb4b52e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jre-17.0.4.1-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.4.1-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jre-17.0.4.1-ea.1_macos-x64_bin.dmg", + "checksum": "6673f48071379a96f153ca1e2ff1644b17d3dfac9a4a21e261a46eabba37fed2" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4.1-ea.1_macos-x64_bin.tar.gz", + "checksum": "85c2aec786624b75ec62d1307100237fc3a627990097e713169489f0eb92e1d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jre-17.0.4.1-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.4.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jre-17.0.4.1-ea.1_windows-x64_bin.msi", + "checksum": "0433459631a27895ced1b32891be88b21d21b77cc28b7c73144151456cbe1fa3" + }, + "zip": { + "name": "sapmachine-jre-17.0.4.1-ea.1_windows-x64_bin.zip", + "checksum": "478dad4003e11afe5878d458042114525209301200a25298739c640b71d96563", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1%2B1/sapmachine-jre-17.0.4.1-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "17.0.4": { + "sapmachine-17.0.4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.4", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4_linux-aarch64_bin.tar.gz", + "checksum": "acc52e5d11c0beed82dc05f5c0904096b07b75a921e1671351af8de82978754d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jdk-17.0.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4_linux-ppc64le_bin.tar.gz", + "checksum": "bcd7adc98105f0512c795b5736dc7ca6b0983cc5318bb3e57fa00f41be8803d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jdk-17.0.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4_linux-x64_bin.tar.gz", + "checksum": "b03ad6982a023c1a16be6e8184500935cecbfcafa59a9cc65000c995dce29a0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jdk-17.0.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-beta_linux-x64-musl_bin.tar.gz", + "checksum": "d4aa5af862a1f4517f6f26585491eb3f74ad5603be322c1f6790fdfa2f8efd0c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jdk-17.0.4-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jdk-17.0.4_macos-aarch64_bin.dmg", + "checksum": "659d7fda2de582ec81cf4ff4b0d595d1004bcce6de4aa7dd04237910005fc0e8" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4_macos-aarch64_bin.tar.gz", + "checksum": "e5bb306387a87af2140ece8d4100f8ff1610266ce1417c11e05ca887b38f6480", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jdk-17.0.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jdk-17.0.4_macos-x64_bin.dmg", + "checksum": "f7bb3fff11f5b170169c55983a94cf48359b1290242a00ccfd143233a472ce0b" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4_macos-x64_bin.tar.gz", + "checksum": "78dba5e09788d0e88f45d00fbab37b85c17af22bae7f404f6bae0252ba0b14d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jdk-17.0.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jdk-17.0.4_windows-x64_bin.msi", + "checksum": "cb119809efc211981ae81570a22009d880f4d3ec51fd88ce0f54728786b911dd" + }, + "zip": { + "name": "sapmachine-jdk-17.0.4_windows-x64_bin.zip", + "checksum": "49df6166a30792bd508813e1c622358fba395cab5809add706562dd96a6ae86b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jdk-17.0.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4_linux-aarch64_bin.tar.gz", + "checksum": "df27d46cc69816dde30131e07f7dd660ab89daf1d3ff37c6df4f2d4555b46e94", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jre-17.0.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4_linux-ppc64le_bin.tar.gz", + "checksum": "9cfc6c380802ae73f41937db34600e3274d7049f9366b14bdf72ffd616d2f4f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jre-17.0.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4_linux-x64_bin.tar.gz", + "checksum": "f407ddc88ab090a5500b7d4342e664ff3a71278f9fa02e66f2e8217f79ab7a83", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jre-17.0.4_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-beta_linux-x64-musl_bin.tar.gz", + "checksum": "933adb602e18827dd51b6db8a13b82c3e1b975e8cf5a958f03d50ec50ce87c12", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jre-17.0.4-beta_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jre-17.0.4_macos-aarch64_bin.dmg", + "checksum": "9299c73b699d1ba0df80b399040b17511793c02b16615bf01846fd95fe809afb" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4_macos-aarch64_bin.tar.gz", + "checksum": "a6e3537ecd1a4c5b902060d883c095b774e44a859fedbfbb087331751842d132", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jre-17.0.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jre-17.0.4_macos-x64_bin.dmg", + "checksum": "39ca91a008fed7d10351d52afadd332103dbc3ef97bdd386356ea3f0436373dc" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4_macos-x64_bin.tar.gz", + "checksum": "dcfafa06a162eef3597f8ee879aeed59fd6ad8915157f05322328e66f1f299f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jre-17.0.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jre-17.0.4_windows-x64_bin.msi", + "checksum": "7d29db37820271597f5b2d316c2c025715d2bba09b84f4276d7f4a616249bca1" + }, + "zip": { + "name": "sapmachine-jre-17.0.4_windows-x64_bin.zip", + "checksum": "512f226b8680e26915a1e0d7c8a44297b545edefb8806d685c813bef671623d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4/sapmachine-jre-17.0.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.4+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.4%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "2bf56675cdc232fb0a65402349c7451d5eaa051955c14ca8084f5e6568bc6476", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jdk-17.0.4-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "bd12ac0df11a58d92fbaf6f3860ad971a10b4646f47fa8e0a18a6ff2b4f44bd3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jdk-17.0.4-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.8_linux-x64_bin.tar.gz", + "checksum": "ee61330ff56f0aa08cca322dcb285530c5c56f9a4ebe9e23599f543ea78f3d5a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jdk-17.0.4-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-eabeta.8_linux-x64-musl_bin.tar.gz", + "checksum": "7c42ee4ec8318dcc95c4b97b3acecaaeb31b04d2c259f1c386b0a73999c02fc7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jdk-17.0.4-eabeta.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jdk-17.0.4-ea.8_macos-aarch64_bin.dmg", + "checksum": "f0e26bd5d8240483c46a6050fa6738b0a92c1bbed330d073b55b1c59f5783ef8" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "0acc4d7a42a65b9507fd731b6b93d3cc384894ec2507aed0b45c4f2d2afb0e1f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jdk-17.0.4-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jdk-17.0.4-ea.8_macos-x64_bin.dmg", + "checksum": "0fde9964a8084879dc5f019ac02efd54ad2813ffed92f771a9fdac50466f5f24" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.8_macos-x64_bin.tar.gz", + "checksum": "1a5a302bd54ec693fdec9d9b75ccb0ce4022029dbe3b2ecb7d72d177d42a20aa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jdk-17.0.4-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.4-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jdk-17.0.4-ea.8_windows-x64_bin.msi", + "checksum": "926f18d0655a4581105526144bb9c713439c9de7b6ea90a224a4693f9780e5b1" + }, + "zip": { + "name": "sapmachine-jdk-17.0.4-ea.8_windows-x64_bin.zip", + "checksum": "be0f1d3ec88f54d7505431a289f0c3b449d1dce17e4dbcdfea884caf6bd58880", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jdk-17.0.4-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "6752972f2152ec3a3c829b17872ca76b1577de686a944f58e510c790c4674652", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jre-17.0.4-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "133f475283b0476d7b41a5e78a528c9480c57ea3ec54de352b6bfd0c0c2d463f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jre-17.0.4-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.8_linux-x64_bin.tar.gz", + "checksum": "a4c15ed16067f746391dae95b3d775f88908edcaee92fda24e2c5ecfaff92cf8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jre-17.0.4-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-eabeta.8_linux-x64-musl_bin.tar.gz", + "checksum": "c09ed0b3f2a56b76bf00fd1832b28dd81cac68c73a2415ff90aed2303ab6cc22", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jre-17.0.4-eabeta.8_linux-x64-musl_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jre-17.0.4-ea.8_macos-aarch64_bin.dmg", + "checksum": "7ee431d7ec9122ec9e1188c0d7e80477584632583d50e5e5156637d68ce43b71" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "578d13bde0316586015cf933389b2f37b85bbf9c3d86b85303de2c3b06bc7dd7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jre-17.0.4-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jre-17.0.4-ea.8_macos-x64_bin.dmg", + "checksum": "990191a5a59e85293f9b7f70abb1c2a3956fd8e0ac88b381ae558c72f2f232d4" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.8_macos-x64_bin.tar.gz", + "checksum": "7a126397248204207f5b6c167d390b9cef1924de4a5d4505bb08409e74df4823", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jre-17.0.4-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.4-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jre-17.0.4-ea.8_windows-x64_bin.msi", + "checksum": "c12ad1c30def1e5bf93e403a78a64a05346b656d29b8d216432e5138bb081daf" + }, + "zip": { + "name": "sapmachine-jre-17.0.4-ea.8_windows-x64_bin.zip", + "checksum": "db284e15ba619e5083d904bba497b43813e23b05973d66d4e3827d8363d78166", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B8/sapmachine-jre-17.0.4-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.4+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.4%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "be3a4366a70e45c76c399cae7d92d206cc89193299fd3940047daf0c1f87a058", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jdk-17.0.4-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "bfecfec881b64aef46ba27ca6ab592099db0d72e69a1b48a2d2dfe56c49e185a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jdk-17.0.4-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.7_linux-x64_bin.tar.gz", + "checksum": "f2092a009b158a30a910c3d2135fb5c1a2fadffb3c2aa609b6b0ac03a499e5d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jdk-17.0.4-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jdk-17.0.4-ea.7_macos-aarch64_bin.dmg", + "checksum": "029e0aa82ea16b6db73e7cca94490b19d2ca31e961346d553ed66869b0e5b030" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "cb82c5b4862ec655c2cfe25808a01ed5fa2b11f275836697d617f5ac91d71b92", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jdk-17.0.4-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jdk-17.0.4-ea.7_macos-x64_bin.dmg", + "checksum": "7b8b7e8cf1d51f22d2a1510951255f3dad905ed630ebb450d39a5d78586e6aee" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.7_macos-x64_bin.tar.gz", + "checksum": "69babca70b7a5c57b06388f6c71605abb1d6f2e21b89c7c097517c1eeaaa0758", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jdk-17.0.4-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.4-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jdk-17.0.4-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.4-ea.7_windows-x64_bin.zip", + "checksum": "d096eefb768845e27465b82a9226cd8823f50978c362c8babfd62b6bb11ffd3e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jdk-17.0.4-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "b9d68eac6d0ae2b05a9c2ef32c95028437cd3519f8f74d2e85d562daf8498944", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jre-17.0.4-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "6c118fd2f325f2aa3d6c002751c52d08a67788c24d49aced180194070d4495b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jre-17.0.4-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.7_linux-x64_bin.tar.gz", + "checksum": "9139e58741b21549a6d9e5ff5bac8e1624b1ed19c7169fef20fefbd049af7f9b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jre-17.0.4-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jre-17.0.4-ea.7_macos-aarch64_bin.dmg", + "checksum": "dc2bfc50ece1ee65feafc7848f8ef74dabbeedea85cdb14d8b838605738fb5d1" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "950d2759d1ca7c48955ab3598fddcc2e2f22d28e5ba5092f7e484f71924f8c04", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jre-17.0.4-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jre-17.0.4-ea.7_macos-x64_bin.dmg", + "checksum": "6fa7e4fe716705bd11faa6ac232c3475347c8ce4022f5eeb89f61d4aae274345" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.7_macos-x64_bin.tar.gz", + "checksum": "25a7f14751a65bedfa0360016bc21c508ef9dce4abd8dac7366c03aec2ec9c36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jre-17.0.4-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.4-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jre-17.0.4-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.4-ea.7_windows-x64_bin.zip", + "checksum": "523c3e60f28a7d7725d4081aef7f844d1a365f45bbf91e9dd1234860a82b852c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B7/sapmachine-jre-17.0.4-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.4+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.4%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "9ff1f9bd972ab7220191ca0f50a2fc1f63b53d583ed4612ecda5b9f289fd5d20", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jdk-17.0.4-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "b7a914484505f563c7d75392423c1e866d69d17c8052d6103060bc21f82da267", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jdk-17.0.4-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.6_linux-x64_bin.tar.gz", + "checksum": "276c1109a07bc5b2a4722fad9f432863ad5e4a238eb2e533d1652b0f0ccbc666", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jdk-17.0.4-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jdk-17.0.4-ea.6_macos-aarch64_bin.dmg", + "checksum": "e9bde18edf9c40127182044f67112580149d6cf6f2575287b28f8a98e6af856e" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "7760591dac1fe3f6430b109570e4f702277b4a749c22bb17f9416ed587a264db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jdk-17.0.4-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jdk-17.0.4-ea.6_macos-x64_bin.dmg", + "checksum": "e5c090c517b070e35d2bff93883adbac71948822b8a5b561c4ebd9317217e56b" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.6_macos-x64_bin.tar.gz", + "checksum": "501f58b654dfef7d5c3d93ceef41c5ff957e6f30387f8933ebdc4e22c0171783", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jdk-17.0.4-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.4-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jdk-17.0.4-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.4-ea.6_windows-x64_bin.zip", + "checksum": "a5846226d01e2051b87b2bf1bb363d6d0318a823f0eefccca921ffa8f72d8357", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jdk-17.0.4-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "54a24b66ecff2e23bc1c5134079bf55a533d8921b38b32ef697a86b1921d34df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jre-17.0.4-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "05d3630176079b3b9b26bb5493e6df34a7ad65975cc872fc60237effe2ee75ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jre-17.0.4-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.6_linux-x64_bin.tar.gz", + "checksum": "3a81159b67456efe56951b645a971d6ea07d1292cd29d453c396fb15f940fcf0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jre-17.0.4-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jre-17.0.4-ea.6_macos-aarch64_bin.dmg", + "checksum": "92956e4635330e43d26b8d7c28eb6c97d58f3ce8430eaaf4fec26d51abe0c236" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "44952d441127f7d799ab8595d4ed3f17ff1c21b3de373c6343add92c0307b589", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jre-17.0.4-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jre-17.0.4-ea.6_macos-x64_bin.dmg", + "checksum": "cbb4f3474b879c1abc8e46ac14a4d21b4ade7443a7f5dc0c3e9a972f781accfc" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.6_macos-x64_bin.tar.gz", + "checksum": "27da2abe20c947f30620fb556c5bb0d7cd2662671a9d4750f0a49390ed737995", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jre-17.0.4-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.4-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jre-17.0.4-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.4-ea.6_windows-x64_bin.zip", + "checksum": "0904104ee8d02741316a676cb33258cfdfbcbaf1cf87f48cd460dfc0ddfa2241", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B6/sapmachine-jre-17.0.4-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.4+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.4%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "adb6e4daa61f21810a6111a5353f9389b77aa8c8112d3166903cbe6d5bd74153", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jdk-17.0.4-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "3cf7614fd0528df9a3e12e951980692a4c07adba117b291d3b877acfd40b4b96", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jdk-17.0.4-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.5_linux-x64_bin.tar.gz", + "checksum": "fafce47fbedecac53f39c31b1d8c578f288ef3f9ba3848a3b0046df05abdc503", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jdk-17.0.4-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jdk-17.0.4-ea.5_macos-aarch64_bin.dmg", + "checksum": "b630fd10e737a02e2a37462d26fa43ae55ca881d895e0f84c3122185c11583c4" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "eb67f7e950270780cba5f6eefc0a401b495b1ba55d26eff6c10d5ffad3b00019", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jdk-17.0.4-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jdk-17.0.4-ea.5_macos-x64_bin.dmg", + "checksum": "513cb5c7d64b63edd4848cef427948a0610bcc1fc7aff42712a2dd8c6db73720" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.5_macos-x64_bin.tar.gz", + "checksum": "211f7993d75350a24479265aba8895c6794deae898c05042b15b744531dc614b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jdk-17.0.4-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.4-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jdk-17.0.4-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.4-ea.5_windows-x64_bin.zip", + "checksum": "b1c19715e5c6d86c5086af19b9ac491cb3ba6895569338aad71c1655c1a47a74", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jdk-17.0.4-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "3451f95ada5eb16cda4fff7b8043252104cd87899a5483a12ea67c78ffacf0f0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jre-17.0.4-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "0160e2e3d534cbd5163b7c25ff9b6a558839e7e71731fc18a039c238a96d1f06", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jre-17.0.4-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.5_linux-x64_bin.tar.gz", + "checksum": "a45d62f0884c1429ca5381c32b5921738c4d730bbd849a14c6523e2d295fd21e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jre-17.0.4-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jre-17.0.4-ea.5_macos-aarch64_bin.dmg", + "checksum": "fd0dc18388d71a8815adde3455bd7874c4cf2acf99b6542bb3cf45c4372df04b" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "b5056cf2ca196e68a7802c5966ce25b5ec5a1448226828cb6285d401b4678efd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jre-17.0.4-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jre-17.0.4-ea.5_macos-x64_bin.dmg", + "checksum": "de6ca3598c2f5992babc63d7d00fcc90f53ee932d229ad5b90f00dd9eaaaf61e" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.5_macos-x64_bin.tar.gz", + "checksum": "baf23c4a6824b21a3c794a3f54bebb29d9004c6748359886f2ad6966946d0a24", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jre-17.0.4-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.4-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jre-17.0.4-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.4-ea.5_windows-x64_bin.zip", + "checksum": "295e738d42cf0e3e2ddf468ecdc77816665360f461f78c1eaadf5d584d6cd0fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B5/sapmachine-jre-17.0.4-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.4+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.4%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "868ceb465b2d4fc142c2b6e95d2df29d0a39184a747767e2f05fe8708b8df79e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jdk-17.0.4-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "2ea2f65357dd0c4657d18938b96e33a49ea51f5311bf179a427257be9dc7ba80", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jdk-17.0.4-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.4_linux-x64_bin.tar.gz", + "checksum": "988a718571ce23330c668209a86d593a66e4d6c972f97f7d1311829444b753ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jdk-17.0.4-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jdk-17.0.4-ea.4_macos-aarch64_bin.dmg", + "checksum": "1ad6dbe0314db0f9cd111ee7bce2c8624e0fbc42a40a680f01f5249d3cae007f" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "45cc32b83370ac88e62c66e6e48b998c68d0f329a30c485ad77978c9899177f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jdk-17.0.4-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jdk-17.0.4-ea.4_macos-x64_bin.dmg", + "checksum": "9b40bd24bd371d86880a9fc136b724aa0aedf298176d042b00521e294a01b310" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.4_macos-x64_bin.tar.gz", + "checksum": "97c97182ebbf6a768d35824c46378f8924803b835c89d02e74878e056a3b532e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jdk-17.0.4-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.4-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jdk-17.0.4-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.4-ea.4_windows-x64_bin.zip", + "checksum": "8fad1d637698fae752c92bca1bcf9e28b32f8e2c1a16d7a527c1fc4947da2099", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jdk-17.0.4-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "4d1d0045ad1d664cf343a7ae18907405654a904048090c49eee39605f0a84505", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jre-17.0.4-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "48ff9afd8d983608ddc5ca0b675d2f5acf80a48fba5d3c5e607066346ecc0ba9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jre-17.0.4-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.4_linux-x64_bin.tar.gz", + "checksum": "ac77849b519e0dc7ff55cfd70bdf2b8b76a610565877b5dec256a52fbddfb759", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jre-17.0.4-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jre-17.0.4-ea.4_macos-aarch64_bin.dmg", + "checksum": "a0812451868d464db850709b6571562b9c382ee62576ed43334a3397e076b42c" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "66ceb12a390d0188a2360cc2fc1ffbbfcc1a1a3b1e4a5c7599fbcc60b1df4f67", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jre-17.0.4-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jre-17.0.4-ea.4_macos-x64_bin.dmg", + "checksum": "63a487d3ebb75109682a5412368e9c3a4d9e3b448f90a00d5a78b1c66ac3b67e" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.4_macos-x64_bin.tar.gz", + "checksum": "3c015a1438cac9230701af6f5f8a4555077672f6c960d66daf4c0bbded51bcd7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jre-17.0.4-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.4-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jre-17.0.4-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.4-ea.4_windows-x64_bin.zip", + "checksum": "10cf5d4a241e5ae69254e2e025176ea7886d940e0521e4a7bf6adf7c111b8fa3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B4/sapmachine-jre-17.0.4-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.4+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.4%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "13a91fa6a057bf8764158a4741fd02bb0f550cc0cafcadc7d3ffca4b287728b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jdk-17.0.4-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "a56a2971d29eca5f306b476267932bbafebebe5ad6cb540042e32d22eb74006a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jdk-17.0.4-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.3_linux-x64_bin.tar.gz", + "checksum": "e5cd05616a73b0bb5f49cbc597d68ae68fc89e681fea1717f49d4c53d5271230", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jdk-17.0.4-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jdk-17.0.4-ea.3_macos-aarch64_bin.dmg", + "checksum": "605fbb917b78d28c3094c48301f81df86588fa9cb63726ae823be8d6e9cd1684" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "ec7a15a0554d58ff6174d655999faed78afcc7a1c0e02c5397f55375cf1bdbd6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jdk-17.0.4-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jdk-17.0.4-ea.3_macos-x64_bin.dmg", + "checksum": "3a1b4f44e0919c89fe8aa9d2cc5db7caf0a54dc7333da76b8b136f5596eae8f4" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.3_macos-x64_bin.tar.gz", + "checksum": "ff2888ae9e7fe5bb39150166941b3ed27309879b4846fe922d4ec4b1bfc2fb42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jdk-17.0.4-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.4-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jdk-17.0.4-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.4-ea.3_windows-x64_bin.zip", + "checksum": "7f828b17e703f652536493c822c6be72313374e93ddca6fd39f292796d24b7ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jdk-17.0.4-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "b589aa10175384899ac611884190dc54f229ed80ea2130f83688dea53a05a1fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jre-17.0.4-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "9fa1c9907244261ea7f83fa142f4f31585aa31d9e1ea0f6ea617127767219ccb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jre-17.0.4-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.3_linux-x64_bin.tar.gz", + "checksum": "585672290514c25189e314c29b8d5f637301afe2864dba8c4694cf18ad3d0993", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jre-17.0.4-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jre-17.0.4-ea.3_macos-aarch64_bin.dmg", + "checksum": "f233551bff2a37820a0b293ef50eead8cea8daedbf7ca0b1850bc9119609bde0" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "922acab0096de162cc934fd940bd836691d92e604153bc7fcbd53daf3eac6023", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jre-17.0.4-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jre-17.0.4-ea.3_macos-x64_bin.dmg", + "checksum": "ac8329c860548f5027af2143762bdb0a4f2516afa69f2da247a8e5399148338a" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.3_macos-x64_bin.tar.gz", + "checksum": "a0627d73e284f0c1245297a18e165e6c6d614b22024cb8f193ccdb6b492236b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jre-17.0.4-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.4-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jre-17.0.4-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.4-ea.3_windows-x64_bin.zip", + "checksum": "fc6e2548e04df244da782b5696cc940b4670c659cb0c10afa9be4c22ceb374bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B3/sapmachine-jre-17.0.4-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.4+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.4%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "54a22b68b88ecc2717d844788f01ef0aa8c3f4580616a80a58c6aea6bf21a0b1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jdk-17.0.4-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "44639cc04dd458eef8e06cab13278dadf79c0742f4305aa977f26c6d8399bc12", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jdk-17.0.4-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.2_linux-x64_bin.tar.gz", + "checksum": "70e1431aa466cb47f6b65ec72cc92085736ea4272d3bdb891b275dabf6c8c838", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jdk-17.0.4-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jdk-17.0.4-ea.2_macos-aarch64_bin.dmg", + "checksum": "081e0b63993438786c53ffe64512f622714ad398a0d777a037958ea29c42e698" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "5e0c924b72da2174cf190e5330ed69d54fd2fc837aac01dc4c3a1aa11bacdf64", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jdk-17.0.4-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jdk-17.0.4-ea.2_macos-x64_bin.dmg", + "checksum": "5afe2e5b4422c64d6deb52d35eb1dbf08100a8636504223ad93b28005a5802de" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.2_macos-x64_bin.tar.gz", + "checksum": "999ac8d9f083b8b016eb58c76fe646a6717490e737afcd1db5328b2144adb9fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jdk-17.0.4-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.4-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jdk-17.0.4-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.4-ea.2_windows-x64_bin.zip", + "checksum": "6bb2c8431261fddded364bd36a6f1d1636f01666ec15ee3a1cc1a499aabc0b36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jdk-17.0.4-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "1d0b987e3315ff70808a3d01498400f413b89aaa5a5b2ee94c1630c429e4bc11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jre-17.0.4-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "011bf3c99ab2e6ddf71fcc48aae4398ccdcfdfdd9dd8d68eb2468518bbd0e590", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jre-17.0.4-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.2_linux-x64_bin.tar.gz", + "checksum": "516c8ee3349bd2dd88e76ea7d80ef2009418486ab039aa5a02823b88e151020a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jre-17.0.4-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jre-17.0.4-ea.2_macos-aarch64_bin.dmg", + "checksum": "d51a2984ab0369a6b7cb9f0cad2106572e9fb1a379952b6c683b299e35601c3f" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "e0aa0afea90d70fd0c75c5f05837a055883cf65cb8df37e2e89c04e50eb2369a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jre-17.0.4-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jre-17.0.4-ea.2_macos-x64_bin.dmg", + "checksum": "48dd1595f73a18768b9fdf6ee160960c46d0b80245b88557d0cfc6feba418898" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.2_macos-x64_bin.tar.gz", + "checksum": "6e53b1fe9ab8f5c54d249566bc6f0140191f43ae57ebae70b2e76392f0664c67", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jre-17.0.4-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.4-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jre-17.0.4-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.4-ea.2_windows-x64_bin.zip", + "checksum": "e5e4ae664ff6eb08d202f5610e7da8250c83a40549287c5eb82b65817d25541c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B2/sapmachine-jre-17.0.4-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.4+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.4%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "7c69a0cac78383aaae0c799b9afdeb88021d69f1791020ad9629dfa41a768ee3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jdk-17.0.4-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "4f92c28b08e454062e4bc2692916ffeefd1d34f0af4d06cfaec169231e33bc2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jdk-17.0.4-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.1_linux-x64_bin.tar.gz", + "checksum": "48325c698bc805db6c610539399fb6956475542539bc2d3dde9a06a19f1e33d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jdk-17.0.4-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jdk-17.0.4-ea.1_macos-aarch64_bin.dmg", + "checksum": "0c88ab0a4d1969109e25da54c2bb8cd559723e60ef203e9f664a7544989fec47" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "c482657c5b8919a6719f6a775b81e427842d29a900debf93a55a2428bbe23bc5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jdk-17.0.4-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.4-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jdk-17.0.4-ea.1_macos-x64_bin.dmg", + "checksum": "df3554db06bdbab1f75fc02711b8ccbff81170f729c4aaba8d2d9b7e242948a0" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.4-ea.1_macos-x64_bin.tar.gz", + "checksum": "8fa55d48e49b77e074a1c67707ccf8f87dc5d0e6da336bfcf8cdfcf2ca95bb98", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jdk-17.0.4-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.4-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jdk-17.0.4-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.4-ea.1_windows-x64_bin.zip", + "checksum": "1520bdada19fc98bc4cf90d6402db25254682299ad425476d802d63d13da0972", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jdk-17.0.4-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "7bdebf0a2c1594d48f849e3ac154661df3a5c036374382a79968ae711ef775dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jre-17.0.4-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "dd5d76c65f11d18a53a32b343610e3f3720d33547c44c69d347d000a2134ffcf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jre-17.0.4-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.1_linux-x64_bin.tar.gz", + "checksum": "07691ad2f31d2007163869237286595ac237d9cd9a11c8a2c490f8ca4edd6d0c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jre-17.0.4-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jre-17.0.4-ea.1_macos-aarch64_bin.dmg", + "checksum": "414367cfa9e303abcb16d28e8ef541f4e85dc0113f551eb11f852e0d84517655" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "60b99ff62e3fbee685177a40434af3d4e938cec7f4d76d4c70faf6ae20d6742b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jre-17.0.4-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.4-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jre-17.0.4-ea.1_macos-x64_bin.dmg", + "checksum": "7e9265d607f8057e414ab3aec9d44b2d7b438e5a999a561caa894e024b310279" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.4-ea.1_macos-x64_bin.tar.gz", + "checksum": "a8839fd4f5c1ed2cef5a3a7ddd78b83628035309f6edcfb1fbedf149202d7d68", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jre-17.0.4-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.4-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jre-17.0.4-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.4-ea.1_windows-x64_bin.zip", + "checksum": "47a5e524c32f00fdc74e40ef86be8121dc627586ba2c201f94b583874b84dfee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4%2B1/sapmachine-jre-17.0.4-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "17.0.3.0.1": { + "sapmachine-17.0.3.0.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.3.0.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3.0.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "6b0e0fd31fe93901676a7e2ed46fe70871e3207e4d2572b1814d08420a3864f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jdk-17.0.3.0.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "7075e13dd8c8124b66c3733947bf5fefc5c5ed5e8b15ee760c67221b00768cd1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jdk-17.0.3.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3.0.1_linux-x64_bin.tar.gz", + "checksum": "f69de3d41b852578be01414cf3e1377827a6da04015e1067f991de9b167a64d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jdk-17.0.3.0.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3.0.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jdk-17.0.3.0.1_macos-aarch64_bin.dmg", + "checksum": "ef1caa159f4c15e54dbf30fd6cd6665cc455f93c4ab7b40e019923103428cb69" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3.0.1_macos-aarch64_bin.tar.gz", + "checksum": "e1653c1ad4bb5fbd317e30796271c6d0cb4e2964efd2c80c07c518ea92127062", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jdk-17.0.3.0.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3.0.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jdk-17.0.3.0.1_macos-x64_bin.dmg", + "checksum": "665932b8f9f7fccef703705f9b7c962730d9a04d2481c4da19ccc11a28f23492" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3.0.1_macos-x64_bin.tar.gz", + "checksum": "9757e310fdd10183d986b3ce0421b9ab96ceefa97526f5ed90b8cd364abae54e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jdk-17.0.3.0.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.3.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jdk-17.0.3.0.1_windows-x64_bin.msi", + "checksum": "82b156d4a27cf797a86bc6feba54b7d73cffc80513ff20e5e60ab135e0a8b919" + }, + "zip": { + "name": "sapmachine-jdk-17.0.3.0.1_windows-x64_bin.zip", + "checksum": "3e0ca90c7308e01a84ec2141759fc682a638190f736f0772c91033d500503ae3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jdk-17.0.3.0.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3.0.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "a79a0eac3c53ce6159116ee285081c0f4559b50a035e0e586135cc20fb6f2720", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jre-17.0.3.0.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "50e014d7fdb7018a0ebd69f9565912f93f4f20aeb953fa83fafb5af2ffd7efb0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jre-17.0.3.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3.0.1_linux-x64_bin.tar.gz", + "checksum": "85c9a06cce1dfcc1e0bfbff88a1b7d3b4611a0b0d9af4300af55c993744e2908", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jre-17.0.3.0.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.3.0.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jre-17.0.3.0.1_macos-aarch64_bin.dmg", + "checksum": "db05fef84a8e7d69dd791c2866d122cccb89349e1ff79da8e5eab6f513f72c08" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3.0.1_macos-aarch64_bin.tar.gz", + "checksum": "40b64d8b38e72ee0fda790051421b7870b7789022a603335f29beeb9e1026991", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jre-17.0.3.0.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.3.0.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jre-17.0.3.0.1_macos-x64_bin.dmg", + "checksum": "fdf88e534d1f151b1f30c15471a1a064e9f7f373dfff435420fd1dec5f015861" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3.0.1_macos-x64_bin.tar.gz", + "checksum": "570ab4a1525f6f5f5daba2d95826bfc8cbb7c118b71cb3b840f8cd7ab4212bdc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jre-17.0.3.0.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.3.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jre-17.0.3.0.1_windows-x64_bin.msi", + "checksum": "b193aef1e885f8d20f71f967042f0a16848475e9ecf2b71a39e34a87bf94bf40" + }, + "zip": { + "name": "sapmachine-jre-17.0.3.0.1_windows-x64_bin.zip", + "checksum": "94ce43269c16319bfe30e79aa2c9989200223357694c23640a9e56926bc15e83", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3.0.1/sapmachine-jre-17.0.3.0.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "17.0.3": { + "sapmachine-17.0.3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.3", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-beta_linux-aarch64_bin.tar.gz", + "checksum": "34de88cac287a6d4e7deb5c6a145f194ecf91d0f76cdeab87fea82f3b5f09fc5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jdk-17.0.3-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3_linux-ppc64le_bin.tar.gz", + "checksum": "1d8c0147e9d75fe734a5146bbe0e1f45e11c626c30c9151c41b230e1ce73c706", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jdk-17.0.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3_linux-x64_bin.tar.gz", + "checksum": "3aa649ffef0d21b98019bbfae6591d54438c76571614e9b328e6021a493d07f0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jdk-17.0.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jdk-17.0.3_macos-aarch64_bin.dmg", + "checksum": "9c30310d3ed2e1ead98c1984d8a690371de961042e79c31dc3839b57c9e805b5" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3_macos-aarch64_bin.tar.gz", + "checksum": "5b1718288aea89aa22db1dc71388a9ffeae9befe2c8a057af4d8103daef5fcdb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jdk-17.0.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jdk-17.0.3_macos-x64_bin.dmg", + "checksum": "610ee82d50f145d99f13258c47a441ea54476fd6e6fab4ba0344f5506186afc3" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3_macos-x64_bin.tar.gz", + "checksum": "eb3dc4f099b3038368e7cd0762d7820f07d64fc6bc880ae5e8606ece1b32b1c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jdk-17.0.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jdk-17.0.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.3_windows-x64_bin.zip", + "checksum": "ba1043bd9ad2cac3c3d760fb898b961e12192c056530d422dcc9bf54857976f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jdk-17.0.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-beta_linux-aarch64_bin.tar.gz", + "checksum": "069dd8979db90a1c587391d7a8da08c73e38555eae52d551f9a52002ccd6dc25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jre-17.0.3-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3_linux-ppc64le_bin.tar.gz", + "checksum": "81895a0cd6ff42e14e38b73c24a55f48e955ccf6b0d36f21e1f79bd4cdb023da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jre-17.0.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3_linux-x64_bin.tar.gz", + "checksum": "49cfdb77922dc659b9d517a74a398a899dc5c3362644b4f3dae0b17f34ae4e58", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jre-17.0.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jre-17.0.3_macos-aarch64_bin.dmg", + "checksum": "a55b6367c9c5278a4699a9633cac31db258b3535d4a51fde160626312ec0b274" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3_macos-aarch64_bin.tar.gz", + "checksum": "e6309a79ce196f1856ef6dfb3592ac6eb63d6ced5ba13d1a2c7d2b9235719ac3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jre-17.0.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jre-17.0.3_macos-x64_bin.dmg", + "checksum": "adb8859abdf4331985ba192c1a45da51a5ea94125e567d9f705392ea19b03ee1" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3_macos-x64_bin.tar.gz", + "checksum": "9e478f55f11d57ab260c72090e6aca2cb94def8bdb91d08a76f59dd12de63561", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jre-17.0.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jre-17.0.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.3_windows-x64_bin.zip", + "checksum": "defdbaf811ef3ce2be8ac7aa778a2d2375d89b9aa3aa04c579df140963124107", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3/sapmachine-jre-17.0.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.3+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.3%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "45b0efb736a778a8304d39ec72f64fec12acbcb639edb43f16b0f6ca356a82d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jdk-17.0.3-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "9579bbbd633084fb33499b7b684e96407fa2d17028d50561f2c10a1c7a569d04", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jdk-17.0.3-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.7_linux-x64_bin.tar.gz", + "checksum": "672628332bf1c9c00d5ec23772ac019ed89cebf67ede996a3a5fb0b6c1c859a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jdk-17.0.3-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jdk-17.0.3-ea.7_macos-aarch64_bin.dmg", + "checksum": "c960f7976f9b95362c9acc9896f65498a21154f1828e9ab9081b7afef6acda01" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "070f018b33c7f3b6e8dac25a0d880bb453fd3c138640c8c159ab4155b70bd7ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jdk-17.0.3-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jdk-17.0.3-ea.7_macos-x64_bin.dmg", + "checksum": "1a19211b9787af8a21cf644ab95a0c8aac25f76de6b70691477dbfdb82998bab" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.7_macos-x64_bin.tar.gz", + "checksum": "c3d8d42a10873cfd3251acfdce686098e6cff0d334d42cdb43578feab44c2bee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jdk-17.0.3-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.3-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jdk-17.0.3-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.3-ea.7_windows-x64_bin.zip", + "checksum": "32fd6d60d3d0cbf98096872c903a4d8cda2e654d2c6aaee682917dbb35e33e35", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jdk-17.0.3-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "2eec85e1e134f053143d08d03729b1ae0d15514baef643aa9585557f0d94f2f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jre-17.0.3-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "f06f2308379aebc17aa8945b765ef44872d228faa8a9cf1d8d271bba0c9666a7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jre-17.0.3-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.7_linux-x64_bin.tar.gz", + "checksum": "0430fb830993146cea12b2cbb9ec93c0c3abfe610a1e10faf90bf9e192edc874", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jre-17.0.3-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.3-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jre-17.0.3-ea.7_macos-aarch64_bin.dmg", + "checksum": "92b62c51079011cd5d369be72c9592742894e2b39103a3bc8cc184290b1d9a36" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "4ef12b319ccf4e8087e96e511b9864987aa2619c380483ac785396a94b9e3d48", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jre-17.0.3-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.3-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jre-17.0.3-ea.7_macos-x64_bin.dmg", + "checksum": "1a92cb55e7fef16f08f2dec5b9108592b46c3a1c62fe534046f4298e937407cc" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.7_macos-x64_bin.tar.gz", + "checksum": "4bca48c75d3f98cc916af06fc6b7492108cd2bcd775fb9b9ab296a0c3dc9e11a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jre-17.0.3-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.3-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jre-17.0.3-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.3-ea.7_windows-x64_bin.zip", + "checksum": "3b9bfb05bdac8792ff69b40f6d0327efef1f4466f58f8a1ebe6d99c559a372ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B7/sapmachine-jre-17.0.3-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.3+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.3%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "6a445a33e8aae6406fc9db4665be5a1633ed960d9f0d1692fda2d32190abc9eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jdk-17.0.3-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "c763b9ca64d89f358fe7ec4f8c158769f13f59e965f7a461ff6f10e561c3d88a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jdk-17.0.3-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.6_linux-x64_bin.tar.gz", + "checksum": "0b71cadd43ef6eae461c1bfa931832cb3306e6a133dd110deffd14520c9996d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jdk-17.0.3-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jdk-17.0.3-ea.6_macos-aarch64_bin.dmg", + "checksum": "94e458acfe451a9ce9502ae87fb265d4fd5fe922878403e7b1fda4ff5d5faa4d" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "f7363b1eed8ab6fe3dc5c9a71278fa746991bf08dd8e1258f72699e151f2279a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jdk-17.0.3-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jdk-17.0.3-ea.6_macos-x64_bin.dmg", + "checksum": "68f1d5b11b445b76ce9618bd9f1744267afa0ff7f876991ec8aec1ab2d245251" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.6_macos-x64_bin.tar.gz", + "checksum": "4f2be80ba000b33e28cb03e2dc5830d45e56344699ae89dbf8727acb892ea189", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jdk-17.0.3-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.3-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jdk-17.0.3-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.3-ea.6_windows-x64_bin.zip", + "checksum": "22fcbd6862d212ca18d9fec128cae3a03064784f1dfcf79cb5d68bc39acec310", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jdk-17.0.3-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "64b2298c2ec45310e8081e92ba9841be7f291e9c2a88b64108f8b84bfd21f92e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jre-17.0.3-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "1f0c8c5b07f3bc2d9aee8c540206a0271b5a3188a55d991523e4cbe6914668a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jre-17.0.3-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.6_linux-x64_bin.tar.gz", + "checksum": "2c66bde383373e7f237644068b01d439ee134d05276961ffbb009fbc0aa2972e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jre-17.0.3-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.3-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jre-17.0.3-ea.6_macos-aarch64_bin.dmg", + "checksum": "19c16922da02ba7d43916719f537d241c24b136ea6c555c377fa2970c210fe39" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "cf0de310cc34f0b072431fc0b04a0de2e2a9d256204248dcf08611a5ffe5c0a2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jre-17.0.3-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.3-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jre-17.0.3-ea.6_macos-x64_bin.dmg", + "checksum": "09c62eb766fff000cef1fea1f98620c0a92dd95bc00d6cac33e3865af28fe95d" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.6_macos-x64_bin.tar.gz", + "checksum": "5f62a72454449309d3f6c110170b0c2c394d923cdc0b7f05621693c389ef53a8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jre-17.0.3-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.3-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jre-17.0.3-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.3-ea.6_windows-x64_bin.zip", + "checksum": "8a2877b19cb900ba81f954478754f8d6248acc49a34342d343c5cdb35f535c5a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B6/sapmachine-jre-17.0.3-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.3+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.3%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "510768f46eedab9ad82baf844a87672d150f7542648442900e54ea2a3d789584", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jdk-17.0.3-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "22e091f4c83028f7a5f2eaf14b8daf5b7970a469d5bbc9a8bcf4d05bf681dbb4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jdk-17.0.3-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.5_linux-x64_bin.tar.gz", + "checksum": "03ec32c683fa2953b2fe3817a915f0f8d8679787c3f6d2602691219545ffc4eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jdk-17.0.3-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jdk-17.0.3-ea.5_macos-aarch64_bin.dmg", + "checksum": "c9b61d607ec5eb5f733a2c2703bb64d33ff52017e4663f7f0446e83256f6fb71" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "5757f43cc33af421b62aeb7a770d559461bb9060a5928435a97ed646339fcaa6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jdk-17.0.3-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jdk-17.0.3-ea.5_macos-x64_bin.dmg", + "checksum": "62c842c24520c4b3760675a3b3f6e14046faf3b471dc64ba1c8fc69eb52b8c90" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.5_macos-x64_bin.tar.gz", + "checksum": "cfec4645f27b49ec6e2628b1a55bfc34f5f75870dc2a0784a956d3114e53bc6f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jdk-17.0.3-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.3-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jdk-17.0.3-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.3-ea.5_windows-x64_bin.zip", + "checksum": "211d65fe60a5def35e669ddfb56e69680377a172ded2434508ac21bc19955f25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jdk-17.0.3-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "c0fa1430f8a24b8ce919df120d4c77ab3a5e8bbaeff17cbf0599c8b764dcdd4c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jre-17.0.3-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "f3fce2f87ee653be110215515d155f4f01cf4fc743ac2d810ef470300e884113", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jre-17.0.3-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.5_linux-x64_bin.tar.gz", + "checksum": "6cf655e179138de0b81de31ec5ec61b5befdc38ea49c82922205b7413e313875", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jre-17.0.3-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.3-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jre-17.0.3-ea.5_macos-aarch64_bin.dmg", + "checksum": "7dbe35a10648ce131b8c0333a77b005a52ed5f6072ffb99ecda76ef331974007" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "f62ba378d33fdb400a4b96b421114a7af928170024c856cd91012e27923433cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jre-17.0.3-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.3-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jre-17.0.3-ea.5_macos-x64_bin.dmg", + "checksum": "e0167725bd0ae2f461864d7acaef27681f9c956fe02b5903e61ca7a192cff830" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.5_macos-x64_bin.tar.gz", + "checksum": "417caf23eccd961102463034c5f8599275d9d048278d7611823cf1f5209a61f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jre-17.0.3-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.3-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jre-17.0.3-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.3-ea.5_windows-x64_bin.zip", + "checksum": "34b0e13814398d73d73b656b9694e03dcea8a7fc930911a8a67407f3dc586bf5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B5/sapmachine-jre-17.0.3-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.3+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.3%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "1617819160ec77da283d5a13fcd0a93eb00c2946d2460ea8dd86959099d8cb90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jdk-17.0.3-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "9d4581260202b2ced3470e00c857c800b66b7abc369f6d1e7a141246c20a5f57", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jdk-17.0.3-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.4_linux-x64_bin.tar.gz", + "checksum": "2e81b30f03ad5809cada801a04899ed397e77bc3a124d27d80a74b3d7f62fdfa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jdk-17.0.3-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jdk-17.0.3-ea.4_macos-aarch64_bin.dmg", + "checksum": "e7295471829e761b619ab67a192bcf635607a35b648f0e021ba02378e236f881" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "0102d345f3cad11e34018a07eb49d6d38a94673a0e2d380ff21f773ba6d9423d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jdk-17.0.3-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jdk-17.0.3-ea.4_macos-x64_bin.dmg", + "checksum": "789b7b9ac2049dcb49b60d7b56a412c84c4e24656cfa384d44cab57cd6ac3fb0" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.4_macos-x64_bin.tar.gz", + "checksum": "8bf2ecb1ec5768e264c6e5961736fb94bfc4f733d8e95b07d6d57798759395f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jdk-17.0.3-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.3-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jdk-17.0.3-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.3-ea.4_windows-x64_bin.zip", + "checksum": "f14584f2bab41838d506f4b7e78993f05c8d775f2eb690bc714f1ba5c1106102", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jdk-17.0.3-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "b20ec4707d0702128b3106cbf1286c904ba6079234541f5d2cc883af68c23323", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jre-17.0.3-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "342d78b204b225e19a6925e74a540d5910f2a4b8111fb2c08509b871e07129bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jre-17.0.3-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.4_linux-x64_bin.tar.gz", + "checksum": "c2f8ac28fcc755c177cd6192967e3bb996e547204dd5f85df3f12145de9f5c73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jre-17.0.3-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.3-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jre-17.0.3-ea.4_macos-aarch64_bin.dmg", + "checksum": "37656872c8a2e41f4bf740083cd927dd7a482160d7a940f4b18ffea715d9dfba" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "d8c2542b418d70546f23b571cda8c2c964b92291e27d20bb919964d205c5d896", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jre-17.0.3-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.3-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jre-17.0.3-ea.4_macos-x64_bin.dmg", + "checksum": "59a1c0cffa4f607fb480e0bba012c29a1f46094dcad89df2fb29c730a59b8789" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.4_macos-x64_bin.tar.gz", + "checksum": "bdb408f85b4788b9a2e1d268ec94a67252eef480dd02edb633e890000ee70bca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jre-17.0.3-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.3-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jre-17.0.3-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.3-ea.4_windows-x64_bin.zip", + "checksum": "377adb541e9e2db73e0c460207f22abd257964f1da86caf4b8caccc171505940", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B4/sapmachine-jre-17.0.3-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.3+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.3%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "2267531bd9131252a892b4d6c8d3700c0cb48920a61036d167fbd3b831f94b67", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jdk-17.0.3-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "7581f8bb3cd28317c2dda8fce4b2dc628b3de71c80f14119e302c16c8c2cdee6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jdk-17.0.3-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.3_linux-x64_bin.tar.gz", + "checksum": "09a5d56a87b5d49c4bf98408dc2eaf001ae214b782d19ffb8c12ab3e6e85b090", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jdk-17.0.3-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jdk-17.0.3-ea.3_macos-aarch64_bin.dmg", + "checksum": "3db996400305ec35b9157f710f86a9342172dbb154e6ae1252e2adf6ad26b6ab" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "95658b28c4246cf965b385ba07b524b38606d882e9c07fbc68009f3bd59b9cc1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jdk-17.0.3-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jdk-17.0.3-ea.3_macos-x64_bin.dmg", + "checksum": "262f329b7f9cfb3b5975335dc2b058aad997afc670a7cc58bc92fb1fd0a00afa" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.3_macos-x64_bin.tar.gz", + "checksum": "39b92abf132350b29e91deb174be29ff6c5f54c1fd72e65253e80da71b4787b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jdk-17.0.3-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.3-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jdk-17.0.3-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.3-ea.3_windows-x64_bin.zip", + "checksum": "0df302af6c4028cf5d6d07c2ea6642bfb17a9f1997233658eaf9e2eb8e13bf3a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jdk-17.0.3-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "81709e3dddbe1b464c3dad56671ae59cadb961f8f941347042896d18bef23fab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jre-17.0.3-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "170e5c4ddabe856f6fd0204fb2223132d3d1160990f3005efbe73a480e0ec99d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jre-17.0.3-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.3_linux-x64_bin.tar.gz", + "checksum": "b66aa23b430a6a56889dc27478b7802eb2617d653e1b15261a94ac141866a000", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jre-17.0.3-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.3-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jre-17.0.3-ea.3_macos-aarch64_bin.dmg", + "checksum": "3ab48c3f38bebf4faca73e7ebc51b0e616bcd02915b018f442a569c5bf377071" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "0e8cc212bd07a6b7b529dfdbd2612975c6517e8e6357b480d7e1b07bfb9c3cdc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jre-17.0.3-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.3-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jre-17.0.3-ea.3_macos-x64_bin.dmg", + "checksum": "c0dcf9edeba14952773a52f76d10446dd57bf82ebf6d268b981d8b2b6962c611" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.3_macos-x64_bin.tar.gz", + "checksum": "21997252862f515472f4db8e65b2286cfbe1d5d0bcf6d22eaad692af4b7c4656", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jre-17.0.3-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.3-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jre-17.0.3-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.3-ea.3_windows-x64_bin.zip", + "checksum": "ed74e0979922de370e9067debbfbf177c563ce3f85e2de010b4e32e2fc8161e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B3/sapmachine-jre-17.0.3-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.3+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.3%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "9f7326af174bd36c26e68429d3c3e1ec9b18d8f624f2c2238725a7d6ebcd2195", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jdk-17.0.3-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "478218e6ae4e94d313d9101f9e85e1724a1c863f6d2d2ce76414722cf59008bb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jdk-17.0.3-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.2_linux-x64_bin.tar.gz", + "checksum": "b6079802d36cd3affcf49be3498967aa229f02b7bd8b1495b1f23710689a1d3f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jdk-17.0.3-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jdk-17.0.3-ea.2_macos-aarch64_bin.dmg", + "checksum": "9542bdb0a0d9234356d81d2a4f26f9cd87a3ee3ea29e2c383f1f36ad7d46f977" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "9c26f263d8d7e8c902081df35dd2436cc938724e0ddba115faafa4640a50c2ee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jdk-17.0.3-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jdk-17.0.3-ea.2_macos-x64_bin.dmg", + "checksum": "6ea7afee74b9dc93103a5cc2ce0851fac12aaa01677c726bdcd7833abb1be234" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.2_macos-x64_bin.tar.gz", + "checksum": "8b5dc5f4ea9ad267d362b9f0652cf642cc6759168673b3d6ef0a876666638143", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jdk-17.0.3-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.3-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jdk-17.0.3-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.3-ea.2_windows-x64_bin.zip", + "checksum": "a94f7ffd04fbbe786924f273572de67d6c645c0a9f92a10d196d93287cb2669d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jdk-17.0.3-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "381f2d687065a8e1c5a283c92f63f0854b760505b0ed15bb6fac55cac211eba8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jre-17.0.3-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "381a7b052c9bde4c61f0b4c3028b180da44fa509ed5e3e6a64d5e2e684c3c59d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jre-17.0.3-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.2_linux-x64_bin.tar.gz", + "checksum": "201ea0c199e2308d80ba08c2180b6660347ab90219e0e2af119fd6c131a80dc6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jre-17.0.3-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.3-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jre-17.0.3-ea.2_macos-aarch64_bin.dmg", + "checksum": "47bdb5d9f1a72c138a6a4442aefb51ed97596acd434ba8b9e58a084bdf8a67fa" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "8d71b69d34e49ef938b7eb743736d76cd8cd14edccb0eed444b4040579c9449b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jre-17.0.3-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.3-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jre-17.0.3-ea.2_macos-x64_bin.dmg", + "checksum": "9d00a771b947cb95ce5325aceccedf660b942c6d00136790308c320377aee43c" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.2_macos-x64_bin.tar.gz", + "checksum": "c6cfd4edfc0a73c39b14bb15f7d6df04579b6a8299dcc4e726035b06928badec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jre-17.0.3-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.3-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jre-17.0.3-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.3-ea.2_windows-x64_bin.zip", + "checksum": "5d1738c76bc295e7a7281d95a5f889dd88da8637cb710ff333f28c7ad3289985", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B2/sapmachine-jre-17.0.3-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.3+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.3%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "e855e79fab1011a2218280fa7c7c032fbf0cf22e93b4371df808ba5f40fdc7c1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jdk-17.0.3-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "19ef50b1b99f00075c07cf139a19fcb6576d9e5f15ac3302acce05f48391ace6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jdk-17.0.3-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.1_linux-x64_bin.tar.gz", + "checksum": "7ba4d14298b61878d08bbd07d89dce556290c39032c9c76f1a194874e9882135", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jdk-17.0.3-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jdk-17.0.3-ea.1_macos-aarch64_bin.dmg", + "checksum": "090bc4fc20af9e0cb9870ebc409d497b698959bcb981e78a9018d89f599421ae" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "81c89da665e915c706c673287964692e65c61ebab9185e02c732b49a629bb378", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jdk-17.0.3-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.3-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jdk-17.0.3-ea.1_macos-x64_bin.dmg", + "checksum": "378758b77cacbbe13ae5c04665492d9f8a0f010d40d73cc5046b363d9d06671d" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.3-ea.1_macos-x64_bin.tar.gz", + "checksum": "f41707e86225dce3baf410c9a118ace9f423ce8f7143c39228cd017c8829f590", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jdk-17.0.3-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.3-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jdk-17.0.3-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.3-ea.1_windows-x64_bin.zip", + "checksum": "9b82cc8ae7814e988078071e75607a991297bd3e63848089798b969925b72699", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jdk-17.0.3-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "4851e13fb3cb51fc099161e5a11d30cf9f884a70b5d301f1ae4d434c392353f9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jre-17.0.3-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "d66ab98f0b8df0d8709da276e83071a6079b57063600befbf01ded7a77b85b90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jre-17.0.3-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.1_linux-x64_bin.tar.gz", + "checksum": "20981ab42076031c7bd4d442360b0f49cd0ba6f65581956c7724dc3c63b2c38c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jre-17.0.3-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.3-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jre-17.0.3-ea.1_macos-aarch64_bin.dmg", + "checksum": "22cb433f95eaaf27fdc625478cafc0f17556ecdd3f3ccfb54bc828c1c8bb86e5" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "47767c4da89e339b7f4863e5d80aacbee1f25759a2762d3698dd9fd40050209c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jre-17.0.3-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.3-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jre-17.0.3-ea.1_macos-x64_bin.dmg", + "checksum": "775ea5a20d413577115256704110e0eaf21a709076d2e11b1525ef9665f48818" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.3-ea.1_macos-x64_bin.tar.gz", + "checksum": "11c4f76e950506b7d08e772bd862b4ab3a4dd7dcae3a1d50bd831d4830ba3054", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jre-17.0.3-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.3-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jre-17.0.3-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.3-ea.1_windows-x64_bin.zip", + "checksum": "eb8af36a6b49580c2caf2ba9345bccfc68718b9eddd20adfde8ce407f51a9431", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.3%2B1/sapmachine-jre-17.0.3-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "17.0.2": { + "sapmachine-17.0.2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.2", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.2-beta_linux-aarch64_bin.tar.gz", + "checksum": "868248f1b1f5b171e3b9ada9901673d3ba38e2c36aa7712d68cbcd8d47dcc7f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jdk-17.0.2-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "da6961c6da97ffb1cff3d5e02edd335eb9e5910ed57ddb74d13670aef4d7e14e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jdk-17.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.2_linux-x64_bin.tar.gz", + "checksum": "f0c17f9477169159c92f4a2d445d37626cf1fe26732af0b550281b27e44c6f34", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jdk-17.0.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jdk-17.0.2_macos-aarch64_bin.dmg", + "checksum": "7502b95cf9e691197e21637a8e4acfca3a0955aa11f36e47824bf0083085bfc2" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.2_macos-aarch64_bin.tar.gz", + "checksum": "06c28b5365527db346b5d2e121e5f70baaef0ddde07766c59c17bfc577a0e4c2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jdk-17.0.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jdk-17.0.2_macos-x64_bin.dmg", + "checksum": "c00b7a32f7be3e1a400d815c22d0e254cdab0e8f421cb6d63ef8a50c8e8a501a" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.2_macos-x64_bin.tar.gz", + "checksum": "228b9952002dd60e626c46b8ff051e8e25d577d358390cd52dd7e4ea50863cef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jdk-17.0.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jdk-17.0.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.2_windows-x64_bin.zip", + "checksum": "fdc230b23b5114e52ef7bacaabd6d0a121b4ce70cfdd9f477735dbffbf5b047b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jdk-17.0.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.2-beta_linux-aarch64_bin.tar.gz", + "checksum": "55315321b29b6f488dc95ea2efcd4f5c0f73cce7500757e1883358313d007e86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jre-17.0.2-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "9afd4eef6c7b2f0d35b472b2220c35d58e75c702b2382e4d9bb643492b4be66f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jre-17.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.2_linux-x64_bin.tar.gz", + "checksum": "bab999ff89a9bbb567073e05f889aad932543fccd741d245b09380d8edb30418", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jre-17.0.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jre-17.0.2_macos-aarch64_bin.dmg", + "checksum": "ff73799a5a9a6ded9edb137c8782a9619a1ee296c1d0232d4e0c471c24589bc2" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.2_macos-aarch64_bin.tar.gz", + "checksum": "ede53113b50f33c6c7b15a20d1c63e5689816a7c7eb9302581b4d0b3d8e5c8d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jre-17.0.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jre-17.0.2_macos-x64_bin.dmg", + "checksum": "30e20815324556dc59f9a9f6c60b7b1352f4f9567e3dd40706ec95ca7c9b5c68" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.2_macos-x64_bin.tar.gz", + "checksum": "26a08bace25e4c7634cdf0f0a3c8cce7e7f3dcbcbe1d1c6b685887a0582294ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jre-17.0.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jre-17.0.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.2_windows-x64_bin.zip", + "checksum": "08168660dcfbd10ce809d218427c67702b8cebeb3c8eb9b990520e79ff9d165e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2/sapmachine-jre-17.0.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.2+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.2%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.2-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "471d6c61e2ca20518f80296191c69f7f39cafa5a4486cac969bd9f6dc1b69d10", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jdk-17.0.2-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.2-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "590b7180b920d62add39af54e2e0aa016fa97a91ad0b1e72b29febd04bc6a80f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jdk-17.0.2-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.2-ea.8_linux-x64_bin.tar.gz", + "checksum": "39e3e4f8d3755272527031448a590f24808f3222caca1a91855dc517a20f51ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jdk-17.0.2-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.2-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jdk-17.0.2-ea.8_macos-aarch64_bin.dmg", + "checksum": "531b84c4ba9354c6a9fa213513abab251811dcf5402be528ebbb9fb823f4a280" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.2-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "181fdb2ec17650203488d9f676882164992ced7c068133d199e08897ecca37bb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jdk-17.0.2-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.2-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jdk-17.0.2-ea.8_macos-x64_bin.dmg", + "checksum": "8f8e2f30946e677ecf7403105f2b713863b173bf850dd6d17be61af4c46728c6" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.2-ea.8_macos-x64_bin.tar.gz", + "checksum": "f7bc5ef38ca1fbaddb5b04f0e62fba7bfef12d22978597536df6f97d82a86a67", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jdk-17.0.2-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.2-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jdk-17.0.2-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.2-ea.8_windows-x64_bin.zip", + "checksum": "d834bb711424e7a4c521657e58e377c3734cb8e83def48ba2e39f8a36f298440", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jdk-17.0.2-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.2-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "95e7e742880dcce13533a50960e14b3c8765f459d463694c8487ea1a5e1e66eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jre-17.0.2-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.2-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "f79e689697924df0a7df6cf5ce92169fa628ec1275a1bbff3cd7a42f7ba75172", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jre-17.0.2-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.2-ea.8_linux-x64_bin.tar.gz", + "checksum": "85e886d7081216595b213f779212d0893c32b3f6b643dc120c090b1916fe1c58", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jre-17.0.2-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.2-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jre-17.0.2-ea.8_macos-aarch64_bin.dmg", + "checksum": "53bf37f9c1428bd308222d92cd8209ff06ac793a5b744071625347274c30bc7d" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.2-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "3d3ff6a3c2cf090fdf038daa5e9f9e4dceae22f72ef0d5d47b205ef66b07ad24", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jre-17.0.2-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.2-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jre-17.0.2-ea.8_macos-x64_bin.dmg", + "checksum": "e4dd10b1b9520acefe5a7acf95b260d2886380843dae0e4a653821e8ba18dbcb" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.2-ea.8_macos-x64_bin.tar.gz", + "checksum": "d68289885bdb4bf21e086bf06d0ed64eebceed863422fd69faa5b45e9642ccf0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jre-17.0.2-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.2-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jre-17.0.2-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.2-ea.8_windows-x64_bin.zip", + "checksum": "0ba62227a79c4abf8cb1334f0f51e296d3f01ce09eae8244feaa73a30182322c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B8/sapmachine-jre-17.0.2-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.2+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.2%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.2-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "737ede4b1b1d4d6c7153b16812b55a275d5c9e3f566e5ae6ae9681018ac6483e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jdk-17.0.2-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "0843dd6a29ac5b4ffd5c1643be8a19b1a51d5d2deadb2d78c083e7146548c9e6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jdk-17.0.2-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.2-ea.1_linux-x64_bin.tar.gz", + "checksum": "36625bf74c9593b48b55830d4b3f0745d2b3b63c5c19c3e63fef85caeaf5749c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jdk-17.0.2-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.2-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jdk-17.0.2-ea.1_macos-aarch64_bin.dmg", + "checksum": "008d7b160ab8fcdd07a38f25adcf6d39c463e1ea9b672d1a591b29c6a18488a2" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.2-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "c7e25fa9312b8ef7fd983975cdb2fc2cfbf8baa99f621aa988f5409717987d6e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jdk-17.0.2-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.2-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jdk-17.0.2-ea.1_macos-x64_bin.dmg", + "checksum": "42c4a6818196b168d1b644380d7f4480b9eb969224047e55cc457836a4596e83" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.2-ea.1_macos-x64_bin.tar.gz", + "checksum": "89ef8f7c8c1916613a3a9e8d447e10252a64b0192095cae22c94c666e07fd37b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jdk-17.0.2-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.2-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jdk-17.0.2-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.2-ea.1_windows-x64_bin.zip", + "checksum": "53cbbd4b2dd65c50b91fe00fbbf36cf0addacf8bdc869decba2a23005c741a5f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jdk-17.0.2-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.2-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "7b4c757c727ac30faee7c0350f7fd1322dd3b323edfbcd3f3fba204fb82f02b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jre-17.0.2-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "1e9b68016c6e15943d82358e7990941d6d63cb70c5849c25fa085803052ba494", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jre-17.0.2-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.2-ea.1_linux-x64_bin.tar.gz", + "checksum": "ca00eaa9fc40528f2cd6d882ba2caf2adfb964b0cda6560312f64dd5dd22cd0d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jre-17.0.2-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.2-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jre-17.0.2-ea.1_macos-aarch64_bin.dmg", + "checksum": "d97d875e35868a0cf3f9c40c9198fc42f5b44c961e54953a4a433e1bb8948dfd" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.2-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "e52f5022dac0b64b8891fbb11528d8a3480de33f4c53c108d2e7c7ffb615c74c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jre-17.0.2-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.2-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jre-17.0.2-ea.1_macos-x64_bin.dmg", + "checksum": "b53fb6a76b0ae54457c379400fcecaadcbb50e180f79612bcf11af8e95163e9c" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.2-ea.1_macos-x64_bin.tar.gz", + "checksum": "f6332da9b537027cdc414d20c35e13365e19f9124a26977890a7868a311e833e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jre-17.0.2-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.2-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jre-17.0.2-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.2-ea.1_windows-x64_bin.zip", + "checksum": "7b0ca0e62b48f0da51dde7d3a24668a46ea2597e94c44e5c3daacad74632a6f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.2%2B1/sapmachine-jre-17.0.2-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "17.0.1": { + "sapmachine-17.0.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "d4563d246b93945b417026598224a8bf805b9965450942e036589b92c0c3f076", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jdk-17.0.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "2c1f7cd6a71c2cc1c00bbcfdcf31db1dc3117a81d0bde09fd9882a66e189c88d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jdk-17.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.1_linux-x64_bin.tar.gz", + "checksum": "247fbd090b4584f725ab92e5747d31a181ff77fbb31dcaea449574862ce5a249", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jdk-17.0.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jdk-17.0.1_macos-aarch64_bin.dmg", + "checksum": "958c37a0875a822e93302365701dbd78546da5371948615f617154b056585108" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.1_macos-aarch64_bin.tar.gz", + "checksum": "47c47c4a11d4795178d63928d7f8e505e538d61512e731add85cd989accc6bab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jdk-17.0.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jdk-17.0.1_macos-x64_bin.dmg", + "checksum": "86a3c95d2f7f478677aacbbd498637027b5f270652be75690f475b22483cbef5" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.1_macos-x64_bin.tar.gz", + "checksum": "48d1f69ea8123f017e6a3a47b4fae15480c24b2e06d45fbe15756f5c05c8141e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jdk-17.0.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jdk-17.0.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.1_windows-x64_bin.zip", + "checksum": "eb8d9c5ec4cd3b990b7125e302ff681bd2fbccb2cdbf1cc0399a2077b1470841", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jdk-17.0.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "186063a1c73249c48e5c34c9b80dd14663309e5ccdddfb668fcf4c70b7174e3e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jre-17.0.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "d6379aa47e8c0325dee954d0506dbb85bce3b5666be021dc1f3ca7373540970a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jre-17.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.1_linux-x64_bin.tar.gz", + "checksum": "47d2b36b65d119483bdf0b500aee1112234836d3181df507deb6ee5361e71a7b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jre-17.0.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jre-17.0.1_macos-aarch64_bin.dmg", + "checksum": "1974791da9773c5d96a2ca80c0ebb7d8aa5528b6cd5fc4fe4f5fbb993e8514b6" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.1_macos-aarch64_bin.tar.gz", + "checksum": "ea018d80e4551291b65e6db480426a376dccdc1ef0dd4a48878795caffe026c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jre-17.0.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jre-17.0.1_macos-x64_bin.dmg", + "checksum": "1739c62f05a1d9b67d521bd749689711a4fd789ecfe60b997a4c259b6963ea5e" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.1_macos-x64_bin.tar.gz", + "checksum": "abc1c67d8d604f555064ed457542c33d4bc358c8dca558b88f2b5b4c47d9b9ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jre-17.0.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jre-17.0.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.1_windows-x64_bin.zip", + "checksum": "47566ab3c794e65c9e75ec494c8bba54fce35de236f36d0f1a8d14a7f00cfa24", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1/sapmachine-jre-17.0.1_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17.0.1+12": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17.0.1%2B12", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.1-eabeta.12_linux-aarch64_bin.tar.gz", + "checksum": "84098b51cc0a330d55b97c12874cc865202eb05b83ecd5bf1acaa2caf6dc438e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jdk-17.0.1-eabeta.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.1-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "82ab8008e2715152479709357580f9e820b7c92a23d41ac2afb2ad3a46ce6e3a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jdk-17.0.1-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17.0.1-ea.12_linux-x64_bin.tar.gz", + "checksum": "75d9a7ec61e3e6b7b48b93c47ccafaf38c9b72e7c9b7fa12090028285d2e5126", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jdk-17.0.1-ea.12_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17.0.1-ea.12_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jdk-17.0.1-ea.12_macos-aarch64_bin.dmg", + "checksum": "813dd76525326126a9472678a18f2dc4aa0487dab84b648daca493b5e4b072b5" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.1-ea.12_macos-aarch64_bin.tar.gz", + "checksum": "b1d66d3dc711b8563f061761c312591a1abe58f5e7353d91c0213d64daa6af20", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jdk-17.0.1-ea.12_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17.0.1-ea.12_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jdk-17.0.1-ea.12_macos-x64_bin.dmg", + "checksum": "7493822c5350e43bcc4aaf1ab7c7de635ec67527cb2b5c292784248f270e7954" + }, + "tar.gz": { + "name": "sapmachine-jdk-17.0.1-ea.12_macos-x64_bin.tar.gz", + "checksum": "14f64decb8b819b852b491380e9da70452eaeeac0d3c26ad51206c8ade5b5a79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jdk-17.0.1-ea.12_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17.0.1-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jdk-17.0.1-ea.12_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17.0.1-ea.12_windows-x64_bin.zip", + "checksum": "6491db1bdcff88685b4dfd86a8b69c142da83981cb981b786ace7da3f4e86d07", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jdk-17.0.1-ea.12_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.1-eabeta.12_linux-aarch64_bin.tar.gz", + "checksum": "c72ab75e5b079efa5083b1fb576ae0b39a2687e708c7a9b939932eefee730357", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jre-17.0.1-eabeta.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17.0.1-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "404b1141f6f011c1e4bb9212bfbc3b1e5a982d0c78e77cc6b8dc11935671df06", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jre-17.0.1-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17.0.1-ea.12_linux-x64_bin.tar.gz", + "checksum": "8f246eb73c4e641d1ab207d4ac80b4b768b72adbdbd547d794af0903fba87c12", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jre-17.0.1-ea.12_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17.0.1-ea.12_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jre-17.0.1-ea.12_macos-aarch64_bin.dmg", + "checksum": "b57f79c0b3a66b407cf8091e54755db28ce97f72a583a34d73296c6bb23f7caf" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.1-ea.12_macos-aarch64_bin.tar.gz", + "checksum": "7470797d58c84a27629a658957de854c0c3f8cc0c29407ec943677cf2e2a01f0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jre-17.0.1-ea.12_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17.0.1-ea.12_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jre-17.0.1-ea.12_macos-x64_bin.dmg", + "checksum": "441d626229e6bd1370cb92cc42fa18cb28dbe40d881d7555925845b837a97bd0" + }, + "tar.gz": { + "name": "sapmachine-jre-17.0.1-ea.12_macos-x64_bin.tar.gz", + "checksum": "11b754b1eb50b55e9ccf3f97b486714cd6461f2dae6536bbcd21ffe49a721aa3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jre-17.0.1-ea.12_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17.0.1-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jre-17.0.1-ea.12_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17.0.1-ea.12_windows-x64_bin.zip", + "checksum": "7488b54c075de51f4ea2c02d4485ae6c2eee20abd5ee5b04a25f59ae22e049d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.1%2B12/sapmachine-jre-17.0.1-ea.12_windows-x64_bin.zip" + } + } + } + } + } + }, + "17": { + "sapmachine-17": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-beta_linux-aarch64_bin.tar.gz", + "checksum": "101c4074d6bc21334045eaa2b17a6848473be9a6f37a798254683230ab3bb392", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jdk-17-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17_linux-ppc64le_bin.tar.gz", + "checksum": "013f4052931e83aa92d7cc638bf238affb43cf92a513064b7c3667bdc8c16f45", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jdk-17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17_linux-x64_bin.tar.gz", + "checksum": "0d1eb78051983ade81b7190150329c53c866d44a7416acf7c6f9a6f5c9da595e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jdk-17_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jdk-17_macos-aarch64_bin.dmg", + "checksum": "e993513eb8837399507009ebbc8f980de6fd57ce55196a2e102bfd7fb617530f" + }, + "tar.gz": { + "name": "sapmachine-jdk-17_macos-aarch64_bin.tar.gz", + "checksum": "f5d47a9b612ddd724d23f6641cc4985ab579e134bc79bc264794194b25926816", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jdk-17_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jdk-17_macos-x64_bin.dmg", + "checksum": "0b29168998bf0a72107aca7eff5a1d80a9dacbe5af5cbdbf6026a746ff093dfe" + }, + "tar.gz": { + "name": "sapmachine-jdk-17_macos-x64_bin.tar.gz", + "checksum": "b318751a39c9ca22eba42dda68f7e8b13c137bb7e6d9b108f6ad628577bd0fbd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jdk-17_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jdk-17_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17_windows-x64_bin.zip", + "checksum": "d0061a21d05d9346ccdd3da8423298b120df1de555b5a754485e90b5a175ee6b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jdk-17_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-beta_linux-aarch64_bin.tar.gz", + "checksum": "ea5a9951bc963824f7d6b3925fa943642a7fcee2acda2446be7e78728cde900a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jre-17-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17_linux-ppc64le_bin.tar.gz", + "checksum": "98aaa64dff564d00bf600ade92ed3e6b17df5a60873f8b7168479ff715bcbc17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jre-17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17_linux-x64_bin.tar.gz", + "checksum": "4e0955f39519947c184d40b71871b4a7f0c343043bbd3e5e0b041cc00d70bd05", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jre-17_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jre-17_macos-aarch64_bin.dmg", + "checksum": "83837fa38b00fdee83023358e50f4542170ea0946a62fab269ab1c4e3dc0eca3" + }, + "tar.gz": { + "name": "sapmachine-jre-17_macos-aarch64_bin.tar.gz", + "checksum": "3cfef9794b762f7641856346847a7fdabdd00e8f35b6032bdc1df91c13b4f4f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jre-17_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jre-17_macos-x64_bin.dmg", + "checksum": "011dd0c7a002a979d8dce8625952bb1c8c327fcd58b13b19779956543dd41b1b" + }, + "tar.gz": { + "name": "sapmachine-jre-17_macos-x64_bin.tar.gz", + "checksum": "df56fdc84b0160ded36cb301129678aa142b785236fded43b38c629817c7c98c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jre-17_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jre-17_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17_windows-x64_bin.zip", + "checksum": "6b7d488913a8e7b0319d27b2412a2e46eef4f1bdb79877b1af4a3a5d2ba60229", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17/sapmachine-jre-17_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+35": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B35", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.35_linux-aarch64_bin.tar.gz", + "checksum": "050aad6ab075cd5385d45bf205cbf530c4234694d2e1aaf1b5bf97b465073815", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jdk-17-eabeta.35_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "925277cb0432e9f8572a29f17f537e04d64511447ca0e8daff19e0acb6d161c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jdk-17-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.35_linux-x64_bin.tar.gz", + "checksum": "59e842aa3f632905574ab225fd1ce0b918687cc82280d24cfe9fbe6e16eccc7c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jdk-17-ea.35_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.35_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jdk-17-ea.35_macos-aarch64_bin.dmg", + "checksum": "5c77ebb93d2cdb0ba3df4ed4aeb297990c6eb4bde3aad00e91e01d36177579de" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.35_macos-aarch64_bin.tar.gz", + "checksum": "993290f1cf125651a96caf8b8994e0fa83362644be81ad46b5aa91a685bd8c94", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jdk-17-ea.35_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.35_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jdk-17-ea.35_macos-x64_bin.dmg", + "checksum": "8db62e5bb8561fb807cd60e3dc5ca815e7811b664a1487d24715dcd280b7ffb3" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.35_macos-x64_bin.tar.gz", + "checksum": "2250133447426fe4ec9722f5fdd65f00ddae25e75f5682df18150c7fd8dc37b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jdk-17-ea.35_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.35_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jdk-17-ea.35_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.35_windows-x64_bin.zip", + "checksum": "6c54829318d3b7d0d9b1f185db07c094116c26b15c274dcd19e6cec414162599", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jdk-17-ea.35_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.35_linux-aarch64_bin.tar.gz", + "checksum": "0492435d6640e8097bcc0a28604624f29bfe84479f148cc0a2bf4fcd98742d13", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jre-17-eabeta.35_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "38bf7d45de87b2669dcd8625cb79fbea9409a141ce4e20c5ea49fc3c9cc5edbb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jre-17-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.35_linux-x64_bin.tar.gz", + "checksum": "be0bf3b952dd22c11ddb9232bb0680f07632abc1c3f072b64825e8e7fe86f17d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jre-17-ea.35_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17-ea.35_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jre-17-ea.35_macos-aarch64_bin.dmg", + "checksum": "ca0065215e406213d16340eeab5ace5185f617073267219a39e95eb62b2c1c97" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.35_macos-aarch64_bin.tar.gz", + "checksum": "a506e69108e37748dc02067172431dd63d9bdcdbcbd8d45293f5606b623d01d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jre-17-ea.35_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.35_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jre-17-ea.35_macos-x64_bin.dmg", + "checksum": "dc2f78bd54038f7d79e79ad33d3d5a971a1e1d569670d2f3f3e2d987f5d9bf24" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.35_macos-x64_bin.tar.gz", + "checksum": "6f27e87952e3d25f093a90aaea9adb002663c1af1e03d8cfb74d35c8ff39dbc8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jre-17-ea.35_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.35_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jre-17-ea.35_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.35_windows-x64_bin.zip", + "checksum": "ba7609119ccd73a034e2a3134aebd21f773973d26637d8c233c2239738562941", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B35/sapmachine-jre-17-ea.35_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+34": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B34", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.34_linux-aarch64_bin.tar.gz", + "checksum": "2d2b5d6e9d0e7ea442cb697ddc3f07daf0f1c30fbf534f39e714aa6e51d4e0bb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jdk-17-eabeta.34_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "cf9b31195338ad103c4d89bc13f9e9a5815dfe248b8d6441844af1aeb46609c1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jdk-17-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.34_linux-x64_bin.tar.gz", + "checksum": "4a194362744145962d32805c140cfb6825db6cbb00b0b76cd0e832d1783cde88", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jdk-17-ea.34_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.34_macos-aarch64_bin.tar.gz", + "checksum": "cc1ac70ef52377f5c2c78d1729f4ed9303e4b3d5a83ec46dfcb69537eb55a2b6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jdk-17-ea.34_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.34_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jdk-17-ea.34_macos-x64_bin.dmg", + "checksum": "80e4c1e9fce1a6b51cef50a8db4b67a8df86ca2b0b8850d2eeb84fafe2cc433d" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.34_macos-x64_bin.tar.gz", + "checksum": "022eb3638d7c237d2eea6ab4fa7ca2fc8583ca02910569ca736224f728ff0943", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jdk-17-ea.34_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.34_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jdk-17-ea.34_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.34_windows-x64_bin.zip", + "checksum": "9d28c2afa0b86c6b194f09220d0fe9eca3db7f23073b40a557cff5e4cfc5992c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jdk-17-ea.34_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.34_linux-aarch64_bin.tar.gz", + "checksum": "56a732a97dd92dd358ce47980e268e3d702561419650ef851f397c51998d60a2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jre-17-eabeta.34_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "ce046356005b54f4640c7f050c89eaa58116976998f39fe13382f94e00f72a4c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jre-17-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.34_linux-x64_bin.tar.gz", + "checksum": "65b87cb7a3dcd534c8d1fe612503bbbcc71b3c1562fd08c1390f643e4a48f8d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jre-17-ea.34_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.34_macos-aarch64_bin.tar.gz", + "checksum": "b0acad8fb08e7455ab281ec17bfc899ca7f040411bc12f61753294175cc3f73e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jre-17-ea.34_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.34_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jre-17-ea.34_macos-x64_bin.dmg", + "checksum": "ff091d4034ebe0050f311675d5f7d6a63dfd917b827c3be987426853909f7b66" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.34_macos-x64_bin.tar.gz", + "checksum": "be07e95e6ec5893a2564b7e86791ad2ca64b05e77ff1fbea0195f15ed772159c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jre-17-ea.34_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.34_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jre-17-ea.34_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.34_windows-x64_bin.zip", + "checksum": "83d11af4b77769d702041b3775e996c392981476924c167ea10c1c12ea6efc50", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B34/sapmachine-jre-17-ea.34_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+33": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B33", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.33_linux-aarch64_bin.tar.gz", + "checksum": "69804020fe94e8360019039f04e7b193412bf7e8636270e859f1dd105ab49608", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jdk-17-eabeta.33_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "4bac3cfaef030709ea3b169b79f6bc985bbc74d279b033e21f5021e5777069be", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jdk-17-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.33_linux-x64_bin.tar.gz", + "checksum": "a3cd6d7f2d751d9620a5b67068774cfb8ccfcd0e4e3dc43edd6ac3385f2aedb8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jdk-17-ea.33_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.33_macos-aarch64_bin.tar.gz", + "checksum": "132c4898e3cb810d888dbd171e186ebb7edfb1087c6cb4f44f8e7dcf167d9fc6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jdk-17-ea.33_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.33_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jdk-17-ea.33_macos-x64_bin.dmg", + "checksum": "0744b5cb762c20005f68f345bd3fd453f2f0c1863473080b46cabdfaee8a2a3d" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.33_macos-x64_bin.tar.gz", + "checksum": "bd0e3f3c055612c2162e062659a6e66f6c34c4e9fd10cbf757b27fd546f89fcb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jdk-17-ea.33_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.33_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jdk-17-ea.33_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.33_windows-x64_bin.zip", + "checksum": "00fa8e9bb88d50346b72685d8fb8726afd9229e5429a7718050dfbfc296042db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jdk-17-ea.33_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.33_linux-aarch64_bin.tar.gz", + "checksum": "a26a9fdb5abb79968f546aa1f3cc8eeee0d3b1fc8dec98181c43484c07e78ed4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jre-17-eabeta.33_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "4cbba2c4923b720e06d25fa0a6e3f762790f243503b8f1d09dba91abaf359030", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jre-17-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.33_linux-x64_bin.tar.gz", + "checksum": "b633f32ab887eed6e41447a5dd01bab55841463a55df396798fa0441340ad2f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jre-17-ea.33_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.33_macos-aarch64_bin.tar.gz", + "checksum": "6e0362d86302cc6e1be69489b6ee71ad384e021011c119fbca0552ee125a57b2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jre-17-ea.33_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.33_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jre-17-ea.33_macos-x64_bin.dmg", + "checksum": "30ce5469b75c429bb1f674525bf21cf0582f1136e1d6224d5d291a60dac636a8" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.33_macos-x64_bin.tar.gz", + "checksum": "50365d9a3b306e506b2f427e33ef489917fe733cfd347ec9c9496c8956f866b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jre-17-ea.33_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.33_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jre-17-ea.33_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.33_windows-x64_bin.zip", + "checksum": "6a8dfcb06e857425c493a49be1412c174b902e63a630e884b00f5b58d570a7c1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B33/sapmachine-jre-17-ea.33_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+32": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B32", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.32_linux-aarch64_bin.tar.gz", + "checksum": "91de8a9fc9c92b1f57e83be27bff2387bf794ff3d4b3e60136e9793745f522fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jdk-17-eabeta.32_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "49fb2ef80e81eaceb5e7e64993571799d2f1b757d7d9867d751028df85d9ca4e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jdk-17-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.32_linux-x64_bin.tar.gz", + "checksum": "54383f8904e84cc7b57a11ecb7f1467be51c9f0559007edc3beddbfbce9b61a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jdk-17-ea.32_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.32_macos-aarch64_bin.tar.gz", + "checksum": "a8e0a4da9e232e2934bb92273628eb219931d893e27991f6714cba5cc47c102a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jdk-17-ea.32_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.32_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jdk-17-ea.32_macos-x64_bin.dmg", + "checksum": "dd91d05669f310eb2809210ae3838e777200c5fcee49aee7ce1d06de5b532710" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.32_macos-x64_bin.tar.gz", + "checksum": "a327220f0991807c16da30f02fd89b23d16419088f51a832a1a89b13acebcb11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jdk-17-ea.32_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.32_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jdk-17-ea.32_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.32_windows-x64_bin.zip", + "checksum": "9dfcaf4006a135406cbb67aa87ee80caef6bb60fef89b2d3e96f365a70406375", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jdk-17-ea.32_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.32_linux-aarch64_bin.tar.gz", + "checksum": "17cc9125062eab740f8bbd20bd1542dac64b61c5e3a96d6c2a76663c25dbd2bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jre-17-eabeta.32_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "129c437db4c1e7586b9bc5781ebcc8b9c0bba67d8e9e0b5183a4f2567ce1d281", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jre-17-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.32_linux-x64_bin.tar.gz", + "checksum": "a97187b1d69af16deb76f8543b8bf90ef6f54ed545e3a69e360332092e4b451d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jre-17-ea.32_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.32_macos-aarch64_bin.tar.gz", + "checksum": "4e8a59fc564fca5d45495453e9b9056d8e85eda1efca3524856e9e0cfd0a2658", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jre-17-ea.32_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.32_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jre-17-ea.32_macos-x64_bin.dmg", + "checksum": "c26292f00254eeabb2869b6f15c3e4d16fee0d2c649736885bc488b2a2e7a94b" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.32_macos-x64_bin.tar.gz", + "checksum": "5e008bb19819943d89a0954b2d9cbdbe763ebd85daa07bbf31acddfde717fcac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jre-17-ea.32_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.32_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jre-17-ea.32_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.32_windows-x64_bin.zip", + "checksum": "609d022d27a7ce4b3da233e5aaa762a669b5402c64add3c1210435b5ad0bdea4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B32/sapmachine-jre-17-ea.32_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+31": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B31", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.31_linux-aarch64_bin.tar.gz", + "checksum": "7ad6da997685d6d0d42581818678940d1747736fb7a40d91358f1d0fad646588", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jdk-17-eabeta.31_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "42a1065565db1e879224eb3c41895e001cf85371657a153d3684be600aff1b5e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jdk-17-ea.31_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.31_linux-x64_bin.tar.gz", + "checksum": "9fd1a1ceaf6b33ab7eba15fb36eea03a08063b74a16a0e6764eb4acc1a029e37", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jdk-17-ea.31_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.31_macos-aarch64_bin.tar.gz", + "checksum": "73e8a9cd670c59e370d1be1365dc7adc47ebadff0df2ae5dfb91ecf7ce543316", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jdk-17-ea.31_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.31_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jdk-17-ea.31_macos-x64_bin.dmg", + "checksum": "bdc6beb7133201275cc7405b8de5334466b394180b2b4e9857fe7417c3df910a" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.31_macos-x64_bin.tar.gz", + "checksum": "8c529e6e1b10b92c73438b87c0b822376d551c5cf0fc9fc99627f841030f4148", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jdk-17-ea.31_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.31_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jdk-17-ea.31_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.31_windows-x64_bin.zip", + "checksum": "d857d2fb56018a0bc3648e743edcdca0e0dacd2f3155af66843f872402c0de8c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jdk-17-ea.31_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.31_linux-aarch64_bin.tar.gz", + "checksum": "10b3de88484d5072a2e4679d5c5f0873823dfaaa6e0376e6b8156dca9138edc0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jre-17-eabeta.31_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "abfd2e607733b769beda76b1e3e6d804fb85fd699ad64f6368042eb8c99ea703", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jre-17-ea.31_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.31_linux-x64_bin.tar.gz", + "checksum": "4fb488ecbd17e88a52289a403a19e21490fac0b0d07b1c88f473c303e517cbd2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jre-17-ea.31_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.31_macos-aarch64_bin.tar.gz", + "checksum": "a53c3c3306bcf44f275d9b5084a02a587cc75c13005cf4c75890ac2d4d4dffc0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jre-17-ea.31_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.31_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jre-17-ea.31_macos-x64_bin.dmg", + "checksum": "3c3a75a82e793ae334b8d9d005aa2d87621df762a80ef0f1fcbe597f1e1895b0" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.31_macos-x64_bin.tar.gz", + "checksum": "77567ab7793ca9a6edac1a8feb4a6988e2615a24255faa954ffa3ac94e3a3644", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jre-17-ea.31_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.31_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jre-17-ea.31_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.31_windows-x64_bin.zip", + "checksum": "941f19b88da5c1545a91ae7a4ac3493003e9251e8ceebc43f77b39d334906ca4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B31/sapmachine-jre-17-ea.31_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+30": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B30", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.30_linux-aarch64_bin.tar.gz", + "checksum": "493a2f62e069a1bf3f2ff949ce171f073a58d247126b57a2f972050628dbd146", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jdk-17-eabeta.30_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "c8917ab5121c47f2666923613ace008b0c1b9314d530a5cc8174f88a6870dc4e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jdk-17-ea.30_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.30_linux-x64_bin.tar.gz", + "checksum": "28994bb828c87e40bc389d458b5c622faf752d6b7f83a6d2af5ca3788d1cdd99", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jdk-17-ea.30_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.30_macos-aarch64_bin.tar.gz", + "checksum": "d393ae4a3c99c0198d2aec4c0641096bbe4c423707b9128e2ec16f32b4e9df25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jdk-17-ea.30_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.30_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jdk-17-ea.30_macos-x64_bin.dmg", + "checksum": "c3ea60d0c6c36cdfef6bbd45c5e3f440d76338d14e3918ac7d6be2bebf542f87" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.30_macos-x64_bin.tar.gz", + "checksum": "eb21f904a25e56a48105a58e511b1f637f90df436acaa7eb48f5c84671df1444", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jdk-17-ea.30_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.30_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jdk-17-ea.30_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.30_windows-x64_bin.zip", + "checksum": "aa92e002bad8b45aec8accc733c0a9a0f113f21fc7b0fa423963cd26046579ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jdk-17-ea.30_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.30_linux-aarch64_bin.tar.gz", + "checksum": "2b7f18d5e9942471953619d4326226601b6f0d12b39484eda5ceb387de95f19b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jre-17-eabeta.30_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "852a885087a2ff072161305efdad153c61285944e2978b789ada91d7b5391b89", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jre-17-ea.30_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.30_linux-x64_bin.tar.gz", + "checksum": "2d715e2025a9ec4fb210253b7ea3557510db8bcce065d89db54d8cd020a3a1b6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jre-17-ea.30_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.30_macos-aarch64_bin.tar.gz", + "checksum": "0fdc67250480859e82d5ffde258997519f64b9426b7b7e0c46d89fc22dc6cd0c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jre-17-ea.30_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.30_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jre-17-ea.30_macos-x64_bin.dmg", + "checksum": "99828db620e91c78df2894871768b7ceadfe5ef6240c3a5fca1213ec255e3bf5" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.30_macos-x64_bin.tar.gz", + "checksum": "fdcec507129ce1c86308f9d25d9f6fc0b4556ccf666b703cca2cfac20f42ee80", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jre-17-ea.30_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.30_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jre-17-ea.30_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.30_windows-x64_bin.zip", + "checksum": "b7cdc739d860c3548feba6f1a4758617565fb5bca8569b128290d79db45fbee2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B30/sapmachine-jre-17-ea.30_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+29": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B29", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.29_linux-aarch64_bin.tar.gz", + "checksum": "05fa39e6763f8567ff45f36bd4f0c159b2eb3d66030317383ec146b800e33433", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jdk-17-eabeta.29_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "0f80d80f80c3569d7f482f8d96dd8be2aa34b641539bfd64c3fd7722742a45c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jdk-17-ea.29_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.29_linux-x64_bin.tar.gz", + "checksum": "a2bb6d04aac17e367d6c80fb1cb3ec994051ab7c22717228f51ec376cb9c4322", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jdk-17-ea.29_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.29_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jdk-17-ea.29_macos-aarch64_bin.dmg", + "checksum": "d078ce51ec79b3af1eebb84b30fd9fe4f9b36ef65d22036a8c619f1824b3f1e2" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.29_macos-aarch64_bin.tar.gz", + "checksum": "be35df62d5a77bb9f6f3c4393840bd41ec3800b94ba6b414651d25e8f9f5261d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jdk-17-ea.29_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.29_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jdk-17-ea.29_macos-x64_bin.dmg", + "checksum": "ebb774502efa3832a7c3b2001a5f6befefbb5953edc879fbf37032c72bc1c819" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.29_macos-x64_bin.tar.gz", + "checksum": "5c0f7e1f4f6c3be769fcc4165ae1628d9f1bb9fac53a90dc6c865ed7779c486b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jdk-17-ea.29_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.29_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jdk-17-ea.29_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.29_windows-x64_bin.zip", + "checksum": "3dcad502d1700234a6138829c2614cc82c523a5c5ea01ff2449174b5df455a94", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jdk-17-ea.29_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.29_linux-aarch64_bin.tar.gz", + "checksum": "ef4db92cc91006cfe449444097a1a2d9f5a81860c6bc9ca0355ef159a9154672", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jre-17-eabeta.29_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "bc3a15cba40b7dcf262a3bda33a762644cb493460e8c5bb98852cc39c8f07076", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jre-17-ea.29_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.29_linux-x64_bin.tar.gz", + "checksum": "4ce5376ff08a89a1b23700996910be5f010016ab16ed2b74d38fb1b76a502b74", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jre-17-ea.29_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17-ea.29_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jre-17-ea.29_macos-aarch64_bin.dmg", + "checksum": "74f122a414e06218cacf91a1ae58bded6d065e3ac7a167eca9743bbdb23874b6" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.29_macos-aarch64_bin.tar.gz", + "checksum": "ae059485d1cc45221f8f3285a266be3b68124eca3861633140a3fa755e92a1b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jre-17-ea.29_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.29_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jre-17-ea.29_macos-x64_bin.dmg", + "checksum": "984f3e28ff017e6ee27074027353a983869e18d21d1c43a96b2d918e170d3cfc" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.29_macos-x64_bin.tar.gz", + "checksum": "27b41e14d8d48527a317fc27c82d6d03a58d8a92c3181de13855e128171f4600", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jre-17-ea.29_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.29_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jre-17-ea.29_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.29_windows-x64_bin.zip", + "checksum": "34c978b6c78ade4d623502b45291ca20fb5c18c5fa28a04caf45d10d0fca73cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B29/sapmachine-jre-17-ea.29_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+28": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B28", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.28_linux-aarch64_bin.tar.gz", + "checksum": "cf4dbb29e4d4b4ee32392e08de5f0e67bb01cbae063e048c422b714c601cb674", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jdk-17-eabeta.28_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "f6bb42afa951b69eaa6020770dc4f2777da8296240eea60808576e00450e35c2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jdk-17-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.28_linux-x64_bin.tar.gz", + "checksum": "c8a2c621191d6357e2cc4d4e97eb082dff8ef667ab8d1e5d4bfd19fb949b572a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jdk-17-ea.28_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.28_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jdk-17-ea.28_macos-aarch64_bin.dmg", + "checksum": "adde1d002da90c9dd25b829dbe15bbe4ce5e5d04789a4e4b0c2e759e2c9a53cd" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.28_macos-aarch64_bin.tar.gz", + "checksum": "d6463f5dac90323c870f93549db984d0784c380715b05d86e9e02afcef614746", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jdk-17-ea.28_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.28_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jdk-17-ea.28_macos-x64_bin.dmg", + "checksum": "79c95f2e20ca858c90f798eaddf9a57cbff2058f9193364ed0395326d7d8d220" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.28_macos-x64_bin.tar.gz", + "checksum": "8ba44a4a37ac41ff0ff1ad75ef744f21976b2d4fdd445d56ff67df2b03018d89", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jdk-17-ea.28_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.28_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jdk-17-ea.28_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.28_windows-x64_bin.zip", + "checksum": "9259894c9342fb11b0a33fa7ab199c8ed7c41cb118ed429532a5ee8e4968c05d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jdk-17-ea.28_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.28_linux-aarch64_bin.tar.gz", + "checksum": "9cae2b06dfa6d1605a5ad3b392b45c92a590d7bda7de1178becd9d8389776479", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jre-17-eabeta.28_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "f7a1ef159bdc88c99bdc5b8d4c7013e337d071e3347ea78bffaba3a361cd16d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jre-17-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.28_linux-x64_bin.tar.gz", + "checksum": "8d7bd41e02bf3f0930081da5891da73cd4bb17358604a2854146cb6015607e16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jre-17-ea.28_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17-ea.28_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jre-17-ea.28_macos-aarch64_bin.dmg", + "checksum": "b7426b68ba47767dcc7b6247a4bbbb834966b1553f3e4af844f42a9cee4d5530" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.28_macos-aarch64_bin.tar.gz", + "checksum": "70d51cac864409e46068d3c22aa30b93cedb6e0a88c4c89cfc718ae861034c1c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jre-17-ea.28_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.28_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jre-17-ea.28_macos-x64_bin.dmg", + "checksum": "f0b1d53de348af3499ca94a807050e3b6dae29cb1042fd414a5e7a47d8f6b174" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.28_macos-x64_bin.tar.gz", + "checksum": "1ed37ff3e4040de78d5c6f63521f33edba9f02cdb17b1fc0a7ecbdcdfdf2a7f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jre-17-ea.28_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.28_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jre-17-ea.28_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.28_windows-x64_bin.zip", + "checksum": "6b34efc1e5d6225d818568e01bf5779dd3e9476b3398a186064ef0aa326cf8d8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B28/sapmachine-jre-17-ea.28_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+27": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B27", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.27_linux-aarch64_bin.tar.gz", + "checksum": "72b2c8a6979851411cb0e22c562d4b0645a2f05ad9729ceb4b7484312e7bb690", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jdk-17-eabeta.27_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "fc76379d3b112e04653bdaae8efb97244509144c0ec72d8091ab2f51ea6d2112", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jdk-17-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.27_linux-x64_bin.tar.gz", + "checksum": "2f30c8ac7b735b334fe93570d8e1dff488f856aefef88c863b0584ee97e20c04", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jdk-17-ea.27_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.27_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jdk-17-ea.27_macos-aarch64_bin.dmg", + "checksum": "5bac05f7fb76d5af9f7e14d72c88db310f7a12299f6d36f60905bfa3579bd33d" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.27_macos-aarch64_bin.tar.gz", + "checksum": "bc963086a7ea38d1e97412ee432d70632c3d4ef3b61a4fbd24f7e3ab4ede6506", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jdk-17-ea.27_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.27_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jdk-17-ea.27_macos-x64_bin.dmg", + "checksum": "19e5ccd23235ab62fcad8b22b00eb96a72c39c0e5df6715f0c6280013bd91216" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.27_macos-x64_bin.tar.gz", + "checksum": "b01b3201cdd030ee2111930f64cad9733d24c12ab9e2a5b3a5e15d7d2c5c4503", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jdk-17-ea.27_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.27_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jdk-17-ea.27_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.27_windows-x64_bin.zip", + "checksum": "fdf84a5f6f34cb6a324d3440b7c70e975a260c14f0c469613671823aa457cc69", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jdk-17-ea.27_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.27_linux-aarch64_bin.tar.gz", + "checksum": "31b3c244e83817d212a1a45bf0f38272515f418f7e07843cfc2a63bceb98bf04", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jre-17-eabeta.27_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "c0de865aa06a29dc2ba3c5e349541cb353521432bddbabeaf2ca9752283481af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jre-17-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.27_linux-x64_bin.tar.gz", + "checksum": "51f4b4c618ae80e16d4d3281d275fca178fb0adb476f7f445f29cabb15e841d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jre-17-ea.27_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17-ea.27_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jre-17-ea.27_macos-aarch64_bin.dmg", + "checksum": "d97f223bae4fbe7c49aeb7767a520b9bac2b2883e36609cf4a56374d5accd053" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.27_macos-aarch64_bin.tar.gz", + "checksum": "076ceef6b4ead365fdcce48053f2d111fc023aa7478b24d32be504a8a48cc579", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jre-17-ea.27_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.27_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jre-17-ea.27_macos-x64_bin.dmg", + "checksum": "0582df6ba59e89bc28ba9059cecf5628640d159700ea21c34d10a3af213278a2" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.27_macos-x64_bin.tar.gz", + "checksum": "d343c6f03fb14a9afeaff8737db213d054af80de06d29f2b37d491bbffe87b38", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jre-17-ea.27_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.27_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jre-17-ea.27_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.27_windows-x64_bin.zip", + "checksum": "4cb66905a29def2fc72ea1b5ba18656436a088e8699ca2974947128d2de91424", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B27/sapmachine-jre-17-ea.27_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+26": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B26", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.26_linux-aarch64_bin.tar.gz", + "checksum": "b93824948c04925ff8faea303cbb1c83e5b665ef1cfc0759b8c4eddca27ceef7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jdk-17-eabeta.26_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "406322c79347d30c80557466146947567aa2f92375ee40737bc61e3378f7e3d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jdk-17-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.26_linux-x64_bin.tar.gz", + "checksum": "8941d106f321956ff4ff2e79e570c68a2da24a9d35633c1acf902688d30e8761", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jdk-17-ea.26_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.26_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jdk-17-ea.26_macos-aarch64_bin.dmg", + "checksum": "4793a9297ce09a87d1df5a6ab3b0dabe5d88314bc2e66dc2d7a5468d50a9c900" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.26_macos-aarch64_bin.tar.gz", + "checksum": "28d581ce6b5bc9a3f9caeff533ebe433134eacdb46e0613987279e68f69c08cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jdk-17-ea.26_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.26_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jdk-17-ea.26_macos-x64_bin.dmg", + "checksum": "b7442f797ab7b4e69bc84ba9dad4f1a68ae97e6d20ee1dc4ea00897b2e167369" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.26_macos-x64_bin.tar.gz", + "checksum": "1b9573d852f4c0e4b7f8df0355a16826d7c729b08c498a6c5761643ab562a290", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jdk-17-ea.26_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.26_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jdk-17-ea.26_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.26_windows-x64_bin.zip", + "checksum": "cb2e9822aa1250680ba3177f658325fb2363b836f479d1fbd9e153e9e0fed2f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jdk-17-ea.26_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.26_linux-aarch64_bin.tar.gz", + "checksum": "b9282a67c9fd50dbb57b16037f5ac50918de18491dcb176fc381aec5dfdc0662", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jre-17-eabeta.26_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "0562da44539b03a4fb7c9cf8592eb91bc38207ecbf5f2a09ecbfec3d25ac6343", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jre-17-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.26_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jre-17-ea.26_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-17-ea.26_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jre-17-ea.26_macos-aarch64_bin.dmg", + "checksum": "5bf77d298595c71fc35048010ec6690c095e54bec73c8ed8bd09836f27af758d" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.26_macos-aarch64_bin.tar.gz", + "checksum": "d50af46225dc14c3ab6f9c5bb883e6540cd6e883b41367856b248dbc85b677d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jre-17-ea.26_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.26_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jre-17-ea.26_macos-x64_bin.dmg", + "checksum": "10fc3dc051f5d79699c3a577d86ee5750ce5779ae6dbbceb78b7c7977514f7c0" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.26_macos-x64_bin.tar.gz", + "checksum": "3ff42e8a9e269e0951530ec2cbb2486151ac598d40c513f56d4f49021e1cc562", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jre-17-ea.26_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.26_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jre-17-ea.26_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.26_windows-x64_bin.zip", + "checksum": "d674781472a8ab2111078775196866df612fce8b84739fc27356b5a1b088d05c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B26/sapmachine-jre-17-ea.26_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+25": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B25", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.25_linux-aarch64_bin.tar.gz", + "checksum": "4ca2df61b16743483fa482ffc0ba44e3cdeddeeebf636ee79c78e655245bc91b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B25/sapmachine-jdk-17-eabeta.25_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "160f77c5b7afa91febaf298d4507ae08cf299908be865262f119dc26f27c1604", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B25/sapmachine-jdk-17-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.25_linux-x64_bin.tar.gz", + "checksum": "694aa01b41197da53012595cb212aeec0476082e351ea228e6f68ba901f618b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B25/sapmachine-jdk-17-ea.25_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.25_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B25/sapmachine-jdk-17-ea.25_macos-x64_bin.dmg", + "checksum": "a539952ab4eb037d69eaa89d10b1f0417ad5d11562c134a9b2451b25d56567b9" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.25_macos-x64_bin.tar.gz", + "checksum": "5631ff86afa564aafc1ce4026fba69d1df2ad0415093ae1be4fc5b7e67ae21e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B25/sapmachine-jdk-17-ea.25_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.25_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B25/sapmachine-jdk-17-ea.25_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.25_windows-x64_bin.zip", + "checksum": "e3846bfa3944210261c2eb626c530aa03947422f0cbcb39c5cdeb078d1b3f78e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B25/sapmachine-jdk-17-ea.25_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.25_linux-aarch64_bin.tar.gz", + "checksum": "c9117ea444a19c79411c9b5232efededc392c4d7cec98b1565183370f6d5490f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B25/sapmachine-jre-17-eabeta.25_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "08d77cb502f9ea7a9a49ca2d551a709a140ad413a76d0e9502be2a200de8c52b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B25/sapmachine-jre-17-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.25_linux-x64_bin.tar.gz", + "checksum": "7f3dbf1a520f790c0b176ebf0e0e6e911324e820bef8dd8a1911dbac9f9e6995", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B25/sapmachine-jre-17-ea.25_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.25_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B25/sapmachine-jre-17-ea.25_macos-x64_bin.dmg", + "checksum": "dc9fe92ccab157d6330b5a6f8535c7873d56d2b828e13169ac48e1a993b80c19" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.25_macos-x64_bin.tar.gz", + "checksum": "45e76185b299e54c9d7a2ca365f9ac70c6b47fb46029a7080a4c6fbd76f29927", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B25/sapmachine-jre-17-ea.25_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.25_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B25/sapmachine-jre-17-ea.25_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.25_windows-x64_bin.zip", + "checksum": "89050f424c30317a5e24e6c9bd42a311e3413b1eb04a82bda4ecacfe853690f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B25/sapmachine-jre-17-ea.25_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+24": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B24", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.24_linux-aarch64_bin.tar.gz", + "checksum": "f045081bbe70f891edbe91e7a9030d979df137601caa81a6046051bc27062ab6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jdk-17-eabeta.24_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.24_linux-ppc64_bin.tar.gz", + "checksum": "b5967603dc420c34c5f0427cb4cb4ca29f674f845ef550321a58b52bc547cbaf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jdk-17-ea.24_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "e5f840f46b7aaf2512a81d6156739673a835808e931f9a2917ba109f37d3be30", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jdk-17-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.24_linux-x64_bin.tar.gz", + "checksum": "eafc75ab1691661aadd147b287bc41877d134a7ef4870d88843f549c6b2b7e89", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jdk-17-ea.24_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.24_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jdk-17-ea.24_macos-x64_bin.dmg", + "checksum": "e88a0313879c1ef537c074c10e7de83f22cefa432c6d46ad2803e79ec6dcf2f8" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.24_macos-x64_bin.tar.gz", + "checksum": "c960693a90a8316485152c5a802b81d36363389c774532df1546d5dbf0bc985f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jdk-17-ea.24_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.24_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jdk-17-ea.24_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.24_windows-x64_bin.zip", + "checksum": "e392ddf1e355d7c8b6f109239b7c25ad03fbd02bf6c1ce4d0633cb99f7c69e47", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jdk-17-ea.24_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.24_linux-aarch64_bin.tar.gz", + "checksum": "e8947c5ecd538e6d2203da7c6dbaeb5051fe1e239638ebf3cb6c6ed94389feab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jre-17-eabeta.24_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.24_linux-ppc64_bin.tar.gz", + "checksum": "2e0f1f675d52668e9b58b95e6b703efa0ea1316eb956c5ac5b60b032a281f6c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jre-17-ea.24_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "53dc79ce6315bdf2259b5267c84e6738125fc776b6902576f01e3ef15f320de8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jre-17-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.24_linux-x64_bin.tar.gz", + "checksum": "d3ce4a496562d4daa2481fe83a2b861953456ef1beed0e749e741f142aa8640a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jre-17-ea.24_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.24_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jre-17-ea.24_macos-x64_bin.dmg", + "checksum": "0b6dad93c31127877b37a4855c8578c353bb8cfb49071649f9754c856411f2a9" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.24_macos-x64_bin.tar.gz", + "checksum": "a11f132ce6800101412144331ecf6c19f2c3426cd99356c742b4edb4b341f62b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jre-17-ea.24_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.24_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jre-17-ea.24_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.24_windows-x64_bin.zip", + "checksum": "a27abcce76a7da347e25fab73010d4ce78e34b7471cac83a5a95260696f72248", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B24/sapmachine-jre-17-ea.24_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+23": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B23", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.23_linux-aarch64_bin.tar.gz", + "checksum": "8c20cbde6609b404a1644cddb547e6e52b493aa4e75a87815d1e95591c38fd11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jdk-17-eabeta.23_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.23_linux-ppc64_bin.tar.gz", + "checksum": "b359d4418bcfeffbec56c7844c9d7e99e325d0dbd38063d9080445106c7e81e1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jdk-17-ea.23_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "29d3544abe2ffdd148e08736c81318369d3226bd08bdd62067a60098d7add9d8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jdk-17-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.23_linux-x64_bin.tar.gz", + "checksum": "06d3d8e5ba1a00fba0854a57e6804f839d9d19a9d24c9f4379f99b65efbf7fa6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jdk-17-ea.23_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.23_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jdk-17-ea.23_macos-x64_bin.dmg", + "checksum": "57ddf4e12cbd08c8e369d85c1ce561af781b6afa31ef7cebc98c5711fb138898" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.23_macos-x64_bin.tar.gz", + "checksum": "3cf1aaa152d5eadaa96aadffe9498d2ea8c29b0f4eb13d2befec8cb6b0c207e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jdk-17-ea.23_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.23_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jdk-17-ea.23_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.23_windows-x64_bin.zip", + "checksum": "fb27af13e7dacb3f0a2f73d10fa8ecf9e1eabfe99b671089a480459f5c4c061b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jdk-17-ea.23_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.23_linux-aarch64_bin.tar.gz", + "checksum": "87b19348f421406fc43a3695e2d7fbcee97c428a215d34d3df4fee5f022e86ca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jre-17-eabeta.23_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.23_linux-ppc64_bin.tar.gz", + "checksum": "975b88473059b4bbbc1eb5eaf24ece641e55b40db4416cff1739a859ec9c2b6f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jre-17-ea.23_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "7568ae2b4593a05daf31420e3e7ed603bf40cc5969b658d6d7fbd0cd41917e28", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jre-17-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.23_linux-x64_bin.tar.gz", + "checksum": "0bac621900a936743b40b95bd0234355301dfd80c802bafdd46b0fb2233763af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jre-17-ea.23_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.23_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jre-17-ea.23_macos-x64_bin.dmg", + "checksum": "ea020ff10b32356315e4d01e58b4f2fffd2d61a481b72fc15ff723bccffc5050" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.23_macos-x64_bin.tar.gz", + "checksum": "7a05202fd5fd0e6d88f55917d83bfd816bad68584cc5f1cccf627921d7856b51", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jre-17-ea.23_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.23_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jre-17-ea.23_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.23_windows-x64_bin.zip", + "checksum": "4880035424240e409946dcc8905cacf84321bfd891001f05b3f9bb2ac2c0ef2b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B23/sapmachine-jre-17-ea.23_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+22": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B22", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.22_linux-aarch64_bin.tar.gz", + "checksum": "1a65c766ce4510cd3d70ba69443ff198c71146be7d1fe4bceaeb540330b05fe9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jdk-17-eabeta.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.22_linux-ppc64_bin.tar.gz", + "checksum": "532b635511a5bdc2680db9f8cfd85ecd8b9b36d24570ac7890ac10b1c7f66aae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jdk-17-ea.22_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "9a85a6b58e7e357ac4bab1cb33b888d433d79b4d96a036981813f9ee6900155b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jdk-17-ea.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.22_linux-x64_bin.tar.gz", + "checksum": "1ad928c7a6b23d28f6fd697d173ef8852ab847efc91799c783bb4a40dbe8d380", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jdk-17-ea.22_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jdk-17-ea.22_macos-x64_bin.dmg", + "checksum": "2d320d8d9d8190bbd31b73527b16b660f8b26de08ff40c4b7588de6980ba38d6" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.22_macos-x64_bin.tar.gz", + "checksum": "4af4830e5ea21f3ee24d44988e079b66357ac1d4b9de96b9ab1e9b05e82654ee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jdk-17-ea.22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.22_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jdk-17-ea.22_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.22_windows-x64_bin.zip", + "checksum": "7ddcea54ce76f76ab8554d5f0cc2d7d73aebf3cdfe1fbaea92d3922c59aace51", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jdk-17-ea.22_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.22_linux-aarch64_bin.tar.gz", + "checksum": "ffece4a8c0ca62529ca7d6bdb328bdb6174ddd3cbc515bb2dae384a68fa218b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jre-17-eabeta.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.22_linux-ppc64_bin.tar.gz", + "checksum": "a915b84d68da4ed35c604be4185a289ad1ae72a5bcdf99f36b2b72b827279b10", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jre-17-ea.22_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "8af17b374cae2b2167b469a4a2212aa0a4babe0e7896f1af23d8d16cce01685c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jre-17-ea.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.22_linux-x64_bin.tar.gz", + "checksum": "484d978a8dd0797fa5a59a3de6fdfb78bbfeb02174969c374fd49c9802418f80", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jre-17-ea.22_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jre-17-ea.22_macos-x64_bin.dmg", + "checksum": "9ee1d18b4fe2aaf5766e9a1fa0c280c52e63854bf131302d34a17db8f6dcfa80" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.22_macos-x64_bin.tar.gz", + "checksum": "9c9aa456783cedc11ae28c658269ba76aafd871abe2a8ee8b786202f76599fd5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jre-17-ea.22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.22_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jre-17-ea.22_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.22_windows-x64_bin.zip", + "checksum": "a02ce000fd3881d1ff6b445da028525fe50590ea514b5e45e0ceac7d563c798a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B22/sapmachine-jre-17-ea.22_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+21": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B21", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.21_linux-aarch64_bin.tar.gz", + "checksum": "3c8ff927a80ba75e7dfba012acce2efbaa91d4b6ef3e92741d5f9aafe5949d45", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jdk-17-eabeta.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.21_linux-ppc64_bin.tar.gz", + "checksum": "d3c72bf36e6a494b84d36899570d831a0c4da19442c183060ea27d94066bf188", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jdk-17-ea.21_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "82a8ef6197d06e8ee91fffab35caddc382cf2104868ceed8b032e857d6ddb07d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jdk-17-ea.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.21_linux-x64_bin.tar.gz", + "checksum": "e5bc0f3ca999ae96007beb02c32b33aca545fa6db5227341e7c740b4a7f4ff2a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jdk-17-ea.21_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jdk-17-ea.21_macos-x64_bin.dmg", + "checksum": "01a1a55df53663605515072cccd6fff1f34ce47254c3572c03c6c164de266760" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.21_macos-x64_bin.tar.gz", + "checksum": "d48572cce59c33a176f40c35bf1bb041abe5166b4df25605ade666d224b5d2f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jdk-17-ea.21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jdk-17-ea.21_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.21_windows-x64_bin.zip", + "checksum": "f25c1012ea885e9def295b140d305962c2fa6f9597262a647ce40eda98e3d916", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jdk-17-ea.21_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.21_linux-aarch64_bin.tar.gz", + "checksum": "70fe5ba17d9f65017dd9d91e273b36a0a5924970dee446c8611a7d362645ac2f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jre-17-eabeta.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.21_linux-ppc64_bin.tar.gz", + "checksum": "a5fb757369774672f55070c20f98de6dd38a16af4ca5214ec8d3324158daf92c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jre-17-ea.21_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "cbf58ab0d85f700a55b800ccf7254293620ba2503785be77ab434cc41bf4ec17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jre-17-ea.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.21_linux-x64_bin.tar.gz", + "checksum": "8d3ed8a64426627b1b79bfb43fc16b5f56ca612f4017df646979c991301e76f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jre-17-ea.21_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jre-17-ea.21_macos-x64_bin.dmg", + "checksum": "5cd50cfde9eaf283324e9c185de69167424ac23d7fcb42251e70bc315984ab44" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.21_macos-x64_bin.tar.gz", + "checksum": "6dc7259cd9097eec4a7e23575900f2f392b54c1affbdfd5d66cddaac0bf994fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jre-17-ea.21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jre-17-ea.21_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.21_windows-x64_bin.zip", + "checksum": "1e2b1629a09a44d8d2bd566b320870aa5957210b421dba1c1608bc1430618077", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B21/sapmachine-jre-17-ea.21_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+20": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B20", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.20_linux-aarch64_bin.tar.gz", + "checksum": "c387d5af55a5ad31cc29965f5ea40f9cf3a5eab3b4e6b15d3bfeb7232028be62", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jdk-17-eabeta.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.20_linux-ppc64_bin.tar.gz", + "checksum": "3a73658ad36ebc9838e8c27807841700abfa7827ec0df02988fd45ea818fc087", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jdk-17-ea.20_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-internal.0_linux-ppc64le_bin.tar.gz", + "checksum": "4905b4e350ac40e6effe8cfb3614446143e0882b5b482141ab5da50e1036f98d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jdk-17-internal.0_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.20_linux-x64_bin.tar.gz", + "checksum": "549565aff4bb3860761b09ca2e0f4fc9c1f4625b0ec2fc7651092bf79304a1a2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jdk-17-ea.20_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.20_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jdk-17-ea.20_osx-x64_bin.dmg", + "checksum": "01094e39c403a967ca3b1459e91b9822f37bc8321b331aa76be44acadaaebe04" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.20_osx-x64_bin.tar.gz", + "checksum": "64220b81257b330ae1bf418801ef45759d82e69976a2bd4cb44f99cedeaf81d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jdk-17-ea.20_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jdk-17-ea.20_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.20_windows-x64_bin.zip", + "checksum": "0eed873c536ca93eacb009606fc75a7183da69e906f3b07c22f24cac3d975bcd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jdk-17-ea.20_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.20_linux-aarch64_bin.tar.gz", + "checksum": "b16618638b685fd0a824d7804f1699eb388ca19e94f9e5b0c4f6b4ec1e0616de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jre-17-eabeta.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.20_linux-ppc64_bin.tar.gz", + "checksum": "809b5e32f99b743c6b4de3149e6423d0d530976d532b447faa788a6e1b2fd248", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jre-17-ea.20_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-internal.0_linux-ppc64le_bin.tar.gz", + "checksum": "ec50899807008b05d7fdbffd13b00dd8b661d10b1ab0cc0bb29d0068d9c0a1bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jre-17-internal.0_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.20_linux-x64_bin.tar.gz", + "checksum": "ef846e50ca893756f72d9733ae6c3000d348140ee7295b941d539caf885fc768", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jre-17-ea.20_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.20_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jre-17-ea.20_osx-x64_bin.dmg", + "checksum": "b559ff10fc1cf43920a50e75d1c060191d7d2ab5d478ec48a5252fa0b096a705" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.20_osx-x64_bin.tar.gz", + "checksum": "46cff3a449cc66c4e4fd93c4a2b8e468a88d2893561cd4234deeed6d62a72d42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jre-17-ea.20_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jre-17-ea.20_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.20_windows-x64_bin.zip", + "checksum": "3a9663b9872499595fbd4d7a892edf6ec824bd1c99fe7a3d774bcb690804e202", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B20/sapmachine-jre-17-ea.20_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+19": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B19", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.19_linux-aarch64_bin.tar.gz", + "checksum": "ad3a1d13965ab4792f58d8ec994c52a12049397996bcc9b0ea937562d78e84af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jdk-17-eabeta.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.19_linux-ppc64_bin.tar.gz", + "checksum": "80c92fc5287d95cfed2d8f4d625db79c13f3586b04c80fabe780925c257bd9ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jdk-17-ea.19_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "0fb6fe517b367e8bacfee34623c064d5a5ef080b9aab37ce99850c07f599e17d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jdk-17-ea.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.19_linux-x64_bin.tar.gz", + "checksum": "23ae3c2e93a46ab17de25117330f44b2ff78ee358a63a19f5cc886e68e6c03c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jdk-17-ea.19_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.19_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jdk-17-ea.19_osx-x64_bin.dmg", + "checksum": "22a71f7f95a465624ac2448f778110a1229f2be111de40a153b63e2c5c997e4a" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.19_osx-x64_bin.tar.gz", + "checksum": "c3ffd50510090eb95e454647a6ebb02c47cb921b51a129812b8765d17b846919", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jdk-17-ea.19_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jdk-17-ea.19_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.19_windows-x64_bin.zip", + "checksum": "2411e94b1819cd33dc8b0e6bccc1834b18233b80a23f072fdbff0f0ce7b3b8f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jdk-17-ea.19_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.19_linux-aarch64_bin.tar.gz", + "checksum": "b58aa5398d9b9986d27c21defc5f8ea7bdbc3ef336fbb311479dd58c0375951a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jre-17-eabeta.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.19_linux-ppc64_bin.tar.gz", + "checksum": "b821b57db2dd22076e15fcf2277767a03a8b9b5cb8aad24341cf09f5dbed31f9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jre-17-ea.19_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "bccaa33ca41a1fe4369335c55d4287acc38a221ceaab45effce5a52cd390372f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jre-17-ea.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.19_linux-x64_bin.tar.gz", + "checksum": "b1f36675e4d46538b428b8745238bc3fab4ef0f9dbc87145e6491ff21bc2219d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jre-17-ea.19_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.19_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jre-17-ea.19_osx-x64_bin.dmg", + "checksum": "14793c9dc048d34bc44b1b73980a73d1713ac2571879dbced8120bc2f97e31ce" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.19_osx-x64_bin.tar.gz", + "checksum": "c88ddea4df42e51f856af72c0e2f9b98cabf2bf91818396554aeff6de669a86d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jre-17-ea.19_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jre-17-ea.19_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.19_windows-x64_bin.zip", + "checksum": "f402d048971beba70027b516b7e1489e001730572ed36820e43ccb6b23745770", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B19/sapmachine-jre-17-ea.19_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+18": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B18", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.18_linux-aarch64_bin.tar.gz", + "checksum": "46d55d29ad9040b85f9f4dee7db8b596ad46d5a9c4ceb1feaddeed768a168e51", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jdk-17-eabeta.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.18_linux-ppc64_bin.tar.gz", + "checksum": "bb96584805ead0f139a7ede6653fbbf8a8ca82944feef6927c33e1b779f42959", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jdk-17-ea.18_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "4229b4eaf84754d22b463e2d27b48c604e51b0fb40aad92ae44cff120eedcbb9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jdk-17-ea.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.18_linux-x64_bin.tar.gz", + "checksum": "668c1ab10c67c4ceeec762dbe88657e327dffea87fe82578e2cb001398a47fd2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jdk-17-ea.18_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.18_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jdk-17-ea.18_osx-x64_bin.dmg", + "checksum": "39806d1f02dde62558254ccf0778206056a74c216777e000ddc525e94ba748df" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.18_osx-x64_bin.tar.gz", + "checksum": "a8d6cdfda4e26b7e910e9190eeaeb77aa2e72c9904ec85a6099833fbbf33a6b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jdk-17-ea.18_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jdk-17-ea.18_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.18_windows-x64_bin.zip", + "checksum": "cb95f111f91a0d5a5712c9363ce7f82036c545feca46c75c4fe55930e3800a1d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jdk-17-ea.18_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.18_linux-aarch64_bin.tar.gz", + "checksum": "1cff47a39c67ba4a68b21661fef52a1de56843834a3c9d308c57d30ddf0b30e7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jre-17-eabeta.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.18_linux-ppc64_bin.tar.gz", + "checksum": "8288de4b0a58bf089bebad746dbcda26eaf352c8cc36ab0bbef518919fbdcb4f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jre-17-ea.18_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "3a64262d02082a84b8a0edc2055663152458f7380f672b5959169a3d32dce509", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jre-17-ea.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.18_linux-x64_bin.tar.gz", + "checksum": "a6c6ee0e28672cabb68b8815f8838ab5f4f0b2c57ac8e27b88d3d99c8beb3d24", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jre-17-ea.18_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.18_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jre-17-ea.18_osx-x64_bin.dmg", + "checksum": "e5d952e2897ad3fc82de0226c430f8fe8d27fa76fba2a1d8ae8c5ed062558fdb" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.18_osx-x64_bin.tar.gz", + "checksum": "c7030d6b66849aff791492ebeec6fb579eb3cc75549fa3a4ae0e28ac1a5f340f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jre-17-ea.18_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jre-17-ea.18_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.18_windows-x64_bin.zip", + "checksum": "fc41b823b5d1494a4a38e70f98845c699915c35fb6b1225026a5a596ff942678", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B18/sapmachine-jre-17-ea.18_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+17": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B17", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.17_linux-ppc64_bin.tar.gz", + "checksum": "91005bbf4cc30ed3017f2f6d79db8001846aa92ebf096104d7e317273fb3a891", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B17/sapmachine-jdk-17-ea.17_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "998ef5e7a112baf752739a8a4498627e8e5b484cb42fa3351620c7406f8fa607", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B17/sapmachine-jdk-17-ea.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.17_linux-x64_bin.tar.gz", + "checksum": "e99aa89dcb00827ebef98bc6a9948ecc4177da35f5102895360e292aaad9c01f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B17/sapmachine-jdk-17-ea.17_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.17_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B17/sapmachine-jdk-17-ea.17_osx-x64_bin.dmg", + "checksum": "481e11681239dc7f58aa31e4eb63e448adf4f0f6ba8e63f0c7063cf0f9f16057" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.17_osx-x64_bin.tar.gz", + "checksum": "314bf9c4f353dc7b3f99a5b325a247c7f5f190dc208ba869e0849f3348383c61", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B17/sapmachine-jdk-17-ea.17_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B17/sapmachine-jdk-17-ea.17_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.17_windows-x64_bin.zip", + "checksum": "ca24ff0658a681f22cf43c8780fb24f6181076e3919e32f19854c8006084d7fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B17/sapmachine-jdk-17-ea.17_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.17_linux-ppc64_bin.tar.gz", + "checksum": "69b9f6583572478d53e6aa987add7fdbfe8e909b4afff64e873be254ad1423f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B17/sapmachine-jre-17-ea.17_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "b98959f10687a1eb97c42e96732ad98d6bb5d09965e6257ed2377480fde30b35", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B17/sapmachine-jre-17-ea.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.17_linux-x64_bin.tar.gz", + "checksum": "d20a58540d6e68889da78626233cb9354e549f005c4d93aec84b1df5f9a3502e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B17/sapmachine-jre-17-ea.17_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.17_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B17/sapmachine-jre-17-ea.17_osx-x64_bin.dmg", + "checksum": "41765ba7ba7b376dabcc602d28a4f7ff439cd4c77312f9258359554c236119e5" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.17_osx-x64_bin.tar.gz", + "checksum": "a82bcf3789fc4d355f2c7888c4cc27f16c05d30a4fe0dc0163646dd344b6e8df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B17/sapmachine-jre-17-ea.17_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B17/sapmachine-jre-17-ea.17_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.17_windows-x64_bin.zip", + "checksum": "7c92b2dfdef06b486ca7f8377c8d2b236bb6b33fd165f9b9fd5b2b8e809c9cbf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B17/sapmachine-jre-17-ea.17_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+16": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B16", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.16_linux-ppc64_bin.tar.gz", + "checksum": "352acd3830b7da6ddd70eeac4dc2238cc0a65bf175b8fe78b18f5edeb04ff906", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B16/sapmachine-jdk-17-ea.16_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "0d0cb3e77bbe48e12a26f10a680c7f64cb5a5d2f5c83d9d9b3b743fa053d58d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B16/sapmachine-jdk-17-ea.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.16_linux-x64_bin.tar.gz", + "checksum": "73e00eb61d0c0888a58e74dea653f881290630edc13fe0bf81e6b9b857e28982", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B16/sapmachine-jdk-17-ea.16_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.16_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B16/sapmachine-jdk-17-ea.16_osx-x64_bin.dmg", + "checksum": "1fedb746b2aba4d16dab056828cb7467dcd3197ed5e2a6d987850ee9197d6cfc" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.16_osx-x64_bin.tar.gz", + "checksum": "73404b75065c35e85808a1566aaff183a4fec74d0fa57de63acc1bc9b0323dd0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B16/sapmachine-jdk-17-ea.16_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B16/sapmachine-jdk-17-ea.16_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.16_windows-x64_bin.zip", + "checksum": "11781651c71e794ef9dcbc450f5690cb6c4f9744ddb7b62d276960bb5c6588b0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B16/sapmachine-jdk-17-ea.16_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.16_linux-ppc64_bin.tar.gz", + "checksum": "f3819ee595248ffbc6c4d5c6929f04a901b14326c0569f579bce13fad2a6404e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B16/sapmachine-jre-17-ea.16_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "62e36bb8f9722a9c1bebc44335ca51c620984cd7ece3841b063f332d2df0cba2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B16/sapmachine-jre-17-ea.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.16_linux-x64_bin.tar.gz", + "checksum": "fb0f163bd2a02bc42bd6a45fcd241bafd2019ecce427d886fe3ce5735961797a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B16/sapmachine-jre-17-ea.16_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.16_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B16/sapmachine-jre-17-ea.16_osx-x64_bin.dmg", + "checksum": "00eaefc08b1d8458a538191cb51603c3b4a571e8bc9c9ed2ba41ea1c4a55f8fc" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.16_osx-x64_bin.tar.gz", + "checksum": "28e8afd338dc7337b03f1cfce53cad177f9ab3127e810d7ca72c377e18e6e8ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B16/sapmachine-jre-17-ea.16_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B16/sapmachine-jre-17-ea.16_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.16_windows-x64_bin.zip", + "checksum": "28d0a8ab4944321534a9705476df05347462f4abc3a69cffb2d3446eacfc1af5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B16/sapmachine-jre-17-ea.16_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+15": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B15", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.15_linux-aarch64_bin.tar.gz", + "checksum": "ce8a82f7b7614faa51028760e101c771f9d9d131d8738296f51e09f91d4728b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jdk-17-eabeta.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.15_linux-ppc64_bin.tar.gz", + "checksum": "02c4a56327da3224a6fb592ef9e1d87f21d5dd096ce79f9d96f2f6cd21092ea0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jdk-17-ea.15_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "2b21f0e3af000942ec6c68de3660f58d70947c67432fe2301843e566601a43ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jdk-17-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.15_linux-x64_bin.tar.gz", + "checksum": "a7422814ffcd87748769712e19688ab24a603f91e243b1282a138228eef22318", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jdk-17-ea.15_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.15_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jdk-17-ea.15_osx-x64_bin.dmg", + "checksum": "6708a85943d11a7d4dd439cfb87ff8d5f2eabf0a1454f41095ac5c879a2b181e" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.15_osx-x64_bin.tar.gz", + "checksum": "ab1b155778668bc94df678f9a4fc367efcd2fbd73b23324a602c55067c30750e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jdk-17-ea.15_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jdk-17-ea.15_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.15_windows-x64_bin.zip", + "checksum": "686803463bdfcacf9db54f60e2a4cc3a7549abb560e03bbaf7974169319a2945", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jdk-17-ea.15_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.15_linux-aarch64_bin.tar.gz", + "checksum": "4088b72fa2b43597090b0b89124564d003d47ad90e034169a7217a8e2f40068f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jre-17-eabeta.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.15_linux-ppc64_bin.tar.gz", + "checksum": "0fcef1ddad39b418a860408f854551fb4f167eb3b309830d4e9e93426bcf1ad9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jre-17-ea.15_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "c84aa8753726ade438749fbaf17a84297797f4390fd6e60b301ab71339fba803", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jre-17-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.15_linux-x64_bin.tar.gz", + "checksum": "e6a792d596479a8fce10ae5f2b9f6139f646f56ece2f00c1c4de2208f14b0058", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jre-17-ea.15_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.15_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jre-17-ea.15_osx-x64_bin.dmg", + "checksum": "b13b3e2f04e93848b33aef08bbb17f0a6500da3b5e220935f69e6658f2a19746" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.15_osx-x64_bin.tar.gz", + "checksum": "61fe58d75be90976708e6468df190e7c57a899a22cff76364012d42601e443ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jre-17-ea.15_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jre-17-ea.15_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.15_windows-x64_bin.zip", + "checksum": "6fa485212728226da2e52a736958cccac8e3767858eb4f6eb5bda4752e6b1a46", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B15/sapmachine-jre-17-ea.15_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+14": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B14", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.14_linux-aarch64_bin.tar.gz", + "checksum": "25a723443bf9b1b44b9542e91fa7ab411ab57a68284b085f0e82c8cda8a49dbe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jdk-17-eabeta.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.14_linux-ppc64_bin.tar.gz", + "checksum": "3d6a8fb2be0be57194b42eac8f228fea630c92d454f8b8e5152538fc5a09b5e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jdk-17-ea.14_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "ff646cfe262c294801abde160ef03460d10fced12a96a01c2727cf2db868c9e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jdk-17-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.14_linux-x64_bin.tar.gz", + "checksum": "76a0b2d3b98b4faab62cc0c6a22c9327b8a9b3013ee9a691a17663069507e3a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jdk-17-ea.14_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.14_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jdk-17-ea.14_osx-x64_bin.dmg", + "checksum": "4964bf0824f9a5f35d30f0debdae7d07297a5bb200ee52bf63f3acff38527245" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.14_osx-x64_bin.tar.gz", + "checksum": "496d7587bed52d5ad1045f8a6e4f5dbce957a42b1cb1a8ce49a33ff016bd1547", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jdk-17-ea.14_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jdk-17-ea.14_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.14_windows-x64_bin.zip", + "checksum": "98d546b4eac03e14f38794ce2c5e92f72c3bbb29dfd96ae7e2fa8321a96dd17d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jdk-17-ea.14_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.14_linux-aarch64_bin.tar.gz", + "checksum": "abeccf86b8460626a2fd00a46e41984dd23f2ee87c7998ba54c50fa98b3475ee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jre-17-eabeta.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.14_linux-ppc64_bin.tar.gz", + "checksum": "98d036b90c9ffe314b3b7a599ace1800bd2c9f78ca99001fe4defa8be4694ec7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jre-17-ea.14_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "0b1815dd70fb4c9ba0e1f27a3b0db4be5153e412997e8584364fa94f5b5a24af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jre-17-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.14_linux-x64_bin.tar.gz", + "checksum": "5b9a3e03263fcb93a53895bb0fb0689425da35cdcee59dcd1c0cc2ca96ec7084", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jre-17-ea.14_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.14_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jre-17-ea.14_osx-x64_bin.dmg", + "checksum": "c75c0fc7ac958edf6bb6cc5c5a2ad1ad74b8481f13fc2acbb159e47b0400f4c9" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.14_osx-x64_bin.tar.gz", + "checksum": "a6361abaed1e31a0738f8a6d90ce62f187dd0226c057776ac5194878bf3d0a1a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jre-17-ea.14_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jre-17-ea.14_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.14_windows-x64_bin.zip", + "checksum": "317a25beb6c3b15156301f4df5c59e4eb33f1d63b88519b01de8787fbef68c71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B14/sapmachine-jre-17-ea.14_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+13": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B13", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.13_linux-aarch64_bin.tar.gz", + "checksum": "8fb61468dd7e95f7cba8822b1d0f184d17ea4a3472b0a01a5727e57fc97bbc2c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jdk-17-eabeta.13_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.13_linux-ppc64_bin.tar.gz", + "checksum": "b5c612a270d54e92dce9cec9dd0c9320bdecd431f58224faad39087ebccce2d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jdk-17-ea.13_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "8dd6ac7d1ac9b5a1679ea146119ff6e97a8e24f7062be1a0743f376197a9472f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jdk-17-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.13_linux-x64_bin.tar.gz", + "checksum": "3342b49def7f1fa00d41fafe69b12c205c75fd508510525b7c3757d0415daca9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jdk-17-ea.13_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.13_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jdk-17-ea.13_osx-x64_bin.dmg", + "checksum": "de7b83d5013ecb349dcb9a447bc6daa892ed8d94f987f92d4eebfb788efbfcd9" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.13_osx-x64_bin.tar.gz", + "checksum": "97347dca64dea299fcb51b8e6d5a93e7b8b8e1015992f185a213ca7cb7a4be53", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jdk-17-ea.13_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jdk-17-ea.13_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.13_windows-x64_bin.zip", + "checksum": "037ab194e3487d3d9e2e394f3b05fdffe202215fdb30cfab720e84ea51a2e001", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jdk-17-ea.13_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.13_linux-aarch64_bin.tar.gz", + "checksum": "5c559709b15027201c4db32c469ff245214da7d0320a530986a09e92ca3e5ba3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jre-17-eabeta.13_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.13_linux-ppc64_bin.tar.gz", + "checksum": "a841a804b4795bda1d21e8c7ee6539bf4d33368ccdb404369fabcead35266bfa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jre-17-ea.13_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "d45e0adcee99f98bb24c2698393fe36f293c47f645d22a05d7a7adf520adfae6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jre-17-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.13_linux-x64_bin.tar.gz", + "checksum": "4004ac38cad68197d364b114e2c3c7d3c670520a4b3422cad8b3118764d86ea3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jre-17-ea.13_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.13_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jre-17-ea.13_osx-x64_bin.dmg", + "checksum": "ad19ea516c0cc50d0227696dfb59d0f1715b383b285b90292d6af79f5497d424" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.13_osx-x64_bin.tar.gz", + "checksum": "e8a95e6470b65196b2c0aa18837b17393f9d2ee616525bda72848f5faaa3813a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jre-17-ea.13_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jre-17-ea.13_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.13_windows-x64_bin.zip", + "checksum": "4e018ea720497754b0358fdad62ff3bd42ed925bb082b5102f5e491af2b766d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B13/sapmachine-jre-17-ea.13_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+12": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B12", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.12_linux-aarch64_bin.tar.gz", + "checksum": "966026d191ccf8e197a5209f781d0d737ad5c37473496374fdb67b7ea911074c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jdk-17-eabeta.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.12_linux-ppc64_bin.tar.gz", + "checksum": "744b146bb5055096a6a3de3f5f1e48e8cccada64d516aa824148129e89e589b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jdk-17-ea.12_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "8cee66d6d0f736a27237be5f954bc63474d087836c82cfb3ac4b944a92d9ee7a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jdk-17-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.12_linux-x64_bin.tar.gz", + "checksum": "6062ff09d9ca045a8739a4dd533e6022a2c647af2a0cce9d2b7c242f0a71a839", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jdk-17-ea.12_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.12_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jdk-17-ea.12_osx-x64_bin.dmg", + "checksum": "3b062b50827c37f586b130d027fa08b4f38f69c5cfde2ecab0f78396e0afa9d3" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.12_osx-x64_bin.tar.gz", + "checksum": "3574332f401f90c3b4ade6be9b8f40f393ed30c4f88d105e4d7827e6cd319c22", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jdk-17-ea.12_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jdk-17-ea.12_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.12_windows-x64_bin.zip", + "checksum": "ac1bf0f151a3792c5286c37b0a8296bc85ccf381dfca302bedff757f24205ab5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jdk-17-ea.12_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.12_linux-aarch64_bin.tar.gz", + "checksum": "fd7656860749947874188b89eb41f9e996b2b956708aec10fb211019d9fd9362", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jre-17-eabeta.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.12_linux-ppc64_bin.tar.gz", + "checksum": "66f59db059cf3dc337faf3e1f377730c728944fce0cab58480cb607a2ae01018", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jre-17-ea.12_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "269a0eca0a8083fec76bcd33f2ace299c0cfb71b749191f0d77ca93e716c3d75", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jre-17-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.12_linux-x64_bin.tar.gz", + "checksum": "02d6f5db7ef4d4dd86ea84537f20429485617669ca8cd637b5fa02a2270d990f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jre-17-ea.12_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.12_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jre-17-ea.12_osx-x64_bin.dmg", + "checksum": "6f2614693380d6aabf168a84df43d5b9f089c0a76e7067d6871a4b9b48afccbf" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.12_osx-x64_bin.tar.gz", + "checksum": "f8603091815cda7a19cd1a4f551b6d9f4b93b42ae5a74e8e877731d3a066f16f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jre-17-ea.12_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jre-17-ea.12_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.12_windows-x64_bin.zip", + "checksum": "8c3ed3aa701229753f8f3c763cd8ec2c7ed47b27533293fd775aadb700871230", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B12/sapmachine-jre-17-ea.12_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+11": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B11", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.11_linux-aarch64_bin.tar.gz", + "checksum": "97cbda7126ac28d319dda2ba1575e395b09b61848235ca83ad9c424936604039", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jdk-17-eabeta.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "4da7a7eec2c3143edf027f73500c2f6688ee2c470cfb244e0a12c9b9761a5c68", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jdk-17-ea.11_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "73fe989cf4d3e2b47e79c225a944a8333be57e7892e0bb20a317305dd3455ffd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jdk-17-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.11_linux-x64_bin.tar.gz", + "checksum": "470edbc17ede0d6588c5b9c9181d90094e08cab50cbc814c4cfd649fd2b2b09c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jdk-17-ea.11_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.11_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jdk-17-ea.11_osx-x64_bin.dmg", + "checksum": "8721a8a52bff3bd52bfc35d34d9fbb3376c4ac0954f49e17272ef7b6f61c4142" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.11_osx-x64_bin.tar.gz", + "checksum": "b5ccb987c4773028666418c990afadb531d32a688be2f094d0633e771dd54b18", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jdk-17-ea.11_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jdk-17-ea.11_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.11_windows-x64_bin.zip", + "checksum": "b6f0f25ef90f9ca827c0be6f1bfeb85dbbea236fc1465dbe3957add7506269d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jdk-17-ea.11_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.11_linux-aarch64_bin.tar.gz", + "checksum": "892ff15242f8a09ed4e04d8b1d7118849b0bd687a797b6696a0ce48a50600baf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jre-17-eabeta.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "83ed5556ce6e4f48ecd8819613ed9c5fa116d4aa52d9cfa140dac6661687bf48", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jre-17-ea.11_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "681c4c2b5247a44932d8b6341482bd0b188155b0ac61f2ac35a2918b4b4c14b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jre-17-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.11_linux-x64_bin.tar.gz", + "checksum": "17e8e49700d54d48578cd1c51f79d6881d1edfd7aaaff1c74005ff1144757ef3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jre-17-ea.11_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.11_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jre-17-ea.11_osx-x64_bin.dmg", + "checksum": "87452fbcd409940c55a6376081a0d696cddc7a889be81a14b59d6038c4ba698e" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.11_osx-x64_bin.tar.gz", + "checksum": "b4e2b6862754da6920c441e2de80ee914ab6ddc036b6bbd3adbfc026bed2fa69", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jre-17-ea.11_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jre-17-ea.11_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.11_windows-x64_bin.zip", + "checksum": "aa4dce40a2071622f56993503f68757b87f9af41d753d50f080df3997d3610f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B11/sapmachine-jre-17-ea.11_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.10_linux-aarch64_bin.tar.gz", + "checksum": "48b4b7dea45c1960db9cad2f0fa11a5a581093143bfd4758634f52b9c3c68eb9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jdk-17-eabeta.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "e0624e45726bf42d5827b81e2e8543c09860ae69c96f41c0cdcbe7cfb5f9147b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jdk-17-ea.10_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "3c6dac857053ab51ebbfa332eeb7ebc096c7c0dce2792ad6e2b25d695a28831f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jdk-17-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.10_linux-x64_bin.tar.gz", + "checksum": "afe501de4d540a59b7f22fa1d391936dcb70959d147ff2d00d4a63628b631072", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jdk-17-ea.10_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jdk-17-ea.10_osx-x64_bin.dmg", + "checksum": "4b69492f2ee17c9a09aff400e5d6995788fc7a6fef81adae45ee431d792efce1" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.10_osx-x64_bin.tar.gz", + "checksum": "40ab45ff35a4c1722fcf871a6e3c4afbc79431f582501aa9edd19aa250e98875", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jdk-17-ea.10_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jdk-17-ea.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.10_windows-x64_bin.zip", + "checksum": "d26f2b87821e933ffdd37966d6cd6e4d11591d3d264c2125e09739a63ae02e93", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jdk-17-ea.10_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.10_linux-aarch64_bin.tar.gz", + "checksum": "265d4dcf3024a009e78e35c0331d20aa58f1889d3e24973df606bc9ee1eee660", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jre-17-eabeta.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "d53155d5d664ea6277696465b4775f28363ee8e715242796911ddec8bfcff61c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jre-17-ea.10_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "ba7fff3912004d3eae6f409e512a78494d9dcd6d0c01bf5c5bde27683dbac875", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jre-17-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.10_linux-x64_bin.tar.gz", + "checksum": "5b673c6e5847f0df3c69aed5e44a5ec10ecf07795dcf9e71acbfb0495137d381", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jre-17-ea.10_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jre-17-ea.10_osx-x64_bin.dmg", + "checksum": "ffe6fb475880e57f36168c79ece0b9d195ba0307564cc4ec0bc6bfa5020409b9" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.10_osx-x64_bin.tar.gz", + "checksum": "8d148b9e4a2955e8ff75c95d9ae334f0b9471e0b90f3f25523cb2a63e7fe5003", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jre-17-ea.10_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jre-17-ea.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.10_windows-x64_bin.zip", + "checksum": "66b384669eb27990fc91495fd94c59939e0dc78b7eaefa51644ab72d27c1670c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B10/sapmachine-jre-17-ea.10_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "212a89b74417c13250bff57ab52e69cc3a14ecbe42b4f4adbcd69e5c62d6f60c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jdk-17-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "3c66bad5d1d28ce9318ca25a9189569ddd8fb4b093fbb9052aa079df4d5ba7c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jdk-17-ea.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "e3ffdf3e0eee5bd30e496ac2097f1dab1141a91e93cc9034b1e076d4e2c25242", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jdk-17-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.9_linux-x64_bin.tar.gz", + "checksum": "5b738c6f36c0a4cfb25cabd8494ad4215459feff86b23a6c98722fd27c0d6d28", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jdk-17-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jdk-17-ea.9_osx-x64_bin.dmg", + "checksum": "9bedbcb4ec3f073d8d0b75fedae2a0654e7ae2655064de2bef6dd097af186a65" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.9_osx-x64_bin.tar.gz", + "checksum": "ba2f0ab578648ac526250fabd57bf59f5f8b310298e73745b6afeb8fc194be8b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jdk-17-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jdk-17-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.9_windows-x64_bin.zip", + "checksum": "dc2704caed809509147de9d35b6bf06107f932a9e9ae1aa5cd8de6976e73e317", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jdk-17-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "744db42736ba6dcfe8749e290a0ba9341ce717bea0cd01f0658dc0a3dc2ebe09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jre-17-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "7108811510c6f32b48db923ebf72a7da9bdd454e272d19e1600663951d56b80b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jre-17-ea.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "c7ac8f8bbfa8befe2a9e7c37b5b7d3624df9fa3e8f85d260bfb635a67db99942", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jre-17-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.9_linux-x64_bin.tar.gz", + "checksum": "fd59c55ee7ece5604361f7cc0f93049d2db78d11a411f43f652e3a2672cf1779", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jre-17-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jre-17-ea.9_osx-x64_bin.dmg", + "checksum": "7f327ed58ca3b3a7e3a693e5cdf9f2473604fe673993ca0f5545c717c4c832fe" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.9_osx-x64_bin.tar.gz", + "checksum": "c3c520a375b1e45ece688a6b5245c5c431c11fce342b43921e8ef5cfd717c4a8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jre-17-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jre-17-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.9_windows-x64_bin.zip", + "checksum": "64354c3697f6f70037f35fbff8bd26730935c2b25fed252c14e63e714926011e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B9/sapmachine-jre-17-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "944a5cb1807642879ac162943102216d20853df7cb4ec52504640cca0b418014", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jdk-17-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "773e67197803ddaa038daba75f2e3d958fad82597833d06fcb8a7d6d3e46a553", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jdk-17-ea.8_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "5b193777be0ee8c959359f722fc5f61a78b63e692464ec60d80f8a742fbc2d33", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jdk-17-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.8_linux-x64_bin.tar.gz", + "checksum": "183782bda759a9babea7459ec369fe54e015dd9a4c32170584456634d9df9a60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jdk-17-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jdk-17-ea.8_osx-x64_bin.dmg", + "checksum": "f63a2e79b61bb82b9d7f8d0cadcfbc41416e0daa090733aca500c2da9d864222" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.8_osx-x64_bin.tar.gz", + "checksum": "51eba74ed6bccbedf5979744895e150fd0606103034de82d7fc427439049efd0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jdk-17-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jdk-17-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.8_windows-x64_bin.zip", + "checksum": "f9aa39a6b9abe62fa4bb78ce5f136d251d7272188d61f1480249d0c2232f4af3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jdk-17-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "fe7d76965f6ee648458887865808c4f72c4ebc21d93d8a8b3119f95bef10ca15", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jre-17-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "654bb30f6bd252ba715c8b7171c8c992a87e183a8e7312cfb5e4f460ab82c376", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jre-17-ea.8_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "fc678b050b6f8adb81bc000b02c74913d0d811970c05a582d3b697fe3604c583", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jre-17-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.8_linux-x64_bin.tar.gz", + "checksum": "dd5234fa37e35a10a62a30f6bd84b45b644175cf859f71ae123b5f835ae9cd71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jre-17-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jre-17-ea.8_osx-x64_bin.dmg", + "checksum": "49b00e7cdd0fcaaf1cd43e1ccbf275867ce416d1294622b66f34d7f1bf7534de" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.8_osx-x64_bin.tar.gz", + "checksum": "1e8b34eba0768e32399d8483b22b77fd5c7aa72d6f1d463a61b1a8e306d8638b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jre-17-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jre-17-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.8_windows-x64_bin.zip", + "checksum": "03c2c5051a270ecfabbda2f3f86ad0841f4105003c74020f9e20ae350b6a8c86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B8/sapmachine-jre-17-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "7f3e7a83b02f1ef54b73b74ce51b438ec2bb5c865059fdcc0894f7697786c184", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jdk-17-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "d55f8478c04429f531b64d2aa653b112a569f1edd2826ca16135e7085aa3be86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jdk-17-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "fd73f8d5f6b5c03c33e1862bd6366386b30f3633249f181d697ea86292481a1c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jdk-17-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.7_linux-x64_bin.tar.gz", + "checksum": "c30f9bd8421da5afb84334de4a537bc740f6733aebcde0368c32de4d08c41d53", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jdk-17-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jdk-17-ea.7_osx-x64_bin.dmg", + "checksum": "b7a77404c32fab7cb3fb83630f1a5fb60f19fe93706017681822c88418778711" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.7_osx-x64_bin.tar.gz", + "checksum": "e924a212c5458f7b6d20933da63bb7dfbcadd13e68d4bd9e727fdb59851af469", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jdk-17-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jdk-17-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.7_windows-x64_bin.zip", + "checksum": "45723c6e0475b33d18a262e5a33db6b2076e468bffce939ae1f9902a2cd1cbb9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jdk-17-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "a49cd2f6d9f7082118c79b33fa0bf607e598530f4c92bd36729b4c80615e2758", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jre-17-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "ee92dc1ddd33706924dbf8d70830571510e6d83faef8f205ab6a8020e44bbab4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jre-17-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "a55182e01274de78db77d1a1e66fe9c018e85880432200b5506c766dc40886e5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jre-17-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.7_linux-x64_bin.tar.gz", + "checksum": "787b95855bd27d09270b1c2a2be136cf712b114f50a3b18d6fe33344969d8a18", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jre-17-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jre-17-ea.7_osx-x64_bin.dmg", + "checksum": "ffeb833c173d32ac0bd62c850fa69780cd19b1cdce388696aa7d12852bdcc19f" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.7_osx-x64_bin.tar.gz", + "checksum": "df269c36415f033b3e995f876db5378dc6074bbda69935fffdf9880576d07867", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jre-17-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jre-17-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.7_windows-x64_bin.zip", + "checksum": "bc210d82cb0f44c9607b8b8f80654789901b2c32ef99d065abecbeb8f3ef7c10", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B7/sapmachine-jre-17-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "95f85a3dad2be87843c6c9c3f8b1fb54fbd4dcb2b6bb4d3ed6e92b4cc0611a7f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jdk-17-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "83c2eca8a203edd6e97138597c1bf48d7518c9c2e418d7b7d25c2f5cd0575f8c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jdk-17-ea.6_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "78f6ba176401dbd8abacea392ec09c3eecc6965af1c664043d70530ad701c153", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jdk-17-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.6_linux-x64_bin.tar.gz", + "checksum": "046f2b2168f42e7c6937b5e62d3847b0c89f75d7f7e2d8c89f83bd4cb4049c34", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jdk-17-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jdk-17-ea.6_osx-x64_bin.dmg", + "checksum": "625702804fe5c66cc7af4cb15b48da978adc7c6ddb40cc068b4c7f2b28921672" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.6_osx-x64_bin.tar.gz", + "checksum": "3645a9dbd2f1f9ea66b6e305df9feb7c81d53e3060c7cad4b62643ff85785d07", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jdk-17-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jdk-17-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.6_windows-x64_bin.zip", + "checksum": "b909e235836914391db2a4a5f1adbf0a30c888dfae02bff783f227acf37909d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jdk-17-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "8d7a79802a34b82c4f02abe643e087e36a2acd9aecd41a4f693a9620419c05e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jre-17-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "610371c0928f9e38feafff8fa449926b6d48ea131c2f9ff49470bfa282901a40", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jre-17-ea.6_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "b68dc729a2e33754c31ca06531f71a5dc3a77ca45759b849367298e59bf52849", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jre-17-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.6_linux-x64_bin.tar.gz", + "checksum": "5fabcefb73ce1c001614d344401ded2ce8c37e2758fee8c87891997d10d0957d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jre-17-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jre-17-ea.6_osx-x64_bin.dmg", + "checksum": "495250f93bae30e6a37fc76edc64fa116fbfc000f6b5227573689c71ef4c0cd5" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.6_osx-x64_bin.tar.gz", + "checksum": "d338c9925dcc53c7f56965e901210e9e719497d1c87d932ac10c02e63a117171", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jre-17-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jre-17-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.6_windows-x64_bin.zip", + "checksum": "f0d969a7fdb12994a730849b291d7678b6404bba861f181ac3a1aa43fbbcbfbc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B6/sapmachine-jre-17-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "73bddce52d2f7a286aa1a7e90acf5569da883e700bcbe870ae2a81595a576042", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jdk-17-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "2faeea450a8a31511f7241b0a8695e07051297daad68d091e8a39806c0a7549c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jdk-17-ea.5_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "b1ba213d69feba8eee7fa6f6150068c534c63db369fb4fcae34c20e4f08fb1e1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jdk-17-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.5_linux-x64_bin.tar.gz", + "checksum": "4a00e8b01a1f01377b9df77372cec17083ed621f23ab8aaa5e3c525c31b5dd2d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jdk-17-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jdk-17-ea.5_osx-x64_bin.dmg", + "checksum": "7331e8f99d7e82134dcdfe3c3171e8cd01ada2348fc2de863008f9f8080166c5" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.5_osx-x64_bin.tar.gz", + "checksum": "a2d9a1979249668ba2cc05f747c19891af2a1b42a72b7cab7d3bfc0d617dc205", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jdk-17-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jdk-17-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.5_windows-x64_bin.zip", + "checksum": "b4a741a301fb9cc9d334d75584c7b9e3266a94a310d6312cc47e7838185d3ab4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jdk-17-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "4ecaf51c833a6c78b62752d1dcb89ab83d91f2c941f8c95806819894835ccbb6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jre-17-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "bb4409248ab3509f0f51955bb74589301f3e25a787dd7e25dfbba6cda2243e3c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jre-17-ea.5_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "72160c3d1cef05318ca6f186fd50739f098721768ec590916c011aae6f11bf6c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jre-17-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.5_linux-x64_bin.tar.gz", + "checksum": "2ff0b29f3e6e8fbcd198c39270dff9b26a59dc4e431b8579e0af3767d4ef7edf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jre-17-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jre-17-ea.5_osx-x64_bin.dmg", + "checksum": "4b835df3961f10a2374c8af088fb6425912fa9ab129f843df5f38633d7b6d355" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.5_osx-x64_bin.tar.gz", + "checksum": "9133a635b7dfdac7c76865191e2e5832d5ba8cabcb99368551982ff3f4300625", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jre-17-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jre-17-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.5_windows-x64_bin.zip", + "checksum": "9bfde88c4ac1fb7bd4198f60e9667a0362b804bb27b98ab8eb40c6888da5e78c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B5/sapmachine-jre-17-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "6f63569ace38b8879e54c64f84abfad4bdbc6a2ceb2808b98c7239e35bf19191", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jdk-17-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "cd426ec6c875e15f8cfe956e82a36122406356cc5241c27f4dc7c64b7b877333", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jdk-17-ea.4_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "d0ed8465d5c37d1ccab38721f64144d5bca7e8883913585ee3ee6e2ba5ae2085", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jdk-17-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.4_linux-x64_bin.tar.gz", + "checksum": "e5f64feb7368ab204aa675a6f9c08207daaaa0ed4d41b6317c92443acaaa7088", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jdk-17-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jdk-17-ea.4_osx-x64_bin.dmg", + "checksum": "fe0960a2faad368a40ad1ccf098fca73273d252123b36d6c1affe3381f44ed4d" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.4_osx-x64_bin.tar.gz", + "checksum": "bca7e40308e615402a708f8687abb55851a73ccfbec6f5bb46f00ec5f414e012", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jdk-17-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jdk-17-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.4_windows-x64_bin.zip", + "checksum": "e841a8a4d4dc59ef0e257de915faf91fd368e544156ecc40c3ec1f6729530cd2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jdk-17-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "bb4cd89d67d3e6e4b217c5fe569f4270cda0d79bf39697cf1c1befa709177dd6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jre-17-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "d241a8b6e8f7d2edd368ee99dcebd0c570dc73e1ef172c622fa547e61430893a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jre-17-ea.4_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "24b2f92891088d953c56c784454f48553ff41c1f99dfc92e2e8a26f33cfd69e5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jre-17-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.4_linux-x64_bin.tar.gz", + "checksum": "199283695fd8ed7389c491c2ca7e828cae9425d4d2f7ff99ceb5510c4a84b191", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jre-17-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jre-17-ea.4_osx-x64_bin.dmg", + "checksum": "4c2ba1e1cc6230642a6821b0af41d10ffca5d34468936cd94b58179f39319630" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.4_osx-x64_bin.tar.gz", + "checksum": "4ba2d0860fe1d118c69cbee88ca22af6c85e4cf9afcfb74acc9c140646bfac07", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jre-17-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jre-17-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.4_windows-x64_bin.zip", + "checksum": "96ae86847cc9dfbfbc58c45aac9ae8fd310f2657a1c383520e7107685159e832", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B4/sapmachine-jre-17-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "2dff1bf03a72f45192df423e10ec4f9267cbd51262a200af1ee75e9d331ac1fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jdk-17-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "53b1910a58700f13adbd31417bb6d88899db3c4ade222f3c026a2105b7e000b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jdk-17-ea.3_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "ca227f29dc1dbe5b8af1b7a9fd1a4d7ccd29ef422548d2d03afa378a99ff40be", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jdk-17-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.3_linux-x64_bin.tar.gz", + "checksum": "8c86fbc3478e08d5d03f911655e5db524c17961a529e2298e0158fb9508961a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jdk-17-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jdk-17-ea.3_osx-x64_bin.dmg", + "checksum": "614d84873f75f3f411b40aca2a2814b60601aa4f74a0b81ffadc79f2dabc36f7" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.3_osx-x64_bin.tar.gz", + "checksum": "105b348892ed95bc1778f610b02977f8d8eb0882524be3d774481df4edac6524", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jdk-17-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jdk-17-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.3_windows-x64_bin.zip", + "checksum": "0aa635ee121496ba374b4747f376db8f6827da969434afc77bfa8f678f719b2f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jdk-17-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "654b41f1463538ccffed83f2feb4b63f4860d8894e4ef73e2d79026f778f4ff2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jre-17-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "5e2a902b80ad480d89ec3044a92dd51ec377408bd2bd4c1200633a9fe5bccb1b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jre-17-ea.3_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "d3313282542a4c1a6820aa170ba8a534ccd399cfd288d931be5924c758cb1e9d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jre-17-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.3_linux-x64_bin.tar.gz", + "checksum": "d75ddc07a8ccfa83d3880b671f9b975f7ec3541f0eb3b037a3a5a614eb3f5504", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jre-17-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jre-17-ea.3_osx-x64_bin.dmg", + "checksum": "ba88c500f77d8489bf3eaa9915214ea55a04f081ec9d2be3e0130b1af5b0602a" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.3_osx-x64_bin.tar.gz", + "checksum": "be86d18789465373a7d52eee2004eb2ddb864e007e6809870a2a92cac74696e3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jre-17-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jre-17-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.3_windows-x64_bin.zip", + "checksum": "19c5e7055ac9a5d9ecec0d134538ce0f059744c74a3d00fe29409512e3bffc93", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B3/sapmachine-jre-17-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "9094918e66886d9edebd7633d62c0b7870b0ace54ab5f8cbb44b2f28885988c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jdk-17-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "2c945e0e1fe6a2b6c6ceb381a7f2519494f3c2c8053df168b5cda75e30b08e6d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jdk-17-ea.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "75d39bc06a77a267ab18980da9ffe592decfced1417faa86acecfe210330693e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jdk-17-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.2_linux-x64_bin.tar.gz", + "checksum": "45540c9d4519d22ccf1742b938bddd49ebffdc2bdcf1dcc60b6f99bdfb4c6dc3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jdk-17-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jdk-17-ea.2_osx-x64_bin.dmg", + "checksum": "d3c9acd316d54ef18d431c72534977006b8b58798193e0eb0ccf904a29563c0d" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.2_osx-x64_bin.tar.gz", + "checksum": "698ba6f435a59f9a91835670a3a75c6f020b0b337dddfbd1c59c224eb6399873", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jdk-17-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jdk-17-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.2_windows-x64_bin.zip", + "checksum": "e4082420dbfaa828834d4988a00bedaea3c1d6bd98a7cb6266fb567e18f880b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jdk-17-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "e288efdceea5496c11145de2848d3746d496e6f7b7f4fada8d508637bb40f008", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jre-17-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "c50e2ded3e4fa0e9b647bc55c9e1016874ebee51a85ea113f90d3c6c48991c0c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jre-17-ea.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "7fbec0a1fb74202f6898e2076081ee48b94c005b0b6a7290e582bacf424931ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jre-17-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.2_linux-x64_bin.tar.gz", + "checksum": "24bb079210190524ea5d57de92c433ec5c9bf665972f660dea28537f15d54cef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jre-17-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jre-17-ea.2_osx-x64_bin.dmg", + "checksum": "ffa5a49fcc8549c6b61c52314c1d557dd3e29aa4970549faa046957a26c549cd" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.2_osx-x64_bin.tar.gz", + "checksum": "201db69c9dd487317c72f5cd12a2870dcc7fd6208b7d14b2ab2cf37f0e411bce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jre-17-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jre-17-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.2_windows-x64_bin.zip", + "checksum": "1af69f17dd5549ddb3c105afc53a6c7a06ad773d657f290a76dadb8231a1ef38", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B2/sapmachine-jre-17-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-17-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "e3b261e8e11e8b3bf807408787d3e36b04e3a300db05390bd290c452d7a4cc50", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jdk-17-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "6304b7bbe432fc9ef41578b0415a08ae1b6ab0c2df497e3fb3de48611323df44", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jdk-17-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "749ed83f1d77d763db849f410052ff49094b98ca4710fb1114ed3d4ca8529e4a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jdk-17-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-17-ea.1_linux-x64_bin.tar.gz", + "checksum": "af405c9923e7d1bfc58ea3faee5fc0931554a5afd66970815d675c52aead2b94", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jdk-17-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-17-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jdk-17-ea.1_osx-x64_bin.dmg", + "checksum": "585e4f6f6ab10751eb480172998990895722c683652b312b82fe371068010b66" + }, + "tar.gz": { + "name": "sapmachine-jdk-17-ea.1_osx-x64_bin.tar.gz", + "checksum": "d79499d92460506f55610196f0deb597591704a0d222fe980ac8b45062893490", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jdk-17-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-17-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jdk-17-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-17-ea.1_windows-x64_bin.zip", + "checksum": "3e217a9b3b608e086e8187ceb943a31b195208a690cbef71ec4f9f4db4fd4eb1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jdk-17-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-17-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "cac57d248b8d953e8dad5efc0bbf19141c56c7bab35b559268ddb3ce3bf77636", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jre-17-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "2b8cbd324779c68b8ddcfed0394bbbd6a68bef18098da407d09f7f53122f5a09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jre-17-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "cf3521bf1a4007be2bb3420807617e0b6843a18023d3423eec6a10047917093a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jre-17-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-17-ea.1_linux-x64_bin.tar.gz", + "checksum": "35e781ef00f0f56bc1b92ff883a960e3c57ab36cc9f19119ef4af06828372ef3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jre-17-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-17-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jre-17-ea.1_osx-x64_bin.dmg", + "checksum": "00a18510b74df9af1a509d4bee3a72f858fc254f3fe3700f69b61942a993e3fa" + }, + "tar.gz": { + "name": "sapmachine-jre-17-ea.1_osx-x64_bin.tar.gz", + "checksum": "6aef72dded0abaadd47e774790ca0d5269057f81f1aefb63eceb088d6d404022", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jre-17-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-17-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jre-17-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-17-ea.1_windows-x64_bin.zip", + "checksum": "5968cf798d8decc2a20bd3b70a871be404189adf41a0acfdd2e86489e8be7ad5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B1/sapmachine-jre-17-ea.1_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-17+0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-17%2B0", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.0_linux-aarch64_bin.tar.gz", + "checksum": "07f05efc0170cae666035e2b40444cfbadcd484a7459413dd9cdbb39d3828b6f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jdk-16-eabeta.0_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.0_linux-ppc64_bin.tar.gz", + "checksum": "9e2c041a825d4e565bf5c9ea4e966e44807c2b1393400053f8417f4839805359", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jdk-16-ea.0_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.0_linux-ppc64le_bin.tar.gz", + "checksum": "8a0af42f4716e515f7b2c7d4c5a17dffd39d233746b61e904edba31be00e4d78", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jdk-16-ea.0_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.0_linux-x64_bin.tar.gz", + "checksum": "8f195d5966e55edcb2f541c5059d2ec293e5d9d0392b67053f092017159cae52", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jdk-16-ea.0_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.0_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jdk-16-ea.0_osx-x64_bin.dmg", + "checksum": "455b495df5ea273c06816cb7fcedd6509875a58e6876b820874cf3c2ab4dbd5e" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.0_osx-x64_bin.tar.gz", + "checksum": "204bd2aacb8cd1f97d2e36c464b5e1745b5de57e6f5155d6c42f0205d44c46f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jdk-16-ea.0_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.0_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jdk-16-ea.0_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.0_windows-x64_bin.zip", + "checksum": "cae7d38d49e9aef0f61aac028985c01f7440323cedf03a86e9ca09a341a3fa03", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jdk-16-ea.0_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.0_linux-aarch64_bin.tar.gz", + "checksum": "997b813df614c9780bf33f3fbcb076b6f7b4c6622dbfe9b941d5456aaae63e18", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jre-16-eabeta.0_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.0_linux-ppc64_bin.tar.gz", + "checksum": "d74ad90508c4e72b832d9e5fbcc2e5ca0d6bf54ed7b15eb9e3f4d82239c39a27", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jre-16-ea.0_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.0_linux-ppc64le_bin.tar.gz", + "checksum": "ecdf0ecd8cc6eda0d0697a33ab21b533696e28e5029f799ea8801dfb5803a0a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jre-16-ea.0_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.0_linux-x64_bin.tar.gz", + "checksum": "cd074235b7c13579d19688dc1881743d50d3bb1c040c1baf5584d3a1ca2cd679", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jre-16-ea.0_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.0_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jre-16-ea.0_osx-x64_bin.dmg", + "checksum": "c3b625de6a8d01e5bbc9a043bcb41df10b11bf9ad4f3399d9f3540aed902df0c" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.0_osx-x64_bin.tar.gz", + "checksum": "1b6546669e506890f859e5a1f67836fae0ebf73053eb7b3f589762f434903431", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jre-16-ea.0_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.0_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jre-16-ea.0_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.0_windows-x64_bin.zip", + "checksum": "ea7acff2ade9203228176852176cf4e2de62291cc74f1c3777130061c52599fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-17%2B0/sapmachine-jre-16-ea.0_windows-x64_bin.zip" + } + } + } + } + } + } + }, + "lts": "true" + }, + "16": { + "updates": { + "16.0.2": { + "sapmachine-16.0.2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16.0.2", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.2-beta_linux-aarch64_bin.tar.gz", + "checksum": "dd83fd6961d104b73c269b751c00ad9295cab54a3be290fa8d7cf31821994d75", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jdk-16.0.2-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.2_linux-ppc64_bin.tar.gz", + "checksum": "6da645f3385b0b8e69e6c2948cf8acaaf5f9fb46765d871bc7807ecb068bcbcc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jdk-16.0.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "de42d98c7781f77ec4e25872861ad5e454f7c4543db43f03457b328c4d9e9b2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jdk-16.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.2_linux-x64_bin.tar.gz", + "checksum": "43831d4ebb9cd6ec9cf6f992406b290b3da409af21cd61b37d80e8a051c1a998", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jdk-16.0.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16.0.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jdk-16.0.2_osx-x64_bin.dmg", + "checksum": "d385e29399a35156ecaa23fbeed08b876c4b9bfcf076640169bde95196ee1d78" + }, + "tar.gz": { + "name": "sapmachine-jdk-16.0.2_osx-x64_bin.tar.gz", + "checksum": "7fae51236896642455e7ff667bc1bb40e001c6a39e24837b0924f7ff8aab7318", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jdk-16.0.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jdk-16.0.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16.0.2_windows-x64_bin.zip", + "checksum": "d8e07df2d3f6bdc8366120d2a4ca962530702b36d854b88203cba4e984c157ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jdk-16.0.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.2-beta_linux-aarch64_bin.tar.gz", + "checksum": "5d664db324e52732d813821261cbc7e4ed998e869a0a08c38f2cda9268b1de4c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jre-16.0.2-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.2_linux-ppc64_bin.tar.gz", + "checksum": "61cbcfc403fb4c828c1230ad15883b55a8bb054f49e5d6fc4e02285e19c59b78", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jre-16.0.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "96f3f110d8111302c9be5a5e11ce5468ee1b427a604dcbb5a37838b3a0df4fa0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jre-16.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.2_linux-x64_bin.tar.gz", + "checksum": "4b0bcb0a15813077a7ecaf3c21041f80f524b759471b9e971896ed7cbc8d58a8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jre-16.0.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16.0.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jre-16.0.2_osx-x64_bin.dmg", + "checksum": "728fef2bb383a788e6b34b9fe962f833802b0c02d2001ec51ca01b970ac1e149" + }, + "tar.gz": { + "name": "sapmachine-jre-16.0.2_osx-x64_bin.tar.gz", + "checksum": "3df8398fdca048cffd07cd762a750ce527e983ec44c47cd9f652764e4bd8a751", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jre-16.0.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jre-16.0.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16.0.2_windows-x64_bin.zip", + "checksum": "436ef8d6ff5c711eca8e3ab620dc671dcfe74b0564e7b26c3b7fb0ed2a677521", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2/sapmachine-jre-16.0.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16.0.2+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16.0.2%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.2-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "481e710b8dbac4a0b6948250f3f038323bc256571a4ba429f8fc690ad6d9ab33", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jdk-16.0.2-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.2-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "a3e67e184710b77d38be0f298c347f24d4cc06d89b5e990dac06651a5b44be51", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jdk-16.0.2-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.2-internal.0_linux-ppc64le_bin.tar.gz", + "checksum": "c3d6c488ac876bbe343f3d1ccdddbf19463899db8832cb2da9726b3afa12051f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jdk-16.0.2-internal.0_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.2-ea.7_linux-x64_bin.tar.gz", + "checksum": "752ececbf297d22dd570cc46e576450ccc7b412fbff7929368f60a95319c1f03", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jdk-16.0.2-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16.0.2-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jdk-16.0.2-ea.7_osx-x64_bin.dmg", + "checksum": "c486ed86d3b57d605eb1ad36ed13e03df805ff6b0e8009bfb8f13b94308e10b8" + }, + "tar.gz": { + "name": "sapmachine-jdk-16.0.2-ea.7_osx-x64_bin.tar.gz", + "checksum": "452a28b79beac7013819de4b1cec4d19802315ea2111fbc4e1228a4b8d853619", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jdk-16.0.2-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16.0.2-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jdk-16.0.2-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16.0.2-ea.7_windows-x64_bin.zip", + "checksum": "298681b03927e35940c3e693484a351f17576aa9d7686f3a14e7ba7f1fd6d0e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jdk-16.0.2-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.2-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "c9a5048feabe61a44f2f62de9465a79282ee621c9eb9c216b3a3dbbd11065675", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jre-16.0.2-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.2-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "a614cebebafd4c3a3c787cb6d6b6619633caefa1c226700ec7d9d7b1d522e631", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jre-16.0.2-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16.0.2-internal.0_linux-ppc64le_bin.tar.gz", + "checksum": "38a84ef7484fc67e354271471a369765d565815400d6260f7f998a4a1ce9bb15", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jre-16.0.2-internal.0_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.2-ea.7_linux-x64_bin.tar.gz", + "checksum": "8d134af589e7d2536d38c63aa3facb555c97d61ada3353822f591bc4ec9dfe27", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jre-16.0.2-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16.0.2-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jre-16.0.2-ea.7_osx-x64_bin.dmg", + "checksum": "c231cdf03657678907c0902b8f2c454cb9f3365703bb23659589cb6c1145a12b" + }, + "tar.gz": { + "name": "sapmachine-jre-16.0.2-ea.7_osx-x64_bin.tar.gz", + "checksum": "e7df217935560b333a517d730d1ab5a5dd93592596b861469cebe6ae2255d174", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jre-16.0.2-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16.0.2-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jre-16.0.2-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16.0.2-ea.7_windows-x64_bin.zip", + "checksum": "599cb029fc11eb1dfba6ca5e665c390c1db28b730949d231d74fe8113fd6b4c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B7/sapmachine-jre-16.0.2-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16.0.2+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16.0.2%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.2-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "70dd0c8bbf0a2dd1a44b8ab52b4a0c96c82a0d74a2bf50f3c9ee3f7e5a447e61", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jdk-16.0.2-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.2-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "1d56bad9bda008ab420beaf768d564259a5d37ab163a5081b5392515cb1d8b02", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jdk-16.0.2-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "e3c3743a2ce3c77156f25e7a381fba3ef7029572aee0328523e555ca484b53f0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jdk-16.0.2-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.2-ea.1_linux-x64_bin.tar.gz", + "checksum": "1ec4075129cf576a5e07c464dd51d54fc6db965dccf8c375dd05442d0ff888c9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jdk-16.0.2-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16.0.2-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jdk-16.0.2-ea.1_osx-x64_bin.dmg", + "checksum": "2e165556b5b705b429831a176a2a4854e951db9ff38f06ae5ee2eec0978f4441" + }, + "tar.gz": { + "name": "sapmachine-jdk-16.0.2-ea.1_osx-x64_bin.tar.gz", + "checksum": "bbd49fe12e524d5e5ce254c596475a2169b5913dbe2942b18763348edeb54316", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jdk-16.0.2-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16.0.2-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jdk-16.0.2-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16.0.2-ea.1_windows-x64_bin.zip", + "checksum": "89889b529cc430d8b360369c8200f3832d4581a1eab99dc8ca8fac35dc6ecb7e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jdk-16.0.2-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.2-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "38968906712e4c6ffc694458a7f818b5bcfb369dadcf3c813ddd4025a7c51c17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jre-16.0.2-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.2-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "e78572a63aff58e79b485c1e4e5f1b6aeeb65ade2e41cb62e65b29ee76e41ecb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jre-16.0.2-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "dc2d262d2eb2edf06c8b390da633a12a74c343b86ce75f8135b84981b4722a06", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jre-16.0.2-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.2-ea.1_linux-x64_bin.tar.gz", + "checksum": "5893a07694c3c72ac5818893d267b416b5d0635f1ed7ba9105258dcd056079ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jre-16.0.2-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16.0.2-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jre-16.0.2-ea.1_osx-x64_bin.dmg", + "checksum": "080535859f04c212618e74042266d150a2ed0480cc0f315e70bf24b021c50fb4" + }, + "tar.gz": { + "name": "sapmachine-jre-16.0.2-ea.1_osx-x64_bin.tar.gz", + "checksum": "871adbbf089ab6b674ba2b42609f9e9a29782e620956ba7b7c6307c09f3302c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jre-16.0.2-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16.0.2-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jre-16.0.2-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16.0.2-ea.1_windows-x64_bin.zip", + "checksum": "d5d1caa5e5da18d4986403eac4d8a845981184caf1cf66af3b6031a420729e6f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.2%2B1/sapmachine-jre-16.0.2-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "16.0.1": { + "sapmachine-16.0.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16.0.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "86da8c5516ee2f2f8c2aa4bd59b3d1cbef40dda5ad340e9d7984f3cfdb36307e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jdk-16.0.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.1_linux-ppc64_bin.tar.gz", + "checksum": "7ddbf19651ee8e20118153ce8aa200a0b528d72bb7c808d4f4d80b14a2418b39", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jdk-16.0.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "81846fe07252db3795ff9c7943ef7617212ccc846a87a59e7f23758401b0ff71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jdk-16.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.1_linux-x64_bin.tar.gz", + "checksum": "a9b0a5748909b94ff8956572d32162147f7fd6e4a8878a6a06611e13c1897f44", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jdk-16.0.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16.0.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jdk-16.0.1_osx-x64_bin.dmg", + "checksum": "858bf721b32f839011ecbc2f387a1133c93cfec8bbf147d13f23a96553bbe40d" + }, + "tar.gz": { + "name": "sapmachine-jdk-16.0.1_osx-x64_bin.tar.gz", + "checksum": "b248c00f259212496329496f3a6d0f6076b62099039ddad393c3e0c60d909b20", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jdk-16.0.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jdk-16.0.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16.0.1_windows-x64_bin.zip", + "checksum": "4dc9e84497918f6242cf8f2ae2aef47b6b31c667744f05f75564c1795eaf20ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jdk-16.0.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "5467bb2fd7e2ce4b87c8245664e7bbda296070ebb6cbf0a554d70e5087ea4ef3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jre-16.0.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.1_linux-ppc64_bin.tar.gz", + "checksum": "28ed084f1957ed200be1e3f99658a684286e5a7be1db18e691ec352230806f84", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jre-16.0.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "cbb60f0f71d191b476b962951f09c1b05807710404d0df2d26c9e7b083f04a92", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jre-16.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.1_linux-x64_bin.tar.gz", + "checksum": "df15edcf12aeed73a8d88b774f6b20945d258abb59944ef5b708fc7b755c7c5c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jre-16.0.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16.0.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jre-16.0.1_osx-x64_bin.dmg", + "checksum": "03718a0808252b9b04cb729594d0c800a3f977c021ee719ac05395c916a3bb00" + }, + "tar.gz": { + "name": "sapmachine-jre-16.0.1_osx-x64_bin.tar.gz", + "checksum": "fe9fc8ac16ddf6dd3b01564cff4c0a062208f940409dc5e33ed6b32f243f97de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jre-16.0.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jre-16.0.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16.0.1_windows-x64_bin.zip", + "checksum": "19fb2d5affdbbf4cf1de9d20210708c777cde2c28f76a845d5c7b60d81980f2c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1/sapmachine-jre-16.0.1_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16.0.1+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16.0.1%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.1-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "c8c4de34aa38e6b87ca2b3daa1a6cc603251a47474458b89800841d5c250b23d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jdk-16.0.1-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.1-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "c5c5fd952e3e39dcee859e9a9ffc1570dbbc87b458c89a279c7890906b1d6f15", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jdk-16.0.1-ea.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.1-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "e980cf25cd4135ca3423eb1b85acaeb6dca117a8461be41b8ceccfc3d9ae8397", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jdk-16.0.1-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.1-ea.9_linux-x64_bin.tar.gz", + "checksum": "66fded16cffa357ab0c309a4a476e8c25d99d37164e2df4e6bbc6653ac59a70d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jdk-16.0.1-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16.0.1-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jdk-16.0.1-ea.9_osx-x64_bin.dmg", + "checksum": "587c6537cf95a27021512a589a54e108d5bf97adb6137374bb534f25504e001c" + }, + "tar.gz": { + "name": "sapmachine-jdk-16.0.1-ea.9_osx-x64_bin.tar.gz", + "checksum": "15bd99c9c4d1f80af8822f30669b40b0f9e64906d1c042572d2cfd8eb437ba2b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jdk-16.0.1-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16.0.1-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jdk-16.0.1-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16.0.1-ea.9_windows-x64_bin.zip", + "checksum": "37e5577878ce0b501c7c5101e804675757c35cb00f837768c41185887213e900", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jdk-16.0.1-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.1-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "71b0e1afaca8deab2fb05cdc1ed17e36c26f13aafc906074ee59fd187536984d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jre-16.0.1-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.1-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "aff42f7df74b0b72af38aa8861405ec5bcbe786a93f0ee059f37bb569f100857", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jre-16.0.1-ea.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16.0.1-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "01c326f2ce4f93615d5a28226cc78265d7e16063fefb87d88c32cdad7c3989d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jre-16.0.1-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.1-ea.9_linux-x64_bin.tar.gz", + "checksum": "24c7b11177661bb0ec81663aa1c487182bf8cf262921d3f463aa0dae4364ce0c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jre-16.0.1-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16.0.1-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jre-16.0.1-ea.9_osx-x64_bin.dmg", + "checksum": "4de0bfd435da71129dcfa1051f1c2fe24aaff74c0ba1f47f7b3917c1eb96d6cf" + }, + "tar.gz": { + "name": "sapmachine-jre-16.0.1-ea.9_osx-x64_bin.tar.gz", + "checksum": "2ed54fde0510255bb6f274cbcb68e3d586e707babb4e678b294813b8e13ea915", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jre-16.0.1-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16.0.1-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jre-16.0.1-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16.0.1-ea.9_windows-x64_bin.zip", + "checksum": "411b08fc827601856bf251be82f0b95d8626ccd6d0fa955e7c54b624a6afe0a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B9/sapmachine-jre-16.0.1-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16.0.1+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16.0.1%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.1-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "f167ddee17abaf615b3aae8597a8213762253acc70250bb231edc05e865d7eda", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jdk-16.0.1-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.1-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "1664799dbad68bbe7a2ff4beff4e31a20e49588295769798a8f8492ad7e2ea5b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jdk-16.0.1-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "05cbd5a7eb0add81db25995c864df6dc4ceeff396b354ebb868b697e4a83a7ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jdk-16.0.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16.0.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "78aa4538b7dee3cd0c5ad15c361f7c5276f20c42b819e8d75ceec0e9dac3ebfb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jdk-16.0.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16.0.1-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jdk-16.0.1-ea.1_osx-x64_bin.dmg", + "checksum": "555f5b0c7f11080ee5662bbb1850471d44d0e5edadf5f24c149c386954323bf7" + }, + "tar.gz": { + "name": "sapmachine-jdk-16.0.1-ea.1_osx-x64_bin.tar.gz", + "checksum": "79bc1747cb0077426ab9bb1b1ba54716a1972e4d3e4e3a2e79f7864582f48fe0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jdk-16.0.1-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16.0.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jdk-16.0.1-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16.0.1-ea.1_windows-x64_bin.zip", + "checksum": "9a23c35f825e3d73a1873a04b15f7e47628f2d2082dbc3ca882e7c1fa0dc455e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jdk-16.0.1-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.1-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "f158c5e677fdbe1a57ebd8ec092526568339c9baeb084cf1a10253e8c5bb68ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jre-16.0.1-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.1-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "b60a0bfd31d9021bedf01fae600471609b0c45b22fca4ab8451b2f00e41327c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jre-16.0.1-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16.0.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "acdf6a06b44b0cd5445b213d78155897a7ee300bbf5498dbd0d4533c071b822f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jre-16.0.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16.0.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "90aa313b9e8d4464f2de542d96d5dacaa4c3fd0b57d3ec0eaf3d2f319a88415e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jre-16.0.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16.0.1-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jre-16.0.1-ea.1_osx-x64_bin.dmg", + "checksum": "c67a5b25b95552db8c48b34cee30d4c308bfaea2a8f52ed893f9dc52a1f5e100" + }, + "tar.gz": { + "name": "sapmachine-jre-16.0.1-ea.1_osx-x64_bin.tar.gz", + "checksum": "2fa62df41304d1bc97a8fe3cadafabe6236a5f7a73ffa264e844f48f8207d41f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jre-16.0.1-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16.0.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jre-16.0.1-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16.0.1-ea.1_windows-x64_bin.zip", + "checksum": "94555fcc80f27870dba9980e4f0ebbfddc0d9a5531b5462d1cb4c74fe148e7e7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16.0.1%2B1/sapmachine-jre-16.0.1-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "16": { + "sapmachine-16": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-beta_linux-aarch64_bin.tar.gz", + "checksum": "c5c6fd666b53fb12ff7789ff2577e907e8e2c13ed3b4ab8f6616687ebfd89e11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jdk-16-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16_linux-ppc64_bin.tar.gz", + "checksum": "e637facc6655316402d63e912a035b9bbf27546e8a9cd3849fb1a76b59d96328", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jdk-16_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16_linux-ppc64le_bin.tar.gz", + "checksum": "89b136073272181003ba80b517a5c9d6818611944eb739fc37447678ae708693", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jdk-16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16_linux-x64_bin.tar.gz", + "checksum": "c8198de439a08708e54e035c32b7a26bad2b22651c02020e4b92787b9480e9c1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jdk-16_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jdk-16_osx-x64_bin.dmg", + "checksum": "d0d073685f15ed76eba35b54d0097ab11c9252aad59d2fc9fa52d347440bfc4a" + }, + "tar.gz": { + "name": "sapmachine-jdk-16_osx-x64_bin.tar.gz", + "checksum": "f2d93d3f0a5a0cbcb60f27e08b44059256a240ac4bd6e3c5081bc5aa8fad6a66", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jdk-16_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jdk-16_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16_windows-x64_bin.zip", + "checksum": "22092f26ad98526c89ce47d78b11ecf04f46b61a3e018f645fa668d77a1f0fed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jdk-16_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-beta_linux-aarch64_bin.tar.gz", + "checksum": "b4b5da3187270bd303dbc481198a3babf196330d1010415198a8f2a3b150f8eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jre-16-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16_linux-ppc64_bin.tar.gz", + "checksum": "7dc138fc2b85805d6dc43c746871ce634381d6440f266ddb729a1e143eb6805b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jre-16_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16_linux-ppc64le_bin.tar.gz", + "checksum": "b19bde1cefa2da11524cd638c8ada0ce1c3126c0690f28a3184a815a0f305b2b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jre-16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16_linux-x64_bin.tar.gz", + "checksum": "38addbe1d1e3278de79a2f4e485325e9ef9f4def45657c43975a7c07de7dfcf9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jre-16_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jre-16_osx-x64_bin.dmg", + "checksum": "6544699901a2da6a929bf8751f3523ab6e47d480ad1ee7ce341e7c04b9b5f610" + }, + "tar.gz": { + "name": "sapmachine-jre-16_osx-x64_bin.tar.gz", + "checksum": "72ef46665479d41c58aed55ca7f7971fcda8b50f9996b458560e2b510ea5d5b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jre-16_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jre-16_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16_windows-x64_bin.zip", + "checksum": "d07849aaa4cd846945002beecdb40a2dbf6165cb1b1e03b6efe27369b27e9ce4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16/sapmachine-jre-16_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+36": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B36", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.36_linux-aarch64_bin.tar.gz", + "checksum": "bca9740ff394c86234d97b4610452d91a180cced6739986932df23f64b624a2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jdk-16-eabeta.36_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.36_linux-ppc64_bin.tar.gz", + "checksum": "a99c692ba2715889e3c2f3924c776496ca22ab0c8c122a8c33f8908d02d3ed49", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jdk-16-ea.36_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.36_linux-ppc64le_bin.tar.gz", + "checksum": "24e905b46cea99d2bdb1249ba0b7b37ca8526d4da2cfdb7f811017c27cd81608", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jdk-16-ea.36_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.36_linux-x64_bin.tar.gz", + "checksum": "f84271655313f6fe25f2315247ce4dd9742945640074032be99764e12807cadb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jdk-16-ea.36_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.36_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jdk-16-ea.36_osx-x64_bin.dmg", + "checksum": "fc2aceedf0966736476c022f90ac3fa06fe481cc0d103670f5afab3d8787fe0c" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.36_osx-x64_bin.tar.gz", + "checksum": "da8b171375b7e426b20ef403a2417e8e4b51d5a3d88827ce82a300e57bc67ed7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jdk-16-ea.36_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.36_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jdk-16-ea.36_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.36_windows-x64_bin.zip", + "checksum": "270701b6ecffb5ab4e960eff14f3126f0a5acbc3080de5eaa41afb778a85105d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jdk-16-ea.36_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.36_linux-aarch64_bin.tar.gz", + "checksum": "6d516b8a52d8d644b66bd883bc39940403f75a4def2f9ef7f10d53f72d5cb064", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jre-16-eabeta.36_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.36_linux-ppc64_bin.tar.gz", + "checksum": "57a2ed5dabe70ebe63b20b62d4736b082e358b023d23ce0573fa9b2eebdde90e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jre-16-ea.36_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.36_linux-ppc64le_bin.tar.gz", + "checksum": "e1aaa3c257c3fcd272bad7cebb0fbe204c48133cf059192281a264191bd96a7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jre-16-ea.36_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.36_linux-x64_bin.tar.gz", + "checksum": "36330c182a54ac9d072e9d19c0ffed8de641edd0f54f14fe4f6b18a6288814b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jre-16-ea.36_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.36_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jre-16-ea.36_osx-x64_bin.dmg", + "checksum": "e4bb9f21434be9f13ae4851b487e0f7845e60ff52c77843d32953990bcc966b9" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.36_osx-x64_bin.tar.gz", + "checksum": "400e3060116a51940abeba1adf07f6f10db47db683de1210b7ae5e5cb2105377", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jre-16-ea.36_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.36_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jre-16-ea.36_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.36_windows-x64_bin.zip", + "checksum": "2ecb9af4e37dcc83cd148d9573b2ec191706be386bf981bd36b3e38aecf7aafa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B36/sapmachine-jre-16-ea.36_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+35": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B35", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.35_linux-aarch64_bin.tar.gz", + "checksum": "f9a87545b5e97a822b7f30a96b9c2f29b19d3e3741aba24404b1cb5cf788a309", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jdk-16-eabeta.35_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.35_linux-ppc64_bin.tar.gz", + "checksum": "7d762974ea01fb65d3bef099614a2606102caadfca8b25568733e62b571a8727", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jdk-16-ea.35_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "5d0015cebb5da5ca80add421c31b79f87009fe1132ac59fcc0a2a73c4dc6767f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jdk-16-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.35_linux-x64_bin.tar.gz", + "checksum": "ffc3a5054f242fa1f8f56b04f24e547c9049b8f6ed566adcdd808e51fd537f2c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jdk-16-ea.35_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.35_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jdk-16-ea.35_osx-x64_bin.dmg", + "checksum": "6b542e037403dbea79f95b2d260d3bb8b180d49da8c75542b2aed8c84fb1cbd4" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.35_osx-x64_bin.tar.gz", + "checksum": "f914c0a4c55ca7443b2c5e8ef8a8bbaf39389812e4c3788792550e0f319ae054", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jdk-16-ea.35_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.35_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jdk-16-ea.35_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.35_windows-x64_bin.zip", + "checksum": "f85f52f2b64f76150e483c70df7e13efa6986b01fcd8be7111c8ec6e09c575d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jdk-16-ea.35_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.35_linux-aarch64_bin.tar.gz", + "checksum": "107f1475cadd3116043efeba6549c7c3ba1602298f4ef845df6f6e6bf1ad9ac3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jre-16-eabeta.35_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.35_linux-ppc64_bin.tar.gz", + "checksum": "267318340b717e7459ebbeca73625425edc261eef4c8710151f624d6c6b86403", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jre-16-ea.35_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "09e8ec7061a94061c94bb76c4b7b32637374f20bd73a47ca215c38c1d674b4a8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jre-16-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.35_linux-x64_bin.tar.gz", + "checksum": "b0f6d34621018ab1fc3453e5bae7c47565da8d7a6cb0e2f8fbc6fae324916a7c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jre-16-ea.35_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.35_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jre-16-ea.35_osx-x64_bin.dmg", + "checksum": "26de8fd39e32aa731c5ba8b780d6d5827ce8f3dac58e364299a83c12f4a68d1c" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.35_osx-x64_bin.tar.gz", + "checksum": "3d66890bcbcb376fd4aeb9b902cf96ea6c9859f516a7aaad548de8b7f93c86f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jre-16-ea.35_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.35_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jre-16-ea.35_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.35_windows-x64_bin.zip", + "checksum": "e2453efd2a0b83e198faa25a8b704c42eaec960c598d67263fc6ecd3d01af6c9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B35/sapmachine-jre-16-ea.35_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+34": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B34", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.34_linux-aarch64_bin.tar.gz", + "checksum": "5ba6e1f3521c408a387af1f195fd450f1cd5f55ccc10454435b1394ac935e337", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jdk-16-eabeta.34_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.34_linux-ppc64_bin.tar.gz", + "checksum": "62e7bea8b7cb8f703eac1e51ddc18ad8da080fea2d848bf2ee51aea53e32b347", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jdk-16-ea.34_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "afeddbbdccc6c9d1ce2ef45ef58fe5dc57a830ca4bd9acae5c7007cf5fe792c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jdk-16-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.34_linux-x64_bin.tar.gz", + "checksum": "b79f6ce46fda8af74992deb02ec636e832d49144c562a3a98e74414441e14474", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jdk-16-ea.34_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.34_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jdk-16-ea.34_osx-x64_bin.dmg", + "checksum": "07938c94957ccfbe77400c1896937f6faa7173023c0d360d16180581fb30def2" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.34_osx-x64_bin.tar.gz", + "checksum": "77428301044901bd91942bb89306b7884c9829e28559eda0a51be597ac0b1225", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jdk-16-ea.34_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.34_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jdk-16-ea.34_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.34_windows-x64_bin.zip", + "checksum": "3da988fa32b56cebdf857c8e1ed7f9a2ce0d800ef25151f3b8d46788f9ead62a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jdk-16-ea.34_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.34_linux-aarch64_bin.tar.gz", + "checksum": "1a81651cd462be8bff469b4f5986278a7cb054d2b23f297328c64398c1fffec1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jre-16-eabeta.34_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.34_linux-ppc64_bin.tar.gz", + "checksum": "dd75575e4071f7db4ec91058e951d8230234851d152e731e18eb77d53c741539", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jre-16-ea.34_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "68e0f7d3a6e6f9f0dfdab2ced32d0f858cb7256ddabf475ac9f84ebfb65af245", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jre-16-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.34_linux-x64_bin.tar.gz", + "checksum": "41ff1be097f91ac22bde4e2d8cdde9275d80273c7d2a49ce1a8406ec7628a849", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jre-16-ea.34_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.34_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jre-16-ea.34_osx-x64_bin.dmg", + "checksum": "a33c17f67b93020c61e082e64c80f6b58180c0d0892667ab0e61f2f9d8637488" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.34_osx-x64_bin.tar.gz", + "checksum": "f3ee69ea4a7b0cbf75866bd250d7848ac8c0e6fc65fba738374b6a81eb55952b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jre-16-ea.34_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.34_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jre-16-ea.34_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.34_windows-x64_bin.zip", + "checksum": "7b5c6b48f18b6108888565da9f2ace28aaee28e939172948ee31b98a48e6b9ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B34/sapmachine-jre-16-ea.34_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+33": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B33", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.33_linux-aarch64_bin.tar.gz", + "checksum": "329f13f2ca882dbd3b395d22f759cae41459eebb518c3d93b837773b768e6ef8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jdk-16-eabeta.33_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.33_linux-ppc64_bin.tar.gz", + "checksum": "2e4f1676b1b43509cd3a27fbc4a734b12da4e5f6035a8b7f60405dc80ef62c4b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jdk-16-ea.33_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "c842edd9025aa9dd56c910dcd4d4a37bf733ae97e9391c1bcb35f1ca24aa9fc0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jdk-16-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.33_linux-x64_bin.tar.gz", + "checksum": "91ff563f833b6b06b7715d13b1e35effb0b157384691cb61703da2a2dc1e2ea3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jdk-16-ea.33_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.33_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jdk-16-ea.33_osx-x64_bin.dmg", + "checksum": "faa7c421ead3099777ce963169a37603e09a6bbc5e052c2be43ad545dee77244" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.33_osx-x64_bin.tar.gz", + "checksum": "c78e103069f52df664b935b63df254b6e7b91d715165d3a203fe3b1955f0cce1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jdk-16-ea.33_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.33_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jdk-16-ea.33_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.33_windows-x64_bin.zip", + "checksum": "2886621b0de438c1861850aa46fdd0828c3de84d75cbfdd957541c3b890460ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jdk-16-ea.33_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.33_linux-aarch64_bin.tar.gz", + "checksum": "a6cab4634c983cd515b0489ee59f613532047d78957525a7c1bc18e3eca803d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jre-16-eabeta.33_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.33_linux-ppc64_bin.tar.gz", + "checksum": "21e42e8612477fc7155a6aac56c16c9319f1b929413b44c290d517794b5dde83", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jre-16-ea.33_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "797f824a0ddc94515ab93a45940b57160af9e70c3a47869dee7eeb1b55e564e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jre-16-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.33_linux-x64_bin.tar.gz", + "checksum": "78a35ccfbc96ffa30ab7a5aca2d61d35b5fdd8ab38ac6002bf71dfa812eba4b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jre-16-ea.33_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.33_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jre-16-ea.33_osx-x64_bin.dmg", + "checksum": "ddc23fba51527fd0e9dcbb7d7de3de6ab5a34c342de0a81a284b9e18227dcd50" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.33_osx-x64_bin.tar.gz", + "checksum": "a64d2c2f594ccaf205ac71834c17c344406c1c642ddba94f805657984558f434", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jre-16-ea.33_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.33_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jre-16-ea.33_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.33_windows-x64_bin.zip", + "checksum": "745855d813d24c0a6e6d8e923548d5444a07ac500302aa1cf16b156e60185d39", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B33/sapmachine-jre-16-ea.33_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+32": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B32", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.32_linux-aarch64_bin.tar.gz", + "checksum": "cb608fad4b2288fd1ded7f75f1a3835d6319e752b6ea146ce92fe29f7c8e582c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jdk-16-eabeta.32_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.32_linux-ppc64_bin.tar.gz", + "checksum": "2c286a29674438e6e775fdbc2c82e478977d6289aee24048e24e3d56299e89f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jdk-16-ea.32_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "44ced20a4fd297271e960b760b5f5b1eda7ddb50c12a87dc8b4b6b00383b37b6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jdk-16-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.32_linux-x64_bin.tar.gz", + "checksum": "b7c3c0dcd8d32492f348a2647ac0c55c773d04b067c2bd151782fd348454de7c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jdk-16-ea.32_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.32_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jdk-16-ea.32_osx-x64_bin.dmg", + "checksum": "e67efa9c626bb03eca81fd5e18ffa50b181fcc097268f0369d314587c63e31a8" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.32_osx-x64_bin.tar.gz", + "checksum": "9543e80f8cd562b940e0deabf9d0419d75d1b01a2419357d07adbe96c4c09a06", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jdk-16-ea.32_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.32_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jdk-16-ea.32_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.32_windows-x64_bin.zip", + "checksum": "087ead0e3c9307a83d737f65dcf4f65f0fea555e3c9fdb0d40ad07573f9fb71a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jdk-16-ea.32_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.32_linux-aarch64_bin.tar.gz", + "checksum": "a6491c993186a6f1f65d70a33061e4323b2f8bd7d9ada099eb018b6e8cf49fa6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jre-16-eabeta.32_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.32_linux-ppc64_bin.tar.gz", + "checksum": "5c9b56425de1c13d06ca0d4cf4ad67c32853fc7a2752517e5e708ff98bdf62cb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jre-16-ea.32_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "241ce3fd4ae70357fb7476955838a6ce92f5d1092d050057447b63cdb3209eb3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jre-16-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.32_linux-x64_bin.tar.gz", + "checksum": "278c59751a38c0e44b2d02c37ac39014225764c13c8412f6b992383e07f47226", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jre-16-ea.32_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.32_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jre-16-ea.32_osx-x64_bin.dmg", + "checksum": "82767866b85801cea70dbde76803e5f7fa5d59b176cb4147a2cdd59e83c2d7c5" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.32_osx-x64_bin.tar.gz", + "checksum": "32b37afb50cf71c310309c4972aca965a09a6e9619cb71ac8efc7a00ebcb4c9b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jre-16-ea.32_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.32_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jre-16-ea.32_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.32_windows-x64_bin.zip", + "checksum": "3bb239e8fb95be68d22c0cada544ab27aaf231df6f9e27a49ad95b56ee90d7ca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B32/sapmachine-jre-16-ea.32_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+31": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B31", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.31_linux-aarch64_bin.tar.gz", + "checksum": "6f70df2a6ab05624d91f2980691af2e2e95050959ad08e7aa5a45a73d5cb46c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jdk-16-eabeta.31_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.31_linux-ppc64_bin.tar.gz", + "checksum": "f050194c75e2f795a39f3edc915b88cd5c51608c4a7cc388be0a5517e5ff0a5c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jdk-16-ea.31_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "52f5beed5acbb439fba409838240ed942180c22d592b5a4e2b64ae1150fef5b0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jdk-16-ea.31_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.31_linux-x64_bin.tar.gz", + "checksum": "dd6abb1158aa5f5a9df767b277789da4f80e5dd501fbff8d626fe8bba8a97b92", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jdk-16-ea.31_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.31_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jdk-16-ea.31_osx-x64_bin.dmg", + "checksum": "69e4bb4a30ebfb391c1ee33ddd9a7ccae3a00d90c513967641ba5496b2089e9d" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.31_osx-x64_bin.tar.gz", + "checksum": "30ce5805bf0b1d21db10c79c869a1d41c71375fa6541384e200cde048916f025", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jdk-16-ea.31_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.31_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jdk-16-ea.31_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.31_windows-x64_bin.zip", + "checksum": "22b31b2fd8c7c519d44c0d302168ade454374ed1b07d244dd47d8b8f34d3cb91", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jdk-16-ea.31_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.31_linux-aarch64_bin.tar.gz", + "checksum": "2e2d54c3d4837f425709debaae932bc16d19e84f21c07d2e1238ef6627cd84c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jre-16-eabeta.31_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.31_linux-ppc64_bin.tar.gz", + "checksum": "a49751dd87163f26bc5ebeb10d085fe37cb3edc4834fa2116b88da54ee0203a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jre-16-ea.31_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "3e62e620b88b3f13a706af4745fda0979a53d44083ab3997af8e381d4e7a0164", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jre-16-ea.31_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.31_linux-x64_bin.tar.gz", + "checksum": "80085a4a3886405292f33ccc20c40f319121b69edb166dee4587ec6c6fe1f643", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jre-16-ea.31_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.31_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jre-16-ea.31_osx-x64_bin.dmg", + "checksum": "82190b3d698dcf355cf60f6ab02a767d258cbf18d7733e5a958245caa2767053" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.31_osx-x64_bin.tar.gz", + "checksum": "703bbb1267e0d717ea313ee87e8810c01de67eeab9fb9c41f91fd9ce3ce505f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jre-16-ea.31_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.31_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jre-16-ea.31_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.31_windows-x64_bin.zip", + "checksum": "02f38e4192ecfefce470ccc54aada2da5dc2538fc914e08e70a4f2ce66229e0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B31/sapmachine-jre-16-ea.31_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+30": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B30", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.30_linux-aarch64_bin.tar.gz", + "checksum": "74fcd31afb5bcf99bf9228d0cd22a5ecee20dcea55c00f55e5f9ed9617c5beb1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jdk-16-eabeta.30_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.30_linux-ppc64_bin.tar.gz", + "checksum": "706777ff81905e20d673986ca7738cb02fe6a67de349dae29e546b5378919753", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jdk-16-ea.30_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "c0a8ed7d9976709f6f6d393bcfdd28cc3b129328419212b032ff7170cd0bac52", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jdk-16-ea.30_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.30_linux-x64_bin.tar.gz", + "checksum": "ea9475e286e6bb1204496e7660bf7bd22e6d7d4dee75202781dc7787a362d348", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jdk-16-ea.30_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.30_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jdk-16-ea.30_osx-x64_bin.dmg", + "checksum": "d2ba4134e1cdf8e08dd0d20b4eb4feeb267bf550b8c4c7976f6b20b73e9038a3" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.30_osx-x64_bin.tar.gz", + "checksum": "d45f501ce9b5636df814c139a898460f2e66edcd3730801fbc4397e5cd952e10", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jdk-16-ea.30_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.30_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jdk-16-ea.30_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.30_windows-x64_bin.zip", + "checksum": "2e542e773d1beb1244235b71d1d445d9e91614d02ec17056f7354a1d8e3f242a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jdk-16-ea.30_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.30_linux-aarch64_bin.tar.gz", + "checksum": "1da8002cb26acf3394324c3ed137d00bc4d03a0119f910519531350a58cb7349", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jre-16-eabeta.30_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.30_linux-ppc64_bin.tar.gz", + "checksum": "be3f1ea021ed58500cc0f7b45ddaa89c9e3bdbc3ffe30e3978803e8f3dbb0764", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jre-16-ea.30_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "6bc2e1594f7685c320b299a9e458748bd108ba3fa86397ad7b9e6ebe1ede571c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jre-16-ea.30_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.30_linux-x64_bin.tar.gz", + "checksum": "5728893a9675eaa123838eb82eb7e46388529baf614cbc8b6a12dd72671fcb9c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jre-16-ea.30_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.30_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jre-16-ea.30_osx-x64_bin.dmg", + "checksum": "c366d48c00346e413e9cde58ebe066db6e2b658b798116bec5927b6dac536676" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.30_osx-x64_bin.tar.gz", + "checksum": "3dc97e833f324b9b94d774eadbac7f9517bdbefe9309f037e450a2cb70619e91", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jre-16-ea.30_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.30_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jre-16-ea.30_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.30_windows-x64_bin.zip", + "checksum": "149716281a10024c6f846ed3a50e162244a3eff7f008e7ec7fe6ff30270f0770", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B30/sapmachine-jre-16-ea.30_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+29": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B29", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.29_linux-aarch64_bin.tar.gz", + "checksum": "5c739e396a0a53397052bcfbdb002d03d69cd7d1cb0a292fb9dd5d1a468aa891", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jdk-16-eabeta.29_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.29_linux-ppc64_bin.tar.gz", + "checksum": "ee1bfb768718f78317e6ddfe4e0fe61c810723e5912e10b7aafa473f63f587cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jdk-16-ea.29_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "78d92b769a7a19f1e6098efd4b604790657d0ab1350929f636a27e665d63b522", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jdk-16-ea.29_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.29_linux-x64_bin.tar.gz", + "checksum": "00e765a4bfca7d1321e75b82c58a919613026246cb6c78338f2ef6f303dd8131", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jdk-16-ea.29_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.29_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jdk-16-ea.29_osx-x64_bin.dmg", + "checksum": "68c605634a54b42a68c2a73c7ad4ed43b32ebd08a3e56c505ec5e15c68949ede" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.29_osx-x64_bin.tar.gz", + "checksum": "2a09576488f1f0a7236a111c0fb139abe08f7ed6323947951753af339a4e90cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jdk-16-ea.29_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.29_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jdk-16-ea.29_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.29_windows-x64_bin.zip", + "checksum": "533dd2583e5981a989f074a8f628bab5f4cb379ee81030439b26e9a7d6ec73d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jdk-16-ea.29_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.29_linux-aarch64_bin.tar.gz", + "checksum": "27689f118531ad5896460f89e346ba9a61ef3d41a51f34de26676cadf41fc4b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jre-16-eabeta.29_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.29_linux-ppc64_bin.tar.gz", + "checksum": "6d2ea3046dc0fc47d747c90e9c4025708e042b5fcf15ea043fd350dabc8a19dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jre-16-ea.29_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "9650985f1fe7f5e67e49e8052f1a7bc408014b0d7428066690b87d049b8d0107", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jre-16-ea.29_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.29_linux-x64_bin.tar.gz", + "checksum": "918b7b84ddd7f9201d6619ac2173901d8737244e40dd467ed830fbf24866a537", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jre-16-ea.29_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.29_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jre-16-ea.29_osx-x64_bin.dmg", + "checksum": "871052067aa84b69287ca10695c0c2a22ee165cc0cf9567856327d138be650a2" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.29_osx-x64_bin.tar.gz", + "checksum": "d8672f504a6335886cd52b0bd30c0e4233ede2bb8d886f613ef152bda984f936", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jre-16-ea.29_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.29_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jre-16-ea.29_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.29_windows-x64_bin.zip", + "checksum": "ed4b021285528a9add15c5a47c0bb9cf52899ca409ce02dc11606093af2810b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B29/sapmachine-jre-16-ea.29_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+28": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B28", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.28_linux-aarch64_bin.tar.gz", + "checksum": "16c330b37c6cb994ffc664a32115b2be3a6335216b82f45f921f59c2798a801f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jdk-16-eabeta.28_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.28_linux-ppc64_bin.tar.gz", + "checksum": "66621ef53bdd969afb41fb7196771b1bd05bdd41dfed9ac9222c5e0b8bad5234", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jdk-16-ea.28_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "d3c7e4219bcc4b0789a276078ad1e69b291f2407c1cb8bfc79a7c861f7f6addc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jdk-16-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.28_linux-x64_bin.tar.gz", + "checksum": "ad21da55310fb089d0550646c890c57996fb101c6fb8d10c6a9a143f9a154f03", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jdk-16-ea.28_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.28_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jdk-16-ea.28_osx-x64_bin.dmg", + "checksum": "d82ab2f3f28940ff64af04eac95e03324b9074b9d691b878f7a34289c7dad876" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.28_osx-x64_bin.tar.gz", + "checksum": "722feaa835d3545d0cd96e512e50684d0cd8b926ae76f0dbd66006c1d90e6d25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jdk-16-ea.28_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.28_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jdk-16-ea.28_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.28_windows-x64_bin.zip", + "checksum": "5ea53813b69a7b12d43cf9b99d16ebb01729d8568ac89493c9d90fe5aa9ce802", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jdk-16-ea.28_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.28_linux-aarch64_bin.tar.gz", + "checksum": "f7be007dd6c5d354846fc3374c86616bc412c7c1526490cc20eb35c8bb9758f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jre-16-eabeta.28_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.28_linux-ppc64_bin.tar.gz", + "checksum": "5b124f79b6a373346ddd5169a171653cc53ffa9049b46b3fb57660da80da1630", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jre-16-ea.28_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "fbfc41d0687fed78d9fdba2258d60a7ec87695ec7697a5c59eb3bb34ac3356c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jre-16-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.28_linux-x64_bin.tar.gz", + "checksum": "4890450284ac89e41b98cad4756317f2962e2333e190c1f57abc2f358ab86b6d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jre-16-ea.28_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.28_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jre-16-ea.28_osx-x64_bin.dmg", + "checksum": "bffca8dedf8bdb8c8a46f4669c7cc16cbbb289ac3db57b370ef548db2ca3f20f" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.28_osx-x64_bin.tar.gz", + "checksum": "2916d76dfcc6c23f4db7d0f73ebd6f825b161c6133b6bbc2eb4a02183af6afde", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jre-16-ea.28_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.28_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jre-16-ea.28_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.28_windows-x64_bin.zip", + "checksum": "2f417c1f29e5b97a43c8e380cc9630960ef8f2d430d7288723771f90cf3176de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B28/sapmachine-jre-16-ea.28_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+27": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B27", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.27_linux-aarch64_bin.tar.gz", + "checksum": "d2a04408cad41ee3a88629e033e2a174470bd8e657fa1cae67bc0d85c3fd4a01", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jdk-16-eabeta.27_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.27_linux-ppc64_bin.tar.gz", + "checksum": "19bf0b5885d379c6a0598bfc56804bf0311ad928571cb7b2ad1b3974d6da5ac7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jdk-16-ea.27_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "c7a1c7323657297034edabaa6f2965ca574d029bcfe91a5c84689cd4423684cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jdk-16-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.27_linux-x64_bin.tar.gz", + "checksum": "c612407d8a445bf3528f4a91acb97f00cdd3029f070b0508af453dfb111b8905", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jdk-16-ea.27_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.27_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jdk-16-ea.27_osx-x64_bin.dmg", + "checksum": "c73fcfde2fd6473eac10febb4d944df1477dea5b580eedbece3cdc51f1a910b8" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.27_osx-x64_bin.tar.gz", + "checksum": "e2243c6e03c360e65f25ca4c27194eae1af1314103bc6ad29442871855516223", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jdk-16-ea.27_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.27_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jdk-16-ea.27_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.27_windows-x64_bin.zip", + "checksum": "0b544dc0e17833985ab2d83b57653ff7f63e3db4dc53c4325dbb828da75ca0fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jdk-16-ea.27_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.27_linux-aarch64_bin.tar.gz", + "checksum": "69f51d9da4457727f7e518cb0feaac0bbf1b2472b1edb72f562d58ad6faced2d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jre-16-eabeta.27_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.27_linux-ppc64_bin.tar.gz", + "checksum": "b01e12f7ee92fb1b463ce90bb9c637d4397bcdaa6ea7adbaa244ca9664ff2508", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jre-16-ea.27_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "34fa6b61ab0dc4f0b1a026fddb9379e62d5554991ed01feb40d99579323effa2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jre-16-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.27_linux-x64_bin.tar.gz", + "checksum": "9119289c7f51c6c9d47ff79ca802424509cbf8d2bd620f21eb8d2a33c0c12def", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jre-16-ea.27_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.27_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jre-16-ea.27_osx-x64_bin.dmg", + "checksum": "2492da2e50cc2eb109e5f0ba1fee6e321036d9e36b0f3d89af4b9cba4a3d3b28" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.27_osx-x64_bin.tar.gz", + "checksum": "6385bd06b088c6ceda75914705fd2fc90b4ff8129753010ebdcf7a49cb4bf556", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jre-16-ea.27_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.27_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jre-16-ea.27_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.27_windows-x64_bin.zip", + "checksum": "791c7af01cd372c2421517a5ef8f88c505b8b5083f854a22c641051017338510", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B27/sapmachine-jre-16-ea.27_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+26": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B26", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.26_linux-aarch64_bin.tar.gz", + "checksum": "e2294f6fbdee16780eb9bc5d35f7a1798014284a2929340c0dec000ef352057b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jdk-16-eabeta.26_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.26_linux-ppc64_bin.tar.gz", + "checksum": "91ff36f721495bdce609c77a937f250f9024c11891df2f49303978ae9545054e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jdk-16-ea.26_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "ea960d6e80cab1234e8d64df828b4ae36bf47fdeb55eaa90f266a8b4c16928e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jdk-16-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.26_linux-x64_bin.tar.gz", + "checksum": "e46098c584439219769ba69479190f747e09917d9ef3b394bb276f3e3e0ec987", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jdk-16-ea.26_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.26_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jdk-16-ea.26_osx-x64_bin.dmg", + "checksum": "4a79a1df84a8d07377bfc91c53480b1a54ab311db9d1d18a3442da37adebfd36" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.26_osx-x64_bin.tar.gz", + "checksum": "21b17f51ca0838614bf5d5ceac252b6ff47f5ba09dc94528b6f86875c466ed6f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jdk-16-ea.26_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.26_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jdk-16-ea.26_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.26_windows-x64_bin.zip", + "checksum": "e7bb31529cc2393c4cbbf13a8bb04dd0947dd6ce53aab3dca39b4856158a8173", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jdk-16-ea.26_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.26_linux-aarch64_bin.tar.gz", + "checksum": "7c6f9de37bab50d42328cbf0961d3ef64dbe247b64d0efb0890942b41d3bd78f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jre-16-eabeta.26_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.26_linux-ppc64_bin.tar.gz", + "checksum": "2d47a1e21bbdd4f35b7baf7e69b85ebb6868fc2551ef09d664b10e34f766b019", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jre-16-ea.26_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "d9a16925296f08cda8e61daee4d93a44ea4479d18138fc88304a3d4446ffff0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jre-16-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.26_linux-x64_bin.tar.gz", + "checksum": "6778343f1e85d27f60360d81a8ba6aa04fee04263544a77ee03d6c3860dd16cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jre-16-ea.26_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.26_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jre-16-ea.26_osx-x64_bin.dmg", + "checksum": "b1e3bebadfcd619002c1c2c576772f923bd007c6d53acb32c7004f5681cf0b0c" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.26_osx-x64_bin.tar.gz", + "checksum": "71f89e995de7ad7d6f799051d32de94b3be131f6ac134212aadda65bec1fdd77", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jre-16-ea.26_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.26_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jre-16-ea.26_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.26_windows-x64_bin.zip", + "checksum": "3c40b107b0986ef893cf4f3e38cd87ec199acfccf4d7cc10136c67b725c217b2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B26/sapmachine-jre-16-ea.26_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+25": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B25", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.25_linux-aarch64_bin.tar.gz", + "checksum": "534eacdb9150ba5b0ef96939a6e1ba9e2b4fce96395d5530c978e3aa65e07caa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jdk-16-eabeta.25_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.25_linux-ppc64_bin.tar.gz", + "checksum": "2d1d592cbc350bd1672452da73b1b09c93afd019344bb5b4377ec0810ef8e7dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jdk-16-ea.25_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "bdd98f61a723f565611e85decb9a99bbb64a52c844a858c416d24a34f718dd33", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jdk-16-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.25_linux-x64_bin.tar.gz", + "checksum": "774ee341459aa363e65fe19e2150527ba5081a3840c55a7253953df433c1bb66", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jdk-16-ea.25_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.25_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jdk-16-ea.25_osx-x64_bin.dmg", + "checksum": "873296ecbabb6380594046455a9f753e90aacbd7d7adf6c3ffec983a82ecdd4c" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.25_osx-x64_bin.tar.gz", + "checksum": "53166a47d794c7ad37cee42dec34fffdbabd524864e47b760f09ecdb872e4110", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jdk-16-ea.25_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.25_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jdk-16-ea.25_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.25_windows-x64_bin.zip", + "checksum": "23781bd0f10753598529375abdcf403f81940b674e4ac2aa91c77af68fe4b630", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jdk-16-ea.25_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.25_linux-aarch64_bin.tar.gz", + "checksum": "538b6b73ea5ed565f3c50247957682f5222c551bcb891aa92e65a24c184352e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jre-16-eabeta.25_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.25_linux-ppc64_bin.tar.gz", + "checksum": "5509f846b8c899cc0a330e0145503525c983d0d77f3486511468638631b5f7a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jre-16-ea.25_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "2a8c1a514c640d37cea07d06caee8e1ac2726c93cc3767c4bedfde30c25a63eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jre-16-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.25_linux-x64_bin.tar.gz", + "checksum": "216a4238a1524760fad4095be56189db6acf49e6629c2b47c82ac8faaba2faa9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jre-16-ea.25_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.25_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jre-16-ea.25_osx-x64_bin.dmg", + "checksum": "f412a167a71a61537c7f5218fda30b525c5add6b2d9b76f376662da2ca6d1f1a" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.25_osx-x64_bin.tar.gz", + "checksum": "43a98c8657f4d00582474f3734a3a982403583329e35765d16135448312ba6b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jre-16-ea.25_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.25_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jre-16-ea.25_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.25_windows-x64_bin.zip", + "checksum": "dd8efec453f86748b484acea3342aecc32c4f33b8a0cf23dac4d799c895223a7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B25/sapmachine-jre-16-ea.25_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+24": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B24", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.24_linux-aarch64_bin.tar.gz", + "checksum": "44847800f1607ac3866efa5d4195db2bc450afa044473db363e613e445336426", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jdk-16-eabeta.24_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.24_linux-ppc64_bin.tar.gz", + "checksum": "f7993921ee0330833c75a73bc6a858b9fad94982996cfd13adde23b37c67a9bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jdk-16-ea.24_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "eb1605ac20e2c4c1fa2745d2afead27b8250a766780119b15fbee5ac2757e81e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jdk-16-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.24_linux-x64_bin.tar.gz", + "checksum": "cd3827fc80597c26c959dcb8de7d07c82e2ed8b1248c1835ef78aa328b694c73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jdk-16-ea.24_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.24_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jdk-16-ea.24_osx-x64_bin.dmg", + "checksum": "9c21afa67364523fad73d61c59ac159ac43933d933d433e3e70a16222b79ee71" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.24_osx-x64_bin.tar.gz", + "checksum": "4fb8412d51d3b1a58a4dd6e52762c31f3c612a0d0396deb245b15c4006efb60a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jdk-16-ea.24_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.24_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jdk-16-ea.24_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.24_windows-x64_bin.zip", + "checksum": "373720f54d12e010f0892be689b2a468059225e627c6b8caa105617e998d73b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jdk-16-ea.24_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.24_linux-aarch64_bin.tar.gz", + "checksum": "16c5447816a42586f6c1b079016f75697ec33101b5c6f213759c4ce85be62f6a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jre-16-eabeta.24_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.24_linux-ppc64_bin.tar.gz", + "checksum": "599dd54bbe080bfebaab17304a62d6f7d84ed8b893e4b821c68739bf4b85dfaa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jre-16-ea.24_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "dc32d11d3812260403add8a9bb70923e7f3fb5c36e716298f38e173deac2e383", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jre-16-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.24_linux-x64_bin.tar.gz", + "checksum": "3f4326bfdad16268f9a8bf1f61c4d505a98a2f48d1d84e3d210915c4e49f4268", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jre-16-ea.24_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.24_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jre-16-ea.24_osx-x64_bin.dmg", + "checksum": "82ee82c5c0aba1565fc73676d77559f9b2dd16f56e19bc32e6ed62ee278768ec" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.24_osx-x64_bin.tar.gz", + "checksum": "f6121c9be2be41cd5827bae2c084d3d04cb0828910458a9ae766230538257582", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jre-16-ea.24_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.24_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jre-16-ea.24_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.24_windows-x64_bin.zip", + "checksum": "7c8befc7dcc2b248a53b4369b2448703f88906d1458b91ab4dc9695c74352368", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B24/sapmachine-jre-16-ea.24_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+23": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B23", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.23_linux-aarch64_bin.tar.gz", + "checksum": "42aea03ebc2448c3cd62c5881b2936e27d6070b93ce644ec77955a2b52cc2deb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jdk-16-eabeta.23_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.23_linux-ppc64_bin.tar.gz", + "checksum": "fc8996977506ae49f70bd6d0007b18debe8b2ff3f541cdde88fdbcd1fb16c1d8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jdk-16-ea.23_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "d494cd5c2a7bd11cb0972d21cb11c3b762eb8d3024fbe0b8b5590d9d0e4244b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jdk-16-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.23_linux-x64_bin.tar.gz", + "checksum": "a957c81c3be5caffa69ec952240195f50da1d7d6028e154c1c1a5a50a9a757f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jdk-16-ea.23_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.23_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jdk-16-ea.23_osx-x64_bin.dmg", + "checksum": "4eff672c89359512a0f293b844056d915106efaa40113f12c7ffdc25ddf6a443" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.23_osx-x64_bin.tar.gz", + "checksum": "9dad95096049d1b566d112371cbc7e97b042f9f3e582f5c56724ea4553d36ec1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jdk-16-ea.23_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.23_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jdk-16-ea.23_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.23_windows-x64_bin.zip", + "checksum": "933edc827217fe3a89aafcded0911b386355b78cdad579c625e23d4b2b8cd85f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jdk-16-ea.23_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.23_linux-aarch64_bin.tar.gz", + "checksum": "e7851f8d757bc51ce8a37527f2b0bdfccf8e17949d9bec1b4f1284ec9ec269b1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jre-16-eabeta.23_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.23_linux-ppc64_bin.tar.gz", + "checksum": "96ceae3fbd901dddd59df38a34b8fc8bd1d709571042eac597a3e70f801f51d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jre-16-ea.23_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "48dde4426d0743a35c111923bcb10b9c23b31472324bffe566eb401223a669b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jre-16-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.23_linux-x64_bin.tar.gz", + "checksum": "506e864a3b456f59c27bb3d41a5735126b19fd13dde7b5e9a3fa2abb64a08c3e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jre-16-ea.23_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.23_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jre-16-ea.23_osx-x64_bin.dmg", + "checksum": "e6e4e2f1b642a90657d15dd7bb50b2513b063a7a7926835167654193bfd0cf2d" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.23_osx-x64_bin.tar.gz", + "checksum": "38fb86f386e9031c924017e4056aa5434c8f58279d15d41f58b4c65bcb67e902", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jre-16-ea.23_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.23_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jre-16-ea.23_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.23_windows-x64_bin.zip", + "checksum": "21ae44cd0afbf6122e66fef304b5cea9aad37f8a1d7a65eb4951990b7fd3ca82", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B23/sapmachine-jre-16-ea.23_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+22": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B22", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.22_linux-aarch64_bin.tar.gz", + "checksum": "dd9cd7c0e6b00397a83adb8511056e48adeeeebbcc5ebc69f3e8c31cc9149fb7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jdk-16-eabeta.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.22_linux-ppc64_bin.tar.gz", + "checksum": "6ca447c13c66398d52e7d63d5d63098ffb4aabade94447c2aecf72d66ffc407e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jdk-16-ea.22_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "3c8c4100d1e1a2934db9506cd915970dd0530463a8dab7a76319a234ca32e12d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jdk-16-ea.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.22_linux-x64_bin.tar.gz", + "checksum": "c908b2d9b1a47719b968a192e438deb49d54d3ff80db57ff6eb8ece9b0f1d2e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jdk-16-ea.22_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.22_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jdk-16-ea.22_osx-x64_bin.dmg", + "checksum": "da1cbdf1bdd6da57f6e514ec4239baad0a0192e5ce594c8cc7b343252b586b35" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.22_osx-x64_bin.tar.gz", + "checksum": "7d415339d71fd336520a48a9060bc22f6457cb68882244039ed39c16a3fd03a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jdk-16-ea.22_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.22_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jdk-16-ea.22_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.22_windows-x64_bin.zip", + "checksum": "3bce7b287eb515e3570d8d747b8052bcb499c1babadb477db74a5ae38f3d4253", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jdk-16-ea.22_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.22_linux-aarch64_bin.tar.gz", + "checksum": "c69dba40564877b53a555f8513fb328ae692a7e09967c372e35d555f09c00015", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jre-16-eabeta.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.22_linux-ppc64_bin.tar.gz", + "checksum": "9d2654785cbe0b12f21ea605649c3e73e9643635edbc04ad4f39accf42afc411", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jre-16-ea.22_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "69f8cb648cbf0e2fc1c5bae1e0f3bebd98aa480b82a8d06e55d9dc0d17fc4e6a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jre-16-ea.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.22_linux-x64_bin.tar.gz", + "checksum": "db151a17da1475f6efe0f1f3a6db228a652d190fdb462bcf7a3bf50548aeee9e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jre-16-ea.22_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.22_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jre-16-ea.22_osx-x64_bin.dmg", + "checksum": "56ac42ec2021fbca9febf4c75c9e027807ac2f49f30c89538741b1ab3e4b2988" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.22_osx-x64_bin.tar.gz", + "checksum": "47d90dc8cf86a6b28e53879e0640130a3c8776cc2027947451ba868655161f9f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jre-16-ea.22_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.22_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jre-16-ea.22_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.22_windows-x64_bin.zip", + "checksum": "496f7389df639668f124f4a245e7d91069778d5dbda26311fc89c11a13f4272e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B22/sapmachine-jre-16-ea.22_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+21": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B21", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.21_linux-aarch64_bin.tar.gz", + "checksum": "54b754d332264a66be34222d132307c98b430bfe1dcc59eb1ee0b96b2363bd77", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jdk-16-eabeta.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.21_linux-ppc64_bin.tar.gz", + "checksum": "37284d0abe9723704b29e6964912ae807308c5beb5b246960d9002d8abb5966a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jdk-16-ea.21_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "780e657da0fef01d75becd13dd16125423553d371d30ae69da95b21b82f836e7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jdk-16-ea.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.21_linux-x64_bin.tar.gz", + "checksum": "9c3fb6a740005fc48f4f25e8e79e6aded2c79b84939665c34e69e92a9a9d2a8c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jdk-16-ea.21_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.21_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jdk-16-ea.21_osx-x64_bin.dmg", + "checksum": "d972bad42d26a998ffb001aa37932708eb6dce3caaee0c6909b69af27659a76a" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.21_osx-x64_bin.tar.gz", + "checksum": "f6586d51bdb8c5385b7c3cc28b696d295a89280f40ff6da77039e4aa927d6900", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jdk-16-ea.21_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jdk-16-ea.21_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.21_windows-x64_bin.zip", + "checksum": "5449159f7d18376a899325de76da3354f16bb29e15e05edd1f004a0a3aaa2523", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jdk-16-ea.21_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.21_linux-aarch64_bin.tar.gz", + "checksum": "8a30037ae17d8f3b0d75f7df4137076e26a82afe47301d74e33c09358b46d7a5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jre-16-eabeta.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.21_linux-ppc64_bin.tar.gz", + "checksum": "4f82a490b68ed5bcf418bc7686904cf852f55188fa599716feba24379b9dfc7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jre-16-ea.21_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "0075ce8dbb0ab5f37345b243b3299e34e45960742f4ef9077e69fd420db3fcc6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jre-16-ea.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.21_linux-x64_bin.tar.gz", + "checksum": "a8780a0792af40324d28ae44ea2c4e07c1611007a76ab7dc2b587b401db2f787", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jre-16-ea.21_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.21_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jre-16-ea.21_osx-x64_bin.dmg", + "checksum": "e87c5b4171a70710af18e1bd7f28e2928ec50748293aa352bf70299d7fc184e4" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.21_osx-x64_bin.tar.gz", + "checksum": "0c93776974234932ca92855f934ab6b2b178fca518848ac491ef7fb213da5035", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jre-16-ea.21_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jre-16-ea.21_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.21_windows-x64_bin.zip", + "checksum": "53c898cb403fc37866efca550a0ec3f45040fea9b2b407329cd2365d28c8e4af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B21/sapmachine-jre-16-ea.21_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+20": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B20", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.20_linux-aarch64_bin.tar.gz", + "checksum": "ea9ffa7770a860a2f467e4e126142dc61bd95d2d603caae09c33b46a8991d3ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jdk-16-eabeta.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.20_linux-ppc64_bin.tar.gz", + "checksum": "96f7b2bbb4eeed0bff5383a3a5574cf32c169d7a9f182f0a6ff203a04a22e6f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jdk-16-ea.20_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "cde4b97cc1b6bdc2a262fa789875fdab1bb5e4224dbfcb7a2034232ed0377126", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jdk-16-ea.20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.20_linux-x64_bin.tar.gz", + "checksum": "485b47323a49185d4f0e8e848705482aed4097ccd6fb351bc39d92eef252a9a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jdk-16-ea.20_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.20_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jdk-16-ea.20_osx-x64_bin.dmg", + "checksum": "f59580021b2b50b2162cde74c597be652c24cef3e154012a5eae12dbfeb62e20" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.20_osx-x64_bin.tar.gz", + "checksum": "79e86a15d8ae3fdfe63185d2f4be02d78152358594d94105d27755983d826251", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jdk-16-ea.20_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jdk-16-ea.20_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.20_windows-x64_bin.zip", + "checksum": "ba5e5db970ade18e089d3b9bfd9bc693cefbd0f7d769538aac633889696bebdd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jdk-16-ea.20_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.20_linux-aarch64_bin.tar.gz", + "checksum": "629d121aa8ba403a32e3abdb9923477729955e7edbef653034df6a88da836e16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jre-16-eabeta.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.20_linux-ppc64_bin.tar.gz", + "checksum": "b7d4db132c55e47a5081298ccc92a3ea5d4acebd87132d2126aa2cd2080ef409", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jre-16-ea.20_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "ed2a08c2ed6bf5d5874c4f9a644c735e1c93a62a01fdc63b3153bcca604897ab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jre-16-ea.20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.20_linux-x64_bin.tar.gz", + "checksum": "cd0333701bcf7136cdb71812fd0171a014c6981b82a916577b00861752d27bd1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jre-16-ea.20_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.20_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jre-16-ea.20_osx-x64_bin.dmg", + "checksum": "16ed8df1bc070b593f7d984cdef3393a9036b7a326ab3f0478c8d4cbade63119" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.20_osx-x64_bin.tar.gz", + "checksum": "0819c0b7b7b1678f58fa221c0e95d25ee10b52240c0374e8fc57775b00985abf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jre-16-ea.20_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jre-16-ea.20_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.20_windows-x64_bin.zip", + "checksum": "caca6b37112808481c23b61c359ca69673ca687cb72d3ad482a2e3adba8d93a7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B20/sapmachine-jre-16-ea.20_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+19": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B19", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.19_linux-aarch64_bin.tar.gz", + "checksum": "f0747b7cd946e089643b44528d62325e2453f4644e774456641cfa0e18b64420", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jdk-16-eabeta.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.19_linux-ppc64_bin.tar.gz", + "checksum": "9d9e27ceda924667ec76f050b275125aa4458f8455ed4c7b9b7a919773678c22", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jdk-16-ea.19_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "3580dd225534cfb0401bfeb15e3c96bd7e7e641980fd4aa5d1a5894309f5442c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jdk-16-ea.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.19_linux-x64_bin.tar.gz", + "checksum": "e27f29ab63a2db02d055c49f9b7ada53a02d01604ad162687a6b86666284eb18", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jdk-16-ea.19_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.19_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jdk-16-ea.19_osx-x64_bin.dmg", + "checksum": "5c11d5ea0b49377464734aac19cf7b8c41f6b35eaedb2fa4717c62f3cfaf17af" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.19_osx-x64_bin.tar.gz", + "checksum": "552986d692d22f41338b0b8f3c5f03037feb256d65d90a4edbdc96f959ec47b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jdk-16-ea.19_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jdk-16-ea.19_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.19_windows-x64_bin.zip", + "checksum": "a706607077902616b799a7be4ae34bb45a0243534ffce94cd942971688381e59", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jdk-16-ea.19_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.19_linux-aarch64_bin.tar.gz", + "checksum": "9e09c07c0be43253cb1f7c457ea22cb09c94cdc0dfddfbcafcdc13beed43f718", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jre-16-eabeta.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.19_linux-ppc64_bin.tar.gz", + "checksum": "77a69139194a5016b3365e4fb8f5d48a0c6055ced0d96f6b5730bf84595fb86f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jre-16-ea.19_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "7a52ca1ecd993202d13cea81e1caa8423def2892e99eddb8f2d687a9cc3b6edd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jre-16-ea.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.19_linux-x64_bin.tar.gz", + "checksum": "d17402461ea4b61e458fd3953f075b68a35e7f8cd5e89bc7e44dda8c58fec1ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jre-16-ea.19_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.19_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jre-16-ea.19_osx-x64_bin.dmg", + "checksum": "bd7cc745c5e63a61e8a7fc766e699ea5537385e7a1aaeda69cdbd36f06058184" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.19_osx-x64_bin.tar.gz", + "checksum": "6aa09344e25cbf1745bf245f023758bf89c6abeb0559e0ddbc1c4de6bb0a0c51", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jre-16-ea.19_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jre-16-ea.19_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.19_windows-x64_bin.zip", + "checksum": "12fabe375966a9f604c57b8983f2917c0717ebe2dc581aef350b95553fbd03a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B19/sapmachine-jre-16-ea.19_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+18": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B18", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.18_linux-aarch64_bin.tar.gz", + "checksum": "e347133475a633bc1c2992fc2d9e77d0ca6f4765d3dd6c35896fa3a3c4cfafe4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jdk-16-eabeta.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.18_linux-ppc64_bin.tar.gz", + "checksum": "825aa928c5ddc053690a6fe11b9c7f15053cc9d9f593d3dcac444c853f46e7e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jdk-16-ea.18_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "64f36bf7955694e71e5d1b49f3bc4205344c11401bf2b735dcccaaeef16d9e6f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jdk-16-ea.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.18_linux-x64_bin.tar.gz", + "checksum": "c59573d480cb5f427c26bb95f4715d48ecc3e4a83a725f0622ae781fe838d4c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jdk-16-ea.18_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.18_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jdk-16-ea.18_osx-x64_bin.dmg", + "checksum": "0c0a9aeb6d4b023f034c12eb74c205311dc7d18e1cd64016b51241b2d5a1cd45" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.18_osx-x64_bin.tar.gz", + "checksum": "d960a73c68854d45c4305c37dc008ad066bedf7aef4bfe4f1d898b9be435e30b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jdk-16-ea.18_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jdk-16-ea.18_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.18_windows-x64_bin.zip", + "checksum": "36d6605d7cb84c117477c77c9b991d3e7356661a357b932b018740cf53f46c3d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jdk-16-ea.18_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.18_linux-aarch64_bin.tar.gz", + "checksum": "92fcff4d217e750af2c93392dee8fe944543cc0ce104ad110ddcee1652b7ef79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jre-16-eabeta.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.18_linux-ppc64_bin.tar.gz", + "checksum": "be6fd49328ae430efdd398225c1bd5f015fd832db9cb2520e000d96a67bbe16a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jre-16-ea.18_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "ff4180f2f87155d3f988aab33f59faf2bc82110ceb2b0957e43e3af8f93cdd4b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jre-16-ea.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.18_linux-x64_bin.tar.gz", + "checksum": "5c854ff7749a14934b5e7ee4ef5647b929525bc476b8750dc918b3a33ebb1194", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jre-16-ea.18_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.18_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jre-16-ea.18_osx-x64_bin.dmg", + "checksum": "2afb0690a09e5ac400587463ba8ebcac4c039e9dc049b384478177b436d294f3" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.18_osx-x64_bin.tar.gz", + "checksum": "83f3e8c02e8a429724cefe82ab65913b9eb39a68de390017afce6ab7c9808003", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jre-16-ea.18_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jre-16-ea.18_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.18_windows-x64_bin.zip", + "checksum": "f12fb8a3c0546cb9359d09d47882f22fc71dec8782f1348a2e48bf4d00d8df25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B18/sapmachine-jre-16-ea.18_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+17": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B17", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.17_linux-aarch64_bin.tar.gz", + "checksum": "b15bea778909fb2de3f16181cee9ce04c7d0210a471760152895844d92c9cd1f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jdk-16-eabeta.17_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.17_linux-ppc64_bin.tar.gz", + "checksum": "f70b333bccecabb0ab1c50c594bf39eba5570b0ab3af381b90abc5d5d435373b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jdk-16-ea.17_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "a93d639ee9bfcad158a462db671aff42a03d799dea7a643dc0e6133c7676462c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jdk-16-ea.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.17_linux-x64_bin.tar.gz", + "checksum": "122c05446d968ad8cb2888e8ed71af890fb4704a713d739073976efad8146656", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jdk-16-ea.17_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.17_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jdk-16-ea.17_osx-x64_bin.dmg", + "checksum": "c8c9278eb04a6f2e5ff24c9a161631757991c9889dcc179f938bb73a675a7f6a" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.17_osx-x64_bin.tar.gz", + "checksum": "2feb963a1bc000f3fe6e54dc3693d954ddd332aaca8aa0f50b58a38317d76b55", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jdk-16-ea.17_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jdk-16-ea.17_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.17_windows-x64_bin.zip", + "checksum": "d37f26cc5ee7a6abc40fd364e5d34157a432c2cbeaa0dcc682d1e01805d27543", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jdk-16-ea.17_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.17_linux-aarch64_bin.tar.gz", + "checksum": "6da6af87a88f47679b208c556bc65082ad0715bffdcf5d16976110c5953ac930", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jre-16-eabeta.17_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.17_linux-ppc64_bin.tar.gz", + "checksum": "00e3631fbfab6419c5ade582417d3ba6127d9cb9339b2744d277931f0bf611c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jre-16-ea.17_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "af3300a8dae373b8434fb5a8c9a0f043acd2deefc958bc936bd2c1d64672c514", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jre-16-ea.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.17_linux-x64_bin.tar.gz", + "checksum": "3d381967ba0df43e60265be3da45e0780839591746d3234ef0364c6161af2bae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jre-16-ea.17_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.17_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jre-16-ea.17_osx-x64_bin.dmg", + "checksum": "570f22631f51028c8865d35fad8d58fc4ef7aee172903b7dcea91663b80bc724" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.17_osx-x64_bin.tar.gz", + "checksum": "5e8d9a55d8ca23f263e533d5b5a94b27fdc487460a6a6a0e0e0dd80f30f4751f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jre-16-ea.17_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jre-16-ea.17_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.17_windows-x64_bin.zip", + "checksum": "e8fcdb7340d5bcd3eeb45870e7d45ced934e365a90df9498f79be38b37d33fb3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B17/sapmachine-jre-16-ea.17_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+16": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B16", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.16_linux-aarch64_bin.tar.gz", + "checksum": "e6f0beae864e518855b5dd47df7f4d79214e84c08bff8c0ab07ca632c0dec7f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jdk-16-eabeta.16_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.16_linux-ppc64_bin.tar.gz", + "checksum": "9f479f038d22ae5c2edf470b0d790c643956c11978a018e84a10fe60fd7b1bd0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jdk-16-ea.16_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "18d03fb3e20c0b83d68655d13ffd604cdc821a7199d0d3cc989e94be3a56d49b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jdk-16-ea.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.16_linux-x64_bin.tar.gz", + "checksum": "6f03643afa13308fd2fcaf8190c570406fb2056ebf9412c3613eb558d9a12b58", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jdk-16-ea.16_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.16_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jdk-16-ea.16_osx-x64_bin.dmg", + "checksum": "c500cd4b45e1e03dcc824672d9ad53b717e0d5bf83945d3abc4d40200fd9ff04" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.16_osx-x64_bin.tar.gz", + "checksum": "069eb0af20c8d2f70e8d43b691dc22161ebbc1247b65a038e260291146fb32f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jdk-16-ea.16_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jdk-16-ea.16_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.16_windows-x64_bin.zip", + "checksum": "9ddfe9c66b41754ace0061a87bc1a4249862bf53d75ad417f74e3922649436f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jdk-16-ea.16_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.16_linux-aarch64_bin.tar.gz", + "checksum": "8b71e601fecd2e72453f9887d8cb3e287fb9e6eb3ac9ee42e2f17e7fb4aaf52f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jre-16-eabeta.16_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.16_linux-ppc64_bin.tar.gz", + "checksum": "b040888fe3f2290ea106ba35ea9cce065ffe1c81a0f992cde7748632e943ef5e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jre-16-ea.16_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "6c665ba962dd4dc0420af3ae96a23de9e3e818f5f075a35e69f364534364938d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jre-16-ea.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.16_linux-x64_bin.tar.gz", + "checksum": "bd67cf1f099c6397504d7001f557859c198acc30a09dc3ccaccee0ea2cd79bb2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jre-16-ea.16_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.16_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jre-16-ea.16_osx-x64_bin.dmg", + "checksum": "6db65a74e8ea3c5ad30920750d9e3a835279a766e2219f5a3261aa0e0aca8c90" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.16_osx-x64_bin.tar.gz", + "checksum": "1a7a92e7fe1edb5c84af54d6467dcad5009da92d0293949e5c590d584fb4a3f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jre-16-ea.16_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jre-16-ea.16_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.16_windows-x64_bin.zip", + "checksum": "7ee83eb3730f48d8150fa3023cbe1870fb0318c00ec791d5bd71449e3a90a86d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B16/sapmachine-jre-16-ea.16_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+15": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B15", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.15_linux-aarch64_bin.tar.gz", + "checksum": "5ae8381c98fb82f72af4962d001e0c0e7ffdd24e496d0b6e1a0d0769f91531b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jdk-16-eabeta.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.15_linux-ppc64_bin.tar.gz", + "checksum": "c1ec4669cccc32d843e36464cde44842e17e4daf0ae789abb6d35607265d5ab3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jdk-16-ea.15_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "ccdf0b304253ba24a6b2c9fc86b541ff698a1ae9e7ec7646539270e717d556de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jdk-16-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.15_linux-x64_bin.tar.gz", + "checksum": "65280587414ee3c1b77c4230128398e7c9359d28d4a8fe84e5b9f8a7937f128c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jdk-16-ea.15_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.15_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jdk-16-ea.15_osx-x64_bin.dmg", + "checksum": "fba7859df00533ef06c97d73af2612f01ea7acc8bfc681e89fd6b9dfd1220ede" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.15_osx-x64_bin.tar.gz", + "checksum": "52c9a62a7f2dfb413fb7e68dcca793e4375cc7f91569c269e44cfd80511cddb6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jdk-16-ea.15_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jdk-16-ea.15_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.15_windows-x64_bin.zip", + "checksum": "038f519694ecb5d2290d9df88b13abebc04c41b7e2e8160e576e39c5557191fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jdk-16-ea.15_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.15_linux-aarch64_bin.tar.gz", + "checksum": "931be9c6302e19874a91c2c41e2df0fd88b9f6b366cbe8438b7bcbbc514c5344", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jre-16-eabeta.15_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.15_linux-ppc64_bin.tar.gz", + "checksum": "3e34e283f081f38ef060988b35331c4d7ae8a5435310dc1e9b83f91623c843c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jre-16-ea.15_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "e6c34d6947e4b5831fc9268a770614b698d68df78d6c2d28c33b4c143a11719a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jre-16-ea.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.15_linux-x64_bin.tar.gz", + "checksum": "cde45f3f83badcb367346e42426a0912189f0e9339a48bd14ee5fba83e35858f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jre-16-ea.15_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.15_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jre-16-ea.15_osx-x64_bin.dmg", + "checksum": "fc8abd03be5e0b3375f3a4c06d9154bd76a653530b1ce5318be88acf4d777097" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.15_osx-x64_bin.tar.gz", + "checksum": "8b95b4dcde1fcb9c682d2042b5c1df7e68c86b2ae998c774dbd1be72ef69a8e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jre-16-ea.15_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jre-16-ea.15_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.15_windows-x64_bin.zip", + "checksum": "3477b41e551cc97fa70855c164fd2a807031b40fb9295b01992d3c8c4665af70", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B15/sapmachine-jre-16-ea.15_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+14": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B14", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.14_linux-aarch64_bin.tar.gz", + "checksum": "c4cc8241d9e8ed0ff5349385b6d5a775332a18a25744fa6eacd333c424670664", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jdk-16-eabeta.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.14_linux-ppc64_bin.tar.gz", + "checksum": "baffb2b812648d86f8c2e055849791e6e47ba140983fb8c56ddd07db5aa2ced6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jdk-16-ea.14_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "c7275d2d74611b2c80cc80e3ddcf90cada58c314d2007216579ec2111c4b9343", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jdk-16-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.14_linux-x64_bin.tar.gz", + "checksum": "71a7f371fa04b3a1fe025b3377947948d517d7dc5676849f47e62757d119520c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jdk-16-ea.14_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.14_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jdk-16-ea.14_osx-x64_bin.dmg", + "checksum": "76f7038494545d92a393396a80455c8b21f4896cc8a3d03b74a43986d5e75020" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.14_osx-x64_bin.tar.gz", + "checksum": "610762e505f9ad6295e08c6c50e7c9277f4ee697fb1e54e65977542c39b14540", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jdk-16-ea.14_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jdk-16-ea.14_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.14_windows-x64_bin.zip", + "checksum": "aa4db8d9f6e251aff09f341d4bee59724b88c15b35aa796084dd36c1f59542e3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jdk-16-ea.14_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.14_linux-aarch64_bin.tar.gz", + "checksum": "f5d9e4113d1da0b94cef6a11e1a1b9ab70936317a747ec43a9456a8303a92c7f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jre-16-eabeta.14_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.14_linux-ppc64_bin.tar.gz", + "checksum": "55c27b361550613d70033729d16323308ce75e2b7d87394dbd86310289802ad7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jre-16-ea.14_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "40872b35faf82c2f449b61bf32d817c634546175ee75f55944a05452c607017c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jre-16-ea.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.14_linux-x64_bin.tar.gz", + "checksum": "967e5416588eabea9da075dd8c7ec14cd72342ba921badb515a7c19f4b3baa32", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jre-16-ea.14_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.14_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jre-16-ea.14_osx-x64_bin.dmg", + "checksum": "bed3a021ee2f764d791822e4b89380f7d5cf06eff4a1132df50bdf5479c2adfd" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.14_osx-x64_bin.tar.gz", + "checksum": "c2020d4c00a42274f98156796525de4e25a1248639f469eb28313488e23082ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jre-16-ea.14_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jre-16-ea.14_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.14_windows-x64_bin.zip", + "checksum": "538b431123ee3fa1f7b314fc595beb56436a1aafaf81e7d57588a589bf54fcb9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B14/sapmachine-jre-16-ea.14_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+13": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B13", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.13_linux-ppc64_bin.tar.gz", + "checksum": "54bcac8f9540e835d60a54bd74536b3a518c15c3c73a8a412946eda42d9c53ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B13/sapmachine-jdk-16-ea.13_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "af6d10f65fc5870935ee801b6691e2394c21c29a4e8d281f1023dfe33035053a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B13/sapmachine-jdk-16-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.13_linux-x64_bin.tar.gz", + "checksum": "513615f7229f2d0a04c3aace2544042c0f8af062b871bed484a696761ef6a3e5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B13/sapmachine-jdk-16-ea.13_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.13_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B13/sapmachine-jdk-16-ea.13_osx-x64_bin.dmg", + "checksum": "a0f787076ae0bc409d818651d0fd88e1bd174156d87ca3a0dbacde0c8d5a9760" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.13_osx-x64_bin.tar.gz", + "checksum": "86fbb2f67c328e384780a3c2b028d82b24d14606f1ed79f0843ea8897c83cd5d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B13/sapmachine-jdk-16-ea.13_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B13/sapmachine-jdk-16-ea.13_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.13_windows-x64_bin.zip", + "checksum": "86182ff2f6f9c62c98d2c49d56d9494140214a987ea61d29161ef56cb2207fc3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B13/sapmachine-jdk-16-ea.13_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.13_linux-ppc64_bin.tar.gz", + "checksum": "bc75392322b80edab2fa9a39203ab6be74574e8100fbaef1335a86b2e06f088e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B13/sapmachine-jre-16-ea.13_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "0feb09e80fc4b3903d15e2d0438b1a6729ee0c7a3eaa91477dd03dff0ec790ca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B13/sapmachine-jre-16-ea.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.13_linux-x64_bin.tar.gz", + "checksum": "3745abcefbccaf6e7ee4c04a3ae2d72667d3c12809c6e04542937764e3832c39", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B13/sapmachine-jre-16-ea.13_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.13_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B13/sapmachine-jre-16-ea.13_osx-x64_bin.dmg", + "checksum": "b47260c1ea15fddc6cfdc358a6d1455080a319320d26613f9d9fefb379150f27" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.13_osx-x64_bin.tar.gz", + "checksum": "cd8968908262b2471ddf0bccce5bbb6a867244ce990f8ffb318939372b4cc8de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B13/sapmachine-jre-16-ea.13_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B13/sapmachine-jre-16-ea.13_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.13_windows-x64_bin.zip", + "checksum": "5698e2243a6205cc6466af41290db8a3ff6326dd54c7627bc779511662b4fb77", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B13/sapmachine-jre-16-ea.13_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+12": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B12", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-16-eabeta.12_linux-aarch64_bin.tar.gz", + "checksum": "7ffaf902d6cb973bae1020bc0567d84f5a225e12d248078c1390ba0f12a1a84f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jdk-16-eabeta.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.12_linux-ppc64_bin.tar.gz", + "checksum": "1fda17ca0c351bdcd7e1808e6f46a1db28d5939c6cdb7801f331f4d991b72df3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jdk-16-ea.12_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "b6f20f6a772c753f9012261c7ff5864a97f6e9c459657942c73b0913ae1552f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jdk-16-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.12_linux-x64_bin.tar.gz", + "checksum": "8213a1211d1da04ff5c3eb2eb78d968a0c41ca659fdef31042ba13c68f0688dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jdk-16-ea.12_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.12_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jdk-16-ea.12_osx-x64_bin.dmg", + "checksum": "f29e2f158264b4250a9cffcfa2598645bc631520e94dfafdd8b0518c46a2de29" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.12_osx-x64_bin.tar.gz", + "checksum": "feaf98a0ea659d93713977a69550a036c41582ed6d5bbdb69705a0fa7b659dfc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jdk-16-ea.12_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jdk-16-ea.12_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.12_windows-x64_bin.zip", + "checksum": "1de704f4d94e0189948230f26538bf65e88901f5d860c522d1897d70308870a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jdk-16-ea.12_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-16-eabeta.12_linux-aarch64_bin.tar.gz", + "checksum": "03f1c126713894c3f851f98e0a98d8d95029b8f08c669bbaf986d14448389422", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jre-16-eabeta.12_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.12_linux-ppc64_bin.tar.gz", + "checksum": "f8655bd0b9f6a4c8370727404e6f7c32f7ceec4e0f49834c352d35710011f80e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jre-16-ea.12_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "045c0e2ed7830a6ee0022b74082ca01ac2ecac05a828a5431945f7eb4b621984", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jre-16-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.12_linux-x64_bin.tar.gz", + "checksum": "7138f19285c4aa99832c690b301937222631b8418251fb3172eb01bce511c74b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jre-16-ea.12_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.12_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jre-16-ea.12_osx-x64_bin.dmg", + "checksum": "1bca77a4a1840a605f1f697227214ba534ce490980740f9e518afd05e27ccac3" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.12_osx-x64_bin.tar.gz", + "checksum": "6551d0347ecacf74f86b365b6022e31722d61964132ca1931a4cc777d1fcbbd0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jre-16-ea.12_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jre-16-ea.12_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.12_windows-x64_bin.zip", + "checksum": "54d50c97c065db02fefd88e6faf668ad7cd5fdd5c71c69d1c52e1fec7542ad79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B12/sapmachine-jre-16-ea.12_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+11": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B11", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "f654e21c815c9d467253e039ef0c50a657c33745c471f530455bd6b24f58b752", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B11/sapmachine-jdk-16-ea.11_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "3c0d996055e9086de9edc54bdf317625c7222aef3784657adfc39cd377bda1f9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B11/sapmachine-jdk-16-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.11_linux-x64_bin.tar.gz", + "checksum": "4335c2c6e3c590753be1612b4e40956a584d254eca4f77e708163da80dce8ca3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B11/sapmachine-jdk-16-ea.11_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.11_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B11/sapmachine-jdk-16-ea.11_osx-x64_bin.dmg", + "checksum": "3affd6cfc150cb292a0b81729d03fb72e0d6366df9a5af8d185054e3b198cbaa" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.11_osx-x64_bin.tar.gz", + "checksum": "05e5ddec04ef76b45f735a7e19d38d39cd5371ecf2faac13b7b180d7a4475572", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B11/sapmachine-jdk-16-ea.11_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B11/sapmachine-jdk-16-ea.11_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.11_windows-x64_bin.zip", + "checksum": "1294781900900aa8cff1fdad20f26bec4d892bd9c5c4809a0bdbf8362355710c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B11/sapmachine-jdk-16-ea.11_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "859a0145e1f5b4e87547da9ef032e73063f582e14151c3af77372ed961f7b2f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B11/sapmachine-jre-16-ea.11_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "23fa074a0149a9d94aab750d11943c9c281f3c4179f417fbddf2bbc45c62a5eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B11/sapmachine-jre-16-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.11_linux-x64_bin.tar.gz", + "checksum": "1ad1e538f8ee149f5fbb172dc8c13a173ed776a1ad0a5cd71e09a4c01ad1a005", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B11/sapmachine-jre-16-ea.11_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.11_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B11/sapmachine-jre-16-ea.11_osx-x64_bin.dmg", + "checksum": "171fbabdd35371feb1b189d42ccc5807aeb5e52c3e1ff2434e7ea3d6aea4449d" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.11_osx-x64_bin.tar.gz", + "checksum": "b40f632c17f6461ce267905ca143aa1b76363a1ad761df4795ab8ed4f419087c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B11/sapmachine-jre-16-ea.11_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B11/sapmachine-jre-16-ea.11_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.11_windows-x64_bin.zip", + "checksum": "b68cba141c9d8fe1481ba2e24d9736966f83bbc6f729c41db727820d5176cb4a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B11/sapmachine-jre-16-ea.11_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "d2658d87c670f58a33882b321bc21ce077cedd51065b6b7c36b3aa049376b2e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B10/sapmachine-jdk-16-ea.10_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "fc1916b3216b30fef3ffc80c17bf73b1c774ba023e41fa1554c914aed0e3d333", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B10/sapmachine-jdk-16-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.10_linux-x64_bin.tar.gz", + "checksum": "76985ff8ac19fdf35a869c74e3a24fc191401f6418bdef82dfea20cb24876343", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B10/sapmachine-jdk-16-ea.10_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B10/sapmachine-jdk-16-ea.10_osx-x64_bin.dmg", + "checksum": "1337782b65e61e541f10515bfc23927571e967238ff6cf84b7a269e600490ee9" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.10_osx-x64_bin.tar.gz", + "checksum": "ebb98b9611c972b5c7eb623e423e462e6dcd2405c723b0fc9010495a5cb13f3e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B10/sapmachine-jdk-16-ea.10_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B10/sapmachine-jdk-16-ea.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.10_windows-x64_bin.zip", + "checksum": "84012c6e624400796330455c62932601809dfe790f97f5d656da5ce9b385a535", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B10/sapmachine-jdk-16-ea.10_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "916212d0179f3209a45e83b2a2474b0b89715576c32b46356e76a1ae36fc4b07", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B10/sapmachine-jre-16-ea.10_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "fbbfab9bf0be814d07f6437c8b0dbfb64dc3882945a9315b85c2a7cedbc193a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B10/sapmachine-jre-16-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.10_linux-x64_bin.tar.gz", + "checksum": "800d8a3c94bf33763503f81b799dfe2c569542b8e88f531a6219ebb83191a90f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B10/sapmachine-jre-16-ea.10_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B10/sapmachine-jre-16-ea.10_osx-x64_bin.dmg", + "checksum": "d777ecdeeea0b73a7f7b0d08a0fb670c5e90c84f83db4f864caf10147230e1ae" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.10_osx-x64_bin.tar.gz", + "checksum": "a03dbcc9b29ffaac972837e648d648dd43ae65d06976c896bcd8e53af303a550", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B10/sapmachine-jre-16-ea.10_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B10/sapmachine-jre-16-ea.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.10_windows-x64_bin.zip", + "checksum": "f7cef75201c551f6c114d09b8095d791de5a85fa4768f796bc2759b29e1f8bc2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B10/sapmachine-jre-16-ea.10_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "1ee98efa3598521c202b567e14f000964ad2ff2eeec9f6f549a22de362200f09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B9/sapmachine-jdk-16-ea.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "1d2ba9cee96e19a58e0607bea66e9664b48e9120661884ab6725a650a25deb83", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B9/sapmachine-jdk-16-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.9_linux-x64_bin.tar.gz", + "checksum": "236bd2b2e0f8ad5cc8331ebfd2161d9135c86b5978ea4e6327cf99b5979b69c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B9/sapmachine-jdk-16-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B9/sapmachine-jdk-16-ea.9_osx-x64_bin.dmg", + "checksum": "7facec4a4a71934b655654a9f041831436d40c368f767fcaa93f8c3b4ce460cb" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.9_osx-x64_bin.tar.gz", + "checksum": "561206c8bf8237c0d130c73c5128c65c2bfde49de5efc07d957812d7f96e6654", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B9/sapmachine-jdk-16-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B9/sapmachine-jdk-16-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.9_windows-x64_bin.zip", + "checksum": "54cd16d09dda1354ba6579804fad9dcbdec360f1330131eff6f8baca43020f6e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B9/sapmachine-jdk-16-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "94beb889cb3bf0090186d043f0b89f15fa06d08ed6e30360b886d206214c3927", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B9/sapmachine-jre-16-ea.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "fd48c756312a63dcc7ac4bbf85879213bcee88fb76d7216e9cf86f919b956330", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B9/sapmachine-jre-16-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.9_linux-x64_bin.tar.gz", + "checksum": "c79cec97377dc12ee2193bdec4749e514f8646efe0cfbde4eaeadfb87acb06c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B9/sapmachine-jre-16-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B9/sapmachine-jre-16-ea.9_osx-x64_bin.dmg", + "checksum": "9a027cf2bc8c938c075a39b4df7ec336220d651b96ee2c0c48ca20afff6c5fc3" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.9_osx-x64_bin.tar.gz", + "checksum": "b46e825eed7e2838c8885a12f8cd954d21b3ca955b7e36fa72e3eb43fc9d24eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B9/sapmachine-jre-16-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B9/sapmachine-jre-16-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.9_windows-x64_bin.zip", + "checksum": "ff04f9cc97a1bbed8c4f37858c2aef4ee652f4077d1cb84f07cbddd56f00f9f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B9/sapmachine-jre-16-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "764a1796c8611de00bbb23ac5b4b38358c2d172bf4a97abe72c384d69a13d99c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B8/sapmachine-jdk-16-ea.8_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "31ec96238741127d95f2d0c92546a26636dcef59b7bc30d1fc8dee17a28c0e40", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B8/sapmachine-jdk-16-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.8_linux-x64_bin.tar.gz", + "checksum": "46f3d03d44b7f28de982f9cb91812d52d811721ddeb993829066d1a78f7d47c1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B8/sapmachine-jdk-16-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B8/sapmachine-jdk-16-ea.8_osx-x64_bin.dmg", + "checksum": "51a630210a7322f6f6b76408857887f83af532099d842e7d9923708f47068bc2" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.8_osx-x64_bin.tar.gz", + "checksum": "19b015f430348968fd47860c8a19676406fc86dfdc91d80dcc162bb32aa3e4fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B8/sapmachine-jdk-16-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B8/sapmachine-jdk-16-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.8_windows-x64_bin.zip", + "checksum": "da8d0106101001f92e722584831f3b4718daedc9ea968d81ec4d8a7f42105708", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B8/sapmachine-jdk-16-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "bc12cab3b271fbdebc93442cd56c2e36f12292fec8f4b4650efb54727c01e36c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B8/sapmachine-jre-16-ea.8_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "faa7410aec5867e3197cfaf992288c071b00a660c40e463f86075bfc58ae7e18", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B8/sapmachine-jre-16-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.8_linux-x64_bin.tar.gz", + "checksum": "9191a4c093993d2b2ca20d5af583aa590f191837024fd9a47d4d0255963d5b2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B8/sapmachine-jre-16-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B8/sapmachine-jre-16-ea.8_osx-x64_bin.dmg", + "checksum": "486a66d94acb2ea5c048e3ab81629b7ab7630451afabd5b9ca3fd57676320932" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.8_osx-x64_bin.tar.gz", + "checksum": "3ca205336a676bfc30bf95fcee2212535440fceda0bf0f4646e40333c202ebd9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B8/sapmachine-jre-16-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B8/sapmachine-jre-16-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.8_windows-x64_bin.zip", + "checksum": "8084a7a532dc2fd60370fd47da407e7ee72bbb1b347410e8b7d5a8e2bbde59db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B8/sapmachine-jre-16-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "f9db6bbe60a87c38f9a3e64a437362b30eee8f695c38eae560a14b6fdc5a2539", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B7/sapmachine-jdk-16-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "5997a4cf206d4ca743fca48eb3ce20be67d93490bc312e1c4bc81cc557f270b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B7/sapmachine-jdk-16-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.7_linux-x64_bin.tar.gz", + "checksum": "4e08dd46e4d1780ee9dcbc0773e7f3415343313221f14ce0fcc75867a0abdc4a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B7/sapmachine-jdk-16-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B7/sapmachine-jdk-16-ea.7_osx-x64_bin.dmg", + "checksum": "d9b0040477150687269c2cfa7e8ec1f05dec87d4e8c09220456361a0bdcb3c2b" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.7_osx-x64_bin.tar.gz", + "checksum": "bcc74b38944a2badea3bcab861aa4f5994fda48a11c2ed100db7e3cf5b006de5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B7/sapmachine-jdk-16-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B7/sapmachine-jdk-16-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.7_windows-x64_bin.zip", + "checksum": "a3a4106c4f7776a4b8f85aabdbeb8c929affd2f0ef2a00cfc20218f7319450ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B7/sapmachine-jdk-16-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "27dc44f8e85e723a9cc5dc89d85d2cebda505436c137f1d2aad020098dbdbd6d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B7/sapmachine-jre-16-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "02e9da6eff9b5d78628498c5cd322ff6cf4877d3e21e3fef759074c9ff658047", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B7/sapmachine-jre-16-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.7_linux-x64_bin.tar.gz", + "checksum": "504abc78371ed1098cb5874fe578ac1c9cae6a7f51917fddd104efc20ef236fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B7/sapmachine-jre-16-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B7/sapmachine-jre-16-ea.7_osx-x64_bin.dmg", + "checksum": "4e2c7347d4d35d04d81e2b69c84fe9e0f7ed2484d6629dc2979197a8b2d0295e" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.7_osx-x64_bin.tar.gz", + "checksum": "ba03fb4e86610a326f4ef6f792a575ddff7bd00b4ad1a2c3d15402a45868a68c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B7/sapmachine-jre-16-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B7/sapmachine-jre-16-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.7_windows-x64_bin.zip", + "checksum": "c47ad26b72535b9b66d782a3780e6fb1d673ca557418555ab01dab1af4a01ad2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B7/sapmachine-jre-16-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "634b186445118ec19ae98e47730b596be2bc1d448a738bccd953ca70ea6bc974", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B6/sapmachine-jdk-16-ea.6_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "a474aa10fcf13ac507f51172aeb43d6ff6e268701ff89ca9450c69c8562deaf7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B6/sapmachine-jdk-16-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.6_linux-x64_bin.tar.gz", + "checksum": "13e256d12206b64f8835bf15e867479bd0c1939e5bd0331f383b1d9488a2d195", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B6/sapmachine-jdk-16-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B6/sapmachine-jdk-16-ea.6_osx-x64_bin.dmg", + "checksum": "1fd8cb969ea347ae9f30c8ef2f94a5d0a43f487b8086b9ed68127b9c50af5d8c" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.6_osx-x64_bin.tar.gz", + "checksum": "8f50aaa03b45dd76f2594ba113b9b36a59ca80694b73880cdb75981eca53fd2d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B6/sapmachine-jdk-16-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B6/sapmachine-jdk-16-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.6_windows-x64_bin.zip", + "checksum": "424d84dc219f0c07542f1c5373a4ef6fa9a80c2eef8fbbb1f52e6411d0028539", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B6/sapmachine-jdk-16-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "1b67ba59804d465bb87a83c4407a78c910375ff56346ca7ca6a63b3a6011c0dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B6/sapmachine-jre-16-ea.6_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "6809c1ba61da02bbd41392ef211fca4c9c051a1705263633b92653536fe68146", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B6/sapmachine-jre-16-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.6_linux-x64_bin.tar.gz", + "checksum": "275f903642e3d0835a5a403e829b5174bdaedddedabe41e499278042163046db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B6/sapmachine-jre-16-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B6/sapmachine-jre-16-ea.6_osx-x64_bin.dmg", + "checksum": "c01bdf27a31061bfe31541c0d165a832412387d569bed3805cd875b7c87ae740" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.6_osx-x64_bin.tar.gz", + "checksum": "673ccbe13ef629f518d02fb2c3e2b4321a20aa1b6cb0ad5e48abf2936f778d76", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B6/sapmachine-jre-16-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B6/sapmachine-jre-16-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.6_windows-x64_bin.zip", + "checksum": "03cac0f701f7a4eeea15ff48534b08750106572cc709d8ff6496a5f394ddb306", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B6/sapmachine-jre-16-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "15b57e83831c40c4cdd8d5709e41846f44916bd6b3552e266b4fc8808aba6f26", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B5/sapmachine-jdk-16-ea.5_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "ae56e4a0d5d6b909a751f5c00e00350d87d128a1c54b5ffa8fc7c9e054d228e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B5/sapmachine-jdk-16-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.5_linux-x64_bin.tar.gz", + "checksum": "8750152c009bb5b4976c625ab38c25be9cbd4125c5c9d0fd825db5c936d428f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B5/sapmachine-jdk-16-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-16-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B5/sapmachine-jdk-16-ea.5_osx-x64_bin.dmg", + "checksum": "13dbd9deebacb4f66c407b65beeb1d341d2670cef03b5df735b8521faa3a1bac" + }, + "tar.gz": { + "name": "sapmachine-jdk-16-ea.5_osx-x64_bin.tar.gz", + "checksum": "e66e2533acd195aed9656920d5b28a4105f72b9b9e0c4934ce27b4fcd454b485", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B5/sapmachine-jdk-16-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-16-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B5/sapmachine-jdk-16-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-16-ea.5_windows-x64_bin.zip", + "checksum": "26e948a55df328a1ecec78ee4412f601aee975f326aff3c8b7e06b89f0cf1c9f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B5/sapmachine-jdk-16-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "31a4383f4d3ddf127807154860682e686033a736b1e290daba578934fad1ae42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B5/sapmachine-jre-16-ea.5_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "e82ad0f409acab9440f7b569c4c2827cbc970c4190b61fb6807fd8ba71151b90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B5/sapmachine-jre-16-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.5_linux-x64_bin.tar.gz", + "checksum": "9bf8b27e002c3068a1279fa89b262eeb993e0becc04a4b6f47a613c2059608d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B5/sapmachine-jre-16-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-16-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B5/sapmachine-jre-16-ea.5_osx-x64_bin.dmg", + "checksum": "a7a3a688103ec7a1dbdfbca8af2a52019e8d60e756be7ac888eec645da1c5fe7" + }, + "tar.gz": { + "name": "sapmachine-jre-16-ea.5_osx-x64_bin.tar.gz", + "checksum": "1ded169b7d8fbf8efa3f24f14407ee96769ba4c416ed67a7ed5c6801211c1522", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B5/sapmachine-jre-16-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-16-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B5/sapmachine-jre-16-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-16-ea.5_windows-x64_bin.zip", + "checksum": "8b4a1ca4f516c8e5e438dbc3a3790f8832622da4f82cfe8fc10a876360c2a573", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B5/sapmachine-jre-16-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-16+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B4/sapmachine-jdk-16-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "bafda08cb9770efc81366e54194fa532dcc17e7110791d8f1b67b184f2098ca1" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B4/sapmachine-jdk-16-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "3b531fb52c2176a6c02a97c70a34022e16873696f714e7f8aecc8dd0938fb2b3" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B4/sapmachine-jdk-16-ea.4_linux-x64_bin.tar.gz", + "checksum": "fb0be3ebae5659436cb843a75fe18895d52ad51250045e32b32276b82f83e424" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B4/sapmachine-jdk-16-ea.4_osx-x64_bin.tar.gz", + "checksum": "df0967f4f3424b267a6e8cd7f792d4a6a99b67e418bd11ead4fec571c4277d41" + }, + "dmg": { + "name": "sapmachine-jdk-16-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B4/sapmachine-jdk-16-ea.4_osx-x64_bin.dmg", + "checksum": "2a60e96f0b8ccceafddf99225ef7b4cf2b9dfdbe7fc75954ab01568b19f7be76" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-16-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B4/sapmachine-jdk-16-ea.4_windows-x64_bin.zip", + "checksum": "b0f8717ad02327f7370c1bde0104b5075277fae4dbf34c54bb7f26e25fc6c745" + }, + "msi": { + "name": "sapmachine-jdk-16-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B4/sapmachine-jdk-16-ea.4_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B4/sapmachine-jre-16-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "1552adcaa5d62c2c292f807086a789f4c5715736b2bd669f23d7c29386d9ace0" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B4/sapmachine-jre-16-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "190ca641a284963c3f4cd4e333ea5f7334d0cd2f7686a100ba948b8216987b75" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B4/sapmachine-jre-16-ea.4_linux-x64_bin.tar.gz", + "checksum": "72e69e9e092044f3e984dd18df8872c458a02872a2daf305c68affbdf9b02c73" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B4/sapmachine-jre-16-ea.4_osx-x64_bin.tar.gz", + "checksum": "aa698019e163e8e7b53312536ab9bc766d2b1d73526ca67f009a9c04b1c07ce5" + }, + "dmg": { + "name": "sapmachine-jre-16-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B4/sapmachine-jre-16-ea.4_osx-x64_bin.dmg", + "checksum": "7bd49ee1a51008807e08813ad245de8509a9d39ac03aae2484dfc0a79bc21eca" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-16-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B4/sapmachine-jre-16-ea.4_windows-x64_bin.zip", + "checksum": "f956693fc2905726b3787a390c6093a69eeb74a582b13925f96649cde4e6b1a3" + }, + "msi": { + "name": "sapmachine-jre-16-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B4/sapmachine-jre-16-ea.4_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-16+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B3/sapmachine-jdk-16-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "040bbc2528eec0efda621d7ecd6a77fa05d309f14919ce71bac9250d965edf7d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B3/sapmachine-jdk-16-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "0e18f86b6717cd2b4eea5ff3d983a1a31359403db4da4ebcb521b28597166d6c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B3/sapmachine-jdk-16-ea.3_linux-x64_bin.tar.gz", + "checksum": "16eccead68e3899a62ccfe592e5b483b36eb143953644a4d0646e0246d585bae" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B3/sapmachine-jdk-16-ea.3_osx-x64_bin.tar.gz", + "checksum": "eabb0270a213aff085f43d8af85955d9aac789ff551f0fae936d497419c22525" + }, + "dmg": { + "name": "sapmachine-jdk-16-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B3/sapmachine-jdk-16-ea.3_osx-x64_bin.dmg", + "checksum": "c2a2ce299f90a2d9309879be78300a21384819068a19dd70f90ea9857ded89b8" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-16-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B3/sapmachine-jdk-16-ea.3_windows-x64_bin.zip", + "checksum": "fec8edfa02e36e9e9d48e021b8eaaf1f2be68724bdd35f322ee053100e2d5167" + }, + "msi": { + "name": "sapmachine-jdk-16-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B3/sapmachine-jdk-16-ea.3_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B3/sapmachine-jre-16-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "3a9bba8c57a5ada189dcfc082a3659170909d3f61ecd2642ee8106fa106c1fd9" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B3/sapmachine-jre-16-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "dd2cf9a13fc9bb27541dc37c59159d120fe854010a340206d55dbc8f50ddf6b2" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B3/sapmachine-jre-16-ea.3_linux-x64_bin.tar.gz", + "checksum": "ed766f2d3896b2b8d6089c809dac7a8c49f12bc21b1484f3b9e55929bb64e3db" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B3/sapmachine-jre-16-ea.3_osx-x64_bin.tar.gz", + "checksum": "6fc510143e2daa3dd178b50ae4b49d7e5c19fd68cb8af4bb347eb1a11f4a7e32" + }, + "dmg": { + "name": "sapmachine-jre-16-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B3/sapmachine-jre-16-ea.3_osx-x64_bin.dmg", + "checksum": "63ec23f68013db945e41eb72029e9cb6fc7bb81f00ce1dff6848f1274025f791" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-16-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B3/sapmachine-jre-16-ea.3_windows-x64_bin.zip", + "checksum": "e6f5b9c5fd6ea3f111a1362845d77a66a0d1ed98e7284ab337fc6387a36bc4d3" + }, + "msi": { + "name": "sapmachine-jre-16-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B3/sapmachine-jre-16-ea.3_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-16+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B2/sapmachine-jdk-16-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "2c7639128be01aaf548178de9c1ce6ca4d97661209787eaf179b7129533e15d5" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B2/sapmachine-jdk-16-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "e9417b38d5e85e0067404f43813251049b3e0187b02b485e51ab30c0dbbe7e38" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B2/sapmachine-jdk-16-ea.2_linux-x64_bin.tar.gz", + "checksum": "47589dca9dd9835def9604ba89e1ee855bf3b2f4a884ebe3fe8bca8749ac564e" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B2/sapmachine-jdk-16-ea.2_osx-x64_bin.tar.gz", + "checksum": "4dbbf2691ff66e0fc1797dd6fe79ac6286510151fff965964432a834117ab8c3" + }, + "dmg": { + "name": "sapmachine-jdk-16-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B2/sapmachine-jdk-16-ea.2_osx-x64_bin.dmg", + "checksum": "93f92b75b3a3b4963ec74306696a569b260453fe9b817ee81a4e9b3e32c563fd" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-16-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B2/sapmachine-jdk-16-ea.2_windows-x64_bin.zip", + "checksum": "3b3c6afd2c2aeb48f924ba111a19696e0b662dfb70fa626140a4d1f311bb3c31" + }, + "msi": { + "name": "sapmachine-jdk-16-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B2/sapmachine-jdk-16-ea.2_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B2/sapmachine-jre-16-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "2fde01033782291057f1ea2da450220f2c95ac8fcc1625c6209e784d9ca9e26c" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B2/sapmachine-jre-16-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "d3a4be586cf1b63437bd83ed27129968463146f91b65e970a8e4f38cba34a489" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B2/sapmachine-jre-16-ea.2_linux-x64_bin.tar.gz", + "checksum": "8ba4081da24f6715f33384796964b77b00e652344fb7eb0dad4f56a4ca2d7877" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B2/sapmachine-jre-16-ea.2_osx-x64_bin.tar.gz", + "checksum": "e1ea8f400ddbc67f4c7f9cf9a6a3a91938fe4e892addff351977ffcd46806ff3" + }, + "dmg": { + "name": "sapmachine-jre-16-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B2/sapmachine-jre-16-ea.2_osx-x64_bin.dmg", + "checksum": "3e474cee40b635420c478d96dd448debb66d7e4ed8c6f78185bda9dfe2261250" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-16-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B2/sapmachine-jre-16-ea.2_windows-x64_bin.zip", + "checksum": "d098c410ac9a89493de799064aefb92e27ac31a85acea1f50ac6c716de219d2d" + }, + "msi": { + "name": "sapmachine-jre-16-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B2/sapmachine-jre-16-ea.2_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-16+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-16%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B1/sapmachine-jdk-16-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "e20947abae5fcb2dc5cd0755b4861afe390f81fbec794ea84f29bf20c60f8ffb" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B1/sapmachine-jdk-16-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "1c0ab4b586eca911d6254bffa869f7a02b8d9739015e6d572e0f10e58a95c790" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B1/sapmachine-jdk-16-ea.1_linux-x64_bin.tar.gz", + "checksum": "c576a0ba3b6a82ba5aee9b48dfdd6ab359924ed4a237f845d4db8ecb5543434c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-16-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B1/sapmachine-jdk-16-ea.1_osx-x64_bin.tar.gz", + "checksum": "64c303acc8cc3b340fc5ca07bd11f7f07776af1a197a9d5423de9e5b3c4a420d" + }, + "dmg": { + "name": "sapmachine-jdk-16-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B1/sapmachine-jdk-16-ea.1_osx-x64_bin.dmg", + "checksum": "db730f1d65b7877cc0fbb0fb663257163862f80f0dc4bbb5a71005e66ff600c8" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-16-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B1/sapmachine-jdk-16-ea.1_windows-x64_bin.zip", + "checksum": "042c1c1c7165982912c8d507253cb43e3b256f9eaac2955b98447255d4d677de" + }, + "msi": { + "name": "sapmachine-jdk-16-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B1/sapmachine-jdk-16-ea.1_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B1/sapmachine-jre-16-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "5bd4f84be4449441f1fcf9fabaa2743f62cc2aab77031c1c6915675426373318" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B1/sapmachine-jre-16-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "f5ba97564e6eda22366181cd4d37c3deae8e8cd17eb0fa7f94165af3815e3124" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B1/sapmachine-jre-16-ea.1_linux-x64_bin.tar.gz", + "checksum": "520e6a3278efcc2955474f1e504521baa8f959a2e9445070b4b74cf6c39fb0a9" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-16-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B1/sapmachine-jre-16-ea.1_osx-x64_bin.tar.gz", + "checksum": "5b854ecee31f74fbb65090afeac7a13adde1eab73c8a4dce1047c38f95b20db5" + }, + "dmg": { + "name": "sapmachine-jre-16-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B1/sapmachine-jre-16-ea.1_osx-x64_bin.dmg", + "checksum": "6ff4d3e775346da65d43109c7eb4e6f9e6f1241c9f80e0a119cac72382ce13d3" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-16-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B1/sapmachine-jre-16-ea.1_windows-x64_bin.zip", + "checksum": "708e2acd69e85f1f8375fd530dd0bf592979cff738cd4fd2d8db379ce92ad576" + }, + "msi": { + "name": "sapmachine-jre-16-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-16%2B1/sapmachine-jre-16-ea.1_windows-x64_bin.msi" + } + } + } + } + } + } + }, + "lts": "false" + }, + "15": { + "updates": { + "15.0.2": { + "sapmachine-15.0.2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15.0.2", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.2-beta_linux-aarch64_bin.tar.gz", + "checksum": "56e8fcb46ddccf9becd3e935ccb1a1f7cb23b537c836285600813649d895de71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jdk-15.0.2-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.2_linux-ppc64_bin.tar.gz", + "checksum": "93d98ebba57ad5b7fe383d1b5075133e009a81736d1d60ed5a7c65f4ce19461d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jdk-15.0.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "0ebb781176c647aa610f95aeb0f5be3ccc654b59b4a4f7868540be8d52b070cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jdk-15.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.2_linux-x64_bin.tar.gz", + "checksum": "8b548fdaa37c4ab15cb91ca8078424f920d117076ff3f5734db3dd0bd74abb65", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jdk-15.0.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-15.0.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jdk-15.0.2_osx-x64_bin.dmg", + "checksum": "35fd651595cac2588de08a943e8bb61ee2dd10146f4b459511ae577e9c3fa42c" + }, + "tar.gz": { + "name": "sapmachine-jdk-15.0.2_osx-x64_bin.tar.gz", + "checksum": "76c3060e4a976f90987b5bf7f752e1d886de5bcecd2ec35dfa0b1c139ebead4e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jdk-15.0.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-15.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jdk-15.0.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-15.0.2_windows-x64_bin.zip", + "checksum": "9746e01bdd26d28480af21ddc0a571d64396fe0925b53c7f0e1c34830ac8b3ca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jdk-15.0.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-15.0.2-beta_linux-aarch64_bin.tar.gz", + "checksum": "2ef13f3a7283e0f5971caafc2d4ead2557795bf817773fa17ab375d23ee51804", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jre-15.0.2-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15.0.2_linux-ppc64_bin.tar.gz", + "checksum": "b8004adc53f9edad992abaaf9eea630863bbf15b8d2c80ac7bb4a631a1ec11f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jre-15.0.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "ac5cc601ae555f5d5f8dd0b774312a0b9e63bccb10a9275e832715022c87542e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jre-15.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15.0.2_linux-x64_bin.tar.gz", + "checksum": "aff5cc06743f61579de2e87d2b3978e89ebf7a5b068d799287a448d4eca0e97e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jre-15.0.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-15.0.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jre-15.0.2_osx-x64_bin.dmg", + "checksum": "61be4d4d557384d4b7221861c920e1b120df830a23c221bf7d1c311d4c9ba438" + }, + "tar.gz": { + "name": "sapmachine-jre-15.0.2_osx-x64_bin.tar.gz", + "checksum": "6c8feb2933b01b805a84779de2987765671f9c064ee52f7857a7c488b5ded52d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jre-15.0.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-15.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jre-15.0.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-15.0.2_windows-x64_bin.zip", + "checksum": "7bd44564ac04d300c5389b2c8ec3bf8131dc61ccb08c3022a476e359e2dd16c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2/sapmachine-jre-15.0.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-15.0.2+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15.0.2%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.2-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "ce7abf280fd793d1870e806375b137afaaaa6d9802070b9fcc380df13e5e5bf1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jdk-15.0.2-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.2-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "428e74e832d9c12186f1b9f3d74ca89bfbcce0d43272106b76caee52d6f926d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jdk-15.0.2-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.2-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "73db4c48f0f02570796f0903f764a192639d2fc7441607deb48148f381c96d41", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jdk-15.0.2-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.2-ea.7_linux-x64_bin.tar.gz", + "checksum": "cf69e11f9fc0015fa8db9063f2536ab1900888808ece652b4602af016c3c55ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jdk-15.0.2-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-15.0.2-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jdk-15.0.2-ea.7_osx-x64_bin.dmg", + "checksum": "8e07ded382a0d0a6e36b96ca339b9d1c34442b19605b6998c3604c429c1f5635" + }, + "tar.gz": { + "name": "sapmachine-jdk-15.0.2-ea.7_osx-x64_bin.tar.gz", + "checksum": "b0fd8a6cd56e0ab5fa1d586a4a24cfec2e7784ba0ad55da7c263d2a5ec7f3044", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jdk-15.0.2-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-15.0.2-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jdk-15.0.2-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-15.0.2-ea.7_windows-x64_bin.zip", + "checksum": "0edbcfe2f1dfb1a2a69c5d3604145de4b302a3ae072193c4113268b710cb7561", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jdk-15.0.2-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-15.0.2-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "cfa6e2da91404d9a33768a959f72d60c68c607fc52b634f9ef4f69e122d901ee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jre-15.0.2-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15.0.2-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "5685d1df73797cdd97615a57abd3b06b8ff9086ec4279f1624016bdef781565f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jre-15.0.2-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15.0.2-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "10ae7c38497764934680225cdfca6d3dfbbed68e56b4cd0bedb558d37c970f73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jre-15.0.2-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15.0.2-ea.7_linux-x64_bin.tar.gz", + "checksum": "c13d6c247ed48c96367a9e09af6515b71768804bb92614315b7814d894dcc34a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jre-15.0.2-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-15.0.2-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jre-15.0.2-ea.7_osx-x64_bin.dmg", + "checksum": "6d977f4ee83a5b866a78b5d61660476fb4d359132558cf8017bc4da5a21138c3" + }, + "tar.gz": { + "name": "sapmachine-jre-15.0.2-ea.7_osx-x64_bin.tar.gz", + "checksum": "c0ceb722cd2457db43b3b0d110703536cd0f3c68e4836f28ab9e54415d0f7556", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jre-15.0.2-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-15.0.2-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jre-15.0.2-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-15.0.2-ea.7_windows-x64_bin.zip", + "checksum": "8b2fca0bd0fb8cf61cc038c7ff385b9f6e9f720b0497789238ceb305feb23273", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.2%2B7/sapmachine-jre-15.0.2-ea.7_windows-x64_bin.zip" + } + } + } + } + } + }, + "15.0.1": { + "sapmachine-15.0.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15.0.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "18d92316c41b75e8157d669ec55b48abd56fe4da53a5d6435fe9d9fd344ca3bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jdk-15.0.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.1_linux-ppc64_bin.tar.gz", + "checksum": "ca1f1ccf914412ad1212a0421faebe08cb44978ff15993d363d598f326bc5689", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jdk-15.0.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "8c9117ec06a17aaab389f464749edea88ad077ffae3b0541b2faa33128cfb3ab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jdk-15.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.1_linux-x64_bin.tar.gz", + "checksum": "d871ba2aaf377489668b9e473c381247f48952108598f224fa1484f6f2d9ba99", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jdk-15.0.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-15.0.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jdk-15.0.1_osx-x64_bin.dmg", + "checksum": "dd95938bdf230c052e13819e6ddfd228001abc4fec3afbd82b007b6fe0df7d23" + }, + "tar.gz": { + "name": "sapmachine-jdk-15.0.1_osx-x64_bin.tar.gz", + "checksum": "c3eff22163231077d65b3663f25ed70e295d96f2ffdd456bbbeaec90762afd7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jdk-15.0.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-15.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jdk-15.0.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-15.0.1_windows-x64_bin.zip", + "checksum": "8cef4a529548dc6457108dc64c894a6e11ae88fc477953ebf5a01adc8ab091fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jdk-15.0.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-15.0.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "7d237cd184aec6ab1a041587a743afcad9d4286f8db62f53af556f9c50bc1c92", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jre-15.0.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15.0.1_linux-ppc64_bin.tar.gz", + "checksum": "628672397a4c125f1180393d3899a96f2848e91d6136fbeb4a294ae9099e96b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jre-15.0.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "6474c8ec37c571f672a4c674676b21f43e3a81992347f532c2bfc3682d9e2938", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jre-15.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15.0.1_linux-x64_bin.tar.gz", + "checksum": "cf9a687c8fb27f7b6c334309ba0f426c0916936fac0c75dc1928f2313396102b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jre-15.0.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-15.0.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jre-15.0.1_osx-x64_bin.dmg", + "checksum": "350d4545c73bb56ab0345ae30a0f9e5fafb8d6828a28cd9a756b6376763f76c3" + }, + "tar.gz": { + "name": "sapmachine-jre-15.0.1_osx-x64_bin.tar.gz", + "checksum": "351dc27d3cb3b8fb6e14ec66c19a1691e6bcde7dd6911859cb89d338ffc0d9f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jre-15.0.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-15.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jre-15.0.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-15.0.1_windows-x64_bin.zip", + "checksum": "f5e12f38345a7e1623f910082ea404923548a9a7af4962c6e451694c17e07848", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1/sapmachine-jre-15.0.1_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-15.0.1+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15.0.1%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.1-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "4383ea1a18c72ee14b441239fb7e8a067c908667ba28377cd2be5c083dce9f88", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jdk-15.0.1-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.1-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "4b298e94c34340234289bec5cb6633a5c9561053227f5858f7c9599692aa9dcb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jdk-15.0.1-ea.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.1-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "ce55c268606e7885d4bad4e69a26b1b6518c3c010873fd31c8f69aae92ac2cc9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jdk-15.0.1-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15.0.1-ea.9_linux-x64_bin.tar.gz", + "checksum": "6a1fcf1e1dc652ac3e779fb6c2966141e01d13e24289eaeade43ce1bf9160b76", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jdk-15.0.1-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-15.0.1-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jdk-15.0.1-ea.9_osx-x64_bin.dmg", + "checksum": "3f579cb894dc3ad382c5c474a3ddf4771100c3fb70808e774281280afa3df2c5" + }, + "tar.gz": { + "name": "sapmachine-jdk-15.0.1-ea.9_osx-x64_bin.tar.gz", + "checksum": "4f8167e8b9cf0d718dbd8e4c1692ccd03046b96229b2db0c295854063441ebcd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jdk-15.0.1-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-15.0.1-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jdk-15.0.1-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-15.0.1-ea.9_windows-x64_bin.zip", + "checksum": "e42f74166fb5831d28e26c3f62791676f4332324b92fc31b94dfe17313527535", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jdk-15.0.1-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-15.0.1-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "92a6734117b39f982f2284bffb98521405e4e9fd07ed1e811b123edd7a86f3ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jre-15.0.1-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15.0.1-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "f2e4fb51545cfbd9377d44a0dea5a4b099f5d19e8ee83f736802b1489ad26ce1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jre-15.0.1-ea.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15.0.1-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "66dd0c0512b3e006e1b5a25b2e824a1aa1ef62f21b31c24dda0c05bd5fe6fd20", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jre-15.0.1-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15.0.1-ea.9_linux-x64_bin.tar.gz", + "checksum": "99b11c4730dda9b4b4fcc1209d2ae83622362a5ec51197a6c0f512b799803ba5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jre-15.0.1-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-15.0.1-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jre-15.0.1-ea.9_osx-x64_bin.dmg", + "checksum": "0ba8a980872499e629ae69ad875da1ec48441f95e99fdf41440a967f06989165" + }, + "tar.gz": { + "name": "sapmachine-jre-15.0.1-ea.9_osx-x64_bin.tar.gz", + "checksum": "5e228910966a425a98511f78d2522303f85becae77ea4364242a7edd9aa2092d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jre-15.0.1-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-15.0.1-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jre-15.0.1-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-15.0.1-ea.9_windows-x64_bin.zip", + "checksum": "791dba6e2ab19563387422a6c9b955ea01353df28eeccdb8a99f3b8303dccd8a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15.0.1%2B9/sapmachine-jre-15.0.1-ea.9_windows-x64_bin.zip" + } + } + } + } + } + }, + "15": { + "sapmachine-15": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-15-beta_linux-aarch64_bin.tar.gz", + "checksum": "337f4c5653fa0ef09c29b2268a5cc0443b5bf73130bc76818fdcc7c15d752dd2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jdk-15-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15_linux-ppc64_bin.tar.gz", + "checksum": "9a532d635f136dc22ee844c00f8426feba48881307b28b9efd2f0cd16775902e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jdk-15_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15_linux-ppc64le_bin.tar.gz", + "checksum": "72a31b9f340366f14bf1b3e28bd30074d7bc6c88451c2f97017ceae706ef6494", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jdk-15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15_linux-x64_bin.tar.gz", + "checksum": "0f08290a7a1cd39ed03797b2578c79529ca64983f3c48d62f3a4a2c322eb6882", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jdk-15_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-15_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jdk-15_osx-x64_bin.dmg", + "checksum": "9ffd4a9b3d654d4ae4c4ba357cbef85cc97a40c334999c464d2c34cda07a0314" + }, + "tar.gz": { + "name": "sapmachine-jdk-15_osx-x64_bin.tar.gz", + "checksum": "5ddd6ee1af9308857589a1c82023061eccd03f042c4082ee00e3044a4200c233", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jdk-15_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jdk-15_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-15_windows-x64_bin.zip", + "checksum": "eef3ce54df37e89b1cdd78d48c5d426722a7eb252f86ca67808fe4fb9449c2d8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jdk-15_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-15-beta_linux-aarch64_bin.tar.gz", + "checksum": "23f53c524b4fe7831f92d65adbdd551fcbc588d257872799be0ac5d29321661c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jre-15-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15_linux-ppc64_bin.tar.gz", + "checksum": "dfe7ba2331a892bd0a130ebeb7191166cbb8bcd696009e706ae2289d019f7b9c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jre-15_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15_linux-ppc64le_bin.tar.gz", + "checksum": "569403ebebd4f9348c58c1135b03bbc618d8f463799dcd0b75df07983128ac77", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jre-15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15_linux-x64_bin.tar.gz", + "checksum": "211c57914754b7e558cfceb22c6e02bc5121215e59c7aff6f43d5293f3943378", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jre-15_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-15_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jre-15_osx-x64_bin.dmg", + "checksum": "d9e840e6fb2f5088a236d66cd4acd1e0ebf37d446dcb371b0ed187d20e5ace59" + }, + "tar.gz": { + "name": "sapmachine-jre-15_osx-x64_bin.tar.gz", + "checksum": "d82a583502b86eab96da02b19d11af18ff51e1abc6f3f8d9e55305e2458e72fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jre-15_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jre-15_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-15_windows-x64_bin.zip", + "checksum": "4c2a51805a06c080f00bb70a8849f67a64f0764fbd6b56c77239bddfb87b4144", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15/sapmachine-jre-15_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-15+36": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B36", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-15-eabeta.36_linux-aarch64_bin.tar.gz", + "checksum": "f2b05871af49201f80a79617521ac076e1035634e41ca5a6a3b8d12cb41cb1dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jdk-15-eabeta.36_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.36_linux-ppc64_bin.tar.gz", + "checksum": "3a66f4010869402f7b41f7f77ef4f376a14f8ab00f7ac30fa30c9e64db8fce45", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jdk-15-ea.36_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.36_linux-ppc64le_bin.tar.gz", + "checksum": "13425a35d8010d57a4e3df19f07bc3912a503186190d04eacad2b73a5db9e41e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jdk-15-ea.36_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.36_linux-x64_bin.tar.gz", + "checksum": "80731a9924cb846e3869ef28390ac11d97aef54a05513960ee46018926524e86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jdk-15-ea.36_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-15-ea.36_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jdk-15-ea.36_osx-x64_bin.dmg", + "checksum": "6cf14da63c9e08588f31cc5791122db4847aa5b56574dbe13a7b64696528c4f1" + }, + "tar.gz": { + "name": "sapmachine-jdk-15-ea.36_osx-x64_bin.tar.gz", + "checksum": "db1706906e6348d5f9ff6f95d933eac6625dc538e7392e57e8df0a8c3bf856aa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jdk-15-ea.36_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-15-ea.36_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jdk-15-ea.36_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-15-ea.36_windows-x64_bin.zip", + "checksum": "9306afc8660d4fd40cf38cb52a7ba6394df555ffc9564a04a120689efe0f0eb8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jdk-15-ea.36_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-15-eabeta.36_linux-aarch64_bin.tar.gz", + "checksum": "38453ab8a6f7a1d45db385290ce419bdf2535801f1d5d759ca12efdfe823ec78", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jre-15-eabeta.36_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.36_linux-ppc64_bin.tar.gz", + "checksum": "af9fb6c62e2eddb97fe184d6fc795ca939cf3c4fb289849fb8fbe89ab235a482", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jre-15-ea.36_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.36_linux-ppc64le_bin.tar.gz", + "checksum": "36eabf4d634847e9d16c14aa9af9e6939ffc413f17bce002344d30b3f7373cbf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jre-15-ea.36_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.36_linux-x64_bin.tar.gz", + "checksum": "75dd100711d5100366437c953b44f844be3b5a52da24c74015fb21d4ab9b7a1d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jre-15-ea.36_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-15-ea.36_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jre-15-ea.36_osx-x64_bin.dmg", + "checksum": "e9982d777f1e0a033147c0c3bf87054cd301655d1e795dd69cae6ea4a389471a" + }, + "tar.gz": { + "name": "sapmachine-jre-15-ea.36_osx-x64_bin.tar.gz", + "checksum": "000da352a288656f892997e06d134724625bf4dc6ed9534ee6b652476d870814", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jre-15-ea.36_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-15-ea.36_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jre-15-ea.36_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-15-ea.36_windows-x64_bin.zip", + "checksum": "ad842b628a044b719b4821c881acbac84407f5a5ef55192e36675221e00e4398", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B36/sapmachine-jre-15-ea.36_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-15+35": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B35", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.35_linux-ppc64_bin.tar.gz", + "checksum": "335028963223cbe7c396f006d858444439e404af8083d928b1b9456e9b807ac3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B35/sapmachine-jdk-15-ea.35_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "2443df02126905170f8a4410564d3ac8e0d9391ea56a99439c44d1e2e0638033", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B35/sapmachine-jdk-15-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.35_linux-x64_bin.tar.gz", + "checksum": "fa95a74cf6a6172a49ae339690ed54f1732bc9512c1cb4bdf0886549696f7eeb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B35/sapmachine-jdk-15-ea.35_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-15-ea.35_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B35/sapmachine-jdk-15-ea.35_osx-x64_bin.dmg", + "checksum": "5997d768924aac98c59f721d93e36b3bb7f1fc51dfbc12cb5250d431fc2cb3f2" + }, + "tar.gz": { + "name": "sapmachine-jdk-15-ea.35_osx-x64_bin.tar.gz", + "checksum": "6fb74751dc713c8f07de4f0754e4291b69e2ead1044846081451f53034929f76", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B35/sapmachine-jdk-15-ea.35_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-15-ea.35_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B35/sapmachine-jdk-15-ea.35_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-15-ea.35_windows-x64_bin.zip", + "checksum": "b292c21b7c36adb1962a37f62271a61cf573946d2c67268aa2f6cf2b0b6b660e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B35/sapmachine-jdk-15-ea.35_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.35_linux-ppc64_bin.tar.gz", + "checksum": "f490cd70223c95e4564ed9bb0db5c72ada18b113bdfb35d69020214a62979072", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B35/sapmachine-jre-15-ea.35_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.35_linux-ppc64le_bin.tar.gz", + "checksum": "a926fd02f7e52aea689e2426dc1b665fb6277ad320afc51ca2aef218a3746f59", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B35/sapmachine-jre-15-ea.35_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.35_linux-x64_bin.tar.gz", + "checksum": "31a6a8855091e48b9cbdeeed15183bf3c374094f8dd8b69957cdd14c01e99742", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B35/sapmachine-jre-15-ea.35_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-15-ea.35_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B35/sapmachine-jre-15-ea.35_osx-x64_bin.dmg", + "checksum": "cfd8bd45f41b8bba367645a7bd023b7bc3efdb1d16031dcc3d4910ff54a38870" + }, + "tar.gz": { + "name": "sapmachine-jre-15-ea.35_osx-x64_bin.tar.gz", + "checksum": "f617b84eda73026fca8c6984ce940d9db75355a0e920fc3ae54435cb5d91eb7f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B35/sapmachine-jre-15-ea.35_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-15-ea.35_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B35/sapmachine-jre-15-ea.35_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-15-ea.35_windows-x64_bin.zip", + "checksum": "6025fb3cb9a9ba6202aaf6c3ccc0cfcead6b71652b647f2968e08384e47d8c11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B35/sapmachine-jre-15-ea.35_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-15+34": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B34", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.34_linux-ppc64_bin.tar.gz", + "checksum": "7b44eb0f203e0e25c9a8f88b1179b2b298a5112415186caa21f009047576b20d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B34/sapmachine-jdk-15-ea.34_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "8ddafcdcefa214f9635e8f5b945efccce13bb0b77903560adb2b94dc6544c629", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B34/sapmachine-jdk-15-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.34_linux-x64_bin.tar.gz", + "checksum": "af1a643a48c452fd312684f68fe939ebd5450abfb837204d8b9ddb0965c87008", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B34/sapmachine-jdk-15-ea.34_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-15-ea.34_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B34/sapmachine-jdk-15-ea.34_osx-x64_bin.dmg", + "checksum": "d609be4915d4718d0d21bff5d65522059d36f7c852ea43a9401084b15ea8d98e" + }, + "tar.gz": { + "name": "sapmachine-jdk-15-ea.34_osx-x64_bin.tar.gz", + "checksum": "025afdc891e390345b49ce02617a0ac2cef2f142204bff59f15a41f012617991", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B34/sapmachine-jdk-15-ea.34_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-15-ea.34_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B34/sapmachine-jdk-15-ea.34_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-15-ea.34_windows-x64_bin.zip", + "checksum": "76eddf5996c8e01da4c316f7223141ee3d5e912cbd370540a59af3d7b99e8e85", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B34/sapmachine-jdk-15-ea.34_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.34_linux-ppc64_bin.tar.gz", + "checksum": "5f28b12efde0e7798c84d599c95c3f9d07a507878a9f3c6a3779037401eaede4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B34/sapmachine-jre-15-ea.34_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "ecc23774126dee61d8fa50c3c66ead1058e4548404546f8c9563583dec4ee916", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B34/sapmachine-jre-15-ea.34_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.34_linux-x64_bin.tar.gz", + "checksum": "d18d01f4f7b07a6fea4be5f4c85ac1fa30c435f7068b6380ac2ea5a1fae4e21a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B34/sapmachine-jre-15-ea.34_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-15-ea.34_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B34/sapmachine-jre-15-ea.34_osx-x64_bin.dmg", + "checksum": "f9852865d1ef2c64c734ae54de66e23f5dc0214c2b07c1e1f2efbb6108aabfaf" + }, + "tar.gz": { + "name": "sapmachine-jre-15-ea.34_osx-x64_bin.tar.gz", + "checksum": "f4215f546f4ff6d6341116901b2cc344669f0f93603c5744c727841c9f792918", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B34/sapmachine-jre-15-ea.34_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-15-ea.34_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B34/sapmachine-jre-15-ea.34_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-15-ea.34_windows-x64_bin.zip", + "checksum": "89bb5621b5fe556ce4b973b8db28ce1847445b1654fb05227c99e48deafee816", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B34/sapmachine-jre-15-ea.34_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-15+33": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B33", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.33_linux-ppc64_bin.tar.gz", + "checksum": "509a408cec1ca9dd5f25427d78207beab4b699167b610285a566cb147901b0b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B33/sapmachine-jdk-15-ea.33_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "b4a8cf26b66aaef4fd89fd52b038b07db953f2a39642220f6a36698615a3017e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B33/sapmachine-jdk-15-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.33_linux-x64_bin.tar.gz", + "checksum": "aaede637e22d98c211fa39b1fbe3475988f6f0d3333795395eb217064d3c4239", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B33/sapmachine-jdk-15-ea.33_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-15-ea.33_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B33/sapmachine-jdk-15-ea.33_osx-x64_bin.dmg", + "checksum": "a253618b44a171a17ae7ff000a5a47a2e3ae8477878d88c286b29dd73f842cde" + }, + "tar.gz": { + "name": "sapmachine-jdk-15-ea.33_osx-x64_bin.tar.gz", + "checksum": "d00e413c9d5f92ba6516e36c1f32565def388dbddf1580a70fcdeef589c1f056", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B33/sapmachine-jdk-15-ea.33_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-15-ea.33_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B33/sapmachine-jdk-15-ea.33_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-15-ea.33_windows-x64_bin.zip", + "checksum": "37bb7dde951b83946956c74d87ba67ee01b8ae4accb8d1dffae2800efd22d7da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B33/sapmachine-jdk-15-ea.33_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.33_linux-ppc64_bin.tar.gz", + "checksum": "defc064379a3a4c4484fafddf9d8f1c65fd98896ae2d7cc461cf42e2f85cddf0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B33/sapmachine-jre-15-ea.33_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "e6c3461978f878a77001de61cad18a31ef419e65b5954762ccd63a5512b3ff90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B33/sapmachine-jre-15-ea.33_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.33_linux-x64_bin.tar.gz", + "checksum": "f7727b59ca91229a99245fa372e01dfa421cbeab1feeae260ffde2323fa74ecf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B33/sapmachine-jre-15-ea.33_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-15-ea.33_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B33/sapmachine-jre-15-ea.33_osx-x64_bin.dmg", + "checksum": "120cdfae34050a882fb0e43e595cc6727739420fd43766be69b271678aac1fd2" + }, + "tar.gz": { + "name": "sapmachine-jre-15-ea.33_osx-x64_bin.tar.gz", + "checksum": "e791c59358d7296e488e5ad280062bcea106f0a49b90a4dd2c2e3607e76468da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B33/sapmachine-jre-15-ea.33_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-15-ea.33_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B33/sapmachine-jre-15-ea.33_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-15-ea.33_windows-x64_bin.zip", + "checksum": "118d6a7cf735098ba896292ef2dc1413a144ea1f6cb8cc7c03f6add17ff27c17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B33/sapmachine-jre-15-ea.33_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-15+32": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B32", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.32_linux-ppc64_bin.tar.gz", + "checksum": "a1b006af3a6fe20a15e6382552a3d6f453dd9bc56c64c985eaae06caace46691", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B32/sapmachine-jdk-15-ea.32_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "34e9227d90e98b250fb13532c7764d3bee702a68a056389e1998ce2e15c05e64", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B32/sapmachine-jdk-15-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.32_linux-x64_bin.tar.gz", + "checksum": "26b4c0a9f8087bcfa7378a5b4115df112d40bb1cd19d096255b7d6734276bba4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B32/sapmachine-jdk-15-ea.32_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-15-ea.32_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B32/sapmachine-jdk-15-ea.32_osx-x64_bin.dmg", + "checksum": "8f4dee53e5ac3b776afde2a8cef39fa5aa3fe4244c78538568fb3bd898133bbd" + }, + "tar.gz": { + "name": "sapmachine-jdk-15-ea.32_osx-x64_bin.tar.gz", + "checksum": "f341a69373739d06977d54ff9946cbc861025010ebab34555260208201f093a2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B32/sapmachine-jdk-15-ea.32_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-15-ea.32_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B32/sapmachine-jdk-15-ea.32_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-15-ea.32_windows-x64_bin.zip", + "checksum": "b34b953c7694629dc81849a30ff8692ae474f3b373250ae1c56eea9fe9c173ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B32/sapmachine-jdk-15-ea.32_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.32_linux-ppc64_bin.tar.gz", + "checksum": "9df122d1ad8b3d0154fac9f2927909973b9266c6f88934c8ad340f0f1fc14165", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B32/sapmachine-jre-15-ea.32_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "8ae34d29108e1dd90a9af1cd7ec1f7ee634ef7e948cf254ddca310a5334f00b2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B32/sapmachine-jre-15-ea.32_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.32_linux-x64_bin.tar.gz", + "checksum": "dc9dd2726d9fe7ed7c6257f515088078c7535f1801645fcf16807ba46b8ac883", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B32/sapmachine-jre-15-ea.32_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-15-ea.32_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B32/sapmachine-jre-15-ea.32_osx-x64_bin.dmg", + "checksum": "fd941764a4f0451619197d43aeb0e4ad446394eaaa7f1ba3c74c97872bf3ea8c" + }, + "tar.gz": { + "name": "sapmachine-jre-15-ea.32_osx-x64_bin.tar.gz", + "checksum": "638d785c95bc34dd76acb21033100c34d55361ca1685d8940e82a1f2c9f73b65", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B32/sapmachine-jre-15-ea.32_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-15-ea.32_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B32/sapmachine-jre-15-ea.32_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-15-ea.32_windows-x64_bin.zip", + "checksum": "6256d0c80f220fa0078204027ba014493ff66384d7c78b263abc504ec297f234", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B32/sapmachine-jre-15-ea.32_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-15+31": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B31", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.31_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B31/sapmachine-jdk-15-ea.31_linux-ppc64_bin.tar.gz", + "checksum": "6ae8b97021be9517d8633552af7af43f90fd9ab451cc414db3a8d60f5047fa7e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.31_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B31/sapmachine-jdk-15-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "606704d62888b9f1ed445a5759aa046ac5ca7de7191143820862ab7ce3b90dcd" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.31_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B31/sapmachine-jdk-15-ea.31_linux-x64_bin.tar.gz", + "checksum": "84a2d629b1743ab1da813e6e15104b7068401c90a2041bfb965a149f3f871407" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.31_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B31/sapmachine-jdk-15-ea.31_osx-x64_bin.tar.gz", + "checksum": "3f2594432819ca674250f15aed880acc570ffca878e53eeb678ac5776333a083" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.31_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B31/sapmachine-jdk-15-ea.31_osx-x64_bin.dmg", + "checksum": "02131c688053d2f57bd0d03bc8c3f1c3ac8872b0b5368db7c60be84b6ed0cdc8" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.31_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B31/sapmachine-jdk-15-ea.31_windows-x64_bin.zip", + "checksum": "b321c3896d8cd78c833c2170d70b984c2aa10c46d41dd8fc944203d6d30e4360" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.31_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B31/sapmachine-jdk-15-ea.31_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.31_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B31/sapmachine-jre-15-ea.31_linux-ppc64_bin.tar.gz", + "checksum": "438eba1eb1cb5a0b86a9b53cc808e4a4b3324fbf864d16fe6f9b2e5aa7069443" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.31_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B31/sapmachine-jre-15-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "53441ceff1524480b162880388764c5e74ed88fdc63f53aaef1162c69ed974e3" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.31_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B31/sapmachine-jre-15-ea.31_linux-x64_bin.tar.gz", + "checksum": "795e1ee4f1169f08b48f192b8b54461bf3fe8d003c94a3838953d8dcd282e874" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.31_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B31/sapmachine-jre-15-ea.31_osx-x64_bin.tar.gz", + "checksum": "1199b6832138f21415b988c39e923a3239399f8228e95d95c62f604dba3e24ae" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.31_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B31/sapmachine-jre-15-ea.31_osx-x64_bin.dmg", + "checksum": "7818594f1faabce32a1d356b87517478a66e1b815a95fedc3c9cdad93dc80ee0" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.31_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B31/sapmachine-jre-15-ea.31_windows-x64_bin.zip", + "checksum": "240aa90245aad9ae9dff72d6e311239d79ea5cd235169476cec6a0234e2ceae5" + }, + "msi": { + "name": "sapmachine-jre-15-ea.31_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B31/sapmachine-jre-15-ea.31_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+30": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B30", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.30_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B30/sapmachine-jdk-15-ea.30_linux-ppc64_bin.tar.gz", + "checksum": "cba0886f4f3cf4ca43c3dd78d5c8f70b1153e271ddf3547bd136416886cc4109" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.30_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B30/sapmachine-jdk-15-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "dcd7bff02142188122138bbfb7ff99633ff34c18b92790fe9e6ecac2beebb1ee" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.30_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B30/sapmachine-jdk-15-ea.30_linux-x64_bin.tar.gz", + "checksum": "a7f8bfd5e8f57a50c44a0f51e743d8ce7eb4e158d86595b675f187be03db4556" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.30_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B30/sapmachine-jdk-15-ea.30_osx-x64_bin.tar.gz", + "checksum": "52a9626099eb7d1b3343a32a3faf1bebe5d4cd4ff0312870679228c9f7c0e627" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.30_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B30/sapmachine-jdk-15-ea.30_osx-x64_bin.dmg", + "checksum": "823838e7b7e2ac7f6fcb97fe49f32dcd556ce1b5e0354ea3db38fb059a212fd5" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.30_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B30/sapmachine-jdk-15-ea.30_windows-x64_bin.zip", + "checksum": "69fc6a9052b987c6789b011fffddf0bd56e0c2b22f66c477eda3e921341e95c4" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.30_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B30/sapmachine-jdk-15-ea.30_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.30_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B30/sapmachine-jre-15-ea.30_linux-ppc64_bin.tar.gz", + "checksum": "f129badcbd3c78ff1ba5eaa2a968d69e2ae9fa237588b2ad3b5187484902b50e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.30_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B30/sapmachine-jre-15-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "bd9a711f969d9bcaf708ea7eba159c6d9a4477b9769bc2eadbd87ebfb38bac9f" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.30_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B30/sapmachine-jre-15-ea.30_linux-x64_bin.tar.gz", + "checksum": "2b839bc5e8d40e6100f69f7bc54bc83c89982f014b963df58556a8a0aa53a3ab" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.30_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B30/sapmachine-jre-15-ea.30_osx-x64_bin.tar.gz", + "checksum": "405cb40542e85ca53abb4fdc796d470c360b820a540378e0f129be552d6bce81" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.30_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B30/sapmachine-jre-15-ea.30_osx-x64_bin.dmg", + "checksum": "8defded61eb94bed9b4d0b8d9a57277f2b8b77cc7d83aec718feeb8da28d8731" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.30_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B30/sapmachine-jre-15-ea.30_windows-x64_bin.zip", + "checksum": "fb704d23ac547453c7bd726fc9e99522eb721631578ada61364d2baaa1d62947" + }, + "msi": { + "name": "sapmachine-jre-15-ea.30_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B30/sapmachine-jre-15-ea.30_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+29": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B29", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.29_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B29/sapmachine-jdk-15-ea.29_linux-ppc64_bin.tar.gz", + "checksum": "e823f420a6e7ffd04fd6f1de5dfc2fa01b4b460dce66522ec5aecb47b54452a2" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.29_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B29/sapmachine-jdk-15-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "1566890ba6ebb1b4647c203bcbaa962ef6b2ffe0015a79555843b643c0de1799" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.29_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B29/sapmachine-jdk-15-ea.29_linux-x64_bin.tar.gz", + "checksum": "5fa9bdb465833741f081424d6e2f562bb6bdf45d8cc5f7515614db0dfffc1635" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.29_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B29/sapmachine-jdk-15-ea.29_osx-x64_bin.tar.gz", + "checksum": "6a36e15e4ae130d3e8cd33968698a2f4fe3bc5ade48fb235932ad2913121f6ad" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.29_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B29/sapmachine-jdk-15-ea.29_osx-x64_bin.dmg", + "checksum": "db9bca28b1b50f57a38dfc15f195ea1b76a1a1a73f2a5f4989251ad6962b3807" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.29_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B29/sapmachine-jdk-15-ea.29_windows-x64_bin.zip", + "checksum": "c382909088404de936f9e44b78de71482d1e306f3972f11cbe2dd7771e60e02f" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.29_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B29/sapmachine-jdk-15-ea.29_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.29_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B29/sapmachine-jre-15-ea.29_linux-ppc64_bin.tar.gz", + "checksum": "9cfc72f3b8ae96d833d233971f65af6d36eb9539453902e70f5aadc24f9c50cc" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.29_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B29/sapmachine-jre-15-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "003a1f17ba4379339c2d7eef614c7d5d47b0b80bc25336f2b441d9938e8c22cb" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.29_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B29/sapmachine-jre-15-ea.29_linux-x64_bin.tar.gz", + "checksum": "c190f870eaa966f5de5050eeacb96ec6eeaf2b89981524a3df0bb6b009f9d2ab" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.29_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B29/sapmachine-jre-15-ea.29_osx-x64_bin.tar.gz", + "checksum": "ada69cd45e3d955794ea77b0b950d6ff122724fec2fb9ad49e98e2b075c3e13d" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.29_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B29/sapmachine-jre-15-ea.29_osx-x64_bin.dmg", + "checksum": "5e7db6b06b2d22b29e228dadb7aa80d89481f1df2e0ffda7c6e55c71c1ee233c" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.29_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B29/sapmachine-jre-15-ea.29_windows-x64_bin.zip", + "checksum": "17036bdfd91cda60f9c1fc372369f70e751e96b0daeb3d4e63cef3183221a0c3" + }, + "msi": { + "name": "sapmachine-jre-15-ea.29_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B29/sapmachine-jre-15-ea.29_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+28": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B28", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.28_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B28/sapmachine-jdk-15-ea.28_linux-ppc64_bin.tar.gz", + "checksum": "0de966d218607a4840233d2a4637d39b47718126018903be661f7b81b1d30dfc" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.28_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B28/sapmachine-jdk-15-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "96c54b4260209c889ad5be53f93e41b04d62ed88a62b585abad13357f84ec194" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.28_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B28/sapmachine-jdk-15-ea.28_linux-x64_bin.tar.gz", + "checksum": "9b096229b8cdc06f247950825166a75814111ecd5c86264288ce8444ac209d5c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.28_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B28/sapmachine-jdk-15-ea.28_osx-x64_bin.tar.gz", + "checksum": "a67202d7bda669b70446edcd003c3eb71b3667cff97da7148209f5fc1f7c0caa" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.28_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B28/sapmachine-jdk-15-ea.28_osx-x64_bin.dmg", + "checksum": "c6658adc9a29cbbcea018f2763baf6750a5360e36776fb0cf2930109254b6b60" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.28_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B28/sapmachine-jdk-15-ea.28_windows-x64_bin.zip", + "checksum": "1338d5b2ddc025c6c45bfdf374c44eea33ab9d805e37c3f20db4664e6a804b4d" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.28_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B28/sapmachine-jdk-15-ea.28_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.28_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B28/sapmachine-jre-15-ea.28_linux-ppc64_bin.tar.gz", + "checksum": "b43d11a3c05f4f46bdf87ef73a17ee969d203582fd8ad575170e6a602da1469b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.28_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B28/sapmachine-jre-15-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "4ef3a770609edd4ac186dce354badd273a7ef9c92fe1dde1f5602c0ff5b99275" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.28_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B28/sapmachine-jre-15-ea.28_linux-x64_bin.tar.gz", + "checksum": "c213f6c734fc93e2cfb8dd65ba893369d9e9101c6e0c27952eae5b49714788e9" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.28_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B28/sapmachine-jre-15-ea.28_osx-x64_bin.tar.gz", + "checksum": "217500d7c5a8121f17cb433d9efd4d32f0874c4b67130d1693f08d12878ec520" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.28_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B28/sapmachine-jre-15-ea.28_osx-x64_bin.dmg", + "checksum": "dcace619ad1429edd50cfcb21f7846cbc82a0bd233c4d23fe7b6fc1db712405d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.28_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B28/sapmachine-jre-15-ea.28_windows-x64_bin.zip", + "checksum": "e8291eab13ba6dfc0e78b606d441b312b2163777e68ae9799d9a45db9b0ea918" + }, + "msi": { + "name": "sapmachine-jre-15-ea.28_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B28/sapmachine-jre-15-ea.28_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+27": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B27", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.27_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B27/sapmachine-jdk-15-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "080280b6b54f299c6479e7ce6e3af6d1d3b2fe9c32b24982f17e4a10c9c71eb8" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.27_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B27/sapmachine-jdk-15-ea.27_linux-x64_bin.tar.gz", + "checksum": "7bb19488a2fe7948b10b8e233396d68fa5c8932fe63aad41929e2ff7632879c6" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.27_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B27/sapmachine-jdk-15-ea.27_osx-x64_bin.tar.gz", + "checksum": "f820bfaf341cbda7f5c895d9d8370196645da6e514d99010263862d88556f50e" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.27_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B27/sapmachine-jdk-15-ea.27_osx-x64_bin.dmg", + "checksum": "1907d6d44f4b245fc7fae47bed1a0a02033fa7d111f8da8532a8d9aa02fe6086" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.27_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B27/sapmachine-jdk-15-ea.27_windows-x64_bin.zip", + "checksum": "406d560740cc69726b0cc9a8e6db44b929124251d20dab8d88a5773659b5a312" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.27_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B27/sapmachine-jdk-15-ea.27_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.27_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B27/sapmachine-jre-15-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "3e32ccab6961c9a1b749a64669c1a23526aa863d9ba8fc254c8757f3d8786735" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.27_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B27/sapmachine-jre-15-ea.27_linux-x64_bin.tar.gz", + "checksum": "57f00f5ea428b49fe990f501f659b7804d375d454fe907c17da793a5d208634f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.27_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B27/sapmachine-jre-15-ea.27_osx-x64_bin.tar.gz", + "checksum": "1511c66b0249b41dd7f1d21d02966b59a4e4eb63e67d0027098803e6361482ee" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.27_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B27/sapmachine-jre-15-ea.27_osx-x64_bin.dmg", + "checksum": "3a291bbbd9eaf69ebdf0afc655d2007cdbcd7ada290206cca932a306a56ab17a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.27_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B27/sapmachine-jre-15-ea.27_windows-x64_bin.zip", + "checksum": "1c0d403d42cf5b102918679a3e2e5bdfb7429b97a49e124eb005d000e34e6af0" + }, + "msi": { + "name": "sapmachine-jre-15-ea.27_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B27/sapmachine-jre-15-ea.27_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+26": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B26", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.26_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B26/sapmachine-jdk-15-ea.26_linux-ppc64_bin.tar.gz", + "checksum": "5920bca372d9fe3efe376cb41f2a49fcade554bd09ec6ee8cd1dd07af1edb40a" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.26_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B26/sapmachine-jdk-15-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "3889c88085ac0ead98f305aa5a95abc98ce06ef1bc7a809eb4367c858fc1d771" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.26_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B26/sapmachine-jdk-15-ea.26_linux-x64_bin.tar.gz", + "checksum": "37eee862e08745fe6166b2dc56015850209696f139485d37e285b62973a5cafa" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.26_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B26/sapmachine-jdk-15-ea.26_osx-x64_bin.tar.gz", + "checksum": "e3b47f314f4c55fc43d801b4f09eb8a4289c34d1f812b44fa7210a3f20f7b0d7" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.26_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B26/sapmachine-jdk-15-ea.26_osx-x64_bin.dmg", + "checksum": "139acc1093fc67af94c3555fe76aa93f8135431756f5b7dcdb8a7cbd146cc677" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.26_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B26/sapmachine-jdk-15-ea.26_windows-x64_bin.zip", + "checksum": "155dfe749096fe1f131f73e500262cd829e47ddb27d849732e08c4ff25ed78cf" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.26_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B26/sapmachine-jdk-15-ea.26_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.26_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B26/sapmachine-jre-15-ea.26_linux-ppc64_bin.tar.gz", + "checksum": "11318582154900d356e3d230ae27c40c97ecf90d0b99b5d72b523c17f7295d1c" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.26_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B26/sapmachine-jre-15-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "0da235192a3cb211c868f614217f63247c6d63aff4d5a0ec49474e90fdb53558" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.26_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B26/sapmachine-jre-15-ea.26_linux-x64_bin.tar.gz", + "checksum": "52e1734f085115f012dae2a09a0b71a290c66df2d5d9bfd02c5e6faef616cc0b" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.26_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B26/sapmachine-jre-15-ea.26_osx-x64_bin.tar.gz", + "checksum": "d49b88b62dd7343a52d5b49b4ba24333843db45db5a22b9728406c0a7c7a2f1e" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.26_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B26/sapmachine-jre-15-ea.26_osx-x64_bin.dmg", + "checksum": "09f32c115995355b0ffa6dbb76af71f6733bf319628213fcecbd59b160a2c975" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.26_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B26/sapmachine-jre-15-ea.26_windows-x64_bin.zip", + "checksum": "d326b191c65148f7ddab473185caaa3d91a1e6b3c5b517d72eacf032aead5af9" + }, + "msi": { + "name": "sapmachine-jre-15-ea.26_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B26/sapmachine-jre-15-ea.26_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+25": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B25", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.25_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B25/sapmachine-jdk-15-ea.25_linux-ppc64_bin.tar.gz", + "checksum": "5cb7e23b425a0751a0befdcfe17b1ba3004d3af42042c2ff32b95277ad0ab796" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.25_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B25/sapmachine-jdk-15-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "f63a3c1daaa6a161378332899e2c35391baed19b15786e8049220356dbbfc400" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.25_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B25/sapmachine-jdk-15-ea.25_linux-x64_bin.tar.gz", + "checksum": "7351211d88e14bdad3c70de08aa9c2d9a07c58f31dc451438f163371a928619e" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.25_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B25/sapmachine-jdk-15-ea.25_osx-x64_bin.tar.gz", + "checksum": "b865decc1b4b7038ea554b2fe8db044045328b4c6a5428964b2aa047a8fb0bc8" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.25_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B25/sapmachine-jdk-15-ea.25_osx-x64_bin.dmg", + "checksum": "b0b546471c80ba488221869e5170b891df8b211b24f7e7fe934b5d905793ed04" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.25_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B25/sapmachine-jdk-15-ea.25_windows-x64_bin.zip", + "checksum": "62eb0f200a1a5e6ca397e597fed1469b6ce6294fc956a2ed14b53da69a4822d4" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.25_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B25/sapmachine-jdk-15-ea.25_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.25_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B25/sapmachine-jre-15-ea.25_linux-ppc64_bin.tar.gz", + "checksum": "ed838e503a2eaa70570b84fdc4b48b2f05fe5e6a6c7b72b9e74c96ff1b9fcb7f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.25_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B25/sapmachine-jre-15-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "26110a59bf76f7744e95f9b0f986fa5ac44a62d34e03117a31b5bbba55d0f608" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.25_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B25/sapmachine-jre-15-ea.25_linux-x64_bin.tar.gz", + "checksum": "7a16cadd6648d7def30352bebe3824284d254202eb3f0b1900ec015fad502a51" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.25_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B25/sapmachine-jre-15-ea.25_osx-x64_bin.tar.gz", + "checksum": "4d28cc18faed7b1350a1ab756bc5f57a209fbf9fc05d4ab2ba9eccde753a7c17" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.25_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B25/sapmachine-jre-15-ea.25_osx-x64_bin.dmg", + "checksum": "15a4304bb6af95f6cba4c14a0fddf6060eb1dcc108fbc56253fce79ad9717f13" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.25_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B25/sapmachine-jre-15-ea.25_windows-x64_bin.zip", + "checksum": "2bb7032109ce865c8c2db7b6ca45cc7f027d2078b9e9a0139ab71c78ce92ce35" + }, + "msi": { + "name": "sapmachine-jre-15-ea.25_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B25/sapmachine-jre-15-ea.25_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+24": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B24", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.24_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B24/sapmachine-jdk-15-ea.24_linux-ppc64_bin.tar.gz", + "checksum": "6b9b0b534b845d438f2b5a8a00b9599546174061b655653bad9699e10399c2a0" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.24_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B24/sapmachine-jdk-15-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "b5d2faef759230ee91a105c6432247d996d2996f6a94cead3bbf0afb1b077c44" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.24_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B24/sapmachine-jdk-15-ea.24_linux-x64_bin.tar.gz", + "checksum": "49377aa134102f6cadad256865536804ade6ab37bcead503280b621de5fff502" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.24_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B24/sapmachine-jdk-15-ea.24_osx-x64_bin.tar.gz", + "checksum": "bcd5ac7421d3b1526324cf9791f5eafbbd19515e0279599d71e4cf562fb10b66" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.24_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B24/sapmachine-jdk-15-ea.24_osx-x64_bin.dmg", + "checksum": "c7c0065bce1cd5ad972e769c6b5177e2784c50e24df90cad57b7b2324328ac06" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.24_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B24/sapmachine-jdk-15-ea.24_windows-x64_bin.zip", + "checksum": "734f18adecbd10cf64af0c74a92492640ab4246885008eb45e765b2e6d932d71" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.24_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B24/sapmachine-jdk-15-ea.24_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.24_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B24/sapmachine-jre-15-ea.24_linux-ppc64_bin.tar.gz", + "checksum": "ef90ccb229a16b02f6c11fa60c8fedbf7951ff2978e1193edbf906ca85f7ad8c" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.24_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B24/sapmachine-jre-15-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "b60e0e8c1f80537a5f41c0c3807e3213351b4a9ad003e9a65232158a2e8cba88" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.24_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B24/sapmachine-jre-15-ea.24_linux-x64_bin.tar.gz", + "checksum": "646e829434bdfa316dd52561d0cc7d94c77371477207072d6784eac509307e00" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.24_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B24/sapmachine-jre-15-ea.24_osx-x64_bin.tar.gz", + "checksum": "90d3a21107c62c8f96c59fcedb28d3f8114a5dddb64da9378899d86359babcd2" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.24_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B24/sapmachine-jre-15-ea.24_osx-x64_bin.dmg", + "checksum": "8156d6dd44ce47caa25ee6ec78129696bfb946a31bbefad2c9abf2eb826e0a41" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.24_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B24/sapmachine-jre-15-ea.24_windows-x64_bin.zip", + "checksum": "ca60650baf5da10c5556251f5ac1753f617f68ca36d48ecfd26366f883da62d0" + }, + "msi": { + "name": "sapmachine-jre-15-ea.24_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B24/sapmachine-jre-15-ea.24_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+23": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B23", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.23_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B23/sapmachine-jdk-15-ea.23_linux-ppc64_bin.tar.gz", + "checksum": "580185776e1f0965fc8b79bd27599e9add1dac04a6fb6155e29369d9b58a7641" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.23_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B23/sapmachine-jdk-15-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "06411d87a2a45bb9aea0926df97da8d5d308a588f6d8c4b94d38c319fc8ab046" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.23_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B23/sapmachine-jdk-15-ea.23_linux-x64_bin.tar.gz", + "checksum": "f440ee4aa5da71c719589a2d923d363bbdfb039e3ec39f9a6a16ed0a98ed5493" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.23_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B23/sapmachine-jdk-15-ea.23_osx-x64_bin.tar.gz", + "checksum": "6e84cb9642336084a79a871f86988ce617005b370325e1903b437320ffd6ff8f" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.23_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B23/sapmachine-jdk-15-ea.23_osx-x64_bin.dmg", + "checksum": "2f5cb65acfcd19c72c39dae34909898fb58a181bb7ac79aaad5045d8820d2822" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.23_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B23/sapmachine-jdk-15-ea.23_windows-x64_bin.zip", + "checksum": "c3ad821551b774f614da20b0c568f86dbfdf1648ea0749daa9e8026d06e87d3d" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.23_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B23/sapmachine-jdk-15-ea.23_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.23_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B23/sapmachine-jre-15-ea.23_linux-ppc64_bin.tar.gz", + "checksum": "ce581ad83b78ca86c8180a1cb45ec0e1fc6f5145d74f337f291c69f414d347e0" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.23_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B23/sapmachine-jre-15-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "619864a0e0658b3e67954890467ed0688b6df1e855a2917f7d9e7832ed06b5a5" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.23_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B23/sapmachine-jre-15-ea.23_linux-x64_bin.tar.gz", + "checksum": "7fe4d2dbfd5ccddbcb8345e2d94cc4b0b8e5b96183bf00b29717ff56e2bee5a7" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.23_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B23/sapmachine-jre-15-ea.23_osx-x64_bin.tar.gz", + "checksum": "07d12802ff5a1973ad42f2f6a433ed03eb38c835f4e4e6ddc7ecc5aa74d198f3" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.23_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B23/sapmachine-jre-15-ea.23_osx-x64_bin.dmg", + "checksum": "01588c8c65f7007387aa41f0d74e55184779fdabf8e44086f44be0dc0139259d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.23_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B23/sapmachine-jre-15-ea.23_windows-x64_bin.zip", + "checksum": "a6c6b45a977613100611b78edfeeba62a4ea35fb20077eacd25e93f78aa4d216" + }, + "msi": { + "name": "sapmachine-jre-15-ea.23_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B23/sapmachine-jre-15-ea.23_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+22": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B22", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.22_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B22/sapmachine-jdk-15-ea.22_linux-ppc64_bin.tar.gz", + "checksum": "6f7d27b91d0c1a0e892d0ef24101bdbdaf09b9db4293fffd9ac9dc36752a7eba" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.22_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B22/sapmachine-jdk-15-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "4537be0f76da015b46027fdb4e9947ba591fef51ad03ce13e9a5d954690b8fec" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.22_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B22/sapmachine-jdk-15-ea.22_linux-x64_bin.tar.gz", + "checksum": "08cc834021d2dc398d21fcab45dd140976fee86be04d738e2e8ad2fdfccecca9" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.22_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B22/sapmachine-jdk-15-ea.22_osx-x64_bin.tar.gz", + "checksum": "bed5591c020bd93eb503d7d9abccbb8dd127f7c601d816534fd55bcc581b7105" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.22_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B22/sapmachine-jdk-15-ea.22_osx-x64_bin.dmg", + "checksum": "70db9938ded2a90fd711b99b94d8ad43115ffe8d749a8f95eeecc43fc02957e3" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.22_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B22/sapmachine-jre-15-ea.22_linux-ppc64_bin.tar.gz", + "checksum": "3b0f449567ea2aa89b30e5eae12d28d05656bf8e0c872c030dbca3b48f018303" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.22_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B22/sapmachine-jre-15-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "68864943cdece37438c8b7cc92c5f34e7aaf144b09b56ef07cbbc15b252410c5" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.22_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B22/sapmachine-jre-15-ea.22_linux-x64_bin.tar.gz", + "checksum": "975e71455e07593de7d9e9ad29a8e07560dc5e4ae203848be76f8b8922880777" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.22_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B22/sapmachine-jre-15-ea.22_osx-x64_bin.tar.gz", + "checksum": "898ff2a645c3caf6f72457f09a865440af52a62c7449abb5b039e5beb1b912fb" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.22_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B22/sapmachine-jre-15-ea.22_osx-x64_bin.dmg", + "checksum": "e55574fdb0d3065de4bc0b8d5a511bce5b2aa5470b5e26f899cf874963f8bf5f" + } + } + } + } + }, + "sapmachine-15+21": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B21", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.21_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B21/sapmachine-jdk-15-ea.21_linux-ppc64_bin.tar.gz", + "checksum": "92f17211207c6d2421a83a7893b024ee125f84d487c9280ed07ce57d53c2fa00" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.21_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B21/sapmachine-jdk-15-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "d72f4e8f8020459d0a1dedc42ca7bd6466108586e63b172ddea553d8cced299a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.21_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B21/sapmachine-jdk-15-ea.21_linux-x64_bin.tar.gz", + "checksum": "de98eb8c4f0b767b97f2be7ae68fcecaf70ec0facc563c7f559c7a306bcb4b9d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.21_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B21/sapmachine-jdk-15-ea.21_osx-x64_bin.tar.gz", + "checksum": "6842ce5f02c39f4f08acb6eff8f80d7f8ac82825b5273b8c19fd254817be4b65" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.21_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B21/sapmachine-jdk-15-ea.21_osx-x64_bin.dmg", + "checksum": "1fdb2490fb43c2742d37e03e45eb63f522b8392ffd6800fa2a41d63e7a204851" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.21_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B21/sapmachine-jdk-15-ea.21_windows-x64_bin.zip", + "checksum": "99612ca8be5f64bd436027b2d8965d07f164fc7f6121addc20293b966f6b6d4a" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B21/sapmachine-jdk-15-ea.21_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.21_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B21/sapmachine-jre-15-ea.21_linux-ppc64_bin.tar.gz", + "checksum": "352d6ced979831104b4472f7b82b41385295bc78a50f741324fa967975325971" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.21_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B21/sapmachine-jre-15-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "fee4daf749169e3e15bf9fbc6f35c39d05f1d9a6cd429f0448407b38178c3ae1" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.21_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B21/sapmachine-jre-15-ea.21_linux-x64_bin.tar.gz", + "checksum": "b39a301190179a1dbf87c684561f825dcbd6bf32a6a4a673cf75be6edafd7ded" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.21_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B21/sapmachine-jre-15-ea.21_osx-x64_bin.tar.gz", + "checksum": "d74b03a1afb9ef0714fde69ed5158d04dbc1879c16dad7e7bdbd8522ff3dff51" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.21_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B21/sapmachine-jre-15-ea.21_osx-x64_bin.dmg", + "checksum": "cc0d8188b180994b419ab9c42417ea3496a2e2c456ffa1731617fd1a0ed488e5" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.21_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B21/sapmachine-jre-15-ea.21_windows-x64_bin.zip", + "checksum": "67f7546db440736f1c4e8fad6da845a099212e298a3d2f21bac0e98fe0f0e956" + }, + "msi": { + "name": "sapmachine-jre-15-ea.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B21/sapmachine-jre-15-ea.21_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+20": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B20", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.20_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B20/sapmachine-jdk-15-ea.20_linux-ppc64_bin.tar.gz", + "checksum": "d8ee788bf27a5445f10e551f83440caa36ae92151c709682769b80460612c44b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.20_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B20/sapmachine-jdk-15-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "dec9bf79a921e4e2ebb68091d72510dfb1b84fbd269b7db8d223ae2713bc89b6" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.20_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B20/sapmachine-jdk-15-ea.20_linux-x64_bin.tar.gz", + "checksum": "e21ffa87a300fde25caa910909ec93e97a09770f79bddb2e61b3acfc3b00766c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.20_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B20/sapmachine-jdk-15-ea.20_osx-x64_bin.tar.gz", + "checksum": "b59e14f43b47b9ad6ea0f0b614748db09324a477df669924036b57cc0bed8aab" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.20_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B20/sapmachine-jdk-15-ea.20_osx-x64_bin.dmg", + "checksum": "19cf4e0ccab93e4b9bb8006f4ad4118e52a0e073588f9b6c2e69fa0d2892ebb9" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.20_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B20/sapmachine-jdk-15-ea.20_windows-x64_bin.zip", + "checksum": "4009c759c2dccc2b2a51793e3087cd0040a1cd8bdbc3dd6870bff3f1ba834952" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B20/sapmachine-jdk-15-ea.20_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.20_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B20/sapmachine-jre-15-ea.20_linux-ppc64_bin.tar.gz", + "checksum": "748952ffee3889874ba1489a81dd9bc91ebd14cb264532b6f48ab2393e45ab9f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.20_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B20/sapmachine-jre-15-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "69d82465d2db968002ae6ba8977a26896a88f5cbcb265e29fc5c63ad5985d568" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.20_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B20/sapmachine-jre-15-ea.20_linux-x64_bin.tar.gz", + "checksum": "c76a70ec18f471abf756e54a4c0ad6976a392c3b39ab0a780484602cec019b5a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.20_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B20/sapmachine-jre-15-ea.20_osx-x64_bin.tar.gz", + "checksum": "6fcf93735ae1fd2052a1cb9f1df5b96622459b1b90a1e81f2906d38470c07646" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.20_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B20/sapmachine-jre-15-ea.20_osx-x64_bin.dmg", + "checksum": "710ef2f8b85ecdec42d9898d8aaff4d7e5fa93f7a3bcf0c60f40871db9fdac59" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.20_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B20/sapmachine-jre-15-ea.20_windows-x64_bin.zip", + "checksum": "bad63b4d6b489bf746365c37430424123c95712f6125eb0014ae623360d82ac7" + }, + "msi": { + "name": "sapmachine-jre-15-ea.20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B20/sapmachine-jre-15-ea.20_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+19": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B19", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.19_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B19/sapmachine-jdk-15-ea.19_linux-ppc64_bin.tar.gz", + "checksum": "b161563a191c51de8c86a17e3817226d93ff5ae0a2fe472c7d391ac9f20bd278" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.19_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B19/sapmachine-jdk-15-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "542e2ff879e6785b5779279511fd69bfdd5505d06fdc58d636cd9e1020ddc274" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.19_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B19/sapmachine-jdk-15-ea.19_linux-x64_bin.tar.gz", + "checksum": "5f0591d18b709e8b3edef85fde6894346ea93d35cd42aacafa0ebb5da2320eda" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.19_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B19/sapmachine-jdk-15-ea.19_osx-x64_bin.tar.gz", + "checksum": "c3fdef0eece596f04c72d11d30988e992850984eb4cab768d256d7254f370f3a" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.19_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B19/sapmachine-jdk-15-ea.19_osx-x64_bin.dmg", + "checksum": "b5dfa6b80fc7fb0c00e74157fdb2bc162b4dedf2a96717b001c81e9ac8ad5a12" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.19_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B19/sapmachine-jdk-15-ea.19_windows-x64_bin.zip", + "checksum": "1ded97a343957fb15d444883f48c497c05d1bddfb12518666c6542614695a66a" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B19/sapmachine-jdk-15-ea.19_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.19_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B19/sapmachine-jre-15-ea.19_linux-ppc64_bin.tar.gz", + "checksum": "ec901c2f20ef93205677322faea39159c89165d8905860cad01b501f56c840ad" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.19_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B19/sapmachine-jre-15-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "32ef3d8896866d45566ae3bbca117f0e06bf952067ae06e167392f3183abb3c8" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.19_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B19/sapmachine-jre-15-ea.19_linux-x64_bin.tar.gz", + "checksum": "1d1834b83ca40449b8bf78f5a6549ca0a82a0ae2f6ebc579df3e42f6a05147bd" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.19_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B19/sapmachine-jre-15-ea.19_osx-x64_bin.tar.gz", + "checksum": "1c427d10ac2835e6de74a24e87a1f8b2d0359a20678e1a74cedc3f5afea95fc2" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.19_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B19/sapmachine-jre-15-ea.19_osx-x64_bin.dmg", + "checksum": "91ffec90d607cc764b5a51305ef1542bff3aeb89783aa3b441fd4d5cbb2a237b" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.19_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B19/sapmachine-jre-15-ea.19_windows-x64_bin.zip", + "checksum": "6ec9445be5c325069097e97db4953834984c8b68fe3023af22e564495e99d23f" + }, + "msi": { + "name": "sapmachine-jre-15-ea.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B19/sapmachine-jre-15-ea.19_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+18": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B18", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.18_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B18/sapmachine-jdk-15-ea.18_linux-ppc64_bin.tar.gz", + "checksum": "7a64529ced53401e510b3dd80fef8cef2ade662264e983795b322d6e503a75dc" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.18_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B18/sapmachine-jdk-15-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "093dc2787a6f7409e7c758d9cb98a4b2bb74ec06c4e1efd2dec361b8be29a9e7" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.18_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B18/sapmachine-jdk-15-ea.18_linux-x64_bin.tar.gz", + "checksum": "02ef6affe01d46878a2b779d675edbee76e16c96392aeada9f36ae96db80c808" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.18_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B18/sapmachine-jdk-15-ea.18_osx-x64_bin.tar.gz", + "checksum": "01b4c33afb2d81712f7bdc3ef1c701655cd9c9eaecdd7492f99a76aa2317f4d2" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.18_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B18/sapmachine-jdk-15-ea.18_osx-x64_bin.dmg", + "checksum": "5a1ba406ad9d4ef42015e92b39491b06226433edb77898b8d5d344e9b5a1e4ac" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.18_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B18/sapmachine-jdk-15-ea.18_windows-x64_bin.zip", + "checksum": "7fa24636508537498d6fa33b6853fc6414bd8070de7f7269467bc5c2b9af4ad3" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B18/sapmachine-jdk-15-ea.18_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.18_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B18/sapmachine-jre-15-ea.18_linux-ppc64_bin.tar.gz", + "checksum": "7aa0abee295ff2e437177f0126b67e368d71835ab62d52615afebaa2634c1505" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.18_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B18/sapmachine-jre-15-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "d748417fcadcae109ffab223e51429254486faf116a36f3a91522dd70a6db22b" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.18_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B18/sapmachine-jre-15-ea.18_linux-x64_bin.tar.gz", + "checksum": "1364f28613f893a0c237d171d44db1906be6ab5edac29b668ed26b34ee3f60e2" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.18_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B18/sapmachine-jre-15-ea.18_osx-x64_bin.tar.gz", + "checksum": "ad763b9857f751d42f63f2525ca9ae76cff8b4b8f6c29a36b597f29d3347f521" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.18_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B18/sapmachine-jre-15-ea.18_osx-x64_bin.dmg", + "checksum": "a94bdb7151f6b9c370a2ac19f8b41706692634eb0d4f702e72859c6c6e47c56d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.18_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B18/sapmachine-jre-15-ea.18_windows-x64_bin.zip", + "checksum": "65c5ad155639582b5c5d18af430ff8b5cd330b8c2055c88c938c557a60ddd002" + }, + "msi": { + "name": "sapmachine-jre-15-ea.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B18/sapmachine-jre-15-ea.18_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+17": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B17", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.17_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B17/sapmachine-jdk-15-ea.17_linux-ppc64_bin.tar.gz", + "checksum": "9e1f1e29299df2fb4db150de37e7e14537b0583f2c0d8a816a6781d5eabce1a7" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.17_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B17/sapmachine-jdk-15-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "787ee0fbbad8305b010c8b6a31f3a0bf6eb606cc193b7581f4d76d2686a9e5c1" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.17_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B17/sapmachine-jdk-15-ea.17_linux-x64_bin.tar.gz", + "checksum": "ee2858072667654fc449a8ac0347d7f0170baffcb7d56aa71b5c376910315ba1" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.17_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B17/sapmachine-jdk-15-ea.17_osx-x64_bin.tar.gz", + "checksum": "02febc5dbbd0718982fdb542874a9e4bf4c27ae2a56601b6a92e8e61e4200e7f" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.17_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B17/sapmachine-jdk-15-ea.17_osx-x64_bin.dmg", + "checksum": "29b8d9baaf583b08ae3206e3e34a268408e885b98f65af94f5f2d0128f570003" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.17_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B17/sapmachine-jdk-15-ea.17_windows-x64_bin.zip", + "checksum": "fb319a45111878da6cc37eb1d6b1a8fb679663b855c1f82db54bde061cac904f" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B17/sapmachine-jdk-15-ea.17_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.17_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B17/sapmachine-jre-15-ea.17_linux-ppc64_bin.tar.gz", + "checksum": "fe7312f4df850506c4ec64bdf9dabed286937c8af27ab485a0bf7ca570e43a57" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.17_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B17/sapmachine-jre-15-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "f45e154b07fe2664545f3a96794f1d40c0df0197ebfea5f29f663aa01dad73f2" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.17_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B17/sapmachine-jre-15-ea.17_linux-x64_bin.tar.gz", + "checksum": "27a7607ef46f4c7b473befe1d428ebd1de5f2f9a96e332a553e3ab3b64e1d388" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.17_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B17/sapmachine-jre-15-ea.17_osx-x64_bin.tar.gz", + "checksum": "08649b639783f87900b70fc3e0c855753fa6f8dbcbb831dc07743abf10dc3a08" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.17_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B17/sapmachine-jre-15-ea.17_osx-x64_bin.dmg", + "checksum": "0b40989f24ecb703295dd0da4afb11e4997e4cbf0ee68987bf1c0587ca22efe9" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.17_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B17/sapmachine-jre-15-ea.17_windows-x64_bin.zip", + "checksum": "e972b4eb949d28696bc2cc99ef871027065e0dead14a9330890a3f1102362db0" + }, + "msi": { + "name": "sapmachine-jre-15-ea.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B17/sapmachine-jre-15-ea.17_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+16": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B16", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.16_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B16/sapmachine-jdk-15-ea.16_linux-ppc64_bin.tar.gz", + "checksum": "b9801cf13377a96890730fd6a35e15261dbbee6666f5fe7fa9358a341b982d66" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.16_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B16/sapmachine-jdk-15-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "b8fe784a986805562e02d28446ed24bcce44e7afa61951dc95415ee9f86784bf" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.16_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B16/sapmachine-jdk-15-ea.16_linux-x64_bin.tar.gz", + "checksum": "5a6ebcd9f41245652137f581aa4f78ed7a070e3ff22dd06e822f9c642d2a8521" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.16_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B16/sapmachine-jdk-15-ea.16_osx-x64_bin.tar.gz", + "checksum": "c2d3a00f87234b504f23f759a39d58d60dc160c84a2fc75c7a561f17ccb43fa5" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.16_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B16/sapmachine-jdk-15-ea.16_osx-x64_bin.dmg", + "checksum": "2ba0d239e9a6bf1c5fa8c47ab4a57e2a4a8446014159fc36fdbbecd97f90ec23" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.16_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B16/sapmachine-jdk-15-ea.16_windows-x64_bin.zip", + "checksum": "367dc8027eed978d44dcedc6dd310f63bd50a3f8c18a7b7da75d2da627e880fa" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B16/sapmachine-jdk-15-ea.16_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.16_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B16/sapmachine-jre-15-ea.16_linux-ppc64_bin.tar.gz", + "checksum": "1cdca214b38c30a2fc8e8be537b036bd3ab2ee4327b24701c4836822bca03a02" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.16_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B16/sapmachine-jre-15-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "54dca0bf41712b6e59906ea0b8441e4c2f73248923e9b37663a31eb94d1f57d2" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.16_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B16/sapmachine-jre-15-ea.16_linux-x64_bin.tar.gz", + "checksum": "13d6a16c872d36f192367931a683b32fbdf27482cabe096e52527732f4b25c56" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.16_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B16/sapmachine-jre-15-ea.16_osx-x64_bin.tar.gz", + "checksum": "942b0af9c6fdb6febe4ba7d6810354218ca557a3ab0bdd9d4f38cfe118d65c88" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.16_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B16/sapmachine-jre-15-ea.16_osx-x64_bin.dmg", + "checksum": "80e170b60a4163a719ebaec15ecbb4733893480e0d8d145da8f8e8441a2679a0" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.16_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B16/sapmachine-jre-15-ea.16_windows-x64_bin.zip", + "checksum": "420a921a5980eabb54a72022908b23aedebc62345b5e7f3f4499ea3deaa9b161" + }, + "msi": { + "name": "sapmachine-jre-15-ea.16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B16/sapmachine-jre-15-ea.16_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+15": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B15", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.15_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B15/sapmachine-jdk-15-ea.15_linux-ppc64_bin.tar.gz", + "checksum": "72787a436ff26c398267d52e06e7f500f3118d4a9655a16832cd29676616fb84" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.15_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B15/sapmachine-jdk-15-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "71ad8192943a2c8c194c6e806997cca83298045781d02484e70199471863b53c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.15_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B15/sapmachine-jdk-15-ea.15_linux-x64_bin.tar.gz", + "checksum": "682188ea1d431857965527cf740e03248f3df895e99adaea0cdd0e68260a8dfa" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.15_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B15/sapmachine-jdk-15-ea.15_osx-x64_bin.tar.gz", + "checksum": "deb0e74ade86984b2be0856f7c44f1123ef31ff150ce396cfdbb874212665d56" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.15_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B15/sapmachine-jdk-15-ea.15_osx-x64_bin.dmg", + "checksum": "b2389d2779de626e156fb729a6ac74b7b6a905cc2c2c1b090e4d2f7849fdeb71" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.15_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B15/sapmachine-jdk-15-ea.15_windows-x64_bin.zip", + "checksum": "3706063b9f131a19fb6293c6b96d390482e5bfb49c18161b6a92f1f5077e48c2" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B15/sapmachine-jdk-15-ea.15_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.15_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B15/sapmachine-jre-15-ea.15_linux-ppc64_bin.tar.gz", + "checksum": "6104a0856c328eeca2e479289e1242a9de986fb65a1c50c0c7085e39718d1807" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.15_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B15/sapmachine-jre-15-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "a080094cef9a4769bdef544ddddb434b8bd2611bad653533bb6c3670e2f3a220" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.15_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B15/sapmachine-jre-15-ea.15_linux-x64_bin.tar.gz", + "checksum": "5cf65dd866f6dbd4bdb097a3c4c179b62d1a3302e3cdc418f00d5d326bef26e0" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.15_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B15/sapmachine-jre-15-ea.15_osx-x64_bin.tar.gz", + "checksum": "48c16619ce89291e1adccdebe559e31e5fdec61f6aec34b473a822ab2d1c23ea" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.15_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B15/sapmachine-jre-15-ea.15_osx-x64_bin.dmg", + "checksum": "348c44fd636b2676a708c5f356d791f39d45602ffc2c6bf2ca1720d0f45857c6" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.15_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B15/sapmachine-jre-15-ea.15_windows-x64_bin.zip", + "checksum": "4d24499fabe5bc1e17587a1e8dcc5c237f83571628aa06b356efa19a37621dbd" + }, + "msi": { + "name": "sapmachine-jre-15-ea.15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B15/sapmachine-jre-15-ea.15_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+14": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B14", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.14_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B14/sapmachine-jdk-15-ea.14_linux-ppc64_bin.tar.gz", + "checksum": "83cfbe33f2628ac322e88fc8f317411ec11679d35bdced1f0ad1338d0d16e1b3" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.14_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B14/sapmachine-jdk-15-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "c8b2ea3c76278d43c7bdaac5860059e02f5b0a680e0ddf426196bef7a4c075da" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.14_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B14/sapmachine-jdk-15-ea.14_linux-x64_bin.tar.gz", + "checksum": "9613c1d09db595a5e378be5873a093f60550a7733d9eb3507a62572cf6403ba2" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.14_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B14/sapmachine-jdk-15-ea.14_osx-x64_bin.tar.gz" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.14_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B14/sapmachine-jdk-15-ea.14_osx-x64_bin.dmg", + "checksum": "91b08b67f5f1d289266ee98856860dcb532b61cf617bc7233900ecb3ea288269" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.14_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B14/sapmachine-jdk-15-ea.14_windows-x64_bin.zip", + "checksum": "673d2156b1692c24c6acb7b6f96e5cd16d5fa88bd6631c361f174d98071d9cb9" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B14/sapmachine-jdk-15-ea.14_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.14_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B14/sapmachine-jre-15-ea.14_linux-ppc64_bin.tar.gz", + "checksum": "80f6418c300a2d123269a1cfad6adf1407db21d9efefc24efa49d4935d913709" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.14_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B14/sapmachine-jre-15-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "9b059bcfea1a352f5fe262508a88cbbe2b401e13234638e8f271320b1c2589a1" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.14_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B14/sapmachine-jre-15-ea.14_linux-x64_bin.tar.gz", + "checksum": "1e3c33095ce5d2199c2d4ac42202407b5f219a0c4fced1286f47c654243eca31" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.14_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B14/sapmachine-jre-15-ea.14_osx-x64_bin.tar.gz", + "checksum": "794198fae797d5fbaae4a8c313843844ad87bab6736a54c9c634ec713618b0c4" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.14_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B14/sapmachine-jre-15-ea.14_osx-x64_bin.dmg", + "checksum": "e9dbeffee16c93672910bf89e54f4675cf8659e19f64e5ed56d3db52cadab126" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.14_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B14/sapmachine-jre-15-ea.14_windows-x64_bin.zip", + "checksum": "29b0237cb684cc174623eb20d2bb325ac44c074f67709ce7e5b00644d5997315" + }, + "msi": { + "name": "sapmachine-jre-15-ea.14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B14/sapmachine-jre-15-ea.14_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+13": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B13", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.13_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B13/sapmachine-jdk-15-ea.13_linux-ppc64_bin.tar.gz", + "checksum": "37464a8702adb0162cdc93542b6811570b6058432ef4c93726eef43a77205f5c" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.13_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B13/sapmachine-jdk-15-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "0f23cac77d63fe45b78b9bdba702af1c47a04de0b70eb3f3d146a5e55460c7d1" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.13_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B13/sapmachine-jdk-15-ea.13_linux-x64_bin.tar.gz", + "checksum": "edd84a3f80f1c51dce62632be7577e3b5f974bc49dda9325ffe126940263d13a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.13_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B13/sapmachine-jdk-15-ea.13_osx-x64_bin.tar.gz", + "checksum": "f70fb8ade48474bd6fcacac2d4f976b887b5a874f305fa8509d3b19e42a91309" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.13_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B13/sapmachine-jdk-15-ea.13_osx-x64_bin.dmg", + "checksum": "aff34a11c08360e78bfa311d236370e9f865223338074f9df1477ae78630a4ee" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.13_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B13/sapmachine-jdk-15-ea.13_windows-x64_bin.zip", + "checksum": "03f5ffe27d5d39601a2a3255c4d1282258dbcd5fc49a8bed489c2ffb44a9a293" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B13/sapmachine-jdk-15-ea.13_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.13_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B13/sapmachine-jre-15-ea.13_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.13_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B13/sapmachine-jre-15-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "2bf05c8585ac6dc333f17e20b9bdf664980059bcd0f5e947a1fb602090c26f09" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.13_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B13/sapmachine-jre-15-ea.13_linux-x64_bin.tar.gz", + "checksum": "f669ad90c148a935980da41f0e5d7d920b111e350d117793e3c811c60023804c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.13_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B13/sapmachine-jre-15-ea.13_osx-x64_bin.tar.gz", + "checksum": "f4aeb32e4ec8101ec0bcd67d0a7670a0c4c95083727d415b1a460177a46eadf8" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.13_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B13/sapmachine-jre-15-ea.13_osx-x64_bin.dmg", + "checksum": "bc7845c255492548a08c1af6c93dbc391b246a4129f9f98faacae7fe2d62920d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.13_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B13/sapmachine-jre-15-ea.13_windows-x64_bin.zip", + "checksum": "b624b1625faa89af7ba8efe0de88490dda226ff6172d8fcc94cd48d796f93864" + }, + "msi": { + "name": "sapmachine-jre-15-ea.13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B13/sapmachine-jre-15-ea.13_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+12": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B12", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.12_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B12/sapmachine-jdk-15-ea.12_linux-ppc64_bin.tar.gz", + "checksum": "4fbb13ff392aa87a2904c3997ca49f20fdb1e24f834b27605c67bf8c80427852" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.12_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B12/sapmachine-jdk-15-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "4b8a5992c8807d94c43a7c1c3fd406a9a5956633df92c459e60f3b7cf462c401" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.12_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B12/sapmachine-jdk-15-ea.12_linux-x64_bin.tar.gz", + "checksum": "981743e3bbb3f57ca75e997c2a773490a1e7df2102308b71b996613d1869d37e" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.12_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B12/sapmachine-jdk-15-ea.12_osx-x64_bin.tar.gz", + "checksum": "c6124facc560fefab293d72c0dd623341641ebe560c27c9d97fda34314d139e2" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.12_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B12/sapmachine-jdk-15-ea.12_osx-x64_bin.dmg", + "checksum": "c3f334380c37f8e40838870aa2d0a2d62c18afc3a7ef14f5e34c7e5ee1843520" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.12_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B12/sapmachine-jdk-15-ea.12_windows-x64_bin.zip", + "checksum": "ec04fa14e6f349822d82ef5c4a0f6db7cd4a51a37123b6077aff1ce31b9356d7" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B12/sapmachine-jdk-15-ea.12_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.12_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B12/sapmachine-jre-15-ea.12_linux-ppc64_bin.tar.gz", + "checksum": "6dfef454d4209e73295c2d5797bff939cbe08ca16d6e19440ff368ff30519d13" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.12_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B12/sapmachine-jre-15-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "4c73fda546eac288e3632c15bb9378780c3f7e29082fc8ee914a09ed48f05256" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.12_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B12/sapmachine-jre-15-ea.12_linux-x64_bin.tar.gz", + "checksum": "3a5efdef4dc000687c03a41c59894080b203398b0ec775e4352820988451d291" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.12_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B12/sapmachine-jre-15-ea.12_osx-x64_bin.tar.gz" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.12_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B12/sapmachine-jre-15-ea.12_osx-x64_bin.dmg", + "checksum": "229f298cb2abbe9ba8c8474fba416ef8527f7e192917fe433cf7da555e856df8" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.12_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B12/sapmachine-jre-15-ea.12_windows-x64_bin.zip", + "checksum": "4ebde9785b23f32b8d637420b5b457499a6bdbba180cfe461d65ba44c4f44396" + }, + "msi": { + "name": "sapmachine-jre-15-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B12/sapmachine-jre-15-ea.12_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+11": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B11", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.11_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B11/sapmachine-jdk-15-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "536ca1b7357455c46555cba343b0ab98c399db29e4a6d0ef48771887be7694e2" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.11_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B11/sapmachine-jdk-15-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "460012cb42fedd4b9166464e91a76da68669febf394dc04a98537e8147ca785b" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.11_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B11/sapmachine-jdk-15-ea.11_linux-x64_bin.tar.gz", + "checksum": "943e364765a999b269ede2cd379c3d458379ecb9c0bd8c9eed5e55cd0b50b923" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.11_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B11/sapmachine-jdk-15-ea.11_osx-x64_bin.tar.gz", + "checksum": "d58a08bd7043ded7aec9933bb8dc0024f5d7cf76fb3df04d412db9ba9dca1ff6" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.11_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B11/sapmachine-jdk-15-ea.11_osx-x64_bin.dmg", + "checksum": "e5dbbacc388a70fe09da2a3f9599deb41f2e07d4a8e2ce7bbfa44ddeb54302a3" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.11_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B11/sapmachine-jdk-15-ea.11_windows-x64_bin.zip", + "checksum": "02d30f1e5c5cda8f35ee97f7bdee5a9df3b04495a4d9e02c675e3ddc7f829a16" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B11/sapmachine-jdk-15-ea.11_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.11_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B11/sapmachine-jre-15-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "16c0d9f0938670bc8cb49f31a252ecc766d4a55ac421e9e47e53f702e323c364" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.11_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B11/sapmachine-jre-15-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "440cb329eb216091216e1d4f4c960d2617237cf81b2696d417a3be8b1d9933ab" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.11_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B11/sapmachine-jre-15-ea.11_linux-x64_bin.tar.gz", + "checksum": "ec011a8df8326b95e1dbff7b0da3819e49427487b6c8a2b01f6d0013cf23d74a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.11_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B11/sapmachine-jre-15-ea.11_osx-x64_bin.tar.gz", + "checksum": "57b9ec03cc1321696da5448972e756f3fa32c1ab156b6d7774fb86d9a0316139" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.11_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B11/sapmachine-jre-15-ea.11_osx-x64_bin.dmg", + "checksum": "d6454dd7528996c93a0dbb18ab0e12e9d6cceab155143493381d95e48d3233ee" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.11_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B11/sapmachine-jre-15-ea.11_windows-x64_bin.zip", + "checksum": "11c131708c1b57eaf929177cccbe6df8476810e2851793e29b144667bd6d3c8d" + }, + "msi": { + "name": "sapmachine-jre-15-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B11/sapmachine-jre-15-ea.11_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.10_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B10/sapmachine-jdk-15-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "7070ed61767ea80ab633498a201e169c7feecd87667b60643a498da0d44a5d5b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "18405e277a18bda9fda1fd8219ba79399c8b8bcabcbcdf8d8256882bb2be1e9a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.10_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B10/sapmachine-jdk-15-ea.10_linux-x64_bin.tar.gz", + "checksum": "255012c54e984ff6a00f44a1d756e568ab46b4a2ba5caf93673cc3baaffac6cd" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.10_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B10/sapmachine-jdk-15-ea.10_osx-x64_bin.tar.gz", + "checksum": "503fe77b811c6d288fc09434788683ea9ef2832c49716bc4cb256ca7aa5c3421" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B10/sapmachine-jdk-15-ea.10_osx-x64_bin.dmg", + "checksum": "0ab1977d58924dc8b1c12e3cce08e62691ea4996edf15c0680c680890b0a649d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.10_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B10/sapmachine-jdk-15-ea.10_windows-x64_bin.zip", + "checksum": "a62cb50ed85dbcd1f108fd1ea24d22d39ca94f62af9a908403f2dbf7177d48cc" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B10/sapmachine-jdk-15-ea.10_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.10_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B10/sapmachine-jre-15-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "702053efff2392fee644d7d6ab361e98dbaa921b22eef26d2627e76dfbcdcfce" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.10_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B10/sapmachine-jre-15-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "d305af03aa9b964490e0723c431b382867efdf44ba953f45374ca785c6e1addd" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.10_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B10/sapmachine-jre-15-ea.10_linux-x64_bin.tar.gz", + "checksum": "e7ae006c1e50a921a78504f2e5fc961c2adfe108af8e02fa75dde4903dfca97f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.10_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B10/sapmachine-jre-15-ea.10_osx-x64_bin.tar.gz", + "checksum": "ea01e6ddb3fdae511f9e417e33d3da4778101111fc566318a5222dfda0ba961d" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B10/sapmachine-jre-15-ea.10_osx-x64_bin.dmg", + "checksum": "686580f6ccb8da766002fceca18cc9e3c8f9d1c37ac7c6a50b6d2c6eac0ca1d6" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.10_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B10/sapmachine-jre-15-ea.10_windows-x64_bin.zip", + "checksum": "8fdb4944ee8bf9e9349dd36cb61e137e20b541ea2bf13523d77a81c806814f39" + }, + "msi": { + "name": "sapmachine-jre-15-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B10/sapmachine-jre-15-ea.10_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B9/sapmachine-jdk-15-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "bacc49e46ac9156b6b08a1dc875a7fde80e5a38a419d24f9cbc54e083f02a084" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B9/sapmachine-jdk-15-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "8fe2ff279424fa7bd5496671886b212bdb2e9510c3af72020bc78e99bfa9036d" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B9/sapmachine-jdk-15-ea.9_linux-x64_bin.tar.gz", + "checksum": "433367446048c94624ef480401f76c64b6e16b8ead97b2b3f6b3f0a29d71dc13" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B9/sapmachine-jdk-15-ea.9_osx-x64_bin.tar.gz", + "checksum": "a380f55b0872c135ae2fd964851b2889c611f77b75e25ee98a8d9a539afd7ba4" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B9/sapmachine-jdk-15-ea.9_osx-x64_bin.dmg", + "checksum": "15c4e57f0418de7aa09ed619c2d2135b0ece472478933db2cc12d511d37b7d9c" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B9/sapmachine-jdk-15-ea.9_windows-x64_bin.zip", + "checksum": "9a8e108d98840a524200fc71ed1f77b516a1de331d75d88367abfca7dc2bd33a" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B9/sapmachine-jdk-15-ea.9_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B9/sapmachine-jre-15-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "a965ac064d85a75cb8a7cae14a5c6401d828d00b0d2105e1c07080ea69d594c0" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B9/sapmachine-jre-15-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "e4586b4c2c79e08e4f668afefe16a6f5cb4de3078e420f681388681a87fcab32" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B9/sapmachine-jre-15-ea.9_linux-x64_bin.tar.gz", + "checksum": "8683aa05dc41a673ad446c660cff22605bf59bddbee1465e34807d34cec20855" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B9/sapmachine-jre-15-ea.9_osx-x64_bin.tar.gz", + "checksum": "b8488ee2f71ad8c59d3852ae935ea825a840f41a98be075115c87334b1020316" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B9/sapmachine-jre-15-ea.9_osx-x64_bin.dmg", + "checksum": "c57958c55501a624f0978a2ebbcae567510d16eefb727190baf0cecb0c24b6e9" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B9/sapmachine-jre-15-ea.9_windows-x64_bin.zip", + "checksum": "1401804aaacc6e41ea88404b41372dea27f1bfc8cb179a2f265c438de0e4fa70" + }, + "msi": { + "name": "sapmachine-jre-15-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B9/sapmachine-jre-15-ea.9_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B8/sapmachine-jdk-15-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "b99da5b72b606c3512e30a8a2f05878d1451315f9a72385b2ebdd5c3abbd9d4f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B8/sapmachine-jdk-15-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "da7cb9631e6ba92efce60fd85b2fcdca51339575a42d96dac21f83dc82b8ab62" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B8/sapmachine-jdk-15-ea.8_linux-x64_bin.tar.gz", + "checksum": "e80e81aa87cf9521613f712ab4f7a8b69a6794eecacd6a157e555bfbcaced894" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B8/sapmachine-jdk-15-ea.8_osx-x64_bin.tar.gz", + "checksum": "a9aec9313bdefe81df78eee7cbb2e8ade74b86a2007ef02e5bcba087fb1a852c" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B8/sapmachine-jdk-15-ea.8_osx-x64_bin.dmg", + "checksum": "4faf006cdce3d59ceaaa9db32042f80098d716c5b6cf0d3fa72065781c9a636f" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B8/sapmachine-jre-15-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "9ba59dd6644b5197e51975e1937a7987fbddc7fa288a404c35c99239a4600acc" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B8/sapmachine-jre-15-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "8d802a85b56ae7a24869f009ec91457dc3b8f4d6bfa4e75e0d2b8cb4ca68c475" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B8/sapmachine-jre-15-ea.8_linux-x64_bin.tar.gz", + "checksum": "90105a52123cd7c5afe58894fe213f8497c4e3dd3a2ea3dfff4a9c419b6c53fa" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B8/sapmachine-jre-15-ea.8_osx-x64_bin.tar.gz", + "checksum": "cd1f67028dfe7c5a346a4b57b93fdcda63128190d4dccea3477e9e932c560b2f" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B8/sapmachine-jre-15-ea.8_osx-x64_bin.dmg", + "checksum": "5bdfe5a64f0f3ebd32f1c83a424b1418be42ff47ab0a7c5f2027921024e85204" + } + } + } + } + }, + "sapmachine-15+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B7/sapmachine-jdk-15-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "96273e8e7acf768ae0c1c87ade5a0a4787abb37c298e8034abb9cdde840ad2da" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B7/sapmachine-jdk-15-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "ecc6fd5639a505d6f2b53f594555b462911d3afe496f9a5d33561e59c3ec05dd" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B7/sapmachine-jdk-15-ea.7_linux-x64_bin.tar.gz", + "checksum": "e0adbce7f485882a4512b5cf913ed308fb3a54e586b48c0c4f58f67c0ca09a71" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B7/sapmachine-jdk-15-ea.7_osx-x64_bin.tar.gz", + "checksum": "ae5a5e4d377c9eb9671850eac8904f286f455e74dde0771d88aeaefcfbed9f2c" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B7/sapmachine-jdk-15-ea.7_osx-x64_bin.dmg", + "checksum": "c1a5025c564b41d168d7cf0061310bceb7a2bccaa5a8e4661fcbf681586b411e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B7/sapmachine-jdk-15-ea.7_windows-x64_bin.zip", + "checksum": "779526b236031e97b7c9d1f513da65a5291ee4bafbb7e959ddeaa0d35b47288d" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B7/sapmachine-jdk-15-ea.7_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B7/sapmachine-jre-15-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "77699d395ae2829ee643bfc2a8f148e37c1da31b5daf804b98c0e3cb9cdd5981" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B7/sapmachine-jre-15-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "92ee9b4b9d0822b01a41ba93d50c2ba4b8e4fca29d36bfeca5c48e845ee11a4c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B7/sapmachine-jre-15-ea.7_linux-x64_bin.tar.gz", + "checksum": "b2bdc860ddf842354f67a15bcc03c763f5811a5c4b1bea3d86d1b39e694da1e8" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B7/sapmachine-jre-15-ea.7_osx-x64_bin.tar.gz", + "checksum": "dfc5a760277f090fd26f6bd8deb2f2328f0e381488eb14caca06d434fbdafd6c" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B7/sapmachine-jre-15-ea.7_osx-x64_bin.dmg", + "checksum": "1321b0da3bfc9bb0fdd8a63ef314e829240de582e7d467a833f00d16440aead5" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B7/sapmachine-jre-15-ea.7_windows-x64_bin.zip", + "checksum": "60ecd70b523da5e6edc81f51dfe5779f1d4461b2b64d2e00932dcfa1363c4fc2" + }, + "msi": { + "name": "sapmachine-jre-15-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B7/sapmachine-jre-15-ea.7_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B6/sapmachine-jdk-15-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "d5db41aea5e39e048d7b9f74e6ca2c8b4398b52c085aa70f4f1b8e8cd32558eb" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B6/sapmachine-jdk-15-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "1bdf96859ece3ec5052cb2b45826088534ac7c65453bb482f645c785f4a45e4e" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B6/sapmachine-jdk-15-ea.6_linux-x64_bin.tar.gz", + "checksum": "9c010ca9baecd984302557df479467a3ee75a1cc1035d8a87d72a4d58f016901" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B6/sapmachine-jdk-15-ea.6_osx-x64_bin.tar.gz", + "checksum": "11d08ca354f6a63bcbe3542af26a33902d093cbcd02e1c60b1ed26d30841f763" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B6/sapmachine-jdk-15-ea.6_osx-x64_bin.dmg", + "checksum": "dfe5d5a76e3b5511f41b122413f01baf1f2e641dd6932200de252af0c7ceaf83" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B6/sapmachine-jdk-15-ea.6_windows-x64_bin.zip", + "checksum": "72d95de44b85872bef05ff4c902ff6f238a4566b210a6e0118936bc20d337345" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B6/sapmachine-jdk-15-ea.6_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B6/sapmachine-jre-15-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "762133e095e38ae39a7f541ef3d1d791958fef81d20c5e55b74c8614f883525e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B6/sapmachine-jre-15-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "ee274d9c9955063c035a81799282837cb5b7e0555bcd840ad2d94a03c391b135" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B6/sapmachine-jre-15-ea.6_linux-x64_bin.tar.gz", + "checksum": "446601aaa0a9ada8c81d57d4d11471ab0b0c2bf3128e1cf75b1bac57c1e8fce0" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B6/sapmachine-jre-15-ea.6_osx-x64_bin.tar.gz", + "checksum": "51ab1aade130940f96d3a2e3671a34a8e13a23417b9b2f614537980300c8b276" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B6/sapmachine-jre-15-ea.6_osx-x64_bin.dmg", + "checksum": "6f12cb1d86cf9dd786daa38bc272defc52a61967b3cb1d1757f3fd26d0cd2bc2" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B6/sapmachine-jre-15-ea.6_windows-x64_bin.zip", + "checksum": "d111e149a989e46947b090c6f0b2ca38bbe02be38ac65d0bb22f625b1fc73380" + }, + "msi": { + "name": "sapmachine-jre-15-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B6/sapmachine-jre-15-ea.6_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B5/sapmachine-jdk-15-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "639eb2b44c767dbe9d698f47a615aa8a8e557a1f6db19b6cbba62f3185c47733" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B5/sapmachine-jdk-15-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "ef21217e6d72321d13035c973598bdb0cb3da55781ada6d3929848926042bac6" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B5/sapmachine-jdk-15-ea.5_linux-x64_bin.tar.gz", + "checksum": "296031d9b7791c9f98bbb0aff4f441d9dc6527cffc831a70ce5028c4e53a6f98" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B5/sapmachine-jdk-15-ea.5_osx-x64_bin.tar.gz", + "checksum": "e7982302e75423a16b071c8285fbdd3df4ba1eb3cf7fffa38e209cec70e1a92b" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B5/sapmachine-jdk-15-ea.5_osx-x64_bin.dmg", + "checksum": "b701df4f8e185c7f4715438c736074e8af283271c7c2e72ca3a333d29d41a226" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B5/sapmachine-jdk-15-ea.5_windows-x64_bin.zip", + "checksum": "7b7a0d3e02743250fc37f38eba048fd954f5b94ced097236c6f0beb86984b233" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B5/sapmachine-jdk-15-ea.5_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B5/sapmachine-jre-15-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "611870fcc0c3567f8f586199da723946996e579863d383e0a8ae89f160583dd1" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B5/sapmachine-jre-15-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "4e6a1977c24499a36c600c9eb11e44c39f09b25f6478324edf9d089cf4e6a3f5" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B5/sapmachine-jre-15-ea.5_linux-x64_bin.tar.gz", + "checksum": "ac0bfe5fb13753d206248748063158abaa5eb763c807e09efd0cd008648833b6" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B5/sapmachine-jre-15-ea.5_osx-x64_bin.tar.gz", + "checksum": "c725e1225384a2ee6d8637fd1eeedc0dadb5459acf200650c40c34f5f90cc579" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B5/sapmachine-jre-15-ea.5_osx-x64_bin.dmg", + "checksum": "cb1dd5c32997e15dbd66bc47eccfe2e996f82c61987de82c05b982e1a54a8c24" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B5/sapmachine-jre-15-ea.5_windows-x64_bin.zip", + "checksum": "54a0cf79c8afd701b3c3a84b7d3e75e099f95fdd469aa1bf15172323b8739aab" + }, + "msi": { + "name": "sapmachine-jre-15-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B5/sapmachine-jre-15-ea.5_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B4/sapmachine-jdk-15-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "8544a1e0f2a22433d9ab7caba4c5ec3da189a56042afdfc43710a0a363f7b0db" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B4/sapmachine-jdk-15-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "08ba3171ed11af5e5f94f912023528ef81bf3e33d6b4683a93ff535bc007557e" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B4/sapmachine-jdk-15-ea.4_linux-x64_bin.tar.gz", + "checksum": "ce897db6d3efeb09c97b2354642202be4eda3c9c76747c64310176d85c1436a0" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B4/sapmachine-jdk-15-ea.4_osx-x64_bin.tar.gz", + "checksum": "113f8a40a3cdba6be88fc6908b0ecb4f59590396ecb9a3037d1758bc46b7df42" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B4/sapmachine-jdk-15-ea.4_osx-x64_bin.dmg", + "checksum": "25322b344a68e119dd9af02087e974f8d69eba017a7e2839eb40ae3a1ec8be60" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B4/sapmachine-jdk-15-ea.4_windows-x64_bin.zip", + "checksum": "771f2798a95fba7a17c94c44574228ac9e5909dc02b2ef1983751d41f9a3b333" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B4/sapmachine-jdk-15-ea.4_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B4/sapmachine-jre-15-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "4af4aeaf230681016d0a6cda7a061be886434ef7974824c1883b8b22f219bd1d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B4/sapmachine-jre-15-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "c1827eec4c48a02538f63b0f28a179a4b620aaeb70c0b6fa38c13b12c0a23737" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B4/sapmachine-jre-15-ea.4_linux-x64_bin.tar.gz", + "checksum": "713ad5abd9cddafe77fd9ddbbd1334c73fc14a9f4901d828fa971e158fb1ec55" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B4/sapmachine-jre-15-ea.4_osx-x64_bin.tar.gz", + "checksum": "e506d94dcb2470517be13d7909c8787c2c7255b55f0627fd736886ce010a1161" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B4/sapmachine-jre-15-ea.4_osx-x64_bin.dmg", + "checksum": "29eab70d66e720b9b0b33a9bfabe0bd9cbbecff753358ea167cb94cffce0a516" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B4/sapmachine-jre-15-ea.4_windows-x64_bin.zip", + "checksum": "ae806016d0f3a5efc31e48988c30d5a270436ae8a89c4b0362661ab422c314ec" + }, + "msi": { + "name": "sapmachine-jre-15-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B4/sapmachine-jre-15-ea.4_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B3/sapmachine-jdk-15-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "bda7a64633d5bd68aa414d557a320cf93965d7d840e3101fae799971c161a1b2" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B3/sapmachine-jdk-15-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "5d5269bc87e75a5b04f66b0dc2c9f21d91c7b9918cf1d3df48bd14adaca6dd98" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B3/sapmachine-jdk-15-ea.3_linux-x64_bin.tar.gz", + "checksum": "fb7874ca605618827ba403bc5e236cd2b15c62dd3659ba62ba80a80194e74471" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B3/sapmachine-jdk-15-ea.3_osx-x64_bin.tar.gz", + "checksum": "9b63c6bc896e7179da030946bb81c06dd1e67d65a1f80699f2afb20a47338c0e" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B3/sapmachine-jdk-15-ea.3_osx-x64_bin.dmg", + "checksum": "c55efc42b7cc94a2788c83db580ecde597f2eb437e69bf1551b39e7813b1c057" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B3/sapmachine-jdk-15-ea.3_windows-x64_bin.zip", + "checksum": "c9f22ddead25b4ba00ed77b12270d5bdc3030f1395b355f9575d341662c2e433" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B3/sapmachine-jdk-15-ea.3_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B3/sapmachine-jre-15-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "4627c9ec4feaf73089d398b1480fcd0cb961403aa54a716d3f74716d588b0bbd" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B3/sapmachine-jre-15-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "9d62c8bfb4e214d29d1c1cc79c1762527659a63181a3692becaee3d283e7fd68" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B3/sapmachine-jre-15-ea.3_linux-x64_bin.tar.gz", + "checksum": "06503ea11df82a6d94a14c3460d78d9a7186287cf57c52d9bd15d94c1d831739" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B3/sapmachine-jre-15-ea.3_osx-x64_bin.tar.gz", + "checksum": "3401e792286b2c29df81c354970223b5dbaf725701a1aeb170df4b87d1d81b3b" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B3/sapmachine-jre-15-ea.3_osx-x64_bin.dmg", + "checksum": "97ae5e764de2b112c76c9be1e121117575731a7a5798810247dd67a7d1a3395d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B3/sapmachine-jre-15-ea.3_windows-x64_bin.zip", + "checksum": "b10e7cab9094c74d7672d95e821727db72a4a81b14acf2e3ae18ff21f4144d44" + }, + "msi": { + "name": "sapmachine-jre-15-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B3/sapmachine-jre-15-ea.3_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B2/sapmachine-jdk-15-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "64f752914652c7a6c79879c6b9a8cc30b5d605717b9c4190639a1b101073b9e8" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B2/sapmachine-jdk-15-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "ea0bdcd81f071da8962adc13d1dbd357dbd33a5846ed83ca02b0a109536ccac3" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B2/sapmachine-jdk-15-ea.2_linux-x64_bin.tar.gz", + "checksum": "e98c28a7a884485cc8bc8ff84681adfab47bdde2f43dfac561d79d01bf25fd38" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B2/sapmachine-jdk-15-ea.2_osx-x64_bin.tar.gz", + "checksum": "dc952e43dcc4e31a11f1fd43aea9dcfb4ce56d3ec608edd476ea75b61d950698" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B2/sapmachine-jdk-15-ea.2_osx-x64_bin.dmg", + "checksum": "98a0508623f3b228aa77df49bc9a1b9847cae77dc7ff8ba0fbc683baeac10fca" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B2/sapmachine-jdk-15-ea.2_windows-x64_bin.zip", + "checksum": "9a22213c401cd63b9dbd56f9e9deadb02a82c289b76dc7a5def06d8a893e62ce" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B2/sapmachine-jdk-15-ea.2_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B2/sapmachine-jre-15-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "b5ea38661cf245e3921c6ca5cdc6fda32fc883d063269d962c0c137e2ad13714" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B2/sapmachine-jre-15-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "ff007489cdc8fd4af97934415a1cbe66e24dd98c8a348e3a576e4b8f85f42cb8" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B2/sapmachine-jre-15-ea.2_linux-x64_bin.tar.gz", + "checksum": "a5a32f060567fb7a895c4de71e150ae66eba3d64e16a913b90f071d7b30eb5ed" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B2/sapmachine-jre-15-ea.2_osx-x64_bin.tar.gz", + "checksum": "89c145adab95ffead7bd5e6febe66b03d36b4411a4225149f0981fb1f351a18c" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B2/sapmachine-jre-15-ea.2_osx-x64_bin.dmg", + "checksum": "0ba6c87ff06ce366e8c94223ed04911708fc65f0d4f6a578d0b89b8e4814958a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B2/sapmachine-jre-15-ea.2_windows-x64_bin.zip", + "checksum": "40b6cd0dae30ef07f5b0a1cab9b7e5ebef6f804d27b72dc108ab2b276f2532bb" + }, + "msi": { + "name": "sapmachine-jre-15-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B2/sapmachine-jre-15-ea.2_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-15+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-15%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B1/sapmachine-jdk-15-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "4ac29bece75f21fa9f82c3010a8d52dc4e3b5275a6589e3b55c2cdc2d09ada3b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B1/sapmachine-jdk-15-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "608ab9da33bd24ace851edc1b1abdc6f062cb0840b2f07faab1a4f74fd5cd668" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B1/sapmachine-jdk-15-ea.1_linux-x64_bin.tar.gz", + "checksum": "43fb834ed1bff6f10abe4c43b5fdc6c7e86176a5b21e6933459741877bdfd3e7" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-15-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B1/sapmachine-jdk-15-ea.1_osx-x64_bin.tar.gz", + "checksum": "72f320b3dffee8073ef788ed144f83e63ef67cc02231525756ae6b53f9ca3cd3" + }, + "dmg": { + "name": "sapmachine-jdk-15-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B1/sapmachine-jdk-15-ea.1_osx-x64_bin.dmg", + "checksum": "4429c1de61c2027f26458ac5eac824648f7991836382144517733b7de63b8d6e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-15-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B1/sapmachine-jdk-15-ea.1_windows-x64_bin.zip", + "checksum": "81a56392f79f3cea0be6bf91485dec840e9a482dac6daa0946fc1775e46aa4e7" + }, + "msi": { + "name": "sapmachine-jdk-15-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B1/sapmachine-jdk-15-ea.1_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B1/sapmachine-jre-15-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "e17224183b66d01e3560cba3379ca3953c3fc9ac05998b6aaf7ce7c291a20315" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B1/sapmachine-jre-15-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "183075ee000e6c7c6e81ebf90efbf4b23de0f3f24a5b5a3a20a178c4eb73a02a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B1/sapmachine-jre-15-ea.1_linux-x64_bin.tar.gz", + "checksum": "48f2d37ac2fcee0f08a27c13a8fd6421d4723f358276d1727d15b497be5f4237" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-15-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B1/sapmachine-jre-15-ea.1_osx-x64_bin.tar.gz", + "checksum": "81614aacc3029fc295bdd4911629c19eb54bee93d266477dc3d1877072816925" + }, + "dmg": { + "name": "sapmachine-jre-15-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B1/sapmachine-jre-15-ea.1_osx-x64_bin.dmg", + "checksum": "624714938a9d2a6d08b89decd6472221313d6ce79d592c0316b5e7c4382fb97b" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-15-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B1/sapmachine-jre-15-ea.1_windows-x64_bin.zip", + "checksum": "6093e3393557c4405ed2c084b630488ddaaaae7328750291b7987f8e53361b94" + }, + "msi": { + "name": "sapmachine-jre-15-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-15%2B1/sapmachine-jre-15-ea.1_windows-x64_bin.msi" + } + } + } + } + } + } + }, + "lts": "false" + }, + "14": { + "updates": { + "14.0.2": { + "sapmachine-14.0.2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14.0.2", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.2_linux-ppc64_bin.tar.gz", + "checksum": "7bdda648051d97f8d35172f4ab9cb97ad79089047a37be4a0d3c113d9aaccbcc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2/sapmachine-jdk-14.0.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "3640783191855f18f08cc6e66a85a6f7d61c44c23cbdebd6a363b5d1363d0375", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2/sapmachine-jdk-14.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.2_linux-x64_bin.tar.gz", + "checksum": "59d7b4b9866a3f9108937161ae9d9bc3885d4bab3f2ffac334c2170a258b7258", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2/sapmachine-jdk-14.0.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-14.0.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2/sapmachine-jdk-14.0.2_osx-x64_bin.dmg", + "checksum": "9c11682ba91c4285f8ca56682114a46c2e0bf723b65b81060b6f8403d681ff1f" + }, + "tar.gz": { + "name": "sapmachine-jdk-14.0.2_osx-x64_bin.tar.gz", + "checksum": "cdbd70ac46b65d9755ec130dee34466d4256b8830476dfd191b7c35ef49643db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2/sapmachine-jdk-14.0.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-14.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2/sapmachine-jdk-14.0.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-14.0.2_windows-x64_bin.zip", + "checksum": "8bc286bdce3a074a4707ea6e5c7bc3b1b1c2d083813129df44f6239b00f22fad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2/sapmachine-jdk-14.0.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.2_linux-ppc64_bin.tar.gz", + "checksum": "c001b6de60ed70281b4ef10a7c08ce1ef30d21e4414141911ed2513e9b729e63", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2/sapmachine-jre-14.0.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "3ba30dc3b682e9474051d9d88b6ebcbc4f1cd46f83e94bf7cb4f6a1e39f5385e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2/sapmachine-jre-14.0.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.2_linux-x64_bin.tar.gz", + "checksum": "06bcfeca40775fb062a4fe23e475ab8eae8c7537f9a702df5ca28009a80a5921", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2/sapmachine-jre-14.0.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-14.0.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2/sapmachine-jre-14.0.2_osx-x64_bin.dmg", + "checksum": "83539946edc09895c149d1e9a0a766a2a0e86739aad46a265b1592de63fb820c" + }, + "tar.gz": { + "name": "sapmachine-jre-14.0.2_osx-x64_bin.tar.gz", + "checksum": "4d68166592e3391937645673bc2c22534e01c4cda035c3f85310cd0e1450bd59", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2/sapmachine-jre-14.0.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-14.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2/sapmachine-jre-14.0.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-14.0.2_windows-x64_bin.zip", + "checksum": "d67a65a8e475de6b6ac020c4e65869a513df67c4a2d3e1e2f4a4c9728e8f6df6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2/sapmachine-jre-14.0.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-14.0.2+12": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14.0.2%2B12", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.2-ea.12_linux-ppc64_bin.tar.gz", + "checksum": "a93b38a51720eb451d960d3686806d689688874b659e20571d7d222b88faa7e1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B12/sapmachine-jdk-14.0.2-ea.12_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.2-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "a2f4a6080771a3c4d8d5927df25ef3988574f7dec13d7cf150aca89720020b15", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B12/sapmachine-jdk-14.0.2-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.2-ea.12_linux-x64_bin.tar.gz", + "checksum": "52097c88820be4c328d3a5f901c951b56bae03d844118a15c024879b08c9b4e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B12/sapmachine-jdk-14.0.2-ea.12_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-14.0.2-ea.12_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B12/sapmachine-jdk-14.0.2-ea.12_osx-x64_bin.dmg", + "checksum": "4ee49ee684a2479e7bd5ae7b18184585d4a380d0a68db98e0507af2b2750dee2" + }, + "tar.gz": { + "name": "sapmachine-jdk-14.0.2-ea.12_osx-x64_bin.tar.gz", + "checksum": "4211c68217cfe20567860d5dec5d8d7dd8381360a586da01673cf11ae70eabc1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B12/sapmachine-jdk-14.0.2-ea.12_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-14.0.2-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B12/sapmachine-jdk-14.0.2-ea.12_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-14.0.2-ea.12_windows-x64_bin.zip", + "checksum": "55dc3acd16d5a9ba34abf1c1bf87b063523f3cde705b97cf22853942ea0bcf8e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B12/sapmachine-jdk-14.0.2-ea.12_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.2-ea.12_linux-ppc64_bin.tar.gz", + "checksum": "a28d82a3234eeae09f07e9a3b26b2ae771a6856cb4a84d917325a868a89cd9e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B12/sapmachine-jre-14.0.2-ea.12_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14.0.2-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "5361669a7436574b7dd772471051f0fcc8762dc13c13860a425d940f5d987a1e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B12/sapmachine-jre-14.0.2-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.2-ea.12_linux-x64_bin.tar.gz", + "checksum": "1e12cd6c50de6e785cb73004aeede2c5251d3f6bf781d00500999dd7d27617fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B12/sapmachine-jre-14.0.2-ea.12_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-14.0.2-ea.12_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B12/sapmachine-jre-14.0.2-ea.12_osx-x64_bin.dmg", + "checksum": "4b6472b00a69bf4cf48a66b601165e24ab241dbad8757599a9d6940352023e91" + }, + "tar.gz": { + "name": "sapmachine-jre-14.0.2-ea.12_osx-x64_bin.tar.gz", + "checksum": "db7541891a0be957b8d962d7866124b397a6b8a80fae8f164d894eca1d0a98c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B12/sapmachine-jre-14.0.2-ea.12_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-14.0.2-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B12/sapmachine-jre-14.0.2-ea.12_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-14.0.2-ea.12_windows-x64_bin.zip", + "checksum": "8db6d13122ff2ad73856bc554898349d66a0ac19b91b5964eeea794a3c406c7f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B12/sapmachine-jre-14.0.2-ea.12_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-14.0.2+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14.0.2%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.2-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B1/sapmachine-jdk-14.0.2-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "6173f33d018889d3deabfe21c6a5d46e5f58f191fd443f0c1fd0423e2d20da17" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B1/sapmachine-jdk-14.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "3c81f2449fd0ded0874344e46fa29958210e12922ac73ef1769983828e875634" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.2-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B1/sapmachine-jdk-14.0.2-ea.1_linux-x64_bin.tar.gz", + "checksum": "715775125968224c90769b4952630cbb6653d58f2476e6a389115d0e40998a39" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.2-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B1/sapmachine-jdk-14.0.2-ea.1_osx-x64_bin.tar.gz", + "checksum": "7ad54045c699b6f208dfd6cf4134e16cfd8d3c5bc153258c10911257960444d4" + }, + "dmg": { + "name": "sapmachine-jdk-14.0.2-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B1/sapmachine-jdk-14.0.2-ea.1_osx-x64_bin.dmg", + "checksum": "35aa2dc4b022c3695fee68e219e85214efab3aa5a12c4474fdfbb226d0107d9a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14.0.2-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B1/sapmachine-jdk-14.0.2-ea.1_windows-x64_bin.zip", + "checksum": "4a6ad0644d5403456f927e70bd6ce14cf8aa09aafc35e0cef59d776a78e69d39" + }, + "msi": { + "name": "sapmachine-jdk-14.0.2-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B1/sapmachine-jdk-14.0.2-ea.1_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.2-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B1/sapmachine-jre-14.0.2-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "0567f822bf4b28ef0b667d69fcde7f0bd1feb525c0f9936efdc9cddf90148922" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B1/sapmachine-jre-14.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "b985378d499d0165c884254c8e2448ef910ecefd30f68143540e3874957aa273" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.2-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B1/sapmachine-jre-14.0.2-ea.1_linux-x64_bin.tar.gz", + "checksum": "7dc4c32df1a6b1b9a741eff04e67c3259f06fc7d5ca198375acb041b627aee90" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.2-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B1/sapmachine-jre-14.0.2-ea.1_osx-x64_bin.tar.gz", + "checksum": "7dc16e1aaa00ff450bc2a3c38b3372d14638b49964d85753eec58b18815e9518" + }, + "dmg": { + "name": "sapmachine-jre-14.0.2-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B1/sapmachine-jre-14.0.2-ea.1_osx-x64_bin.dmg", + "checksum": "834a1766e8feeed53f676f6af40a4c4d07eae57eb025ce646903ca320457868e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14.0.2-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B1/sapmachine-jre-14.0.2-ea.1_windows-x64_bin.zip", + "checksum": "eb4b48a620c00e74776d6f79476ee684e5b3931faaee7f50884190e571f035ae" + }, + "msi": { + "name": "sapmachine-jre-14.0.2-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.2%2B1/sapmachine-jre-14.0.2-ea.1_windows-x64_bin.msi" + } + } + } + } + } + }, + "14.0.1": { + "sapmachine-14.0.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14.0.1", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1/sapmachine-jdk-14.0.1_linux-ppc64_bin.tar.gz", + "checksum": "e722d24f67da4d929619db887fd83841a3d588fc110a1b345ecb340162e5a546" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1/sapmachine-jdk-14.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "925412701507b5d57db687363db886a65c11c1bff6fde9634af4ae9b60622fde" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1/sapmachine-jdk-14.0.1_linux-x64_bin.tar.gz", + "checksum": "08ce3075fb56156c84c0958415d5da277e1fa4f128c9829228126b73ab76e092" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1/sapmachine-jdk-14.0.1_osx-x64_bin.tar.gz", + "checksum": "572f42aa097c41663d80061c8a6a0cca81f1964b2fd16ca2823f81c7182713d4" + }, + "dmg": { + "name": "sapmachine-jdk-14.0.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1/sapmachine-jdk-14.0.1_osx-x64_bin.dmg", + "checksum": "70627d74dafb9d21a766365e3184b872a160ec17099c5fbc41926c6e9ccf4c9f" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14.0.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1/sapmachine-jdk-14.0.1_windows-x64_bin.zip", + "checksum": "56f5bb29f8ab982fc78a159a651fe4867cedfb49d87ae5c594ac52ed8f8b79e4" + }, + "msi": { + "name": "sapmachine-jdk-14.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1/sapmachine-jdk-14.0.1_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1/sapmachine-jre-14.0.1_linux-ppc64_bin.tar.gz", + "checksum": "64b1a49a017dd3f73b4fc4aa9029d2ffbf10415f85301ec631d80a96977b74c2" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14.0.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1/sapmachine-jre-14.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "58c4cce03110f54a7ffdfff7eff16468297baabd86c3d27cd78a660f83962ec6" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1/sapmachine-jre-14.0.1_linux-x64_bin.tar.gz", + "checksum": "7d96247d1268f4ec7eca6e87851f3010f6d4d3cc905e1c046c918deea79b3ad5" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1/sapmachine-jre-14.0.1_osx-x64_bin.tar.gz", + "checksum": "8515e902f8cf1ab512e30873a760c044fa9d8ad276b7c717e0c36eb70ea8fc92" + }, + "dmg": { + "name": "sapmachine-jre-14.0.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1/sapmachine-jre-14.0.1_osx-x64_bin.dmg", + "checksum": "5a113f2cf9fc9e47aee4511544da7fa9d8658f39a95065d51ba3a740cd79b5f8" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14.0.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1/sapmachine-jre-14.0.1_windows-x64_bin.zip", + "checksum": "02e81152f053158002033865e4f2e14ed88e54b9ff8aa2bbcc6623bc30eded39" + }, + "msi": { + "name": "sapmachine-jre-14.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1/sapmachine-jre-14.0.1_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-14.0.1+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14.0.1%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.1-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B7/sapmachine-jdk-14.0.1-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "b10fb1e089bea77f470a65d2094dc3c37d64ac2e1677ba82266da37f21cfe9bf" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.1-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B7/sapmachine-jdk-14.0.1-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "fe1854e448b1aa45642879406ae986158763050ddeb43830595fdc060b4d13d8" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.1-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B7/sapmachine-jdk-14.0.1-ea.7_linux-x64_bin.tar.gz", + "checksum": "f91cfd366fb20d8ac9e2409560975a8c99bd0ac053ef5d8d790ae8052acf23f3" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.1-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B7/sapmachine-jdk-14.0.1-ea.7_osx-x64_bin.tar.gz", + "checksum": "9c56eb25c198613bd57c3e60efbced4e5508476f3b9074f3ea15657bcfd8b5b8" + }, + "dmg": { + "name": "sapmachine-jdk-14.0.1-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B7/sapmachine-jdk-14.0.1-ea.7_osx-x64_bin.dmg", + "checksum": "4001a28d6956a83bd23151a7bd1f55185a3219d9db488bb3575770d46308c529" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14.0.1-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B7/sapmachine-jdk-14.0.1-ea.7_windows-x64_bin.zip", + "checksum": "433e80711a1c5c7b80cffa99bcbe7524629894e0a914e0f19aa65a4059c50004" + }, + "msi": { + "name": "sapmachine-jdk-14.0.1-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B7/sapmachine-jdk-14.0.1-ea.7_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.1-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B7/sapmachine-jre-14.0.1-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "0f9e485a2d82edf702cc8a0a4b4de63577ffa70cb34c18be27ceb35348b13009" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14.0.1-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B7/sapmachine-jre-14.0.1-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "21ecc74560a515178116ccc45f8d366f4ac0e32ca77c19f12bf19b2ed4136ae0" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.1-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B7/sapmachine-jre-14.0.1-ea.7_linux-x64_bin.tar.gz", + "checksum": "da22079702a7c1b37c79030f9c8799085da38bd64ec18a62cc7924a3666cc952" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.1-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B7/sapmachine-jre-14.0.1-ea.7_osx-x64_bin.tar.gz", + "checksum": "72f5c9b7a3b64ac9ebfdeed981c52ff6e9190e09db1e5f4ea7b1cb73265081ab" + }, + "dmg": { + "name": "sapmachine-jre-14.0.1-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B7/sapmachine-jre-14.0.1-ea.7_osx-x64_bin.dmg", + "checksum": "556a10a0769867468e7c400e6f133d2b4e4238e84ffef078757e996d2edf136e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14.0.1-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B7/sapmachine-jre-14.0.1-ea.7_windows-x64_bin.zip", + "checksum": "51b1bde3f9cd144f09515385569db4b3c4eec33ea44b7b20aa517e811b50cd1a" + }, + "msi": { + "name": "sapmachine-jre-14.0.1-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B7/sapmachine-jre-14.0.1-ea.7_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-14.0.1+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14.0.1%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.1-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B1/sapmachine-jdk-14.0.1-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "15a212739b1980d1cc8f27189fc5f1c240f6e6a4a6aa00aacf9e2646ff535ea0" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.1-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B1/sapmachine-jdk-14.0.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "b18664a781625d4ff6365ed766227d6be81ae8c9c4bf5f0f19559dd65254f421" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.1-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B1/sapmachine-jdk-14.0.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "1ef2562bb3f4075a80b9979c563086b9fa10d85e0f99f04ede1900aed35816ad" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14.0.1-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B1/sapmachine-jdk-14.0.1-ea.1_osx-x64_bin.tar.gz", + "checksum": "7913e638644fbfbf377e4d244af595feb86cdf2a4ba869d2ab4455e91e003eba" + }, + "dmg": { + "name": "sapmachine-jdk-14.0.1-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B1/sapmachine-jdk-14.0.1-ea.1_osx-x64_bin.dmg", + "checksum": "60ab04196cb7693cac18ef61f1ad7432679794092744b6ba68a345cf2b9a0d4f" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14.0.1-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B1/sapmachine-jdk-14.0.1-ea.1_windows-x64_bin.zip", + "checksum": "367275478be27b42c49eebb145809054d23d5e8d246f13d83f3cc59c9c33dd41" + }, + "msi": { + "name": "sapmachine-jdk-14.0.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B1/sapmachine-jdk-14.0.1-ea.1_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.1-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B1/sapmachine-jre-14.0.1-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "a80be9827a4785f97378345a2e37980b1ca26d30bb525660489411fb8979ed29" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14.0.1-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B1/sapmachine-jre-14.0.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "0271f75a521262bcf537bda8eaec69d4a0bfad6753ad28cc53763cf63c9dd74a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.1-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B1/sapmachine-jre-14.0.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "5627609ceb829f12904abd8ddc7f9a5cf515b230385f410b9e57db07dc34e170" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14.0.1-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B1/sapmachine-jre-14.0.1-ea.1_osx-x64_bin.tar.gz", + "checksum": "681ff1588aec70cb355aea3e4fe9a52ddbe9a32d2fc386afaafb1a50355a96be" + }, + "dmg": { + "name": "sapmachine-jre-14.0.1-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B1/sapmachine-jre-14.0.1-ea.1_osx-x64_bin.dmg", + "checksum": "af4cad8e3bd00cc5b49af64458610d02d59f11fd8c3bf402b116e8aa254882ce" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14.0.1-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B1/sapmachine-jre-14.0.1-ea.1_windows-x64_bin.zip", + "checksum": "dd266973c34aa32667cb4d9018b6566b98a4e20a63b0ef9041c0fa4e8c83eb6f" + }, + "msi": { + "name": "sapmachine-jre-14.0.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14.0.1%2B1/sapmachine-jre-14.0.1-ea.1_windows-x64_bin.msi" + } + } + } + } + } + }, + "14": { + "sapmachine-14": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14/sapmachine-jdk-14_linux-ppc64_bin.tar.gz", + "checksum": "e87f074c62f54d40237de2b397b92b7420809b222f916e5f3176865b393cad6b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14/sapmachine-jdk-14_linux-ppc64le_bin.tar.gz", + "checksum": "744914285ea9edff438316980b87d9dfeb9d70eff02b35634296827aa511f2a4" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14/sapmachine-jdk-14_linux-x64_bin.tar.gz", + "checksum": "0fc03f9ed9c56672e77192d2ac9100612cb972103ba2e4338f2a136a3458bbf0" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14/sapmachine-jdk-14_osx-x64_bin.tar.gz", + "checksum": "7567b612062874be2a01b8ad821db4a3370eab8811189ac117eb946a0fcdee6e" + }, + "dmg": { + "name": "sapmachine-jdk-14_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14/sapmachine-jdk-14_osx-x64_bin.dmg", + "checksum": "28ae77dd93bc99733ef16cc99d7e2dc5b8c0a3c5e38507a2235861c3882b7460" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14/sapmachine-jdk-14_windows-x64_bin.zip", + "checksum": "a9ae45e0869019e0247cf67dbd6bd26a53c9be7bbe38abdbeeba219cf0d8c54e" + }, + "msi": { + "name": "sapmachine-jdk-14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14/sapmachine-jdk-14_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14/sapmachine-jre-14_linux-ppc64_bin.tar.gz", + "checksum": "48f26e55b3d4c119a7f55aa090d24b47a0639631a26e34b0e3ac1a578f7ae109" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14/sapmachine-jre-14_linux-ppc64le_bin.tar.gz", + "checksum": "99a3effdceed4c7a0e399a03be1ae3a8fefaf97d9be6d65ccbdc19714b5c2af1" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14/sapmachine-jre-14_linux-x64_bin.tar.gz", + "checksum": "2b7af29036a22e67be162e6306c1eb922c55afc846160467d1c2cbd0e48f456e" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14/sapmachine-jre-14_osx-x64_bin.tar.gz", + "checksum": "85b53e92c1cc346218e6a0d457bafc10530c6564ed57365b08be250d2daae172" + }, + "dmg": { + "name": "sapmachine-jre-14_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14/sapmachine-jre-14_osx-x64_bin.dmg", + "checksum": "6fcfc20a29fe9dda8ef5ebad7791bc468087dee1426d8ecfd3443a1e8c05c271" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14/sapmachine-jre-14_windows-x64_bin.zip", + "checksum": "be5090c02588594542a007c23f552803a6dd9eee2ba330e34da8b243fe0b0414" + }, + "msi": { + "name": "sapmachine-jre-14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14/sapmachine-jre-14_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-14+36": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B36", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.36_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B36/sapmachine-jdk-14-ea.36_linux-ppc64_bin.tar.gz", + "checksum": "46115d4ab4e81627317f643e0e49359a3f7e7290388cd59ce92c72c14000f49a" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.36_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B36/sapmachine-jdk-14-ea.36_linux-ppc64le_bin.tar.gz", + "checksum": "30563e907874ca40cafae79a2b7dd82063b5b5fb0a8e07f62dbab60bbac6aa6a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.36_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B36/sapmachine-jdk-14-ea.36_linux-x64_bin.tar.gz", + "checksum": "5569d14d699a70da16940cd65a78d80c423b388b945b0eaf6e7b2a5277493962" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.36_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B36/sapmachine-jdk-14-ea.36_osx-x64_bin.tar.gz", + "checksum": "78469f17c22fcd52b1f63d4f9019bb7abf5d6d2fb1a96c299c9a78c37cf93fcb" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.36_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B36/sapmachine-jdk-14-ea.36_osx-x64_bin.dmg", + "checksum": "905da29e72a251b63784ee662220b5862239288da0807fbb2387eb70115c4caf" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.36_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B36/sapmachine-jdk-14-ea.36_windows-x64_bin.zip", + "checksum": "f349152421593cc4378766c88a4605dab563adea8b904fcae4efebae81369c22" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.36_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B36/sapmachine-jdk-14-ea.36_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.36_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B36/sapmachine-jre-14-ea.36_linux-ppc64_bin.tar.gz", + "checksum": "b5797a4599b44ee1b60e2fe3a6d4ac5b9e6ddaedf39cce62980a39a05b70232b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.36_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B36/sapmachine-jre-14-ea.36_linux-ppc64le_bin.tar.gz", + "checksum": "e11c05f5b83a72137ba8dde2641b09636d97e51d17a7579deb86f820b0a2d62f" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.36_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B36/sapmachine-jre-14-ea.36_linux-x64_bin.tar.gz", + "checksum": "4dde5d2f2554e8899c5f6d19b5bbaef5586fd667129bf8e2b832fe5e07e97e06" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.36_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B36/sapmachine-jre-14-ea.36_osx-x64_bin.tar.gz", + "checksum": "8e38e1657e5cc3e765a6b00accb7bb7b48b7273bec6aed06e1e891d84597be08" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.36_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B36/sapmachine-jre-14-ea.36_osx-x64_bin.dmg", + "checksum": "2dd26637130a435e7e738711af133d35480d15c71e4fb51874b64b8dba8afaae" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.36_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B36/sapmachine-jre-14-ea.36_windows-x64_bin.zip", + "checksum": "f32a6653a5d01a685ca000d1fbc5548303af1909ce8dd9be36fced207ea955bb" + }, + "msi": { + "name": "sapmachine-jre-14-ea.36_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B36/sapmachine-jre-14-ea.36_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-14+34": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B34", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.34_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B34/sapmachine-jdk-14-ea.34_linux-ppc64_bin.tar.gz", + "checksum": "4c586e4837fae5a160a8dd2c6ff702ab5083eb9200a1dad668718d7112e55bc5" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.34_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B34/sapmachine-jdk-14-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "90a1a978bec1435fce337452b3514eb18083ed789582cbacf60126e71478c5f3" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.34_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B34/sapmachine-jdk-14-ea.34_linux-x64_bin.tar.gz", + "checksum": "ca62b94faaebe349520fd040319a4827bb6852a49572b44544770bca60e713b4" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.34_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B34/sapmachine-jdk-14-ea.34_osx-x64_bin.tar.gz", + "checksum": "22ae76c9bdccd3777b7a477180e92540df40bd97a2a85f6361c83106252904d3" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.34_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B34/sapmachine-jdk-14-ea.34_osx-x64_bin.dmg", + "checksum": "aba301d5138e083be3ac63c02691990742cfc38a5dec825b97ebdfaf58aa0e41" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.34_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B34/sapmachine-jdk-14-ea.34_windows-x64_bin.zip", + "checksum": "5cf8fbca97c8da608f6190548524acb569e812b39a7233306750d5f0469eda83" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.34_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B34/sapmachine-jdk-14-ea.34_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.34_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B34/sapmachine-jre-14-ea.34_linux-ppc64_bin.tar.gz", + "checksum": "2fedb9ee8b140ba658631c28e235f9e1deb2793a33aa7b4231a1821ceb36f081" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.34_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B34/sapmachine-jre-14-ea.34_linux-ppc64le_bin.tar.gz", + "checksum": "34b008d509d0b2f7ef92696bbf0c1e9f373a07d5a78886935d28f178cf98c5e9" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.34_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B34/sapmachine-jre-14-ea.34_linux-x64_bin.tar.gz", + "checksum": "e6f84ffbb492adf7f2607ac84404fe74f071426f803a5515c792454e7d1a3ef3" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.34_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B34/sapmachine-jre-14-ea.34_osx-x64_bin.tar.gz", + "checksum": "8249b7ce1698fda7a169f38b0d1b27ee71dff71b98c8b9a2e41ba2bc80aa81cf" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.34_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B34/sapmachine-jre-14-ea.34_osx-x64_bin.dmg", + "checksum": "8c256acb42ce2c99dfbf16fd5d3201268e3d6da5bba62e9ec33e614759efdcf6" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.34_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B34/sapmachine-jre-14-ea.34_windows-x64_bin.zip", + "checksum": "711cdad10f5bf842aef94d9148f6eb4167117bbbba8862b2a02d09e68a7207e5" + }, + "msi": { + "name": "sapmachine-jre-14-ea.34_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B34/sapmachine-jre-14-ea.34_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-14+33": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B33", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.33_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B33/sapmachine-jdk-14-ea.33_linux-ppc64_bin.tar.gz", + "checksum": "b9460a4081bacc90df97eb133c2c4c84ab09e61a27c2567b75d9565cde62a155" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.33_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B33/sapmachine-jdk-14-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "2bc252f3f46ce7cb261c7fe0099fbb41f44ee16819e4411f2c6abfe4869a57f0" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.33_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B33/sapmachine-jdk-14-ea.33_linux-x64_bin.tar.gz", + "checksum": "6652722b96de430b03ebdd2f0c9e1eccecbfd5cd306877479215148ae215062b" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.33_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B33/sapmachine-jdk-14-ea.33_osx-x64_bin.tar.gz", + "checksum": "16b203a1c135758d5c8d6eb2179f31192c5d90f703cf7cb447b74001ee4a7d1f" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.33_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B33/sapmachine-jdk-14-ea.33_osx-x64_bin.dmg", + "checksum": "92526b868930293dc1e12a4d28e1d9a5fc1787a291c894c9397fa1862cb3be0a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.33_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B33/sapmachine-jdk-14-ea.33_windows-x64_bin.zip", + "checksum": "f06286804885f1119ae740fb7bf3a3d971e677c692c13df7a225e00357cfdd50" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.33_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B33/sapmachine-jdk-14-ea.33_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.33_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B33/sapmachine-jre-14-ea.33_linux-ppc64_bin.tar.gz", + "checksum": "303376e98cb78ed93e1a15f87e3080f5a70d974140c25bfde5550a5ff59eff68" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.33_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B33/sapmachine-jre-14-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "b84ad2a6e5f25dab56ff112099cf5e248850c05c80e2bbae4025f4370e9a9f66" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.33_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B33/sapmachine-jre-14-ea.33_linux-x64_bin.tar.gz", + "checksum": "658e65be2d5db2e72b9e7849b5283debc8de7a33e2ca7dfd159d0da4037ac5af" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.33_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B33/sapmachine-jre-14-ea.33_osx-x64_bin.tar.gz", + "checksum": "f1994d032491176b759ffa624a7843652714628313ef586eac8e3e31e6712bee" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.33_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B33/sapmachine-jre-14-ea.33_osx-x64_bin.dmg", + "checksum": "01c95e749201211956531390f014be704ecdfd365c6bcbf10f352a6865bc684d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.33_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B33/sapmachine-jre-14-ea.33_windows-x64_bin.zip", + "checksum": "70180669c8b8f56e7092cc74f4424c40945f6a788b1e98048187f8c2ec3b634f" + }, + "msi": { + "name": "sapmachine-jre-14-ea.33_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B33/sapmachine-jre-14-ea.33_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-14+32": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B32", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.32_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B32/sapmachine-jdk-14-ea.32_linux-ppc64_bin.tar.gz", + "checksum": "2b113639d1d392bed4a3482e2a9f7e071c9a2ee37ae500e5a2fc8d7bba38e4b4" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.32_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B32/sapmachine-jdk-14-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "c2a306ab508397f4a5da1ba3c1ef70c5ea987faed88e34e6567d5962f9db58b8" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.32_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B32/sapmachine-jdk-14-ea.32_linux-x64_bin.tar.gz", + "checksum": "0c71d061d0a3192babb7d277501a0efd15b1d1c994e7e3c0690e50713c5a1eac" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.32_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B32/sapmachine-jdk-14-ea.32_osx-x64_bin.tar.gz", + "checksum": "e0390f2f33c4fe9849dac3ab9bdc5f990ac9c8e1e5c08298fe4d48975f732711" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.32_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B32/sapmachine-jdk-14-ea.32_osx-x64_bin.dmg", + "checksum": "c8b6d601e2c3fbb340b00a9d44d782f6ce85a05c26cf2fd0045aa1801f730adc" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.32_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B32/sapmachine-jdk-14-ea.32_windows-x64_bin.zip", + "checksum": "d11665ceecf7b6b348eea9738b1cd3a0a676515474464ce7934c9306c2879efc" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.32_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B32/sapmachine-jdk-14-ea.32_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.32_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B32/sapmachine-jre-14-ea.32_linux-ppc64_bin.tar.gz", + "checksum": "1bb651253b7828e1b8ef569b8231013de6f1baf7228824fdd431713f1cdfbf74" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.32_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B32/sapmachine-jre-14-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "314d722abead266c7bdc3309dec4a6436e4dd24c52221625daa7a953a637210f" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.32_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B32/sapmachine-jre-14-ea.32_linux-x64_bin.tar.gz", + "checksum": "e17dc6a0d4f773a467ff812af55acd77b6266e47a0903294c49a17da5f54048a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.32_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B32/sapmachine-jre-14-ea.32_osx-x64_bin.tar.gz", + "checksum": "f9f1a48629daab73f91ba59f16ffe803b379488b2f3b7d23ba6330177957907a" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.32_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B32/sapmachine-jre-14-ea.32_osx-x64_bin.dmg", + "checksum": "506dbe4c1f0bbf1ecdf6f774422d0647ba6cb578a976d67f30b7e3da8a12d7ab" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.32_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B32/sapmachine-jre-14-ea.32_windows-x64_bin.zip", + "checksum": "e1fedd7163db8bb02cec2622a81e1d15e2d93d7a34fc57f3ec09e14e75045de8" + }, + "msi": { + "name": "sapmachine-jre-14-ea.32_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B32/sapmachine-jre-14-ea.32_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-14+31": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B31", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.31_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B31/sapmachine-jdk-14-ea.31_linux-ppc64_bin.tar.gz", + "checksum": "5ade74baad10170ca4b9bf47675f002072beedf7919d301ae0d824386a8bfeca" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.31_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B31/sapmachine-jdk-14-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "5f354c26279d49401573dd66c038ce257d4ae4ab0a3aa145990987e4f1d351f9" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.31_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B31/sapmachine-jdk-14-ea.31_linux-x64_bin.tar.gz", + "checksum": "ad9d027b7fd01a3fb092a6ce486b3c4fb49040f1cd73c08cd994624d99c96f9c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.31_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B31/sapmachine-jdk-14-ea.31_osx-x64_bin.tar.gz", + "checksum": "fa5c39d116ad72ce0ea3c9914bdb2a2ebdc18e8abc73125b319b6f3258174bcb" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.31_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B31/sapmachine-jdk-14-ea.31_osx-x64_bin.dmg", + "checksum": "e232b9ec3ef7dfffb2ee7536a5388bc4a8468e69ecc3be18afb765e5a8233293" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.31_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B31/sapmachine-jdk-14-ea.31_windows-x64_bin.zip", + "checksum": "732cfc3846490a83c04a2bcb1e1b3e0e56c8132d2652350cdb2c850ebefd6aad" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.31_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B31/sapmachine-jdk-14-ea.31_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.31_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B31/sapmachine-jre-14-ea.31_linux-ppc64_bin.tar.gz", + "checksum": "5e9bbec213b7be9b730ff499d2982529b86d2fb6157092dbf057f510a1b42a5d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.31_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B31/sapmachine-jre-14-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "ee1ea587677a3855841bc7fdd0ae8db8ab68b97c83a9cba90d7162ed0d577a8f" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.31_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B31/sapmachine-jre-14-ea.31_linux-x64_bin.tar.gz", + "checksum": "b9ff02b258d33acdc2e2a7897ba3c838513b63a23c752a0fd692cd2313564273" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.31_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B31/sapmachine-jre-14-ea.31_osx-x64_bin.tar.gz", + "checksum": "1a493425005f38bd75c591a1fd8a347fd90466992f9f254681a4b1b9fbebd48d" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.31_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B31/sapmachine-jre-14-ea.31_osx-x64_bin.dmg", + "checksum": "b5712bc63933f23f54538a2c7440b7380cbe58953b6b8b986bb0fd977f336bc4" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.31_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B31/sapmachine-jre-14-ea.31_windows-x64_bin.zip", + "checksum": "483d3fc908f29f7aa04fd6b655eaae8319841cdf174d91d7638bd1a42d3ae4dc" + }, + "msi": { + "name": "sapmachine-jre-14-ea.31_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B31/sapmachine-jre-14-ea.31_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-14+30": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B30", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.30_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B30/sapmachine-jdk-14-ea.30_linux-ppc64_bin.tar.gz", + "checksum": "6e34f7b5dc4e51aaa901604b660a7fc99ef697607d47b2a978dcf66a25506c68" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.30_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B30/sapmachine-jdk-14-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "4c391af76358a700850935b5ad3c0612a16d7ac5dc3bc2ab4917e8a00ce1878c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.30_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B30/sapmachine-jdk-14-ea.30_linux-x64_bin.tar.gz", + "checksum": "3f96bf6b545d52d8b3cb5b06b93e5efc3d996477e509e515dbeb6de604d2efd0" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.30_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B30/sapmachine-jdk-14-ea.30_osx-x64_bin.tar.gz", + "checksum": "4fd8a7b660960e84f8be68b1fb4bc1ef61b166400ee54be9982605be482e1e19" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.30_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B30/sapmachine-jdk-14-ea.30_osx-x64_bin.dmg", + "checksum": "c3faca345c27bda0b70874fce8f762040b4522ec2d4962eace6b99808d8ebd15" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.30_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B30/sapmachine-jdk-14-ea.30_windows-x64_bin.zip", + "checksum": "b3cc210485f761dee4280b4f0b16af9163b15ce1f0b3d286795a638a73d3c469" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.30_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B30/sapmachine-jdk-14-ea.30_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.30_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B30/sapmachine-jre-14-ea.30_linux-ppc64_bin.tar.gz", + "checksum": "625e4d2a21bf20cc9b33c252e6211edf5899e040d86c1e3afe812a4b11bbe83e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.30_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B30/sapmachine-jre-14-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "8daf5b8c26c1c909a90456233cc20bbab900ecd463de14e3846d85dbc31a37ae" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.30_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B30/sapmachine-jre-14-ea.30_linux-x64_bin.tar.gz", + "checksum": "44d784bb32e16b53eb70f6223aa9d60a3b6f941eb32c7bbd8863efaa8bd0b57c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.30_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B30/sapmachine-jre-14-ea.30_osx-x64_bin.tar.gz", + "checksum": "6e5f9caa9ed5479c9dc14f151b15c4b263340ce67dac261a66d39b815114d40a" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.30_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B30/sapmachine-jre-14-ea.30_osx-x64_bin.dmg", + "checksum": "56554f086b1273b329daaf8e02642344dd6fa137d7dc201aa8e456d8c51fa9c0" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.30_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B30/sapmachine-jre-14-ea.30_windows-x64_bin.zip", + "checksum": "b365d957b699f55778e3137a081e63f6bdc1a6d9aba85a76d434d022b3df6390" + }, + "msi": { + "name": "sapmachine-jre-14-ea.30_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B30/sapmachine-jre-14-ea.30_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-14+29": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B29", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.29_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B29/sapmachine-jdk-14-ea.29_linux-ppc64_bin.tar.gz", + "checksum": "5c72fc7d2885d3211d31948b660e9de0ef3365ac1b3cd1e0038f9f943eb8cb5e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.29_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B29/sapmachine-jdk-14-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "d5e3bb819e68bb234a5b850357defaed68c821bd345cab0f0e1f93801516b1bc" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.29_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B29/sapmachine-jdk-14-ea.29_linux-x64_bin.tar.gz", + "checksum": "f27c61c9c240d4fff563c0cff0c69f50f11cd48ee4c147eace0e5dc5c01e6408" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.29_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B29/sapmachine-jdk-14-ea.29_osx-x64_bin.tar.gz", + "checksum": "aef6d3c4ccbdf12412698f14c78d4d7dad2b1e2818e9d5f6af0462e6644b081f" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.29_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B29/sapmachine-jdk-14-ea.29_osx-x64_bin.dmg", + "checksum": "4175dba43609a32d5dcd3cc069ee91c8066ff70c08040082c0adef4796af096d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.29_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B29/sapmachine-jdk-14-ea.29_windows-x64_bin.zip", + "checksum": "09b5195e146f5b731d2e02cd498883cc5a9a7e485cdb73fbca6c27d1c0506273" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.29_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B29/sapmachine-jdk-14-ea.29_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.29_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B29/sapmachine-jre-14-ea.29_linux-ppc64_bin.tar.gz", + "checksum": "455972149cf017aab86d11606372f50ceda35ee69c55e6d4be1b3d764abccff6" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.29_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B29/sapmachine-jre-14-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "f05296fa882ed30bef3a4a52189305491026b9a1bc286e888ca7af5dc0189859" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.29_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B29/sapmachine-jre-14-ea.29_linux-x64_bin.tar.gz", + "checksum": "62bb19888631f509c22725ec05c9e9015c9d4dbf8f91675722f7b69e54693835" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.29_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B29/sapmachine-jre-14-ea.29_osx-x64_bin.tar.gz", + "checksum": "23225f55c5d6b403c8902eb105b5ceddb5c308751ea77a5f0ed0490724825a4b" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.29_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B29/sapmachine-jre-14-ea.29_osx-x64_bin.dmg", + "checksum": "c9ed439f6720ed2359aa27b9da47bed271dcfd766b426f624225ff0aa6bc38b6" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.29_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B29/sapmachine-jre-14-ea.29_windows-x64_bin.zip", + "checksum": "20f8f48be3f015c7829e9e3a690c0aa5c0d8134f23ce317065c3931c9969bc95" + }, + "msi": { + "name": "sapmachine-jre-14-ea.29_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B29/sapmachine-jre-14-ea.29_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-14+28": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B28", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.28_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B28/sapmachine-jdk-14-ea.28_linux-ppc64_bin.tar.gz", + "checksum": "4802028f73138129119defef37d532f1d5bbcd2e718effdf9b30cf82c7e35375" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.28_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B28/sapmachine-jdk-14-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "e570f3300c1c99d4a021890d7e7ce9ae8f7ab85f90c4d5775f1e5d0508da0c04" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.28_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B28/sapmachine-jdk-14-ea.28_linux-x64_bin.tar.gz", + "checksum": "ad61ffca71b2dc4312c764438b77b01beb363885865c5471dd1e68defcd72b1b" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.28_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B28/sapmachine-jdk-14-ea.28_osx-x64_bin.tar.gz", + "checksum": "f59b4d80053b098172de81e45913a957c0db81e93b08ffeeef4918a8d241401d" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.28_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B28/sapmachine-jdk-14-ea.28_osx-x64_bin.dmg", + "checksum": "4ade2a08bff212e7ec7eece128c798878b6ecd88c00ca27fbb3436a7d0d76d0c" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.28_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B28/sapmachine-jdk-14-ea.28_windows-x64_bin.zip", + "checksum": "14a9da3898b0bc6cbaf9e4f6b2f7711518122fa83bb32167378ba37e1848f37f" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.28_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B28/sapmachine-jdk-14-ea.28_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.28_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B28/sapmachine-jre-14-ea.28_linux-ppc64_bin.tar.gz", + "checksum": "b7128d160f67f97ac9878dd0dced1f1521b78d9eefa05ded59d15edd7bc4625c" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.28_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B28/sapmachine-jre-14-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "847b5c4b80546106dffcb6c1a0c5a9d8296a6e6c727357221ce3333270521239" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.28_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B28/sapmachine-jre-14-ea.28_linux-x64_bin.tar.gz", + "checksum": "9ad18ee112d501047f7cc1ba898e26f42f1fd68cf168b874a6e469a51852352b" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.28_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B28/sapmachine-jre-14-ea.28_osx-x64_bin.tar.gz", + "checksum": "bb022351a0a62d8108707b8450c6c36c1ba268d04986d2853ddb2e2d7add5cf9" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.28_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B28/sapmachine-jre-14-ea.28_osx-x64_bin.dmg", + "checksum": "79bf64f1ee57b08a2014a71d44007ac9ad7d732582698359619a6a217dfaf007" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.28_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B28/sapmachine-jre-14-ea.28_windows-x64_bin.zip", + "checksum": "d5900cdf586637810a5d391fe1932f733f162593730814590e3bea37336751b7" + }, + "msi": { + "name": "sapmachine-jre-14-ea.28_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B28/sapmachine-jre-14-ea.28_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-14+27": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B27", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.27_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B27/sapmachine-jdk-14-ea.27_linux-ppc64_bin.tar.gz", + "checksum": "752f47e7ef7c464c5bac58498692e562ddea500007e42e7fe223cb5d33b7375e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.27_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B27/sapmachine-jdk-14-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "eeabfcf2bd467c1eafadff140ab52a775546169b3c4892679c6649babc61496a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.27_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B27/sapmachine-jdk-14-ea.27_linux-x64_bin.tar.gz", + "checksum": "fac4402fc6aaed1572ddedbe55f798d9f7f67073093651c40731832f8cff2afe" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.27_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B27/sapmachine-jdk-14-ea.27_osx-x64_bin.tar.gz", + "checksum": "88626a2e7816b79cb67862ef3641333bccee1c35245461c750c79856cc84ead2" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.27_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B27/sapmachine-jdk-14-ea.27_osx-x64_bin.dmg", + "checksum": "73781c63f10d9e4312222de9edc7b715416ad73d40566358798b22c3f65f78cf" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.27_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B27/sapmachine-jdk-14-ea.27_windows-x64_bin.zip", + "checksum": "a0b879fdf1eb4b451dcfe653285a48f8468d0f0c0bb0bd0f289f8ab40fc39265" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.27_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B27/sapmachine-jdk-14-ea.27_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.27_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B27/sapmachine-jre-14-ea.27_linux-ppc64_bin.tar.gz", + "checksum": "eef5cdab37bcbbc4b6ed3020c1a3614850f1ff2ba081e7086056303b20dd7cc9" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.27_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B27/sapmachine-jre-14-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "1bbb9f66b35b5d4a5e02fd9fd89a490686ff68e222b0478bfe1c82600c97fb9b" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.27_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B27/sapmachine-jre-14-ea.27_linux-x64_bin.tar.gz", + "checksum": "9a184d254f7f7604504e0bb0212fac6cf775c4483ae8db342f4ed31aaf2e8fa0" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.27_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B27/sapmachine-jre-14-ea.27_osx-x64_bin.tar.gz", + "checksum": "3b0daca013f13ae98759090413ab267edf318511853cc70e470713e21d9a51c2" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.27_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B27/sapmachine-jre-14-ea.27_osx-x64_bin.dmg", + "checksum": "d5e171191067f58612f6f4db04569ad438d88bf42a976a5244acc6ed250ce3a2" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.27_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B27/sapmachine-jre-14-ea.27_windows-x64_bin.zip", + "checksum": "f0cbc800fadf71314278b41d0b91c9983d57fbb044929c52818dba532ac8fe42" + }, + "msi": { + "name": "sapmachine-jre-14-ea.27_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B27/sapmachine-jre-14-ea.27_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-14+26": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B26", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.26_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B26/sapmachine-jdk-14-ea.26_linux-ppc64_bin.tar.gz", + "checksum": "ebdb3f7f00768081927386e05dd981d97055f19dcbb4b4e89ea8e5f7b23cdfcb" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.26_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B26/sapmachine-jdk-14-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "b578af55c2aee3f4af074f0a9bb5486e19d925f49a7984624a14a9399dd05a46" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.26_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B26/sapmachine-jdk-14-ea.26_linux-x64_bin.tar.gz", + "checksum": "a08fc731b10f1c6f9541dc9d8b91e671f8ddaf6b8fd490a687dd69282a76d95a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.26_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B26/sapmachine-jdk-14-ea.26_osx-x64_bin.tar.gz", + "checksum": "e0f7f55311f881eacc16e339729cf1b1889f5a6d57e62082d4ef479b2e136d9d" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.26_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B26/sapmachine-jdk-14-ea.26_osx-x64_bin.dmg", + "checksum": "c07f2f582058142826e5f610a66ef971121acca69b3d820a3a8c338d04d80674" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.26_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B26/sapmachine-jdk-14-ea.26_windows-x64_bin.zip", + "checksum": "f12c7481abb5d334c72b08c356a25ef63005095261efa618615f5d0dc1df43fc" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.26_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B26/sapmachine-jdk-14-ea.26_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.26_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B26/sapmachine-jre-14-ea.26_linux-ppc64_bin.tar.gz", + "checksum": "3de4953900130543e1ccd9546c9b676a68690b834f352e755676aa9e456bc9ba" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.26_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B26/sapmachine-jre-14-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "26bd89fc31aa3b56f5991b212611145879898fd6e2d9dcbd70876fa043ff7312" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.26_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B26/sapmachine-jre-14-ea.26_linux-x64_bin.tar.gz", + "checksum": "4a2022ccbe343c8bd081686243fd6c65e8e082f8f3e2f74f71845a15c343fdea" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.26_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B26/sapmachine-jre-14-ea.26_osx-x64_bin.tar.gz", + "checksum": "885fc4abd7279fe4cd5d837d534e7b7a91b26da8001f7240e9e7e341fc319f1b" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.26_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B26/sapmachine-jre-14-ea.26_osx-x64_bin.dmg", + "checksum": "0829a4674060ddc46d8dd2feddfc3a263da1ec90c1e8665f24191d5a472d7797" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.26_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B26/sapmachine-jre-14-ea.26_windows-x64_bin.zip", + "checksum": "8141f7177d67b2908b0c00994729ea6e7e30ae327307774e60ac025c25a9849c" + }, + "msi": { + "name": "sapmachine-jre-14-ea.26_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B26/sapmachine-jre-14-ea.26_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-14+25": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B25", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.25_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B25/sapmachine-jdk-14-ea.25_linux-ppc64_bin.tar.gz", + "checksum": "3166d75da0e65a6033fdd68f655db8c8354cdf4f8cce7e3503271d0c4904b6a5" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.25_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B25/sapmachine-jdk-14-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "3721be39637e432250149f819dab26043430f88b752ba48f7a5b724ea6f822fd" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.25_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B25/sapmachine-jdk-14-ea.25_linux-x64_bin.tar.gz", + "checksum": "e7a3ac95d7fe216b9a1df6106948c50581e22543b365091c35ed36ca404dd527" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.25_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B25/sapmachine-jdk-14-ea.25_osx-x64_bin.tar.gz", + "checksum": "62f12313fa47bb3165ccf229ba93c24c08ed44301715853bac6f69b2e31b4904" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.25_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B25/sapmachine-jdk-14-ea.25_osx-x64_bin.dmg", + "checksum": "46d112e9171f1e87d1aed752e39e85e44c0e8298c339b8b00dfb64d96b70ab31" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.25_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B25/sapmachine-jdk-14-ea.25_windows-x64_bin.zip", + "checksum": "d59c34e979cc5bd3bc9016e62271d822f9e1ccde875b412653924b58239552e8" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.25_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B25/sapmachine-jdk-14-ea.25_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.25_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B25/sapmachine-jre-14-ea.25_linux-ppc64_bin.tar.gz", + "checksum": "b639db1dc7f6967325f4816a50ace6d1268e24949ef56c690673e1310ac2f282" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.25_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B25/sapmachine-jre-14-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "95b5b2e556b5133ae285c3978a1bf31ba04a1a353f7f9d7238651e91db6fcb3e" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.25_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B25/sapmachine-jre-14-ea.25_linux-x64_bin.tar.gz", + "checksum": "f52d8e125d533ca422e702ad5495f2efa625bf689f90d5e29023a75bc88dd729" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.25_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B25/sapmachine-jre-14-ea.25_osx-x64_bin.tar.gz", + "checksum": "e9bc355ca4ab2bd76a2f51d4728ff111cc41173f63e975a5d3b6a1641ac85393" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.25_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B25/sapmachine-jre-14-ea.25_osx-x64_bin.dmg", + "checksum": "e3a9b81c441f33c1962031d1ae057d106cf4c3cbe14070d5a5ea72669bfad57d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.25_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B25/sapmachine-jre-14-ea.25_windows-x64_bin.zip", + "checksum": "3e177e47e527adf74717e630d1f3a99e5542c8dc4888cf7541a24d8e194da8fb" + }, + "msi": { + "name": "sapmachine-jre-14-ea.25_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B25/sapmachine-jre-14-ea.25_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-14+24": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B24", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.24_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B24/sapmachine-jdk-14-ea.24_linux-ppc64_bin.tar.gz", + "checksum": "2c8a037c3977e1d47e6ea1575627283a0713ebfd00c803c5eee2cfd887bb6f53" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.24_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B24/sapmachine-jdk-14-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "8492cf9cfc2f6860c3e43e42bd029e4aff3f414f1d94fe0d93623c604756132c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.24_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B24/sapmachine-jdk-14-ea.24_linux-x64_bin.tar.gz", + "checksum": "9899ce2b5b52fe123ed7511a092a541f727f3ac726e37fab8fb2a5d7c8d40904" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.24_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B24/sapmachine-jdk-14-ea.24_osx-x64_bin.tar.gz", + "checksum": "e96de464097edd946a9dbfc9d27de6bf2b4c6c01e94cad1e5590f640159c9bda" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.24_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B24/sapmachine-jdk-14-ea.24_osx-x64_bin.dmg", + "checksum": "384726608a529acd0bca63ca2acee6c39338fa03b2bed05a2927ff3e527306db" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.24_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B24/sapmachine-jdk-14-ea.24_windows-x64_bin.zip", + "checksum": "f4ba90cb16ad858116750608bbef7d826629eaff63bb08788c60d4941a9b48d2" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.24_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B24/sapmachine-jdk-14-ea.24_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.24_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B24/sapmachine-jre-14-ea.24_linux-ppc64_bin.tar.gz", + "checksum": "2db260563558b667d385efab145e328df131cebc6d881136477c6093d7164bf7" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.24_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B24/sapmachine-jre-14-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "69d70ac59106d2f67fcf7b74090aeb1f12451f48a1cb51baf11e85fcb6b75b83" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.24_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B24/sapmachine-jre-14-ea.24_linux-x64_bin.tar.gz", + "checksum": "97574d26403ee47c044e9f6d1002197f0bbe312151e15a900f50b50c576be99b" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.24_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B24/sapmachine-jre-14-ea.24_osx-x64_bin.tar.gz", + "checksum": "84415a1212be8e765f40b801de30d52cf83861e4216c9b8014ae11952d7c0de9" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.24_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B24/sapmachine-jre-14-ea.24_osx-x64_bin.dmg", + "checksum": "30d7fd62287871eebdb85e483aa9a6e07d90dcabd622f0d3d5a0f074e808b04e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.24_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B24/sapmachine-jre-14-ea.24_windows-x64_bin.zip", + "checksum": "7369c2056fe4675493de1dfd0326ad8ee5043e54afa157c09799b17c22e13c8f" + }, + "msi": { + "name": "sapmachine-jre-14-ea.24_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B24/sapmachine-jre-14-ea.24_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-14+23": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B23", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.23_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B23/sapmachine-jdk-14-ea.23_linux-ppc64_bin.tar.gz", + "checksum": "053c132a3de5021fd116f73bb9f65220d0895fac9ae23a2dbccca904851269b5" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.23_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B23/sapmachine-jdk-14-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "c8e52fab242b02e736fbbc1c2f30d60da01eeb874d4ead5d7ce783efca954db5" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.23_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B23/sapmachine-jdk-14-ea.23_linux-x64_bin.tar.gz", + "checksum": "64bf4a1d67b45bc642780f51649c13ceaa520cde6377d7662dc44fe3e429a759" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.23_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B23/sapmachine-jdk-14-ea.23_osx-x64_bin.tar.gz", + "checksum": "5fcb23d8b8a739f55c98d59f2b7a5177cd2973b3958a5ffd376b92dbc8bc125f" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.23_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B23/sapmachine-jdk-14-ea.23_osx-x64_bin.dmg", + "checksum": "83f488b85d1787c207c91aef01447a3f6d772c50c09f8de6402083441af19584" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.23_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B23/sapmachine-jdk-14-ea.23_windows-x64_bin.zip", + "checksum": "6e4f25d0b6a1659c64717cb6cba7904b2ba859401c6b76348b028da283557b5e" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.23_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B23/sapmachine-jdk-14-ea.23_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.23_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B23/sapmachine-jre-14-ea.23_linux-ppc64_bin.tar.gz", + "checksum": "823ac40404def6a91f9ab74944b50f2b0d8419b9c125c8bd0d5b5139e47c7397" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.23_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B23/sapmachine-jre-14-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "87964878a609ee7c7a65672a730c475e41a562ea84b89c6b457d9ea111cef502" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.23_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B23/sapmachine-jre-14-ea.23_linux-x64_bin.tar.gz", + "checksum": "601d4123118d81db5ca91fca44b9df2ed22cc955fded1521348ec0262ddfc695" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.23_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B23/sapmachine-jre-14-ea.23_osx-x64_bin.tar.gz", + "checksum": "fe47f9ba534dc5e8eb0d537063980dff30b33f24710b58dc5f6fdfe05bc25fc5" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.23_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B23/sapmachine-jre-14-ea.23_osx-x64_bin.dmg", + "checksum": "644531f606e7e56b7191ec105b1b765b22c1909e0ef34c929c09e26287a8ab64" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.23_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B23/sapmachine-jre-14-ea.23_windows-x64_bin.zip", + "checksum": "d01554f12274c5c8ea8ce983c68e5935a35b3c298de90947c6fc2c070a250623" + } + } + } + } + }, + "sapmachine-14+22": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B22", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.22_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B22/sapmachine-jdk-14-ea.22_linux-ppc64_bin.tar.gz", + "checksum": "aa9cec31882b6012b78f1ec9bced0f85f3523f82f24478869ed48109fefe7628" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.22_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B22/sapmachine-jdk-14-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "ab37c175c67cb4c383b0ae779919dd6d2b02a419e8b3ba9a3500a3ab62fec7c1" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.22_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B22/sapmachine-jdk-14-ea.22_linux-x64_bin.tar.gz", + "checksum": "51080869142e3396e4199b1b9f5390ddc96f22460701cdcfdbea2672522831e7" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.22_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B22/sapmachine-jdk-14-ea.22_osx-x64_bin.tar.gz", + "checksum": "d5cf4805cc7f1af039af8536142215e431584399391c28dfe527c5e617ad8cda" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.22_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B22/sapmachine-jdk-14-ea.22_osx-x64_bin.dmg", + "checksum": "aff362f9f2ae4dae154dc8af7dde1a78754adc0dbaa51c36ac78bace45dbcd51" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.22_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B22/sapmachine-jdk-14-ea.22_windows-x64_bin.zip", + "checksum": "6545416393816f64226e561c5912767ba962286a7795173105275015a2bb2dae" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.22_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B22/sapmachine-jdk-14-ea.22_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.22_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B22/sapmachine-jre-14-ea.22_linux-ppc64_bin.tar.gz", + "checksum": "ab4ac4258a595df974fc19eed80b079d5c37de019dfd0b80aa8afe1de3cfa4cf" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.22_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B22/sapmachine-jre-14-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "e69f54132c52aa8d60d2cf270e854314da6ff126b57441cd17720f58eb0a3c84" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.22_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B22/sapmachine-jre-14-ea.22_linux-x64_bin.tar.gz", + "checksum": "ac23c9ab47004062adc4dbfb0421fa94a8b6301b79a69accf2f74960c8e6d226" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.22_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B22/sapmachine-jre-14-ea.22_osx-x64_bin.tar.gz", + "checksum": "53a810fbbdb96b8bf2909c6f5577e548868a652de17df2fd11011686022b1157" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.22_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B22/sapmachine-jre-14-ea.22_osx-x64_bin.dmg", + "checksum": "6c7462810690f8aa8faf35076058f96a16358aa33ce63470f74e40d8640b1a1f" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.22_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B22/sapmachine-jre-14-ea.22_windows-x64_bin.zip", + "checksum": "cad711120f34d11f11f70b633a809a123e0d14591da33a54c490281df5d881f7" + } + } + } + } + }, + "sapmachine-14+21": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B21", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.21_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B21/sapmachine-jdk-14-ea.21_linux-ppc64_bin.tar.gz", + "checksum": "d94e6e83500a38cfb2740af887ff6a256a32f276e142e855366f39600b56d820" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.21_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B21/sapmachine-jdk-14-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "ea14def245949eb84686f9f5df75c2eb856774b61ce467106feb5183fb823685" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.21_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B21/sapmachine-jdk-14-ea.21_linux-x64_bin.tar.gz", + "checksum": "684daedf8048d2ff091b128d66161a045686c12a6f64885018ce9ffbf35241cc" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.21_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B21/sapmachine-jdk-14-ea.21_osx-x64_bin.tar.gz", + "checksum": "7cc186cddf42a1b624c13adb0b98df0683759a0af5a620a8947362461c8e618d" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.21_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B21/sapmachine-jdk-14-ea.21_osx-x64_bin.dmg", + "checksum": "4190aca485997df250d8d9ae333faab34dab21ca48afe4a0a50353f6669935ba" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.21_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B21/sapmachine-jdk-14-ea.21_windows-x64_bin.zip", + "checksum": "6d5fe04986a59b5cedf36a974e1f250a15268355f48dd942933b4b009d28aeb3" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B21/sapmachine-jdk-14-ea.21_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.21_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B21/sapmachine-jre-14-ea.21_linux-ppc64_bin.tar.gz", + "checksum": "3668eb47c7320cf7b3161c0fd034f134409f29d109d67753433dbaa1e334a5c6" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.21_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B21/sapmachine-jre-14-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "8468a5f92a2d9a6788423fb2968a3d48fec5ead644a081a1dc5511dd0bee53e7" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.21_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B21/sapmachine-jre-14-ea.21_linux-x64_bin.tar.gz", + "checksum": "2cc552648912aa702e0c6e69b7fc3c2ad8a49e5c33dd46275d81e0c96b9de792" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.21_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B21/sapmachine-jre-14-ea.21_osx-x64_bin.tar.gz", + "checksum": "0192ea2201da0cf2e99fcff87afffd415d4d37e4dc5bccc9007e9abdf823f344" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.21_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B21/sapmachine-jre-14-ea.21_osx-x64_bin.dmg", + "checksum": "c93b329d774d929ead796161b585462e321c1b59d700aac3f7ff00814802e51f" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.21_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B21/sapmachine-jre-14-ea.21_windows-x64_bin.zip", + "checksum": "20a0e23c7219061311893ffdf81722255b6f0291f7c8d241114b74c366f3ff66" + } + } + } + } + }, + "sapmachine-14+20": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B20", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.20_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B20/sapmachine-jdk-14-ea.20_linux-ppc64_bin.tar.gz", + "checksum": "347551820775291f9fe9a1d24adbe8896a32d2d5fe824e7de734132a74d0cf1d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.20_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B20/sapmachine-jdk-14-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "5a9890df2cdde22cf540941ade58b66c78ef475ed3f640d2c90bcee4cdc2f7e9" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.20_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B20/sapmachine-jdk-14-ea.20_linux-x64_bin.tar.gz", + "checksum": "fa8421f6c8b1d7fd9782347bd59ab20f378b9bad8db9eac9adc09ec32c019e00" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.20_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B20/sapmachine-jdk-14-ea.20_osx-x64_bin.tar.gz", + "checksum": "f87721b654c2d3a5ba874af224fc56fc412800ea46776c198d3d708fd500b82e" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.20_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B20/sapmachine-jdk-14-ea.20_osx-x64_bin.dmg", + "checksum": "48fa6437dd6be15d8c8e0c6fd80070382bfbf642688e22ddb90f063acb875e00" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.20_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B20/sapmachine-jre-14-ea.20_linux-ppc64_bin.tar.gz", + "checksum": "659d517ede0eb2c43b14656e64d05776d70a26e30d7185e1b06b6797da897374" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.20_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B20/sapmachine-jre-14-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "a4053d5d81666cb6905f11b3b0d3ac1b845d9af95f213a7439b6d74dd842b5ca" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.20_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B20/sapmachine-jre-14-ea.20_linux-x64_bin.tar.gz", + "checksum": "c64aae8aa48dc0de9e1f7799137014b270248e0e0b249b5c51b64681029ca2eb" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.20_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B20/sapmachine-jre-14-ea.20_osx-x64_bin.tar.gz", + "checksum": "38d38f8d0fe71fc5e0bb80112c978f55a23cb77c46009006ef3745c118725eae" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.20_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B20/sapmachine-jre-14-ea.20_osx-x64_bin.dmg", + "checksum": "381723acb401c300bd2b0ca0edb0918502c8a944be616373c16c299ba7357b7c" + } + } + } + } + }, + "sapmachine-14+19": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B19", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.19_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B19/sapmachine-jdk-14-ea.19_linux-ppc64_bin.tar.gz", + "checksum": "ff26793a5afba17bfbee4558e0477aa00441253cba5c73f7c26c82ac315d1db4" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.19_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B19/sapmachine-jdk-14-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "9d39a676e1057d013b9c9f59695a640a66b27f5282f6ea5b838fb767fbb58c75" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.19_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B19/sapmachine-jdk-14-ea.19_linux-x64_bin.tar.gz", + "checksum": "a4685db8d3c776b257e1f837f3ae39f8776f3e0d766f50f11c4c589dc353a62c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.19_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B19/sapmachine-jdk-14-ea.19_osx-x64_bin.tar.gz", + "checksum": "012d91b840113a94fa850537240a6b05be1a08cd63508486a98e551aa198245b" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.19_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B19/sapmachine-jdk-14-ea.19_osx-x64_bin.dmg", + "checksum": "c1089eb8618a36e3cdb4773ee2353675a23f03557ca75905586427a3a2fb3ed3" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.19_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B19/sapmachine-jdk-14-ea.19_windows-x64_bin.zip", + "checksum": "31cae5d72e83148dae3f61fa8ad74b097d0e40d560ca90ed168050537db8a028" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B19/sapmachine-jdk-14-ea.19_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.19_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B19/sapmachine-jre-14-ea.19_linux-ppc64_bin.tar.gz", + "checksum": "4b9475cc0c53618d73f09b4c7c3844b4fbb35107c1ff07c4e3633c27d7ad5faa" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.19_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B19/sapmachine-jre-14-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "66f6d0bb494bcfa2dd9b0c7d337113802c609cbe6af78bef32e5a8e48d6825cd" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.19_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B19/sapmachine-jre-14-ea.19_linux-x64_bin.tar.gz", + "checksum": "dfa6d6d3d6fb45c3e8ebd288d950049fd3975b1ffafd997dd99b0f6edae37a0b" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.19_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B19/sapmachine-jre-14-ea.19_osx-x64_bin.tar.gz", + "checksum": "fc5bf66defdd6528fd4f1cec7f132b239b482ee69ce7f83f878ea0ec323537b7" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.19_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B19/sapmachine-jre-14-ea.19_osx-x64_bin.dmg", + "checksum": "dfc9df65032c75c0bee996454e62ae04043e785bd7293c2315c793dab985256f" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.19_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B19/sapmachine-jre-14-ea.19_windows-x64_bin.zip", + "checksum": "e917fd2a92def679b3311408544ac9be0248735a87f639829a306af4e82837b6" + } + } + } + } + }, + "sapmachine-14+18": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B18", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.18_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B18/sapmachine-jdk-14-ea.18_linux-ppc64_bin.tar.gz", + "checksum": "0dbe537c1989cce632c1c5cdc3f0104823b386d7ed7a6abf11d158432df01a20" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.18_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B18/sapmachine-jdk-14-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "a3fe5c7c18188f07d96ef96100585dddf90cb9e69b688374e75841c80fb824a0" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.18_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B18/sapmachine-jdk-14-ea.18_linux-x64_bin.tar.gz", + "checksum": "db245d581221c1f1f65065e91234f73095231452412dea16442f97347e7fd89b" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.18_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B18/sapmachine-jdk-14-ea.18_osx-x64_bin.tar.gz", + "checksum": "a389299fa1556f7605b1b379163ad1e1206bbbd1c199ab5e2e2c8cbbf40ebc93" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.18_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B18/sapmachine-jdk-14-ea.18_osx-x64_bin.dmg", + "checksum": "697eea5579ee8065316645e54f08680e44f6461c48ca34d2cf13b7666987e1fb" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.18_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B18/sapmachine-jdk-14-ea.18_windows-x64_bin.zip", + "checksum": "56e030aaebe941e5b7aab79fc39f45a41e76a08edc42badf1df043e1cd7f3d6e" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B18/sapmachine-jdk-14-ea.18_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.18_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B18/sapmachine-jre-14-ea.18_linux-ppc64_bin.tar.gz", + "checksum": "94be6773f4d9bc68d44642402c2f282ddc11b133df9575f9bf87d62c71f0a950" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.18_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B18/sapmachine-jre-14-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "ba79ab8739b24d6d5b37ceb85b058e737640287e64a5f54a81ced581187dd134" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.18_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B18/sapmachine-jre-14-ea.18_linux-x64_bin.tar.gz", + "checksum": "07dc6e95827d63d0cf6c19650a7f6c0a16a30e5b98b81a204f1d0636af85cb01" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.18_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B18/sapmachine-jre-14-ea.18_osx-x64_bin.tar.gz", + "checksum": "106446f65f7280d6d236111441995cfc6f2ba1902bdc22819cd279cdaa5736d6" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.18_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B18/sapmachine-jre-14-ea.18_osx-x64_bin.dmg", + "checksum": "4a23612bdd32db83f52c5267d71c1ffdadfc9e93f04ad42e3697418555fdbe6b" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.18_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B18/sapmachine-jre-14-ea.18_windows-x64_bin.zip", + "checksum": "aa7a2000a68bcb1845878fcfda96b85883f3f0e614538a8a8450610780992111" + } + } + } + } + }, + "sapmachine-14+17": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B17", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.17_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B17/sapmachine-jdk-14-ea.17_linux-ppc64_bin.tar.gz", + "checksum": "84f001b27e97129abcec8cba23a606e493eec1ce1a93943bb7bba9ae30d553dc" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.17_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B17/sapmachine-jdk-14-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "f112baf71311696658eb7baf17a09666922b03a3b9f260bea98ee280c5be5354" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.17_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B17/sapmachine-jdk-14-ea.17_linux-x64_bin.tar.gz", + "checksum": "972970d2bcc4080644a2808005e0f83c393c1864b7f18dcff52b25c35ab2d8d2" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.17_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B17/sapmachine-jdk-14-ea.17_osx-x64_bin.tar.gz", + "checksum": "a5e82a24b52ff62374741af66d78b68ad9e82365b9b87a80be76400eaf158d4d" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.17_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B17/sapmachine-jdk-14-ea.17_osx-x64_bin.dmg", + "checksum": "226515e5b43343278daaac8735ff8567ac3c739e14fe1b8967e1ba9e78776460" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.17_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B17/sapmachine-jdk-14-ea.17_windows-x64_bin.zip", + "checksum": "b7be156fbae204293e820c6ee51099f1de03132fa5d43ff21a744f4b6db8b43a" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B17/sapmachine-jdk-14-ea.17_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.17_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B17/sapmachine-jre-14-ea.17_linux-ppc64_bin.tar.gz", + "checksum": "6bd809681ec1b8d076c9f12961c389a7d19716db555297330dc6d2dbe35fdb72" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.17_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B17/sapmachine-jre-14-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "45dbc57fc499fe8551cea96eb222ee0e8f6cf85b4bacc4be5cb33eff0360845c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.17_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B17/sapmachine-jre-14-ea.17_linux-x64_bin.tar.gz", + "checksum": "e4ee9a5a3f6935aed68d03d0df71b6d8d0d11c15e17db483501a5e9b096108ee" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.17_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B17/sapmachine-jre-14-ea.17_osx-x64_bin.tar.gz", + "checksum": "ac013a2271d76e0fdfa394492695c7f935f9e568b2f9d074dc3982a43d87f980" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.17_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B17/sapmachine-jre-14-ea.17_osx-x64_bin.dmg", + "checksum": "5e634ad2b416ab7d598ee7d2e80a380733185caa51a8eb4c86c76ebb1ab0b528" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.17_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B17/sapmachine-jre-14-ea.17_windows-x64_bin.zip", + "checksum": "da64fca0b6a94832de38e7d19b4aa47b7e2dabc0304e3a58432c7e813f22673d" + } + } + } + } + }, + "sapmachine-14+16": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B16", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.16_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B16/sapmachine-jdk-14-ea.16_linux-ppc64_bin.tar.gz", + "checksum": "010b912d4fee77125c4ace49f0420bf06e20e36af2297019c232cc35d6d4a5d1" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.16_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B16/sapmachine-jdk-14-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "c5e7b4f8d5d0ec7e49291afac400c94b1df22c3ae62a8db9283c397fd4291d53" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.16_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B16/sapmachine-jdk-14-ea.16_linux-x64_bin.tar.gz", + "checksum": "429d820c0b568456fe787ad1ebcfdc27f8f311641d054124bd81d16e2a64233f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.16_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B16/sapmachine-jdk-14-ea.16_osx-x64_bin.tar.gz", + "checksum": "a38e5c16db71f6435f64340928f88fd2bd5a944dbc27f6066889c8f47edf2f56" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.16_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B16/sapmachine-jdk-14-ea.16_osx-x64_bin.dmg", + "checksum": "24a323ea530db447b5429a303151bd0d489169e2f98754782ef74fc1e3042560" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.16_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B16/sapmachine-jdk-14-ea.16_windows-x64_bin.zip", + "checksum": "c46ce40f1252be6b0a8521bce9d6939e93ac6feb93a71a08cceae1e2276a4b17" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B16/sapmachine-jdk-14-ea.16_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.16_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B16/sapmachine-jre-14-ea.16_linux-ppc64_bin.tar.gz", + "checksum": "3f71882e66279f954efce50a808e1a72eec61b610cb289115a6f61e6c585b962" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.16_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B16/sapmachine-jre-14-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "44f848871630b3565baa85428825250256e294b04f4d82318e9241f811501b6e" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.16_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B16/sapmachine-jre-14-ea.16_linux-x64_bin.tar.gz", + "checksum": "d97b9bbc77faa4e1538b20644d86925854d88580468afbd3a86a4e04ab56ac1f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.16_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B16/sapmachine-jre-14-ea.16_osx-x64_bin.tar.gz", + "checksum": "72c018d07fc3ab06cc5d2025e8b5341dc9a0c46d50799beb86435753c71c86f7" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.16_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B16/sapmachine-jre-14-ea.16_osx-x64_bin.dmg", + "checksum": "1de19773197c84e46e37eb3b5e1afc69ed5fad1979a6bdc1d6bbb0c6791f2229" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.16_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B16/sapmachine-jre-14-ea.16_windows-x64_bin.zip", + "checksum": "69f07a26628a365e8ecabfaf9d299308375a1c2e380be0d109c24a6189c30f6f" + } + } + } + } + }, + "sapmachine-14+15": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B15", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.15_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B15/sapmachine-jdk-14-ea.15_linux-ppc64_bin.tar.gz", + "checksum": "5282b1c8edf6ee08301b281d12a0322923281e5e983a5ba843f3d2cfd5623bfd" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.15_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B15/sapmachine-jdk-14-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "1db0ebbaa66e7eb3eb8a05a6809364c107d9b1275a4278420d5c2db68710b2ee" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.15_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B15/sapmachine-jdk-14-ea.15_linux-x64_bin.tar.gz", + "checksum": "3d27f849c478233ef8a91d52173708e10bea384731128fdb1dd6725b9107fd75" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.15_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B15/sapmachine-jdk-14-ea.15_osx-x64_bin.tar.gz", + "checksum": "e032cf65cf4a90e1845dd872ca6433c81f3bb21d0812d98acc0ecaafe1933c34" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.15_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B15/sapmachine-jdk-14-ea.15_osx-x64_bin.dmg", + "checksum": "3e1c652a19289b3b3dda10adca55cb164d8d80e793895e0c1a4738df843cdf35" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.15_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B15/sapmachine-jre-14-ea.15_linux-ppc64_bin.tar.gz", + "checksum": "e0ce280a4bcf3ddfe526b9fe44907a4f32dbdce3a1eaefa8c39386133fc919f9" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.15_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B15/sapmachine-jre-14-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "c33fb32f6e4b0a7104bed7a767d5b0468a6698ea907b414a72d0d09ff3923631" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.15_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B15/sapmachine-jre-14-ea.15_linux-x64_bin.tar.gz", + "checksum": "53f55a84f4cc163bd9bdcded70a15e9d15f8a73515fcace9b0191ba30d0a8157" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.15_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B15/sapmachine-jre-14-ea.15_osx-x64_bin.tar.gz", + "checksum": "ff638f72a4d23167124afd17dd468c06dc9d3fded9da8467d39159fdf1467afc" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.15_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B15/sapmachine-jre-14-ea.15_osx-x64_bin.dmg", + "checksum": "b846b300979d370856b088d3a64f53bb3f408ea49df48b9b73cc3f592570b6de" + } + } + } + } + }, + "sapmachine-14+14": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B14", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.14_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B14/sapmachine-jdk-14-ea.14_linux-ppc64_bin.tar.gz", + "checksum": "3aef21e952cdc3ffc7ef6702a896eba945c09037fb19901a2135f171741c2a8b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.14_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B14/sapmachine-jdk-14-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "da27100d4597424a36630818c6aa15cb0384524af3044891da190c9a06ee4914" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.14_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B14/sapmachine-jdk-14-ea.14_linux-x64_bin.tar.gz", + "checksum": "7811383a563a32aaab1766903bfc6b6e02ef7fe3566bf0dba16a993d1701ae74" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.14_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B14/sapmachine-jdk-14-ea.14_osx-x64_bin.tar.gz", + "checksum": "2e1def83a0a2cf17f3e5a02821cac29e5063a60b0194b89f0fcdb08847eb588d" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.14_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B14/sapmachine-jdk-14-ea.14_osx-x64_bin.dmg", + "checksum": "e9be358c28708a7fc47392ce41ba1ffff15099b49e806b75b862c31bc0235e1e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.14_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B14/sapmachine-jdk-14-ea.14_windows-x64_bin.zip", + "checksum": "a5fb7491bb72953da7316ec583e0de55f8bfe9342d06a64f788c57cdfb498ca5" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B14/sapmachine-jdk-14-ea.14_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.14_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B14/sapmachine-jre-14-ea.14_linux-ppc64_bin.tar.gz", + "checksum": "30484ef4c7ad1fad45ffce04777333d414266b67839748e2139b8b89a332264b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.14_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B14/sapmachine-jre-14-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "6e873b36533d88859c82f2bfdf1e5ffa06edb246c3445def0a989bc1dca7d8ac" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.14_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B14/sapmachine-jre-14-ea.14_linux-x64_bin.tar.gz", + "checksum": "1f7d6f80b122f7d3c7a7637a1c3106f56f7651119cfe11e3c03a110f89f45684" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.14_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B14/sapmachine-jre-14-ea.14_osx-x64_bin.tar.gz", + "checksum": "96a0c4157d8aeea5353a2badf87bfcda71239fd042a516625a97054537435dd2" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.14_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B14/sapmachine-jre-14-ea.14_osx-x64_bin.dmg", + "checksum": "5fc37c1fcbef6b9585db497468f6fb0fcd74d67f859e4b00e91b9bd221be6da2" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.14_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B14/sapmachine-jre-14-ea.14_windows-x64_bin.zip", + "checksum": "638945cc7a518968666191e1f3402887a1671cba724803a0d1835aa3941eddd1" + } + } + } + } + }, + "sapmachine-14+13": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B13", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.13_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B13/sapmachine-jdk-14-ea.13_linux-ppc64_bin.tar.gz", + "checksum": "59da87ffb7902a669aa919eb7e02cbae637e75cdf7cde7ce8e5727556f966acd" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.13_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B13/sapmachine-jdk-14-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "826e4043956c2899abf71e26f3b39ef72559841e66ed3639fdc9a2243a0a3b01" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.13_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B13/sapmachine-jdk-14-ea.13_linux-x64_bin.tar.gz", + "checksum": "02771232bf4275a04909220a1c90e4d3878d390aad5d455cfebde502c32ce66a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.13_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B13/sapmachine-jdk-14-ea.13_osx-x64_bin.tar.gz", + "checksum": "15d2b8a539094cb7e89557c818d8bc27df9c6ab5fcdd9d4297faca4c3bbd62d1" + }, + "dmg": { + "name": "sapmachine-jdk-14-ea.13_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B13/sapmachine-jdk-14-ea.13_osx-x64_bin.dmg", + "checksum": "0dc0f82b30b99688bf5fbf8a9a622b88ec90018b3ce8f2e632d0aa096157150c" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.13_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B13/sapmachine-jdk-14-ea.13_windows-x64_bin.zip", + "checksum": "0dda164fb61fc389ec99902e52e6ff5dc59ad3e0ec9f07f86341e270863c2a95" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B13/sapmachine-jdk-14-ea.13_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.13_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B13/sapmachine-jre-14-ea.13_linux-ppc64_bin.tar.gz", + "checksum": "7a308560a1f77bd11f4dd83847f5e3aa2925ef8e4b4e33017dba8215f3c19ae4" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.13_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B13/sapmachine-jre-14-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "b3fd3cfdd61f7190a4417cefb6ab838ccb11bfe996016f8fdfb165b03b9bf8db" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.13_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B13/sapmachine-jre-14-ea.13_linux-x64_bin.tar.gz", + "checksum": "9192538fc38147ed52f91709f30c7769d63c08d79e34bcd7c7234abc0d84cd1c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.13_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B13/sapmachine-jre-14-ea.13_osx-x64_bin.tar.gz", + "checksum": "9c0aa0676f20880afa1f8a1d3760e39fd8cc2e891d3989674b53fdd973caea32" + }, + "dmg": { + "name": "sapmachine-jre-14-ea.13_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B13/sapmachine-jre-14-ea.13_osx-x64_bin.dmg", + "checksum": "18367a4239e63ca36b93d82b4f617585cb70eb76181108479d1b2b87d51c1c02" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.13_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B13/sapmachine-jre-14-ea.13_windows-x64_bin.zip", + "checksum": "aeb799ec876ad6c3e42f105dbcc902f957d7836fc4980bdba51fb712c466d161" + } + } + } + } + }, + "sapmachine-14+12": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B12", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.12_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B12/sapmachine-jdk-14-ea.12_linux-ppc64_bin.tar.gz", + "checksum": "35dee46f04ad93812ad26a70f487430318552f0780431e4ea4c739b4439b2ef1" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.12_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B12/sapmachine-jdk-14-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "1a9a48c5312ad018f7be391d43785feab86fb61fa21ffb42cb6fab2a08715ee2" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.12_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B12/sapmachine-jdk-14-ea.12_linux-x64_bin.tar.gz", + "checksum": "a65d8d8a483cdfa2209c84bd3ec88b8019ccec5b4e25571b978b5d889908e5ce" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.12_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B12/sapmachine-jdk-14-ea.12_osx-x64_bin.tar.gz", + "checksum": "1c11a0ddf07a5c5efbcee56f5ab469dd1e7337d65712afe05d846982871c79b9" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.12_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B12/sapmachine-jdk-14-ea.12_windows-x64_bin.zip", + "checksum": "0577f025685e6158e73d80c39657665045123499e528b6baf98c796c8c2e447c" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B12/sapmachine-jdk-14-ea.12_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.12_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B12/sapmachine-jre-14-ea.12_linux-ppc64_bin.tar.gz", + "checksum": "ec294e408a5365dcfd5c894035ac0b3803b7e027170f5bc859f6ea3f26ae4c97" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.12_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B12/sapmachine-jre-14-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "ee752d6cfeaccbeab7d1bf920d47da61340e64cf2a64032664278cc0a802b676" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.12_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B12/sapmachine-jre-14-ea.12_linux-x64_bin.tar.gz", + "checksum": "d52d51316078e673c56bbb3f2d4c679bcad5aac78658de6a5a17a560fc4a33cf" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.12_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B12/sapmachine-jre-14-ea.12_osx-x64_bin.tar.gz", + "checksum": "99c61ec957e8d0978ef105390e2d4c61da89ca49bd54d9797e869b3eef0d9d9f" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.12_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B12/sapmachine-jre-14-ea.12_windows-x64_bin.zip", + "checksum": "1faaf31db8016303b3291ed792eab198fad723f8a324fc7f7a4dba221baf4667" + } + } + } + } + }, + "sapmachine-14+11": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B11", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.11_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B11/sapmachine-jdk-14-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "e6d188da1083e85c378efe2e41e680e0eb9f59606659676d639f6aca35dfda18" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.11_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B11/sapmachine-jdk-14-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "43f549fc21c1554270921575c3734c3c70bccfea2095b757eddaa35ad00e4974" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.11_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B11/sapmachine-jdk-14-ea.11_linux-x64_bin.tar.gz", + "checksum": "e05dc20dd7bb151365db1ef395bcc88ae100d827cf5b248e922381023fbc23dd" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.11_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B11/sapmachine-jdk-14-ea.11_osx-x64_bin.tar.gz", + "checksum": "7b6b929c36e35303bfdbcb75a8af13812c5c0b53c18af8161cc38627f6a649c4" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.11_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B11/sapmachine-jdk-14-ea.11_windows-x64_bin.zip", + "checksum": "fc3c77bffba4b3f37d46d648530ac433483b2ecfb18e65e9fb9e255677931233" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B11/sapmachine-jdk-14-ea.11_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.11_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B11/sapmachine-jre-14-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "b6e80191e5b8c45ae10566673d606190c9cce6cb64ff40c103197601f399e4d9" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.11_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B11/sapmachine-jre-14-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "28ca32e5cc7ddbc091c46f480e257917cbdcc9f1531d8f2261687f2563a2a21e" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.11_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B11/sapmachine-jre-14-ea.11_linux-x64_bin.tar.gz", + "checksum": "d830faaec9d8686d4f05689a13edde2264b07b0d080f32d7ae5990d1deda5ec9" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.11_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B11/sapmachine-jre-14-ea.11_osx-x64_bin.tar.gz", + "checksum": "51402dace15bea6ea5dff679bd26c81a05ccdedc37b189f41a177f88c9d25d22" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.11_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B11/sapmachine-jre-14-ea.11_windows-x64_bin.zip", + "checksum": "2e9edacd8dca62db6424ea11316a95467453565c83a3dc48c71bf098bdf8db61" + } + } + } + } + }, + "sapmachine-14+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.10_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B10/sapmachine-jdk-14-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "8d197f814529695b993943eeea7cab6f2cbda2d6e8b24e9290da9095011cd29f" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.10_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B10/sapmachine-jdk-14-ea.10_linux-x64_bin.tar.gz", + "checksum": "04f05d9819768d69c8d8e28b4ac635e239e3d73bba48b1d6c8c2fa0d123acc31" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.10_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B10/sapmachine-jdk-14-ea.10_osx-x64_bin.tar.gz", + "checksum": "218aee7be5512a48daebb428d1755adec2372f89444e7f1ec1f8937c3d6a2892" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.10_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B10/sapmachine-jre-14-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "30220c7b690a0463431a0dceb240cca3736514cce3ddfa4e6413889f36b231bc" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.10_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B10/sapmachine-jre-14-ea.10_linux-x64_bin.tar.gz", + "checksum": "0b27d3d43d3ade8d7a13caf2bf090e4d7e487aa8d3846cebfc1db47c347a3cb7" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.10_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B10/sapmachine-jre-14-ea.10_osx-x64_bin.tar.gz", + "checksum": "22c2e8e43bb43e0d31e4501b01aa32e221ba61a1d1145609c8143986c3de2f12" + } + } + } + } + }, + "sapmachine-14+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B9/sapmachine-jdk-14-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "fe78bfbbcc7d51a15ed960747302f5896c1f772f509a38bb75de1df5941d14ca" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B9/sapmachine-jdk-14-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "b993911a0a07aea41604963a31c5f78aeb82775e7bceb7e44d16b9b594d32590" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B9/sapmachine-jdk-14-ea.9_linux-x64_bin.tar.gz", + "checksum": "a1b789a40f8407fde87d30412eb09679c61336a33c2e1aa7b6a4d0e4e09f2ded" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B9/sapmachine-jdk-14-ea.9_osx-x64_bin.tar.gz", + "checksum": "1ac5e74ddc0c53334930acb2b5cd08fd6d5641ecf3fcb200a98658689682ebda" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B9/sapmachine-jdk-14-ea.9_windows-x64_bin.zip", + "checksum": "32229b611ab4fe2512861c5850f7c02a82c4d507572a8776e2b1507dd7738d03" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B9/sapmachine-jdk-14-ea.9_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B9/sapmachine-jre-14-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "56b945343fcf28b87a871b4d6e130c838fabc3e67f07eea4f1b69a64c22292f6" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B9/sapmachine-jre-14-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "1766bdf848e4887191bbfe66d430f0ecf0c1a68dd81fab91a2509ceab1bcdf50" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B9/sapmachine-jre-14-ea.9_linux-x64_bin.tar.gz", + "checksum": "9aa47d1d21a55a264a7ed25f6ed6d8efba4ad472d069863f27da5fc169a1bff8" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B9/sapmachine-jre-14-ea.9_osx-x64_bin.tar.gz", + "checksum": "00c53952dd479e499409974da0990712d895a5963872238fa9e50a5cedabaa6a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B9/sapmachine-jre-14-ea.9_windows-x64_bin.zip", + "checksum": "28715017ef11bba06ad3933e5efb115535afae0d0b48c16c34a167115915e261" + } + } + } + } + }, + "sapmachine-14+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B8/sapmachine-jdk-14-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "4bead64b9d3239d0888e24f56a8f0204ca97cce064b2664a1cd1b31fa08a3ea1" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B8/sapmachine-jdk-14-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "321d739bae8cf8b30173d84dd5278a394b41fab33d7a8b27aaea4b28efd7baf0" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B8/sapmachine-jdk-14-ea.8_linux-x64_bin.tar.gz", + "checksum": "42105220c41e48eaa07be24c603976156885373f218ddd3619a7344e1b019075" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B8/sapmachine-jdk-14-ea.8_osx-x64_bin.tar.gz", + "checksum": "8cf47bff9828f475dfe0dd5469a5755afa64e025c39dd38e84180e9cad934c88" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B8/sapmachine-jdk-14-ea.8_windows-x64_bin.zip", + "checksum": "c7398bbf3b5c3dcf3fa44aae65abbadb3f901cdc50975d51db496ae329ecdeaa" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B8/sapmachine-jdk-14-ea.8_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B8/sapmachine-jre-14-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "9deb271a5a25a403410a4908e0e7cc3b019a5cc1e05457798d86744bf9ee9db0" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B8/sapmachine-jre-14-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "898bf32d27d6bf1b1e14708ba53633d17e48a671dbd627eb7ca03c125fec3d80" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B8/sapmachine-jre-14-ea.8_linux-x64_bin.tar.gz", + "checksum": "89c13d7ec0a4a689fa4086848e414c2d1d531ebb45b7e7693b5320006f3e0b1f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B8/sapmachine-jre-14-ea.8_osx-x64_bin.tar.gz", + "checksum": "9ba7f7ca2cd0a801b2ade374d82120301c4626c65d74887a5ac5ce77a41ac900" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B8/sapmachine-jre-14-ea.8_windows-x64_bin.zip", + "checksum": "9936d75ff44c7dc7dcba265f778c815350a1f6e893f38c215f5c913c97e6a294" + } + } + } + } + }, + "sapmachine-14+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B7/sapmachine-jdk-14-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "b0e08ff6452e669613aa93990b2f7e8c52612bf66f0222f67e9009c53cb73eba" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B7/sapmachine-jdk-14-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "e6e1e63d9d2c56a50ba95b9261198e646c7fa9d0488ba79c1fa94336c29ccc42" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B7/sapmachine-jdk-14-ea.7_linux-x64_bin.tar.gz", + "checksum": "d68859a491f3ae7c22ab3acf8f18892f858e9e5b973a72598f5f8f40029cf75e" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B7/sapmachine-jdk-14-ea.7_osx-x64_bin.tar.gz", + "checksum": "62cc0cf777f35e118c20976aaace0e9f9763c08bfc7876b3f29ecffb27b47440" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B7/sapmachine-jdk-14-ea.7_windows-x64_bin.zip", + "checksum": "494cb2f986bb330d89847ceb035dfaa03809ce4352dafe4447804eab9ed1251d" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B7/sapmachine-jdk-14-ea.7_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B7/sapmachine-jre-14-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "81ad84c836ac721347596b91438afd9c69692e203e7447c4144f21476ff8445e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B7/sapmachine-jre-14-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "219ff755b115b8a537a4778bb5490248bdb517c48865ec6b8ab3105e1786b09f" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B7/sapmachine-jre-14-ea.7_linux-x64_bin.tar.gz", + "checksum": "2f43a7012348f6b789973336b18fb2d7f15d485c48f0937b7d8ef5d879062b11" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B7/sapmachine-jre-14-ea.7_osx-x64_bin.tar.gz", + "checksum": "cc9c157796d1a38be4f77397ea0fb5660de30bad2668ced0dfaf91f6f2c2e3c1" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B7/sapmachine-jre-14-ea.7_windows-x64_bin.zip", + "checksum": "d18a5eaff49b4247fc0fb92db0441bcee29d3cdc8a5dc8f7ef06d63e5fe9df81" + } + } + } + } + }, + "sapmachine-14+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B6/sapmachine-jdk-14-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "c386b4786f10afbf40517e5705a36a686086dad69a927ad9c700ca711d5110c0" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B6/sapmachine-jdk-14-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "d07d947d6e6ba4237c86dfc496c13c7919b9c32207788b228768c09d37edca0e" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B6/sapmachine-jdk-14-ea.6_linux-x64_bin.tar.gz", + "checksum": "fc5c66ae69441948b5642e8a396576af79d885f4c3630ac0472ffa5bed529fa1" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B6/sapmachine-jdk-14-ea.6_osx-x64_bin.tar.gz", + "checksum": "7f00c3020f92775de4fbf8459f462da5acd773fe6e174bfd903b39b2d51801f2" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B6/sapmachine-jdk-14-ea.6_windows-x64_bin.zip", + "checksum": "843472dccc7419ef0f201753a0919976d344eee80af2adabd8154f46639e9d53" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B6/sapmachine-jdk-14-ea.6_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B6/sapmachine-jre-14-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "8cd10c6611440acaeaea6474dd5e8ea5dca6c8b03888fe752d2c1b4bed5cfb46" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B6/sapmachine-jre-14-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "f5a4c0d2bfab4a944945b55fc2f3d404fbb31fdef3ec613006f86be65e0fec3c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B6/sapmachine-jre-14-ea.6_linux-x64_bin.tar.gz", + "checksum": "c7798ee373ccd1c0ec8e2445c83d1372098a16f73445cd1688dfdc59df87d9b9" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B6/sapmachine-jre-14-ea.6_osx-x64_bin.tar.gz", + "checksum": "270e99f7c9507ed3fe86613f7400c691b86dcf169a14e558eba737391435356c" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B6/sapmachine-jre-14-ea.6_windows-x64_bin.zip", + "checksum": "8b7da84cb48c6558c0668bec1f4c12d9e3b9b919251fddf5c5c02d19f3a7b3d2" + } + } + } + } + }, + "sapmachine-14+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B5/sapmachine-jdk-14-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "18f16ca383b79aa31f81aeaad7d535d5d21e3e383c275496780ad324b0e57318" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B5/sapmachine-jdk-14-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "73b761fb54f64fe0439b000973bbfd4af7651b8a886a073417f624c9c64d8ee0" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B5/sapmachine-jdk-14-ea.5_linux-x64_bin.tar.gz", + "checksum": "3000ebbe9f5abf2f5e9772cf6cc9abe2354799d0d09810d1831db43ec9b66660" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B5/sapmachine-jdk-14-ea.5_osx-x64_bin.tar.gz", + "checksum": "f1124f5d5bb2c359b45c010459f7fb7e8ec773f2848520082703d424e75395db" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B5/sapmachine-jdk-14-ea.5_windows-x64_bin.zip", + "checksum": "0e87039bc3903d249e9bd9e19a81a358004c37fbb0394b4d214145c794736f9a" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B5/sapmachine-jdk-14-ea.5_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B5/sapmachine-jre-14-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "0a773e5f7ff65635d6bb8d097c35947f5021d5b5ff8997003e970481f2040d7b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B5/sapmachine-jre-14-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "1e5c9372f972e2b6e50bf1c8d4140aa6990143d0c97378ed2299a74952a85ba6" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B5/sapmachine-jre-14-ea.5_linux-x64_bin.tar.gz", + "checksum": "b7ab51c2b0947296d68ceda9565f3eca67a6d7e986db6ac9d2f418576fa7c0c4" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B5/sapmachine-jre-14-ea.5_osx-x64_bin.tar.gz", + "checksum": "b2edb9fcdc639b3c700add8b7a580bd91f2145c645ffe20bfa57e1efc281aa9d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B5/sapmachine-jre-14-ea.5_windows-x64_bin.zip", + "checksum": "cef6d8260e62aec848b42e68882a958f49177cb868826cffd9900d12d8ef7c3c" + } + } + } + } + }, + "sapmachine-14+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B4/sapmachine-jdk-14-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "d97e9b6215f60a68120b0385a3aa4d6389fa5212d79bd7bfb5ceac3ce117d55b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B4/sapmachine-jdk-14-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "5bd5f487dee752988db9a2f53a9fccba5f62bc710d403c9c2e4bb203766b1732" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B4/sapmachine-jdk-14-ea.4_linux-x64_bin.tar.gz", + "checksum": "26bcbeb55139a4b0ee51e49c3905b36d38a9dbf97a6a4f601f62bb4073ae58fb" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B4/sapmachine-jdk-14-ea.4_osx-x64_bin.tar.gz", + "checksum": "c4a370855a55a905cb76bd38982fff967691ac15ffc5ee93e6e54562236cc960" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B4/sapmachine-jdk-14-ea.4_windows-x64_bin.zip", + "checksum": "b13b55caf75e3a4e44f6e3b9b0699880b525a0b2c6d11468a39b0977745fd0ad" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B4/sapmachine-jdk-14-ea.4_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B4/sapmachine-jre-14-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "f426f35ab5f995da14c6dbe1a776160ced2859344e55e6cc0af2c4543a82b10b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B4/sapmachine-jre-14-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "0a090f101ad217ea221e706cc91f8aec0afdce2abada4b1f1799d63944852ee0" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B4/sapmachine-jre-14-ea.4_linux-x64_bin.tar.gz", + "checksum": "4b027140d44995bf4a29a0dcaaa2a2a7c577a81a0074991c233f3f963ede9dfa" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B4/sapmachine-jre-14-ea.4_osx-x64_bin.tar.gz", + "checksum": "d865b1fab2b243e8235ef5d08af5382176f5a808d80d82e3c7ff7233304ba3d3" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B4/sapmachine-jre-14-ea.4_windows-x64_bin.zip", + "checksum": "10f402c905e0a0dd6a6fdc0de6db02c0d11f426a08a3178844e2c05fc4459dd2" + } + } + } + } + }, + "sapmachine-14+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B3/sapmachine-jdk-14-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "1515153e0f7bceb0af6f7de43eb558378fb8899ed576b5074436bb8e62be09e0" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B3/sapmachine-jdk-14-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "8020c459e59d4c3d090cd99e7c0186eaf73977356d29e2de72bdfa323b1098bf" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B3/sapmachine-jdk-14-ea.3_linux-x64_bin.tar.gz", + "checksum": "2787df4f39f957f180d216aaed4a0aeb70b080c27dbafc3cc0c8865f749877e0" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B3/sapmachine-jdk-14-ea.3_osx-x64_bin.tar.gz", + "checksum": "56f8f113a26b4ada267249934aa9d69743edff3f21db2642a561d5d3b9a80257" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B3/sapmachine-jdk-14-ea.3_windows-x64_bin.zip", + "checksum": "c1c11993f23fb9321a9e648e6d10a42094adeabf9006a17fec6cd70ca8ed9071" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B3/sapmachine-jdk-14-ea.3_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B3/sapmachine-jre-14-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "d0498b53c5f213c7f633a620bd2b547963f59156c371f395a9ffbc16cc74f8e4" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B3/sapmachine-jre-14-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "c19f8abc3ef0267b2769b560bedcf40164b132fedb8ad9b4866d6ef66de0f280" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B3/sapmachine-jre-14-ea.3_linux-x64_bin.tar.gz", + "checksum": "c93bf01365796563b3343a2332ed4ed7093d462ded0f4bd83a1c0ad5fe5c8e99" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B3/sapmachine-jre-14-ea.3_osx-x64_bin.tar.gz", + "checksum": "a87d830f58a1589a7c60dfb5abb9323d0f8dc3ebebeafd40754a0115a16f1ea5" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B3/sapmachine-jre-14-ea.3_windows-x64_bin.zip", + "checksum": "7b46568401b4c3805b8eba3e62f30cd9f09214ce0ecad14eec8b899cdea81db0" + } + } + } + } + }, + "sapmachine-14+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B2/sapmachine-jdk-14-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "8ad9f7e1fec2d6a6e9421e9ad477b9874cd6c134d33989e7ef78fcfbb15e3cb3" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B2/sapmachine-jdk-14-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "fe0da74a503ae51bdb3ce47da03a36e7d58a7f0d520128ad07ae5bac0f661b50" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B2/sapmachine-jdk-14-ea.2_linux-x64_bin.tar.gz", + "checksum": "6a6fb20c9cbf631ece6b77a6204e101c857a5075d9511d46d0407d2c3b43858c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B2/sapmachine-jdk-14-ea.2_osx-x64_bin.tar.gz", + "checksum": "6767d81e29f5a1f858f4bfc93959cfdf67e3c937886ace326681606fa7eec6ff" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B2/sapmachine-jdk-14-ea.2_windows-x64_bin.zip", + "checksum": "2bcc295dad73b1cfef87ec07478ddda7a0bb193bf2f407465baa6a2d5dbec360" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B2/sapmachine-jdk-14-ea.2_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B2/sapmachine-jre-14-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "bfc20ee975ff9161cd6590d7418dfc0029e4c8ea199805701966186f29df4e8f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B2/sapmachine-jre-14-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "74653eb762962b11f54ce23d2c19fe171e5a1235ba5fbab136633573ef287342" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B2/sapmachine-jre-14-ea.2_linux-x64_bin.tar.gz", + "checksum": "a4f5a0e00e3ba07be73e352cf8d53d03114bd56366070db12aab056dbb1841bc" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B2/sapmachine-jre-14-ea.2_osx-x64_bin.tar.gz", + "checksum": "32e246990f9912f91290de26644f641f3fc748b4a078705bf75c455863c636fb" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B2/sapmachine-jre-14-ea.2_windows-x64_bin.zip", + "checksum": "060131edd7a3a3fc0d3204baf87ae58b88f36eb79ca53cd6bba99e4a3430d196" + } + } + } + } + }, + "sapmachine-14+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-14%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B1/sapmachine-jdk-14-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "ba4de963d9945a8e00d08336f1d678d08bd94f4030ea3f3319871eb177615b7a" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B1/sapmachine-jdk-14-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "9059ad9d1d20c7ada52d4caccf9ec6a151d30e8cbae23aa0a4817dcbedf9c719" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B1/sapmachine-jdk-14-ea.1_linux-x64_bin.tar.gz", + "checksum": "9702281ed4017c43b4b7cfa504f1a06ea9826b318be3d649de1eb1e10bc014ea" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-14-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B1/sapmachine-jdk-14-ea.1_osx-x64_bin.tar.gz", + "checksum": "1c5999af940ef1247c745cbd9a3d1bf2fecf6c8c067f1b09111a62eae12bdd01" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-14-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B1/sapmachine-jdk-14-ea.1_windows-x64_bin.zip", + "checksum": "80f311317509e49d6b0017a7bc95638731dd3afea7cab07478ca727b4e3a09e7" + }, + "msi": { + "name": "sapmachine-jdk-14-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B1/sapmachine-jdk-14-ea.1_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B1/sapmachine-jre-14-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "fc3c97a556c7f5ab03c915f4180d110751ab7022024756be3f25138d1532ccc5" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B1/sapmachine-jre-14-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "0295f1055797c5b8a042ae988374e247564dee0cd4c8d07ca696b73040d3e801" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B1/sapmachine-jre-14-ea.1_linux-x64_bin.tar.gz", + "checksum": "3246a199209daec862ebf4ffa31a98f0d38d9495686ea77063f0d435c2d2ab5d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-14-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B1/sapmachine-jre-14-ea.1_osx-x64_bin.tar.gz", + "checksum": "72dde5e5c20cdf4d6a1093970f236ac627e796305fde2dd44b95244cc374bab2" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-14-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-14%2B1/sapmachine-jre-14-ea.1_windows-x64_bin.zip", + "checksum": "386b41f9a8896c61b6e48577c08ce11db122dd976cfe92c30376d57781170732" + } + } + } + } + } + } + }, + "lts": "false" + }, + "13": { + "updates": { + "13.0.2": { + "sapmachine-13.0.2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13.0.2", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2/sapmachine-jdk-13.0.2_linux-ppc64_bin.tar.gz", + "checksum": "2cf6cf02a80684fc3898f5cf359063d2be679e823c2b7bb161068cfaf976d68d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2/sapmachine-jdk-13.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "78cea7955959c4732e6e3845f6076275d3c353e31320738d68fd8ebd25cee373" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2/sapmachine-jdk-13.0.2_linux-x64_bin.tar.gz", + "checksum": "f45604b8f6d42ea80a4eef788a1586c85d1e7fb90af2e91aa111beb7c408d464" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2/sapmachine-jdk-13.0.2_osx-x64_bin.tar.gz", + "checksum": "52b97651e06e31b943bf3df1a42dbfae9efd1c672962ad02cb44a669f04d54f3" + }, + "dmg": { + "name": "sapmachine-jdk-13.0.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2/sapmachine-jdk-13.0.2_osx-x64_bin.dmg", + "checksum": "12f84ff3f5be670520a404024b2d6eb9eec6bd9197b478bbd0af88faed25b48d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13.0.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2/sapmachine-jdk-13.0.2_windows-x64_bin.zip", + "checksum": "b92730ec4a0bafa33957a57c5b55ee77ab5a0e09347539a34d94326a142ae863" + }, + "msi": { + "name": "sapmachine-jdk-13.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2/sapmachine-jdk-13.0.2_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2/sapmachine-jre-13.0.2_linux-ppc64_bin.tar.gz", + "checksum": "69120fcba817f13b9d6c8b06f26667a0b58e50f0fb715cfb0be2be0d835fca0e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2/sapmachine-jre-13.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "6e08da804da0e0715af32ceb24a8106149de3acc92b78879c319f2eec8dc1679" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2/sapmachine-jre-13.0.2_linux-x64_bin.tar.gz", + "checksum": "5b529c887d8a6d3972cea337e0a66c8dd0487546d3aaf6619260286eb5e47e8a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2/sapmachine-jre-13.0.2_osx-x64_bin.tar.gz", + "checksum": "8f73e49f1fb43f5b80eb5ab5dd818928d9b5b6fc5cdcae59b2c8b8e966b2d9fb" + }, + "dmg": { + "name": "sapmachine-jre-13.0.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2/sapmachine-jre-13.0.2_osx-x64_bin.dmg", + "checksum": "9258f1c497ec97ed0ef1341c661a2277f1e1d3aba8bcece8ad8d283441e37cc2" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13.0.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2/sapmachine-jre-13.0.2_windows-x64_bin.zip", + "checksum": "b57c18f51a0ab7e34b6f42f9c27c4471af31186774480b468701e594493fae0b" + }, + "msi": { + "name": "sapmachine-jre-13.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2/sapmachine-jre-13.0.2_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-13.0.2+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13.0.2%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B8/sapmachine-jdk-13.0.2-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "63a9cd7c2252c9cd9352cbcadb0ea1ec04232623cd135eb6f137276f776a9ee8" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B8/sapmachine-jdk-13.0.2-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "d8254967c8f88f388ff49f12920b1fcbe40db3f472ad7edd00b8521b63d801a9" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B8/sapmachine-jdk-13.0.2-ea.8_linux-x64_bin.tar.gz", + "checksum": "458f11af7c85a3dc5d4adbaa30db6752a88f83ab4f0365a0b5c455cd054da116" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B8/sapmachine-jdk-13.0.2-ea.8_osx-x64_bin.tar.gz", + "checksum": "9a4ffac6dca029d91233e57a11892f66e4f05351d980e1953998028f01258721" + }, + "dmg": { + "name": "sapmachine-jdk-13.0.2-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B8/sapmachine-jdk-13.0.2-ea.8_osx-x64_bin.dmg", + "checksum": "aa56b511b0dc70bfd2334035a9bf68e02401325dda5d84a938ee51560dbab7ee" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13.0.2-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B8/sapmachine-jdk-13.0.2-ea.8_windows-x64_bin.zip", + "checksum": "5a42e2638a6edbe5e121787bab04c0c38c18c3c531cc23e29ecf0d0094795e54" + }, + "msi": { + "name": "sapmachine-jdk-13.0.2-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B8/sapmachine-jdk-13.0.2-ea.8_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B8/sapmachine-jre-13.0.2-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "e4970a8700fe01859dc0e9e15dd4c43c4b33c7252e4800698ff7c7cc94a58d49" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B8/sapmachine-jre-13.0.2-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "28a3445c890caee24e64c25016eee0ef25bd9ea1ab2cdca4aeaa6a113c2dd8af" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B8/sapmachine-jre-13.0.2-ea.8_linux-x64_bin.tar.gz", + "checksum": "4267fff7e0d3d5b0262d9c0e6850ef5636cb5ec3c7f6978ea0d861df975dc2ed" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B8/sapmachine-jre-13.0.2-ea.8_osx-x64_bin.tar.gz", + "checksum": "86c612b9daf953d31b8d4138b7f4afada0e8b26ae8728cf03b1a28a0d160bb05" + }, + "dmg": { + "name": "sapmachine-jre-13.0.2-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B8/sapmachine-jre-13.0.2-ea.8_osx-x64_bin.dmg", + "checksum": "68de5d566fd4bd7512d1318a807b2027322d50e0bdcd5253332c069141009e61" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13.0.2-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B8/sapmachine-jre-13.0.2-ea.8_windows-x64_bin.zip", + "checksum": "ed3726dfa7a06dc1e7c34f2731ed16c2b6e0d4502c9d96ba29d99ef5a4802cf3" + }, + "msi": { + "name": "sapmachine-jre-13.0.2-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B8/sapmachine-jre-13.0.2-ea.8_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-13.0.2+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13.0.2%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B2/sapmachine-jdk-13.0.2-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "968e9e5ac3cae99cfd1f940d8d1b5c9851b323c5e1ae5579d971320311df41c3" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B2/sapmachine-jdk-13.0.2-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "0b432fd470fc58a9a2d7ff6710f34f58d00ff29461ed9033d1429a44d6344602" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B2/sapmachine-jdk-13.0.2-ea.2_linux-x64_bin.tar.gz", + "checksum": "ea53b5d437c4d2079b77d7ef82afe6e5451de1e33445f81a66ba57ae688c8861" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B2/sapmachine-jdk-13.0.2-ea.2_osx-x64_bin.tar.gz", + "checksum": "3fb5a123b6d8243c9730d6deda8def07db11a3b72badb3b0c6483d66ec1dc5cb" + }, + "dmg": { + "name": "sapmachine-jdk-13.0.2-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B2/sapmachine-jdk-13.0.2-ea.2_osx-x64_bin.dmg", + "checksum": "6c07dfa3b626f89c320236c6ba37155767ecf1bec691289c9db116d51679bef0" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13.0.2-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B2/sapmachine-jdk-13.0.2-ea.2_windows-x64_bin.zip", + "checksum": "1522bd8f26968018a04d7d755b7d7db8f223f08da5721138cd5935a8d5a98e7b" + }, + "msi": { + "name": "sapmachine-jdk-13.0.2-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B2/sapmachine-jdk-13.0.2-ea.2_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B2/sapmachine-jre-13.0.2-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "248dd874074f9e63336def3cbd6ad89d36aa45c0e87d8b55fd826ee0e29238c7" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B2/sapmachine-jre-13.0.2-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "1d9f457f272ddd18aa998b728706583d571d7d9e9a362bbdd0361654a0f7636e" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B2/sapmachine-jre-13.0.2-ea.2_linux-x64_bin.tar.gz", + "checksum": "235fe9896ad18b98c30bed4d86a7d3e303047de0e3176ccfb5de5b8708b6a7ce" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B2/sapmachine-jre-13.0.2-ea.2_osx-x64_bin.tar.gz", + "checksum": "9cdad0b9bd896f3f394be3d21c44a1a0b828baf58e67729549deced1941bec6d" + }, + "dmg": { + "name": "sapmachine-jre-13.0.2-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B2/sapmachine-jre-13.0.2-ea.2_osx-x64_bin.dmg", + "checksum": "6a93b2575c4b4b081a0e14d320b087c31a83e6ca93bea7695761e796d3ed9bd6" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13.0.2-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B2/sapmachine-jre-13.0.2-ea.2_windows-x64_bin.zip", + "checksum": "33bf44f4047250c11c3b857bea4871583b6996a0ce52e1dc8e4dc4e133fee62e" + }, + "msi": { + "name": "sapmachine-jre-13.0.2-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B2/sapmachine-jre-13.0.2-ea.2_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-13.0.2+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13.0.2%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B1/sapmachine-jdk-13.0.2-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "37f17ce14aba2f14f19c21594bb33c679f17390cb2325848ee44d161f4dead98" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B1/sapmachine-jdk-13.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "8640acf1c313381d33159fa59723ca53fac52fa36baebdff61f2d2e0cf910da9" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B1/sapmachine-jdk-13.0.2-ea.1_linux-x64_bin.tar.gz", + "checksum": "e396ddea90996a811875de73814abe357ce4cc9c682aeb884a74bb6894a970b8" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.2-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B1/sapmachine-jdk-13.0.2-ea.1_osx-x64_bin.tar.gz", + "checksum": "b54041ba5eb6ee7fb07e7e67151c1b5e9846c1585ffa126d70f0b3eca2ab0af7" + }, + "dmg": { + "name": "sapmachine-jdk-13.0.2-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B1/sapmachine-jdk-13.0.2-ea.1_osx-x64_bin.dmg", + "checksum": "04eddd92272618e5e5548904f0a5c690a9d2cc2e077cb542153cca30f7a63f04" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13.0.2-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B1/sapmachine-jdk-13.0.2-ea.1_windows-x64_bin.zip", + "checksum": "a56a72551b8f110d7eb7baefbd221f3e1332e5e9eadaee678bc2fe842ae7ec3d" + }, + "msi": { + "name": "sapmachine-jdk-13.0.2-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B1/sapmachine-jdk-13.0.2-ea.1_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B1/sapmachine-jre-13.0.2-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "409f2c3e71c1dea83b83f2f41fe4b7ea9a24b3017a8848b48c071c8f45bb5627" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B1/sapmachine-jre-13.0.2-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "a0cd74fa2458bd878dbf3d8e5593b43072abd512ad1f78a8d20276aa54d2dfe5" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B1/sapmachine-jre-13.0.2-ea.1_linux-x64_bin.tar.gz", + "checksum": "73422e2d0d9cc66c45e851f9db4615a72e2316dd02e46666c652eca2c609e9ec" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.2-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B1/sapmachine-jre-13.0.2-ea.1_osx-x64_bin.tar.gz", + "checksum": "458af7df7daa0c7f5545e2d480d654b65ea13723e6594dd9c108ed39b4064b79" + }, + "dmg": { + "name": "sapmachine-jre-13.0.2-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B1/sapmachine-jre-13.0.2-ea.1_osx-x64_bin.dmg", + "checksum": "114807533388a329aa611272f0928c2dc36340f7cc1e905aa17fe381227fd02e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13.0.2-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.2%2B1/sapmachine-jre-13.0.2-ea.1_windows-x64_bin.zip", + "checksum": "9fed94597d822f681be2b2c9951ec391fb647923a1cff38cc5f22d3788e95307" + } + } + } + } + } + }, + "13.0.1": { + "sapmachine-13.0.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13.0.1", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1/sapmachine-jdk-13.0.1_linux-ppc64_bin.tar.gz", + "checksum": "93efde2453aa3c4f36df9e3b1e2b1297d1e0879b91ffb4200444f0c53930815f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1/sapmachine-jdk-13.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "aa1ee7f0e64e331e2b9d51dd4dd63281591fd39508364b00da5d10a6f39b0482" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1/sapmachine-jdk-13.0.1_linux-x64_bin.tar.gz", + "checksum": "21b2a4d3d80bb8434235e9416d347967ca4714e1c54e49136e739b8447c87e56" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1/sapmachine-jdk-13.0.1_osx-x64_bin.tar.gz", + "checksum": "f0111c1cba6d1b1042724df7d28f2a274981bd90fbfe6c940ca5cc9ceddd8825" + }, + "dmg": { + "name": "sapmachine-jdk-13.0.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1/sapmachine-jdk-13.0.1_osx-x64_bin.dmg", + "checksum": "7b77d7eb6dd625fac75b857d6ead53f946fd905e73c463a24f8e3c7e93706a20" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13.0.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1/sapmachine-jdk-13.0.1_windows-x64_bin.zip", + "checksum": "916b5d947391fbe31c9955267e4c6ad5fc17e64c9450aa4573678450297b7b8b" + }, + "msi": { + "name": "sapmachine-jdk-13.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1/sapmachine-jdk-13.0.1_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1/sapmachine-jre-13.0.1_linux-ppc64_bin.tar.gz", + "checksum": "c76c69f8e7bb3e23471aa6dcc3b4b22b0a8e8def27db18d7f14057a21e7e9b1a" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13.0.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1/sapmachine-jre-13.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "88323b033b3c4cd9f1d9f25d0d40435c7cd54efca49215bb20432bf24021f8b9" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1/sapmachine-jre-13.0.1_linux-x64_bin.tar.gz", + "checksum": "a359d59b054c1c233c6d428e5b8b4c54c40c2786cbc1613894c769470e78f95a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1/sapmachine-jre-13.0.1_osx-x64_bin.tar.gz", + "checksum": "405a22c2894373fdd1c06be1d103adad863c540881515e1ea6d1ccb87d175575" + }, + "dmg": { + "name": "sapmachine-jre-13.0.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1/sapmachine-jre-13.0.1_osx-x64_bin.dmg", + "checksum": "4c3079e0a86dbd6eb2856b6338ec85efb4eebce095c6a01359aa0d68d11ef540" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13.0.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1/sapmachine-jre-13.0.1_windows-x64_bin.zip", + "checksum": "6edb380acd6db46fe6f131e83dd0136a8a543a6d34e121cd4d6fe63588c9c29f" + }, + "msi": { + "name": "sapmachine-jre-13.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1/sapmachine-jre-13.0.1_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-13.0.1+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13.0.1%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.1-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1%2B9/sapmachine-jdk-13.0.1-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "7556ffaf487bd2de49236fe1c8626fde887abf85f97db390600f890d5210181b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.1-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1%2B9/sapmachine-jdk-13.0.1-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "75802cdfd8a07f1e6509436cc0a85f691b7cc66aa1a1316e5d73accf6e65e77c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.1-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1%2B9/sapmachine-jdk-13.0.1-ea.9_linux-x64_bin.tar.gz", + "checksum": "165474f9351323eb81fa272958674ba5c74fda622805fb80652da2c47e6e15b0" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13.0.1-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1%2B9/sapmachine-jdk-13.0.1-ea.9_osx-x64_bin.tar.gz", + "checksum": "917c345cc4b63dd7579992eb2e3330482559aa71b5361d46b7b4db9767dac9dd" + }, + "dmg": { + "name": "sapmachine-jdk-13.0.1-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1%2B9/sapmachine-jdk-13.0.1-ea.9_osx-x64_bin.dmg", + "checksum": "00baebc672cdf8e3eb1a87ae7bfce0528733330573aac98330a80c0430a70bb7" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13.0.1-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1%2B9/sapmachine-jdk-13.0.1-ea.9_windows-x64_bin.zip", + "checksum": "47f18b7c082f09d507635b1d7ecff076382f958ab0bc56202cbdea61c342585f" + }, + "msi": { + "name": "sapmachine-jdk-13.0.1-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1%2B9/sapmachine-jdk-13.0.1-ea.9_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.1-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1%2B9/sapmachine-jre-13.0.1-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "5a21423dee4e8ae9cc0b936f00c9907c0a52b5c95990e9e636f3a4bb554c21be" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13.0.1-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1%2B9/sapmachine-jre-13.0.1-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "da8083e1f5f8cf6814f40343a3cc9fec707f8fe33d2316073f36b6cdf942965b" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.1-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1%2B9/sapmachine-jre-13.0.1-ea.9_linux-x64_bin.tar.gz", + "checksum": "7554386cdf4c0c3d3b4c50fe52869964b579195258cf6ff0cedaf052267e462a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13.0.1-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1%2B9/sapmachine-jre-13.0.1-ea.9_osx-x64_bin.tar.gz", + "checksum": "bb10a2c743c34b7cee510cf1100c56e045dcd020d11f9e191b44895308c06aaf" + }, + "dmg": { + "name": "sapmachine-jre-13.0.1-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1%2B9/sapmachine-jre-13.0.1-ea.9_osx-x64_bin.dmg", + "checksum": "073eaa8779ddbf7833b920d9a9c29a7a9583a0c25a285f2405010ba89d3abd48" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13.0.1-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13.0.1%2B9/sapmachine-jre-13.0.1-ea.9_windows-x64_bin.zip", + "checksum": "05f952fa671afaab587311115238d95b4210f6473c191a428a16c760fa65d0de" + } + } + } + } + } + }, + "13": { + "sapmachine-13": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13/sapmachine-jdk-13_linux-ppc64_bin.tar.gz", + "checksum": "c33045cd306e738d4144fc76f98ab376040b66079810c76b991f83ec3b755652" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13/sapmachine-jdk-13_linux-ppc64le_bin.tar.gz", + "checksum": "c01787bda514d2ef0b1d90afbef4261cac707273fe042f855d72d1e3166a10c0" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13/sapmachine-jdk-13_linux-x64_bin.tar.gz", + "checksum": "0b779a4b4cbc24e26c28ccdca6e62fc04f34e746774a54f5077cc7a2d321eb9c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13/sapmachine-jdk-13_osx-x64_bin.tar.gz", + "checksum": "08bd76c0525bc6e7e782a747c4dc17b59d88e8013a3f0870569efba909b105c8" + }, + "dmg": { + "name": "sapmachine-jdk-13_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13/sapmachine-jdk-13_osx-x64_bin.dmg", + "checksum": "d4f85394cb02db999baa906dedf51897b7b99189cd4c44f298c305529ee0cb2a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13/sapmachine-jdk-13_windows-x64_bin.zip", + "checksum": "3823d88d764cb301afa16c3c91cf98d226bf031ad174518fb01909f3c0ee1b05" + }, + "msi": { + "name": "sapmachine-jdk-13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13/sapmachine-jdk-13_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13/sapmachine-jre-13_linux-ppc64_bin.tar.gz", + "checksum": "0e77d934bab481251e4a9c683ad80062492b50343fde2107f789cc869852f4df" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13/sapmachine-jre-13_linux-ppc64le_bin.tar.gz", + "checksum": "dc015ad7b636a8edda73079f5201cf149029483e77e330e10bdc2de6a0b8d198" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13/sapmachine-jre-13_linux-x64_bin.tar.gz", + "checksum": "4b51e8343854deb9ec3a76c8e3d7b2ec5d05ddaa85b5e10eb095c55972d21dd8" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13/sapmachine-jre-13_osx-x64_bin.tar.gz", + "checksum": "8d9ea521ced26ca63ee07f1d08e657f210cc5a180279bf41f93179467ae8a717" + }, + "dmg": { + "name": "sapmachine-jre-13_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13/sapmachine-jre-13_osx-x64_bin.dmg", + "checksum": "22c4514298981d74ea470fd3f7ee27dbf16dc510f6894aee9d3e5fd7a7a3eef9" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13/sapmachine-jre-13_windows-x64_bin.zip", + "checksum": "ce0a8325d1c8e481cf9c5213f1a51ecb9381a4e48870da9765607cfe497521be" + } + } + } + } + }, + "sapmachine-13+33": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B33", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.33_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B33/sapmachine-jdk-13-ea.33_linux-ppc64_bin.tar.gz", + "checksum": "14db26cc16d45116a5508a3c9479f917d26136808863062139634bf3d22ba010" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.33_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B33/sapmachine-jdk-13-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "f3fd63eaddf8c772d097228a13b2189f7af2ca2ae9351761e2e55340360df304" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.33_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B33/sapmachine-jdk-13-ea.33_linux-x64_bin.tar.gz", + "checksum": "5cb8ab4e74c06cc25d4bb508217ecde2651456643a49030e6400bb3274510772" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.33_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B33/sapmachine-jdk-13-ea.33_osx-x64_bin.tar.gz", + "checksum": "158a56a348e3ec9a980231292a1fa101213e217a39f87017b0f7f17f7736d016" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.33_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B33/sapmachine-jdk-13-ea.33_windows-x64_bin.zip", + "checksum": "c4616c2635352b69e00c421f68109db734498e56c3ee00363fb6cca0a63498d5" + }, + "msi": { + "name": "sapmachine-jdk-13-ea.33_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B33/sapmachine-jdk-13-ea.33_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.33_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B33/sapmachine-jre-13-ea.33_linux-ppc64_bin.tar.gz", + "checksum": "3e3794609342bfb764ba394037164d2c3099ad89f5e88071f51893c609012ab8" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.33_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B33/sapmachine-jre-13-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "40747e7d0de93c5b2a1b0769f4240d5d61cd48469404b865e73c57974ac57c1e" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.33_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B33/sapmachine-jre-13-ea.33_linux-x64_bin.tar.gz", + "checksum": "8fad73114091feab3e0f07ed4a660025a75737c38f690ab35a5fdaa0809db69e" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.33_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B33/sapmachine-jre-13-ea.33_osx-x64_bin.tar.gz", + "checksum": "ec728ac4b41353293e5b73686a45bb9ba69f0ecdafa1106345cc3b95be6cfae5" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.33_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B33/sapmachine-jre-13-ea.33_windows-x64_bin.zip", + "checksum": "4323b06c0fd3f86bad7034fb1f93d249aa89c76097f604227bfabd298256aa19" + } + } + } + } + }, + "sapmachine-13+32": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B32", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.32_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B32/sapmachine-jdk-13-ea.32_linux-ppc64_bin.tar.gz", + "checksum": "76aa006827dcf82ef020957e8ceebfc27862e223304d48e29f0618ec48e754f0" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.32_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B32/sapmachine-jdk-13-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "a93af74cd6dc2d7f863d0cdd40c62883db23aa76deb89555a5b499d4938dc01c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.32_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B32/sapmachine-jdk-13-ea.32_linux-x64_bin.tar.gz", + "checksum": "e611b9c47729f722fefe8c8212f72f7c30001b6e4991b7ffc4c7abe839cb71a4" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.32_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B32/sapmachine-jdk-13-ea.32_osx-x64_bin.tar.gz", + "checksum": "04ea9c3fc3ee7798eba81697f0b9ccaaf66aacd6b5bbd4a49a955905b443bbad" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.32_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B32/sapmachine-jdk-13-ea.32_windows-x64_bin.zip", + "checksum": "aa79ef1127e13ae9dbf10430e3c7ede5e438c83874da7e40a712c72c8498ce7a" + }, + "msi": { + "name": "sapmachine-jdk-13-ea.32_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B32/sapmachine-jdk-13-ea.32_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.32_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B32/sapmachine-jre-13-ea.32_linux-ppc64_bin.tar.gz", + "checksum": "74ec550e538980fab2e7ef6d7dd066af5d2b86a8b8c0073627a90adc8b743c83" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.32_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B32/sapmachine-jre-13-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "2f3f92030e64bc5a817e1a1a0ef1cbc7fb251161b7f036a5b8af2a9dfc07e88a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.32_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B32/sapmachine-jre-13-ea.32_linux-x64_bin.tar.gz", + "checksum": "c41d2ea861c5cf082c95106f18d87c5ded6909b8dcc907718685400482b04eab" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.32_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B32/sapmachine-jre-13-ea.32_osx-x64_bin.tar.gz", + "checksum": "10040d0b273b77fdc9c1327acbcd340ee2d8f2097a1960e62ea50d3d98e70cdf" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.32_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B32/sapmachine-jre-13-ea.32_windows-x64_bin.zip", + "checksum": "1809003d57d10a5838e22815553b1b82478fdd637e5665c3f62c78af6ab76d91" + } + } + } + } + }, + "sapmachine-13+31": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B31", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.31_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B31/sapmachine-jdk-13-ea.31_linux-ppc64_bin.tar.gz", + "checksum": "d67855e217252599f87c0415c03b0c4dfc04ccf41ebc51b68281f6019d8e0876" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.31_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B31/sapmachine-jdk-13-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "f11ecb1f1e1262fd3be7ad558b01feddfd15cf54b97f473e548f22ca50f2cfdc" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.31_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B31/sapmachine-jdk-13-ea.31_linux-x64_bin.tar.gz", + "checksum": "ea1c2cb87a727fe1a813f73d8ea51aaefacc625651b2787902965940490b7eb3" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.31_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B31/sapmachine-jdk-13-ea.31_osx-x64_bin.tar.gz", + "checksum": "ba0980495853ee163e9d0b0d6d94cd78d24de8eae2016c6c10369508789288b9" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.31_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B31/sapmachine-jdk-13-ea.31_windows-x64_bin.zip", + "checksum": "7b211ac677c434367acd0315b0119df23aee404a10471363049646817d91afba" + }, + "msi": { + "name": "sapmachine-jdk-13-ea.31_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B31/sapmachine-jdk-13-ea.31_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.31_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B31/sapmachine-jre-13-ea.31_linux-ppc64_bin.tar.gz", + "checksum": "3dd94031b65b1dbef6645f23a0a850370fe11fb51818d64e4eab027eabef25de" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.31_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B31/sapmachine-jre-13-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "bb03152f73cfb6e663cd1bff45eeeea12804b4cec36956e502f23995c96fc28e" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.31_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B31/sapmachine-jre-13-ea.31_linux-x64_bin.tar.gz", + "checksum": "bdb7fce92dde00edf109298eeb4c7c0afe34c0c0a235adf1a15537b90b4cc0d9" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.31_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B31/sapmachine-jre-13-ea.31_osx-x64_bin.tar.gz", + "checksum": "15d05dc95deb01c126a5fe43729bfd81ae12a1275370f90cbb64e2f0ac73ca86" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.31_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B31/sapmachine-jre-13-ea.31_windows-x64_bin.zip", + "checksum": "51dac2394cf909311d2a6e5e2182d7d00cccfa5b90e61a2adfdd98dfef388388" + } + } + } + } + }, + "sapmachine-13+30": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B30", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.30_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B30/sapmachine-jdk-13-ea.30_linux-ppc64_bin.tar.gz", + "checksum": "3f6cfbcbbb02e49772ab3471b48fd067f96625a7f2b3888c3a9ca0cd4a8ecdf1" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.30_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B30/sapmachine-jdk-13-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "71cfce36a3a13cebcdc0621d554c28ee64212ac23ade522526426a8a1e4faf28" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.30_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B30/sapmachine-jdk-13-ea.30_linux-x64_bin.tar.gz", + "checksum": "e3e8bb782a25ef90613148d4eead6220467b9ea91bebf6c2c91f29c28b366c26" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.30_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B30/sapmachine-jdk-13-ea.30_osx-x64_bin.tar.gz", + "checksum": "d866299a27b4efeaf45095030b9f717d8f19c9ffff904c8f4434ca6a6352c482" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.30_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B30/sapmachine-jdk-13-ea.30_windows-x64_bin.zip", + "checksum": "73abd621a85085105bb6e29d0ef0154d2a3e94f0dab92386e9862769dd82ee47" + }, + "msi": { + "name": "sapmachine-jdk-13-ea.30_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B30/sapmachine-jdk-13-ea.30_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.30_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B30/sapmachine-jre-13-ea.30_linux-ppc64_bin.tar.gz", + "checksum": "6bf93e598d3763f30325e2cb3ba5964a1ec4a65dec4b06f4e1e8d63bb17c4919" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.30_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B30/sapmachine-jre-13-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "fd2dc89576d31f063febd4d134e877119282a4cb965da6640114d79386e46b94" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.30_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B30/sapmachine-jre-13-ea.30_linux-x64_bin.tar.gz", + "checksum": "08203613fb9d5c9ec8a8dcac178dc96620c44dbc8b302f11e12298e204ce6efe" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.30_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B30/sapmachine-jre-13-ea.30_osx-x64_bin.tar.gz", + "checksum": "446d7c584c91bb25015e4a8f71d02d1c5880415273f1e9a0255c044363d757a6" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.30_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B30/sapmachine-jre-13-ea.30_windows-x64_bin.zip", + "checksum": "cda009114f53e301500b77530aea2ca948732239739ab32db0b2ad94240ea1a0" + } + } + } + } + }, + "sapmachine-13+29": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B29", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.29_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B29/sapmachine-jdk-13-ea.29_linux-ppc64_bin.tar.gz", + "checksum": "272e5941156916fcbd182e25e19aef06998c5655e83c5c2c442cd01beaa7bf5b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.29_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B29/sapmachine-jdk-13-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "5e9398b37b8ab992a78ae90b5ecca39650ec7c69ec614e7e096edad6af63fcb7" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.29_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B29/sapmachine-jdk-13-ea.29_linux-x64_bin.tar.gz", + "checksum": "66cc42df4225bd4e3193fe4c872b86b226091e67e24a708fb602e83afacbd280" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.29_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B29/sapmachine-jdk-13-ea.29_osx-x64_bin.tar.gz", + "checksum": "90b1ccb7ac301b03856e9f81108df4b792e2f19f92091860d14fbd6250c5ffbc" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.29_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B29/sapmachine-jdk-13-ea.29_windows-x64_bin.zip", + "checksum": "4e1226c26eca190bb721f410d0dabf633857cd2bebc962ad513ddb1eb2d43124" + }, + "msi": { + "name": "sapmachine-jdk-13-ea.29_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B29/sapmachine-jdk-13-ea.29_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.29_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B29/sapmachine-jre-13-ea.29_linux-ppc64_bin.tar.gz", + "checksum": "4bd92d3359300c47d89ee63a62e2cf2199e3b41e23d70dcd8b7e0c8b049e913f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.29_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B29/sapmachine-jre-13-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "9ed11e53fe25b5ad6e02bb6c4a8808178edd903529cc05e3e995c6823b6bc8ce" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.29_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B29/sapmachine-jre-13-ea.29_linux-x64_bin.tar.gz", + "checksum": "dc6aa9bba181953e18b12e926870407ae34c52da8d5d920cd5fc456b1e487d25" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.29_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B29/sapmachine-jre-13-ea.29_osx-x64_bin.tar.gz", + "checksum": "4ade8f70e24a7aea1a0679f8ef39d2d5d1d3c4ed3917115d27317da8e2af3677" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.29_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B29/sapmachine-jre-13-ea.29_windows-x64_bin.zip", + "checksum": "624e4e5abf53cc524928e7ac8441ed92d807c493b0feada66c5bbf89602e54f1" + } + } + } + } + }, + "sapmachine-13+28": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B28", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.28_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B28/sapmachine-jdk-13-ea.28_linux-ppc64_bin.tar.gz", + "checksum": "3d2ca6434d95308567ae5e7cc7ada4d9dd5269248d7f878e09e25e183df6a67e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.28_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B28/sapmachine-jdk-13-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "fa0e0f662d73713797e5ac04a4a039b2b8e1ba6c1af5451bbf612a3d60b94d2e" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.28_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B28/sapmachine-jdk-13-ea.28_linux-x64_bin.tar.gz", + "checksum": "1ecae05728f1768af0b67137c96a72d7612cc1466981a4f91c065b4dce8e9861" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.28_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B28/sapmachine-jdk-13-ea.28_osx-x64_bin.tar.gz", + "checksum": "6d3c001d1663be9340c5a145a5372cd3197cf7337a3e1fe72e21b8d0458e80b8" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.28_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B28/sapmachine-jdk-13-ea.28_windows-x64_bin.zip", + "checksum": "61c36cd91ddffd6735dacdf079934552c39e56395f49442b98cbddc4e1dea65a" + }, + "msi": { + "name": "sapmachine-jdk-13-ea.28_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B28/sapmachine-jdk-13-ea.28_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.28_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B28/sapmachine-jre-13-ea.28_linux-ppc64_bin.tar.gz", + "checksum": "f69b34124cfb4bf8b8f6c72b2d3f45ac77a00816986e2e3535c196029e6913df" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.28_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B28/sapmachine-jre-13-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "d38b675ea7ff3666b0e960cf7bb2829bd5fb4fb77cb89d06b2d2aab7471daa2b" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.28_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B28/sapmachine-jre-13-ea.28_linux-x64_bin.tar.gz", + "checksum": "5364f0c6d1db2efa965bad1b706bf6c89f77465b4120ebb2ee6780a6def708d6" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.28_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B28/sapmachine-jre-13-ea.28_osx-x64_bin.tar.gz", + "checksum": "8c199acc430b85e7799ab268438710d018e153d65e5adf58af9a6a3720b45af1" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.28_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B28/sapmachine-jre-13-ea.28_windows-x64_bin.zip", + "checksum": "4b5c2e63b03e5df3ba8a16f48f943cca745888630e308866af01dad3b73e9589" + } + } + } + } + }, + "sapmachine-13+27": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B27", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.27_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B27/sapmachine-jdk-13-ea.27_linux-ppc64_bin.tar.gz", + "checksum": "1ece8b1a27dc12b81d0809b942d431c7ed6673f9186e80e80c2c94c729dbe57d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.27_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B27/sapmachine-jdk-13-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "faace1aa47fca74b5a2e04ba56618bb17a4c2aa6ada515a085cea5d6884565b1" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.27_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B27/sapmachine-jdk-13-ea.27_linux-x64_bin.tar.gz", + "checksum": "ff086eb26fcb47cb733c5faf94f117ec5935a0acc738e941278fb767eee0aef3" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.27_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B27/sapmachine-jdk-13-ea.27_osx-x64_bin.tar.gz", + "checksum": "09a4b69b8deb0d861cde8b9dec40b025132984f80d7920d23eef97422017ceda" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.27_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B27/sapmachine-jdk-13-ea.27_windows-x64_bin.zip", + "checksum": "4026e39b72beddda545f07a5effdd670f56bdf87380dc7d788c9c07fe8ee1ade" + }, + "msi": { + "name": "sapmachine-jdk-13-ea.27_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B27/sapmachine-jdk-13-ea.27_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.27_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B27/sapmachine-jre-13-ea.27_linux-ppc64_bin.tar.gz", + "checksum": "5a2e810ce042ee9e79784598af35da803b5e46a058d89a72024f2a918d2d6879" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.27_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B27/sapmachine-jre-13-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "12cd0ebcf84e97a068985a18be4a621236bed185a63ed88920384b308887ee31" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.27_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B27/sapmachine-jre-13-ea.27_linux-x64_bin.tar.gz", + "checksum": "353dee4dad875e4ba902051acd74c7b72acab950fc27367954cb387ed23d64a4" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.27_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B27/sapmachine-jre-13-ea.27_osx-x64_bin.tar.gz", + "checksum": "a58aa823fd3d477345ec7c372599435dbe81675aab076ce8814a8951f7d288be" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.27_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B27/sapmachine-jre-13-ea.27_windows-x64_bin.zip", + "checksum": "547dd35c69bbd1700a257f4ea23bcde1a8f6d1f65f198fa9396e64e63c05f6b0" + } + } + } + } + }, + "sapmachine-13+26": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B26", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.26_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B26/sapmachine-jdk-13-ea.26_linux-ppc64_bin.tar.gz", + "checksum": "2dc3fda674611145362113cd21d8be0429c8e1c6954680f2c2716d66d6b3acc6" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.26_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B26/sapmachine-jdk-13-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "1f764b2bbfcd1f574730f22ee4d1433b5be00cf6b468b6631afc2719b2550ba7" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.26_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B26/sapmachine-jdk-13-ea.26_linux-x64_bin.tar.gz", + "checksum": "0d2487368ee77c42363b2f0e8a7b685967558561d408cd441230346016286a3e" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.26_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B26/sapmachine-jdk-13-ea.26_osx-x64_bin.tar.gz", + "checksum": "0ec82dccbd918510b39460d70016d73f2a74d34c078160f18c704aa657aa776a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.26_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B26/sapmachine-jdk-13-ea.26_windows-x64_bin.zip", + "checksum": "c029d80a9640f40053e4472ce7fc65933ff8e4c931b954a4980a5a3d9c8a3a72" + }, + "msi": { + "name": "sapmachine-jdk-13-ea.26_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B26/sapmachine-jdk-13-ea.26_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.26_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B26/sapmachine-jre-13-ea.26_linux-ppc64_bin.tar.gz", + "checksum": "16673e4ca1b6b7ab6306548957143f36f0dc73f0e7b7a21ff0f250bc8f8dcc43" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.26_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B26/sapmachine-jre-13-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "b8dd9bcb2808e4121c117614a964513ce8afbab20ee2b965f805d019aac76667" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.26_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B26/sapmachine-jre-13-ea.26_linux-x64_bin.tar.gz", + "checksum": "acd5cfb1e6418400d73e0a0bd647f1c626751d413a1232d9e04a111c565232be" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.26_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B26/sapmachine-jre-13-ea.26_osx-x64_bin.tar.gz", + "checksum": "78df3e8e951eb0537f3f853f5d30afb1579314c47fc19620e201e7c412c1ac1f" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.26_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B26/sapmachine-jre-13-ea.26_windows-x64_bin.zip", + "checksum": "baec234b6caaaa940c7ef401ffe1c683a2b9092b9b4dc9936ba41739f8e94e7b" + } + } + } + } + }, + "sapmachine-13+25": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B25", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.25_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B25/sapmachine-jdk-13-ea.25_linux-ppc64_bin.tar.gz", + "checksum": "7ccb83c70fbe13fee2ad1bc4cb8ff0639196bf59bc64bcf60e7057c30d3650ee" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.25_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B25/sapmachine-jdk-13-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "3e94442b586b1d793a8c65b88c8ae2b9f2ae92b4cc294852d33713487d83ddaa" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.25_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B25/sapmachine-jdk-13-ea.25_linux-x64_bin.tar.gz", + "checksum": "280eb17f215d4296f1cea3e0c3d2ea55af57aa557bdb6b4cf6c235db963b6ce6" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.25_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B25/sapmachine-jdk-13-ea.25_osx-x64_bin.tar.gz", + "checksum": "ba2bb962d3427301c28362f96383290e4632c78deb8fd5afb8d54d552d8c9bd1" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.25_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B25/sapmachine-jdk-13-ea.25_windows-x64_bin.zip", + "checksum": "1ae86d2b9344c850e2aa468776a8d4eec71df3e8e7aaf19dff8b3259b53b2b6a" + }, + "msi": { + "name": "sapmachine-jdk-13-ea.25_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B25/sapmachine-jdk-13-ea.25_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.25_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B25/sapmachine-jre-13-ea.25_linux-ppc64_bin.tar.gz", + "checksum": "ebc9d49373e6949501241d9dc6fcb45bc654cb571ecede7d45ceaed5cd7ea99b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.25_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B25/sapmachine-jre-13-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "0913ad12ec9e751d6409fa616125f79d197e5b7d77197b0d86625b403b161856" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.25_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B25/sapmachine-jre-13-ea.25_linux-x64_bin.tar.gz", + "checksum": "720ec68d9f941dc5513958d9037a04bec65d675e37357619c37d4f05a0bce5ab" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.25_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B25/sapmachine-jre-13-ea.25_osx-x64_bin.tar.gz", + "checksum": "9efcc459b0f704e85e8283698afb475d334642f99bd75075c3a8896108d0dd43" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.25_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B25/sapmachine-jre-13-ea.25_windows-x64_bin.zip", + "checksum": "d0211855e7a7f220aba572ddaaae891d0ebee79a03822c8280088e305e32ce3b" + } + } + } + } + }, + "sapmachine-13+24": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B24", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.24_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B24/sapmachine-jdk-13-ea.24_linux-ppc64_bin.tar.gz", + "checksum": "7cc5e3f2a68070666a9e0575c7034b163c9500a83f6de3eee00a7a44f722657b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.24_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B24/sapmachine-jdk-13-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "a82e610f7094bfb9635ea5e2e65cef5f44077d0fe7e338f879f403346e75a65d" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.24_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B24/sapmachine-jdk-13-ea.24_linux-x64_bin.tar.gz", + "checksum": "42f1e953a99e778c8afad5d6014731439daea7e28f196a4b3aab8c0097ee7514" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.24_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B24/sapmachine-jdk-13-ea.24_osx-x64_bin.tar.gz", + "checksum": "56c1b9bff932941dfa97f4f5adf0e62bbf42dfd79d9c6415314e0e48be167ffb" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.24_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B24/sapmachine-jdk-13-ea.24_windows-x64_bin.zip", + "checksum": "48210f150ff475fe03a9b5344b9b043b208b400ddb8d50bb0e198d22a8d58e6d" + }, + "msi": { + "name": "sapmachine-jdk-13-ea.24_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B24/sapmachine-jdk-13-ea.24_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.24_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B24/sapmachine-jre-13-ea.24_linux-ppc64_bin.tar.gz", + "checksum": "29c328e983decee18594d41356026514e86e6eee8a18e71dd817d0c7d1fe4fcd" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.24_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B24/sapmachine-jre-13-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "6413b16a81f3fdb3c69a1f2230301b0941a3c61b733632e55b4b74f096e98a1e" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.24_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B24/sapmachine-jre-13-ea.24_linux-x64_bin.tar.gz", + "checksum": "859459b1c426e287bc04ba6f8434817c8a3f18b09ce828e3e16afa958145093e" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.24_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B24/sapmachine-jre-13-ea.24_osx-x64_bin.tar.gz", + "checksum": "92de1615ca201028a4f39cd614c2a32fb5b5f52ebe5f055bb955bb69f18d4cba" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.24_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B24/sapmachine-jre-13-ea.24_windows-x64_bin.zip", + "checksum": "dd6253859f3460794c3b9647e028e0b06b93449a22c19c0b22f4848cf9db5213" + } + } + } + } + }, + "sapmachine-13+23": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B23", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.23_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B23/sapmachine-jdk-13-ea.23_linux-ppc64_bin.tar.gz", + "checksum": "99ab710413696d6a6644a401e3c4744eb6164bb1c11736ade344fc1456c3d422" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.23_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B23/sapmachine-jdk-13-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "771139c872a800df068d834b78e146681ce7cc572f1971cbbfe4d3a657c25e21" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.23_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B23/sapmachine-jdk-13-ea.23_linux-x64_bin.tar.gz", + "checksum": "2550ba1a35f331dba54964aa6147a1b7890ba71f904c35f1b044b60e3cef481d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.23_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B23/sapmachine-jdk-13-ea.23_osx-x64_bin.tar.gz", + "checksum": "df9ee680f33251abab8b2cb449bdfb793b6fb1bcdcc532f551ab8402f701fea7" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.23_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B23/sapmachine-jre-13-ea.23_linux-ppc64_bin.tar.gz", + "checksum": "5181117bb5a5cb0105f0ece7fd484b91672ec2e311ce8038bbfd0bc7b9cf918a" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.23_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B23/sapmachine-jre-13-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "e631428b6a6f83702f4fbba4633079661b48b6faaa12af346f562f8addaafff9" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.23_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B23/sapmachine-jre-13-ea.23_linux-x64_bin.tar.gz", + "checksum": "acbaba7ce11b8243632ccead0fbaf3dd8b63469d8a80a340e957361df6dc23eb" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.23_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B23/sapmachine-jre-13-ea.23_osx-x64_bin.tar.gz", + "checksum": "c3224fea9d4af851839a19ac54d9213292db2bd8aed96f9fa3e5b1d66c13ff90" + } + } + } + } + }, + "sapmachine-13+22": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B22", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.22_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B22/sapmachine-jdk-13-ea.22_linux-ppc64_bin.tar.gz", + "checksum": "2bfb221ff0ebd744d9663484c486d5268f5a2e556326328ab4bcbb76ce7f201c" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.22_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B22/sapmachine-jdk-13-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "88aa5e0555bce7269ff258207e23f6fd2b51a30b4e01e704d24ad81e8a6ec402" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.22_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B22/sapmachine-jdk-13-ea.22_linux-x64_bin.tar.gz", + "checksum": "5c64c7c6a40a157a3f56328c818be0589576dd96d976251e219fdf2e52253015" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.22_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B22/sapmachine-jdk-13-ea.22_osx-x64_bin.tar.gz", + "checksum": "3732f7f848e3281e33673b3595a6a85bdcff221cb41d8edcae9613041072472c" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.22_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B22/sapmachine-jre-13-ea.22_linux-ppc64_bin.tar.gz", + "checksum": "e617849bb7ab3f818483594a10009757f9ebc7d503eaeec541b662578e1090a7" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.22_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B22/sapmachine-jre-13-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "754adbf293e22c5b582c39508e64cb534db6154c33bc816fea5164c3242e8ee0" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.22_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B22/sapmachine-jre-13-ea.22_linux-x64_bin.tar.gz", + "checksum": "bf49a96ed4cfebb091305bdf88f8ffb167a60b29c48165d0e5b9bb0882f90cdb" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.22_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B22/sapmachine-jre-13-ea.22_osx-x64_bin.tar.gz", + "checksum": "37f57b587f1b54789d404c3d09d4679bc009d67c19b5e19b8e51a6dbfc43c573" + } + } + } + } + }, + "sapmachine-13+21": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B21", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.21_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B21/sapmachine-jdk-13-ea.21_linux-ppc64_bin.tar.gz", + "checksum": "d01df5f29a5e208f0c36365aa3a2044a9c70563b4686586cbe7b8d496fb94f7b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.21_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B21/sapmachine-jdk-13-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "a527fb9f76d8ca298491fc1e07d054182717f7f045f359829729493e552c7f78" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.21_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B21/sapmachine-jdk-13-ea.21_linux-x64_bin.tar.gz", + "checksum": "731e13d729a7387ba8e4b1cd3564440e93d13782ab4306f6b3737a1a856c1bf8" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.21_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B21/sapmachine-jdk-13-ea.21_osx-x64_bin.tar.gz", + "checksum": "1159024f6a6c13160aaa04d9e104d6e29a4b8071b998bfebd77dbe1c5059dcd4" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.21_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B21/sapmachine-jdk-13-ea.21_windows-x64_bin.zip", + "checksum": "554a679fccb8d25e393a64f314674330de65a3ddc659175c81cabe9469280cdf" + }, + "msi": { + "name": "sapmachine-jdk-13-ea.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B21/sapmachine-jdk-13-ea.21_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.21_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B21/sapmachine-jre-13-ea.21_linux-ppc64_bin.tar.gz", + "checksum": "5bc1a48a5d510bc0d597bb0cca2c73c464c558bbc044c22ebc70f8268ae693f7" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.21_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B21/sapmachine-jre-13-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "d429eb42c9d312a32f14c78ca95a76e274fbfeceed2c2c81749f7d7feb3f7955" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.21_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B21/sapmachine-jre-13-ea.21_linux-x64_bin.tar.gz", + "checksum": "fd001702d61e343ec57ac3846863b7243822756b2b989981a4d73f0d566eb657" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.21_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B21/sapmachine-jre-13-ea.21_osx-x64_bin.tar.gz", + "checksum": "4f13d39921005b5cb1fe272e826c88cac64324b4fbd9ecbe5502e7ffe9234852" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.21_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B21/sapmachine-jre-13-ea.21_windows-x64_bin.zip", + "checksum": "a9d4cec79ef71809fd6b1c1bd7b7cae81cc80675ad9e554c20930aaef8190962" + } + } + } + } + }, + "sapmachine-13+20": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B20", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.20_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B20/sapmachine-jdk-13-ea.20_linux-ppc64_bin.tar.gz", + "checksum": "df100363f18a0c78fc6095a01da543925a03b3491fbddb00bcb5661119950b6e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.20_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B20/sapmachine-jdk-13-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "c8c168539a83825dceab595fdd457194b455efe17e06815665f1ae4c585b29fb" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.20_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B20/sapmachine-jdk-13-ea.20_linux-x64_bin.tar.gz", + "checksum": "2551a06b9c3d8b87c213d8c848bf8b09d6523f892796fdf23109d297cd1c4d6a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.20_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B20/sapmachine-jdk-13-ea.20_osx-x64_bin.tar.gz", + "checksum": "130277dc6f3615a66bde4b79d9083e8a0041f02c1b2c4643422d1ad8b0a30308" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.20_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B20/sapmachine-jdk-13-ea.20_windows-x64_bin.zip", + "checksum": "c6d6ab36cd1892b106ad1c6643d67491c05de9b49b41cdb7c2ac52bdab4e2c98" + }, + "msi": { + "name": "sapmachine-jdk-13-ea.20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B20/sapmachine-jdk-13-ea.20_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.20_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B20/sapmachine-jre-13-ea.20_linux-ppc64_bin.tar.gz", + "checksum": "1dac116c0660b448802fa3a186ef8b68efb993c4db684bb1950b3d0f5bd8db9b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.20_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B20/sapmachine-jre-13-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "bd93269a87a6bd807ecf31605c2b3b5d8f93f09811b0b0da8a59f18d66c2250a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.20_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B20/sapmachine-jre-13-ea.20_linux-x64_bin.tar.gz", + "checksum": "1033af1c06e03842b120014aa0c8880270704eb8bd718a551b58d5d26a63e15c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.20_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B20/sapmachine-jre-13-ea.20_osx-x64_bin.tar.gz", + "checksum": "a4a702f108a4ed78a6c9af6441f9b0d10a7dd08217c5ca9abf9a3e66239c303b" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.20_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B20/sapmachine-jre-13-ea.20_windows-x64_bin.zip", + "checksum": "30458e887e0541c35c7d8a9dfeaeb93a2af1d4de73d91f287476fc28ef28b426" + } + } + } + } + }, + "sapmachine-13+19": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B19", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.19_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B19/sapmachine-jdk-13-ea.19_linux-ppc64_bin.tar.gz", + "checksum": "4d1ea97a414a4cf363db45db64e734c6523334343e83cef8b65c177a05e709c8" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.19_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B19/sapmachine-jdk-13-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "724cc6f9a0290f2cbd8d6e0d8cbf5f497cb33961974cad61f36907c9003f0203" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.19_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B19/sapmachine-jdk-13-ea.19_linux-x64_bin.tar.gz", + "checksum": "abe99e1c333cde74967d9e023d188ad222d25ac2145ab7f8f877ecc0eea7b3ec" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.19_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B19/sapmachine-jdk-13-ea.19_osx-x64_bin.tar.gz", + "checksum": "034d36bf935cf2db5117a1b2f2db80697e45718bdd1dfff897e173c7b0df57f2" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.19_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B19/sapmachine-jdk-13-ea.19_windows-x64_bin.zip", + "checksum": "42e27342ad115e554d90f5182964327386b4b28ee9389ad261b0648c32e81cfb" + }, + "msi": { + "name": "sapmachine-jdk-13-ea.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B19/sapmachine-jdk-13-ea.19_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.19_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B19/sapmachine-jre-13-ea.19_linux-ppc64_bin.tar.gz", + "checksum": "0af435f61b52b3c6eac32c5296aa48e9b46bdb06f43e0a4b753eb56dcf05e745" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.19_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B19/sapmachine-jre-13-ea.19_linux-ppc64le_bin.tar.gz", + "checksum": "44281b310b20f53c5b8572595e5943589737de3d6ce302dfa121c43fe0f64583" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.19_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B19/sapmachine-jre-13-ea.19_linux-x64_bin.tar.gz", + "checksum": "a5dac897add087521f438e50abced39f66a90492435e9438c97f6d13835783be" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.19_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B19/sapmachine-jre-13-ea.19_osx-x64_bin.tar.gz", + "checksum": "d2e3e2b4b4d738e403c3467d9b2348ab732d28bae2e9c6287d28a11476f9f148" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.19_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B19/sapmachine-jre-13-ea.19_windows-x64_bin.zip", + "checksum": "5bf365722e356cb761ceb3ae057f529e180132466ca2da0229878c6165434093" + } + } + } + } + }, + "sapmachine-13+18": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B18", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.18_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B18/sapmachine-jdk-13-ea.18_linux-ppc64_bin.tar.gz", + "checksum": "4575c036b995520485121c1aa58109aa728a97de7c7f029f89c23e1c98723e4d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.18_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B18/sapmachine-jdk-13-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "a29af02c6abbd4ef9777d79c7baf2eeb2e0425f84b87353f6d510a2be4f594d2" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.18_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B18/sapmachine-jdk-13-ea.18_linux-x64_bin.tar.gz", + "checksum": "45f55532eb426f7ca4b7a0f5eb476f89675d8612532dab9dc63373f86e2bf6a9" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.18_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B18/sapmachine-jdk-13-ea.18_osx-x64_bin.tar.gz", + "checksum": "6d58b5eb84e41567f55acbbd9995c5c574a49834a5022a2d0fa82f521f03254f" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.18_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B18/sapmachine-jdk-13-ea.18_windows-x64_bin.zip", + "checksum": "e1a12ee0f673ca2e8399a936381c57c4654bc6df05e93ceb8c6c54da4edd2486" + }, + "msi": { + "name": "sapmachine-jdk-13-ea.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B18/sapmachine-jdk-13-ea.18_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.18_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B18/sapmachine-jre-13-ea.18_linux-ppc64_bin.tar.gz", + "checksum": "5d8c3c7c4ff7f8d286a11b145b7f15294a29be86f5e81a7409757c2e3d5780ed" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.18_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B18/sapmachine-jre-13-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "969a7171ba1bb7fe6acaab7f3f0e4386d52952c16e7a2ae4c4910b60f3a17a13" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.18_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B18/sapmachine-jre-13-ea.18_linux-x64_bin.tar.gz", + "checksum": "54771334690a0087e4ec4f9291375977231c930b240505aa61a4c028345f482f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.18_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B18/sapmachine-jre-13-ea.18_osx-x64_bin.tar.gz", + "checksum": "fa4259f417b1fdbf068a6f033edd91370aa5b9c80953e3844c003e4ef11c40b4" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.18_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B18/sapmachine-jre-13-ea.18_windows-x64_bin.zip", + "checksum": "d2aa2096faaefeb53d388d7a705fc4d615e70f836341c0c24af2e2f804783214" + } + } + } + } + }, + "sapmachine-13+17": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B17", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.17_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B17/sapmachine-jdk-13-ea.17_linux-ppc64_bin.tar.gz", + "checksum": "de2758389c4b9a94f209d8d6a5641167f78bf774cd1e988e9edf32aaf264a78e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.17_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B17/sapmachine-jdk-13-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "073076d788b71120487383840e0a38791c3e6848d15b7365e68ae5a1326bee30" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.17_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B17/sapmachine-jdk-13-ea.17_linux-x64_bin.tar.gz", + "checksum": "497faa11635c26816bf88c68b6872805f33dcbc76779f44ff5709611da18eccd" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.17_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B17/sapmachine-jdk-13-ea.17_osx-x64_bin.tar.gz", + "checksum": "40cff249708e4dbb7fc4fe631d71103d083bcd4ea5fd81714893d0d8cd737a73" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.17_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B17/sapmachine-jdk-13-ea.17_windows-x64_bin.zip", + "checksum": "f6f4b525fa525b12af7c424027886323dce320309ba99484b2fe3311ce6814dd" + }, + "msi": { + "name": "sapmachine-jdk-13-ea.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B17/sapmachine-jdk-13-ea.17_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.17_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B17/sapmachine-jre-13-ea.17_linux-ppc64_bin.tar.gz", + "checksum": "2924b8141a318d1ccc323f53ef7c256f6c956dc219a7dce307c74a6b25dc1739" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.17_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B17/sapmachine-jre-13-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "926fd6471331d1783726a9c35baf1bb1106c6cbc808aaad78eece5e6f1293468" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.17_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B17/sapmachine-jre-13-ea.17_linux-x64_bin.tar.gz", + "checksum": "332d1f7cf835991c5ed70860fd6ef2f148942e579cb64629e06c921d0a0bb60f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.17_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B17/sapmachine-jre-13-ea.17_osx-x64_bin.tar.gz", + "checksum": "52fa60113e141577a29270bf9882c54eb5e0285b86ddad599fd82aaed3422df8" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.17_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B17/sapmachine-jre-13-ea.17_windows-x64_bin.zip", + "checksum": "6a52e260832d67d5451883f57868b0ac8e46a0e6b473aaeee781f553e45a5726" + } + } + } + } + }, + "sapmachine-13+16": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B16", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.16_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B16/sapmachine-jdk-13-ea.16_linux-ppc64_bin.tar.gz", + "checksum": "3f06b621c8ae0d6b5144aafbe972b0912cce250adfef540196a7b9f5f01026d3" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.16_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B16/sapmachine-jdk-13-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "3105e64f8176d970d44b253805b85d5d4751765e99a21c57c36a67a2a33bfbf6" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.16_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B16/sapmachine-jdk-13-ea.16_linux-x64_bin.tar.gz", + "checksum": "d6df8eff800dfc6feeffff52b8216e2f68a33dbe913ed848d93a01a1b8bd01f5" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.16_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B16/sapmachine-jdk-13-ea.16_osx-x64_bin.tar.gz", + "checksum": "6e3e88636163245ae3931f42c29ade10673d1aa315decdd5f231ad49060a6357" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.16_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B16/sapmachine-jdk-13-ea.16_windows-x64_bin.zip", + "checksum": "e58b3faeb4bdf8af5cfb7cfee7794a27ed565ae0e46b548e42ba0d5ebd1c8ebd" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.16_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B16/sapmachine-jre-13-ea.16_linux-ppc64_bin.tar.gz", + "checksum": "f528194d85f15dc11459ada018dda506feb2ecc77a68d0ad7beaaa7c5a48529a" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.16_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B16/sapmachine-jre-13-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "c4d1a91a0920b646ee8be86948fe5aa09664750eeb8e77c791eeb71d0f52e9f9" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.16_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B16/sapmachine-jre-13-ea.16_linux-x64_bin.tar.gz", + "checksum": "09394a401af015816f1da973a6209f9f710f2692ecf6717c2a7e6f626691042f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.16_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B16/sapmachine-jre-13-ea.16_osx-x64_bin.tar.gz", + "checksum": "b2d6fc3d637b5194e396bf753e243616b008e44d49a51fbaf10583cd0e1069d9" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.16_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B16/sapmachine-jre-13-ea.16_windows-x64_bin.zip", + "checksum": "d9f6c8ccdd54eccc6597bb676262dd23d9e9fc22d8ae444ebcc2ad4b4ca41608" + } + } + } + } + }, + "sapmachine-13+15": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B15", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.15_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B15/sapmachine-jdk-13-ea.15_linux-ppc64_bin.tar.gz", + "checksum": "b6a2e4118e1d583d5ae5b261b939af1c61558c7192eca303cb9fe060f651764a" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.15_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B15/sapmachine-jdk-13-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "ef7897cbe3d3a0564a069e8aa9c43c9b88ee88361fb905863be3d5cbd7f7381b" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.15_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B15/sapmachine-jdk-13-ea.15_linux-x64_bin.tar.gz", + "checksum": "59908708186d6ef199a6e5aa65648417f2632da87929cabd146778d38a12af76" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.15_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B15/sapmachine-jdk-13-ea.15_osx-x64_bin.tar.gz", + "checksum": "1ef2fe744297b312075adc5a493ec795ddeba6807926efea3842dcd33ede4c70" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.15_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B15/sapmachine-jdk-13-ea.15_windows-x64_bin.zip", + "checksum": "f6b2c1d30ded956ef7359fa67de7609f5435e47040958421bcd8407d0af4e471" + }, + "msi": { + "name": "sapmachine-jdk-13+15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B15/sapmachine-jdk-13%2B15_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.15_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B15/sapmachine-jre-13-ea.15_linux-ppc64_bin.tar.gz", + "checksum": "f7b8bd81df80ef2039fcc31c7811984ffd64c78bea59e77276b82f0417f885f2" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.15_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B15/sapmachine-jre-13-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "6bd01c2e6069d0663eb16305ee814b978970cfca234d76e0ca6f3c82529e42fb" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.15_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B15/sapmachine-jre-13-ea.15_linux-x64_bin.tar.gz", + "checksum": "13165891a9b4be90de7c82bace10ab601c08a369d54070e5e47e916a2bd7116f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.15_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B15/sapmachine-jre-13-ea.15_osx-x64_bin.tar.gz", + "checksum": "882d97ba9695f3dbee78b53832ea1d9d6a69c1a5db894d6404d7181793719f97" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.15_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B15/sapmachine-jre-13-ea.15_windows-x64_bin.zip", + "checksum": "abac49b9d2f35b817410a200a978d52a9f689021c934834d331b19ef7f94400d" + } + } + } + } + }, + "sapmachine-13+14": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B14", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.14_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B14/sapmachine-jdk-13-ea.14_linux-ppc64_bin.tar.gz", + "checksum": "a1ba0ab011b80827e587699aa5b15b622dea656a98c67075e0ed628d8def9893" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.14_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B14/sapmachine-jdk-13-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "b10be1cd5aec6711ed910b98c08babf708e31990d2f4cc39c4cf70532c9441a7" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.14_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B14/sapmachine-jdk-13-ea.14_linux-x64_bin.tar.gz", + "checksum": "bc46c1e01029274c053366ed689edc4b7b97d09e6fc20669cae73255f37d323a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.14_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B14/sapmachine-jdk-13-ea.14_osx-x64_bin.tar.gz", + "checksum": "95783886f95504f31e13ed179ed91e92c03151609bc5ed24f5c53da294130560" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.14_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B14/sapmachine-jdk-13-ea.14_windows-x64_bin.zip", + "checksum": "3219ca2eee9eb08761cb641319a4d9dd2902315a07106b38106612285de4b3d0" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.14_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B14/sapmachine-jre-13-ea.14_linux-ppc64_bin.tar.gz", + "checksum": "3891289acf371afd9e665b2a7f2bcdc85e37c2af2a3d13a638a30dc0c66d597c" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.14_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B14/sapmachine-jre-13-ea.14_linux-ppc64le_bin.tar.gz", + "checksum": "a3bab7e6325be9004f1f2e926f867372ea9df6f2c17bea494706b99dc5ac94a4" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.14_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B14/sapmachine-jre-13-ea.14_linux-x64_bin.tar.gz", + "checksum": "8517923e4a2967bc809d83cb437b3ffb9b1192049bdce871816e28d4341ce8e6" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.14_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B14/sapmachine-jre-13-ea.14_osx-x64_bin.tar.gz", + "checksum": "26fff469aaa434d8d441441cfe166ca6e9af3cf03d1f7d728131cd07d46caa9a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.14_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B14/sapmachine-jre-13-ea.14_windows-x64_bin.zip", + "checksum": "b73e019890be601db6e9db6da71acece3a5887008b02f7744b36d76bf2bdb6ff" + } + } + } + } + }, + "sapmachine-13+13": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B13", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.13_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B13/sapmachine-jdk-13-ea.13_linux-ppc64_bin.tar.gz", + "checksum": "2832fb465ea4cfab69a9f31ee5fa0f5902f67cc7384318f3fe07b772cd193f36" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.13_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B13/sapmachine-jdk-13-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "c6304e506c52ca1a481ef652afa980534dabac2143d971d784c7bfdd0004f11a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.13_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B13/sapmachine-jdk-13-ea.13_linux-x64_bin.tar.gz", + "checksum": "a2efdf7344bcd246c4da04e00f98d3a1343aaf7c6d2450d0d1283b2faf5d13b9" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.13_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B13/sapmachine-jdk-13-ea.13_osx-x64_bin.tar.gz", + "checksum": "7bc1cbff7eddb3d805b720d4f763dfda809b64b960bd78252ddf842c4de7b06b" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.13_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B13/sapmachine-jdk-13-ea.13_windows-x64_bin.zip", + "checksum": "870925f972e9d0fe784bdee06c3a51c4b132815bcfcb96fb92dc498184ddef21" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.13_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B13/sapmachine-jre-13-ea.13_linux-ppc64_bin.tar.gz", + "checksum": "3808aeb7f5a9dfb97d7b822ecdeb00c10df534fc2130e5e89f89b72c05f94930" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.13_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B13/sapmachine-jre-13-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "c36e76bdde83804bf6c8c09ec9643b9e09cf2714bcf033074d7994705c3e5e5d" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.13_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B13/sapmachine-jre-13-ea.13_linux-x64_bin.tar.gz", + "checksum": "859a95f9ffa12334cda7ca72166cd27768c57e19dcd97c3b83f3e4bb61c698f1" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.13_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B13/sapmachine-jre-13-ea.13_osx-x64_bin.tar.gz", + "checksum": "8b6aeade1c624fc081dba3fd6544c9055453e0a2e07d3ad90d5bb4d739088a4a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.13_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B13/sapmachine-jre-13-ea.13_windows-x64_bin.zip", + "checksum": "ab1ef714e898f08a523cedb38781d213111ac2f56037f4cd91d17977b2672ff4" + } + } + } + } + }, + "sapmachine-13+12": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B12", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.12_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B12/sapmachine-jdk-13-ea.12_linux-ppc64_bin.tar.gz", + "checksum": "a9a84ddd651191572930c37cd9b8abd34eb5c8a4fe81f2256238642aab151da4" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.12_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B12/sapmachine-jdk-13-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "57b8fb9f0b0bbc80b52622cd9f5115c2eba5429a564ba0981779d2068e4fdcfd" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.12_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B12/sapmachine-jdk-13-ea.12_linux-x64_bin.tar.gz", + "checksum": "5fc5e8fecbaa72967581a812b175fa00a42d01461fee1a951ede5f204e220b82" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.12_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B12/sapmachine-jdk-13-ea.12_osx-x64_bin.tar.gz", + "checksum": "38e60fc72a79cfcb804cc6f01b80a06701d4149a8755c5a2fe5a2fa2cf2499b7" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.12_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B12/sapmachine-jdk-13-ea.12_windows-x64_bin.zip", + "checksum": "da2254803a9092e7a9dbdf76c8521c48c1295558059376198512a63fe02c9af9" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.12_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B12/sapmachine-jre-13-ea.12_linux-ppc64_bin.tar.gz", + "checksum": "0546f3a604fa41a45ee08a0bc8106047369f647760d468ef7224af0063163772" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.12_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B12/sapmachine-jre-13-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "16aa9580d96f02858ece6cc4bfd723e8e4d9c18ece95c5a7c7cffa14d55d36f6" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.12_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B12/sapmachine-jre-13-ea.12_linux-x64_bin.tar.gz", + "checksum": "bafb90d00dba3bc2b4bfe61cc8e019c4263a76f2faa54dcc73c663a4c0b9a4b6" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.12_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B12/sapmachine-jre-13-ea.12_osx-x64_bin.tar.gz", + "checksum": "057203452a33db679b7c701ea3c75ad17bf78d0578c2585ad0eb418442c4a0a5" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.12_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B12/sapmachine-jre-13-ea.12_windows-x64_bin.zip", + "checksum": "4f8ae2452d99e6702bea4c02bd308b3b527778abb61e3d290c932abb1e532894" + } + } + } + } + }, + "sapmachine-13+11": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B11", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.11_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B11/sapmachine-jdk-13-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "b95e0970b2c5231f25d1c7924300b05ac925d5a85bb750fedcf52c25c801bbcb" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.11_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B11/sapmachine-jdk-13-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "ce7e2f63dda575dd8e2460ea6ce793ae15841189c7346dd4a00e90d46aa0d8b7" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.11_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B11/sapmachine-jdk-13-ea.11_linux-x64_bin.tar.gz", + "checksum": "38af2bc908dcecac2aba0d2de89a6816835c6972ea0cd693ed1c0e02f5ca2488" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.11_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B11/sapmachine-jdk-13-ea.11_osx-x64_bin.tar.gz", + "checksum": "8cf863c4f3f30f468f435cec2ebde60054e660357317b0c3417eabf937f335ec" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.11_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B11/sapmachine-jdk-13-ea.11_windows-x64_bin.zip", + "checksum": "418bf9a27742e49bb58b321294258600ad5a3949e7b090cac34e3646acf7803c" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.11_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B11/sapmachine-jre-13-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "3fe768219b0fc182781b14a0d027d0ab5af290551e34243009d1a46a75fc093a" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.11_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B11/sapmachine-jre-13-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "49ddc72d9ae701b4e49b661e85e96139a0c74de68bf82d73a52e6c2158b15095" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.11_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B11/sapmachine-jre-13-ea.11_linux-x64_bin.tar.gz", + "checksum": "cc5f545c2ebf9b6bdfaade4999390003ed959513f0ca4b9fa9f15c55fe6eb6d2" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.11_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B11/sapmachine-jre-13-ea.11_osx-x64_bin.tar.gz", + "checksum": "fa23d1b6537f85a8b6539330a1568f9ef898f63b95432c81e4da4b1a96a9f936" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.11_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B11/sapmachine-jre-13-ea.11_windows-x64_bin.zip", + "checksum": "4a69238b25d6a55e95f9a782e461de40efc28cbc033bb448d03f785740e8b5e7" + } + } + } + } + }, + "sapmachine-13+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.10_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B10/sapmachine-jdk-13-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "199d16357fcdde3435b1cba0e4e75af927011e3e18733ca68ffc24f854d87167" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.10_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B10/sapmachine-jdk-13-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "2d5a58081a958dc971b58a0dc982870c2696cddcfd0a2e0ba4c8422a7d880cf4" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.10_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B10/sapmachine-jdk-13-ea.10_linux-x64_bin.tar.gz", + "checksum": "8a686804e9f79a9232e3286910a7fded27c933c6616408b242046b4fff5a0dba" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.10_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B10/sapmachine-jdk-13-ea.10_osx-x64_bin.tar.gz", + "checksum": "0afcbb606b60c9752bb3dcc1c6a6b6270c3094209e777cad19dde3bf7299f3ea" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.10_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B10/sapmachine-jdk-13-ea.10_windows-x64_bin.zip", + "checksum": "c5fa98ba43c92de2099118177fd26e802fccf6e6c0811940c63afe2adf5bf964" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.10_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B10/sapmachine-jre-13-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "2bec8baf2877760e527d6e79292086d558417f5028d038518a663ce8ef28212a" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.10_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B10/sapmachine-jre-13-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "e119e9577bb9659b983585588f460c8ebfc7682cd76aabd14af72bb038427d16" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.10_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B10/sapmachine-jre-13-ea.10_linux-x64_bin.tar.gz", + "checksum": "75a1602f2fdc9122b81afd1d454805eee6cba09d2dc08f880a0dd87902957d6a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.10_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B10/sapmachine-jre-13-ea.10_osx-x64_bin.tar.gz", + "checksum": "5aab84bc3c84c7207a8a15fe3a49f35de552b0f3dba0ed8b485151573cb738ce" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.10_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B10/sapmachine-jre-13-ea.10_windows-x64_bin.zip", + "checksum": "463d9824561638c995ef56f5cc8521180362041661576e7ec994b9ddac2883c1" + } + } + } + } + }, + "sapmachine-13+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B9/sapmachine-jdk-13-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "bf336c4b394765a3356e46dddcf44c52ba703e3a608a0a9ff1780d1003c08c91" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B9/sapmachine-jdk-13-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "eedb1570caa6ce847520f62f94ae3dd0b03412fe1ffb4d821fe7916ec15f5abd" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B9/sapmachine-jdk-13-ea.9_linux-x64_bin.tar.gz", + "checksum": "c518fd28ef4ac9cacfebd9da95fe391bb92c989666809ba9c0d9c5cc038f8ec4" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B9/sapmachine-jdk-13-ea.9_osx-x64_bin.tar.gz", + "checksum": "a9e7b9fd109861beb2ba732ee799a435018b8969a345c5189b63f54cc1af87e4" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B9/sapmachine-jdk-13-ea.9_windows-x64_bin.zip", + "checksum": "7fb0df7492d8b341713bdb4c176c0131534f93e7803d0fe765025d02b6a6086a" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B9/sapmachine-jre-13-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "e314ae955c2a202cfe8604164af7514228100c60e8a316ee4265004bfbcf3c59" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B9/sapmachine-jre-13-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "de3ad0085a48a4d400fe48daff91d0a519a192146680f972ac5967f284a7a67d" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B9/sapmachine-jre-13-ea.9_linux-x64_bin.tar.gz", + "checksum": "18d27d60a7b236bd40ac9303f193f00a9c1851fc68d33f6c9196a69c381f0893" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B9/sapmachine-jre-13-ea.9_osx-x64_bin.tar.gz", + "checksum": "c78418ae02e4977ca7499e6aa693cd997e44f8d1d043f0eb75ffb8ed3835113c" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B9/sapmachine-jre-13-ea.9_windows-x64_bin.zip", + "checksum": "c87c2928eea50db59d952a9af6838b088a55b5eb18fec537fbaf463c98cd2252" + } + } + } + } + }, + "sapmachine-13+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B8/sapmachine-jdk-13-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "7c4517a320aa9f3415eadae431761e0a0fd1b3435e376090c11e7306f492c36b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B8/sapmachine-jdk-13-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "d6a79173f4dbccea8f75a7ea66ea29432e3e4b132b5926c71e6051f4a212764c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B8/sapmachine-jdk-13-ea.8_linux-x64_bin.tar.gz", + "checksum": "36427d28b561876cdc8a54baa72856dfbff6c1abcea96127302d769c189f5c79" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B8/sapmachine-jdk-13-ea.8_osx-x64_bin.tar.gz", + "checksum": "2e25b12d201b87cee34cd19ff4951037d15224b0169b74a58acdd2745d2eeb96" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B8/sapmachine-jdk-13-ea.8_windows-x64_bin.zip", + "checksum": "646b4b4492295402346bd2890e6b8f2e3a920a14e87f42d3ac2be2b51bbf4704" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B8/sapmachine-jre-13-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "7d2cb9fc835c6a0e2a6b2345fbf6eb9d1e615952138df3fcf1f33fc469d7e93b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B8/sapmachine-jre-13-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "ce8263f4e3f26233a168bf8d72b9962d5797c4a274a5e1368cb23649019fdd7b" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B8/sapmachine-jre-13-ea.8_linux-x64_bin.tar.gz", + "checksum": "db755e9a6b65cc8033e19f924d5cac19a2adaebe9967c54e870a564b1f7c6522" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B8/sapmachine-jre-13-ea.8_osx-x64_bin.tar.gz", + "checksum": "5ee2914bf9865ba6e90db21f52ee64677e2b7a2edf193dbac196082eccf7e2e3" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B8/sapmachine-jre-13-ea.8_windows-x64_bin.zip", + "checksum": "50fe42d5b6a95df7cf6231c23c694277c740702893f1898cb6b8d798e46390f0" + } + } + } + } + }, + "sapmachine-13+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B7/sapmachine-jdk-13-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "0ae3f9c5228076d423f15f00517beea116190c26597aa919e4e6f401b486238f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B7/sapmachine-jdk-13-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "78754bc8fb0b3898a0e47ab3eb827cb2ff64c09315a5a2e4169b0acbd5e24077" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B7/sapmachine-jdk-13-ea.7_linux-x64_bin.tar.gz", + "checksum": "ad5ff319e70260981d0aa6d2a8abd0e4f0d427f88d858da119bb0d62f5632eaf" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B7/sapmachine-jdk-13-ea.7_osx-x64_bin.tar.gz", + "checksum": "a11e228886fe5093091305d91c08ae995da640d24414c40cdecf923f8abc0a7c" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B7/sapmachine-jdk-13-ea.7_windows-x64_bin.zip", + "checksum": "4a09f5099f8c5bf350949860020bd1e8b14cc22831ff2bdef948b5a39dd83cb8" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B7/sapmachine-jre-13-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "05d3c5a912565f626f42228df6b80abd2d8ecaf90fab287219ddd5c638be5769" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B7/sapmachine-jre-13-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "3c15169d25350c8aebd499fe4885a9161afe824fc2cbddb7442fdc5436c516b3" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B7/sapmachine-jre-13-ea.7_linux-x64_bin.tar.gz", + "checksum": "9531b123a64ba55a7a183985701825e3b944f371253dfac126aec834a183b620" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B7/sapmachine-jre-13-ea.7_osx-x64_bin.tar.gz", + "checksum": "f3d8bd63c60557ddc6258a70dffea06a1f3153b2c79f9652221c2958ebb84c9c" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B7/sapmachine-jre-13-ea.7_windows-x64_bin.zip", + "checksum": "569821163548640d610bc8c8c7755f2e193ce3c4252a4561085a35881c33777e" + } + } + } + } + }, + "sapmachine-13+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B6/sapmachine-jdk-13-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "cd0d1b2834698dfeaba1316741c599185f218fdb023a70eeb4a3acc60f4223e3" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B6/sapmachine-jdk-13-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "a6b76d561219b284027a1151b305c5243a9aae2dccf27008c84da7f35a77f1ce" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B6/sapmachine-jdk-13-ea.6_linux-x64_bin.tar.gz", + "checksum": "b7ccd90609ec54d4220302c8a0e9fdc48b5dfc1986710634cf7901230453b072" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B6/sapmachine-jdk-13-ea.6_osx-x64_bin.tar.gz", + "checksum": "82c3cd7e0b44c69b39ab3e609e07325e7a7a6cf1cddb7e64141268b068c554a6" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B6/sapmachine-jdk-13-ea.6_windows-x64_bin.zip", + "checksum": "68788a13eaea13575cfcc2a6270dbd1bf53c282ba398bde9432c48b8d73c6581" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B6/sapmachine-jre-13-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "78067e78287af77f420c0e9fa9e4c5273f0612c0001ce1f0b2e3e837cf30f00a" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B6/sapmachine-jre-13-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "f3f2a57576bf867e461222c57217a9da8eb9a0a13169f5c84b74887bbd2a99b2" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B6/sapmachine-jre-13-ea.6_linux-x64_bin.tar.gz", + "checksum": "9faa8e64f754f9e1fd92b5b4f9eb91c5e7658104769606b3e460783271513a73" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B6/sapmachine-jre-13-ea.6_osx-x64_bin.tar.gz", + "checksum": "e32339e04d6c2e78f9fd29287028290561e2140a39d0a3dd5f0e3cf6d46cae98" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B6/sapmachine-jre-13-ea.6_windows-x64_bin.zip", + "checksum": "9f49bfacccf86b091cf2e1577cb7444cbc4c88faf53ed9f48b8aba0ea36b1081" + } + } + } + } + }, + "sapmachine-13+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B5/sapmachine-jdk-13-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "62a28885ab9d1b4e4607a4ba84b7e3cf0b09d2d11121367f71fd469688631170" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B5/sapmachine-jdk-13-ea.5_linux-x64_bin.tar.gz", + "checksum": "13090e82a835c0a14130f50985ca87775622e56966874685c5cad393d3036d49" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B5/sapmachine-jdk-13-ea.5_osx-x64_bin.tar.gz", + "checksum": "a620c90c3a79c4f1db2d9830ae614b325c59ec6da5ada9f9ce3d4640d0f4d1d5" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B5/sapmachine-jdk-13-ea.5_windows-x64_bin.zip", + "checksum": "5126269f2274341c89ddeab4556e3e9b433cc84ccd22c625401ae177c36745f1" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B5/sapmachine-jre-13-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "e15b480fcb91342d22aec980b739d0d31a0dd585906b9fda12c9f3d35e16ca3e" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B5/sapmachine-jre-13-ea.5_linux-x64_bin.tar.gz", + "checksum": "b75cf642c7526b72108fb126f67682cfc26f80729a213c2e69d1b64d2b055a61" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B5/sapmachine-jre-13-ea.5_osx-x64_bin.tar.gz", + "checksum": "d779405a70dad338378479ee1f42e7a5a226cfa8df67fdcd7d97c2acca71182d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B5/sapmachine-jre-13-ea.5_windows-x64_bin.zip", + "checksum": "d54d8d3c07942b2a7dbf26342d9299aa85812fd55e0b09e6b1f5a4a1f70ac53e" + } + } + } + } + }, + "sapmachine-13+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B4/sapmachine-jdk-13-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "d533e4af285974c5b2e0e59f41ad167e40aff5623ef66a8e2da31bef9dc6b594" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B4/sapmachine-jdk-13-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "12db02c25d76837433d45138d13d6371b48e402c0b7f79d915961ea9c9d0282f" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B4/sapmachine-jdk-13-ea.4_linux-x64_bin.tar.gz", + "checksum": "cb7b2807cc89ecb1f05cc2da5f193c321523368ea79a9ed3cb9618b83e49ff7d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B4/sapmachine-jdk-13-ea.4_osx-x64_bin.tar.gz", + "checksum": "285564b415ca67bab121c9e374607800da1bd561c168cd43f43955bd2ed68d9e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B4/sapmachine-jdk-13-ea.4_windows-x64_bin.zip", + "checksum": "1ec3180221de2ac70c4617fe166e7fbf3a87d7e9e5bb05849c5f3fad73388937" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B4/sapmachine-jre-13-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "09d5a45adf8ce3f3b3dcd1d1cbfda89b0ab93dcd5f3c6f4f7367cb747953e27e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B4/sapmachine-jre-13-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "7654cc75a6a450a3b35c894339119683865f947be342d4c72536a6bd932fea53" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B4/sapmachine-jre-13-ea.4_linux-x64_bin.tar.gz", + "checksum": "7b2e525fdd56da55ec8d2045e867c0181385c1413ebfa4645bc132ce87345005" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B4/sapmachine-jre-13-ea.4_osx-x64_bin.tar.gz", + "checksum": "3ed8d8b67344d12c89808c0cecad60a880071c1840ed96cbacf002e4db643f42" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B4/sapmachine-jre-13-ea.4_windows-x64_bin.zip", + "checksum": "e7fc77a55f0f7eda24a2f2227da2e88b1937d04a472bd27ced0932bea8c3688f" + } + } + } + } + }, + "sapmachine-13+3-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B3-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B3-0/sapmachine-jdk-13-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "07b00bef611d21ec94687fbeca6e1dd4230a874dea10ddfd97c4448a8fcffea2" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B3-0/sapmachine-jdk-13-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "3721a51e34e695af5f8ec02ecc8280c1bd91165b1516a38481320624c5412288" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B3-0/sapmachine-jdk-13-ea.3_linux-x64_bin.tar.gz", + "checksum": "726373ea0d2ea6d551409e4d9d0f62d9e9268f61572804d0abd8b8fadde297e5" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B3-0/sapmachine-jdk-13-ea.3_osx-x64_bin.tar.gz", + "checksum": "e79d11a2af769666e9c004840a7d546371f12cb87bb04bf719dc53f1b581a78f" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B3-0/sapmachine-jdk-13-ea.3_windows-x64_bin.zip", + "checksum": "986eb3a6cb050997d35d83f8cf90e3c709fab0fc68e691446f7c9bc48e818dd2" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B3-0/sapmachine-jre-13-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "59399fed75a99bf9b4e00262bcf3ac9e67891d39a02aa72ca31d2fde9254687c" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B3-0/sapmachine-jre-13-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "c63af1cdf23c85998ff3d1b6f95e0a93a3464de0c63f2f08e9113b50e6bd9bdf" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B3-0/sapmachine-jre-13-ea.3_linux-x64_bin.tar.gz", + "checksum": "9113ed856d8abafb56d21364d393d385f7b90f1f96649e364cc7e9fd47a6b44b" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B3-0/sapmachine-jre-13-ea.3_osx-x64_bin.tar.gz", + "checksum": "a0133497eb22a9d56f1dc539b52771759fcd4f55cf0a921765d35f6fda8485cf" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B3-0/sapmachine-jre-13-ea.3_windows-x64_bin.zip", + "checksum": "93086e418853eab539f5845024c0bdc65c668c91a4d21971b8ff696060085513" + } + } + } + } + }, + "sapmachine-13+2-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-13%2B2-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B2-0/sapmachine-jdk-13-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "9f3c838a415070825cc4b10bd325e92b9b241279ea63a48c25477692cb098c02" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-13-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B2-0/sapmachine-jdk-13-ea.2_osx-x64_bin.tar.gz", + "checksum": "a3245b67f807b3fa7cdb459c381c503652ca0bda77adf6c63c35f5bcf530bae5" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-13-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B2-0/sapmachine-jdk-13-ea.2_windows-x64_bin.zip", + "checksum": "2ce7366f8d0f18cad4b1c1f1783171768defd2acc283cebda1e6d3fd49219fa9" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B2-0/sapmachine-jre-13-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "565a4ac0c65ef14247cdc877e616d5a4e27e136d844e2fb4119c6cdc414a9c6f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-13-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B2-0/sapmachine-jre-13-ea.2_osx-x64_bin.tar.gz", + "checksum": "8bce02f425c47d6acb6d44ae2f9027c33d3e8a4cee5f02b993d0a64d1737d185" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-13-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-13%2B2-0/sapmachine-jre-13-ea.2_windows-x64_bin.zip", + "checksum": "0852140dd593c1db7a9e6d17250194526e676d4c1655c808daccd415c33ad203" + } + } + } + } + } + } + }, + "lts": "false" + }, + "12": { + "updates": { + "12.0.2": { + "sapmachine-12.0.2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12.0.2", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12.0.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2/sapmachine-jdk-12.0.2_linux-ppc64_bin.tar.gz", + "checksum": "ea78c196de92d4cae7d18c536dd2b931d902b1321b70bd5ad536df04a6d22c30" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12.0.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2/sapmachine-jdk-12.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "41bd642d24d369dea88f843cbeffede76eaa66298ffa47707852f347b2023652" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12.0.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2/sapmachine-jdk-12.0.2_linux-x64_bin.tar.gz", + "checksum": "eca2903188702a58dbba34286e581c8e9b29a4323249ce0c2137313fb77d0272" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12.0.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2/sapmachine-jdk-12.0.2_osx-x64_bin.tar.gz", + "checksum": "ede180009ded8bef782e41ad72bd242faa6749ac889297c01777559278fc4848" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12.0.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2/sapmachine-jdk-12.0.2_windows-x64_bin.zip", + "checksum": "6b2d360412ad2d998be257bea4b2fbaaa95fda6e1f6cfdbd2d1d6108220f03ab" + }, + "msi": { + "name": "sapmachine-jdk-12.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2/sapmachine-jdk-12.0.2_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12.0.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2/sapmachine-jre-12.0.2_linux-ppc64_bin.tar.gz", + "checksum": "12366ca23c24c0ebd27171e47688f39ea5283889021ea32a85f16090a8d584d8" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12.0.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2/sapmachine-jre-12.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "e3d6701d34b066e00652afdba454a1eefae4e8a72d97a305c95faf63c302aa1c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12.0.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2/sapmachine-jre-12.0.2_linux-x64_bin.tar.gz", + "checksum": "92ff16cdc59ba09b133726f4ea2c5e70b5ccd3ed31d0f6aec5205a2579a1c5d8" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-12.0.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2/sapmachine-jre-12.0.2_osx-x64_bin.tar.gz", + "checksum": "91f62145fa53771a3f3971dcb0ead4837dc534c9c62badc5fff51c7ad42a5a29" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12.0.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2/sapmachine-jre-12.0.2_windows-x64_bin.zip", + "checksum": "d5ff306ec684b5b0edefc581b5ec49620e00de6cb6a591e465f6557dc15b2ba8" + } + } + } + } + }, + "sapmachine-12.0.2+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12.0.2%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12.0.2-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2%2B9/sapmachine-jdk-12.0.2-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "ecad4443b54017d2d26d7435e31c5dcac3a5f6df49853cd2892aefd1176caaf5" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12.0.2-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2%2B9/sapmachine-jdk-12.0.2-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "7fafb623e42c715ce1f01dfa01cda8d650bbcacbdb408a3d69cc28044f131aa3" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12.0.2-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2%2B9/sapmachine-jdk-12.0.2-ea.9_linux-x64_bin.tar.gz", + "checksum": "f19b1c3ad77217766b50a3cf3dee1ebb1ca4dbd63fa3ec56ef930c6419f7e039" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12.0.2-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2%2B9/sapmachine-jdk-12.0.2-ea.9_osx-x64_bin.tar.gz", + "checksum": "b401f92deb8d6c60c9324019fd628b900b4c0862bffbe712fc4757e8b2141466" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12.0.2-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2%2B9/sapmachine-jdk-12.0.2-ea.9_windows-x64_bin.zip", + "checksum": "d471e9f2d2ee2e13c501b5c66525fd8fb01d86ffdfb7e9b3e45999821f4dfd5e" + }, + "msi": { + "name": "sapmachine-jdk-12.0.2-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2%2B9/sapmachine-jdk-12.0.2-ea.9_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12.0.2-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2%2B9/sapmachine-jre-12.0.2-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "6ba536587e6fa607dc1d827519baa013ccdd76e59e5be7d71374c262448cce71" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12.0.2-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2%2B9/sapmachine-jre-12.0.2-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "4252f11205640b1abf01b38eecd21769122afbb682d28ada2fa3972d8fce915f" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12.0.2-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2%2B9/sapmachine-jre-12.0.2-ea.9_linux-x64_bin.tar.gz", + "checksum": "4093ef7b3ab811f3fe512aa9b6507be9116c646cb956bda7608ea2c2c37e3bb0" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-12.0.2-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2%2B9/sapmachine-jre-12.0.2-ea.9_osx-x64_bin.tar.gz", + "checksum": "0e92892eaf693e5dca6cd6e6f65cca7249e361f79b77cf2fa045b8fd8f87b846" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12.0.2-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.2%2B9/sapmachine-jre-12.0.2-ea.9_windows-x64_bin.zip", + "checksum": "7e5ee65fa488e642b94b4972a3bfb7605963c65fe813e60470dbe44222a9bafa" + } + } + } + } + } + }, + "12.0.1": { + "sapmachine-12.0.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12.0.1", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12.0.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.1/sapmachine-jdk-12.0.1_linux-ppc64_bin.tar.gz", + "checksum": "533b64035e2b6483f5f0f86700f886fdb3143cd922ec8decfebfdb118482b22c" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12.0.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.1/sapmachine-jdk-12.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "4a929e1f08fa73069dff2f1cf962236b9a363d7db0237224a1e3b1caa327ae35" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12.0.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.1/sapmachine-jdk-12.0.1_linux-x64_bin.tar.gz", + "checksum": "fdb52c04bdbb18ccce87c16c8dda246c7f5ff8344d88bc46cbd2a3666fd27c43" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12.0.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.1/sapmachine-jdk-12.0.1_osx-x64_bin.tar.gz", + "checksum": "5094b7437356c00a8a347f8c178b10b0228bdb840248980ca28008b746a7fc05" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12.0.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.1/sapmachine-jdk-12.0.1_windows-x64_bin.zip", + "checksum": "94be7be2a9c201f8ea4718be168b461b6c01043b48801ff67cf32c801a32b5e5" + }, + "msi": { + "name": "sapmachine-jdk-12.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.1/sapmachine-jdk-12.0.1_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12.0.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.1/sapmachine-jre-12.0.1_linux-ppc64_bin.tar.gz", + "checksum": "19559e5868a3582c2a651e2a8b4cf8c2f4404ee0562a03c159a96d8244844279" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12.0.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.1/sapmachine-jre-12.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "68993e422d4dd093f82e1198363ee6b23713ab689eb884870876a05f60c654f9" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12.0.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.1/sapmachine-jre-12.0.1_linux-x64_bin.tar.gz", + "checksum": "761467fc6d75fb9562320f25fc355631ca988c1da956b4ae17fa137436ffb196" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-12.0.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.1/sapmachine-jre-12.0.1_osx-x64_bin.tar.gz", + "checksum": "6d12e108d34a2ece8236d498ead3affcada73b32c1e1957237d9fb8fc419866b" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12.0.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12.0.1/sapmachine-jre-12.0.1_windows-x64_bin.zip", + "checksum": "1caa617737446d0d640fde50effb8aaee0fda57d97a5e1f233b7c1db3d4f39c9" + } + } + } + } + } + }, + "12": { + "sapmachine-12": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12/sapmachine-jdk-12_linux-ppc64_bin.tar.gz", + "checksum": "9f8d28f1b19e77b1783fba6e11c0a94efb245e7ea839f7b9239dca88da907aab" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12/sapmachine-jdk-12_linux-ppc64le_bin.tar.gz", + "checksum": "3f965b9cd880cecc050b7d16446c17fa5c6971713d50b08bebbc5014dbfc2317" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12/sapmachine-jdk-12_linux-x64_bin.tar.gz", + "checksum": "2377b47def069adfc5ea15ccd291a57a9d0c854a9dac3650b5027b54ba963846" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12/sapmachine-jdk-12_osx-x64_bin.tar.gz", + "checksum": "c6fb21384e098756373072e5ec335ea688d6b2e8b4e7fdcff68b878a417ca35b" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12/sapmachine-jdk-12_windows-x64_bin.zip", + "checksum": "14965af816d1f87df7752b6af7ad9c1502665cf9ba0a1e26d3929bf728ce915c" + }, + "msi": { + "name": "sapmachine-jdk-12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12/sapmachine-jdk-12_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12/sapmachine-jre-12_linux-ppc64_bin.tar.gz", + "checksum": "1b8122896576d8f03097ecb698e70a3e0a09337f916168dfc8cfd4d959f1aabc" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12/sapmachine-jre-12_linux-ppc64le_bin.tar.gz", + "checksum": "17b6d2eb9a5424a47b8f907b713d3267bc1ed7749b60d96c6398966c4cb48d60" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12/sapmachine-jre-12_linux-x64_bin.tar.gz", + "checksum": "a2d9280ddc4b04eca43a85fc60e71de88125ac87bf17f07ce9c82eb5ccb3cad9" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-12_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12/sapmachine-jre-12_osx-x64_bin.tar.gz", + "checksum": "2e7e3f23c64e9a7d19ea548dc0d230041720ebfe049f87b27471d33d39cb4bfa" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12/sapmachine-jre-12_windows-x64_bin.zip", + "checksum": "5296bcbac8bdf04d8e268d902315797c3bbf283cbb4681d5b09a602c3a9ed103" + } + } + } + } + }, + "sapmachine-12+33": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B33", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.33_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B33/sapmachine-jdk-12-ea.33_linux-ppc64_bin.tar.gz", + "checksum": "a5765a431210a78c70e9596db73894091bc9fa6b928a75dc7371090bbc35ffa3" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.33_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B33/sapmachine-jdk-12-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "a7b4928c327aac940416e3f7b63380b3213fc039eba731973de3c3f176ca0d00" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.33_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B33/sapmachine-jdk-12-ea.33_linux-x64_bin.tar.gz", + "checksum": "ec1b1b8181c0d0516d4532f16052a713f8db5a7b126d9b81b651f1337e2d041d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.33_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B33/sapmachine-jdk-12-ea.33_osx-x64_bin.tar.gz", + "checksum": "aa5732bf1de28e5389690222eac41dfef982838d0c2a52f5f39a67b411715a56" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.33_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B33/sapmachine-jdk-12-ea.33_windows-x64_bin.zip", + "checksum": "a792c41dbe807d7e404b0562d69dc2f139ed37ea74f23f2d0f69bc6bff39df3a" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.33_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B33/sapmachine-jre-12-ea.33_linux-ppc64_bin.tar.gz", + "checksum": "a6209c6f391a6c1898d969a0ff7417ae9e3518df89f7768c88b532a6b3541a84" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.33_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B33/sapmachine-jre-12-ea.33_linux-ppc64le_bin.tar.gz", + "checksum": "a2bd7b05d2f44136bf7e0c11b265061f1a34169149ee4266de214431704fd4e0" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.33_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B33/sapmachine-jre-12-ea.33_linux-x64_bin.tar.gz", + "checksum": "c0688d54009090a633003502a3f5201a481c80e5eeebb7621bd9cc98f46baa02" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.33_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B33/sapmachine-jre-12-ea.33_osx-x64_bin.tar.gz", + "checksum": "baa9f05594d1530bc85183d618b65d4ef2417df678e5f9bf22292a165d72e694" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.33_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B33/sapmachine-jre-12-ea.33_windows-x64_bin.zip", + "checksum": "02dd62bfef3963517b9172f51711cad65b60eddfbda2dd4de264675fc3495ba1" + } + } + } + } + }, + "sapmachine-12+32": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B32", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.32_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B32/sapmachine-jdk-12-ea.32_linux-ppc64_bin.tar.gz", + "checksum": "96c4c6cf63265f6b9e895f9cf18f15d31cc7f0e8683b80130a0a1bbaf570d068" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.32_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B32/sapmachine-jdk-12-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "45661a0666020222bd2a56ebba11f4040e23557d577a52a4eb2eab09a51ffd0d" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.32_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B32/sapmachine-jdk-12-ea.32_linux-x64_bin.tar.gz", + "checksum": "f921212a32d6a4d7aea5e27b5c434ee066dc77c7c8a2b3dc92c8ca74a1c31d27" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.32_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B32/sapmachine-jdk-12-ea.32_osx-x64_bin.tar.gz", + "checksum": "54a8df68e5920f1a1e192ab30bed991a9d00e2e311c1d4438486f24edad6cf69" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.32_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B32/sapmachine-jdk-12-ea.32_windows-x64_bin.zip", + "checksum": "74099039b8f27572295611693aa26acf450ce0fcd6873a7b300f37097c4d1919" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.32_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B32/sapmachine-jre-12-ea.32_linux-ppc64_bin.tar.gz", + "checksum": "a50034df6d85a12677efeed7ca0666d6467fe5e19d978aaefb87e39c92b410a6" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.32_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B32/sapmachine-jre-12-ea.32_linux-ppc64le_bin.tar.gz", + "checksum": "9b3bc6d2db08ee3b275254ab0c5041857e08c999dadf0c6cf685e2eabd77a794" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.32_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B32/sapmachine-jre-12-ea.32_linux-x64_bin.tar.gz", + "checksum": "7e3e36d08b35ca7d5882539f075536a03d5f7c2c69606fc8f4dd377815e44f19" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.32_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B32/sapmachine-jre-12-ea.32_osx-x64_bin.tar.gz", + "checksum": "4596ddd97240c2f73ffe16d1c139e34c1790a4baaad5d1d323ae753b5e44d50e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.32_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B32/sapmachine-jre-12-ea.32_windows-x64_bin.zip", + "checksum": "59a79a2f1353009a9b654a6ac0e4d1287def04c5fe6ce217dd8b2c514b2b3937" + } + } + } + } + }, + "sapmachine-12+31": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B31", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.31_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B31/sapmachine-jdk-12-ea.31_linux-ppc64_bin.tar.gz", + "checksum": "b94e3ba303be7a0e71e4b30bcfe5576e7a03f0f0695f5faa0ad6ba1918c0d74b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.31_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B31/sapmachine-jdk-12-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "f4a0628a1cb70a9bcc33963bd603901faa1bcd400dea5f398c40b9678c0bb9b0" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.31_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B31/sapmachine-jdk-12-ea.31_linux-x64_bin.tar.gz", + "checksum": "d73d3bc06df61086304f3fbc215ba13acfd735d01f545170819b6438837a22b5" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.31_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B31/sapmachine-jdk-12-ea.31_osx-x64_bin.tar.gz", + "checksum": "654a86874783bb2246de546dc1d63f08eb8bb456a9e72a39f142be8ab5f9c72f" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.31_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B31/sapmachine-jdk-12-ea.31_windows-x64_bin.zip", + "checksum": "d2072f0c15cee701d414e0531df9a6375b2dcac47c784c280d785b225ef104ce" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.31_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B31/sapmachine-jre-12-ea.31_linux-ppc64_bin.tar.gz", + "checksum": "9cd6135d08118dc96a7d08a8d45d2a1c08dbaf75bce59df7a358b9311bfd4007" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.31_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B31/sapmachine-jre-12-ea.31_linux-ppc64le_bin.tar.gz", + "checksum": "9837bd8b7313ad2ba906f5e34db61486917950378ceb1e3ffd7f74baef3c299f" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.31_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B31/sapmachine-jre-12-ea.31_linux-x64_bin.tar.gz", + "checksum": "1bdbb77e37bd2e9f143b734d3c0c47aa9159be8f4f4fca234c49bc327d57d196" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.31_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B31/sapmachine-jre-12-ea.31_osx-x64_bin.tar.gz", + "checksum": "3a40cd5c50ac8e60988fe7f1564b562504aaaf751d7bfb074b342e3ce4091d44" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.31_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B31/sapmachine-jre-12-ea.31_windows-x64_bin.zip", + "checksum": "68dc49e8cb40fe5bd6d5ec58e772b47b02a65788474746a4d4a92b877818cb6a" + } + } + } + } + }, + "sapmachine-12+30": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B30", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.30_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B30/sapmachine-jdk-12-ea.30_linux-ppc64_bin.tar.gz", + "checksum": "9db0487ca729d1f7d8c18e62e332ee4d9955a4f6d75ff7e3e6fec2dc09ef1832" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.30_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B30/sapmachine-jdk-12-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "f6141ddf8f427a77be3741bc9844ff10ad8f44787c47824de837cab18f49f81c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.30_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B30/sapmachine-jdk-12-ea.30_linux-x64_bin.tar.gz", + "checksum": "5d06f6ce9874c416a8f7d7471cb5e871e03f0701f4024be634072fa64421a603" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.30_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B30/sapmachine-jdk-12-ea.30_osx-x64_bin.tar.gz", + "checksum": "449e2b02ff5b46eec803adc11da9e774111d45da4ef4c2dd956166a7f6f6190c" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.30_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B30/sapmachine-jdk-12-ea.30_windows-x64_bin.zip", + "checksum": "26c465982578aa17790ac8ce2fb03ab3d73fb05bc486f16b911478f31c4278ff" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.30_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B30/sapmachine-jre-12-ea.30_linux-ppc64_bin.tar.gz", + "checksum": "b0c1bcb3a93f77ec0ac0c7377095aa4a7f7d6f5844247820040fe2d6df6eb5a2" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.30_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B30/sapmachine-jre-12-ea.30_linux-ppc64le_bin.tar.gz", + "checksum": "4adbf7041ca0fe30da0bf5cf7ca92bc04e0a426b05b501b705d3f426a6c746c7" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.30_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B30/sapmachine-jre-12-ea.30_linux-x64_bin.tar.gz", + "checksum": "c8e0692f9f74b3a985b9e9c87cb681f3f1daa8c9449953b375533686433bcee3" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.30_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B30/sapmachine-jre-12-ea.30_osx-x64_bin.tar.gz", + "checksum": "ed328b192441a13f8a9675481f593ae392ee99ef366bdbc05fcc25dbcaa17748" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.30_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B30/sapmachine-jre-12-ea.30_windows-x64_bin.zip", + "checksum": "eb6cc3e6b6bc86551fdf80633cdfe9c2c308d495d43363064984f2712a6ffdbf" + } + } + } + } + }, + "sapmachine-12+29": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B29", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.29_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B29/sapmachine-jdk-12-ea.29_linux-ppc64_bin.tar.gz", + "checksum": "50a41f9a3849aef4dc2ae4d678582bce95d950d9bde9a62d3df32e9160aeae21" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.29_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B29/sapmachine-jdk-12-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "551ad86283b9054066ccf5ffeb52ae88c0a01e9b5c7954e05077b7639e949c47" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.29_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B29/sapmachine-jdk-12-ea.29_linux-x64_bin.tar.gz", + "checksum": "a3026dac66763358d1376cb54913a7678b9b138652fb317577d124494a898abb" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.29_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B29/sapmachine-jdk-12-ea.29_osx-x64_bin.tar.gz", + "checksum": "ccb16fa5f1fdb1c3fc4eedd3670b53287652816d2a4576ad40c5dc5644933d1a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.29_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B29/sapmachine-jdk-12-ea.29_windows-x64_bin.zip", + "checksum": "5e17f28b0078007811beb246e088192f2a5331b11ac9b1c33b149475a6929587" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.29_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B29/sapmachine-jre-12-ea.29_linux-ppc64_bin.tar.gz", + "checksum": "ced16944dbc7ef7642481efdfe4ab3c2ec71beca12a3e8ede6a7280424e70615" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.29_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B29/sapmachine-jre-12-ea.29_linux-ppc64le_bin.tar.gz", + "checksum": "5e2c04fc1a64ef27cb3b3b57ea6bd26b0351ab966a3ef005e5a082a3565db7dd" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.29_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B29/sapmachine-jre-12-ea.29_linux-x64_bin.tar.gz", + "checksum": "cdb87c82c83138fd9d6245cbd084d014f4245e72f2ba62f3df2ac53a432460e0" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.29_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B29/sapmachine-jre-12-ea.29_osx-x64_bin.tar.gz", + "checksum": "2ba189d292b55074ed2d52e947805a7dfd690e8f563f092772ac9b24c6802568" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.29_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B29/sapmachine-jre-12-ea.29_windows-x64_bin.zip", + "checksum": "b758f91da493f1d040a478f4a9fba4d517151fc4dc10803f2e5f26c1746ef572" + } + } + } + } + }, + "sapmachine-12+28": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B28", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.28_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B28/sapmachine-jdk-12-ea.28_linux-ppc64_bin.tar.gz", + "checksum": "fc3c24ecf9896dec67a2a5eae93a944e8fad613031821198dbf32e7fbfbfd94d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.28_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B28/sapmachine-jdk-12-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "6c93a072c6e0a36ba194c81bec905597303761bc966cd411627c28d52100dc06" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.28_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B28/sapmachine-jdk-12-ea.28_linux-x64_bin.tar.gz", + "checksum": "6dd12034cb670724baf70233cce3b6fd1b6e99f11a1ad44b566dfdf7d3a8d834" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.28_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B28/sapmachine-jdk-12-ea.28_osx-x64_bin.tar.gz", + "checksum": "017a82f5cd4483c49749230ec07e62a1105186da90c5c5387d3066150a9847ac" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.28_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B28/sapmachine-jdk-12-ea.28_windows-x64_bin.zip", + "checksum": "565f4d230836447b6153b381137561b6898cc541d215e71411e08f4a86286e6e" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.28_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B28/sapmachine-jre-12-ea.28_linux-ppc64_bin.tar.gz", + "checksum": "bef1189f00d2dc0d5d35a7adf885159db82418e89f138ed513056300c8c58eb5" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.28_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B28/sapmachine-jre-12-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "ccd27101d8df012c0149ab398964ac01968b14267cba6f1f5c9fdd34175acf3b" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.28_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B28/sapmachine-jre-12-ea.28_linux-x64_bin.tar.gz", + "checksum": "b111e2928b0872227e36527734f2598063318948ea745b13875df6a0c66f5307" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.28_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B28/sapmachine-jre-12-ea.28_osx-x64_bin.tar.gz", + "checksum": "9d2239ff6a622009d1cbf71e95e1409b319182b4ee7f56f79f68a5677c9ef311" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.28_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B28/sapmachine-jre-12-ea.28_windows-x64_bin.zip", + "checksum": "1a965cf521494fd2a28c7ed0feb37f81e9801831943b50b166232ebe8b7ca215" + } + } + } + } + }, + "sapmachine-12+27-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B27-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.27_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B27-0/sapmachine-jdk-12-ea.27_linux-ppc64_bin.tar.gz", + "checksum": "e31ba56591e41735529a7ee0a05199ee2a530e0a38acd54fa4688dde5ee6e21e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.27_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B27-0/sapmachine-jdk-12-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "e9b2f2e18c9538c68e676c8b96658b09e5340a0aec7142482c8e3d68e1476d42" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.27_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B27-0/sapmachine-jdk-12-ea.27_linux-x64_bin.tar.gz", + "checksum": "a2f888effe325a6f3bafc939e59b01de2cbab19bb4904f4331dd96c92af9f80d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.27_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B27-0/sapmachine-jdk-12-ea.27_windows-x64_bin.zip", + "checksum": "3d1d48bd8b3e58b367bc4cb5dc91928eb9a1431880868eccb6108fda7fc88671" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.27_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B27-0/sapmachine-jre-12-ea.27_linux-ppc64_bin.tar.gz", + "checksum": "26e6033ceb1bcc43e779eead26f8b24147a56b8868f359afe996c8538e2b01ee" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.27_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B27-0/sapmachine-jre-12-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "2e1ee6ab4e0dfbfe94b19269d5db1f2c0d9a2fd1a8e519fe241704b2d9489b73" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.27_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B27-0/sapmachine-jre-12-ea.27_linux-x64_bin.tar.gz", + "checksum": "ba2a6a933ed99c6b6ff6969ca133646f0a7feda23c052929692179d1da976ba7" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.27_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B27-0/sapmachine-jre-12-ea.27_windows-x64_bin.zip", + "checksum": "216e651ca238af0576e6837253291debea1a8fad12e9b2dcb3a8f5a9f4321d8a" + } + } + } + } + }, + "sapmachine-12+26-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B26-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.26_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B26-0/sapmachine-jdk-12-ea.26_linux-ppc64_bin.tar.gz", + "checksum": "64d4a9a6dc7145379a6b650ee28b19e88a5cc7aabebe28e06ced6dc1c22264a8" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.26_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B26-0/sapmachine-jdk-12-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "c3c2d4ec6fbd412a47e8df52a2dc019c353aa52caf0b00b14d0c226bbc21a088" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.26_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B26-0/sapmachine-jdk-12-ea.26_linux-x64_bin.tar.gz", + "checksum": "06db71c71d2a414365b084366656732c48baec2ed079abd853eb03f9c24ea33d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.26_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B26-0/sapmachine-jdk-12-ea.26_osx-x64_bin.tar.gz", + "checksum": "cd54674a079b6fd6ea18b177cd64af9638028eab0b11df161badb1f5dab7c35d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.26_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B26-0/sapmachine-jdk-12-ea.26_windows-x64_bin.zip", + "checksum": "50f1e37f49ccd2bb61efd1fb5f9fcc8b53904972b444d3eed68da585aca8d5f5" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.26_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B26-0/sapmachine-jre-12-ea.26_linux-ppc64_bin.tar.gz", + "checksum": "2c5e7841275fb6b5280155639dea0be73d3bca8cf2acf4f2806f6c02da988ece" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.26_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B26-0/sapmachine-jre-12-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "612afa9ec47c67d0d97d71861b711392cb747c5d05639e541544e9fb6d3cee1a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.26_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B26-0/sapmachine-jre-12-ea.26_linux-x64_bin.tar.gz", + "checksum": "317e3131980e84c5df35abc47868faa3c76341f5c1196e6b66b203018a5e6d82" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.26_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B26-0/sapmachine-jre-12-ea.26_osx-x64_bin.tar.gz", + "checksum": "1abc2ea238c951eb6aad3c8eba9a28f414d4215bbdb801f0a15093ba7bac617a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.26_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B26-0/sapmachine-jre-12-ea.26_windows-x64_bin.zip", + "checksum": "2d1d590dcda6ce0c288411f3e2a5bdd36c1a988fc4129c3a241d55c4e18b9697" + } + } + } + } + }, + "sapmachine-12+24-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B24-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.24_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B24-0/sapmachine-jdk-12-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "832909dced77d1d1ec72f1f707eb64b7a0e520d01fd06d0fc971ef579bec3a2c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.24_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B24-0/sapmachine-jdk-12-ea.24_linux-x64_bin.tar.gz", + "checksum": "e4272033754271da91f6fbf78dba4d7a0920c6486a67b386c0b1222850fd42a7" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.24_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B24-0/sapmachine-jdk-12-ea.24_windows-x64_bin.zip", + "checksum": "8644d577bcf60507e51dbfa1236c8461e1f5d3d7157f276c269e100df4a02772" + } + } + }, + "jre": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.24_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B24-0/sapmachine-jre-12-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "a56b50086a5a70ff6832f420bc203512ccfdd61144b5926c5ea2d7df2d109f29" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.24_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B24-0/sapmachine-jre-12-ea.24_linux-x64_bin.tar.gz", + "checksum": "898cc6e86e58f391f6043effd747b83d66301f319bd7d77a61f99d2fe7233941" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.24_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B24-0/sapmachine-jre-12-ea.24_windows-x64_bin.zip", + "checksum": "899386287e86e98a5bce77af90938ea481b01c420afc0d5fe4ca6ce1c45e65db" + } + } + } + } + }, + "sapmachine-12+23-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B23-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.23_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B23-0/sapmachine-jdk-12-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "561daff91b9d23ea126ec6f2cdc4515bfdb8515ca9d3be6181f398881694ae92" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.23_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B23-0/sapmachine-jdk-12-ea.23_linux-x64_bin.tar.gz", + "checksum": "22690ed87ef67aa7b88207bd1d752f38def7cf0f663ff8d98362b4086613b063" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.23_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B23-0/sapmachine-jdk-12-ea.23_windows-x64_bin.zip", + "checksum": "a85f1d1279c0c2a3b24cd2bf16b2153c57ff9a195695e1a6d14b51a5d767867d" + } + } + }, + "jre": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.23_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B23-0/sapmachine-jre-12-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "9d8eec79d3a1eb2e0451da55c9a368d1f9cd440030c425673c613ad1782c1642" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.23_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B23-0/sapmachine-jre-12-ea.23_linux-x64_bin.tar.gz", + "checksum": "0945da9035fb804dedbbbb60a878f9e5141b21f950c74058c41bb3459019c90d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.23_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B23-0/sapmachine-jre-12-ea.23_windows-x64_bin.zip", + "checksum": "0c0c50b9683682fe084a9c8ff28d340f63f575f92148a56b4aea68beed070557" + } + } + } + } + }, + "sapmachine-12+22-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B22-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.22_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B22-0/sapmachine-jdk-12-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "a387f6272e93a208b4eac9aaf84382114588fc5de04d8861fd8c8185374b8018" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.22_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B22-0/sapmachine-jdk-12-ea.22_windows-x64_bin.zip", + "checksum": "75183321cc5debda500dc7fac9c13c6f33b705291a9c8f3fc97e8a1476640d21" + } + } + }, + "jre": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.22_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B22-0/sapmachine-jre-12-ea.22_linux-ppc64le_bin.tar.gz", + "checksum": "88704f530c82632d71c9fb06aeac461bea6654e7fb26d4fb1f2ec5cfa3ded397" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.22_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B22-0/sapmachine-jre-12-ea.22_windows-x64_bin.zip", + "checksum": "6e3d4f8b5b901ebcb01402667ee77a7d8c825455175fa1dd37eff1e09ddc405f" + } + } + } + } + }, + "sapmachine-12+21-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B21-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.21_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B21-0/sapmachine-jdk-12-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "4b12104a2534744766f404e33746c30df3ba370b642b3b86dee0398d3055702a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.21_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B21-0/sapmachine-jdk-12-ea.21_linux-x64_bin.tar.gz", + "checksum": "8c88c3823c1887b4d6f4ba06b585130f0dd499d573014782933986a7f6dcff84" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.21_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B21-0/sapmachine-jdk-12-ea.21_windows-x64_bin.zip", + "checksum": "9b93b5d5c1ce2d1b32bcc973f17260335082c0bf669ce9b3bfe315e7dfe6cfa3" + } + } + }, + "jre": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.21_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B21-0/sapmachine-jre-12-ea.21_linux-ppc64le_bin.tar.gz", + "checksum": "6770d082075e36f0995484b161412642a75c6147557a0e1c9ec5f7746f3c4f47" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.21_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B21-0/sapmachine-jre-12-ea.21_linux-x64_bin.tar.gz", + "checksum": "6a0a7e52bfbb6d01b286f1b2ba4a4a268031061247965a851261ffd9558f0652" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.21_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B21-0/sapmachine-jre-12-ea.21_windows-x64_bin.zip", + "checksum": "5b1dab908158c0d34c8f36dcda7f79f5d164f419ed6bcf29f50943da772f59a0" + } + } + } + } + }, + "sapmachine-12+20-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B20-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.20_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B20-0/sapmachine-jdk-12-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "23f54aae4a1646bb011d4533d415e211d57548506965bfb2b483ff9eaf568ebd" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.20_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B20-0/sapmachine-jdk-12-ea.20_linux-x64_bin.tar.gz", + "checksum": "477adf3d804147f8cd8076e3f6554c6b9025b7c4e2ea826a25a64e5cacaaf6ca" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.20_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B20-0/sapmachine-jdk-12-ea.20_windows-x64_bin.zip", + "checksum": "a0ddaf5c90f5f8997cc5448c389f8ae477cc06245b660ca5e2161e0309c9c234" + } + } + }, + "jre": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.20_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B20-0/sapmachine-jre-12-ea.20_linux-ppc64le_bin.tar.gz", + "checksum": "fc99e377cf08651242e6c6b6f1ec3d5fe3dfac39cb0275994eba28ad7a588283" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.20_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B20-0/sapmachine-jre-12-ea.20_linux-x64_bin.tar.gz", + "checksum": "298f814f0c74d8b45a728054b6b3813381a261087da02a0bd352eb315f0c807d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.20_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B20-0/sapmachine-jre-12-ea.20_windows-x64_bin.zip", + "checksum": "d60a81e745093b166d538c414a925436b22b46c48e10a4e65d2f10ca13b189a4" + } + } + } + } + }, + "sapmachine-12+18-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B18-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.18_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B18-0/sapmachine-jdk-12-ea.18_linux-ppc64_bin.tar.gz", + "checksum": "6bfd6cd824f2f74db608b28f91ccce59e58e7dcfe05fc6a19170bf5e0f014eab" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.18_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B18-0/sapmachine-jdk-12-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "04f6fc3dec6e388a84ba829fede0d1cce08dcd1c62713d0636b3060f81ebe4c3" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.18_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B18-0/sapmachine-jdk-12-ea.18_linux-x64_bin.tar.gz", + "checksum": "37f567c96c1617153ce0a3669c5ae06f631936702eb5d9a81cbcee4e3f68d758" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.18_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B18-0/sapmachine-jre-12-ea.18_linux-ppc64_bin.tar.gz", + "checksum": "41b023a511f6d12089c2fff0e03a1512c990eecb1947fd48f05f652959dcdd8c" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.18_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B18-0/sapmachine-jre-12-ea.18_linux-ppc64le_bin.tar.gz", + "checksum": "d7ed3f631e5ce15425557a19f24a2b40b90e3c29d48dcf622bd48de54d1a1973" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.18_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B18-0/sapmachine-jre-12-ea.18_linux-x64_bin.tar.gz", + "checksum": "ee42b3a097f31e15f8b914f5ae938a0bd0a9d4fe288770ff862a718cfbf1b0fb" + } + } + } + } + }, + "sapmachine-12+17-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B17-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.17_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B17-0/sapmachine-jdk-12-ea.17_linux-ppc64_bin.tar.gz", + "checksum": "c23111b3a404b3d23f6291f3cfac830d800f4b1ad0a1647878f2fc3384e46875" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.17_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B17-0/sapmachine-jdk-12-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "1f9c4fbd818f752860abb8475fb9766f29b47a638cb23109dd7409b5715f3096" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.17_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B17-0/sapmachine-jdk-12-ea.17_linux-x64_bin.tar.gz", + "checksum": "2a8370031fc5bf7222153191268634e77d04428eedca1b366e96615ead27b31d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.17_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B17-0/sapmachine-jdk-12-ea.17_windows-x64_bin.zip", + "checksum": "375f1b836dd596004e24f7e28fc9cb0142774b252a56947299b3e42b02e793b7" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.17_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B17-0/sapmachine-jre-12-ea.17_linux-ppc64_bin.tar.gz", + "checksum": "3805b7cfc8107fd833c1fac205feeb8f492ca39cb1821bd04342e2d81b080256" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.17_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B17-0/sapmachine-jre-12-ea.17_linux-ppc64le_bin.tar.gz", + "checksum": "856b8dd553a8733279e86878bdd68c2706c40e82bedcad82e446fc7b02fbe0c8" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.17_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B17-0/sapmachine-jre-12-ea.17_linux-x64_bin.tar.gz", + "checksum": "9b095eb317b98e40791e0780232dda7ca83307a62afbb0b7434996262bd846af" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.17_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B17-0/sapmachine-jre-12-ea.17_windows-x64_bin.zip", + "checksum": "64071832f2d74b0965b63d4e04d43736f6843ac9358b85d17f1b300388459265" + } + } + } + } + }, + "sapmachine-12+16-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B16-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.16_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B16-0/sapmachine-jdk-12-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "ca18f894e9fd9fd8aaf31dea351ce580995497ca3b613ddf2f42c10d62e1386b" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.16_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B16-0/sapmachine-jdk-12-ea.16_linux-x64_bin.tar.gz", + "checksum": "e95e55901250d994c3eda1ea4738822650ecaaecb0959c65fa06e0fead361fa6" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.16_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B16-0/sapmachine-jdk-12-ea.16_windows-x64_bin.zip", + "checksum": "8261e6af60c98476b2e9a3f67f16b2766df59546d58922a1d870fd3097ecbc57" + } + } + }, + "jre": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.16_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B16-0/sapmachine-jre-12-ea.16_linux-ppc64le_bin.tar.gz", + "checksum": "d1d80cbc6d3bb034b298a54e52bf7aa893139c1af8c870c1f7ed84a3d32237ed" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.16_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B16-0/sapmachine-jre-12-ea.16_linux-x64_bin.tar.gz", + "checksum": "4bb4dc62241676305e41ee52adfb32da6792fca34d152b12c985275fd66cba01" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.16_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B16-0/sapmachine-jre-12-ea.16_windows-x64_bin.zip", + "checksum": "c9adaa782c2b9c7ab8dd6e3e07143c76b218fb84854327ea974d818a3553edc9" + } + } + } + } + }, + "sapmachine-12+15-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B15-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.15_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B15-0/sapmachine-jdk-12-ea.15_linux-ppc64_bin.tar.gz", + "checksum": "3a1fdaec763206e10a69130fb454fe80a5e05fdbf01e6c7dc44e73a13c0af3d7" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.15_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B15-0/sapmachine-jdk-12-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "865833d1700b19f0059062cd3dd737770d4c37a959e755538fa37ba3a0e3bd27" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.15_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B15-0/sapmachine-jdk-12-ea.15_linux-x64_bin.tar.gz", + "checksum": "8512398e38fb658debb8e167208b09e609110417fc753c6a9020fc45146e1900" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.15_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B15-0/sapmachine-jdk-12-ea.15_windows-x64_bin.zip", + "checksum": "a526ee1e19b4cb0dd196a3da3ca3aeac2b1484a9c82cff9acded042fefc61ba9" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.15_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B15-0/sapmachine-jre-12-ea.15_linux-ppc64_bin.tar.gz", + "checksum": "010e87b4c61217f28c9afbb34d41d664606fe84c63fe90d4ef73379e3dac8a43" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.15_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B15-0/sapmachine-jre-12-ea.15_linux-ppc64le_bin.tar.gz", + "checksum": "6a50113fe2a632b2d38447894b7e2cb0a64e948f3f3ca624c6fd1569962957e5" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.15_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B15-0/sapmachine-jre-12-ea.15_linux-x64_bin.tar.gz", + "checksum": "994867a7732e75b50cf1b942313410487a8e3d43af2ce4a021cb185449ba60f1" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.15_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B15-0/sapmachine-jre-12-ea.15_windows-x64_bin.zip", + "checksum": "c95b0fceecc5a787d31a3097cb6eb4421d0635134cd6b8367df7b897bd37f996" + } + } + } + } + }, + "sapmachine-12+13-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B13-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.13_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B13-0/sapmachine-jdk-12-ea.13_linux-ppc64_bin.tar.gz", + "checksum": "452c7ac5babb9e823cdb2d7e8da85287bd7aafe175c4b0bae950310108e49772" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.13_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B13-0/sapmachine-jdk-12-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "39b61ebb605dbd72fd921e26a3849b6ae7adb553e34b99e4f0bc0d28e38f73b6" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.13_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B13-0/sapmachine-jdk-12-ea.13_linux-x64_bin.tar.gz", + "checksum": "c607dd05f063c8f43a91b608da82f39e08cab1e706a8c9a8c0218b2d859e683e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.13_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B13-0/sapmachine-jdk-12-ea.13_windows-x64_bin.zip", + "checksum": "40efdf92e5e65ce7ca86d40c9393a06ba0bc9b39be08c0425a437c5dfdbb5900" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.13_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B13-0/sapmachine-jre-12-ea.13_linux-ppc64_bin.tar.gz", + "checksum": "487119a8c4806680bf7f95e7ba5d1cd737505cd28a3305f4de32904622c6270c" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.13_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B13-0/sapmachine-jre-12-ea.13_linux-ppc64le_bin.tar.gz", + "checksum": "0f58ef414751ec7db1f42582fa164a525ba2815b237a6adc878bcd4ed6a3d5d9" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.13_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B13-0/sapmachine-jre-12-ea.13_linux-x64_bin.tar.gz", + "checksum": "3a9d4c462d60e64789d5b4a28d6f1cd9e6e6f35ac1f30aef109aa43d9354e4a2" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.13_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B13-0/sapmachine-jre-12-ea.13_windows-x64_bin.zip", + "checksum": "eae96c05ae2865c2de300d62ae887464f3bdc74221f22410bffaa333404a7642" + } + } + } + } + }, + "sapmachine-12+12-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B12-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.12_linux-ppc64_bin.tar.gz", + "checksum": "8ad7974c87eefbf9bcfd4c95fd99666731b6fc87e4cd98ecd7496f7a0b0ce434", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B12-0/sapmachine-jdk-12-ea.12_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "837067d2778a1dca2444990538fe6447ff988eb988e415cdb4b8f02862450e2c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B12-0/sapmachine-jdk-12-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.12_linux-x64_bin.tar.gz", + "checksum": "c5ea7424939cd594d6be2e35836ac9eed67d8e5a8a3d2828fd3f8ca7e4e6a249", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B12-0/sapmachine-jdk-12-ea.12_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.12_windows-x64_bin.zip", + "checksum": "0e0f7c7fa204cb5989f19ddbe3afaecedf0d2193543a83b52172f3c484154a89", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B12-0/sapmachine-jdk-12-ea.12_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.12_linux-ppc64_bin.tar.gz", + "checksum": "f5d8954e4462ea1a2a82241443788ba6b46e94d9172d9a220690b2ead29bc9e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B12-0/sapmachine-jre-12-ea.12_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.12_linux-ppc64le_bin.tar.gz", + "checksum": "fa4a7589166bdf28b7211e92d3a3e9fa47962a49321117d6c224a2ec478cdf50", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B12-0/sapmachine-jre-12-ea.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.12_linux-x64_bin.tar.gz", + "checksum": "dd3913089ff3a073ce5822d90e610ae97c72f17edb82bc9a1570bd200b387e86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B12-0/sapmachine-jre-12-ea.12_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.12_windows-x64_bin.zip", + "checksum": "dbddd67acc09d4271a33210eba9a255157e45ded5bc14f7456e4ac9b1c2f81af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B12-0/sapmachine-jre-12-ea.12_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-12+11-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B11-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "85144d223ab959a6bc4cc0e413f7cffa060d410cc19866016e346e2b1a857aad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B11-0/sapmachine-jdk-12-ea.11_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "c2e44f36ab6ed05895f93d5afecc3556a976bdd1589c4fb6578b3b0b09f9c4c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B11-0/sapmachine-jdk-12-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.11_linux-x64_bin.tar.gz", + "checksum": "50e859d881cfe6cfd839149747117ba685932abe0169fd2ba7f270a87afba3f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B11-0/sapmachine-jdk-12-ea.11_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.11_windows-x64_bin.zip", + "checksum": "5388548b31dde7c7509de79c7f4dc097de88b1faada028645cc899c821683b2c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B11-0/sapmachine-jdk-12-ea.11_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "56b9f213750a5497681d63fbf3ac4241d6e979d61f18a85a2d148ef7950be3ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B11-0/sapmachine-jre-12-ea.11_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "6c04dabb734b8f2408ddfcbf4ca0db51644bacc380ca9216480096e2e469e122", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B11-0/sapmachine-jre-12-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.11_linux-x64_bin.tar.gz", + "checksum": "860cc98a2ee69b5a9dc3a7b3e5b695d9892e44580a4e33674f4c19f6e5e45dd9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B11-0/sapmachine-jre-12-ea.11_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.11_windows-x64_bin.zip", + "checksum": "d4f9d9d7ffafde6ea45e0c30002a0959e20e538b9bf5534fab10882c127d47c1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B11-0/sapmachine-jre-12-ea.11_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-12+10-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B10-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "8482c7d4869ef2e8abe082fe682100e625f0cb895397df01fe1c4315e1091197", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B10-0/sapmachine-jdk-12-ea.10_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "99518b1863ffe96ebaa71a1d45b55c7414f29417b03b8fc83e7a3aea5b860d7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B10-0/sapmachine-jdk-12-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.10_linux-x64_bin.tar.gz", + "checksum": "51b158edc0c432e1fc2650041499d67b74d30e7dd1cc25accf5f00267a391f45", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B10-0/sapmachine-jdk-12-ea.10_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.10_windows-x64_bin.zip", + "checksum": "db58fe91aafb101de8bb98191b44000d8466bf298b41290276aec41a8f85e63e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B10-0/sapmachine-jdk-12-ea.10_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "a3925b65535d029c4cc954799e4b3cc65b5b6ee5d009e1c0d4c41bb87a373604", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B10-0/sapmachine-jre-12-ea.10_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "a4b1ba0fcfd3cc414230920dc914b3a5ff6f22e65923482038c6c9c172b424e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B10-0/sapmachine-jre-12-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.10_linux-x64_bin.tar.gz", + "checksum": "30d34c76b790ac2146b47677dd49ffd520f904f1610b6d09482c14814af9e902", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B10-0/sapmachine-jre-12-ea.10_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.10_windows-x64_bin.zip", + "checksum": "dc929b8b3d6bc09922c66427440e0c55074d661b5fd58594ebc01169bb42b70d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B10-0/sapmachine-jre-12-ea.10_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-12+8-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B8-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "376385c28f370ce7d95da8fb77997e400c237047da6720814a5326d133a29a7c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B8-0/sapmachine-jdk-12-ea.8_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "87d6fbc324cedee42d40eca3944dba1bd20cf8c633b38f8e44822324b5b97791", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B8-0/sapmachine-jdk-12-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.8_linux-x64_bin.tar.gz", + "checksum": "cb4b04a74148f79a63f4744f19bb716e8c2038cafe04e51e3b39570c50c1ac40", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B8-0/sapmachine-jdk-12-ea.8_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.8_windows-x64_bin.zip", + "checksum": "bbe5a51bb91d10bfea2ad4a1c6ff398f6a31cb8b6578605efea1a1ac8c904725", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B8-0/sapmachine-jdk-12-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "34a039d5390251fea11c781885f3281230cb933382fff90433ec62e7a17ffc2a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B8-0/sapmachine-jre-12-ea.8_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "a9a0e38ca2f8ec97d0a580fa8b2d40c444e618945ed9d163b1f14ecc26a573b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B8-0/sapmachine-jre-12-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.8_linux-x64_bin.tar.gz", + "checksum": "7432b818b9053c6ed2c72bede5ea5c178cc083d95871d5527693933f98e8e156", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B8-0/sapmachine-jre-12-ea.8_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.8_windows-x64_bin.zip", + "checksum": "a43584d2924b0f5c42f096e39c0463e62577bebe17b831c8854c7ef75d7a246b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B8-0/sapmachine-jre-12-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-12+7-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B7-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "9d8117994ac95ba9f055a84c63ea59d1235f5ada4732a1847e7e343924101fbf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B7-0/sapmachine-jdk-12-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "fe11cedc37899726a789b3a3e6087bf615bf099e4b422a3775f6b316d49ee1d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B7-0/sapmachine-jdk-12-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.7_linux-x64_bin.tar.gz", + "checksum": "efae5b5546ad711985bd79a0e9684a4e2a73f4cb305add9f021037cf08861678", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B7-0/sapmachine-jdk-12-ea.7_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.7_windows-x64_bin.zip", + "checksum": "920f352ed4afe795cdf49a71caafe8af962d3e9dd47830cdb65f030b5909bb78", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B7-0/sapmachine-jdk-12-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "3551c2820c20bda9cc95169afb1b8c8aea1ef2d90531383d49d0cf6a4301cd69", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B7-0/sapmachine-jre-12-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "7069298dec98c9e33dcb72d8c8b9720abe1467ce13526e08ba9642b5aecc01a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B7-0/sapmachine-jre-12-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.7_linux-x64_bin.tar.gz", + "checksum": "984e2f5a501074ba8d911ab9195ef64ac04d59d16d505e0d4998474b72b62612", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B7-0/sapmachine-jre-12-ea.7_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.7_windows-x64_bin.zip", + "checksum": "86bccfd9a2c7b964df81743fc0fbb7c52bd3cf327f2b31d28b54b14d2b3adb76", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B7-0/sapmachine-jre-12-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-12+6-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B6-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "31c1901a3f54e8ef93e8cdaaf70873f919d61963b642fd293c99fec0cfcaa8e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B6-0/sapmachine-jdk-12-ea.6_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "e71d2bc9b13ed780bc2e57a850505d55e507278b47f89c4ed062369e3b19ad2f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B6-0/sapmachine-jdk-12-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.6_linux-x64_bin.tar.gz", + "checksum": "7ac83112d57356d7f8ca9399525a26357e8d6fdae648eec79e41e45a487ef222", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B6-0/sapmachine-jdk-12-ea.6_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.6_windows-x64_bin.zip", + "checksum": "5a7dda2e0f03965702070968bb1c095dc916e1641d3bc2e9db368c5f9ba2f794", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B6-0/sapmachine-jdk-12-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "53104632637e8c24cd78c2cb4fc950df8996be806e63cf016e262d0185edc347", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B6-0/sapmachine-jre-12-ea.6_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "d5a8659538ba17947745dd869087cc539f5e01e3194e712cde9ed7ba684914c5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B6-0/sapmachine-jre-12-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.6_linux-x64_bin.tar.gz", + "checksum": "031e291a6f7b0860227376bebed41233cac252bf07fc5eb07c029e645b5d3ddb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B6-0/sapmachine-jre-12-ea.6_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.6_windows-x64_bin.zip", + "checksum": "d3d5a0894404e3315e70484d55c81df2b300a8bf7f2004f2eab8223e48447a4d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B6-0/sapmachine-jre-12-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-12+5-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B5-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "3ccb831cdb7e7ea8da192419f4f39f1b6e1286bf958a71650517bf690fcdcc55", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B5-0/sapmachine-jdk-12-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.5_linux-x64_bin.tar.gz", + "checksum": "fef358c5a8562acab1d49489c92b2cb9320d1e24e25620e2af51d41e1dc43028", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B5-0/sapmachine-jdk-12-ea.5_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.5_windows-x64_bin.zip", + "checksum": "5a0dab3ad2e82aa4b421d47fc3dca37e282c326d0ecdf120280ad275610c5dbb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B5-0/sapmachine-jdk-12-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "c5b8a4d6dacbe4a2f5a280b11cdbf9336c59b833cc2be88b549239ab0b632df5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B5-0/sapmachine-jre-12-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.5_linux-x64_bin.tar.gz", + "checksum": "590bef3cacacc8780c06eb64828d4bdd4ca56d857085292c0dcdb1d8a669f77a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B5-0/sapmachine-jre-12-ea.5_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.5_windows-x64_bin.zip", + "checksum": "6b9764eadc50d5fd5e8ade10a391e70a096559469045836b943451b172abfb14", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B5-0/sapmachine-jre-12-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-12+4-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B4-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "cc93a76495add59e765a37f977c6ec9883ba8668c02fd19be3f963d9580b0818", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B4-0/sapmachine-jdk-12-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.4_linux-x64_bin.tar.gz", + "checksum": "c216ed33c0fdedc3a7d0d4fc6207016a5e0e1d5e4f2762852ce78cae8bf48471", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B4-0/sapmachine-jdk-12-ea.4_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-12-ea.4_windows-x64_bin.zip", + "checksum": "9c2c2617f96b5c8dc42dea61d44c383d70365acb57252926337a801694830cfa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B4-0/sapmachine-jdk-12-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "ef67865a498fad4a2d439631e2dbf2ba87a6a3ffeb015d71ae27eb23062ef6a5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B4-0/sapmachine-jre-12-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.4_linux-x64_bin.tar.gz", + "checksum": "b246e1386be059b0181a1d5b86c1dce7489fe26e399b621af3ca17c080bc05b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B4-0/sapmachine-jre-12-ea.4_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-12-ea.4_windows-x64_bin.zip", + "checksum": "0918f98892d0ac26fe7376b3e6f6c29256e83eacb64bbec42e9120b9e75f560f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B4-0/sapmachine-jre-12-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-12+3-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B3-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "672a755b46a020a68a2fb55302a9b364ed1b16af50cd68286e9a140453bdf417", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B3-0/sapmachine-jdk-12-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.3_linux-x64_bin.tar.gz", + "checksum": "862bf45a6b9776df9473b5634bbaacca6e71eec9619c4077ccbeae5e2f5390a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B3-0/sapmachine-jdk-12-ea.3_linux-x64_bin.tar.gz" + } + } + }, + "jre": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "2e1268d92c1b274d41e9bef99b602a22fb9160fe7d3a5cec2f307a4936dbe460", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B3-0/sapmachine-jre-12-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.3_linux-x64_bin.tar.gz", + "checksum": "ca965a3265c56e3050e5e020a4e74725a00f2fbb4c1c653cbd72060ce316db4b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B3-0/sapmachine-jre-12-ea.3_linux-x64_bin.tar.gz" + } + } + } + } + }, + "sapmachine-12+2-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B2-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.2_linux-x64_bin.tar.gz", + "checksum": "e94db1027c24fa03a4f60aaf30797b6c5dff64d01d0a65051dc47836803d6c3d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B2-0/sapmachine-jdk-12-ea.2_linux-x64_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.2_linux-x64_bin.tar.gz", + "checksum": "4c7e21f5e54e9744dabcee133a85decc724436680370d50d6acc60392be5c25d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B2-0/sapmachine-jre-12-ea.2_linux-x64_bin.tar.gz" + } + } + } + } + }, + "sapmachine-12+1-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-12%2B1-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-12-ea.1_linux-x64_bin.tar.gz", + "checksum": "b0ef4cc72b6ce315a7291b7a94e70d82a3ef4c1841f49fd69e48fa4a47af9b3a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B1-0/sapmachine-jdk-12-ea.1_linux-x64_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-12-ea.1_linux-x64_bin.tar.gz", + "checksum": "ac75490538b7e1b7200f619752ef69954bd0fb8337292a3233e7ce5c5c821a2c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-12%2B1-0/sapmachine-jre-12-ea.1_linux-x64_bin.tar.gz" + } + } + } + } + } + } + }, + "lts": "false" + }, + "11": { + "updates": { + "11.0.23": { + "sapmachine-11.0.23+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.23%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "e66771139f1bbf1e0e1ab5a01ab777877eeed0a66a40065a7bb90baf015f0399", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jdk-11.0.23-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "1da56bc0c302bb6bee6980b3d2138ee2f771b6f544d86a69b8b7909e3f5e45db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jdk-11.0.23-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.7_linux-x64_bin.tar.gz", + "checksum": "2ee90f30305aa16f4ccdc75b667bc8a9bb23d545673e14e417fdba75a01512e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jdk-11.0.23-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.23-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jdk-11.0.23-ea.7_macos-aarch64_bin.dmg", + "checksum": "e997a45631d029e35de9b3548bf61347a787c99309abba9e7b2697f3de13a179" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "c19914fcd0203ce8eeb3e38f7207e6e809424555cfbbc993c5c924a838089738", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jdk-11.0.23-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.23-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jdk-11.0.23-ea.7_macos-x64_bin.dmg", + "checksum": "25c4c6f6e54249ba617430c749e3a41d135862ede15364f7a34b02412385599c" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.7_macos-x64_bin.tar.gz", + "checksum": "3364e8f01b861cdfe847dcde6bdb9e2fe6a44c69ccad937ea31836cc4d7d1469", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jdk-11.0.23-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.23-ea.7_windows-x64_bin.zip", + "checksum": "cffcc11f1d67cdda3e0c1650b26ef479ab63de0a3883a46e01148aabc7985132", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jdk-11.0.23-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "155fb0daf6c3010a10e0f552ecba597f9279e5bb57ddbd79bc504e0df341a199", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jre-11.0.23-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "bd942a47105e322b1c638b3b2b16d01ab51dfea1e116baf85a752b9bc9a7a281", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jre-11.0.23-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.7_linux-x64_bin.tar.gz", + "checksum": "345a43263dc22a360ab0b6fd338d44c3552008b2a3ad3f80a5a9deec20df8ddd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jre-11.0.23-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.23-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jre-11.0.23-ea.7_macos-aarch64_bin.dmg", + "checksum": "46fbb92f8541d814a5f9012e2963a3134025db528a9f3fe964a9fb406e500971" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "eef08d82ba13294e7a96205f9d78f37ec8d635864e3ce7181904efad00565a60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jre-11.0.23-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.23-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jre-11.0.23-ea.7_macos-x64_bin.dmg", + "checksum": "8142069545e2542806e5f57a480dc3c9e5ab40249645bf0a431b21f99795f6c9" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.7_macos-x64_bin.tar.gz", + "checksum": "931593256a7b4b46b6f881e4efd55fac464e7fb968fad6c7095fda92c7e1b662", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jre-11.0.23-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.23-ea.7_windows-x64_bin.zip", + "checksum": "65253b994636f8d39a748065faac797b95b0ed1a8f5889442fe9652239a06a34", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B7/sapmachine-jre-11.0.23-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.23+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.23%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "58cdd5fcc83a9b7bd749472f34a56231d4e2e6545bd6c16abe9f76c54d3fdff5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jdk-11.0.23-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "039dc98ffab5eaf8f80b5f4f3adbb612907acdc1524b0b20b24fdd4ebe8c9035", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jdk-11.0.23-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.6_linux-x64_bin.tar.gz", + "checksum": "92ffbac31a7e3c80cf1bbcba8f2d9a79183b6a2f1086df91129e7974558a1523", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jdk-11.0.23-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.23-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jdk-11.0.23-ea.6_macos-aarch64_bin.dmg", + "checksum": "35ece69b076a1c9ba40abd81eaaedf4d3a5118bf4ce31f74584c37061b186206" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "84f24c27139e4f09f94c7d892d4c73bab3fbcf4c85f35197c0d1c7dddce5518e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jdk-11.0.23-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.23-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jdk-11.0.23-ea.6_macos-x64_bin.dmg", + "checksum": "3e5ce8abe71a66123a85bf5f6e3f47a9f4f0eaf53baed1408e22583d2864f246" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.6_macos-x64_bin.tar.gz", + "checksum": "bfc37a8a7c60072a871373ba31ebc180d51c6ce8473e3fc3996535527e79c052", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jdk-11.0.23-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.23-ea.6_windows-x64_bin.zip", + "checksum": "1aeb0ae2f67957ca809a300710054e6b9f0f9754e2ba10abac837949b5c53dee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jdk-11.0.23-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "570069bed29766dfbe2fb15e383bf0441f049d837b38b3c5e76a54f7f04fc2bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jre-11.0.23-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "8a68919c446e0f53343cfd7e5db11c7dd82a42ee8a60040c32918af9d1f8f67e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jre-11.0.23-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.6_linux-x64_bin.tar.gz", + "checksum": "51ebc5d62a70f7479efba7a4dfb9a19ee5c1aee7acc23253c1b8725f59776f72", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jre-11.0.23-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.23-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jre-11.0.23-ea.6_macos-aarch64_bin.dmg", + "checksum": "b13a2d56e681889146e940de941222803204042ba76b6d5cd26a0169387cac3b" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "92a49c774c27117afb444db6d0cb06e5a6cf7c19f015fff7bb551aa33247aefb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jre-11.0.23-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.23-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jre-11.0.23-ea.6_macos-x64_bin.dmg", + "checksum": "5786ac5815eb213f035ccae0e9f4b17bae6d1aad79139735b991456f9befe049" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.6_macos-x64_bin.tar.gz", + "checksum": "1f882fc0176e17b72810a5aaa5215fa1f0d34e0c6c4c1f21c5e5e523bcf4a975", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jre-11.0.23-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.23-ea.6_windows-x64_bin.zip", + "checksum": "9f4f1692d4e8523f8486cf86c03f4b9ba02530b20ff91f7838e160cf865e3287", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B6/sapmachine-jre-11.0.23-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.23+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.23%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "ad0ec5effb0d7d8cf900ef8514afd0b300e6e891d0d08be2510addd097b23380", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jdk-11.0.23-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "3aec91e6195b2ce68dd2780f8b92367a48f1f35ad51b18e10e09a7feaaecf1ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jdk-11.0.23-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.5_linux-x64_bin.tar.gz", + "checksum": "e0f3638736924491786a3503f6b6cd067c0c46cb39ec591f1db35cc5406bb2e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jdk-11.0.23-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.23-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jdk-11.0.23-ea.5_macos-aarch64_bin.dmg", + "checksum": "6efd59f46b109cadcda32b34193833563acee2253966a59ae11c63cbb1fc4d56" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "3701b4956775b562d70916001a2b8d8fe1e4840adcaf1d47ebd74295de310a3c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jdk-11.0.23-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.23-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jdk-11.0.23-ea.5_macos-x64_bin.dmg", + "checksum": "5827937f4247c7ed153c6fc663002b46b0238a8c22cb757c7a57f0abf80096ba" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.5_macos-x64_bin.tar.gz", + "checksum": "24cf3a3b890b169342bb9c7f7bf61e942d446eb0d39680531eee299ad2560fd2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jdk-11.0.23-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.23-ea.5_windows-x64_bin.zip", + "checksum": "89b1712007d3cdd439fbd2a8c775ca6416d69a866a890a1bc53b28e6e1c653cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jdk-11.0.23-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "4836b73e3938377d6199f512060890457374f9354a933ecc9c09cbfbbc26e822", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jre-11.0.23-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "4122e9434eca0dadda118e00c9e101ea22e057c3759c8b06284af44db81b6e28", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jre-11.0.23-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.5_linux-x64_bin.tar.gz", + "checksum": "d32b593fd949e02313951cc9999a73c9e58b6be2d997fe7fc2c0d9b6933c0992", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jre-11.0.23-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.23-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jre-11.0.23-ea.5_macos-aarch64_bin.dmg", + "checksum": "29c94320054877135d49245bf6c05bf32467cbebd2111f4cb6b5f93d16bc5398" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "faa2d73e5e6ae8823550ffb6be634a99c1b2e3756c6a849b98de46c5480fc780", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jre-11.0.23-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.23-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jre-11.0.23-ea.5_macos-x64_bin.dmg", + "checksum": "5320f93027d0e30b470b5b4d1110f996f008800e70ba1a1bfa5fa0254a2f9910" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.5_macos-x64_bin.tar.gz", + "checksum": "96ddd741dc2d0ec239273a22cb6a4f604c25f71bc45c6e41d6fcfd3424f2b751", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jre-11.0.23-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.23-ea.5_windows-x64_bin.zip", + "checksum": "2e265c46ada81d809376ac9d16b1bf0985f197e0e43cd373d7419daedcf109e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B5/sapmachine-jre-11.0.23-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.23+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.23%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "9817c66491e5b7bb0d1b84b75db50898f23f8a56eb3c1867a95e0e391a14cb2a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jdk-11.0.23-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "5b68d0122e79137cc4fa0db998740ddd6cef260334de7b2fb667cc3732e8bce0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jdk-11.0.23-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.4_linux-x64_bin.tar.gz", + "checksum": "e7ceb6717ff403d5731be9ab5e1fd5e6eb85756d44c2a055104392b8ecdc134f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jdk-11.0.23-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.23-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jdk-11.0.23-ea.4_macos-aarch64_bin.dmg", + "checksum": "4ad0ddf493e06f4b0eab9fa6c153a1a7ccdd1238289f033d8306d5cd9d23e5a5" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "a5874073767aea6e09585140854222cce1e3a5f4fd8b3b7a3f8be11ab1de3499", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jdk-11.0.23-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.23-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jdk-11.0.23-ea.4_macos-x64_bin.dmg", + "checksum": "e1d349b1797014417eccca33729c6bd541b7d932d41fe47769dd026facceeb0e" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.4_macos-x64_bin.tar.gz", + "checksum": "966a2a9a8aac3022088a1256744420e72458185ec3d98dcfba09779c1c2d5fcb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jdk-11.0.23-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.23-ea.4_windows-x64_bin.zip", + "checksum": "e5202429663863bc91557609e8898bb183ad505540f79e1dd3b7d3472902f211", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jdk-11.0.23-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "330bc1ffef6396672c7b4d6cb544bea67e50499c4ee8edc3ceb053dbcfae9494", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jre-11.0.23-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "5b114d7af780aef3c6d6e5a125660d40456efb717e60e93e0f466de9066ceb13", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jre-11.0.23-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.4_linux-x64_bin.tar.gz", + "checksum": "0c55d32308363f7e878c1982a144553c195341b752dce836df3a51724fc6af08", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jre-11.0.23-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.23-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jre-11.0.23-ea.4_macos-aarch64_bin.dmg", + "checksum": "1e1fe3d328bda6beed12b35917a9a1ef5df5f87ca4de197503e0235489a67e41" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "a4aa9a671992b64626e5610694ff48f88b40b6c8a298490366a7e4c4e7d04304", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jre-11.0.23-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.23-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jre-11.0.23-ea.4_macos-x64_bin.dmg", + "checksum": "8165d3b202013f32d95ce44f8b81f647ad6bc59e4a1e268577879211bd01fd3c" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.4_macos-x64_bin.tar.gz", + "checksum": "e2fc248795bc50b47ed4681e9bd76d591c6a1421015bfb0054f575358ec40f79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jre-11.0.23-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.23-ea.4_windows-x64_bin.zip", + "checksum": "8a2986f4390849d26cba75c98fa11340b5daf46dc279187ebe9117207a6e7d10", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B4/sapmachine-jre-11.0.23-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.23+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.23%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "8988f4af52037efb29e5da6f04973895d6da9cf1414b2bbca2087b4787866b60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jdk-11.0.23-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "6976e2a98da8494f4f9201799c7c95044d002e2d94412600220683c6baf02317", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jdk-11.0.23-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.3_linux-x64_bin.tar.gz", + "checksum": "a7bfdc658f3283d39d35cca3ec86fe8ff577924e2973bb5bc267ffa184fea85a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jdk-11.0.23-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.23-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jdk-11.0.23-ea.3_macos-aarch64_bin.dmg", + "checksum": "15dc86aa67c2437dbb3a4b41c87f8619edcc93692544a8a2f202d5cc88121333" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "3df0fff6d94c53b2b3e1c6bd218ecea8eefd9277b633a47f83cb39ccddf6aa09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jdk-11.0.23-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.23-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jdk-11.0.23-ea.3_macos-x64_bin.dmg", + "checksum": "4938431a8f783e72b2a5a61063fc73b943feef6301e8c9909bcd8d4c30341e4f" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.3_macos-x64_bin.tar.gz", + "checksum": "fb0c8f7a4e0b5ac1e0089108e9045e5b75a83c670ef8efc14d37be75a36b2cfc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jdk-11.0.23-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.23-ea.3_windows-x64_bin.zip", + "checksum": "818aada4d96cf970c0f77ff49d4498ce1301a81d9301479614759dfcd09c0e73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jdk-11.0.23-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "a0e786187a055a2000da96d2a10de66f6d53317571464405d3e4e622fd33a16a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jre-11.0.23-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "7314b5016a6cb39679f3c1fb8e5f6a91d840d5db04ae39855696ef5b94cc917d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jre-11.0.23-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.3_linux-x64_bin.tar.gz", + "checksum": "8b88300276f290b059ce647dcaeb35f7a17d9ebe77c250dc66290ab3d1d22c0f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jre-11.0.23-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.23-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jre-11.0.23-ea.3_macos-aarch64_bin.dmg", + "checksum": "1f69f2c257eb7b800b9ac213840731425f148c40d82c02789e1b52afaa5de114" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "a7ca6697b58463fc46a8c915b5857c8f82c7b6e532c85bbb17d71373175f9652", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jre-11.0.23-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.23-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jre-11.0.23-ea.3_macos-x64_bin.dmg", + "checksum": "468cbfc4ce0b991c5a6bb81329c6bfe4f89a90ec2d1a01658cd375c69c484b52" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.3_macos-x64_bin.tar.gz", + "checksum": "f85ede8361da8ee44236cf30f307c6c0fc47b200d1d2694687a08e7d3bba69dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jre-11.0.23-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.23-ea.3_windows-x64_bin.zip", + "checksum": "bd2221e46ce2df14070a2fd0d4cfa2acc15c0c3549f7199d4912964f52198da1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B3/sapmachine-jre-11.0.23-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.23+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.23%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "b68ae0fc011fd38a70b9625684adf89d4eccb416a774086dca5015f8bd2360cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jdk-11.0.23-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "02dca99a78cced4a2cf9bf17c9c6060aa46fd73885b6e53973338b3c10c7f262", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jdk-11.0.23-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.2_linux-x64_bin.tar.gz", + "checksum": "672caa90dce1ff832fc2e5cd934b995e2805c179b5a4a9b3f52b761af71bcafc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jdk-11.0.23-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.23-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jdk-11.0.23-ea.2_macos-aarch64_bin.dmg", + "checksum": "1fbda9e2319c4007b01077070e0ef86aa20e6c555a61a0bf3d46eb18e3f68661" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "bb5886bdb5e10d50d9176e5f2b659cfc4710cfeb9fcf4686da6159e2e327ee7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jdk-11.0.23-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.23-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jdk-11.0.23-ea.2_macos-x64_bin.dmg", + "checksum": "2fd5ad8ed1b921766ad9128348189cadb98daf5ba0ae566a7b14aeecc7edd1d6" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.2_macos-x64_bin.tar.gz", + "checksum": "0f1319612e00c9a12e99ec515e61d50a647b81725eebc346d70da4af30a11217", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jdk-11.0.23-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.23-ea.2_windows-x64_bin.zip", + "checksum": "9054ede112578dc17fab2a50bd855c8c5b5dbaaddcd6d4ca7764494d389e411d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jdk-11.0.23-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "d70be512d5440eb58f3fed1334b6a264a0bf5c543cbc5d05f383b3bf0e1064e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jre-11.0.23-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "345f549990e417d9a1f1349d6ae2a52574f683355be145d66f20a62972734b22", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jre-11.0.23-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.2_linux-x64_bin.tar.gz", + "checksum": "39b8adfe464bebac965fd8e40e674a573a4a14c7acf97a03604757ec49a269cb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jre-11.0.23-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.23-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jre-11.0.23-ea.2_macos-aarch64_bin.dmg", + "checksum": "bb6148418ecc40a7ead64ef67ef34e696d4119b66068e42260bb7edb96e4fd7e" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "d602f501b7e87765afd2689d9847ab4c80d62c3cafc0ab442b29c78ba47cb819", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jre-11.0.23-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.23-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jre-11.0.23-ea.2_macos-x64_bin.dmg", + "checksum": "cc7e415246575ddbe4e79fe8056167fe5fcb88b4aca983f6c63c04de03a45047" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.2_macos-x64_bin.tar.gz", + "checksum": "f0721aace070dbe6f477b404642b24ee5f19f8c2f4b0f5083ee0a93eefcfa5b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jre-11.0.23-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.23-ea.2_windows-x64_bin.zip", + "checksum": "7111ea4c54df845c539ccee8729019ebc1df363bf56b7b49ed8ed439e34507be", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B2/sapmachine-jre-11.0.23-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.23+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.23%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "dc0d114baa730a9a9722efeafe8d2f1ce6d3062556666c679f6106245f0ef546", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jdk-11.0.23-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "4cd7616820f8256bf2db95f0b562cc8dc14ddc8290896d23e2719c32e36c4a04", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jdk-11.0.23-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.1_linux-x64_bin.tar.gz", + "checksum": "dfc5cfc7f69c8f6ac7190a7ae6c21e3c6ba7b187dd1a9e35fc7554827e52c277", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jdk-11.0.23-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.23-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jdk-11.0.23-ea.1_macos-aarch64_bin.dmg", + "checksum": "53adf14dfaf67c4ff566bcde33d012a4fb732d1f5cf834845bbc2182f53801a9" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "8f70bbaffa377836af49a9a127ab2dde49efd557d134001360c6127277af4eb7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jdk-11.0.23-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.23-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jdk-11.0.23-ea.1_macos-x64_bin.dmg", + "checksum": "ef83b98bbfa0ec4c9a6ede5384582db0545367008c72eba01bc00c73372ee3bd" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.23-ea.1_macos-x64_bin.tar.gz", + "checksum": "7ae3eac3a26cafb3dbc0a0cdfdd7c731dceffe6361cfb27f0fecdd7c26574827", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jdk-11.0.23-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.23-ea.1_windows-x64_bin.zip", + "checksum": "2185047d6000fc6d974e9922a2ded8f0fcb33dace122154bfe86f470f9de707a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jdk-11.0.23-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "6420db6a409afa8ffcab941f4881ef2f40b96a0007f55caf79efbf3d46dd31fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jre-11.0.23-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "35d79a985400a0300fdfd29ee873cc97c2ef63bda133f89d5ab691edbb373771", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jre-11.0.23-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.1_linux-x64_bin.tar.gz", + "checksum": "7bd02ab7e95697b52bda8e82f460e68208d5b05c9b02905a68abb282a7ef8a17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jre-11.0.23-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.23-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jre-11.0.23-ea.1_macos-aarch64_bin.dmg", + "checksum": "df062166bb91a272f3ebd9aff062b901f2023de001424235c3adb31551ee2e15" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "beb7ec3ea4a51da103edd40a27d7545b3854e97b76ca1baec3abcc4d52040bca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jre-11.0.23-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.23-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jre-11.0.23-ea.1_macos-x64_bin.dmg", + "checksum": "34aa8e01c8f46f37baa57cdb8d2ad12e89fdafb143839bc60764583ec4c22831" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.23-ea.1_macos-x64_bin.tar.gz", + "checksum": "4dd569fb917b1a3765a95c02558325db5b87a1c8f47c9be60d26b497459bc345", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jre-11.0.23-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.23-ea.1_windows-x64_bin.zip", + "checksum": "a9535efcdb1ff7e6f42bc58d1ff3e120d1aeaa70e428eb89355e78457b76d04b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.23%2B1/sapmachine-jre-11.0.23-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.22": { + "sapmachine-11.0.22": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.22", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22_linux-aarch64_bin.tar.gz", + "checksum": "38e51e5683d46a9173a0399b9551db2b771edcf5195a5ccb8264bd4dff4692fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jdk-11.0.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22_linux-ppc64le_bin.tar.gz", + "checksum": "5cae55860b4d543dba5b6f704d545825b1535a72f6fa42fb7848b487897e478c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jdk-11.0.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22_linux-x64_bin.tar.gz", + "checksum": "38d3ad91b469b6d51b34be9c419cfb2fdb7a2964047f871b3c193fc095e06af9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jdk-11.0.22_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.22_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jdk-11.0.22_macos-aarch64_bin.dmg", + "checksum": "d074f89b14e57b8bb30c34a037c04dcf0e87b5a11703dc2eb61af816f433da9c" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.22_macos-aarch64_bin.tar.gz", + "checksum": "682c9ef9597e4ee9fef49b24d6b4f44316052553008c23efca6a89eb0344507d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jdk-11.0.22_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jdk-11.0.22_macos-x64_bin.dmg", + "checksum": "06db909828f8ddd94683ae36571221a467540b0fc61f11726b102981386f70bb" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.22_macos-x64_bin.tar.gz", + "checksum": "b2908cd13e39e13aadbf15b8bcbec0710158b3a6ab43a1fcbece03a8c991de59", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jdk-11.0.22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.22_windows-x64_bin.zip", + "checksum": "e0c17cf37fd8ca325b8a0a10bb1c49f873a7ae91e493e164dcbc6fc9aa1980b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jdk-11.0.22_windows-x64_bin.zip" + }, + "msi": { + "name": "sapmachine-jdk-11.0.22_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jdk-11.0.22_windows-x64_bin.msi", + "checksum": "f4677de9161ccf48254fc245a41b4987af7df19946f51e4782b650dfd56cd788" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22_linux-aarch64_bin.tar.gz", + "checksum": "12e9185f9fc0162d228583318336b17e9c1a67728e8353e0dc7d02c4323d3eee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jre-11.0.22_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22_linux-ppc64le_bin.tar.gz", + "checksum": "7bb1e7155b936bbd3eabd5f13015cd904c5a80e593113e6cc8a7bb284a88fa85", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jre-11.0.22_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22_linux-x64_bin.tar.gz", + "checksum": "16a73284bd0813b202e4dd820594c7d2811054824fcb34684d04853bb86a4091", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jre-11.0.22_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.22_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jre-11.0.22_macos-aarch64_bin.dmg", + "checksum": "8d2c97af584012de2d0f925bc42278e186a6e2d1a9e107334abd2533b672c9dc" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.22_macos-aarch64_bin.tar.gz", + "checksum": "028afb79aaaac163e606f2cd8d26f35715c91322be7815c53a1e287404052ed8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jre-11.0.22_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.22_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jre-11.0.22_macos-x64_bin.dmg", + "checksum": "6cdfa506a046a672b9855bceb8a10907f9ff8b1d27a7994026728313556c4273" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.22_macos-x64_bin.tar.gz", + "checksum": "3b1b1ca8c7044c75c1ddfb6e3a02db13638e1680ea4d7ddcc01048004595cd40", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jre-11.0.22_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.22_windows-x64_bin.zip", + "checksum": "ae4dc2d727eda77dd6a5495075b28ca14bd1860bb128b8f4075bd0d5f0e937b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jre-11.0.22_windows-x64_bin.zip" + }, + "msi": { + "name": "sapmachine-jre-11.0.22_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jre-11.0.22_windows-x64_bin.msi", + "checksum": "7dd9f45a109df0073d2579daac767cc8044240cbdc2303fd6665f44bb8976989" + } + } + } + } + }, + "sapmachine-11.0.22+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.22%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "540b9451fd53f961ee9b3d2de35528cb1596550fa1d4b4fd2b840b6c474190d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jdk-11.0.22-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "0cf75e9fd605c4378e24a64e79c423fbdfaa59051959506252d7e4551c4d7c8b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jdk-11.0.22-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.6_linux-x64_bin.tar.gz", + "checksum": "d214aa180cecf8d7269938f8561f6395b68cf90de3a6096e6c769dfbe0f48ad6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jdk-11.0.22-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.22-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jdk-11.0.22-ea.6_macos-aarch64_bin.dmg", + "checksum": "a2444eeab72b0255fa6eec8622dc82f47413dbfd2a956d2e0f1dc8d30dfbc7cd" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "5680b1fd622c4925ddfcdceb4d8303e18b31307bcebbd81573881bc879e8a4c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jdk-11.0.22-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.22-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jdk-11.0.22-ea.6_macos-x64_bin.dmg", + "checksum": "556dac4fa8756a48ac90ffb6cf9a89cd705ebd06616f76d5de7f75e0899137b6" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.6_macos-x64_bin.tar.gz", + "checksum": "8367168b44c43ea77ab8c37aa6a2f9d93698eba651ee760587b6dc71204d0fbb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jdk-11.0.22-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.22-ea.6_windows-x64_bin.zip", + "checksum": "620b18550e51e976a7b92c789be94df441c3117a87b11e11088e6db456a43397", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jdk-11.0.22-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "4572d88af916da46111aca3762636bbb28c5c04a70e70386c74882a93dbc5ce4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jre-11.0.22-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "a964db3b94a94938a1c3de5c3fe34ce66cfa2035dd9f6c1d332cc84a581f264c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jre-11.0.22-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.6_linux-x64_bin.tar.gz", + "checksum": "e0a8a05f299228076fe78e025c11474c2a942d08c6f77090583e7247ac3bee12", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jre-11.0.22-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.22-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jre-11.0.22-ea.6_macos-aarch64_bin.dmg", + "checksum": "76dd7b7c618112fb66f6e8ba0bb4da0c10bcfe4cb38e0b4e98eef0a90dee872b" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "8dd08f847eeee5c23ade6f75f6387271b5edac15b2304dd637d071eaecffe4f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jre-11.0.22-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.22-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jre-11.0.22-ea.6_macos-x64_bin.dmg", + "checksum": "c28e234747bee23a696a0df5c86ddd1a8b66a89d78592f0ac388fee5dc0c687c" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.6_macos-x64_bin.tar.gz", + "checksum": "ffbd36607a37296a17f42c8fed16d5f5e23fad2f3c7ff2f7f782e7496860feb8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jre-11.0.22-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.22-ea.6_windows-x64_bin.zip", + "checksum": "2dc0268b703de7a3f07c20c2072430739497d21222f9401b2e95a076087586c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B6/sapmachine-jre-11.0.22-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.22+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.22%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "ba3c1c82dfce3c207a8752cd6729fa10db68036d2279eed3d0e58a01821c7106", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jdk-11.0.22-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "2c6de3aa81b5c9e9407a4ff6c6fd3b601bf14ecd23c3017b69cd3c6042175ebd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jdk-11.0.22-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.5_linux-x64_bin.tar.gz", + "checksum": "9dc50ded1f14e790b97ef4a19a0c5619c7189dbb5b2d7755d7f01eaacbae445e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jdk-11.0.22-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.22-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jdk-11.0.22-ea.5_macos-aarch64_bin.dmg", + "checksum": "0d82649b2abb8f6c55191e0d9fd4735a0c3831ba573d2fec6ea31d48855e39a3" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "f732ed6d1b83e6e2dd10d3b2018996b79169e114059b39d69a69c63f1026cdd0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jdk-11.0.22-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.22-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jdk-11.0.22-ea.5_macos-x64_bin.dmg", + "checksum": "0ecac765a1d58c308df97431a83eaa341d99c209598cf7ea88a2ca0264caefec" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.5_macos-x64_bin.tar.gz", + "checksum": "91e000f6bb8a64e6b88680d1c90bb3af27891ddfc8b0c86d1ff19cbf46550f8d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jdk-11.0.22-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.22-ea.5_windows-x64_bin.zip", + "checksum": "433bf44f67b6a738a9e96ceafa542df3c585b6ca89f8a036486b9ec3fd8695a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jdk-11.0.22-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "d7eaa8934672781cc9b47e10475d88af122697b3dcb9fc3bda270266ef26d926", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jre-11.0.22-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "226219c94528f3c94694a6c7e8123ac26c821d35d635d7aeceb3dc0f38e8046f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jre-11.0.22-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.5_linux-x64_bin.tar.gz", + "checksum": "f972173519d1f3d7f9efd36bdf43079e05eee8ae756441d3b84978bddec73e56", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jre-11.0.22-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.22-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jre-11.0.22-ea.5_macos-aarch64_bin.dmg", + "checksum": "fb4939016c5f3be80f9a65a5ad9b9b387f52ef88873461e6adec7d71a32d2b78" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "1efbd067916c6cf8cfc901ccce109c3a992f8776d9c4a2db9f1992bf0534f5b1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jre-11.0.22-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.22-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jre-11.0.22-ea.5_macos-x64_bin.dmg", + "checksum": "bde2cb30f7de1822da6585b26e40549e75e3eeebbaa3c059c16a49b02ea07ea8" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.5_macos-x64_bin.tar.gz", + "checksum": "49a6021773fdad70244d48a48c9fb70619b7cab3cb2db32328aa411db9cff5dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jre-11.0.22-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.22-ea.5_windows-x64_bin.zip", + "checksum": "bcc3fd1aeca5e41e048c3731ec1f264d8a13a69e5485cfa203e6f2291cb98293", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B5/sapmachine-jre-11.0.22-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.22+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.22%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "37f1be320216d498c6a56eb5b5aaa385a67047f493edb0087d18543928b01f32", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jdk-11.0.22-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "6ac45b8fa264eaba2f88df0625a380f19d4c2ad6139eb2a7150584d51789fca4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jdk-11.0.22-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.4_linux-x64_bin.tar.gz", + "checksum": "95c14079ecbeb1111a9e0a5c2963d978204c94519da83c6325204a1d42c7ce73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jdk-11.0.22-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.22-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jdk-11.0.22-ea.4_macos-aarch64_bin.dmg", + "checksum": "704d1a98589067d8fec07b941da5af33af9c34762e59e234de7c8ee3e84f848e" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "99babded0c66ead3efd91734ca6d11fd595f6693af1f97734cbcee489544b8f0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jdk-11.0.22-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.22-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jdk-11.0.22-ea.4_macos-x64_bin.dmg", + "checksum": "bb321a0840b94519f22187f6b00f1c24069c629bc6ebb41fc4da86883633afaf" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.4_macos-x64_bin.tar.gz", + "checksum": "aeb219d60c937f9858e3c2bedbb7b3cdfbabb5f0a0689b98e468f1eaf8d68584", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jdk-11.0.22-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.22-ea.4_windows-x64_bin.zip", + "checksum": "02fa34b4a20a5dd7e900e1d1f42a880dab5723cc56e0f68171403e8737686c34", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jdk-11.0.22-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "b297de5455c47de6a5f47d5dc9dbfa00c8c991b8eb7cdf34feef350caedb4c8c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jre-11.0.22-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "008f6152898b470e0aad9e6e878ea17d05194d310a5cb41f2af97143e5a34471", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jre-11.0.22-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.4_linux-x64_bin.tar.gz", + "checksum": "0cd63c05c853c95770140f7208a17c070d525854f1e87364c8da5a2b0ad49198", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jre-11.0.22-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.22-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jre-11.0.22-ea.4_macos-aarch64_bin.dmg", + "checksum": "8906539b23182865f9d45752f7592934cd372b28c07dc918ca52c9e684e97a09" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "0a1fc8fa156f845882896d72d178383b6636c8ccb0bbc13f4ae0bc98400cad9a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jre-11.0.22-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.22-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jre-11.0.22-ea.4_macos-x64_bin.dmg", + "checksum": "a0d911ae4c20a89b780402f8944ca8e037db046a308afc79e77b578930fe5554" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.4_macos-x64_bin.tar.gz", + "checksum": "83e1367d57b0f28e1d450add06da536f30d75b7f35e549fb7ad274eb344681a8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jre-11.0.22-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.22-ea.4_windows-x64_bin.zip", + "checksum": "4d829120c1d3a0a62aea095f0a650d5e6a3af0007276ff5a548a780ab8fb148e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B4/sapmachine-jre-11.0.22-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.22+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.22%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "9dd657cd450bc43a81ecf43e0bc76fbec31551b8678f5dfe1f7b1d09369458ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jdk-11.0.22-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "eb44314134db04a5ca4c9820df56ce98b3608fdec40533d37ef1452b25daff8e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jdk-11.0.22-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.3_linux-x64_bin.tar.gz", + "checksum": "9d83b034f08b8bfff6f54ae3c7a405917182c772b1db5c45f8d129951a16caca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jdk-11.0.22-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.22-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jdk-11.0.22-ea.3_macos-aarch64_bin.dmg", + "checksum": "c78243ed249de3976563b25313930a3ef142169615705c07ad723b6ced82ab8f" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "c72b2995cf789a5b579a9fa020abf83e01378e3b1833fa5d881fbad85c2670f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jdk-11.0.22-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.22-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jdk-11.0.22-ea.3_macos-x64_bin.dmg", + "checksum": "79df7d0224b096231e9e70483e88cee092b1028c01539aba1d88116130caae02" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.3_macos-x64_bin.tar.gz", + "checksum": "933fb00661352c4f12a8bc9873d8014505e7f39cefeaea713db7b1654ed59b62", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jdk-11.0.22-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.22-ea.3_windows-x64_bin.zip", + "checksum": "468616ff60e9aa177ac9f182daca49699e55e19dd6450ed6856ca5551d1cea1a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jdk-11.0.22-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "9790a2304c5193ba40f302e02de2ed23d45bf07b81f09eecc1a02d101f8bf38a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jre-11.0.22-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "29e401aec22845650779087071713d0371eb3e47cbab24c0be4c1dfb0d40b878", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jre-11.0.22-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.3_linux-x64_bin.tar.gz", + "checksum": "5e928f2e3a216aa096391dc0f408497b1ef4961118eadfac6d5832cb00841110", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jre-11.0.22-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.22-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jre-11.0.22-ea.3_macos-aarch64_bin.dmg", + "checksum": "5e4492e54ff23f5f7157b8d4ef029bdf37542b5bc42caa5f2a4b36c681ab90bc" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "336f829e4c65b6fba52d48de7ca8519507b6b4f2ea034a7e44ddae5497936695", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jre-11.0.22-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.22-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jre-11.0.22-ea.3_macos-x64_bin.dmg", + "checksum": "b4b19d2f28fad0614fee6a055699fb79b544caabb0bff508d1bfcc62ce1c383f" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.3_macos-x64_bin.tar.gz", + "checksum": "8e9c7d41a0e6dbed708205dc1b6f74030d77856c442e123f746b7eb4bf467287", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jre-11.0.22-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.22-ea.3_windows-x64_bin.zip", + "checksum": "1d9bd4441e95fdee028429b07efdc9b7573271090203cfbdbe3250c1f55a5bf2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B3/sapmachine-jre-11.0.22-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.22+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.22%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "cd0bd98da867e720df436db95615df610212b4424c8ca31d0980964b0384c156", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jdk-11.0.22-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "3146af76014ffafa2154f1ac2b8a657123acdded1404a3654ce4989c1dc1d19f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jdk-11.0.22-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.2_linux-x64_bin.tar.gz", + "checksum": "f53e8d065c2eedb4510ccfe8619037447d0f62c0582994ed6dd86b50af3fc9f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jdk-11.0.22-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.22-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jdk-11.0.22-ea.2_macos-aarch64_bin.dmg", + "checksum": "e096763fe71d9e97b6a8cad27c5ac7422c788196420ea3dd51a58bcfd73a13f0" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "881f1c9d1ec82ce9f0d5a8b0d6e29a845e043f070a9cfb2edeabacd074088018", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jdk-11.0.22-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.22-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jdk-11.0.22-ea.2_macos-x64_bin.dmg", + "checksum": "ee683c65b19d77d5fbe1ae038bb0ca48dd46648c0ebd91063b959d3c5354225a" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.2_macos-x64_bin.tar.gz", + "checksum": "2a75fdbf4edeaadd04b3edcaa167aa76e7a6a6cd0d2f67be185c01793513ee7c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jdk-11.0.22-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.22-ea.2_windows-x64_bin.zip", + "checksum": "5194101b04ddaf5bfdd6380594cf0ca912f0b1a07a1d0181f113f24d12ce7c6a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jdk-11.0.22-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "c427002636433f78650556c7e4866b0945632c9ce018b93e6061adf8d9cb3d5b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jre-11.0.22-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "e2d121a388346bcb473d1fd50e760ae516d982d440512c589789ec816e53b0c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jre-11.0.22-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.2_linux-x64_bin.tar.gz", + "checksum": "bafea51f125f47b4b7e71592247ef129fbba1e80e0ff9156e535a225f0838ac5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jre-11.0.22-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.22-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jre-11.0.22-ea.2_macos-aarch64_bin.dmg", + "checksum": "48516b3e2c5df92ddcc6b0111d22c0306b6f120d36510a88e669669239a163e6" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "b9d3bb2616007618773f178f8dc862e15ad4f211cb46542f3f13bebdaeee5b10", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jre-11.0.22-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.22-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jre-11.0.22-ea.2_macos-x64_bin.dmg", + "checksum": "d004663bf60dc5d23c174a2052cad2e609849a65334595f5fe517ba0c03e5396" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.2_macos-x64_bin.tar.gz", + "checksum": "00fd8de5fc2a19f12f61d490e923730f23b01ecd985bec2fa1a7a897e1c2cdb5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jre-11.0.22-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.22-ea.2_windows-x64_bin.zip", + "checksum": "4a4fbe795eb233e98cf95ce4a1f0079a1b9ac327a4c7e4400ddb8579c32e963a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B2/sapmachine-jre-11.0.22-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.22+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.22%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "544307f34af260aa75fb5db43d062358b5253999a1134e33ab75d67b6d623063", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jdk-11.0.22-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "ae271831b7de7548cd470cd0a679d4e3f4c0c6f294db512f9ace011e48de0f08", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jdk-11.0.22-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.1_linux-x64_bin.tar.gz", + "checksum": "31f2ab849ccf61ef7591b3568ad7d712fbbd26a250075a7b30853593d1ff5c50", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jdk-11.0.22-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.22-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jdk-11.0.22-ea.1_macos-aarch64_bin.dmg", + "checksum": "3a2d39a47fa5cf9c861de8be8d216aebd34f880d08cb88838d8186eb66de895e" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "324eb5321284412f59b284e3eebe2ef4bce0a290d8cade5d58ef604bedb27c44", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jdk-11.0.22-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.22-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jdk-11.0.22-ea.1_macos-x64_bin.dmg", + "checksum": "f88850b8524844bf64bc79629e8250f462d188d8583c1f1af17959d41109f008" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.22-ea.1_macos-x64_bin.tar.gz", + "checksum": "d7a55d56c18970c3be91da315e00a0ab56275537f10bed73ed33b21679aa6dc6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jdk-11.0.22-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.22-ea.1_windows-x64_bin.zip", + "checksum": "d4f3d8edcb4f1cb643b36b0e224120f24026b2a41a8813ac0df3fa00cd1e7926", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jdk-11.0.22-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "637b8a6ba1bd88c82ffe248e0827e06088e2b25d9cbbb47785b82bce9174c0ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jre-11.0.22-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "1253dda7c1993e68b2446b7a8e512bc1b7e07969e77255f7cc46a437d782a676", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jre-11.0.22-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.1_linux-x64_bin.tar.gz", + "checksum": "e222d689275f2884650398e820f7c64227cf5fdc556bbf0f67575ffb1a116ed8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jre-11.0.22-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.22-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jre-11.0.22-ea.1_macos-aarch64_bin.dmg", + "checksum": "414d2ab3fc7105520dab3bffed07b6796ee523ef3ebf79182ba5e5225479c6cc" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "0602d2c8c74266746c9277a382f39946afafd2b38216555d2301da40cb96a2b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jre-11.0.22-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.22-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jre-11.0.22-ea.1_macos-x64_bin.dmg", + "checksum": "45f86a640b30e0fb0afb3cfb5aacc20986bccdaba8677f3111a93ad6ffeb809a" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.22-ea.1_macos-x64_bin.tar.gz", + "checksum": "473722f06e90a3b68523c3fee2da43108ffc390441f5189671098931e7b3ceb6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jre-11.0.22-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.22-ea.1_windows-x64_bin.zip", + "checksum": "ea715409649412eceacf28f6aabddc306f6f8d9fcff24bf94e5029a8d551e237", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22%2B1/sapmachine-jre-11.0.22-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.21": { + "sapmachine-11.0.21": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.21", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21_linux-aarch64_bin.tar.gz", + "checksum": "255364b5a18be1f30029d4c5ff0a645b52714702edc7b5f5cb8a77067b586f41", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jdk-11.0.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21_linux-ppc64le_bin.tar.gz", + "checksum": "a72a81d78eedf882985a7c27b8fad00142d9cd07ab2ece299b0c2a8d4343b32c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jdk-11.0.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21_linux-x64_bin.tar.gz", + "checksum": "d1dc3ed8b6d44f5da34a3f09ae35ed71eb4c63fe1e6a530861f7df75f60b3703", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jdk-11.0.21_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jdk-11.0.21_macos-aarch64_bin.dmg", + "checksum": "90fcd8d3594aab06d7f33f4663e35f49a2e8ba08f85c99819aebeb13bfb7a7c9" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21_macos-aarch64_bin.tar.gz", + "checksum": "3a1a0e45d6de1fdc6874ea91f63713e3cd3e3663865bbe97941e0f8872b2907e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jdk-11.0.21_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jdk-11.0.21_macos-x64_bin.dmg", + "checksum": "b173e28aaf46abbcb9fe717365f1112b3b547f24b26232f610ad0c6a170bebd2" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21_macos-x64_bin.tar.gz", + "checksum": "76d90d33a25ff61227e178034876c6877dc051933d0af57403b43e8a4b2feb65", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jdk-11.0.21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jdk-11.0.21_windows-x64_bin.msi", + "checksum": "0c7506594d6b3b5208335adeec9d28bf4987387489541d5e0feab85470badaff" + }, + "zip": { + "name": "sapmachine-jdk-11.0.21_windows-x64_bin.zip", + "checksum": "d9bf9fca1ec278d272faa0919a97c929b5c7f24c2b5c9853a22de47b9226e10c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jdk-11.0.21_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21_linux-aarch64_bin.tar.gz", + "checksum": "dbb7888d8879e13d974d9747904c2ef0b063b59fb2d81e9db13105b91c7756fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jre-11.0.21_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21_linux-ppc64le_bin.tar.gz", + "checksum": "01ca137ef436e9a0f1447979eb8e8485273e1b9c54d4445d90388bbd63419282", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jre-11.0.21_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21_linux-x64_bin.tar.gz", + "checksum": "104f8076f01e010e3f6e6bb0e2567a8556a87f26759224e447fd12cc786162f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jre-11.0.21_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.21_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jre-11.0.21_macos-aarch64_bin.dmg", + "checksum": "c7f716930c31ede4a52ace2eea9011732b0b2529a2b13be7f681368808667251" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21_macos-aarch64_bin.tar.gz", + "checksum": "55512ea6ff2a22703a2859ebd3d85c252cf0267d30fa47895c46f9209c563170", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jre-11.0.21_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.21_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jre-11.0.21_macos-x64_bin.dmg", + "checksum": "81c6b42d6f6ea499785cce60a4eb383cbf5eac9da484d64ebe4e2e0a81c6c200" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21_macos-x64_bin.tar.gz", + "checksum": "e265bda2e6a08b8fd119234f9e8da0a3b6f53f416e69e92c53ff31f19116af0f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jre-11.0.21_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.21_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jre-11.0.21_windows-x64_bin.msi", + "checksum": "5b11e366cfb0e65d5e484c872da392cbd6786accd5113ba39010a9f785040e2e" + }, + "zip": { + "name": "sapmachine-jre-11.0.21_windows-x64_bin.zip", + "checksum": "622b5e00c823c518cc53fb74c80592b5516489f3a0fdb3e2b86068d5a6c50c98", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21/sapmachine-jre-11.0.21_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.21+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.21%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "e45cf17b164daba5560b634c4384a19a30f52f5126192b94beac5bfbfbed05b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jdk-11.0.21-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "c92fe8dcda165b8fe118d8935888dc5f92ed4b3fbe14127792fd4fe3f0aa0c4f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jdk-11.0.21-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.8_linux-x64_bin.tar.gz", + "checksum": "f3a178b4215fce17050d0da48b037c72d6e4824e60a56c88f9e10e59e145a540", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jdk-11.0.21-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jdk-11.0.21-ea.8_macos-aarch64_bin.dmg", + "checksum": "1f3021bce9740f4f574f4209af831d3d6ae7a867157073ae4df3676923632fd4" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "a298b4a32017ecf49762ad07057298c17379fa41579d7f358a5424d3e249d6c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jdk-11.0.21-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jdk-11.0.21-ea.8_macos-x64_bin.dmg", + "checksum": "5615365552af1e68458f1299ff49cd128038a3d109b8679aaf049a6cb07945e1" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.8_macos-x64_bin.tar.gz", + "checksum": "232623be7226b36f5680a8aed7412ff5e5f11c6a9a3fc8a0167d6b3ff167d71a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jdk-11.0.21-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.21-ea.8_windows-x64_bin.zip", + "checksum": "1a54e1b54018094d2d509a7c4551281cb073a8ff05a16f3cfa3d2994fc08e8fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jdk-11.0.21-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "bc8c73e783620616d052f975cdf8f96ef070076800f7f353c9d54a0c56bbe06d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jre-11.0.21-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "baa41235aed62f3123bd276622ee0e6d7191d3b3d954105cd7eefc147356e610", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jre-11.0.21-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.8_linux-x64_bin.tar.gz", + "checksum": "0badbd215e387dec4c23f207b5957b28433d4553d1a2fffe98b2715d68ba4222", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jre-11.0.21-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jre-11.0.21-ea.8_macos-aarch64_bin.dmg", + "checksum": "73c69b28d7ee27461aa6875ac361ff469c8079af85b549b25b4b1230ada3bb5d" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "4f9c5b3ade5c1eb30942d201785fac0e5aef0d42b0b572fa60e7fe3904f05a2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jre-11.0.21-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jre-11.0.21-ea.8_macos-x64_bin.dmg", + "checksum": "75086f72c063a4c6b6e4680c3e2a6ff0282bc8096b0ae220e11407c69a09daeb" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.8_macos-x64_bin.tar.gz", + "checksum": "05be8f2cb49d8671df05780cfef363de8c8f3f9eb619101bc8e00c0f15c57f47", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jre-11.0.21-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.21-ea.8_windows-x64_bin.zip", + "checksum": "bac9ed21f1ce1010be8e1b5416fb71bbbb15d87f10052301447af636e23a3409", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B8/sapmachine-jre-11.0.21-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.21+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.21%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "153e964fe9f36e8356b27a0ce33730b0f42aa1527a16eb74ec8bfe291f1391f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jdk-11.0.21-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "c603c218e733b3ec32b333d1eb7b24233eefbdba2a8b42beeeab2d514be4ca69", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jdk-11.0.21-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.7_linux-x64_bin.tar.gz", + "checksum": "e8370c05b4c5854343a294fece752be7bde7fc02f241590388dde44a5b2012ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jdk-11.0.21-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jdk-11.0.21-ea.7_macos-aarch64_bin.dmg", + "checksum": "42fc8e0c7372afb9042a2e0f17b3274af711b543e94ac9fde6d4991815cd05b3" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "687dc7702d766d8004b3edfcf598fafb2e7ae741f391612424fba78aeb2485eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jdk-11.0.21-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jdk-11.0.21-ea.7_macos-x64_bin.dmg", + "checksum": "a0ffe0a6166bb2059630420a79eb799cc758571c41802b936e1b97dc6c83e6e7" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.7_macos-x64_bin.tar.gz", + "checksum": "ac06c1caa1b71220e5c3b5e5d5cd91e54c6e632cdd340cf10b0f2520d955fc46", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jdk-11.0.21-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.21-ea.7_windows-x64_bin.zip", + "checksum": "2895fd8c638c353016b41373c2cac98b425e3ceaad9ac78e648ba0fe968820c2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jdk-11.0.21-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "fbebcde9877527de6a8bba118e711a9493671b0a6813a771172aa86b37b38b57", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jre-11.0.21-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "0eba763316688024c8f752739f11b666fcc3d2e841d631f0c86a601e7b703e46", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jre-11.0.21-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.7_linux-x64_bin.tar.gz", + "checksum": "ddde256fd7fad1874ee90fe98cdd0004f337ebe886ded74dcbe2de965d423210", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jre-11.0.21-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jre-11.0.21-ea.7_macos-aarch64_bin.dmg", + "checksum": "b5103ae9eb0c629d6e42813cf0848bf29ae58af753ba9641f92ee61ceac25725" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "1c2acd0ec85eee46009bb1cd4ee6dadcad03a6a03c6756e6c49099d8ca638c05", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jre-11.0.21-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jre-11.0.21-ea.7_macos-x64_bin.dmg", + "checksum": "8b38f57c263c5ed4ff8f873535a6c2670aa80fb1e5403f7793d9f63d99d058f7" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.7_macos-x64_bin.tar.gz", + "checksum": "fd47b7bc98a2176f06404adaa7e149280db9d85355b23b6420587cc2ce954a37", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jre-11.0.21-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.21-ea.7_windows-x64_bin.zip", + "checksum": "82cc2148b8f59da7a417f378d5a39e89dc00dadf4dda7f1e8b66cb900139216d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B7/sapmachine-jre-11.0.21-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.21+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.21%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "90b1d0635133ba794ef8d0ae6c7cf5f2d78e850d392bbd33de8929253f0d962b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jdk-11.0.21-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "f8664a8717872ffa7452449abaaf193fe531304a9d1c588f9aee25a055979719", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jdk-11.0.21-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.6_linux-x64_bin.tar.gz", + "checksum": "d43374a11d9f707828fc180ce02800594d8584c0d6958656f4f019ddd0f30d2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jdk-11.0.21-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jdk-11.0.21-ea.6_macos-aarch64_bin.dmg", + "checksum": "b3c5fa2cff9193c80076aade2ad81988e110ee50676fbecb03d3b7b9ad452185" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "b5d4f2093831de939a3b8a51d3e9b8054196e173eab66f178c6f85e47a99024f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jdk-11.0.21-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jdk-11.0.21-ea.6_macos-x64_bin.dmg", + "checksum": "f7e90164856be0dd16e2bb176e5bc511ad8da33221799b1492098c9ce9a76e11" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.6_macos-x64_bin.tar.gz", + "checksum": "48adf585756e96c8898a173101616269207980501d78ed41d2b547959f0e3e46", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jdk-11.0.21-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.21-ea.6_windows-x64_bin.zip", + "checksum": "d5f182d257fae785581bcc83158580713b6bbdb1497f9179efb6d9c2b2cb624b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jdk-11.0.21-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "0d1b2e570d0218343997721ff1392817378d5020802b0f728edb0d29b4eadc61", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jre-11.0.21-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "599bea1cb3cd43686f8e2eb9c85764a1a164bdc339f40ebc44b1e5ae589fcb37", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jre-11.0.21-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.6_linux-x64_bin.tar.gz", + "checksum": "859d988a489291184e75470666f363257fc94d992cd0626da3a830b3f1afb2f6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jre-11.0.21-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jre-11.0.21-ea.6_macos-aarch64_bin.dmg", + "checksum": "c6f709a6b37b68237efe29a5cf9a801919caa8a10ade30f3f379ab96d889f847" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "610770889a8c086afadaaf904e3fafb525461dfae5c44f532c6323b0aad8ffc5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jre-11.0.21-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jre-11.0.21-ea.6_macos-x64_bin.dmg", + "checksum": "5a0ce740c540b16f75cbf955cf0ed3f31e25135c75a5c2a4bbad68095fbd5e55" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.6_macos-x64_bin.tar.gz", + "checksum": "b96cce4ad39ab227eb6daee5fb39c28fc7a57c399afd4881aeb74f279a0c379e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jre-11.0.21-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.21-ea.6_windows-x64_bin.zip", + "checksum": "cc4f3382274c931bd1736c56369e3785ac1921ac781a66b1e868c2b56c1884a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B6/sapmachine-jre-11.0.21-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.21+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.21%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "d69e986a7f7d49ed4a1dde86ad0604a06b904aa1ca5b7e5b0f4334fcc13b298c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jdk-11.0.21-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "fede8d07fbaee2787ba34aa4ccf54d2542261bc0c936effa6f0664482c188bb0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jdk-11.0.21-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.5_linux-x64_bin.tar.gz", + "checksum": "30ab6900b8c2758474eca88db835e055871429b060e61115065bc5e39282cd95", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jdk-11.0.21-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jdk-11.0.21-ea.5_macos-aarch64_bin.dmg", + "checksum": "e3381f6e499f799efd51052ef06f5302b839ebf5855fb552e2d00c4de4005b75" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "54c45eeb927c0af98edfd8d91a2f6b86b308ff55cd58f69728316df41da04936", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jdk-11.0.21-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jdk-11.0.21-ea.5_macos-x64_bin.dmg", + "checksum": "d8d054a4c595d084ee4b10aa0867e14a95ac642604dd7e12714f1f3ce8060051" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.5_macos-x64_bin.tar.gz", + "checksum": "5bf4a08c5680921086528cc2e09eba9f295eef6f48670d52a432bf2ae3cdaa35", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jdk-11.0.21-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.21-ea.5_windows-x64_bin.zip", + "checksum": "c90aacbc090347654e081088ccacf021b817af7a5abbcb2a7225a9e34966ab17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jdk-11.0.21-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "38ecd5f62462e8228cfcdc5dad7d8050b5fb44c8e9b29b67404bfb870368ec0d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jre-11.0.21-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "397687293cff05a0fcd6ed55e827b280d0c4ca81c367ab26f0fe08b8ea2eb37e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jre-11.0.21-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.5_linux-x64_bin.tar.gz", + "checksum": "f45007c20d3f6e045dbed176f281da30484cd8832a35af0a53608e747450f431", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jre-11.0.21-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jre-11.0.21-ea.5_macos-aarch64_bin.dmg", + "checksum": "59b0e5fb39ef3ffa346aaf20efcd9560110efea9150e3bec2a9d5109cc82a80d" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "807baf5432bb6ecae68e0c0656a3168319facccf6313429307ca0951770b64b1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jre-11.0.21-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jre-11.0.21-ea.5_macos-x64_bin.dmg", + "checksum": "18ea152345e5bee798e6c6094f96b0e7518ed99fb01cecf2348e463fda55de90" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.5_macos-x64_bin.tar.gz", + "checksum": "20f9e8e624adc91b76afdfca7dcf647343d45e6e770782ba809acd19796300b0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jre-11.0.21-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.21-ea.5_windows-x64_bin.zip", + "checksum": "434b5bb3a55b99ee3dd4ff5dcf6fdbaeccfe866271328a1bdad7a2e257a44875", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B5/sapmachine-jre-11.0.21-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.21+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.21%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "ba4f2e84ff70e394367b88ab4d946ebebaa5ca9553a61ab541aecd35699de8db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jdk-11.0.21-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "547caf20c241d14616f03067b00e6f10d5a10732b516cde17eb3a51b487793f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jdk-11.0.21-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.4_linux-x64_bin.tar.gz", + "checksum": "3def40973897f0756eca4986a4ddb77b1d308479707df39075b0ffa3a3903904", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jdk-11.0.21-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jdk-11.0.21-ea.4_macos-aarch64_bin.dmg", + "checksum": "427d6dd7f09e0a1e7458fa42a2238f74df8867c8a500658a7ba7e4ebff315228" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "40414ed34cd15006a79903650746f24da44f0735558729b70abea7f85cdc0fcc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jdk-11.0.21-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jdk-11.0.21-ea.4_macos-x64_bin.dmg", + "checksum": "f0806ff78d28dadaea30d4aa9fb7f0f649fcbf4c079b62aca98b0dd60c982758" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.4_macos-x64_bin.tar.gz", + "checksum": "4af3596690b01031c5c379fedf15ca5a0747406a8a6051303ed37d40fd0f8521", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jdk-11.0.21-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.21-ea.4_windows-x64_bin.zip", + "checksum": "3204bf979b06be216b23867c91b63aeff8f00257a2e0a427c154c0f73b7570a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jdk-11.0.21-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "c3089224a554fc4da01a2aed568232367c7e22d38d8729b6cf9cba603b23637b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jre-11.0.21-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "9e5a4ec11b12d82bf3cc34da139180400619dc53b7e0fbe9089dcaa55853b60c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jre-11.0.21-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.4_linux-x64_bin.tar.gz", + "checksum": "6d739c22369535001d1761ae252d73e1215aa098a525107f8970c0f6bc687625", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jre-11.0.21-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jre-11.0.21-ea.4_macos-aarch64_bin.dmg", + "checksum": "d8f54d1f37a5ae90f2b92ff45c5b5080c204bb79dbb66a0f2270b7be1260613c" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "61bd0141233174e79e15117865b1247f81fc64ce7067ed8d5bf61d6c7607efe9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jre-11.0.21-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jre-11.0.21-ea.4_macos-x64_bin.dmg", + "checksum": "fe4b8dc7a7af116032d1e4bad2d297ea683454760b698ec8a2f3f5691e9547f1" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.4_macos-x64_bin.tar.gz", + "checksum": "e2014d9fe0b0e687257a726e5012943a8a14676bfaa3ef0ebb4f4004a2dad618", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jre-11.0.21-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.21-ea.4_windows-x64_bin.zip", + "checksum": "8e76f3edec989d0a647b1987f5cb65d12205450b53c5bade67a68f53b4ef2c2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B4/sapmachine-jre-11.0.21-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.21+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.21%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "6031857188f3dddf777aca63d224277f75de888e476380c80ff2368e8ffb32f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jdk-11.0.21-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "a0f0441e166f98d5ccc02fe5aa31387d8d4ee8fc274fe1facacc4336bd42ca5f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jdk-11.0.21-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.3_linux-x64_bin.tar.gz", + "checksum": "7ba14b0e803b2a5d4d7a90377628bff7ee77a26ba5b241c5cde7fa97ba9398ee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jdk-11.0.21-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jdk-11.0.21-ea.3_macos-aarch64_bin.dmg", + "checksum": "6c9c847aadd63787f3c4457ad844d321be56961f2625b4fe2ad5439279437fe8" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "5519e068b89a22e5637c3511aad886e132d7a21a4ee232c225e2b525bd1e4f05", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jdk-11.0.21-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jdk-11.0.21-ea.3_macos-x64_bin.dmg", + "checksum": "464a65b2fc41eeeafe22d66e34630310385551ae4fb6aa93b4a9c64a536c1ace" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.3_macos-x64_bin.tar.gz", + "checksum": "df991251189123d6922fde5394a8d0dd060829bef9355c0d55a758f661cf775f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jdk-11.0.21-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.21-ea.3_windows-x64_bin.zip", + "checksum": "e2999612d907db9c47afecb8e167023d708e847f5ae4d7b53dc2ebc032f96dcf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jdk-11.0.21-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "ba10d6b23f86f17366f8cacfc4f164149363afd1057e701fbd8917fda503c3aa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jre-11.0.21-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "680e6c3e7c0c778ff9dfc56a308edcd7e69234f3aae3837ab708f3b085e3d1cc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jre-11.0.21-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.3_linux-x64_bin.tar.gz", + "checksum": "35d31238f4fd61afe53ca04d210eb973275c1401a70c31a8dd754bdd9d25520c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jre-11.0.21-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jre-11.0.21-ea.3_macos-aarch64_bin.dmg", + "checksum": "2ab2460b7512b9a1541a2ed55b3a3ef445992f5cbde3f8f23887fa146cb9f27c" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "7de12c34314ce224d1b08d8b3845a3964e5f127927b4a69375f1c41b64a1240d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jre-11.0.21-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jre-11.0.21-ea.3_macos-x64_bin.dmg", + "checksum": "a0d99cd59a0d0e6378b923e56d0feb4f5e543bbc72953850a4e781c0212d38fc" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.3_macos-x64_bin.tar.gz", + "checksum": "d080c1c69fcdb5d0dd6b8ce7b6ca5b9096943c437eba07a8f2e0339b9ec09b03", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jre-11.0.21-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.21-ea.3_windows-x64_bin.zip", + "checksum": "1eedce8362c708aef82eafeef4820c3b875df6672a6e637e3641121b9a6ab890", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B3/sapmachine-jre-11.0.21-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.21+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.21%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "cca356aaea9972944889f2c41a90d96c34f56a06300ce53fdeab452f40248196", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jdk-11.0.21-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "396c2e2b891ad37e8f36155a268b8d3a35341085d0dc1c55f5a20df8d2c77226", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jdk-11.0.21-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.2_linux-x64_bin.tar.gz", + "checksum": "ff81692e405413f3ab9fd702f964744368333f71e62a3ce54b5e9afd7974d37e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jdk-11.0.21-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jdk-11.0.21-ea.2_macos-aarch64_bin.dmg", + "checksum": "b816a001832f141c2067da7de6995ba827e6947a0c363f356933b3faacd825d9" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "07020ad0ff6da5370c686dc9e68e8e682331ee2a3c44e76005301d44976bd0d8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jdk-11.0.21-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jdk-11.0.21-ea.2_macos-x64_bin.dmg", + "checksum": "84535c8a75056dbc12c679b694846578493f967d06fcb47799336e799b05a427" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.2_macos-x64_bin.tar.gz", + "checksum": "0631dca2d0c439c2133b10820243aaa95c7ffea0075bcbc9bdb70d6c61558c82", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jdk-11.0.21-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.21-ea.2_windows-x64_bin.zip", + "checksum": "c732cd9a9db55ad5cb9043b03f9bfcc9ada61d834e1d2c5ba1508d3b3307ea2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jdk-11.0.21-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "2ae42565f874fb478f46367aeb60b5fc0880d8fbad89f1b3475aaf04389884bb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jre-11.0.21-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "af4472c7c2067302ff7f996366b2d999e3dbc8a94f767af86087d40ed6a7adb0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jre-11.0.21-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.2_linux-x64_bin.tar.gz", + "checksum": "71c4c591d1c92f27726b71a0e48627b397b884dd8a9bffa3d8cac989310b7a19", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jre-11.0.21-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jre-11.0.21-ea.2_macos-aarch64_bin.dmg", + "checksum": "5f37323ad603d94e121f9aab894e8a1ea152f26ba234f48645fdbe89ebfbdd05" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "c2a30ca9e9a337a1746221ceb27d9150bf8c37a6e0663f80bd0dfb4df7d238af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jre-11.0.21-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jre-11.0.21-ea.2_macos-x64_bin.dmg", + "checksum": "63f9cbe996a9b67ce2cfc73ca64f4f6dc135d3e67197de069c2e32fa6b368c14" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.2_macos-x64_bin.tar.gz", + "checksum": "e50d7dd205bc0d121e82b80cd7175fce682cc442c9cb1ad309edf3b7d073a5b2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jre-11.0.21-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.21-ea.2_windows-x64_bin.zip", + "checksum": "15eb2c0dc43523a6ffdb03f5cfd9e8842d53fc17a29e68ac55f46a097124ea45", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B2/sapmachine-jre-11.0.21-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.21+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.21%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "831dad1ffe95c065bff7b106c53e652df93e206b10583a13908cb207a08916a2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jdk-11.0.21-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "2219ec733ed690b82aff07947871fe4c0c662bacb8a31b32dcb4b50cdf19d374", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jdk-11.0.21-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.1_linux-x64_bin.tar.gz", + "checksum": "9c1092de948f45c63899e0328af8b2bbd98bf57d7a33fa429c1bc6f09ea1735a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jdk-11.0.21-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jdk-11.0.21-ea.1_macos-aarch64_bin.dmg", + "checksum": "75f61ef89ce0ad043d8e4df8f38b67ba6e94240eb0c93d4f2c423f5af5538e78" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "1b48b9385ff021d8a2062a49edfdae11e5b70c25d9bd43b0e777d3a84da8a19f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jdk-11.0.21-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.21-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jdk-11.0.21-ea.1_macos-x64_bin.dmg", + "checksum": "d132c9283777855aa1e8839106d8b08fe4516c8613f6e7b8623aa4e9a7f3b022" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.21-ea.1_macos-x64_bin.tar.gz", + "checksum": "a28109278a7514846f8a101dc1e850a67b47c761b636b66938f73cd6e0b4bf69", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jdk-11.0.21-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.21-ea.1_windows-x64_bin.zip", + "checksum": "ddf71b51fb7c5040692692b16107d4f9b40fa265c2460302f106a30bd8f04436", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jdk-11.0.21-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "de6fea3d6d468a841ce613a56f709a629f5516c4e45ee70f53a029ea889c9259", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jre-11.0.21-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "7c4777f947be8fcb32a80349b557636b9cb4c65b002945cde3f456034e4e75af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jre-11.0.21-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.1_linux-x64_bin.tar.gz", + "checksum": "8227bf471c410375bc70cc0049fef63ff941480cdbcfe54de7bee6824fc49576", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jre-11.0.21-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jre-11.0.21-ea.1_macos-aarch64_bin.dmg", + "checksum": "2bd02df6c039eb04080091ce2aad4c9ae32314fff1a08172d4f6bf51fd264287" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "f629995e0ee9cb54dbbf58100733ff544e31727fcc05fdf01ee6597a54017702", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jre-11.0.21-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.21-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jre-11.0.21-ea.1_macos-x64_bin.dmg", + "checksum": "9d1d715c18e81a01893d36386f46cf8a937b8858a7ca2dae59cef703e8bd8c79" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.21-ea.1_macos-x64_bin.tar.gz", + "checksum": "8ad4fb76ef796ac569cfee98605835d3e6240c347d3b30b6437a94a68fb73c0c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jre-11.0.21-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.21-ea.1_windows-x64_bin.zip", + "checksum": "41fb2bbfea3b96716ca3fcdc14f69c71deba1c710dd32081fe182cb8572f1642", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.21%2B1/sapmachine-jre-11.0.21-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.20.1": { + "sapmachine-11.0.20.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.20.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20.1_linux-aarch64_bin.tar.gz", + "checksum": "5bf09e5b982d6e55955b0d34f83fa878bb64d0ec3706916cbeabc3af78bb99dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jdk-11.0.20.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20.1_linux-ppc64le_bin.tar.gz", + "checksum": "7c9405a96258e99cb25fc55c4ec951da97e9fc1548b7b1532bc249d091199372", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jdk-11.0.20.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20.1_linux-x64_bin.tar.gz", + "checksum": "349514c4ff66c1452873110489fe9a0c4dc9bd2a47a5207e0a43e45fa49a6fff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jdk-11.0.20.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jdk-11.0.20.1_macos-aarch64_bin.dmg", + "checksum": "28b287ac3a137d55968c9e318909442e75adc26c6ed8d64074a5fabdc1340ace" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20.1_macos-aarch64_bin.tar.gz", + "checksum": "0d6387b711cc9fef11fbaaafde6c3f068ed0cc9a1088ece8c0fd90eb9a778b6b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jdk-11.0.20.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jdk-11.0.20.1_macos-x64_bin.dmg", + "checksum": "df8def51297f40d7bc63e64a9f49808d6a281316ef1e78e214f06dbf4c67cb50" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20.1_macos-x64_bin.tar.gz", + "checksum": "98c0f8294644bec653e6b6fa788093501e049cf0321b56662a0dc28a07e93674", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jdk-11.0.20.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.20.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jdk-11.0.20.1_windows-x64_bin.msi", + "checksum": "349c72cd87e55c1cf0a06a5bdae5dd452898a96f65ef7ee630fdb8b2ac15cb65" + }, + "zip": { + "name": "sapmachine-jdk-11.0.20.1_windows-x64_bin.zip", + "checksum": "51868075e11b627c28409a2cbe054749c0df949128d8704b322ced96f5e3616f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jdk-11.0.20.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20.1_linux-aarch64_bin.tar.gz", + "checksum": "84d456d21aaa0e78b8b8eedd86a9d4308911e4c22b0fc3127f6de8f0a4c80a94", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jre-11.0.20.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20.1_linux-ppc64le_bin.tar.gz", + "checksum": "eb4f2bfa218cfb4670884a7553ee77be52202c934e16062152c5d0873f68508b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jre-11.0.20.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20.1_linux-x64_bin.tar.gz", + "checksum": "cfad46a7c6e25b37d69bd6f4cf37f6ffa9f99b74b7856b4681c24428808ee524", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jre-11.0.20.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.20.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jre-11.0.20.1_macos-aarch64_bin.dmg", + "checksum": "e12c0eea46de98a1f056794da1da5df4721d582a48b5d85f572f275433c5eb4a" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20.1_macos-aarch64_bin.tar.gz", + "checksum": "0db1fed6d59130f6d45104e8febc6a46301ac9324250455071a124eb15119ec3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jre-11.0.20.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.20.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jre-11.0.20.1_macos-x64_bin.dmg", + "checksum": "ff331555681985169851d68d2c9b509bcc85acc1d8e294b9818c036d2c685669" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20.1_macos-x64_bin.tar.gz", + "checksum": "a9f8542c84f42d21bb254e3a940e4bf361d89710936560d343cfd15c51c0d80b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jre-11.0.20.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.20.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jre-11.0.20.1_windows-x64_bin.msi", + "checksum": "2feb8abfe143664065bcdf51a1f44e44da7577f65dbda0a21673e03288935892" + }, + "zip": { + "name": "sapmachine-jre-11.0.20.1_windows-x64_bin.zip", + "checksum": "b57d6bcdc9f577efe74ad98a9a213ab8ddb6420f8df828167b282c1325726a85", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20.1/sapmachine-jre-11.0.20.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.20": { + "sapmachine-11.0.20": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.20", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20_linux-aarch64_bin.tar.gz", + "checksum": "8c2de32f2843a62d49b0b14d1c14fc66eb3a3f15634e0dd52457a8ed04f532b6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jdk-11.0.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20_linux-ppc64le_bin.tar.gz", + "checksum": "6c4a893fab42092a6ab7874c457cf0f5f0f6c5901a50a427d8885ba087bac1d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jdk-11.0.20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20_linux-x64_bin.tar.gz", + "checksum": "d62f1cfff22c0800a03ae645ab91fee0aefaf6538337c6cb81e9c2a2476433bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jdk-11.0.20_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jdk-11.0.20_macos-aarch64_bin.dmg", + "checksum": "ff60fcc8ebd2a5f76fa7e318f5c046ab888ebcf91ae3b5937b7fd9d012f74a4b" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20_macos-aarch64_bin.tar.gz", + "checksum": "52bb4d9840cacb05d23986bda75e908e65a552a3dd2ed6df2ab3e9b0e9f9681c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jdk-11.0.20_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jdk-11.0.20_macos-x64_bin.dmg", + "checksum": "016c4622d57d4110189d73df8061dd5bde5f5632fc0e092e40076a64b6fcb591" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20_macos-x64_bin.tar.gz", + "checksum": "6c251b1d8fe46350c8bbfc94c88fee91115ba4966e158fa71d46190be81d8629", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jdk-11.0.20_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jdk-11.0.20_windows-x64_bin.msi", + "checksum": "a80875ffa275c53e77f4e668b95aa93165b97265a3669f8157541aa78d6fe438" + }, + "zip": { + "name": "sapmachine-jdk-11.0.20_windows-x64_bin.zip", + "checksum": "c167388103efebb5a930981f909e21c48140d25d9a9631e311f91d44d0d0d582", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jdk-11.0.20_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20_linux-aarch64_bin.tar.gz", + "checksum": "cdc5b7a2afd6020dd9b1e3ab1e383d2fd749df19db0f17fcbe230558e63b0cdb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jre-11.0.20_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20_linux-ppc64le_bin.tar.gz", + "checksum": "bfb31bc3f5d2752bf1609707e660bc9474ae5f96448713b4d670e0d838596d8c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jre-11.0.20_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20_linux-x64_bin.tar.gz", + "checksum": "c97e0697bc27d1a1a57e1aa23a0f5a6a9a951844e36b255b90c944b30e8aa45f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jre-11.0.20_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.20_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jre-11.0.20_macos-aarch64_bin.dmg", + "checksum": "1e82c71fb4a18e7d077f9a32e2a851f2609dcaa9d820f045cf20bd7d2a4e9379" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20_macos-aarch64_bin.tar.gz", + "checksum": "a5f48f9608acf4383f04c32f1d405d4d92729d2250111036b2b796df9ae50779", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jre-11.0.20_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.20_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jre-11.0.20_macos-x64_bin.dmg", + "checksum": "c29b02c44216920c390d560b2961ef94815ccee8c53181079555c9d980e68ef4" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20_macos-x64_bin.tar.gz", + "checksum": "1bec1024b342dc5728a0a477203fb9e12ce4b14db7cf6fdcb68dd21458e96fcf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jre-11.0.20_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.20_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jre-11.0.20_windows-x64_bin.msi", + "checksum": "b51260d33f7d5eb9fbbd414e0b7288ab87585f0f086eaa1f4dbc6997504f26c2" + }, + "zip": { + "name": "sapmachine-jre-11.0.20_windows-x64_bin.zip", + "checksum": "ab25dcdef5dfff50497e21a76d25e80d3be5021d690ac5945c6d01d95a8857c2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20/sapmachine-jre-11.0.20_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.20+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.20%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "da4a46c7077438c08c7b905deda2d1d27166bb4e5a95e7f29465590beed7cce9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jdk-11.0.20-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "284f339a4c93010d6818c966ae065666b8ce705f02052d7b0fc69e1602014390", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jdk-11.0.20-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.8_linux-x64_bin.tar.gz", + "checksum": "df17d5feb59ed1f9574465534ad78e196414c6ba41ea2551107fd8bd220cf60a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jdk-11.0.20-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jdk-11.0.20-ea.8_macos-aarch64_bin.dmg", + "checksum": "437d8b6cb74fe045b171fcae5a9bbc4a8c2283dac090029fa3b2ba672b6c900f" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "0014d7b424241b80e48c44d872a16e777758a24da703b41e49b70866ec8b758f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jdk-11.0.20-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jdk-11.0.20-ea.8_macos-x64_bin.dmg", + "checksum": "52be25f5f1fdee6a5c480437552164c6921826dfdcbaad3aed26b2298517c2d4" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.8_macos-x64_bin.tar.gz", + "checksum": "b234b5e65efc9b3361121e97e72fca19094a5c701b80d3e1032e5f8dd8c37e93", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jdk-11.0.20-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.20-ea.8_windows-x64_bin.zip", + "checksum": "4b3c0be3ef0d095718f90f2b1eb8137420927cbd9c2efc8725094b21e0362f19", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jdk-11.0.20-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "872210957b43ffef672a01604fee062b091e8a1943df291e1deb53e57d795811", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jre-11.0.20-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "091d9e13af354aec4c668c858aae134b2ac5eb28c75603902bb329d98bfecc35", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jre-11.0.20-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.8_linux-x64_bin.tar.gz", + "checksum": "d7233867e8bae870cb247f006b8072474816e99628e4e8efd25bb81b967f04eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jre-11.0.20-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jre-11.0.20-ea.8_macos-aarch64_bin.dmg", + "checksum": "7e558fd34bc44b6b54eb81a183d87ee389963e360cf22977567aa1e82a76c9f5" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "be08955ea1869e036a67cd2371f9d569b0ca85e95e7b330680648676e75a3dfd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jre-11.0.20-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jre-11.0.20-ea.8_macos-x64_bin.dmg", + "checksum": "ea02ae3990d1c509d0e3a79cfa490ea8048721ac0cfdded08a3d34c9a3198468" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.8_macos-x64_bin.tar.gz", + "checksum": "ad34d0ae303a88e7c52cd54f3fded9765250a433d083e3aed5bc5105addf0576", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jre-11.0.20-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.20-ea.8_windows-x64_bin.zip", + "checksum": "a3f65a0739f61ce700033e8c0a51cdefcf1d25eadb57cdcb4aaeb05976c07482", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B8/sapmachine-jre-11.0.20-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.20+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.20%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "306dad7b27938190edfae01bfa273084eaf8b99b7d67c55902ec7f5fd02898fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jdk-11.0.20-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "ef5c3dfc6f87ddcd45b2beb286e90b436de3d54dfa6f38441a09da66aadb9024", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jdk-11.0.20-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.7_linux-x64_bin.tar.gz", + "checksum": "de1bfd39924fc4c3a448a6990a46b51744501ec7b3335b31d94e96375e984b50", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jdk-11.0.20-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jdk-11.0.20-ea.7_macos-aarch64_bin.dmg", + "checksum": "ba755996010f19993493733f222a0d7e20f7cfba4fabbf4d453e887943ce8aaf" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "9e891dd7e04b09093e852f274d904fe0d9c5a7c0514901cb8dbcfbb7347a8c7b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jdk-11.0.20-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jdk-11.0.20-ea.7_macos-x64_bin.dmg", + "checksum": "e4172a4ce7d843d2451bebd9232719b0d944efc0c2e22ae2dd2415ca1d814bc8" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.7_macos-x64_bin.tar.gz", + "checksum": "cfd8f6c4c2ddab60a6e0f09ced095ced26b0e23a5d4743c99680ddacc1555f7c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jdk-11.0.20-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.20-ea.7_windows-x64_bin.zip", + "checksum": "8773244b37a15fd2e75ce4b49a23a2df7799ba6013af2aabc2cd04c9447aee5d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jdk-11.0.20-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "802ae12fb337106aacfeef7c2b522438fb89416c1ff381fd787d44f7aa876b6f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jre-11.0.20-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "7eaaab6fadd91581741f341c87dd326925023162d27c73f7a65c60cbe2286b73", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jre-11.0.20-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.7_linux-x64_bin.tar.gz", + "checksum": "5686c2e6f74f6c031bde07a48345f33e9757047284524fd27eb921cd6631460f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jre-11.0.20-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jre-11.0.20-ea.7_macos-aarch64_bin.dmg", + "checksum": "9ab2db1059c78735ad4b04529671e7b6ea7c15da2e590b4b7aafde29b63cfb36" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "e472627a70e98bc298a82cba3140d1320e2be11c3d3841beb28de7eae77688ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jre-11.0.20-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jre-11.0.20-ea.7_macos-x64_bin.dmg", + "checksum": "8079455faf1cf67ad46b79b550aa3bc68920be8910c789b822ab4c06589f2340" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.7_macos-x64_bin.tar.gz", + "checksum": "420338f58bcc766beabf8430b019718d578c6e573f47597d124fc0100bc6f663", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jre-11.0.20-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.20-ea.7_windows-x64_bin.zip", + "checksum": "3bd4f23ea81fa1de836d03ce71719a4f901273a8a17d992c535ed16858fa381a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B7/sapmachine-jre-11.0.20-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.20+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.20%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "979e5a1ec5e88b4704ed364c39fb0049e915cc4f315b2d10e42b96929ba97157", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jdk-11.0.20-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "7079c1d12fc229427dab6ddc5a9a37fcedd0df25e9d0e38274edb667f4587683", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jdk-11.0.20-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.6_linux-x64_bin.tar.gz", + "checksum": "9b0d635ded3801e4c6600084433616abb3925360e864b4be1dfd7af01d400a4c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jdk-11.0.20-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jdk-11.0.20-ea.6_macos-aarch64_bin.dmg", + "checksum": "63e02cdb602fa3ccc4a64edb79c8a20b0f3663ce0f0673a4ce7627a4bf98c346" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "322293167fbade4111b26da5eaa675b12b6b3cd52a0fd0554857325d2143d116", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jdk-11.0.20-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jdk-11.0.20-ea.6_macos-x64_bin.dmg", + "checksum": "c9b3ffd866875cdc85a20ba51dbfedb139c6bd99dfbe88149d2fb1f55e2d40ab" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.6_macos-x64_bin.tar.gz", + "checksum": "ec16af7075eb5be3ebe25bffd5fd63c5d5739d79e2f46b959b156f18fe20d9a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jdk-11.0.20-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.20-ea.6_windows-x64_bin.zip", + "checksum": "fdf6bd4f42cc053ddd6bebd71455cd396069eab7e2d6f315fe02a1bd71595beb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jdk-11.0.20-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "97cc2cc97f7f97aefe5a8fb59239e38d59d863c11325b88839b810853b10cbcb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jre-11.0.20-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "cfa57e6e69e1b00bdfd82411b2a89bc419d392c1ad973f4f67d10558216d3d8a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jre-11.0.20-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.6_linux-x64_bin.tar.gz", + "checksum": "5c3b5e29b5b07a0c5ae78356d192212700be5c6ab395e60d30877d438dc65f42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jre-11.0.20-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jre-11.0.20-ea.6_macos-aarch64_bin.dmg", + "checksum": "c24057d2763b7a3fb7b666f159ae70e22625968a2f52300363e273aea0209b94" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "5763513e7bbb4083a2aa363250e7c74d1e5d1feec7c3d44074f7aa78e7e733ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jre-11.0.20-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jre-11.0.20-ea.6_macos-x64_bin.dmg", + "checksum": "a8ff0231d4740873c8f0b9ee5b24823384ef5e34b396fcbc4c077f6a287197b7" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.6_macos-x64_bin.tar.gz", + "checksum": "a2f52bba9ff4b92b9c7269f417a2038496b2af5252950fe89c5b396d8bcd0dbb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jre-11.0.20-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.20-ea.6_windows-x64_bin.zip", + "checksum": "595777b35cf8f9a508aa1c14ce8c01040f264b249e3805b60b0f129566fe02dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B6/sapmachine-jre-11.0.20-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.20+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.20%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "854a1ad36c68c71887fe3f6cd842c89d6a20cee33999d045c5f1352fb8808d0e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jdk-11.0.20-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "df16a894095d2deb0b50c145f123fa9a5b374ce268e61f59e2aac68a63a2385d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jdk-11.0.20-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.5_linux-x64_bin.tar.gz", + "checksum": "803f215b1a3799447385fb9b1fe68766c8e85613cf15a6c88a4453cb636af5f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jdk-11.0.20-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jdk-11.0.20-ea.5_macos-aarch64_bin.dmg", + "checksum": "8eb02ac8591bb6727b0b4132a7254b7420da00bbea33812817701e7496568017" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "5ed5cdb3e41d6b78835dd5149475f0b3a8d8cd6fe9070a18da73e91d6e240f2d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jdk-11.0.20-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jdk-11.0.20-ea.5_macos-x64_bin.dmg", + "checksum": "e498a6f505812fc371245954423a6113b94c2f7b790728fc03e2e6d6b31f2ac9" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.5_macos-x64_bin.tar.gz", + "checksum": "e8a1673e6271bc5c78a64a8dbe73029f3bcb85b0012e371efb3fd447f6fe968a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jdk-11.0.20-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.20-ea.5_windows-x64_bin.zip", + "checksum": "5d0b68d5447bd12d70df2ce99bc42feb75870b3466d55d294ccfb0176cd5b902", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jdk-11.0.20-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "6521c7b615a3c157b211d370930c53df9606d316cd94c454aa787762eeffc5c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jre-11.0.20-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "d687d0dbcee307f044eae785010ec277b63c291631b5f2af89dd268e5e51bb58", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jre-11.0.20-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.5_linux-x64_bin.tar.gz", + "checksum": "c91313e467801e9593a509e2f8c63f0eb39b9d3ccf0403b74e195e2deb91843d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jre-11.0.20-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jre-11.0.20-ea.5_macos-aarch64_bin.dmg", + "checksum": "f8a37bd8e800d4911ce59fbbc0339a230692e7a1a44651a54b60dce3bab8a6fa" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "2d6f1a689fec5e2928128b0d7a9f3b230018a2c9d3555d522acd08120433033a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jre-11.0.20-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jre-11.0.20-ea.5_macos-x64_bin.dmg", + "checksum": "4e483c0a331560b39b828c922525372467b50c8c93e85c8e92598d20ad0f9d52" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.5_macos-x64_bin.tar.gz", + "checksum": "6f3c7e53b5cee53c274332a743b0fdc98de3618695f29cfe16b1ee3ee87a6ac6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jre-11.0.20-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.20-ea.5_windows-x64_bin.zip", + "checksum": "298d0eafb4204e455d667f44e2ca1badf16e4cbcb0a259009ddf2cdd188619be", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B5/sapmachine-jre-11.0.20-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.20+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.20%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "344dc6fd0805452e4bee76183c4fb65ba3e545491bb3c656cc91e84acdc78307", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jdk-11.0.20-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "448a9b96942f0ff9e1f0a349698e06a194a8fb5c19d2888956aa0048c4bb1ce7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jdk-11.0.20-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.4_linux-x64_bin.tar.gz", + "checksum": "904cbc87972a2d294271b4404a0d3f7d036a333f75fe591e72fa3bf9140a0332", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jdk-11.0.20-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jdk-11.0.20-ea.4_macos-aarch64_bin.dmg", + "checksum": "d20d7ae6b52b9099b55da4c1b80bc4a9b00767e9e947636fc2d3c61986245475" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "7d2724261fb85a3f1d17fd470f284cc2ba3aa5698e1026c6890c60679ecfe7c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jdk-11.0.20-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jdk-11.0.20-ea.4_macos-x64_bin.dmg", + "checksum": "bce727c7fcd0fb4f3255872765dddc251599cff430d92d1355d1e10d3a31f2be" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.4_macos-x64_bin.tar.gz", + "checksum": "8e2b5c24b28cbf1a930951c7413f90553f3596bf47c101784aa625767b74e09c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jdk-11.0.20-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.20-ea.4_windows-x64_bin.zip", + "checksum": "798b4191078694e4fc9a05e80d416f68c74b295787ebe7fffba3a564cfb66476", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jdk-11.0.20-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "9b9dcaf8b1d6a4f057298ba4e6be9d999baaee4b96bf8583fa914517126ef1b6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jre-11.0.20-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "053a412453d647380b307c8473077e82d926d4f8531e1fed5243ffabc8721479", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jre-11.0.20-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.4_linux-x64_bin.tar.gz", + "checksum": "47739baef0cee235a4445d26d9177c70d36d1e872e385856f58a0c8422953a45", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jre-11.0.20-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jre-11.0.20-ea.4_macos-aarch64_bin.dmg", + "checksum": "4dde2478baebfb954997128e8bb5f59de904cb74ac298f99d9e1e315de23ae49" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "5c98e6ef5ff788e2f108fdadd1756ada59c606913c1833f7e89d114075bf3573", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jre-11.0.20-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jre-11.0.20-ea.4_macos-x64_bin.dmg", + "checksum": "ebe48c8aa0ac8422ced08d3b21a4ea88c99cf737f659f970b66965920c78a855" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.4_macos-x64_bin.tar.gz", + "checksum": "0c11fef554c7a3c057da62a1abc84043ce9b5424d7ed34926a45b3e219a190c2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jre-11.0.20-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.20-ea.4_windows-x64_bin.zip", + "checksum": "49b4965ad3de2cbeb7520e85a9ec53fe19ed80b7e954fbeac49d1909bed9b69b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B4/sapmachine-jre-11.0.20-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.20+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.20%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "17283154bd3df376a4f0b3846ed1fb67817dabcc063d20a4e72fff6f60d75ad0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jdk-11.0.20-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "4cdfcb45b256e50a9c1257c4e0a10b21dc89679753fa46ffeddb9c2d4b029346", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jdk-11.0.20-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.3_linux-x64_bin.tar.gz", + "checksum": "f9f5c849739e8b217aadeae216abeb40126997aa57a269fad1be97355174cb86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jdk-11.0.20-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jdk-11.0.20-ea.3_macos-aarch64_bin.dmg", + "checksum": "bfd45c9cdaf181af3796c173741c17c961e2cd4ad5d3eadfb1586cd1cd3dbf01" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "cf8f64a2dd61861f08511788876779bac8be0f25a26099fd1fbeba451c5830a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jdk-11.0.20-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jdk-11.0.20-ea.3_macos-x64_bin.dmg", + "checksum": "3c64f89f374d96d0ceb272c96c33adb50c9243da90e2fbd984b761fd0e40fe70" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.3_macos-x64_bin.tar.gz", + "checksum": "90421079a46a7c89b2ebb822399386b6f235f61266570d16a01ea9426db92971", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jdk-11.0.20-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.20-ea.3_windows-x64_bin.zip", + "checksum": "62b133abacb139bcadaee18c3842f0ba2344e867f227859289e5c2dbef7b4562", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jdk-11.0.20-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "bd064a72bbeab97b4efeff312d8d22546d0eb6bcd2785c4549294bb49565bbde", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jre-11.0.20-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "2c235bef7422e405627f2ddbf3f26ad714a943b3abc5d491a90999da7a6658fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jre-11.0.20-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.3_linux-x64_bin.tar.gz", + "checksum": "6c56366722c9b596f086e9d47493544b0c18ba454950ec9ae9bb0abee3de775b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jre-11.0.20-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jre-11.0.20-ea.3_macos-aarch64_bin.dmg", + "checksum": "d8bd8230456957ae5ed10fed3c300f7ada51567f9f664249a2deb0516eff962e" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "920589241a421c1487732b404d00f0638a913042afd50c6eca77c6f55fddb71b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jre-11.0.20-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jre-11.0.20-ea.3_macos-x64_bin.dmg", + "checksum": "3687350a8d23ca11ef9d9ef3479dd1271a35bcc0b022d0a9adcfeb4c76e86df2" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.3_macos-x64_bin.tar.gz", + "checksum": "03e3f34a431a811a5f5951f08881f07a29a5389291fe1f65be46deeafb6b1ec1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jre-11.0.20-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.20-ea.3_windows-x64_bin.zip", + "checksum": "267a1ec561a7c2bd34caeb0032597912161a91ac3602f7ed5b9e09f5e7afe5e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B3/sapmachine-jre-11.0.20-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.20+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.20%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "fe71140d766afe596f8e7b0079cc4eaf5c59858392514542be333427ecaffdc4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jdk-11.0.20-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "5d08d4a61c815dbba3017fa242604081f5c5c2f53167b4817e241eeb730ddfc8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jdk-11.0.20-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.2_linux-x64_bin.tar.gz", + "checksum": "0cdd3a4188203102034c677f711cc28b075650d4404d280c81f927dd05e38e36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jdk-11.0.20-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jdk-11.0.20-ea.2_macos-aarch64_bin.dmg", + "checksum": "e690d585648e9cef36f401941109d7284c0099c77144b0cc0bd5156c0660f10a" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "f6632a3966b49c8842983de5bb5f3e31a834aef7e741eb672a14769785ec3dc9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jdk-11.0.20-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jdk-11.0.20-ea.2_macos-x64_bin.dmg", + "checksum": "59888da044cf168e15f12b23d5c6b5eb4b921b4a906fc479cd3d894a13e72a17" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.2_macos-x64_bin.tar.gz", + "checksum": "ee4abe12c0a7d6722d4c2fd801382cc2696b60397ab97da46fd9ea00077af137", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jdk-11.0.20-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.20-ea.2_windows-x64_bin.zip", + "checksum": "0d0d3d31c3e072c219da336488f9e588832eb19ac546e2666ae325d0c452dfe8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jdk-11.0.20-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "6ff7929e1926b7fd41ed42c71284fb0d355afe3805ca67a354abea18ab2773b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jre-11.0.20-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "4b053c0bdf3f93c4fe022ed58bfcf58816ea968d649289528442a8c7dc5ff0e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jre-11.0.20-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.2_linux-x64_bin.tar.gz", + "checksum": "96753ba3a2964ea3920a8d2ff8bf0ba839a271f9e0e6dc7abb9338689883cae1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jre-11.0.20-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jre-11.0.20-ea.2_macos-aarch64_bin.dmg", + "checksum": "9987d5344160bc0bf5df1381221ac9131dac05bc8d55749e824c0fe16034838c" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "c51ed9fae35dd10bf078d8e2997d0f2cb80b8ce80cc3422fe5846cbfae57ba44", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jre-11.0.20-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jre-11.0.20-ea.2_macos-x64_bin.dmg", + "checksum": "72dda10d17ad6f8462d6d2cef74bab6d11eada1e790a4c2e704e50ea7f76c4f3" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.2_macos-x64_bin.tar.gz", + "checksum": "1ab40c63719eaf1f2f45317392ec36aafaf64b29c8b9d106db23f700562c8c52", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jre-11.0.20-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.20-ea.2_windows-x64_bin.zip", + "checksum": "fc467dd98d41f52bc67d9510bbdc79b4df33ed259cab3cbf8e9a9cc96ec6eec8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B2/sapmachine-jre-11.0.20-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.20+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.20%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "346cc2d2f132b123e01102db5f623430e946c84a4c848c484931951394ddcf69", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jdk-11.0.20-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "c94550810375204bdf93b631c71c401d20c55bf5abbba1dd5950068d88c9cc75", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jdk-11.0.20-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.1_linux-x64_bin.tar.gz", + "checksum": "9986c674ec319dc7fa1d27f49bab869544bc8419667d125ef1ff999ff44ce0de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jdk-11.0.20-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jdk-11.0.20-ea.1_macos-aarch64_bin.dmg", + "checksum": "2fc55bf9a626b43afda64fe1ef708239b1bee9dde8dad572dad88523e62eb2a7" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "aee2a3cd2b06e046ad133c6a0cda2983f90dc168942f108fcbf56e8f264501b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jdk-11.0.20-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.20-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jdk-11.0.20-ea.1_macos-x64_bin.dmg", + "checksum": "9b2109421bc90b2e44f6bafb5a105ba327121380da9884326fcb6f9fe765fcf7" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.20-ea.1_macos-x64_bin.tar.gz", + "checksum": "cc724f474612d490914325016b9c7ddda36dea267118adccdbace12ec0a1f3cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jdk-11.0.20-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.20-ea.1_windows-x64_bin.zip", + "checksum": "a801c26c92c04719973a4f8521d2a09923a556520729bae79e197c75b6b2ca5e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jdk-11.0.20-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "878767517c40da8595eb277464314f556f23d27ca98c2d101dc043a0588999e6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jre-11.0.20-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "899f6f636941bdf58689784fb0201a3f7217bb327b21018157b3035bc0717ef1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jre-11.0.20-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.1_linux-x64_bin.tar.gz", + "checksum": "15bade2822fc265ca3f9f4360368d5c6aebc2342782c4f221fdf2b56a3f06e0c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jre-11.0.20-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jre-11.0.20-ea.1_macos-aarch64_bin.dmg", + "checksum": "f3481cf6e661a92defc9d6466a2a187166d880f06052e8107757af6d6f98e14f" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "f20e10fe468b1b224a683d02bdf0f62448d9411da92f1e8e50ce09c742492353", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jre-11.0.20-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.20-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jre-11.0.20-ea.1_macos-x64_bin.dmg", + "checksum": "12db4142023a6ade3c6a6ae3235e8a7c73a50dfb7dee89154146a52e6160f93b" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.20-ea.1_macos-x64_bin.tar.gz", + "checksum": "f35d0a4cae80047104f2e273bb0f5ddcf08db29b942feea90986bf0c9755b2ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jre-11.0.20-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.20-ea.1_windows-x64_bin.zip", + "checksum": "74a79ac4d554f084989f82ab842ac0272db386214d544ef49b39b2e48e7f8b5c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.20%2B1/sapmachine-jre-11.0.20-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.19": { + "sapmachine-11.0.19": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.19", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19_linux-aarch64_bin.tar.gz", + "checksum": "4bb85eff093c867c58ae961258b1e3417d0fd73388ec17e8ecb8f482d15330a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jdk-11.0.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19_linux-ppc64le_bin.tar.gz", + "checksum": "a7596b54fe1e9f2cbab0136a9476286693cecfa725715c501b300a7540afc987", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jdk-11.0.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19_linux-x64_bin.tar.gz", + "checksum": "0a8d754e5cb5c741badbdd2ac8df48126334c7c2e04a80819c970216dcc7dbb6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jdk-11.0.19_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jdk-11.0.19_macos-aarch64_bin.dmg", + "checksum": "90876d2396dece12bab4f1058a45252db371ace05fc4c08ac7b14a3f74115d19" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19_macos-aarch64_bin.tar.gz", + "checksum": "be9a2446297f641d4cdbbd4083f08a8839b6881d9a0a9dccff6be5038589c029", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jdk-11.0.19_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jdk-11.0.19_macos-x64_bin.dmg", + "checksum": "47fa3722ee0b4fa65a95607719743ddee45e115ac624ceec9dbe9739e044a70a" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19_macos-x64_bin.tar.gz", + "checksum": "6e57187b804f6614834db1b1cef5469e7e6c74aa9224b685b3fbf8cd99e0083d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jdk-11.0.19_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jdk-11.0.19_windows-x64_bin.msi", + "checksum": "bc6414eadccbb886c6efb80684fd762af70b9f7f7bc36c8ca8502fc217f8198a" + }, + "zip": { + "name": "sapmachine-jdk-11.0.19_windows-x64_bin.zip", + "checksum": "e67c161d4f0c64c455cd23b5bed4451291a738c320a0ef81a94e9041c1a14c64", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jdk-11.0.19_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19_linux-aarch64_bin.tar.gz", + "checksum": "742b93811fa3c2ef1d164aa42386816c031156d8095b1e3f0b51afce042d0bbd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jre-11.0.19_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19_linux-ppc64le_bin.tar.gz", + "checksum": "4689bea8da35d4a4db8fa66c8a14af72e3f517624010fb101c7388a6a208ae43", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jre-11.0.19_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19_linux-x64_bin.tar.gz", + "checksum": "0ccc36129fad28656352619026eff1c314cb033091f888616f90103139b58f05", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jre-11.0.19_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.19_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jre-11.0.19_macos-aarch64_bin.dmg", + "checksum": "135d11caa3d2199fa037cd10341f8f3cd068e583b74ac528902d072822ef400c" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19_macos-aarch64_bin.tar.gz", + "checksum": "ac448bf3295c33e80fd0ba9e93a9a5c46ba0cd8825268e6a57d667e01e8b95dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jre-11.0.19_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.19_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jre-11.0.19_macos-x64_bin.dmg", + "checksum": "c00b4b6660beabe986e4149e79768b9f3164353eee968723a28d8c5c6618fe75" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19_macos-x64_bin.tar.gz", + "checksum": "333c9012cae83d61c1efbbe590f5e0e8656da5b998d94a557aae07c7066fab46", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jre-11.0.19_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.19_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jre-11.0.19_windows-x64_bin.msi", + "checksum": "b124d1c0fe38b8cc3bb5c6ccd74fa30af0a210b9beb4113685d1b11b42a07700" + }, + "zip": { + "name": "sapmachine-jre-11.0.19_windows-x64_bin.zip", + "checksum": "732347e250d6b4a18b000d58f4022453362435d138823c5edc8b0f413bc56f87", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19/sapmachine-jre-11.0.19_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.19+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.19%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "67128895c96470745a0bca12e1b0203ba4d998dddf5f5bc47db169fd4dec6139", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jdk-11.0.19-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "444427c7d76ab132f330db591a70a02b27cb0aa9a16c35d4f57d65bb40895401", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jdk-11.0.19-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.7_linux-x64_bin.tar.gz", + "checksum": "747f8517b974d854a8890de67dc585fc8a4493e8823a7aab1014e5e5c4ce5a01", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jdk-11.0.19-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jdk-11.0.19-ea.7_macos-aarch64_bin.dmg", + "checksum": "b26fb6347ade591df5f97c563adb9145b56a21bdd7eb6c9ade72e22cdaa2ad31" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "4fd5ab11a6773b734e1af74ff03a182a16472b78e061fa8c27568b6540159102", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jdk-11.0.19-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jdk-11.0.19-ea.7_macos-x64_bin.dmg", + "checksum": "ef4400163bacbe0bd8bac420cc4b3ce2ef27e4b846b716d534eabd06d81a9635" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.7_macos-x64_bin.tar.gz", + "checksum": "134ea9bd722dc552b22718b8b29f08b06369c2e32f56b06976acbde4150861e1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jdk-11.0.19-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.19-ea.7_windows-x64_bin.zip", + "checksum": "e6ad0fbdadcd44a4e1dc47717edc8fb4d3093171e92fa62e018b02f6b1ecd8a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jdk-11.0.19-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "8cc878e081d125f8d8769d562c02fd6f5ad6bed9c275b4f89bae8706ee19b0b0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jre-11.0.19-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "f409a62525116f916889f204bc7f67d9a75706e03965feab068147a555ea6fae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jre-11.0.19-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.7_linux-x64_bin.tar.gz", + "checksum": "7a639dec7756dcff390dabb673aad5d6fdc266f8f18306bb907622f5da1005ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jre-11.0.19-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.19-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jre-11.0.19-ea.7_macos-aarch64_bin.dmg", + "checksum": "61c2bb216cfde2c0694cd1574a8f0a6f711641470966ba40bf4f85f62508660d" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "c6681bc63b2a4d097c409ce4426ac234a5c9d6a9b4f49de6f53aad28d4602a5f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jre-11.0.19-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.19-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jre-11.0.19-ea.7_macos-x64_bin.dmg", + "checksum": "e256ee20ea402f9dc46ea955d9f391c1d1338b936befc8253cea9cb3951c42e4" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.7_macos-x64_bin.tar.gz", + "checksum": "c20721fe8f3c3a90bc5fb631a8f71e546b9ca3f6a8ead1ca8b27cf6024a77143", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jre-11.0.19-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.19-ea.7_windows-x64_bin.zip", + "checksum": "387dc79abe35b0f18e2ac9a3201b1c47f84c645eea8ff5e9a34ad21c1f71eb8e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B7/sapmachine-jre-11.0.19-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.19+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.19%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "09925f8241fea0991cc48e1971e20efab8a2cf2016984c5ce88a10de95a8ee42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jdk-11.0.19-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "2acd56e71f59800a55a6997e875cdf790b38f738561025008fe37e0316d917fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jdk-11.0.19-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.6_linux-x64_bin.tar.gz", + "checksum": "e94d2c34f7f8eee562fafa29fce3cfd7cf5dced9e74389650204560c7aad39f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jdk-11.0.19-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jdk-11.0.19-ea.6_macos-aarch64_bin.dmg", + "checksum": "cfb7536e36300c7e8362a863fa40f07b422e8c8420b2b91574f2c9d7215cee7c" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "4bac475590bfe9e3f3c78b45bac9380dcbbdd7c31d9e8d21737b6fe9856644f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jdk-11.0.19-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jdk-11.0.19-ea.6_macos-x64_bin.dmg", + "checksum": "3a2640f178d20d6298db4b81c30d26bceac00ca221eaf86d8500776fcb852e30" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.6_macos-x64_bin.tar.gz", + "checksum": "ef6a0fbe03378a660a6185b6d9a3a23b3548eca454a0a7372ade446e1d84b4b0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jdk-11.0.19-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.19-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jdk-11.0.19-ea.6_windows-x64_bin.msi", + "checksum": "a1af6d52c0e009d59ea447a9bfe2b639c0503254e16957834612eb4a6cd9875b" + }, + "zip": { + "name": "sapmachine-jdk-11.0.19-ea.6_windows-x64_bin.zip", + "checksum": "f72793eb04175d58f2ff751741c58b6b2ef116d22e3e2da17fe4c5ebb0f2c367", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jdk-11.0.19-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "02e7aea187198f2f6d491a665eb9b1efcaad18a7337ae72063b6568d149762ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jre-11.0.19-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "d903030ab4f52cccfacdc854745ba14cba6b78a7168e73e8ede0e98d659da3e5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jre-11.0.19-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.6_linux-x64_bin.tar.gz", + "checksum": "f7f1185ce85e6a9618ff721ce49abe30fdccccd678a46fcf5fbd7ffbed03d713", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jre-11.0.19-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.19-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jre-11.0.19-ea.6_macos-aarch64_bin.dmg", + "checksum": "d2cb8b37364318597f85af924476bebc90bbe415f1c7d1debc0e0ee1bc571e99" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "c06a8360ff19e168a2d3f8f5fdaff94fd200769d06e4a8c091fa33f61c192d8f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jre-11.0.19-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.19-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jre-11.0.19-ea.6_macos-x64_bin.dmg", + "checksum": "07b149e686f808e4512a1a1b0c9ccf4cc826ec52dea5c53454710ee00410c09d" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.6_macos-x64_bin.tar.gz", + "checksum": "a2af9c721e24376a4eeb72c0c97d75efbb84f57931b37201db99f2fe6dd52d41", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jre-11.0.19-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.19-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jre-11.0.19-ea.6_windows-x64_bin.msi", + "checksum": "6088db36da80e465a9768ba5e65853efe154a39b8ef08de5aef72c0c594b75ac" + }, + "zip": { + "name": "sapmachine-jre-11.0.19-ea.6_windows-x64_bin.zip", + "checksum": "d4501a915c1d8f6906ded532d4cb5b8f97a1b7c1a7bbdc17613ebe086c9d8587", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B6/sapmachine-jre-11.0.19-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.19+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.19%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "fa263998b9c6fedb6fa3e7ccd0e1dcd47c0d6c33db91805276c17f02359a6c25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jdk-11.0.19-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "192d88ccc42ffd8d575604fd07275bdb6a9789a274f2710824a96cac28483ea1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jdk-11.0.19-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.5_linux-x64_bin.tar.gz", + "checksum": "318c687653522c8657b45a603673307680e0b8370e85076ad6bcfc8bfbb32cd8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jdk-11.0.19-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jdk-11.0.19-ea.5_macos-aarch64_bin.dmg", + "checksum": "af8cd1913068aeaa4d10812b80d19d462588cbeb0c25b495c2ac9280b28def92" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "a097d08f40b78280366dd2837f0680dc1a88e932b8a5533ae95a8ae1bea27783", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jdk-11.0.19-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jdk-11.0.19-ea.5_macos-x64_bin.dmg", + "checksum": "06db140ebdbff28042ac3a9f7d91554d83514769f7b4d3d6a2b838106b275be8" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.5_macos-x64_bin.tar.gz", + "checksum": "3499654ad9686ae9d8eac36613cadbe662a10b27e12bd52d56e5be086edda941", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jdk-11.0.19-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.19-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jdk-11.0.19-ea.5_windows-x64_bin.msi", + "checksum": "23099589756e7574590b5d6a71855aad11a673b546d9e34a966c27851dd09086" + }, + "zip": { + "name": "sapmachine-jdk-11.0.19-ea.5_windows-x64_bin.zip", + "checksum": "dae832377c61dbd0b107b8936612f2762b4f741485de921903f77a6cef8ff9f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jdk-11.0.19-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "7fe235de052f35011d18e3c342776183c32d444e38e480081139b37e488fe87d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jre-11.0.19-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "b8c1d0da01b37a8fa423943e62d24a2d05000c04b9cf9ace141d9609b6a54814", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jre-11.0.19-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.5_linux-x64_bin.tar.gz", + "checksum": "c05f38e81b4879ef4829b1a2602b647dab9cadc031fb83baf0712291f71cf16f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jre-11.0.19-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.19-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jre-11.0.19-ea.5_macos-aarch64_bin.dmg", + "checksum": "a28c54ecad188b2003275df328131008340b97aed86bbd7daa3b0da8671ac635" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "7ce3e7686fd7183b79626c9e7bc1958eaf6bef884349f9604d46aa93a6e13dae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jre-11.0.19-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.19-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jre-11.0.19-ea.5_macos-x64_bin.dmg", + "checksum": "ec5186104078cbb6f2416d9d1573b2411e0ac493d5a8a1e73ed2f0fa65f700a6" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.5_macos-x64_bin.tar.gz", + "checksum": "47c77ca76a3f44122b5a78b4277dec9e49dd7c705c3dfc84e3c7c761ad0c2e0e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jre-11.0.19-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.19-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jre-11.0.19-ea.5_windows-x64_bin.msi", + "checksum": "207ba66f5d5c278e01c17678560d4a124feb04084b367acb48478e83e8d1d758" + }, + "zip": { + "name": "sapmachine-jre-11.0.19-ea.5_windows-x64_bin.zip", + "checksum": "89b1ff4cca714d045b432253640023b4f7a5ee9d94d4dfaec29f9624a2605a56", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B5/sapmachine-jre-11.0.19-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.19+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.19%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "6d1d72a3aa2949da7e689c73d83c6ed8b84397f20ed064fd0f38e4e3b2f3de1f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jdk-11.0.19-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "32b9c7aa7f96ec8a228a2ddfcc128a797769385ca9028ecdace45457b5fcc6e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jdk-11.0.19-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.4_linux-x64_bin.tar.gz", + "checksum": "9c3e22b9ea9230fd68aceccd056b4a27d90f1dfe1b71e380c397170b88dbc35d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jdk-11.0.19-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jdk-11.0.19-ea.4_macos-aarch64_bin.dmg", + "checksum": "f94c03912a8e467895ea8942b3121dec8395d880754b1a07819dbca9bed3ffe4" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "16a16436df3b231a2ef9f02523d62e2580c29884ae62425204dc61440a855d3e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jdk-11.0.19-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jdk-11.0.19-ea.4_macos-x64_bin.dmg", + "checksum": "6837b813782a20548c808e9a942bd63ace38c148d83fe3b79cea03941f860c4b" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.4_macos-x64_bin.tar.gz", + "checksum": "1a1c5912af54aa8b8379741ead2ebea83eb535331f07be1e23453389ab83e69e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jdk-11.0.19-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.19-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jdk-11.0.19-ea.4_windows-x64_bin.msi", + "checksum": "b448f3c1ec5f9129d89fb4be389b8c559c09577fb71d3106eed408f8adb02e90" + }, + "zip": { + "name": "sapmachine-jdk-11.0.19-ea.4_windows-x64_bin.zip", + "checksum": "7b59546ce1fac96e5953b2fc2d68a555454b5768921d4a7f06159c22478e7aac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jdk-11.0.19-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "077056ca9d161d90bfc0c6b0479e51534a61d079e8de5fd50b402193c3770307", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jre-11.0.19-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "f69f4dd02b8614bd9cdec8384bef6d3a5c08602700e749f225f05aa9bbffe3e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jre-11.0.19-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.4_linux-x64_bin.tar.gz", + "checksum": "6fdf684eec976b11231bdc8ac2ce8116b6bba7b463ef1cd2d0c7af07f0698d3f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jre-11.0.19-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.19-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jre-11.0.19-ea.4_macos-aarch64_bin.dmg", + "checksum": "d5935d85813c1a887ba38451cf61929c28ec4359a8ab7dc7b678c3257567e34b" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "14464224f75838f397102518b4cb7e1d9bf5d3e76da7fd1871afbdac50c23888", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jre-11.0.19-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.19-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jre-11.0.19-ea.4_macos-x64_bin.dmg", + "checksum": "3ee9f2dad23861133c4a339ef467ced479b1b34d683878e2419a6b6de182af88" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.4_macos-x64_bin.tar.gz", + "checksum": "3ff90fec7e33ad4f5b213e0691c74fef4c4a83e979d546728ec8a258a04bce7e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jre-11.0.19-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.19-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jre-11.0.19-ea.4_windows-x64_bin.msi", + "checksum": "5e2b46d72caab5ca3836171cd134875899be90bd60b8c9a65842232bc01745e7" + }, + "zip": { + "name": "sapmachine-jre-11.0.19-ea.4_windows-x64_bin.zip", + "checksum": "f96b7853713115a92ae01bbe7c4331577907a5f20d5d8d26d0077affc32c88b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B4/sapmachine-jre-11.0.19-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.19+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.19%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "bfb409c0be76a7c245305bc6d8d093176cbd691fef51a78521dc593890c2169b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jdk-11.0.19-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "2bdb8bfd99b8160919cec5cebae59ce6e79792eaab48e7c4bc1b6791740ddfbe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jdk-11.0.19-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.3_linux-x64_bin.tar.gz", + "checksum": "611af3ada14c76c7e306f6e18b298359aef16f0cdc0603cb95fbadf64803a3c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jdk-11.0.19-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jdk-11.0.19-ea.3_macos-aarch64_bin.dmg", + "checksum": "cbb3e655fd1e89b6225b2cde4a1175584138c04f3c61133daf78370a59c4d4dd" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "72a3a100a49a41f817bc88efa022f2dd96619e5d5f0396ed33ddef3d34574c72", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jdk-11.0.19-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jdk-11.0.19-ea.3_macos-x64_bin.dmg", + "checksum": "aa4926c0c39345204792edebadfbe0112eba3be81e4460324db21fbb42e47265" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.3_macos-x64_bin.tar.gz", + "checksum": "f1e1d2032c17b7456554e23587bc7af298b8d5cca822f8432e65c1cad0486146", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jdk-11.0.19-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.19-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jdk-11.0.19-ea.3_windows-x64_bin.msi", + "checksum": "f7eb77a4aa66be6dd73496d15d723d016fe97cbe0b11b430a3a6e9b603f2084d" + }, + "zip": { + "name": "sapmachine-jdk-11.0.19-ea.3_windows-x64_bin.zip", + "checksum": "43505fccee3575d1cd920ecbb42b8ebe8f172dba5ce35d594b1286d45f8a39bf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jdk-11.0.19-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "afee5a1b9fdb7dc6993fb94ba0129190c1df711c98b05af9404ceb8326fdc1fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jre-11.0.19-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "e4bdc40b60e6428f365f9a00a08870173dfddc70d3e1232582ba8002d49198f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jre-11.0.19-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.3_linux-x64_bin.tar.gz", + "checksum": "d728d4759e2b2169739cd64b3798d90b8fd0e33f592b3d97478c91168ae32032", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jre-11.0.19-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.19-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jre-11.0.19-ea.3_macos-aarch64_bin.dmg", + "checksum": "bbf65938ca3ea4235f491bc938c54e5027a96bbf732721e099003624c84a1f0a" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "3b3705953e0cba2b12e26ce1bd3ac85dabf45b237398ad9553537653e1ca9446", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jre-11.0.19-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.19-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jre-11.0.19-ea.3_macos-x64_bin.dmg", + "checksum": "77ee92faaaa6a5cea8b05c49709e174812ac9d596760e1ede9058bbfe5a7f5ab" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.3_macos-x64_bin.tar.gz", + "checksum": "5f79dbc1c958b4e5ca220849f0b09ea2888747d24f239db9755cdc57d0121131", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jre-11.0.19-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.19-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jre-11.0.19-ea.3_windows-x64_bin.msi", + "checksum": "37ad1ccee2a4bb8f1ce40a7d9e4b0acbac87a1573d064795d40c3b84bd3c5967" + }, + "zip": { + "name": "sapmachine-jre-11.0.19-ea.3_windows-x64_bin.zip", + "checksum": "5feb5fe8d902c26bbe2ea5157bb64092024562323866e112764dbeec772391a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B3/sapmachine-jre-11.0.19-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.19+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.19%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "214e18079c940c6ace5e2ea334c3fbd35ba56d959d85fa5adf954c5837acc6c9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jdk-11.0.19-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "7940bbf56bb4cd5841f139159e4b1d381baaf557bc216a7b092d3f544479fb79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jdk-11.0.19-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.2_linux-x64_bin.tar.gz", + "checksum": "9ee712377a933610fb4588a878a93b34f23062cd4088fa929a13d4ff13b57a57", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jdk-11.0.19-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jdk-11.0.19-ea.2_macos-aarch64_bin.dmg", + "checksum": "9dd8d634ba9fa391508032925cbdb98e0fab77ceb9cd3ecbd433c95cd9ffcf45" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "69127880fa2aa7aa01eb8652b130165f27cb1504d73f224cd2898bd776b0eaa6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jdk-11.0.19-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jdk-11.0.19-ea.2_macos-x64_bin.dmg", + "checksum": "9429d283085faa099efe3e5121d636e24f5ba2432743efd000ee657d9f6bcf56" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.2_macos-x64_bin.tar.gz", + "checksum": "4e11753a11376b6510008f264b1899ab6cd261077e6e16ee308f46179f723dfe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jdk-11.0.19-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.19-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jdk-11.0.19-ea.2_windows-x64_bin.msi", + "checksum": "78c05009c0c7aa2e958de37441e7bf81eaa626288171fa16f927bee1504b086b" + }, + "zip": { + "name": "sapmachine-jdk-11.0.19-ea.2_windows-x64_bin.zip", + "checksum": "830e3ff07440fbd0dfcda554144ca248d594c08f2b94045252af3ada964432d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jdk-11.0.19-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "8d8d11de215636bed340d559934a91101956c33befee5e77945f9a24cf7b381e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jre-11.0.19-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "f0866a0cb4c1f93e58884c89f05bcafda06ec6e5f506791e8bc3ff223395653e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jre-11.0.19-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.2_linux-x64_bin.tar.gz", + "checksum": "dc5e63f6a3a58090fec20d157ff0dd17c792209fe9707a72b35124e779d1ddd0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jre-11.0.19-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.19-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jre-11.0.19-ea.2_macos-aarch64_bin.dmg", + "checksum": "6857a0e3e13c73080104f374479d234f0ef221a6587d3523437c6db3dc4dba8a" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "cd54052d96e578495d334769e42e5a70b6fce327fe8dc17e869dc1d1d66f5db0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jre-11.0.19-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.19-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jre-11.0.19-ea.2_macos-x64_bin.dmg", + "checksum": "8d1ff265bd332d90d3ab9adee5fd9e4c301f8f1a6eccf1b3536465f0e47aa6fc" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.2_macos-x64_bin.tar.gz", + "checksum": "8fb7cfd7ef4bc2b08b5bb2d59e7b1075e7553ceb3baff40bced84cf25664785a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jre-11.0.19-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.19-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jre-11.0.19-ea.2_windows-x64_bin.msi", + "checksum": "3b8a1743880b6d5d7d74d066a2a76b2bd8ac5325af6225eb276f24cef029a036" + }, + "zip": { + "name": "sapmachine-jre-11.0.19-ea.2_windows-x64_bin.zip", + "checksum": "0855435edf6ab8dab303dcf4d417f4cb415119abf3d4dedf0eb57684051ee59e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B2/sapmachine-jre-11.0.19-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.19+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.19%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "6f9c81ea7450dfed679e4a3f680cc5fe592d5d7a89b0d70195a57654f5690005", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jdk-11.0.19-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "f434471a14e1bbb39aa7258fd1eb5136b03744bef19f12bbf03cfb5a5ea9b94a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jdk-11.0.19-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.1_linux-x64_bin.tar.gz", + "checksum": "5f751c3484aea2948863a31b93fd8cfffba24675b22b40d8e76214d2ffff8849", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jdk-11.0.19-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jdk-11.0.19-ea.1_macos-aarch64_bin.dmg", + "checksum": "eb2816f085b471171e0a18b61c737605965cf9405ce14ac77452eed72305b730" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "3a3e980c775de0b67342f39adaf5cd7ee891b80865b31931f462e29bc3acdced", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jdk-11.0.19-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.19-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jdk-11.0.19-ea.1_macos-x64_bin.dmg", + "checksum": "ac03d201c4dffc203822dee020838f5b2dd33c2e9fecb9e677ee9bb6c125293a" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.19-ea.1_macos-x64_bin.tar.gz", + "checksum": "5cd52bd1643bb1d98ed0745c691393c132cb4b9d5322cdb5972b42766afa1e67", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jdk-11.0.19-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.19-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jdk-11.0.19-ea.1_windows-x64_bin.msi", + "checksum": "f7ce0d368d21111c5dcebf853c3422f8e1219707efb46656fcb85d63d3e7d57d" + }, + "zip": { + "name": "sapmachine-jdk-11.0.19-ea.1_windows-x64_bin.zip", + "checksum": "18f7e3f6727655d75b1bbde33fd278101d51864add9c86b4a5aa2d398b4eefc2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jdk-11.0.19-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "80f2bfbaee92d5da82f70e9a90994d1e1a404ae8e49e5497a554d70cbf39bc79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jre-11.0.19-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "be5661d6aa6a7cd29d8c1e107c07b49e3de7b0d6db3cd2a47a436cb8c3dc99a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jre-11.0.19-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.1_linux-x64_bin.tar.gz", + "checksum": "855b8b1c5b67e898b5887f19fcd78d19e798bd549faed4e8002f0ee4850fe9f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jre-11.0.19-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.19-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jre-11.0.19-ea.1_macos-aarch64_bin.dmg", + "checksum": "2a27ed4514014527d06b3b05904d4bd0092db7225a4de0cc6751e46da4d438fb" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "249171adaf380f86c131c44b92e6819aeb2745d9c37931789ed51b406fd09a42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jre-11.0.19-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.19-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jre-11.0.19-ea.1_macos-x64_bin.dmg", + "checksum": "449575483d7318dff8557662893f82b29911b22519fcefb19f5984d1e67b9c8f" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.19-ea.1_macos-x64_bin.tar.gz", + "checksum": "254f502b1c876ab40e37fff8d412fb8d5f1d60af47b7f216e42ea4d202aea8fc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jre-11.0.19-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.19-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jre-11.0.19-ea.1_windows-x64_bin.msi", + "checksum": "9cc6191c369087e9eb87d64f1b02450b48088c5e8c113392ffe6771f8353083e" + }, + "zip": { + "name": "sapmachine-jre-11.0.19-ea.1_windows-x64_bin.zip", + "checksum": "0565a098d8373157d95a70a18b9a430a172f68d1c1ce6990feb60604e69fa42f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.19%2B1/sapmachine-jre-11.0.19-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.18": { + "sapmachine-11.0.18": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.18", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18_linux-aarch64_bin.tar.gz", + "checksum": "564298a3aecf0603ef7c05b60b2955271afa9f2f503dd09e22a9af67a6cf53d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jdk-11.0.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18_linux-ppc64le_bin.tar.gz", + "checksum": "672ec3825ec6a3ce6013b124ea631bd2072a86e4f928f8af900afcb10d1c115e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jdk-11.0.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18_linux-x64_bin.tar.gz", + "checksum": "ecff9792f91b20a205f11dd7c04f0554c84ba0edb154e52610ccc9e20b69d359", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jdk-11.0.18_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jdk-11.0.18_macos-aarch64_bin.dmg", + "checksum": "5aedb555e51952e1fe6b2253b58f8caa2928d94ba661168d9f6e68ffc512bfc7" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18_macos-aarch64_bin.tar.gz", + "checksum": "2a026c9083d27b5cf2e6c9690eeb7c6a9373bdd0cd6e29fc25bce8079b9aeb19", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jdk-11.0.18_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jdk-11.0.18_macos-x64_bin.dmg", + "checksum": "c1aaae74d2079467a80f2b463550da8cc4cc6165059b0d372e55595d85472973" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18_macos-x64_bin.tar.gz", + "checksum": "50eb0d30c6fc34e6e47763e24b3ad5e3ad9099e222abbf603c634681b7dbce50", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jdk-11.0.18_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jdk-11.0.18_windows-x64_bin.msi", + "checksum": "b1abd3dc3ce98c6dfad3e2cc5d66900701411824896c21f5ea88ab2524472203" + }, + "zip": { + "name": "sapmachine-jdk-11.0.18_windows-x64_bin.zip", + "checksum": "255b2186e42943bd822eaec5a163cbfccee4f390598d99335f260be180f448d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jdk-11.0.18_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18_linux-aarch64_bin.tar.gz", + "checksum": "55b9abe2830053e9b159f9fb967adc9f0b6a7d732d267edd5638e3f7dd1cde89", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jre-11.0.18_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18_linux-ppc64le_bin.tar.gz", + "checksum": "731946624fe1a52c15a85b954f58bf5175e07892480691d2fa271da6e4fa5d76", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jre-11.0.18_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18_linux-x64_bin.tar.gz", + "checksum": "73e63a7d9a260eff85ace71eca5e327f6baefada399680140e66b39514b2b871", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jre-11.0.18_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.18_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jre-11.0.18_macos-aarch64_bin.dmg", + "checksum": "20df96f6c4f6a15f72e20b8e6e33b6045d35e11a416e8f67c9cf5d4a26c8aa32" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18_macos-aarch64_bin.tar.gz", + "checksum": "eaee13f8f70413a6866e7a4b2cdc360450235447d766b4865b4bf6d73042a339", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jre-11.0.18_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.18_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jre-11.0.18_macos-x64_bin.dmg", + "checksum": "3a80c74310ba17d23fcb35f5d87d95795eb3cbde2dc8b60b8e93b55f6589db9d" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18_macos-x64_bin.tar.gz", + "checksum": "66e60a96c8526fa52ac083624210d36d96da9227e24ed70024d39469b63cff80", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jre-11.0.18_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.18_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jre-11.0.18_windows-x64_bin.msi", + "checksum": "051d5d61e09523c80d3778ee37315a2b70921f1581d200847808252b80f57d57" + }, + "zip": { + "name": "sapmachine-jre-11.0.18_windows-x64_bin.zip", + "checksum": "49b9b997daa2b06601ab8582ee838f9bfd5a6f9d9beab05debb81197ac00ee32", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18/sapmachine-jre-11.0.18_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.18+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.18%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "880694e82117526a0f93b032c4ea6e82ae0518d829c0d9141de9a667d424874c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jdk-11.0.18-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "8cdd9ebf9a14a9a1d1f0b2688fc5b384d9fc95fe4e17f2c0b22d9159b12788f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jdk-11.0.18-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.9_linux-x64_bin.tar.gz", + "checksum": "65d007bf0e09bfe2631aa8222736f60a62907581680117feac079dabf7709249", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jdk-11.0.18-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jdk-11.0.18-ea.9_macos-aarch64_bin.dmg", + "checksum": "c2e84f0aca81a78d76a2672ab254c07801edf13c9ea19c1ba1fbd1360c7d6278" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "e06c9f784e0b9f603831b32f664b6eb28aab84059551e2689a33c1ee33902892", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jdk-11.0.18-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jdk-11.0.18-ea.9_macos-x64_bin.dmg", + "checksum": "c78fc2e7430362fdd079ec0a813cf20735b2f653ec8869a1a2d0a788bdb76c26" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.9_macos-x64_bin.tar.gz", + "checksum": "4ba017476a39681ddb5b91c3f657185fbc6fb37c3a472b1b0fdfcc40cc37c234", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jdk-11.0.18-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.18-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jdk-11.0.18-ea.9_windows-x64_bin.msi", + "checksum": "6a1dd2745ea363182ef4d3d3adb4e05d6a937195cf5cd7e00b2609421ed3e046" + }, + "zip": { + "name": "sapmachine-jdk-11.0.18-ea.9_windows-x64_bin.zip", + "checksum": "98c0e8434d11053dfd138dca36a3962ff0b29e87346f004fd477723219634051", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jdk-11.0.18-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.9_linux-aarch64_bin.tar.gz", + "checksum": "430a51f6de431a2da7c9cda24ce6ff899a42ef3f27cf03f9ac6eefd33e093b4c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jre-11.0.18-ea.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "11acf9342c149c9dc211a146e187a14f071bd9f5e41f5f5ec7f34c2ede649267", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jre-11.0.18-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.9_linux-x64_bin.tar.gz", + "checksum": "8a1499b444d027d53a6e205d90737aa2e974a5547fdcdb9619eb486a937e22b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jre-11.0.18-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.9_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jre-11.0.18-ea.9_macos-aarch64_bin.dmg", + "checksum": "7265ec5f5e49d5f0df86825cd7348135363c9f65655ebf795b5f1256cb7b5b31" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.9_macos-aarch64_bin.tar.gz", + "checksum": "817b1d00b0d340bfef8612dadb26211fd584a06ee91e428a7c47be2357fe28bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jre-11.0.18-ea.9_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.9_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jre-11.0.18-ea.9_macos-x64_bin.dmg", + "checksum": "d02259703777adbf47b7c4da13d79b487bc955eb0d60936a917b46c62210c6ee" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.9_macos-x64_bin.tar.gz", + "checksum": "52aa8a3ba457d2368c419473c21b5929498885897f9f66f2a6fafe99f4cf35dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jre-11.0.18-ea.9_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.18-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jre-11.0.18-ea.9_windows-x64_bin.msi", + "checksum": "546fa3c2dfbc218ad1590f020a16df71fa99def7eaac8790cb5b40073c03b52e" + }, + "zip": { + "name": "sapmachine-jre-11.0.18-ea.9_windows-x64_bin.zip", + "checksum": "135e9e84f9ac3f0b9f8fe018fe9bbdcd851f5b013b41e474d6a9ef1d6689f459", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B9/sapmachine-jre-11.0.18-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.18+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.18%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "4ac9cd8f3bb65e4beb40695f543fd54b9f527e17f68dac3157650994895187ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jdk-11.0.18-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "fe9640e1843cdd1dc7c6356f6ab16bc5763914e5283fc3d3af27ab422bba173e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jdk-11.0.18-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.8_linux-x64_bin.tar.gz", + "checksum": "c1e7e871e96e52b065739140e9af707446c636345e1618cd897bd58701e93940", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jdk-11.0.18-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jdk-11.0.18-ea.8_macos-aarch64_bin.dmg", + "checksum": "e7c4b1e4adbf7ea08ffa0c3b4249c16b5d731db0b34ca30373d09e48414d3b69" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "1c4d6ab35855ad2c3b929d5c79c6c87a09e7a8bc9e21ef187ac77b7ca36d4bdf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jdk-11.0.18-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jdk-11.0.18-ea.8_macos-x64_bin.dmg", + "checksum": "793045e93ac4e62446249ea6520833ab2d94ac1a995e80bfde3ad709c7f9e8b3" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.8_macos-x64_bin.tar.gz", + "checksum": "142d7f037f976f9accc6e14a1e3603ac46e0201606bed5848bf33545cf66c53f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jdk-11.0.18-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.18-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jdk-11.0.18-ea.8_windows-x64_bin.msi", + "checksum": "94fbb5b2bdcdf6c26e2fbb47b926a76a8c452797edb946b17b28e3d618980cc7" + }, + "zip": { + "name": "sapmachine-jdk-11.0.18-ea.8_windows-x64_bin.zip", + "checksum": "6ded4b9e174dd8f1ff12aab4c628c1b388e0e6727c446e2ab5c4744535ce345b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jdk-11.0.18-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "2a9b3cef292ca7fcbae881f28059e88160b3f6d24e4c2ab7afdee21fa18f3ce0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jre-11.0.18-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "932b407849b7951e417b47a763ad4eebe9ecafc21836bc7393b418e0ae70022c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jre-11.0.18-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.8_linux-x64_bin.tar.gz", + "checksum": "0e27c3f198a59eb0274e079f6f3cbcf82ef374bf0b161acff0e193279678bac5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jre-11.0.18-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jre-11.0.18-ea.8_macos-aarch64_bin.dmg", + "checksum": "088cce5f09b780be376cba217988cf4b699a97e94e55ae21b5a9ac35d3dce877" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "f8db6a9ed86f1c589f93e41cdd7e736871372d4c57355c9959e424ca196cfa33", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jre-11.0.18-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jre-11.0.18-ea.8_macos-x64_bin.dmg", + "checksum": "7e69146001bdd1640f88f7c4fccb3ba6bf92088fd98565f43bf645d96c942634" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.8_macos-x64_bin.tar.gz", + "checksum": "2bc8b096a8f27b1631a8320ebbf9dc31ed0d429b65fff224b0acb3785bb64ca2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jre-11.0.18-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.18-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jre-11.0.18-ea.8_windows-x64_bin.msi", + "checksum": "48e5b697ebfb92b638cbdb4701456756d1b94de83520bb89eefa9331a0cd61ed" + }, + "zip": { + "name": "sapmachine-jre-11.0.18-ea.8_windows-x64_bin.zip", + "checksum": "0219482297d2d8e9e0c22e712d2ece4cd0d4acdfb1a9e9a001b931e0499b9305", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B8/sapmachine-jre-11.0.18-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.18+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.18%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "70ceee24e9f6474ad22cd46ca81623ed3be7471173f316ed1e19935bdbf5d406", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jdk-11.0.18-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "20c7e903b98a0d8652990b6de942feeecafd5bf9b5be04d88c89d529e3849cf3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jdk-11.0.18-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.7_linux-x64_bin.tar.gz", + "checksum": "ed4a6e1b9f2c340e93cdf12a606d3f3ff67bb6f8d08ddec5c1e78b7b287781ec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jdk-11.0.18-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jdk-11.0.18-ea.7_macos-aarch64_bin.dmg", + "checksum": "ca0b0d5737a083ed55fb5bb735db76eea7c46ae52612dab8c27e4c1bb57f85af" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "0a2da178108f0ffd702f1ba18cadfad46975d0a7de85fa1b8d3f75fed74d1ee2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jdk-11.0.18-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jdk-11.0.18-ea.7_macos-x64_bin.dmg", + "checksum": "629a5b8407cdc1511812f540501861e965e1b4ec55bb54233916836c659e8140" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.7_macos-x64_bin.tar.gz", + "checksum": "e5a4962a410e65e258e2d030bf94d30aea3549c457266b23c71544ee688dc491", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jdk-11.0.18-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.18-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jdk-11.0.18-ea.7_windows-x64_bin.msi", + "checksum": "e2181c42f26b004d14e741205fffa50999a42f24a0b12a12a365a0afb606e7aa" + }, + "zip": { + "name": "sapmachine-jdk-11.0.18-ea.7_windows-x64_bin.zip", + "checksum": "42fc59370e1a138d43309e82f3d58d3a980180535f71166e277d799605133f54", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jdk-11.0.18-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "4cc3834240cf0781f4b847a95d9a4dc852f90f865711c35bad821d239f72cf09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jre-11.0.18-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "c418ad1bf0a9f091a2179066c1884e874e6e19f4d6cf1891c2438129f5df24af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jre-11.0.18-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.7_linux-x64_bin.tar.gz", + "checksum": "4d3ed45a7126d80c57bc1877491b953fdf2084c7cc0b29c91152a21bd8280791", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jre-11.0.18-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jre-11.0.18-ea.7_macos-aarch64_bin.dmg", + "checksum": "d41b14483950f53119e57bff0d61fb2b5eae64a58aca9bc560bbafed07c87fce" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "a3fb87e3100c1993c4b8dd25a423c9bea0e6fb6873c346f7353145614f4adb8c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jre-11.0.18-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jre-11.0.18-ea.7_macos-x64_bin.dmg", + "checksum": "94c7287e3c80bbfb1dc553fa6ea9b7b3475377ac3095c83424bd70aabbf8b6a1" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.7_macos-x64_bin.tar.gz", + "checksum": "44f4f3821d5bfcf0d01c713671ba49ac689f42238b6a1cadc50d627c8511c8b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jre-11.0.18-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.18-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jre-11.0.18-ea.7_windows-x64_bin.msi", + "checksum": "7795f9c167cc6b95e20a50b9a7ee9846482a494c57f8db8e03df93d55d05dbd6" + }, + "zip": { + "name": "sapmachine-jre-11.0.18-ea.7_windows-x64_bin.zip", + "checksum": "5501279ce9f44ebd657c87d686d6658344db9447ff2f26ec90c78a62c97aa9d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B7/sapmachine-jre-11.0.18-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.18+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.18%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "09717a14f91115854e7defb4dd6554d8366286a812d7e119b019112a64e0eb03", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jdk-11.0.18-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "23d7949dc33f432ed4e393f638d44e27839cabbb4e809484d35c2fcad398873d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jdk-11.0.18-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.6_linux-x64_bin.tar.gz", + "checksum": "5b1bc9cdc09cd6bfad9526b65ea65b3627956e0e46767138fe19a934b6027a76", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jdk-11.0.18-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jdk-11.0.18-ea.6_macos-aarch64_bin.dmg", + "checksum": "1d81fbce31d28ee78e520e7f0dc361001853f7cdd42581c5a3fe37cdcf8550d4" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "3beddea63244afb3f2a4b71b80f1990fb778836a49147f40762abd8d75002d9b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jdk-11.0.18-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jdk-11.0.18-ea.6_macos-x64_bin.dmg", + "checksum": "247b792d4b01b9a26bf0994077a6c3e4e2e15459c29c93a9c7f01367932e55c6" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.6_macos-x64_bin.tar.gz", + "checksum": "2382c7d9e5b9188ae2220f11f92395adbca90bc1b8ea2138008519aa7cc5c1f8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jdk-11.0.18-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.18-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jdk-11.0.18-ea.6_windows-x64_bin.msi", + "checksum": "806d55712fe394672629b434122b9dac51f735cbbe555c1e821e7b988c834ea3" + }, + "zip": { + "name": "sapmachine-jdk-11.0.18-ea.6_windows-x64_bin.zip", + "checksum": "329e5d3cf14d1814119a804562faf437b98e35b7a391012768e24a7da0775aaa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jdk-11.0.18-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "08ffb2606193ac5a8f50e9d790bc5ff33d11a8854548b5798b4981e1306b201f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jre-11.0.18-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "22eb6f44cf9cbd1fc6969973a19f654b779a512d58720ff715c11e36c45c8330", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jre-11.0.18-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.6_linux-x64_bin.tar.gz", + "checksum": "a394ac2035e8e7b7a0020b97a85ac80972c5b639674e998e32d7696db12767ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jre-11.0.18-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jre-11.0.18-ea.6_macos-aarch64_bin.dmg", + "checksum": "dec2ecbcc69333772ea726f5d48d8cd7a835c0fc788763e1532a1924fc9e8061" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "32061daf1c29370e8d990f843b0d343f6cd2df2675f25aa397c78ee18256108e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jre-11.0.18-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jre-11.0.18-ea.6_macos-x64_bin.dmg", + "checksum": "8f8f81cc8e6e3726a9f4978ca29816b8388fb88c01b2c8205e6d3f273c6c8b23" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.6_macos-x64_bin.tar.gz", + "checksum": "4965bffc5eae9669ae540bf4b132773e6491a198851292321e8dd218eab30026", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jre-11.0.18-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.18-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jre-11.0.18-ea.6_windows-x64_bin.msi", + "checksum": "09a5c46bd204bbbaa62bd00bfab2ef3d3925c54118eb4d36d0f860a302a61cca" + }, + "zip": { + "name": "sapmachine-jre-11.0.18-ea.6_windows-x64_bin.zip", + "checksum": "7c99e6eeee583c5b812143f5df16b3b10b10ea2f6962818203946efc89149fc8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B6/sapmachine-jre-11.0.18-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.18+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.18%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "eb4a9860d4a37b0934842448e4dfd90a26ffbbb1b7ede7c1af701f9ea7734d11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jdk-11.0.18-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "0b0510938468d710f161d3b1c4d5084b733f63ac56e94ebd39e02e22d06ae7af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jdk-11.0.18-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.5_linux-x64_bin.tar.gz", + "checksum": "4e28f96b5ec1af97df1d84e76114a37959fa80ebb7f96a76f41a421af4f9e8c9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jdk-11.0.18-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jdk-11.0.18-ea.5_macos-aarch64_bin.dmg", + "checksum": "5d6853197d838255dc90acda199bb73bb2bb55d18b4218e1e41604723a96eb4f" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "67f47f94ed2480222e60a19ca24c4b382445bb566aed411953a3f69c2724e86f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jdk-11.0.18-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jdk-11.0.18-ea.5_macos-x64_bin.dmg", + "checksum": "4aeddf05e17d11f4f07c8c4824c25ed3d45324b4c1c40b4aff8ef2385fd74556" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.5_macos-x64_bin.tar.gz", + "checksum": "fdb76d26304ca855011750f1fa21448d641a1863eb855a147d5c5b88976ff5a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jdk-11.0.18-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.18-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jdk-11.0.18-ea.5_windows-x64_bin.msi", + "checksum": "2249fc4d4bd81619150b249fd642835d7606c0f14da395ab8769a79052f2aeaf" + }, + "zip": { + "name": "sapmachine-jdk-11.0.18-ea.5_windows-x64_bin.zip", + "checksum": "1e58f05b1eb140485808ad3676d9132d736720904ea4edc62e21b0aa0501a2fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jdk-11.0.18-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "1d4f2f7db512ad15401da79e9cb617022e754812bf5cacc86b1ff4e5bcfc041c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jre-11.0.18-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "5104c5da0678866696623ed11dcd5a7a669bf6bb367e681ab345c5b0c86a0ef2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jre-11.0.18-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.5_linux-x64_bin.tar.gz", + "checksum": "ef89c8efbe707918e0a035cc04e31990fc92da31d7b2883187d66e549b60c318", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jre-11.0.18-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jre-11.0.18-ea.5_macos-aarch64_bin.dmg", + "checksum": "1951d708fa81110108c7ae96f5d01b62a2cee9ee8d54746ac001cb7fadd9e55f" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "70fad9efaaeb816e5ba655d902d6670186168dfa5a82683c79d16404f9824271", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jre-11.0.18-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jre-11.0.18-ea.5_macos-x64_bin.dmg", + "checksum": "01de21eca455902d4fea364bfc52f9a7efbd20f2c295c2b6e7939ed1590d6fb1" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.5_macos-x64_bin.tar.gz", + "checksum": "9dbf46666df90640df4dbb74c44430deea3e5e2021cd5f5926ec627a72fa9f74", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jre-11.0.18-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.18-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jre-11.0.18-ea.5_windows-x64_bin.msi", + "checksum": "1ce4b734c48c70cf9cf84fe548c3274ff9f02904ce36e9b8a2cef8a359f44d97" + }, + "zip": { + "name": "sapmachine-jre-11.0.18-ea.5_windows-x64_bin.zip", + "checksum": "767f6b18710b6ce3b68bf71049cb56b442abee78c9c3e02f22b49262f6315787", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B5/sapmachine-jre-11.0.18-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.18+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.18%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "989ce9e388c5ad933f4e573025fcc16a1dea00e5b7cedfaf4674ae646bf17991", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jdk-11.0.18-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "6014555660bc133e2d14e4a5e1ed2c6d7de8f8f75e540dc95aea1d0cf9ab884b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jdk-11.0.18-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.4_linux-x64_bin.tar.gz", + "checksum": "28e4f41604fdcc2dfbb1f7233acd5f68912ceb33fbead895d48d147e4c882a2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jdk-11.0.18-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jdk-11.0.18-ea.4_macos-aarch64_bin.dmg", + "checksum": "5ca331ece77fba0aa82d4af84a4553fd257fd935fd5ab151f364146b1b2afeec" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "b1798e2820a26e8f81ac21f1519cea16f21959e4b97724f003bf33088383afb9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jdk-11.0.18-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jdk-11.0.18-ea.4_macos-x64_bin.dmg", + "checksum": "1322a90d9ab4ea6b4b4591fc255dca6f34db1daf4f384c6909327023d064518f" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.4_macos-x64_bin.tar.gz", + "checksum": "1be52574d4ed4cf78a3036a510525f74176667c5e572a27345776010ca91e0bf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jdk-11.0.18-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.18-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jdk-11.0.18-ea.4_windows-x64_bin.msi", + "checksum": "08873cbf6bd5d75f1f6c163290649c9eac166598190118dc5edc4ac7f80cdf6d" + }, + "zip": { + "name": "sapmachine-jdk-11.0.18-ea.4_windows-x64_bin.zip", + "checksum": "d3bce81f24bf39474ace88e611f276359c6beebfc04e40fdeef4f622d187be56", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jdk-11.0.18-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "08342d408df5670bd3b1b7702dfc96396176864bd0f375f0ed3a67d3b5501484", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jre-11.0.18-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "422e4787a0cd77d8433be44ea44583fc62d875e3cc50227b971a56295bc14a1e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jre-11.0.18-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.4_linux-x64_bin.tar.gz", + "checksum": "b4b405e6779c560f4b1d9a5d8a450c952e6c87a706f55c049e1b2fa6b32d7e79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jre-11.0.18-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jre-11.0.18-ea.4_macos-aarch64_bin.dmg", + "checksum": "b365b179832de0203cfc98e0e0baff935c2280b9fe7e3435d4e2360142a0bc41" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "ed07984775d55fd5d39b9b350990dc5ba655ac302840a82f73e4075c4a5380db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jre-11.0.18-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jre-11.0.18-ea.4_macos-x64_bin.dmg", + "checksum": "b0f5b14552ad3f8b1f27fb82666e6ed72050172cc4d80d7520589338df97efaa" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.4_macos-x64_bin.tar.gz", + "checksum": "da6852a7ddb1c13d7f7eaec80395420f8c66f8b419a51480909e8b7ca78bc2d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jre-11.0.18-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.18-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jre-11.0.18-ea.4_windows-x64_bin.msi", + "checksum": "7cd8d589aebe9fcb4e4d477438731242889f9d5a3302765ee74a4484e51f9140" + }, + "zip": { + "name": "sapmachine-jre-11.0.18-ea.4_windows-x64_bin.zip", + "checksum": "354871d3db6bde8b737b4676ce0471294288aafc4c852d3d26d12338fcf3434a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B4/sapmachine-jre-11.0.18-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.18+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.18%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "734f8bb79f7df2a04f80ee1f725e4f5e7001138297310f2b98f9a2b6f8b43cdd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jdk-11.0.18-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "6dc3a213934c4bb8086a4d1474909c28e77fecb7fd7b53dbe4f7f6c7f4a2dfd4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jdk-11.0.18-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.3_linux-x64_bin.tar.gz", + "checksum": "c2dea32ba8e29c6c5c7937f1e0f6a2c3785417f856608b913a1e3276d094fe32", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jdk-11.0.18-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jdk-11.0.18-ea.3_macos-aarch64_bin.dmg", + "checksum": "2e4ec22012bcd1c09b8b96d8b9826ff0a2d9925cbc103759136c1b41a4eae605" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "edf9490b576a5e2808792f08a0d9380ba94b279f0b026d951f8919cfa6136626", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jdk-11.0.18-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jdk-11.0.18-ea.3_macos-x64_bin.dmg", + "checksum": "952c59061114c52632a41ad98e9ecb7b11aca3d418e783cfc670fca2b526ded8" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.3_macos-x64_bin.tar.gz", + "checksum": "44fc2827a46b8c1e042adb70a2379840a20fa099a56d5d4668b507e86196c5b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jdk-11.0.18-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.18-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jdk-11.0.18-ea.3_windows-x64_bin.msi", + "checksum": "039fc39dac270e7a1655a47b7c9a9ae2d26ef4f149527e2f89802dab726c974a" + }, + "zip": { + "name": "sapmachine-jdk-11.0.18-ea.3_windows-x64_bin.zip", + "checksum": "1c494d361ac5685cea57157463a306758227627483d19c3f1f4b071ec2d3135c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jdk-11.0.18-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "7ddc544c068f8c3b78e6889433a30e588cb1a82c36e3ccc34ee29ccad90263ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jre-11.0.18-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "f9370dedffd5ef07a8ce5d097a18038ff1fe30aaa0de491a256c626f5ad0b1df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jre-11.0.18-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.3_linux-x64_bin.tar.gz", + "checksum": "75ce30b983112f4eb089d5727b9232869b081bec4ef55cc01291bc771e95d4f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jre-11.0.18-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jre-11.0.18-ea.3_macos-aarch64_bin.dmg", + "checksum": "6dff7fcc97ae10bcfb0c551006eafafcb88487ddcf28174f464ece2c5b847696" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "474a67ff9cdcfb190240db40fc3cf36cb26b7b7aee97e8fe184e5790a224c91d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jre-11.0.18-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jre-11.0.18-ea.3_macos-x64_bin.dmg", + "checksum": "fa4361dab528d3f912e70e29bfe9463ddbb95d0c07b705685c44e2b761c17a87" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.3_macos-x64_bin.tar.gz", + "checksum": "ea2be5544fece5c8a501601d57bd6379bcda686329d1a4ead6d05e75e6877bac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jre-11.0.18-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.18-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jre-11.0.18-ea.3_windows-x64_bin.msi", + "checksum": "91a50de7050bb0d497f4387535661a08401828e0bc11d725384fa4c820676c66" + }, + "zip": { + "name": "sapmachine-jre-11.0.18-ea.3_windows-x64_bin.zip", + "checksum": "dbd50fd4695b2c338bcb1c656f1e9b2bcbec42457cfb5d33fe4d62ac132184ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B3/sapmachine-jre-11.0.18-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.18+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.18%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "f63a20af471e5b089a9dea4aaaa9fb53c40ed91883f976fd59e0fca8aa6fc10b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jdk-11.0.18-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "d41e086c1d2833291e7f1f5d6fd89b874047f059124f296a2b91e6ccc699c0c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jdk-11.0.18-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.2_linux-x64_bin.tar.gz", + "checksum": "5a2d8010947c9a07cbae6fc0847de4124bc38e742825c2b5715dd004539d67a8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jdk-11.0.18-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jdk-11.0.18-ea.2_macos-aarch64_bin.dmg", + "checksum": "4f08d5172181f9b76c90904b202891f375bb7962e7bb79baa75278ac45024567" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "ec25219c961a3e263ad4f62c067fbed0fbccc2f2411caf6cdd5eb83673087893", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jdk-11.0.18-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jdk-11.0.18-ea.2_macos-x64_bin.dmg", + "checksum": "a803624cfe7d2f21a2fc44b40c5c3da3e6c545807f07c57485f80f24b4616c4c" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.2_macos-x64_bin.tar.gz", + "checksum": "50c840c3dbdb6f15bb96cd54b2b0568f986206048b4c73f1fbacce6d227ada83", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jdk-11.0.18-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.18-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jdk-11.0.18-ea.2_windows-x64_bin.msi", + "checksum": "e0507828aefbf28cdb80f5d16551d2d11894f809efc2f334f9142b0a24bf79a1" + }, + "zip": { + "name": "sapmachine-jdk-11.0.18-ea.2_windows-x64_bin.zip", + "checksum": "ecfabe35c1149153dc502e79c6b30b7fdbd66cc9d7ea843b2d7b1b3c480c39d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jdk-11.0.18-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.2_linux-aarch64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jre-11.0.18-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "235f87a5e428323b176f3cf941172a77c0c0f7f8d2f5cb17b2ff6134669ed9e8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jre-11.0.18-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.2_linux-x64_bin.tar.gz", + "checksum": "5a4668b750fe927f6ad4855477e78f04002f361c762a1dd735f7a4535bc1c7a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jre-11.0.18-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jre-11.0.18-ea.2_macos-aarch64_bin.dmg", + "checksum": "528f30fa8e6365c916b3c995e9d6487b34f6fe2a5c5ab06e77345dfb82bddd7a" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "24c558553112734392c4049f904a5eaa1917d5dc8d102bbd218c9e5a6e24def0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jre-11.0.18-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jre-11.0.18-ea.2_macos-x64_bin.dmg", + "checksum": "a8fdc4d83c4bd81943c8997fb1fb15402c96e359dbc363e17ce3ff76a0e6379d" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.2_macos-x64_bin.tar.gz", + "checksum": "fccb973e91e77bf5968a1a1d1f70212d1f3e2763837490e452f5b0b953f9a69b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jre-11.0.18-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.18-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jre-11.0.18-ea.2_windows-x64_bin.msi", + "checksum": "aeeba18ca5f7d3917405e1bd421e4387d1d88466bc84375263e37cef6f47f3f3" + }, + "zip": { + "name": "sapmachine-jre-11.0.18-ea.2_windows-x64_bin.zip", + "checksum": "eef4e6f138fa037d6d084f59b9b1ba36e021dd2bdce5b88d506cb8672010f7b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B2/sapmachine-jre-11.0.18-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.18+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.18%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "843f4e040692987a8cfc6795e30d3a377faeba26defccef8bee9118f5c65e02b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jdk-11.0.18-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "0759f3aedab32b3a5df5177301b9ae4484d42afc1bd452124aa4f2b25b495de0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jdk-11.0.18-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.1_linux-x64_bin.tar.gz", + "checksum": "bd2b78b79319f3b1ba6959d5f09d20c01dc31d1b0ea099ea3874cdacc0974209", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jdk-11.0.18-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jdk-11.0.18-ea.1_macos-aarch64_bin.dmg", + "checksum": "c845fd49a87a6ef0b6a07706e11de1fd8992e947e9384cc338213adda192477f" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "db67eeb5318f6d5d8471a472e52e279c9e6b935a4afa862b637c6db48a35032d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jdk-11.0.18-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.18-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jdk-11.0.18-ea.1_macos-x64_bin.dmg", + "checksum": "287bca106eb319b012aea37603a346de858f4d43a2d44e0eb2faf73ffdcdd5bf" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.18-ea.1_macos-x64_bin.tar.gz", + "checksum": "d5623d69b85e8d5d25b0ebe15b5360334e6820edf4712abc6d93ee9db5cea874", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jdk-11.0.18-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.18-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jdk-11.0.18-ea.1_windows-x64_bin.msi", + "checksum": "8f7625f95eb722216ede7b99c0aea7e1f8c17abde2d82f03cca3b8564134786b" + }, + "zip": { + "name": "sapmachine-jdk-11.0.18-ea.1_windows-x64_bin.zip", + "checksum": "9e69f89973f2eebb3f50d06c00c49b4337293df8857030c39376a8051637d868", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jdk-11.0.18-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "e51407e679bc3750b80c02dc48f5bfd075c1cedb70f1f59f2885951ae2b2c824", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jre-11.0.18-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "4a5a2becde69c9dbf800043080fdd81b7991a06c32373e77ee7752ac3fe2af29", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jre-11.0.18-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.1_linux-x64_bin.tar.gz", + "checksum": "42839cbe1ae981683c86f3b79921ed4ff9a343fc62da90d64e6a93276e663ef8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jre-11.0.18-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jre-11.0.18-ea.1_macos-aarch64_bin.dmg", + "checksum": "19fd75d3b280e9dfd5aaa752b30661ea1e5cefd9e8d7e3ab5a57b12f383fca15" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "755eea8694416c0b3af574ec5c7c46a9865015f8e36498457d5b717200b6f830", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jre-11.0.18-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.18-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jre-11.0.18-ea.1_macos-x64_bin.dmg", + "checksum": "4d5196f69113afc18f51ecabf17a6762618d84d9cf222d218e6bbf240ae7a020" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.18-ea.1_macos-x64_bin.tar.gz", + "checksum": "3d749cd830973ae32f889382c1bf3aa3d01e3a02a6de1175579cdf6e3ba6520f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jre-11.0.18-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.18-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jre-11.0.18-ea.1_windows-x64_bin.msi", + "checksum": "acfd6856884a4b61010395ef4720bf3b7d55d14d785d079d4bf8d57af1f8f7e3" + }, + "zip": { + "name": "sapmachine-jre-11.0.18-ea.1_windows-x64_bin.zip", + "checksum": "8bc5dc9a2da2bf5918d566b813d53a51c6a6f7b619d8a952ed27765473fe892a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.18%2B1/sapmachine-jre-11.0.18-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.17": { + "sapmachine-11.0.17": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.17", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17_linux-aarch64_bin.tar.gz", + "checksum": "ffcf85a7ac51d30cb1a9c4067aff499db285873b110e7a5763e1009d8684d5ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jdk-11.0.17_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17_linux-ppc64le_bin.tar.gz", + "checksum": "adaa8d72354630f20b171d87a6c348480b612625348caaf2190f2a24943576c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jdk-11.0.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17_linux-x64_bin.tar.gz", + "checksum": "d0ffa1f08cd6edb5f1cf7302407dbd1dc81b015d3b4cba4636bacdd43ddb3e60", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jdk-11.0.17_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jdk-11.0.17_macos-aarch64_bin.dmg", + "checksum": "507689b2399ff4c9b60e38e4fcdcf723ee7cb1ffbe046cec5efeb25b9f079e4d" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17_macos-aarch64_bin.tar.gz", + "checksum": "3b77efd1a2df2517b98c260a31926700f73ae5336aa4db1aa7ffa3eb1724de8b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jdk-11.0.17_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jdk-11.0.17_macos-x64_bin.dmg", + "checksum": "e0dce6500b0b3d6bb45fea53b8386cd9a6a38725133f024856f81db6eeb74f9f" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17_macos-x64_bin.tar.gz", + "checksum": "f5a0a04f4fcc0044bdb8f8ba071e996e9686152e9c38ab645d741e2e2ea724ab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jdk-11.0.17_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jdk-11.0.17_windows-x64_bin.msi", + "checksum": "3fceee9b7f9a4ba73a846413f71a2b015f05dc0e5929d43f2e8c466c47e45032" + }, + "zip": { + "name": "sapmachine-jdk-11.0.17_windows-x64_bin.zip", + "checksum": "35ccd8bdbcfc58c1443bb277796b7ce32ccaddf5b0bfddec624b90c8fea7e4ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jdk-11.0.17_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17_linux-aarch64_bin.tar.gz", + "checksum": "36967a36d0a16341bbc7896620a867946cf1d7b64c42eed1622a2afc1054f0a5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jre-11.0.17_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17_linux-ppc64le_bin.tar.gz", + "checksum": "968738cd545658a78c11c621e05cb91d29b211b4789cff31af79849d781024cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jre-11.0.17_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17_linux-x64_bin.tar.gz", + "checksum": "d6e68ede2e4673dd5c154e1609696efdd69f2bc092ae3eb705eefbd63bfd00c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jre-11.0.17_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.17_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jre-11.0.17_macos-aarch64_bin.dmg", + "checksum": "f80657cbc9e4ce69f38d9464da95daf67828de9bf97c25ce5a6ff6c789d01f5e" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17_macos-aarch64_bin.tar.gz", + "checksum": "ffe2330cd959e24eae9437a93f6aaecb73b8bb4863f47027215db901047f49fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jre-11.0.17_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.17_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jre-11.0.17_macos-x64_bin.dmg", + "checksum": "f1e583e83ee0dae3a897a0db3d55b1e7f2ede842548e36f2d07c5eb13dbbf048" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17_macos-x64_bin.tar.gz", + "checksum": "d50c0c8183fca895e6a4d09ea13bb4a2fa741c77e6308f479a6ba7dc90541b79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jre-11.0.17_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.17_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jre-11.0.17_windows-x64_bin.msi", + "checksum": "fd1796497ed01dce1c0441b415a45327e772128dd8a1f7d7597e57203ed452f0" + }, + "zip": { + "name": "sapmachine-jre-11.0.17_windows-x64_bin.zip", + "checksum": "95cf03fb5552aa9b7b8558a3e19eed800c0af0914c5647067a5afe3ed17673b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jre-11.0.17_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.17+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.17%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "6e0a6dca9777342de75e9e742e47b4da6fba59197809e66bf0a0f6725efd0f74", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jdk-11.0.17-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "9b60d319d775a85053493cfdcc344d441263161640def25142ef97d1b0af02d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jdk-11.0.17-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.8_linux-x64_bin.tar.gz", + "checksum": "3ed6194e23fd0b7ab3952e7c5a8352b7388816adc965562d27a62429fb8f1157", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jdk-11.0.17-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jdk-11.0.17-ea.8_macos-aarch64_bin.dmg", + "checksum": "bfe724587c338ed5868aa783d218790e84d762966b741120d87497b5f3a83987" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "3b04fab0e517d273bb919c8cf022617d92ac704355d9eb3204107f6ed6a8946f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jdk-11.0.17-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jdk-11.0.17-ea.8_macos-x64_bin.dmg", + "checksum": "0855e9ad7142a4fe4a6a8a90f281b196f0fedc264b33e1ec66af1135aa298e87" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.8_macos-x64_bin.tar.gz", + "checksum": "9793acd9b92ed00a854554d0d5b2488b092e36d6701d30c7b8c87ccdade12d3b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jdk-11.0.17-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.17-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jdk-11.0.17-ea.8_windows-x64_bin.msi", + "checksum": "89dbaa9e6e8f3ffecaf4b34c1c97ef7008c1435f50ba5d6b0eda266b59446b80" + }, + "zip": { + "name": "sapmachine-jdk-11.0.17-ea.8_windows-x64_bin.zip", + "checksum": "6a2964b6ad6b024d36c4c9d8467c4bb858477b2a2b8e3ee2bcc2119a34d0acc1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jdk-11.0.17-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "ff60b8f5305b3df8a8b31c5d5f5da3b432fa46a3d6975bbfd4ba3081c445b03a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jre-11.0.17-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "5c9699ee72e99bfffa8492c93a1d41c733ced7aa7cafb6d0568d18823500e076", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jre-11.0.17-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.8_linux-x64_bin.tar.gz", + "checksum": "8d3c995f5678f9bf3908f436f24a3a41fec1e92babef6a54dffc6fb5ec9d2434", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jre-11.0.17-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jre-11.0.17-ea.8_macos-aarch64_bin.dmg", + "checksum": "f16513aff5265a140573f3f80107823af93ec8c717b6fd6287a66f87c2ae9c05" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "c1e2d452f5e8021dc97785d418bb115aa96f89c067c523c9c90ce395ed71468e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jre-11.0.17-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jre-11.0.17-ea.8_macos-x64_bin.dmg", + "checksum": "01f7cb7fbb20654a3b83c1a996cba08dad1584cdfb5b47f4aadc23e614b94e41" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.8_macos-x64_bin.tar.gz", + "checksum": "c90fadbe119faf68d11dc594774f00291c5bf17822499965ba91f017079d90c9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jre-11.0.17-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.17-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jre-11.0.17-ea.8_windows-x64_bin.msi", + "checksum": "64cedd7adf6561d083e1ff9186ca24f2be2de4877a6c71401fadd2a0c62b8a1d" + }, + "zip": { + "name": "sapmachine-jre-11.0.17-ea.8_windows-x64_bin.zip", + "checksum": "beb28da0b073f54719b58c8fe531c036e177c7e348c8870e6175735596c0cd11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B8/sapmachine-jre-11.0.17-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.17+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.17%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "35222dc825c2fab1499099a5b75e6f5dd7ea7f0f4e3b0c0faed862821d2b1d86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jdk-11.0.17-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "0e9b99b68a993502961d4e2273e5bfce1b37a8271fc17d119279d08ea19f1cb9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jdk-11.0.17-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.7_linux-x64_bin.tar.gz", + "checksum": "b65838f3c868052c54292705076234110aae169bcf284d9abf3e01b4d62591e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jdk-11.0.17-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jdk-11.0.17-ea.7_macos-aarch64_bin.dmg", + "checksum": "e78e89d4ec585e9b585fbe849265a07f03eaeac2474324f1055e8eb644ec3e16" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "3bbd0176ed5fdcbed1aaa78d351f558ce776125e93849a324ef46fa39b5b9f3e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jdk-11.0.17-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jdk-11.0.17-ea.7_macos-x64_bin.dmg", + "checksum": "b9b15f7ef7aa351ef507b1383772c47d4f68f121eb4e1c96a77e475cece63c4c" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.7_macos-x64_bin.tar.gz", + "checksum": "c4cafd06ec17eccc0ecff4b38b436e6e7a78811ca11a5a716d68903c3aac73da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jdk-11.0.17-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.17-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jdk-11.0.17-ea.7_windows-x64_bin.msi", + "checksum": "8b2c498b48c1f69a275a3c543f72eba14e36cbf3b7af7ec61b044abc39685b44" + }, + "zip": { + "name": "sapmachine-jdk-11.0.17-ea.7_windows-x64_bin.zip", + "checksum": "1f5fd439dffaa16348ed19ae5eb77c093c52e5021da954c3ae98d87b16afbcad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jdk-11.0.17-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "900bee38a78f21969082946a86cb2165fd7d2051c1bff59f00022aba07370fb6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jre-11.0.17-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "2d03f29b081562591ff09f4a57f7a6349f224e89482f3051931cf4b0e738bb6a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jre-11.0.17-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.7_linux-x64_bin.tar.gz", + "checksum": "e2652afeb96eaa9a28fbaf8f3248ddf835f4836502a132d19ef45493057d42f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jre-11.0.17-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jre-11.0.17-ea.7_macos-aarch64_bin.dmg", + "checksum": "8f1c756bf040cb1ca82ee557b536d7dfabbf2eb23ef0ff94c89ba93396edfdec" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "4f71100ef59af4e0c1eab1e6137f5b3894b80f34a5da110fd3a910c3cc896da3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jre-11.0.17-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jre-11.0.17-ea.7_macos-x64_bin.dmg", + "checksum": "38f7a8d3993f36f4cf0cabaff044bc4fac980768345d5626acc733c4af9e3931" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.7_macos-x64_bin.tar.gz", + "checksum": "74e1b0381ea3f1a8a69ee9aa9a66b5d76cc95187ba0fff3a2fed0a8dad035af2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jre-11.0.17-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.17-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jre-11.0.17-ea.7_windows-x64_bin.msi", + "checksum": "0ab11fa5429a99c199bfca46e268e01291163be6a1be171765176e860a50dcfe" + }, + "zip": { + "name": "sapmachine-jre-11.0.17-ea.7_windows-x64_bin.zip", + "checksum": "70fdf4516c7e7ee900f90f98053a52642ddc732da2a01ed1d2c95c43998f3621", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B7/sapmachine-jre-11.0.17-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.17+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.17%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "a7d833b5f7292f9868435d44275d3e4100d14ddd2640f02459aa5bc9c3409a13", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jdk-11.0.17-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "bcac5ede3d9caf6d1675d6969daa4a5bf199d1b9a1b98d8284c2534d22717966", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jdk-11.0.17-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.6_linux-x64_bin.tar.gz", + "checksum": "f41adcb0a3c78cb932d0daab3b452df2f47287848a3d920399eb35550fc0ed4f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jdk-11.0.17-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jdk-11.0.17-ea.6_macos-aarch64_bin.dmg", + "checksum": "8277036d4666e1b95cc2087667604f3a51a0907003d54e9c192ba1fb130b2346" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "9178b6107766bb794fd07a4724f34e0f0614ad0ddaceb326f024122790e2739f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jdk-11.0.17-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jdk-11.0.17-ea.6_macos-x64_bin.dmg", + "checksum": "1d3c8d137f76a86a5c06f2ad6b8a1442022e842f93d0447e078db652833862e7" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.6_macos-x64_bin.tar.gz", + "checksum": "4be3ab31ae3f1c00e6ffb65b18244f2ca0b7540dd0f5ba6f1271882a04bb949f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jdk-11.0.17-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.17-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jdk-11.0.17-ea.6_windows-x64_bin.msi", + "checksum": "695d82d024770cc9958de7bde0818ab1f9c1613b08b83aad955bf7dbba9b12f8" + }, + "zip": { + "name": "sapmachine-jdk-11.0.17-ea.6_windows-x64_bin.zip", + "checksum": "4f867d470670c36acfde24a38b983e0ae14e11512327e32f094875813178f408", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jdk-11.0.17-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "df1a2bfaf55cee559f20ca820e59e554996fc88a91610b83ed6503c8c9569bec", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jre-11.0.17-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "d3c620bbd3a834cb271c1c6398b0c88b5982b61e5666d8f6c0568a6d8c7897a5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jre-11.0.17-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.6_linux-x64_bin.tar.gz", + "checksum": "baa92d52599d31563d9c71febf4fc55f5d0fb87f27b44c03018a24b0d68393f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jre-11.0.17-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jre-11.0.17-ea.6_macos-aarch64_bin.dmg", + "checksum": "3d6affd736498a09601949adbcb9f4b8a69d75a2f3d83879606473d421acdc6c" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "b1c6284682564314e2aadf4da664752c5c2ebb8dc46f653314a33b8e762eb0d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jre-11.0.17-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jre-11.0.17-ea.6_macos-x64_bin.dmg", + "checksum": "17706a82a17da847fab4ad2a392c8898b50cf568ce798e8985006ec2e2261466" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.6_macos-x64_bin.tar.gz", + "checksum": "ec5669895db08b556060d4c9bcea8e01a19743336bebf3b35dbc4e38c045cd9a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jre-11.0.17-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.17-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jre-11.0.17-ea.6_windows-x64_bin.msi", + "checksum": "0e73efad5f6179784bbeed84105318b6e9085bfa94af5ddc93f57f08b358711b" + }, + "zip": { + "name": "sapmachine-jre-11.0.17-ea.6_windows-x64_bin.zip", + "checksum": "71d96541ba92433bae6e2b53e27e3095a99bd10935183ef75a16add24618bf09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B6/sapmachine-jre-11.0.17-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.17+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.17%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "9c1fdd66cc61c3057ad3f6219ac9995a74147ba90645e51f229be773c5b127bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jdk-11.0.17-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "3a22030da28213edd9b72903b0f72ade3494bbf00fd7cdb213a246a23b7e509e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jdk-11.0.17-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.5_linux-x64_bin.tar.gz", + "checksum": "5a1bd42db44c7d8a6204b8f7834b5d610d07758831216613a4945f4128ef3650", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jdk-11.0.17-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jdk-11.0.17-ea.5_macos-aarch64_bin.dmg", + "checksum": "de0361b36c3e3b723d11816845b1c0215c7cc2da93707d9f2d9b0dd016c7f29a" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "d14101342f7015c21e626c4033316c0d59cb58e012e3281ba6aad0fba9dfdc1a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jdk-11.0.17-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jdk-11.0.17-ea.5_macos-x64_bin.dmg", + "checksum": "0ae7d312705bb4af1d5587cab1d195cb2f5f6f916bc5d787a9fa71d91eba70ee" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.5_macos-x64_bin.tar.gz", + "checksum": "ccbdf3041c8f5e3f9db34b3ae9450cf5702130a034e4d2d5d8ed9ce707a97e01", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jdk-11.0.17-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.17-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jdk-11.0.17-ea.5_windows-x64_bin.msi", + "checksum": "df063f8d6c71bf3ca8f3eaba262fe80391cb5ab87594a3979f9399cb169a238f" + }, + "zip": { + "name": "sapmachine-jdk-11.0.17-ea.5_windows-x64_bin.zip", + "checksum": "5c9700284eee166802e6b836558c9a4c13d5e3899d62c4ec82174919cf93d955", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jdk-11.0.17-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "ba54bd8b464cf5f9281ff431e3e62e6897705f1a7fe3a33a922dbf13252e0c0a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jre-11.0.17-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "814080d4a8952a27a3a9ca136aeb492bbeaee83d25b2349179c39b054530d3f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jre-11.0.17-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.5_linux-x64_bin.tar.gz", + "checksum": "4f88c614cf92bd784234644fe8e5ba0d484e492d858f1f7587083649255c6412", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jre-11.0.17-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jre-11.0.17-ea.5_macos-aarch64_bin.dmg", + "checksum": "e9f1cf537c2f6c7ff6606261fa91d80a0f687dab5a94e4e58639d1c083e89bbc" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "5eba4bf926e944ef9c6ae0255da359f518adcad79b96062cc46e9a6a245cbc15", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jre-11.0.17-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jre-11.0.17-ea.5_macos-x64_bin.dmg", + "checksum": "bbdd33602aeb026f1812ba53f0d4f0ede47ceb18921e5729af4566e3f22bd290" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.5_macos-x64_bin.tar.gz", + "checksum": "df9a90f36793ad279cf02defdd3eb6b329f7328cfd20bd2152cd8842ba4f3e15", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jre-11.0.17-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.17-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jre-11.0.17-ea.5_windows-x64_bin.msi", + "checksum": "907b83a01a68c5e8d0b1b373f95e75de003f54be615eefd59688b5e0212c516a" + }, + "zip": { + "name": "sapmachine-jre-11.0.17-ea.5_windows-x64_bin.zip", + "checksum": "36f03ff905c2d11cd46b74d326ef64ec6838eb26942e16f73065e7237a36c4e7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B5/sapmachine-jre-11.0.17-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.17+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.17%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "72d45a22d877f74b0c80b5daf0a7437c74f0126a2f8b6617e239b7b516e8186b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jdk-11.0.17-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "db5d0c64fd724c8d9fea2af5af263ad04ed250f1611f25f5241c89286dbd1784", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jdk-11.0.17-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.4_linux-x64_bin.tar.gz", + "checksum": "af511288500352b468ad0dc81e985694cf8b7685222aa5dadf25ef780b5f9c27", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jdk-11.0.17-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jdk-11.0.17-ea.4_macos-aarch64_bin.dmg", + "checksum": "5875dd5e0930ad9b031642791aa424aca06a0cee7f85188717a3daf2f231430f" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "87f33776b5f98d24c795c459a17041f33521c36eb2eed25e5b18b329968b2a5f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jdk-11.0.17-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jdk-11.0.17-ea.4_macos-x64_bin.dmg", + "checksum": "8cbf967c5dd02dc0fb7a9a0d7a28842607637f65d1f870f6628b3c288e427897" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.4_macos-x64_bin.tar.gz", + "checksum": "d77e093986f11212f719e1c314ac61385ab56f77cc8464b434eca3392b0730c5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jdk-11.0.17-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.17-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jdk-11.0.17-ea.4_windows-x64_bin.msi", + "checksum": "7e155dfc11ca3b140398d9a90505b89fa744250502add8a951e07c3a82e29fb0" + }, + "zip": { + "name": "sapmachine-jdk-11.0.17-ea.4_windows-x64_bin.zip", + "checksum": "28a99d82cb391787a20fad70a0839490709b6c3957f366bf6bffe52ab2861aae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jdk-11.0.17-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "6ccf364837ae472e940edcd01d7c67a2ed0e989db8077f2a14513ba986a342b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jre-11.0.17-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "fd22adac2d4d4a7912811b28e32a95835962f465b0caf5e6ca77349ba5ce2597", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jre-11.0.17-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.4_linux-x64_bin.tar.gz", + "checksum": "7ddb5a201f00801ae739a75c6fc91c74e44bfbfc9640acdecd6220d09aed1c3a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jre-11.0.17-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jre-11.0.17-ea.4_macos-aarch64_bin.dmg", + "checksum": "3d585d1d8c1a0694b730e748465f95f321054ceca1b5efb69662e5daf49defdd" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "32e7c8d4dd9b6a18d7932e6a30358176004a8a144df30d8d16c05648fff8cad4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jre-11.0.17-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jre-11.0.17-ea.4_macos-x64_bin.dmg", + "checksum": "cd6923bc111261d0555d93efa02ade8887092b270b93b87ef59cc96d4b8b7c01" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.4_macos-x64_bin.tar.gz", + "checksum": "d2e5ae859a31a8a733dbd3a463e696e2df2c066e041dd1e187fd2b45c9bd088e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jre-11.0.17-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.17-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jre-11.0.17-ea.4_windows-x64_bin.msi", + "checksum": "3cb62518685c2a37c64380fbd655714547ceacd563398939345fb9771c1a63d7" + }, + "zip": { + "name": "sapmachine-jre-11.0.17-ea.4_windows-x64_bin.zip", + "checksum": "16822053df57b326060af60acefadfc42c6bfe82286b2b89c4c5b7fa46d426ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B4/sapmachine-jre-11.0.17-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.17+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.17%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "e558575e0d1b952f731f56cd861b6888e58c1d7e7a5c8ec1f26659ebb3857dc7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jdk-11.0.17-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "710e2dc2ba27b8bfe20d9b18096063c65c82ca31e0f8c09e61dc9ad13178d25e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jdk-11.0.17-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.3_linux-x64_bin.tar.gz", + "checksum": "67952b1d0310c96ac0780df07beaaa587540d2697eee67ada64fb5ca62c4e379", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jdk-11.0.17-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jdk-11.0.17-ea.3_macos-aarch64_bin.dmg", + "checksum": "85c0f8b756e6fd66b1c3a1356691d026d792f3e3d29b2721a70d3a30d6f18dd2" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "97b56d97bf87dfb9de72fb381d8c791ffd493cfaed21c08c4dee8103867b9278", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jdk-11.0.17-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jdk-11.0.17-ea.3_macos-x64_bin.dmg", + "checksum": "a7c2388207ffec4c26d6d414d9cdd8ce9751815498ef18c1b0077504047fca70" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.3_macos-x64_bin.tar.gz", + "checksum": "e1746a39d812c54a5525ad4f78ae2043dfb4f5bd870216b0c83eb448860bc467", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jdk-11.0.17-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.17-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jdk-11.0.17-ea.3_windows-x64_bin.msi", + "checksum": "cb1fb9e20e121fed2537a968b3a5bbb66ecd98fa08436a1f6298f2c91915e88c" + }, + "zip": { + "name": "sapmachine-jdk-11.0.17-ea.3_windows-x64_bin.zip", + "checksum": "cf7edb24aa253d647aa68101aca11fda92a69c187617e8022587bff63ea446a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jdk-11.0.17-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "fea624adbcc5819d491c063e72f0f688354c63c483f585ba072051484cfb2c43", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jre-11.0.17-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "3814d756690346f2cd47fe0893ca280916e9f17ca57eda855b643d51631df451", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jre-11.0.17-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.3_linux-x64_bin.tar.gz", + "checksum": "c4d82c848ee6e1bc23529e22592b3044a1e1288a8857f4fa35a633edc1e7f506", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jre-11.0.17-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.3_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jre-11.0.17-ea.3_macos-aarch64_bin.dmg", + "checksum": "c21e4c976f6f852a7665eac02938bbe19f116d6823766fc11d92afa8cbf7eeba" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.3_macos-aarch64_bin.tar.gz", + "checksum": "2aeedf102cb994627430e0fac61a44ddbd2f1502917d79ac855c4d3bea7b0151", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jre-11.0.17-ea.3_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jre-11.0.17-ea.3_macos-x64_bin.dmg", + "checksum": "21a16ca9e1d8945210d0dab00c331eb2c269ed9511315c59ea785bbb83d236ac" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.3_macos-x64_bin.tar.gz", + "checksum": "bb489043bb90d37b58c6cc5bdbf1404581ac7047b164218b806c1f32c3425893", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jre-11.0.17-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.17-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jre-11.0.17-ea.3_windows-x64_bin.msi", + "checksum": "67d18610db00668bb39e5c4bfeebe433a7b15c2fde7d985ae429f75cd1bfb2a1" + }, + "zip": { + "name": "sapmachine-jre-11.0.17-ea.3_windows-x64_bin.zip", + "checksum": "2739897e8ba183570abd2bc4fad4d0caff0e881a06948c5c4253b1a19ca04e30", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B3/sapmachine-jre-11.0.17-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.17+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.17%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "d6b83df61a5a9693e8a59541fb8d5cea01305323ca183c5d371a5a764e1460d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jdk-11.0.17-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "2d68c6a28f4dcc27fc1738b4c1f011f78814df95f0342a98f44e34719c3115a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jdk-11.0.17-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.2_linux-x64_bin.tar.gz", + "checksum": "4752a04cf1767094418fccbc71782dea0da52f65bca4c443ab9e03fb4233b4ee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jdk-11.0.17-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jdk-11.0.17-ea.2_macos-aarch64_bin.dmg", + "checksum": "22234df2ea7fbfd9e2c0430cd93e136f61db861b1b464edf0532129152707420" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "f2e9a68a61692208a2f6087e0b0aa1e8dc6125aed3087901216917eba4b78be1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jdk-11.0.17-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jdk-11.0.17-ea.2_macos-x64_bin.dmg", + "checksum": "97ca6e49cc8be6ed1c387564b2fd0eba9c4b70be398c3ef84def95844af80a3f" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.2_macos-x64_bin.tar.gz", + "checksum": "bb32009761e84f71a7f325cc3825243e14c6a54fb50823077d8524c4a90b2dbd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jdk-11.0.17-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.17-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jdk-11.0.17-ea.2_windows-x64_bin.msi", + "checksum": "be287068d4bcc4ac8558df801d6cda5d416247f2ad9619e2c1aefea6e66b6835" + }, + "zip": { + "name": "sapmachine-jdk-11.0.17-ea.2_windows-x64_bin.zip", + "checksum": "d34582e2b6bef069c2a24455400561902ec6d73d70ffaed6580b6c5cf29513b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jdk-11.0.17-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.2_linux-aarch64_bin.tar.gz", + "checksum": "6e9c43ef568c9643191eaad38a6beeb2ae3227afbdc5a5d05aebdc452ef80d95", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jre-11.0.17-ea.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "90638e273fd4e1cb74ca9c4a304736d7a641c94ea8b0f0d3f7edc721832af47b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jre-11.0.17-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.2_linux-x64_bin.tar.gz", + "checksum": "31e2705e4f03612c78ae4190cf222010db3aafb6fb1351eaf7ca0ace390c5a33", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jre-11.0.17-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.2_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jre-11.0.17-ea.2_macos-aarch64_bin.dmg", + "checksum": "7afe753a03215200e65019e632e89007db87c34fdfdb82bb47144b1a28dbb23c" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.2_macos-aarch64_bin.tar.gz", + "checksum": "60f9a15dda1ea14d81ea9dde584f4ad4cf684c920db022621d888d4eb46983e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jre-11.0.17-ea.2_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jre-11.0.17-ea.2_macos-x64_bin.dmg", + "checksum": "8b8fbbc0c1308cb910d6cb1a03137aab70bf4c2ee84f83641d54e5b7ffe053db" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.2_macos-x64_bin.tar.gz", + "checksum": "0067e9fcc4a1794253669b2ad32ca02f06150963c265a9fce781d05a9ed32daa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jre-11.0.17-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.17-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jre-11.0.17-ea.2_windows-x64_bin.msi", + "checksum": "cf46418b21bc7eebde32ec59ed56791ece76a0cf6ba08f211c6b01e755ef019b" + }, + "zip": { + "name": "sapmachine-jre-11.0.17-ea.2_windows-x64_bin.zip", + "checksum": "a34e2ec0318f209d6ac10948d1dd337e818ec808f788301e5426b62241d88a5c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B2/sapmachine-jre-11.0.17-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.17+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.17%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "88172d7bc572fa5f99a41cbde5ac23a34f6ac3f195a9c8bfb519cb34a0c7ac02", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jdk-11.0.17-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "81453f6872a6e40b85627282ca4b7a17211638c9a2d3e99bcb77283f56c0dd90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jdk-11.0.17-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.1_linux-x64_bin.tar.gz", + "checksum": "65f2c2120e3e6f534da234f86d6be859ba75f4c9bceb112fdf5f6fb5fa7d683f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jdk-11.0.17-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jdk-11.0.17-ea.1_macos-aarch64_bin.dmg", + "checksum": "74397c175a2276809f5675642644a3d48779ca1f481678e01cd394f396974b9d" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "99ebe1e78960b02a2d334661976ff27602badcff796f4f364a0bc4e5469a3eff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jdk-11.0.17-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.17-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jdk-11.0.17-ea.1_macos-x64_bin.dmg", + "checksum": "a029e0c78ebf81bf4005be5fc2c12181769a05e2dc9e65f116d8bf9988ccbd4a" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.17-ea.1_macos-x64_bin.tar.gz", + "checksum": "d624f1abe667afb644ed33b053275514dbb823f83e1dd9b4448685497ba1c47b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jdk-11.0.17-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.17-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jdk-11.0.17-ea.1_windows-x64_bin.msi", + "checksum": "e6e770e798d27e299541b1404ce03adcdf16ad6f57ed7d8223ca6ac53eddd959" + }, + "zip": { + "name": "sapmachine-jdk-11.0.17-ea.1_windows-x64_bin.zip", + "checksum": "27057b6170a39554217fcaee03fd8f2ddc91c26998b32d0ad7e8b6a364f23ab0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jdk-11.0.17-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "276694c5a538e620bc89fe099693188fc69b8fa1561cc557aeac49550796ed5c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jre-11.0.17-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "81d5ef9b19efcfba3d0f1c4d0c8439b659a7de112442c871a46afdc722cf628b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jre-11.0.17-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.1_linux-x64_bin.tar.gz", + "checksum": "6757b7c8d1d33b4ebe614ae68f6f587b92a022c6ee0db1d06b0bd933a517ef2d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jre-11.0.17-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jre-11.0.17-ea.1_macos-aarch64_bin.dmg", + "checksum": "b4aed5927688f78a2788951c176159b6fc3ecef310fa0488de3c7cbe2a0b8375" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "d6df66138e2dce6299346d962c08bacda57ea5da30429f789fcab2acfb17885d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jre-11.0.17-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.17-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jre-11.0.17-ea.1_macos-x64_bin.dmg", + "checksum": "a58528068676d51a987fdbf3b02dba83c0b0303529fcdc04276435943fe5258e" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.17-ea.1_macos-x64_bin.tar.gz", + "checksum": "e8a460bf2a934ed0bb30792091422901022ce4026c8ba1a24b319f37848188f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jre-11.0.17-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.17-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jre-11.0.17-ea.1_windows-x64_bin.msi", + "checksum": "55c86adda8b83e22f501cd5dde5207b822cdf483c09f7e3c0980312e155cd069" + }, + "zip": { + "name": "sapmachine-jre-11.0.17-ea.1_windows-x64_bin.zip", + "checksum": "8bc9b164917e3fe0b314f64f815ea7ac227d8e2e55ca962f4eeb267a7e354366", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17%2B1/sapmachine-jre-11.0.17-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.16.1": { + "sapmachine-11.0.16.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.16.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16.1_linux-aarch64_bin.tar.gz", + "checksum": "18042a496d3b83b12cad094e59318badfd6b99dbedd13f8cae1e9e09670c123d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jdk-11.0.16.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16.1_linux-ppc64le_bin.tar.gz", + "checksum": "b1c53539d1198f2eb2eda041a17f65115f460dcb2c800e5ce748e3a4dee8d16c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jdk-11.0.16.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16.1_linux-x64_bin.tar.gz", + "checksum": "e95b0b309bba41b04077ade8cde773e0e9152ea3800f01256abef5707258019f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jdk-11.0.16.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jdk-11.0.16.1_macos-aarch64_bin.dmg", + "checksum": "0503a8f13a7b31dc1070cf2ab4bb660d9476c740051e6609f5871f8fa28c822e" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16.1_macos-aarch64_bin.tar.gz", + "checksum": "e3d8d11afd3766c300b02f5c4b4158041807ef2b6dba63d3de7320f9ce5a4826", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jdk-11.0.16.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jdk-11.0.16.1_macos-x64_bin.dmg", + "checksum": "d23ec9f13f323b0510387fcad9916eeccca394889eb2e648669668bd0663a68b" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16.1_macos-x64_bin.tar.gz", + "checksum": "1d6d0b4f8f8fd32b559102ab4fe7e571ed3eee3848877d055ce4d475448ad9a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jdk-11.0.16.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.16.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jdk-11.0.16.1_windows-x64_bin.msi", + "checksum": "22c9c8da169f6ba121e2f641a4409e1cf5a32f081dd13487b75952f8d4cd5df1" + }, + "zip": { + "name": "sapmachine-jdk-11.0.16.1_windows-x64_bin.zip", + "checksum": "4bfe4a93ff9cb9a2a7d62e315383d31f2c948fa014eb41e7059b7bf00606ccd5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jdk-11.0.16.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16.1_linux-aarch64_bin.tar.gz", + "checksum": "47cec4ff377ca5555b1257e6e7b7e12af6739f82d01401d78aea336849c95039", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jre-11.0.16.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16.1_linux-ppc64le_bin.tar.gz", + "checksum": "64c2df713ee83e16e303cfdb25fa81be0547947a743817892f3bda67302d3f93", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jre-11.0.16.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16.1_linux-x64_bin.tar.gz", + "checksum": "8932cb8e8b1f5f1b0225a0cc55b1ee965c56da94b275952b6699df3a6a7f798a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jre-11.0.16.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.16.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jre-11.0.16.1_macos-aarch64_bin.dmg", + "checksum": "9475702c5a20542cc4d3c995b8babbeb5e3361610a811a2db57de998ce2b5ba8" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16.1_macos-aarch64_bin.tar.gz", + "checksum": "d3009b9efabb83024349c1952f174611c5723d864cb378919f9b48c3881978dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jre-11.0.16.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.16.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jre-11.0.16.1_macos-x64_bin.dmg", + "checksum": "b642e501051f70e373a85e0c6486980662510ee7ef75e646e9bf7b50a0e84d71" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16.1_macos-x64_bin.tar.gz", + "checksum": "59abc6357ae241afb478014d2c3da206ad8a5babbb1d13b2f623672d1cbf8fd9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jre-11.0.16.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.16.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jre-11.0.16.1_windows-x64_bin.msi", + "checksum": "4817a3848a2b8d4d84c555700b337189d8bc8506b2ef97d84d0daedea803254e" + }, + "zip": { + "name": "sapmachine-jre-11.0.16.1_windows-x64_bin.zip", + "checksum": "fff9bf49d33a42c76cdbde394b6e227e45f667244ae15f7d71caba8b30bdf133", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1/sapmachine-jre-11.0.16.1_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.16.1+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.16.1%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16.1-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "c8f4c664b2811a0b6ac69f68aaf66a258ed7f8e1d9c2e77bbe1426255149860a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jdk-11.0.16.1-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "baecd91ed408a707c63be0d17af226f12604aac74cec47744417834f32d02ba5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jdk-11.0.16.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "3675f6d26c0f322fe749fc32086ded933d034e02d48cde8dad62878b0b71f848", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jdk-11.0.16.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16.1-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jdk-11.0.16.1-ea.1_macos-aarch64_bin.dmg", + "checksum": "6530ed43e4f64bc2c954b1d7355fdea5c5e9642a38592de75403aaeca93f9079" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16.1-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "aa9fce0cb5da00c9b06d354d2904fb8ded42ea60fc3d01f7dcad505e13d12293", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jdk-11.0.16.1-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16.1-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jdk-11.0.16.1-ea.1_macos-x64_bin.dmg", + "checksum": "5ed6f71d26bfa0fab22631c2f72cedd786e2fdcc5ece47c0386a8456e8c2c0d9" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16.1-ea.1_macos-x64_bin.tar.gz", + "checksum": "115d866974c23f930bc48ce223a3def7a82c45a6786bbb18baad1c9140985fda", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jdk-11.0.16.1-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.16.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jdk-11.0.16.1-ea.1_windows-x64_bin.msi", + "checksum": "82ea687fa2fc4473a17ce749be11038b15b2e1b3c1a0d153f38304575a5f92ac" + }, + "zip": { + "name": "sapmachine-jdk-11.0.16.1-ea.1_windows-x64_bin.zip", + "checksum": "14268a8997a74eee4dc70bd88b1a78cedd6cd4e9f7fef29909ca450b52f78acf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jdk-11.0.16.1-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16.1-ea.1_linux-aarch64_bin.tar.gz", + "checksum": "5f8e249e850f9cc66a99cdf8d3b0fdc60f0f2adf44752ecad2ccc075c34a1f83", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jre-11.0.16.1-ea.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "8a68ffdbd2edef4c9c97809270fa9eff6c2465ef24ed711caa588ac7b252638f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jre-11.0.16.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "db4f4ae3d88b9706b661aaacb1a50207849f4352f2d3577b53f963e8f4d1c95a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jre-11.0.16.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.16.1-ea.1_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jre-11.0.16.1-ea.1_macos-aarch64_bin.dmg", + "checksum": "c416c5adfb697748fe409e0b7faaed03494ab8e4238e471081b42c9960c56126" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16.1-ea.1_macos-aarch64_bin.tar.gz", + "checksum": "c88a0c11545c0f523b6a25febe12f083bd26932d57e6980b48ff3081c37bd4ab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jre-11.0.16.1-ea.1_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.16.1-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jre-11.0.16.1-ea.1_macos-x64_bin.dmg", + "checksum": "763c6423f1b5787c75193167654bbf01e8598d0665937fe1c5b353aab8f0248a" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16.1-ea.1_macos-x64_bin.tar.gz", + "checksum": "aac8338770e89cd4f596b4260dc6bad7210f43494c39911160312d3e9f926286", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jre-11.0.16.1-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.16.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jre-11.0.16.1-ea.1_windows-x64_bin.msi", + "checksum": "d644783235fd08aae395c41df925a00d08e392e772652d507b68e7f5d237b0bc" + }, + "zip": { + "name": "sapmachine-jre-11.0.16.1-ea.1_windows-x64_bin.zip", + "checksum": "ccf5255c72633b983fecf86ee4c49bc84502736f6473351f530b76f9990df027", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16.1%2B1/sapmachine-jre-11.0.16.1-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.16": { + "sapmachine-11.0.16": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.16", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16_linux-aarch64_bin.tar.gz", + "checksum": "75b018adbb1604cf394b3a7775661eb443e95ab1c641a2fec8add80609691c7a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jdk-11.0.16_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16_linux-ppc64le_bin.tar.gz", + "checksum": "5cf48915406141d161c2ddd05949946d4741b4c54adf73c43cbdadcc69542427", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jdk-11.0.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16_linux-x64_bin.tar.gz", + "checksum": "52dc3d35e683135bef651345c619ba42902b39897a655e9d1f3b2eb9385364cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jdk-11.0.16_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jdk-11.0.16_macos-aarch64_bin.dmg", + "checksum": "121ea9d9ed03aa1457db61e5ee5bd9cc011bca61f726bd96449188ae4c41892c" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16_macos-aarch64_bin.tar.gz", + "checksum": "828d2906526b560cdea086deac7025cadc0cefef80e06d3f65d9688c04efb160", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jdk-11.0.16_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jdk-11.0.16_macos-x64_bin.dmg", + "checksum": "1204b77c9f61da2597fd7a24bd5906a135b6308ed6809d9e077be544aa099a72" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16_macos-x64_bin.tar.gz", + "checksum": "183837bb7407fc0dca48cdfbe6af08b8ed85d1805fa223b05b8e61e2597d2652", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jdk-11.0.16_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jdk-11.0.16_windows-x64_bin.msi", + "checksum": "b40c3f92bccc2ce2789869bc78cc198cae4e6fe80d956cacadd1b91a3eb79c61" + }, + "zip": { + "name": "sapmachine-jdk-11.0.16_windows-x64_bin.zip", + "checksum": "931ffd1235bb5788d430754b1ea94b7bfd7ec6f3de5bf5a4b60849f4bebb74ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jdk-11.0.16_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16_linux-aarch64_bin.tar.gz", + "checksum": "9bfad83f44fe7c55bf40f1175d1182e31610b98537b4fba18e0e9462dbcf2031", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jre-11.0.16_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16_linux-ppc64le_bin.tar.gz", + "checksum": "a25da217d83707e8e25d6b1f695ef062a6f4d0a1226f9003766daa8610b73020", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jre-11.0.16_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16_linux-x64_bin.tar.gz", + "checksum": "efa79271a061c9ef0f068f9cd149d88e5e0f4d6e174db6d46cab16c148162540", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jre-11.0.16_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.16_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jre-11.0.16_macos-aarch64_bin.dmg", + "checksum": "0b2836dae5daece547b6f4a1798adf97ea34494ba6aef1b8824aca4c9320dc8e" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16_macos-aarch64_bin.tar.gz", + "checksum": "514303a3b389a4bb13a7a2bdfc51eb78627ea1b0fce37be576548e96ffd7cf25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jre-11.0.16_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.16_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jre-11.0.16_macos-x64_bin.dmg", + "checksum": "e89ef90de0e0d87e241c1f9db338990cc2074cdc391cbfb14b69cb5f7e5dbe0e" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16_macos-x64_bin.tar.gz", + "checksum": "da1c62c38602e9d84e69b655e9d66e5fe33eddcede8ede377cdc350063a936e6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jre-11.0.16_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.16_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jre-11.0.16_windows-x64_bin.msi", + "checksum": "fbefc6d24f70ac60db6dd6cdd6bcc1ec90fd4d4855bdc62bf06cfc1e8a003659" + }, + "zip": { + "name": "sapmachine-jre-11.0.16_windows-x64_bin.zip", + "checksum": "9699ba16887c1d715be2d75af215113d8ec7c3ac753c39e5c8dc2628d0c1aa39", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16/sapmachine-jre-11.0.16_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.16+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.16%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "6a255ab9a60ee0d7fe07d978cd18c915734cda530eed74ea897b2c457790750a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jdk-11.0.16-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "3ed53c403ffabb425a7cbca58f35dd2ee02e2a847c7787d12bd2be6fe6d229c5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jdk-11.0.16-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.8_linux-x64_bin.tar.gz", + "checksum": "3d94ca284ef02045f6ca4ff841cda691912d3e133554a27cb01a6f4793d4a185", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jdk-11.0.16-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jdk-11.0.16-ea.8_macos-aarch64_bin.dmg", + "checksum": "2876d47941bab33fe3fb49335f4f91735405cf0b93a178ef651391d562b581ea" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "862f539e5448121b7591cc0d5efad6888e1b0c7b6ba3ed79552e2e748119187a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jdk-11.0.16-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jdk-11.0.16-ea.8_macos-x64_bin.dmg", + "checksum": "d5df442059320d012bcc5d4339b2a3ada987890c01086fbb2f2224fd44917408" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.8_macos-x64_bin.tar.gz", + "checksum": "39be52d82f9a0f875b1f4ae53f8dc6361e72ab4255fec72a0be60fd5595d34c1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jdk-11.0.16-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.16-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jdk-11.0.16-ea.8_windows-x64_bin.msi", + "checksum": "146689c0c9187dd2875ce997138c538188dd97dac0cfd3b633e0a0182397d810" + }, + "zip": { + "name": "sapmachine-jdk-11.0.16-ea.8_windows-x64_bin.zip", + "checksum": "8f09c48b6e53afeec6202a5053533b3025fe04b959305a3982cc5eee726a72d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jdk-11.0.16-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.8_linux-aarch64_bin.tar.gz", + "checksum": "a13af2fb32e4adb4dc6ab1b2f04ebd44b5315e587c5e708a34c89462491172f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jre-11.0.16-ea.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "17aba757b1dc656d17f22f6def96c7a730ba47c434f803403b444a2224af633f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jre-11.0.16-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.8_linux-x64_bin.tar.gz", + "checksum": "06e9a263ba523956ad5a2a9fe7682f382684ccbfe43debe1b18ee5d84928e2d0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jre-11.0.16-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.16-ea.8_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jre-11.0.16-ea.8_macos-aarch64_bin.dmg", + "checksum": "96692eead4db0f4d8c594738f496160d62b4fe8bab1fc529b81fe45e0973a2df" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.8_macos-aarch64_bin.tar.gz", + "checksum": "d6bd1d96b76e866aa08d0b594b023951f34572a855ee0b2ffbbb23c30eab4a84", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jre-11.0.16-ea.8_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.16-ea.8_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jre-11.0.16-ea.8_macos-x64_bin.dmg", + "checksum": "0b96906051e50612e4095b45baf2cce34ad0501563b8e64d611dd2a77a27968c" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.8_macos-x64_bin.tar.gz", + "checksum": "fdb709adf60bf9694614525c01cc21128a663ca44a5e0b97490b185a1bb0b0a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jre-11.0.16-ea.8_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.16-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jre-11.0.16-ea.8_windows-x64_bin.msi", + "checksum": "21e2a9fd425aa361906132aa755878b6292fda9d267dd2c249be594374c2230b" + }, + "zip": { + "name": "sapmachine-jre-11.0.16-ea.8_windows-x64_bin.zip", + "checksum": "6f5f589c450e8990fded148a060fbebcd53309f44d312513f3e72de930a7b449", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B8/sapmachine-jre-11.0.16-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.16+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.16%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "61158d191de694744e0daf13b501db33c64c6532367c093340fb1908a5b8820f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jdk-11.0.16-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "65ea6bfb1284cb1b997c354d2a0765c31ed1414b8cbed838cb86a075e870d470", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jdk-11.0.16-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.7_linux-x64_bin.tar.gz", + "checksum": "44014a1620476cee04c37973d3dd4138f755972c13721dd1e5a6880daabff8ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jdk-11.0.16-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jdk-11.0.16-ea.7_macos-aarch64_bin.dmg", + "checksum": "446ea4de53edbc82826bac9da8fe7e678fb9200e9f06756f43596613876d857f" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "7a08877014f26e478984a1e8ee537bf35769a77f6fe414cebc4e41aa273e5ba1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jdk-11.0.16-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jdk-11.0.16-ea.7_macos-x64_bin.dmg", + "checksum": "f0ce67985cc5d59a1625fce7ca6e03542bf472652de611776c445002cbdaaa2b" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.7_macos-x64_bin.tar.gz", + "checksum": "36b5698ce2d7fd98b1f1108bd08b5fbd627042329a17d9fb11fd097d29cc32e5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jdk-11.0.16-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.16-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jdk-11.0.16-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.16-ea.7_windows-x64_bin.zip", + "checksum": "b5ef4233bd59183f39ce6c024858d531720a2f6f4ccbf057c73fdcf98f984d8b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jdk-11.0.16-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.7_linux-aarch64_bin.tar.gz", + "checksum": "59fa95b96bdf1e34e30883bc9a6d6f9ac25a98375338b91c20d46e0dc64552d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jre-11.0.16-ea.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "d6967637a594d68ecd2a7443315d4be68c653da770a9a1db5960e69171579f92", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jre-11.0.16-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.7_linux-x64_bin.tar.gz", + "checksum": "69fd2ae1f60593f98af4535b0b9241b921493599e08f0a540d87970f49e794e5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jre-11.0.16-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.16-ea.7_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jre-11.0.16-ea.7_macos-aarch64_bin.dmg", + "checksum": "a1eb8966d2a9756f0869debfcca52d0623fb0eb579e7429b54cca9414a8de434" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.7_macos-aarch64_bin.tar.gz", + "checksum": "097d1513051ba02b06e2c1644adc87a8813d5ea19b5611104a16fd2e959bfa1c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jre-11.0.16-ea.7_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.16-ea.7_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jre-11.0.16-ea.7_macos-x64_bin.dmg", + "checksum": "9cbbdc2c9fa0572ec4f1dfe91f73d7357200fbaeac3843b25f225d1c47edcabb" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.7_macos-x64_bin.tar.gz", + "checksum": "bf515e431d8a7707c3325a2dc2ca481037fb2a09f40500b4dadb2b81b6472433", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jre-11.0.16-ea.7_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.16-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jre-11.0.16-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.16-ea.7_windows-x64_bin.zip", + "checksum": "c3a58caa86be262d1c153a853d1009c86e92438b57e772902e72d8c23f95c1fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B7/sapmachine-jre-11.0.16-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.16+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.16%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "ee258c4a9a97103d83ce76cb9b9e5e24467d0c9d1d2c5848d7dd117ec6bdafd1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jdk-11.0.16-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "52b7969aad646779f9ff8764a047f61cb552b44afebf0b9f1a545301c36224ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jdk-11.0.16-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.6_linux-x64_bin.tar.gz", + "checksum": "9818a797f779f86a82ebefeaa1f975524d4a050a48ba70cbb0526ca9b799cc56", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jdk-11.0.16-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jdk-11.0.16-ea.6_macos-aarch64_bin.dmg", + "checksum": "4289dfff5a1c934393ea301089817898f7ac989b10bbb01863f23f5b68325be8" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "71c5f824bb58015ab5b8346b4efff1a03e48b9a299523ac91d993bf356ffd7b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jdk-11.0.16-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jdk-11.0.16-ea.6_macos-x64_bin.dmg", + "checksum": "5dfc5ca40137b0118aacab050718d148cf02229dad1ae67eda6f3199e5adf089" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.6_macos-x64_bin.tar.gz", + "checksum": "5091a86247466bacc0a55d2f978aeecd5d34c63156bef052464320f20832ce55", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jdk-11.0.16-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.16-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jdk-11.0.16-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.16-ea.6_windows-x64_bin.zip", + "checksum": "1d0843dfc5ea2609043521c68c628eaad475bcc54c37420b9395467fd4d52f64", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jdk-11.0.16-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.6_linux-aarch64_bin.tar.gz", + "checksum": "f02d589603b6067ba5409398e8fc777054f0c6d025ccbd9712c3f7a2b892cab7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jre-11.0.16-ea.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "e525aded7d49384c77de1f7efd9f7c503d39589b3155ec20aa1d404e2c0464db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jre-11.0.16-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.6_linux-x64_bin.tar.gz", + "checksum": "3d25877516cc1b228c26c89bcb1ebe7b452ea889b68195eea86fe89404816c27", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jre-11.0.16-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.16-ea.6_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jre-11.0.16-ea.6_macos-aarch64_bin.dmg", + "checksum": "504c99d3c9d67999bfe9621e33715557bf867a69166265d3c82a8863ecbccafc" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.6_macos-aarch64_bin.tar.gz", + "checksum": "bc3ce6f1d327c3042c00bffbee620a54c2ff893ef6428e83c596a0aad0c2231b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jre-11.0.16-ea.6_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.16-ea.6_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jre-11.0.16-ea.6_macos-x64_bin.dmg", + "checksum": "47ab17cd5afe1176903a19909200f0ae0db37c793ff338c92c27077a10e49026" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.6_macos-x64_bin.tar.gz", + "checksum": "b7277301090a40939cb9014c69d4149b3bcb176918de623c1c377b0710461cb6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jre-11.0.16-ea.6_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.16-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jre-11.0.16-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.16-ea.6_windows-x64_bin.zip", + "checksum": "03b1a83a9e4769a7f2d5003420887d48e4f66673f789eb9bb85398288cc28938", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B6/sapmachine-jre-11.0.16-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.16+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.16%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "03c486d7a88dcbe4eb41fc83b4269ae436b8f5a038329ac1580ecdb8f21d18cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jdk-11.0.16-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "eca9de00f3cd4b56f7b23112b37830433ee8dad10675621a1c1c05a3ec5e32d8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jdk-11.0.16-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.5_linux-x64_bin.tar.gz", + "checksum": "e03eeb195be65febde2adc4124b6085b918ff3328b9a079b8dbade5e1424fddd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jdk-11.0.16-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jdk-11.0.16-ea.5_macos-aarch64_bin.dmg", + "checksum": "f6f980e32096ef6a1d498b35b3bb88ae76404687eb0c154f2b8e2c195afb3781" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "e5337dc46b3d902b012dac2f086900a22e3e695a88075ee437e3305e06a37b04", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jdk-11.0.16-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jdk-11.0.16-ea.5_macos-x64_bin.dmg", + "checksum": "39b432513f958031d4cecb42cdc241477387ccaaee551e88f1fb05ae8b63e223" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.5_macos-x64_bin.tar.gz", + "checksum": "118a2bb216ec74d05076eb8ddcab4019f4fefa32f59ad82f7cd65361fa69699a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jdk-11.0.16-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.16-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jdk-11.0.16-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.16-ea.5_windows-x64_bin.zip", + "checksum": "3cd842b35879df191143f63e42217784b7e3fa4e41645b17d00721e0d8d9643e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jdk-11.0.16-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.5_linux-aarch64_bin.tar.gz", + "checksum": "58d2d36cf3dbb186104def7a595562f880d75868f3325ff2cbd6f83a25cdfac3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jre-11.0.16-ea.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "6e16f58ea6a4ed8f41ce30336464f38f182af2ec6716c9595a338ecdb0615d03", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jre-11.0.16-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.5_linux-x64_bin.tar.gz", + "checksum": "7396b8003344a5a4a8a309da4d4349b605c2fca95983c477a5e3bc0bc62c5a7b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jre-11.0.16-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.16-ea.5_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jre-11.0.16-ea.5_macos-aarch64_bin.dmg", + "checksum": "481067ea9482aeabd6d0ae3fb37b971a92a7f8327be2f74e815b28ed26a74c80" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.5_macos-aarch64_bin.tar.gz", + "checksum": "e3e3024b8066151307903050b6a9ca204d6b8e06cf9e1bc00e8b21fdede2944f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jre-11.0.16-ea.5_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.16-ea.5_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jre-11.0.16-ea.5_macos-x64_bin.dmg", + "checksum": "6cf14de00314f98d959997fe88f0bc5af9f5849b877b60d2dc1c117b1c9c25e8" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.5_macos-x64_bin.tar.gz", + "checksum": "f3b5cb3141502a1dee92d165365d0d0cda4328d1e92900488c9d05b9c3f9049f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jre-11.0.16-ea.5_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.16-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jre-11.0.16-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.16-ea.5_windows-x64_bin.zip", + "checksum": "c33c1fd627c39837eb958f8a0a4128f64eb902079d8a59d0c3c3ddb6c4590065", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B5/sapmachine-jre-11.0.16-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.16+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.16%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "b4bc2fca1ce3b3079710aa1312a875ccad653e1406e8c579b743aff731dab5fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jdk-11.0.16-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "24bcd80cfe6535f55506deb96d1e892b9f951e6c5efcebef5bd69a600ac59156", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jdk-11.0.16-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.4_linux-x64_bin.tar.gz", + "checksum": "1a331ede05459581b0c1518b19e2239e61c65beab4e8c51ba6319bf5a0f6dfab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jdk-11.0.16-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jdk-11.0.16-ea.4_macos-aarch64_bin.dmg", + "checksum": "624f5ebefbb471aef395eeaf7ead75cc17f9a8859c9666d5e83aa7a83af7449c" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "16e626f01eb1629e99a16e09f9f63b74c70101b486b64325abe555ff8af0d668", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jdk-11.0.16-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jdk-11.0.16-ea.4_macos-x64_bin.dmg", + "checksum": "c6354897bde429172a60e2e5455baef4804ce92fd37a1a791ced9dba5d06b8d1" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.4_macos-x64_bin.tar.gz", + "checksum": "2eafccbdd7851b0737cd8d714458b82ff85014d0b07433d73b3934086534b0de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jdk-11.0.16-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.16-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jdk-11.0.16-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.16-ea.4_windows-x64_bin.zip", + "checksum": "042cc8e12447e54b1ccb17add502756a8bb525896dfcf3d0cc359a2709e6fcce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jdk-11.0.16-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.4_linux-aarch64_bin.tar.gz", + "checksum": "3c82e3fae5e8a0eb425f6cc20d92b41930bb448ffd2009a299a06535c5c96419", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jre-11.0.16-ea.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "363c5758ef3738f7937eaa8eaf52fa39700fca51d9bf20d463518442eeba52af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jre-11.0.16-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.4_linux-x64_bin.tar.gz", + "checksum": "1d4ea97ce83d3e0915c34190c322524d2422fc8b35b3966c328f08e8ed0f687d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jre-11.0.16-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-aarch64": { + "dmg": { + "name": "sapmachine-jre-11.0.16-ea.4_macos-aarch64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jre-11.0.16-ea.4_macos-aarch64_bin.dmg", + "checksum": "77d1ff6102fd280a581da23e0b3a1fc09db32aafcfb870e6127760e8e6ce659b" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.4_macos-aarch64_bin.tar.gz", + "checksum": "15665727b7e40ec649c8a6166cb52335706f1afddb766656fde2b0e5545e5602", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jre-11.0.16-ea.4_macos-aarch64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.16-ea.4_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jre-11.0.16-ea.4_macos-x64_bin.dmg", + "checksum": "378e2309f70be6bb308f50f5d7657629930ab1689357d2cb9efb5cde15508cde" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.4_macos-x64_bin.tar.gz", + "checksum": "137323c141116475891aa8eaee214833f4588083559c32d12609d0de9278b7d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jre-11.0.16-ea.4_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.16-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jre-11.0.16-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.16-ea.4_windows-x64_bin.zip", + "checksum": "21efa22a7f107884b7eb8dcd4dd7192c7b433264cb0124c7afa76112214aecc9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B4/sapmachine-jre-11.0.16-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.16+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.16%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "0fa79e8244331646b7e6ba0ca6515e90c1ead9c3775fabad287b9b2917da6ebb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B3/sapmachine-jdk-11.0.16-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "a36b761557b22fa3670e6ec12fa39422d8859038bad9d21afdd1f093bb564bef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B3/sapmachine-jdk-11.0.16-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.3_linux-x64_bin.tar.gz", + "checksum": "8dc35a424651f205ad1a8844d063d36891e6532ee9bafc6c4b43791fa088d59d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B3/sapmachine-jdk-11.0.16-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B3/sapmachine-jdk-11.0.16-ea.3_macos-x64_bin.dmg", + "checksum": "2953870fa59a16ccb665154c52c4abf7274c09db37935371ed0de12ce5dc1273" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.3_macos-x64_bin.tar.gz", + "checksum": "0ac62fd39c7aaf22847a12972d92b9a8b5499bc655eccdebb2bf85d0cbb7e423", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B3/sapmachine-jdk-11.0.16-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.16-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B3/sapmachine-jdk-11.0.16-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.16-ea.3_windows-x64_bin.zip", + "checksum": "5b14a4dc22ea2beb0006a6cea24544db0f8a79a03934e205091c431a162f700a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B3/sapmachine-jdk-11.0.16-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.3_linux-aarch64_bin.tar.gz", + "checksum": "8d24f603f3bd769b2c2e7ec96c33d7e1edd7eb41994fc91e0e39fc9afcd970ff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B3/sapmachine-jre-11.0.16-ea.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "e138508b91201b0ea502b1c6dd59bcafb2c95d4df58d7ce2feac453e8fd7b7a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B3/sapmachine-jre-11.0.16-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.3_linux-x64_bin.tar.gz", + "checksum": "d6f8f9d2c48fb7da130d7ce39ae0f1979eb5b0ff905b5b4440840a114530aeaf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B3/sapmachine-jre-11.0.16-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.16-ea.3_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B3/sapmachine-jre-11.0.16-ea.3_macos-x64_bin.dmg", + "checksum": "690ec8615f04b080d815bf2b8c88da48ce3b454f69e0dd411f96149d0a8e46f4" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.3_macos-x64_bin.tar.gz", + "checksum": "d503a2ef67ded81ccb74c6ba34c0c58dbc3dc662407f5eb4b4d836b3b4c0131b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B3/sapmachine-jre-11.0.16-ea.3_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.16-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B3/sapmachine-jre-11.0.16-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.16-ea.3_windows-x64_bin.zip", + "checksum": "8a06b0778aa6495ea3b6c5353bd05bf0d92ee956569878ef57368e5fd1931daf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B3/sapmachine-jre-11.0.16-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.16+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.16%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "683a7ae536c07c1f85c6789262ca64306966cb2f8e3ff279f1a40218118a7e41", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B2/sapmachine-jdk-11.0.16-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "34ae7baddcc73e8dbac9ca4eb947b30fe336ff37b1b2016ae04977f00a0d6836", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B2/sapmachine-jdk-11.0.16-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.2_linux-x64_bin.tar.gz", + "checksum": "857d1d1cb2c969959ef79f5ed3fad8e8fcd642c1a8e780ccf333663af1d0e460", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B2/sapmachine-jdk-11.0.16-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B2/sapmachine-jdk-11.0.16-ea.2_macos-x64_bin.dmg", + "checksum": "3276009b1f207eade186a95069914a02d08301ed667fb12f929d88420b1b9a4f" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.2_macos-x64_bin.tar.gz", + "checksum": "9e2a77fca103832bc0ff200164eb9e24a03358aa76b6f1d3ac9c9cadef4e4732", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B2/sapmachine-jdk-11.0.16-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.16-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B2/sapmachine-jdk-11.0.16-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.16-ea.2_windows-x64_bin.zip", + "checksum": "9b256db53e3105181a9b25534a1ddc8f6580e78c01624a80f153e243a1a08822", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B2/sapmachine-jdk-11.0.16-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "a2163e8124b2282e1ce34541c39d851ac934c5ec6c5983eefd644c0666af64c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B2/sapmachine-jre-11.0.16-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "e1b8b05250748f7cfbe6b98ee09e2f572a511a2321404a2e2d285776256f2540", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B2/sapmachine-jre-11.0.16-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.2_linux-x64_bin.tar.gz", + "checksum": "99e04da421186e5d72ee92365591b580212ac0a98f112f583ab81938b8dd99ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B2/sapmachine-jre-11.0.16-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.16-ea.2_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B2/sapmachine-jre-11.0.16-ea.2_macos-x64_bin.dmg", + "checksum": "96ede7e63fc394fd0afef629d565ec40624aeb83b8950af2ac9c2146e09baa28" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.2_macos-x64_bin.tar.gz", + "checksum": "8c6496d1a91fe9b72e6c724677814449a8e3141a2724ddf81c39536076ab204e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B2/sapmachine-jre-11.0.16-ea.2_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.16-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B2/sapmachine-jre-11.0.16-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.16-ea.2_windows-x64_bin.zip", + "checksum": "d0b6605944c1711c92983b53afcfb068d2b9769baf0912c59fd477cf612e1d8a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B2/sapmachine-jre-11.0.16-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.16+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.16%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "d077bcedb00c2fb1d4374c9f907179b14c5f03715afcde999a78431f9531df0c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B1/sapmachine-jdk-11.0.16-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "108adb43e03a12048496674a61c891f2349043993f3d13ad6dda15f812a47fe4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B1/sapmachine-jdk-11.0.16-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.1_linux-x64_bin.tar.gz", + "checksum": "e55bee14681f03e60c89ff5ae69f71382fd0a997f08d5cf7b203953df7bc1870", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B1/sapmachine-jdk-11.0.16-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.16-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B1/sapmachine-jdk-11.0.16-ea.1_macos-x64_bin.dmg", + "checksum": "e1d029fcbc9f71c6d14ebc5cf2cf4dc32d4ca319117d495f7e7675b225331419" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.16-ea.1_macos-x64_bin.tar.gz", + "checksum": "53ed99cb60130ceb12e8815019b446667017e733e6721ecff6c1a68d66cd5e26", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B1/sapmachine-jdk-11.0.16-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.16-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B1/sapmachine-jdk-11.0.16-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.16-ea.1_windows-x64_bin.zip", + "checksum": "2a7693ca438a0a6950e43f28432ce9f8e12f4aabcf38d70df4fdbb37c8f51f7a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B1/sapmachine-jdk-11.0.16-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "c46e0d1a4fa916f01c5beb35eecef54ad775eeec273c7e9984bee2b5680b8cb2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B1/sapmachine-jre-11.0.16-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "8204e0f8969f60fe43d32fd461e07a220d7a1a2665f7f532d1c161d0d08e76e3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B1/sapmachine-jre-11.0.16-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.1_linux-x64_bin.tar.gz", + "checksum": "28153bf9147502bff5b1cd7d43305e8a332c7e56029a159c05713ffa0595c6a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B1/sapmachine-jre-11.0.16-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.16-ea.1_macos-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B1/sapmachine-jre-11.0.16-ea.1_macos-x64_bin.dmg", + "checksum": "41ad62aa0aa815a6b999c579fdc3f88a569b01659cc1366908f8f0a3548697b2" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.16-ea.1_macos-x64_bin.tar.gz", + "checksum": "3a84ab5565a1e84064d0ac519e23305daccc702719754bc96ddd4a0fa9a9731e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B1/sapmachine-jre-11.0.16-ea.1_macos-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.16-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B1/sapmachine-jre-11.0.16-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.16-ea.1_windows-x64_bin.zip", + "checksum": "512d6354a17db4432d0ecc090e18a1761b8369118f6b345e51923e01c7a33ce0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.16%2B1/sapmachine-jre-11.0.16-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.15.0.1": { + "sapmachine-11.0.15.0.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.15.0.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15.0.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "27c17a9605fc60e58de19e7568fdc7f135f6cb2610efa4cc61b402589703e506", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15.0.1/sapmachine-jdk-11.0.15.0.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "2971989aa57bbcff9b84a25123d6f8c08a429958177e4ee32b2f375979d50a89", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15.0.1/sapmachine-jdk-11.0.15.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15.0.1_linux-x64_bin.tar.gz", + "checksum": "826457c300e7315b309bc54d49ed7d0eead98b3800cb70acf10733427fe13942", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15.0.1/sapmachine-jdk-11.0.15.0.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.15.0.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15.0.1/sapmachine-jdk-11.0.15.0.1_osx-x64_bin.dmg", + "checksum": "3f61d992efc8bf53d56338a4b1ae0e00ff5ee3ef8c449a2c563de81cbbf0b336" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.15.0.1_osx-x64_bin.tar.gz", + "checksum": "7744b3632fba1c6e8339b9fb74c46728f8109c07070df49d898799832a934abd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15.0.1/sapmachine-jdk-11.0.15.0.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.15.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15.0.1/sapmachine-jdk-11.0.15.0.1_windows-x64_bin.msi", + "checksum": "3959f817aee83a9ed5346e2c054705b0ca03bd5f1bb6b7ccc3cab6b57f70fa24" + }, + "zip": { + "name": "sapmachine-jdk-11.0.15.0.1_windows-x64_bin.zip", + "checksum": "859ac1f20fa31d9fc91d6568b787635d030fa49d156dedb42b0f4be5297e6e62", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15.0.1/sapmachine-jdk-11.0.15.0.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15.0.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "2ed07c7eee2ca9ca9bcfd3fdb86bf56a5548d13caaec2aacb04b006e0417086c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15.0.1/sapmachine-jre-11.0.15.0.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "14081a80e128f5a8964254b8b0a0ba07095113f56af384267473610a0593fd35", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15.0.1/sapmachine-jre-11.0.15.0.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15.0.1_linux-x64_bin.tar.gz", + "checksum": "8eeecb0bb52c322ff2964dc70f1c02affcc620bf7af416cd93ce166b85553e38", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15.0.1/sapmachine-jre-11.0.15.0.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.15.0.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15.0.1/sapmachine-jre-11.0.15.0.1_osx-x64_bin.dmg", + "checksum": "bcd12c1b28bb571a164804a016d9c4dbc79bf5777fdd525f10ac4f7818b9328d" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.15.0.1_osx-x64_bin.tar.gz", + "checksum": "72e6a7a1aa3337799e5be448accb3ec8ea35b3a781712f3d5f17bff63586b032", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15.0.1/sapmachine-jre-11.0.15.0.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.15.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15.0.1/sapmachine-jre-11.0.15.0.1_windows-x64_bin.msi", + "checksum": "20130e311fc117a1eb7c565725782e8575259bbd08eedae53209966cceda0366" + }, + "zip": { + "name": "sapmachine-jre-11.0.15.0.1_windows-x64_bin.zip", + "checksum": "861171fa00a0b3e1c9cf838ab3ef86a8782a2cfc3977d62abc5fd9503fc2305d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15.0.1/sapmachine-jre-11.0.15.0.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.15": { + "sapmachine-11.0.15": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.15", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-beta_linux-aarch64_bin.tar.gz", + "checksum": "6b99939b14af7a185a45c32c51f924fa89754bba97c06bb3523fdb5a7ad561a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15/sapmachine-jdk-11.0.15-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15_linux-ppc64le_bin.tar.gz", + "checksum": "a2fc2177ea29b722b4dd52be6e7e436b585afd2249b31cc3bd098f9f2a631d86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15/sapmachine-jdk-11.0.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15_linux-x64_bin.tar.gz", + "checksum": "131418908bda1ff30679bb273db42fa30e1bdf73c64ba812aa8353a754feecf2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15/sapmachine-jdk-11.0.15_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.15_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15/sapmachine-jdk-11.0.15_osx-x64_bin.dmg", + "checksum": "64bda337540c3aded3edf698921c0ae2c1f4064b932fbde0f2d7e30f8f9f3f5c" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.15_osx-x64_bin.tar.gz", + "checksum": "6edc3e6d4a5fcc2782b24d5957fbdfa16f20e5e349d9b28fd536be0d32deb041", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15/sapmachine-jdk-11.0.15_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15/sapmachine-jdk-11.0.15_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.15_windows-x64_bin.zip", + "checksum": "377e7be8b18414a5c8ee179dd12293c9d254281fa51d32cf35901b88d43b3f10", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15/sapmachine-jdk-11.0.15_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-beta_linux-aarch64_bin.tar.gz", + "checksum": "fcef890620dce38b0205ec3aac5d50d634c90850cf3a7f53bc3ac4a507ea965e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15/sapmachine-jre-11.0.15-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15_linux-ppc64le_bin.tar.gz", + "checksum": "2811ecd06440b6ebd351509d37141cfa49a8b86ee96cb2f4ab7afa4e3e59628b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15/sapmachine-jre-11.0.15_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15_linux-x64_bin.tar.gz", + "checksum": "19f82309d3cdc9fdded952fa224de57c96b023dba8d9a75cf91a86c983d011b2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15/sapmachine-jre-11.0.15_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.15_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15/sapmachine-jre-11.0.15_osx-x64_bin.dmg", + "checksum": "fa92a08e011535a34ac7de7a5750588df1a657e18a19090fcf8be47ab95f314d" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.15_osx-x64_bin.tar.gz", + "checksum": "ce5feac2c5fd194934d757428891dd57a85ef4b1e4e9ce91778610e102dea7c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15/sapmachine-jre-11.0.15_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.15_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15/sapmachine-jre-11.0.15_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.15_windows-x64_bin.zip", + "checksum": "6383e9b89780f9f4920a4868c2b026d7d31283eba67bfbff84a396d2761bd166", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15/sapmachine-jre-11.0.15_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.15+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.15%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-eabeta.10_linux-aarch64_bin.tar.gz", + "checksum": "225f464727e92d5cea5eef38a6541c46bd26453a02df85afa069a1fcfa68abc4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B10/sapmachine-jdk-11.0.15-eabeta.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "5bccb70b7ed260eb454e0074870750873329d3b2f74b859a7b0a56d75e7e9174", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B10/sapmachine-jdk-11.0.15-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.10_linux-x64_bin.tar.gz", + "checksum": "482d86de1f48af6a570d3ccc45e93580a748af822c8281a3776d81151e47d7ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B10/sapmachine-jdk-11.0.15-ea.10_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.15-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B10/sapmachine-jdk-11.0.15-ea.10_osx-x64_bin.dmg", + "checksum": "50e00d25c0b5ab7b9d5e932ed31164e85a8be797b91d3cacc087ead148474892" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.10_osx-x64_bin.tar.gz", + "checksum": "25f2bb3334727df8601b88511d61173cfc6fbbc7fa39e5167736f72a3292251f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B10/sapmachine-jdk-11.0.15-ea.10_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.15-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B10/sapmachine-jdk-11.0.15-ea.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.15-ea.10_windows-x64_bin.zip", + "checksum": "d2f83fe7d3fe3392af9c4a95db998845104549517682106a47f5881db164e32d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B10/sapmachine-jdk-11.0.15-ea.10_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-eabeta.10_linux-aarch64_bin.tar.gz", + "checksum": "5d7924194b774ed1852b278fbcc0ee2529274adbea47a798c3451c35f45a8922", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B10/sapmachine-jre-11.0.15-eabeta.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "e3b3983c4b5b1595a3eae19cdb3ad6786a20b8d9876b585e8bc92bfce60d713b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B10/sapmachine-jre-11.0.15-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.10_linux-x64_bin.tar.gz", + "checksum": "877dd5df29d1c51e0c87d4d589d5f36fa037b69565027f749790c01467c1aa4b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B10/sapmachine-jre-11.0.15-ea.10_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.15-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B10/sapmachine-jre-11.0.15-ea.10_osx-x64_bin.dmg", + "checksum": "7425cb5f6faa183967d43beb363d5d48c444231be6ad399220527a65ab319a0c" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.10_osx-x64_bin.tar.gz", + "checksum": "78fc42e28843138bdea523ae45658e13bad04029cba35adbc477c54b6c164d5a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B10/sapmachine-jre-11.0.15-ea.10_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.15-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B10/sapmachine-jre-11.0.15-ea.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.15-ea.10_windows-x64_bin.zip", + "checksum": "3a23709380500c91c603e43dd44eb9edc1df2b25a5fb3e92b3d41bf8431ec14f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B10/sapmachine-jre-11.0.15-ea.10_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.15+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.15%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "e47382526b2b3c8592b6adf239a36014212bf186978517152307bb7ff131e510", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B9/sapmachine-jdk-11.0.15-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "7ef3cc1679cad8db73e79acd9ac82048b10c3a65bd7177dda86ad37b3181d60f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B9/sapmachine-jdk-11.0.15-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.9_linux-x64_bin.tar.gz", + "checksum": "8c92c502ce63dbb6eedd078f3832ffa79a2060b651504597ca84432dfe4b6c3f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B9/sapmachine-jdk-11.0.15-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.15-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B9/sapmachine-jdk-11.0.15-ea.9_osx-x64_bin.dmg", + "checksum": "efd0f29b79db8d83c621464c52852942b537ca66293d33a770733d4ae6671846" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.9_osx-x64_bin.tar.gz", + "checksum": "a09efdb4647be47c3505529dab73edfe3462cd9493ffecbd7780319264f18ce8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B9/sapmachine-jdk-11.0.15-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.15-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B9/sapmachine-jdk-11.0.15-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.15-ea.9_windows-x64_bin.zip", + "checksum": "05169eca3def5d1f579376540d619e4c22bbcb9379acb41922ed97e814ddce3a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B9/sapmachine-jdk-11.0.15-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "652a2e0840bb96194d8d92197d2be2f36c6f107ed2b26aadf9c4d571e79b456d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B9/sapmachine-jre-11.0.15-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "b85aeefee2e87944de207e8449b311065218fc0463c010cfd27db0ba7e88f843", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B9/sapmachine-jre-11.0.15-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.9_linux-x64_bin.tar.gz", + "checksum": "44e24ab17178a1dad88ceb6d0b1d258c40060a0171a835a00c09d86c973c62bb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B9/sapmachine-jre-11.0.15-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.15-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B9/sapmachine-jre-11.0.15-ea.9_osx-x64_bin.dmg", + "checksum": "102a584d97b74c146c41489e5ee93c5a9883d1efa18db23c834a8eb7b14a8802" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.9_osx-x64_bin.tar.gz", + "checksum": "633c3d1056346164fe5705f902e11511fc2245c4d75c7c2c6a9d23d48d258a83", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B9/sapmachine-jre-11.0.15-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.15-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B9/sapmachine-jre-11.0.15-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.15-ea.9_windows-x64_bin.zip", + "checksum": "6c84b89edce642db9c661ef25561c66df8e162d522c1395dc56c18dad7f0e4eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B9/sapmachine-jre-11.0.15-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.15+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.15%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "9331f18a35727b08fd1334af9bfdb9f9966614979888edefe8147526ca204889", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B8/sapmachine-jdk-11.0.15-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "abff74b8359de955cdc0f74c043e68c515b641f0ca3326f5a496fe22e91b9c4d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B8/sapmachine-jdk-11.0.15-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.8_linux-x64_bin.tar.gz", + "checksum": "034affb0d792348a62757d676135bcc8cda415042a1605fd03c6a4732378dd35", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B8/sapmachine-jdk-11.0.15-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.15-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B8/sapmachine-jdk-11.0.15-ea.8_osx-x64_bin.dmg", + "checksum": "0e226833045731b52b08dbc93d4e894107e32ec2198275eb53fee8e7d64478df" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.8_osx-x64_bin.tar.gz", + "checksum": "06399e1752949a3fd12d3f107b1129c87c6870666b400a82b1f222f692e83df6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B8/sapmachine-jdk-11.0.15-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.15-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B8/sapmachine-jdk-11.0.15-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.15-ea.8_windows-x64_bin.zip", + "checksum": "0a4b4ea04c0b38a4f4842d965b0b0ccb6e54fc3ab0a713948dbeda6389b90a22", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B8/sapmachine-jdk-11.0.15-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "9fb2011f006fde5d46092184226acdbef04bae2bf8cc4be178124c9bfa1776ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B8/sapmachine-jre-11.0.15-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "dd0838ba6a3900c4c0db698501301c793651c032e3f3a8c610475c646b693e68", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B8/sapmachine-jre-11.0.15-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.8_linux-x64_bin.tar.gz", + "checksum": "3da55430af80eb381b82845b8ba406ad9de19080db9b8c0c8618c3d8de97ebcf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B8/sapmachine-jre-11.0.15-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.15-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B8/sapmachine-jre-11.0.15-ea.8_osx-x64_bin.dmg", + "checksum": "33c1d7a4b999919c713d612e90e4e55bf290537b4dc68fcdad6b8bfcd99761b6" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.8_osx-x64_bin.tar.gz", + "checksum": "cc26ff13baee1cd1475ee9d63a5701cfd0795f7b35973eb8b00c22066680270b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B8/sapmachine-jre-11.0.15-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.15-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B8/sapmachine-jre-11.0.15-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.15-ea.8_windows-x64_bin.zip", + "checksum": "3dfbf654c1810cfc0cebb5272a77070e7b85f11e16dd555678008d068f3cf33a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B8/sapmachine-jre-11.0.15-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.15+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.15%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "64340f494591be743b3a336e18bbc57d5f9972b68640af22174dc954696e280b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B7/sapmachine-jdk-11.0.15-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "f9e36abd4c39565751f91a020ff6415c784f56f66aac43a3c2ce2bf74b163940", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B7/sapmachine-jdk-11.0.15-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.7_linux-x64_bin.tar.gz", + "checksum": "1f6369f0455c8bb52fe800500ad4f616d0c4fead71182e4b82e683ae7bb3bd25", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B7/sapmachine-jdk-11.0.15-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.15-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B7/sapmachine-jdk-11.0.15-ea.7_osx-x64_bin.dmg", + "checksum": "a541879a9bf547d9294c81a5f04d20763863b1bbbbc724edf92e7e356de4791e" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.7_osx-x64_bin.tar.gz", + "checksum": "659b8dabb44307881c09859c3ce4adbb6c284e53f9497fdfe27040705404e13d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B7/sapmachine-jdk-11.0.15-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.15-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B7/sapmachine-jdk-11.0.15-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.15-ea.7_windows-x64_bin.zip", + "checksum": "cff2906c8ef98b256b22efebbaa083db8ccaa7593b110b9e989c7db0808549a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B7/sapmachine-jdk-11.0.15-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "fd00da0bf5dd8d890f6af0d95a0470babd69db852029c7aa345e1e6250d82b62", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B7/sapmachine-jre-11.0.15-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "dc5d5a7a672c5fa6721b59a423064d8d58e3ec5dc2f14836e8902249796d5dd2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B7/sapmachine-jre-11.0.15-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.7_linux-x64_bin.tar.gz", + "checksum": "158b75c4216014627d2d395f2f1a50378ddd3029aa08ac3588bb843ad3d276ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B7/sapmachine-jre-11.0.15-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.15-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B7/sapmachine-jre-11.0.15-ea.7_osx-x64_bin.dmg", + "checksum": "2b66db5fc8370b785c87ea395d538b597c8cc2e80a88d04c259df83da5e15cdb" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.7_osx-x64_bin.tar.gz", + "checksum": "70eef4a8255ec2bcb330e2912394ac3ac5fad707d1ce9486f410abbae6bcc3e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B7/sapmachine-jre-11.0.15-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.15-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B7/sapmachine-jre-11.0.15-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.15-ea.7_windows-x64_bin.zip", + "checksum": "df4b3cbfa9e3dd11132bd428b183b7a4d1426b622049c4c9c80d5ef36408d98b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B7/sapmachine-jre-11.0.15-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.15+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.15%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "821192941410095b2c37c48c98c0cf05d4f4fc0d99decb1d3d041c886c8eb537", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B6/sapmachine-jdk-11.0.15-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "a143fce1dc6a60f8771f3182d34fe30c6e16d3645043c153dfa94f97387b52dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B6/sapmachine-jdk-11.0.15-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.6_linux-x64_bin.tar.gz", + "checksum": "7788ba38de0b259b5c09cb4402ef2b7fc2ece489c91a1cd286ea4c069afad76b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B6/sapmachine-jdk-11.0.15-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.15-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B6/sapmachine-jdk-11.0.15-ea.6_osx-x64_bin.dmg", + "checksum": "3560b4034e69e7ebb9ce30e93391e07968022557877dc88ba71c5529deeaa19a" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.6_osx-x64_bin.tar.gz", + "checksum": "a5de1df3bab918d27ed76bff4c565d008f83c341a5011861718537aa01a308f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B6/sapmachine-jdk-11.0.15-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.15-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B6/sapmachine-jdk-11.0.15-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.15-ea.6_windows-x64_bin.zip", + "checksum": "4ffded07f9e0f02e5c9d6f0c3711823543efe51177fecfa2b6b76a82fc5ff8de", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B6/sapmachine-jdk-11.0.15-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "fe0f738e2dfc054438509de9e50af9f9201d8202f053df229509d765bdb808d0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B6/sapmachine-jre-11.0.15-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "d375af05b7971c258300213f3be38d71ee5672b8e03177835332ec6055856247", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B6/sapmachine-jre-11.0.15-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.6_linux-x64_bin.tar.gz", + "checksum": "dca6d6812839bef31d4c1e90adc3320be9d4922907b02f61c2736ef331da9778", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B6/sapmachine-jre-11.0.15-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.15-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B6/sapmachine-jre-11.0.15-ea.6_osx-x64_bin.dmg", + "checksum": "6414f9fcac1065dc503503bf398a0fc10da85fc45149cac3a515f93075fbd244" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.6_osx-x64_bin.tar.gz", + "checksum": "452b66c8310613b6c4e00d770134de2af68a2ad9d9f65c22d61b248d0834e7a8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B6/sapmachine-jre-11.0.15-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.15-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B6/sapmachine-jre-11.0.15-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.15-ea.6_windows-x64_bin.zip", + "checksum": "c9d5bd7338d1bd89990a8783dc0e4bc443fd5b8f2d212f068d35e9eb67f8eb6e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B6/sapmachine-jre-11.0.15-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.15+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.15%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "8027156cd5e98bf15854ca8fc0af3dc39a654d4da3d7f3ea032d4e1a0817361d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B5/sapmachine-jdk-11.0.15-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "5af43586a2f960e815c3531046ac072edd012ff1279c2fdc3b526f7c90d35889", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B5/sapmachine-jdk-11.0.15-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.5_linux-x64_bin.tar.gz", + "checksum": "bc4c9863742a3382e280e6e29afc6545409acd7e7a8bfcef5fbc9fb854b91bbe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B5/sapmachine-jdk-11.0.15-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.15-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B5/sapmachine-jdk-11.0.15-ea.5_osx-x64_bin.dmg", + "checksum": "4d8e1fad51a1d1508eda3bd319b73b24030f52dd4f25325daf8afaebc06b746c" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.5_osx-x64_bin.tar.gz", + "checksum": "5ac62b5f13fd5ad4681ae7817fbe25c547a47566d28ed1cbca7ae7058b49460e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B5/sapmachine-jdk-11.0.15-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.15-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B5/sapmachine-jdk-11.0.15-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.15-ea.5_windows-x64_bin.zip", + "checksum": "7f155698228b940572805707779921ee0f1b7f0c302df79be3ba491c9ca0874a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B5/sapmachine-jdk-11.0.15-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "e36f94ffa7d8f0567ce628f1bcd4b9f685e40218238bcb5f196da97ae8785a5f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B5/sapmachine-jre-11.0.15-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "4f7df20a0e28f2092dc7d2f2037bc83e7355c94b7b5ef521c74f1bf8a7fe787a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B5/sapmachine-jre-11.0.15-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.5_linux-x64_bin.tar.gz", + "checksum": "0d5453969908929b561c917b07a3c92355384f9dd346d4f85dc122b5476b622d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B5/sapmachine-jre-11.0.15-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.15-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B5/sapmachine-jre-11.0.15-ea.5_osx-x64_bin.dmg", + "checksum": "09314b60c2f66b4b1a3d48be0a8512ff602ed274f7c687ca3e7b5c578e2e5b6e" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.5_osx-x64_bin.tar.gz", + "checksum": "8cf59ca3c24215910bd4ed3d3513de199f8723b471aab1dbf75e3a0eb52f0f83", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B5/sapmachine-jre-11.0.15-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.15-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B5/sapmachine-jre-11.0.15-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.15-ea.5_windows-x64_bin.zip", + "checksum": "e56df727031e66d5d02b82ecf18893946f292b05308c4fa6a83976d9eb649292", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B5/sapmachine-jre-11.0.15-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.15+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.15%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "50129c6cd8d4c6d76d621524521a18fb1136662e955171be81c65a6f3249bebf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B4/sapmachine-jdk-11.0.15-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "d1ad4379ec3db3125c1417e4ebfcd3df99cce8715cc1ad4cd30e850b785b6a75", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B4/sapmachine-jdk-11.0.15-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.4_linux-x64_bin.tar.gz", + "checksum": "391e0e97618a436eb22a74eefdabdfadfef19edb30d67a5f4fb2dbb89b09c924", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B4/sapmachine-jdk-11.0.15-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.15-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B4/sapmachine-jdk-11.0.15-ea.4_osx-x64_bin.dmg", + "checksum": "d7525cb62d695d9441fa60f4ed39901892c6ca6ccc56e9ddab419977ae2355af" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.4_osx-x64_bin.tar.gz", + "checksum": "7ec6fd18b0140a4a57660ad888dcf90cd466b2df5f0c53826dc2c30d01cecf3c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B4/sapmachine-jdk-11.0.15-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.15-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B4/sapmachine-jdk-11.0.15-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.15-ea.4_windows-x64_bin.zip", + "checksum": "43c6f2eecd0320c0249272f2c68d3bcbed055b9147ccddb83fd90d3df23fb87c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B4/sapmachine-jdk-11.0.15-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "2872f19e5c184a4dd6eee52ecd84a9a9f053e6c1d83e526429bd227917e10078", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B4/sapmachine-jre-11.0.15-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "71f4f755787aae16b6f445344d4eb52b06f4bf45f08b63246e29159175e33870", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B4/sapmachine-jre-11.0.15-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.4_linux-x64_bin.tar.gz", + "checksum": "332de4d8fd527aafb9cc06e9cbb23c11809532c243243cbbae88e186177f833d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B4/sapmachine-jre-11.0.15-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.15-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B4/sapmachine-jre-11.0.15-ea.4_osx-x64_bin.dmg", + "checksum": "4ed056e9fc3f12972162e575e00b0db55d3d4e4fa7b0da68d29316e9cf52ffc0" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.4_osx-x64_bin.tar.gz", + "checksum": "3df9f058433113758fe56db0c896a781ef5403470ac20ee8aafa4e4c5ffe2692", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B4/sapmachine-jre-11.0.15-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.15-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B4/sapmachine-jre-11.0.15-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.15-ea.4_windows-x64_bin.zip", + "checksum": "703b7933349a19170656a7cc45a29a76f43f46ba56f43ba862babd002becc774", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B4/sapmachine-jre-11.0.15-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.15+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.15%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "0d61f7227a9a383c2682645ba672e9d590423f46b020d88e95cec72bfa61aba4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B3/sapmachine-jdk-11.0.15-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "679107faebd3cb5e4653bb38b3558aa067cc9c27d03e3d44378a25f5fa0dce29", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B3/sapmachine-jdk-11.0.15-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.3_linux-x64_bin.tar.gz", + "checksum": "ea7e2efa2919a1ad817d6b10f54a42761e8084f92ff1482e79a875225d0aecd5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B3/sapmachine-jdk-11.0.15-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.15-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B3/sapmachine-jdk-11.0.15-ea.3_osx-x64_bin.dmg", + "checksum": "b029d95498b5a0fb15bd518fd2b8b5267d56d5327ccffdd4b75a3b39fdb3dc58" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.3_osx-x64_bin.tar.gz", + "checksum": "19f3fd7e6f44a71ada6e508ac5ec77a674933752f1691cdd058ae32fa7b8c916", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B3/sapmachine-jdk-11.0.15-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.15-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B3/sapmachine-jdk-11.0.15-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.15-ea.3_windows-x64_bin.zip", + "checksum": "ebe1bf6a69c6bdba3e357c78298eac321fc2157cad97f96b8782a97922da9104", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B3/sapmachine-jdk-11.0.15-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "ba1dbe62d0a9f3802984f46f504ab34090a97b90c786ba521eead63400695f36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B3/sapmachine-jre-11.0.15-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "1581563703c729f873765b3c86335f47725b052693a0a922b0e766b87f076f29", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B3/sapmachine-jre-11.0.15-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.3_linux-x64_bin.tar.gz", + "checksum": "279d08fdf35fd18eb71315c03a2ed31f5c9329afb3db3c77cc522b3dbb31c596", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B3/sapmachine-jre-11.0.15-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.15-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B3/sapmachine-jre-11.0.15-ea.3_osx-x64_bin.dmg", + "checksum": "68456437327c66862994455b184e1acfc127bafbf53ebfe15ffab3ad8f6bc7bd" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.3_osx-x64_bin.tar.gz", + "checksum": "e2d9faaadbbf98563ed375b647f11418dda7853d2f9c376ae5fba3bc7de65b55", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B3/sapmachine-jre-11.0.15-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.15-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B3/sapmachine-jre-11.0.15-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.15-ea.3_windows-x64_bin.zip", + "checksum": "e2bf3333baa55a6fee88d6d418f0b8b68f99333afc8edbaa57cb49a34286a578", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B3/sapmachine-jre-11.0.15-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.15+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.15%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "149a0d1a34b630688a4351fb1e369ffc049cf970c898d724860290a00e14d7f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B2/sapmachine-jdk-11.0.15-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "409cec0ea893212202ae113bcf44212f9aeafd21507991ffa9d1ba2eeb96d246", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B2/sapmachine-jdk-11.0.15-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.2_linux-x64_bin.tar.gz", + "checksum": "5b2c80927887d6a3ed35e421173ff1881b4bbb2b4231503fc83c8a04d97a88a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B2/sapmachine-jdk-11.0.15-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.15-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B2/sapmachine-jdk-11.0.15-ea.2_osx-x64_bin.dmg", + "checksum": "44b09f16790155c63a82f8083a6a3b21f5665ceeb453252645c3eb9d50c57490" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.2_osx-x64_bin.tar.gz", + "checksum": "57814d0e6ec06c977462bf5635ef441add5523752ce717a4dca02f74f1d26cbe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B2/sapmachine-jdk-11.0.15-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.15-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B2/sapmachine-jdk-11.0.15-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.15-ea.2_windows-x64_bin.zip", + "checksum": "7e19a15b52016e42cb0423d1e8be26a38209fe43b97305d98e0234b39d9fbed4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B2/sapmachine-jdk-11.0.15-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "f7f4b232fd9f1b8f92569b7509fa12f7be311222d7daf7b7f8686f807c9c1384", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B2/sapmachine-jre-11.0.15-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "7ca5e7b58dd52bdd731c3c659ece124a2cee875f09905f1484971dc877003381", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B2/sapmachine-jre-11.0.15-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.2_linux-x64_bin.tar.gz", + "checksum": "17c954fd0aca016b735712590518c01d0db36e7e2f2937f6c11d786b890df6cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B2/sapmachine-jre-11.0.15-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.15-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B2/sapmachine-jre-11.0.15-ea.2_osx-x64_bin.dmg", + "checksum": "5a365f66303a8705238c691d1d6f6eeccadca284bf4e40c38bf185d04c6d3c43" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.2_osx-x64_bin.tar.gz", + "checksum": "a7278c7b9ea2f09f85d09c27776821aeba13105b09c1776e4928c691a2bcd681", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B2/sapmachine-jre-11.0.15-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.15-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B2/sapmachine-jre-11.0.15-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.15-ea.2_windows-x64_bin.zip", + "checksum": "428fda88f6baf4847a9f6b2dca959c43767b213e0e99fc6a9af6e35919f87e15", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B2/sapmachine-jre-11.0.15-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.15+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.15%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "b6d3b6d91437721208f006b0be6f607acf186a8c2e08e21a5f229f4e62d28a98", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B1/sapmachine-jdk-11.0.15-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "bca4525cd91e1979442d0a3cc75ac99b5566ad0acdb6c7ae6263b0b214f34c84", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B1/sapmachine-jdk-11.0.15-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.1_linux-x64_bin.tar.gz", + "checksum": "c8811aa587e609681352e579735a1663af6cd446cac33e91e02ded32f24c3a65", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B1/sapmachine-jdk-11.0.15-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.15-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B1/sapmachine-jdk-11.0.15-ea.1_osx-x64_bin.dmg", + "checksum": "69741ecd09cf3f92d4fda1eda4c03c3df214af5c78914bb3e449af28836458fb" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.15-ea.1_osx-x64_bin.tar.gz", + "checksum": "babf7ce870a114ccaef28863f82a929277aaad4d1e1a5de84dfe26894a4d4a61", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B1/sapmachine-jdk-11.0.15-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.15-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B1/sapmachine-jdk-11.0.15-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.15-ea.1_windows-x64_bin.zip", + "checksum": "226141f11c78a4eb26cfed6bee95350aeb28645446d6311985f524e9cb97dc43", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B1/sapmachine-jdk-11.0.15-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "86744903d02ba21a8fab57ba1d742a03bb09ff74d578042c8224d443d0016159", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B1/sapmachine-jre-11.0.15-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "f0088a5269968a4a47ab5c024d350ee44f270f2827c9e7eea6a7a1de5ca1ad2a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B1/sapmachine-jre-11.0.15-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.1_linux-x64_bin.tar.gz", + "checksum": "971756b1da0f52d1f721445fba31724b212e6dd856a7d28b127b0ad9be85b82f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B1/sapmachine-jre-11.0.15-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.15-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B1/sapmachine-jre-11.0.15-ea.1_osx-x64_bin.dmg", + "checksum": "830ef96eff0f9ba201f09623ae5f532da1127e14eed867d1b5a731cf489fe5d3" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.15-ea.1_osx-x64_bin.tar.gz", + "checksum": "cdd919ccb15d4ed09bb73e699efdeeb2054c798e030e1f0fa3b6d954e0e03862", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B1/sapmachine-jre-11.0.15-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.15-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B1/sapmachine-jre-11.0.15-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.15-ea.1_windows-x64_bin.zip", + "checksum": "107bcff3102bc7d036f4ef5ee39ac67871f960c6215aec3960acd15313b79621", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.15%2B1/sapmachine-jre-11.0.15-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.14.1": { + "sapmachine-11.0.14.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.14.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "91a18bf421168088dc42af95702a7b53e2b5d142a089b10127f344ee5bf89d9c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1/sapmachine-jdk-11.0.14.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14.1_linux-ppc64le_bin.tar.gz", + "checksum": "acf100f7013633dadba236dbeb05801e1069e73e9ca53c98f72fe2d8671e3ecb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1/sapmachine-jdk-11.0.14.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14.1_linux-x64_bin.tar.gz", + "checksum": "f9ec22c87c76671ee86bf5aecf5ea9fa1a5767c0d1fa96d331dd942215084ea9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1/sapmachine-jdk-11.0.14.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.14.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1/sapmachine-jdk-11.0.14.1_osx-x64_bin.dmg", + "checksum": "3593829895f30b96f3022f455de1482d7757a8fac4a2d6fd36b6b7b2f3be0393" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.14.1_osx-x64_bin.tar.gz", + "checksum": "497c5d0e697867f44f62a6cf5a8caabe2ceb623dd6c229278a3d5c1d3d11d9fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1/sapmachine-jdk-11.0.14.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.14.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1/sapmachine-jdk-11.0.14.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.14.1_windows-x64_bin.zip", + "checksum": "4d1b5a01cb8ed06620f9c96457bcb5b0637bd752eb6563c39781efc82e92731a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1/sapmachine-jdk-11.0.14.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "97c93c7776a1ac181fe76ef817f24ea58db96d0b18d19f492a7df83a4ea9c62c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1/sapmachine-jre-11.0.14.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14.1_linux-ppc64le_bin.tar.gz", + "checksum": "baffc5866196a28f0999071fea9c34d67dd305baf1a5718b3c6b37295d64dec9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1/sapmachine-jre-11.0.14.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14.1_linux-x64_bin.tar.gz", + "checksum": "5b77af3367964d18614ffa289c26d55b884080729fdbe686e2e9e376abe0f32d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1/sapmachine-jre-11.0.14.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.14.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1/sapmachine-jre-11.0.14.1_osx-x64_bin.dmg", + "checksum": "2762e3cae9f5a2021fab7358293c0b0cb0a8de0c9c4597e3ae737ded4ce48693" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.14.1_osx-x64_bin.tar.gz", + "checksum": "41fd9ff853a58018ac121991c693a673a879f44706153a267aa22376f2aa40bb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1/sapmachine-jre-11.0.14.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.14.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1/sapmachine-jre-11.0.14.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.14.1_windows-x64_bin.zip", + "checksum": "860fcb0cc81b1701d724262747b519d7b083b4ed089e9ec97136c14271f29e7b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1/sapmachine-jre-11.0.14.1_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.14.1+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.14.1%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14.1-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "a7dcdc7805f3e5d84844a64fc3e9e95819f70a8c78beb16159df7d809c52dfee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1%2B1/sapmachine-jdk-11.0.14.1-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "6b99bc8011a18f69bd1604b4630e624c0f1b4d300173c1f425dd94f5129aa9ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1%2B1/sapmachine-jdk-11.0.14.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "bb711ce95b1eea03e8bc3533cad31a54f5d4247fa8e8b09ab2d73950e3733016", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1%2B1/sapmachine-jdk-11.0.14.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.14.1-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1%2B1/sapmachine-jdk-11.0.14.1-ea.1_osx-x64_bin.dmg", + "checksum": "3b973bf575ff96d735a9688b37d03e5b5de01082729f49d69b00baa0b20ce4f4" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.14.1-ea.1_osx-x64_bin.tar.gz", + "checksum": "0573d785f86e2050a98fa79fdb84d0587e2ff14e6ee4f32e2d66529363ae85d8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1%2B1/sapmachine-jdk-11.0.14.1-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.14.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1%2B1/sapmachine-jdk-11.0.14.1-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.14.1-ea.1_windows-x64_bin.zip", + "checksum": "7cb5bc57af61973307694d7539146aeabb09a8bbac525246c1894da58456be67", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1%2B1/sapmachine-jdk-11.0.14.1-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14.1-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "f1fae0c04a8aa511314a93052936787c2c637c9f72fd22451d685e811ee7ace9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1%2B1/sapmachine-jre-11.0.14.1-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "c2b1aeecf556e526cd9eda2f2f1eb3c0013697a3a0335579db2bcb30ac6f7aa7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1%2B1/sapmachine-jre-11.0.14.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "708098259864d90233c694fe6c4606059a96aa91cff61a090e44260c1eb36aa3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1%2B1/sapmachine-jre-11.0.14.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.14.1-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1%2B1/sapmachine-jre-11.0.14.1-ea.1_osx-x64_bin.dmg", + "checksum": "28d537bc80d89124850524629de33705edbbbd217972f40974a8b3d7412b06b3" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.14.1-ea.1_osx-x64_bin.tar.gz", + "checksum": "f5c642f5099ce27e38b68cae3a9d3371b487c4778bce08dd3414f964422dc09f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1%2B1/sapmachine-jre-11.0.14.1-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.14.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1%2B1/sapmachine-jre-11.0.14.1-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.14.1-ea.1_windows-x64_bin.zip", + "checksum": "ae60af6a898da2509d3210907ae2063b35ad0c8328975e17adc321d6e1638745", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14.1%2B1/sapmachine-jre-11.0.14.1-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.14": { + "sapmachine-11.0.14": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.14", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-beta_linux-aarch64_bin.tar.gz", + "checksum": "b97b8a850619e92d8a68a00b4c434d1242a88db7c187e05c6c5ffcc80f77fac1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14/sapmachine-jdk-11.0.14-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14_linux-ppc64le_bin.tar.gz", + "checksum": "d26676fac3210154cf8907f669ecec0bdeaf3646270768279df9ffde44c223a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14/sapmachine-jdk-11.0.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14_linux-x64_bin.tar.gz", + "checksum": "aaf5c63364cca4f208d7dc448485658e06ac6625d9f5dbd7c5120e59360ac6d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14/sapmachine-jdk-11.0.14_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.14_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14/sapmachine-jdk-11.0.14_osx-x64_bin.dmg", + "checksum": "257697c01485ef5eaca3cff069e4defa6dddc529497a5ff048e9185c07980d11" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.14_osx-x64_bin.tar.gz", + "checksum": "1f8ed571b305ffa058a07484f08056a285302e77f4a8b0ae6af3f2c72a3f8acc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14/sapmachine-jdk-11.0.14_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14/sapmachine-jdk-11.0.14_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.14_windows-x64_bin.zip", + "checksum": "a9d222bab939c1c6abeab5d57ab118de48abbb64acc1084490db27151b1b3c4c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14/sapmachine-jdk-11.0.14_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-beta_linux-aarch64_bin.tar.gz", + "checksum": "5ac0664bb54628d6fd9d640309977c352e8d1edb26ad90e1cf0616f81fd52401", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14/sapmachine-jre-11.0.14-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14_linux-ppc64le_bin.tar.gz", + "checksum": "30ff36f63c3bb620261aa5098164faf0d62d5eecd2d135fde0ecac93564b0127", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14/sapmachine-jre-11.0.14_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14_linux-x64_bin.tar.gz", + "checksum": "2111f10e699fdd9474096618faa83eef174852f88cee72bece865a59eaa2205e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14/sapmachine-jre-11.0.14_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.14_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14/sapmachine-jre-11.0.14_osx-x64_bin.dmg", + "checksum": "bb22c7fb3ef591f7d557249c70735fee026a9262831167efcffa509c0961b0ea" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.14_osx-x64_bin.tar.gz", + "checksum": "5632c33d17f835eefa00897ce2ba39bcb7ec85fede6ce82b9ef1f495259fe8e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14/sapmachine-jre-11.0.14_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.14_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14/sapmachine-jre-11.0.14_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.14_windows-x64_bin.zip", + "checksum": "2c71456c2ae76515f1eb5affcf6f94f1095dab51227ea638135424fcf52a3cac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14/sapmachine-jre-11.0.14_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.14+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.14%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "22df7fe585042758fbbf4299a3153e34baaa7fc486168b6afbe26bd2951cfe07", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B9/sapmachine-jdk-11.0.14-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "1bf3a7ee9d1d589e5c969e8e41d31e5b8fb931b198cdbd36f02266dd4cfabb44", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B9/sapmachine-jdk-11.0.14-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.9_linux-x64_bin.tar.gz", + "checksum": "5ae4e5984b74f3594cc0aea95f70d747b55908fb5b4121c1a47bfa35176b769d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B9/sapmachine-jdk-11.0.14-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.14-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B9/sapmachine-jdk-11.0.14-ea.9_osx-x64_bin.dmg", + "checksum": "bdb366f3ae06fc7731b7264fe41b83e7c7a8b94407938032752ba79022011f80" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.9_osx-x64_bin.tar.gz", + "checksum": "1deb729aeb89bd903792523ef90aefad669a2ad3ce861d30eded5ebd8dd109b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B9/sapmachine-jdk-11.0.14-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.14-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B9/sapmachine-jdk-11.0.14-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.14-ea.9_windows-x64_bin.zip", + "checksum": "c38ad6bf0d6cc569af5dcae6f38a0253f1dfa85bbeecf9c80e38e5e21574fd1a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B9/sapmachine-jdk-11.0.14-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "c4777cf75e521e87bded299393510a9b10b47f4f74bfbcd155e0d3744fdd6d9d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B9/sapmachine-jre-11.0.14-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "30394e13a9e940045e187a2067cf6b482d884aa9119a525721c7f33d4658c7b6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B9/sapmachine-jre-11.0.14-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.9_linux-x64_bin.tar.gz", + "checksum": "c2786cd6559e0dc80e8daadfd9d1ad8428ca35691fe83baf229b93baf78f3b8b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B9/sapmachine-jre-11.0.14-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.14-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B9/sapmachine-jre-11.0.14-ea.9_osx-x64_bin.dmg", + "checksum": "5d2328b8aab2f33a6488991bb7f08e7f33052c0fbb692ec75cd81bf8f9d3f8d9" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.9_osx-x64_bin.tar.gz", + "checksum": "32a04fe44a01ed81f1d45bff7b6442134274776d1b4c0f39173d7b38c4273083", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B9/sapmachine-jre-11.0.14-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.14-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B9/sapmachine-jre-11.0.14-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.14-ea.9_windows-x64_bin.zip", + "checksum": "ee131848d414fba6226a82b93ba4e5929dd713c9cd9ddf407cf7486124d4f33a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B9/sapmachine-jre-11.0.14-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.14+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.14%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "50dae8f456377d386bb4251a7cfdd12d791c55d7fcae15460d9d01f51a0193ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B8/sapmachine-jdk-11.0.14-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "8b9fd31231d83d3711ab73c081bd65ef47dc062ca161de21f2e5c7f688a1d29c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B8/sapmachine-jdk-11.0.14-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.8_linux-x64_bin.tar.gz", + "checksum": "17a998a9ce8d93601d846b5851ae56778d9db9bc09929edafd3a7c8ae516b5fd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B8/sapmachine-jdk-11.0.14-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.14-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B8/sapmachine-jdk-11.0.14-ea.8_osx-x64_bin.dmg", + "checksum": "352bf17851bc5fcc5dfb107c94a1064fe34d66d0b15c39707e4527ace2edad7d" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.8_osx-x64_bin.tar.gz", + "checksum": "58a676f96049fc62661bc46f66f197a08b7329f4df0c57dcf3efa96e6ae103ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B8/sapmachine-jdk-11.0.14-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.14-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B8/sapmachine-jdk-11.0.14-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.14-ea.8_windows-x64_bin.zip", + "checksum": "1d65b5dccffff5624bb2bb4104ab7037e9c95e06eef6b8c75539c1d7d4b77365", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B8/sapmachine-jdk-11.0.14-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "85328bede04f1cb22d66e4dc4b3cd5f68b69f705bdffe427d0f39ce9dd70d868", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B8/sapmachine-jre-11.0.14-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "d93d97b6e0c5f2b8380d164594a16b6dd97758d301acb8bad9ee77ff76ab3a9c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B8/sapmachine-jre-11.0.14-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.8_linux-x64_bin.tar.gz", + "checksum": "fbcbfdc941fff8e264019349a63d2afdd2e257100a3e279d569816dd17d43047", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B8/sapmachine-jre-11.0.14-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.14-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B8/sapmachine-jre-11.0.14-ea.8_osx-x64_bin.dmg", + "checksum": "19b41388e813e60f59b31cffcc58a8d1d27fccb472544a6baf98c089b8505a2e" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.8_osx-x64_bin.tar.gz", + "checksum": "41c7f4ffca4c9e41841de292721dfd27ee98fb6ec4b7092baf131bd613c9efba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B8/sapmachine-jre-11.0.14-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.14-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B8/sapmachine-jre-11.0.14-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.14-ea.8_windows-x64_bin.zip", + "checksum": "45110bd1799473435eb874c11f565aa94700a5146c8cb0368b0a484fff8b2217", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B8/sapmachine-jre-11.0.14-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.14+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.14%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "fcbed943cdc7eb5f8fe405ea025d33920327f5ca42cac074b4e0bafe6bc4eea2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B7/sapmachine-jdk-11.0.14-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "58b295a73a4d18688925998850cf1ca8f7f8a46c0831f1e4b3a8ce3ace91291d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B7/sapmachine-jdk-11.0.14-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.7_linux-x64_bin.tar.gz", + "checksum": "c203c7d50b28a4a79f779f35571e9de54424a95b4d16bc777eeb719a998ef2b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B7/sapmachine-jdk-11.0.14-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.14-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B7/sapmachine-jdk-11.0.14-ea.7_osx-x64_bin.dmg", + "checksum": "252c643b2f6596d7a66697bf237310135350b64516874d4c187f7b8bbd885fba" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.7_osx-x64_bin.tar.gz", + "checksum": "5c8b918b19e8cd0365ea49a23127bec7d6cef48742acee475af9662337ad867b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B7/sapmachine-jdk-11.0.14-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.14-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B7/sapmachine-jdk-11.0.14-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.14-ea.7_windows-x64_bin.zip", + "checksum": "66db69d2b6f72a75398be9894d4821fefab60c1607d5ea2764ffcd06cc8bc865", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B7/sapmachine-jdk-11.0.14-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "67ede7b4801ef360f6914797400c32a25253ed31fd0c8db9251104cdb61c0fa5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B7/sapmachine-jre-11.0.14-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "317357d1c7e5cc256d13832fcf1f17b95448b86687d2b0a120ebc9629c017d90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B7/sapmachine-jre-11.0.14-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.7_linux-x64_bin.tar.gz", + "checksum": "26554626c66649ea07c033b2757e72e834b6b9fe989f593f2ee31cf71007be67", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B7/sapmachine-jre-11.0.14-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.14-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B7/sapmachine-jre-11.0.14-ea.7_osx-x64_bin.dmg", + "checksum": "7e10951a06917cd4adcd7859252905567a482c6253e46022eb90099b92d4f780" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.7_osx-x64_bin.tar.gz", + "checksum": "86e702fe5d40760a60f3e056a13a91e16cacb3d33ef84e9dd1f94cf612bbb1f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B7/sapmachine-jre-11.0.14-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.14-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B7/sapmachine-jre-11.0.14-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.14-ea.7_windows-x64_bin.zip", + "checksum": "82a2d1d709cf5c28e0e5ddbe7f9b365106db20dfbed21b1773707c0a7541d3bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B7/sapmachine-jre-11.0.14-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.14+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.14%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "f05b2fc477a47ada0b5e88f288adcfd8c000dfc1209bb8109fe021e1c6876f17", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B6/sapmachine-jdk-11.0.14-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "074d35d0b890999a060564fa318c3d593536b49ac0fd051c4c6a02bfb3eaf5d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B6/sapmachine-jdk-11.0.14-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.6_linux-x64_bin.tar.gz", + "checksum": "a195b105c8e444d68804190228468ab45b3c29d6417463eb443fac2de9f6161d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B6/sapmachine-jdk-11.0.14-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.14-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B6/sapmachine-jdk-11.0.14-ea.6_osx-x64_bin.dmg", + "checksum": "e92953d4aca02435f8c94b2df24858e6049140737b5ded00ecd154a8bd671fdc" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.6_osx-x64_bin.tar.gz", + "checksum": "cb5196d54f7f686f8d897c6d95944bf76ebc647708d44941a4f0b3718f1ad288", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B6/sapmachine-jdk-11.0.14-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.14-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B6/sapmachine-jdk-11.0.14-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.14-ea.6_windows-x64_bin.zip", + "checksum": "632eeee5cf55868747576c9626e5ca46a0ae3fc0a75311276a09fb70f403aa5d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B6/sapmachine-jdk-11.0.14-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "dd228b652cf9897af5859f13e38af7df7d00a81b0d8e6f08e61a241307723bb9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B6/sapmachine-jre-11.0.14-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "8801219d0d06ade5e35f739571c61cf0ea3b1439b87e409ab5feaddb91ade18c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B6/sapmachine-jre-11.0.14-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.6_linux-x64_bin.tar.gz", + "checksum": "5604157521e1bd29278467a31554ae65087268547947c12194a300f712930f33", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B6/sapmachine-jre-11.0.14-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.14-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B6/sapmachine-jre-11.0.14-ea.6_osx-x64_bin.dmg", + "checksum": "b63ed278d0890040bf87bc13a19243fe9cf430ceae1d8a40a463f0262a808ed4" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.6_osx-x64_bin.tar.gz", + "checksum": "2267c307812804005f943a4e8b182eeb95d4478fcc87a14fd9251cc2d075bba4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B6/sapmachine-jre-11.0.14-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.14-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B6/sapmachine-jre-11.0.14-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.14-ea.6_windows-x64_bin.zip", + "checksum": "bb1c3cfff5571eff05ceb557f358e58ea1ecfb6fab27e1c9f5a22ee0d394597a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B6/sapmachine-jre-11.0.14-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.14+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.14%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "610100ecb883a06d55a0f2dbf66eb87062da9490b288a73fab5ad49b837f8596", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B5/sapmachine-jdk-11.0.14-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "e73a9672bbced87a9280bb6455b2d26ac2c3decc09c45db5d5a6c45b6701fc7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B5/sapmachine-jdk-11.0.14-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.5_linux-x64_bin.tar.gz", + "checksum": "8fb32068f6b917fcb946c294fde9a8b1cefb6eff88942cbdef10346ddd40bdd4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B5/sapmachine-jdk-11.0.14-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.14-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B5/sapmachine-jdk-11.0.14-ea.5_osx-x64_bin.dmg", + "checksum": "c7717e3ac2e3220a894c81eb2a6086cfa23a23b013eb1edfb993cece7f023c7b" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.5_osx-x64_bin.tar.gz", + "checksum": "03e305f09f7c45b380ef66e4278d8aae9a218e9d32807f86b9e4885efc00f85c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B5/sapmachine-jdk-11.0.14-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.14-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B5/sapmachine-jdk-11.0.14-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.14-ea.5_windows-x64_bin.zip", + "checksum": "b83a12254d04658ffde986667dad76bb189a018c024aa8a9a9372596383195e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B5/sapmachine-jdk-11.0.14-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "98ab7ecdf7c6b149b66765a66cce423f0b91ab8892dcb9f73c9779fc3d27bb72", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B5/sapmachine-jre-11.0.14-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "80de73e4365a89ea3e4dbf791876a6e6f9353571b86cb686d0b7643564f91352", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B5/sapmachine-jre-11.0.14-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.5_linux-x64_bin.tar.gz", + "checksum": "7252218fdb379b49159fc7bdf09f395c61e50e9db2eae8a1a812eecb30b96242", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B5/sapmachine-jre-11.0.14-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.14-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B5/sapmachine-jre-11.0.14-ea.5_osx-x64_bin.dmg", + "checksum": "19c8af01b7d5e15e6a93767fc769cbe017e60d870f04e864cbdc23e6534f2396" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.5_osx-x64_bin.tar.gz", + "checksum": "b49620dd93c60fe6664474390a3eaee5ff2244d66f7b6492014a2b56f9573aa1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B5/sapmachine-jre-11.0.14-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.14-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B5/sapmachine-jre-11.0.14-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.14-ea.5_windows-x64_bin.zip", + "checksum": "9c347c01170750d6e2f9b1f9366dad6591f25a9ef9f9515536703d7262fbb466", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B5/sapmachine-jre-11.0.14-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.14+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.14%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "fe94117b8617b9b298ac0c4ab12036b4c20dc6d802da9483839999369aa1b75f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B4/sapmachine-jdk-11.0.14-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "f15741ba02cee3b3a904e42d844afea917756883497805c0413e53bed2c6e203", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B4/sapmachine-jdk-11.0.14-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.4_linux-x64_bin.tar.gz", + "checksum": "632bb0afe4e92a353717e6a502368df132bbf02ae9abfdd292bb220637c1ebf9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B4/sapmachine-jdk-11.0.14-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.14-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B4/sapmachine-jdk-11.0.14-ea.4_osx-x64_bin.dmg", + "checksum": "d39a372200bb24e8cc9dd64b4490a1d046dccfc1895e698ecb478c7f9bccbda1" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.4_osx-x64_bin.tar.gz", + "checksum": "20e5da9e727349d6c4436fabf5b0279370a04e11d01131cf91d41c01ef966ad6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B4/sapmachine-jdk-11.0.14-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.14-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B4/sapmachine-jdk-11.0.14-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.14-ea.4_windows-x64_bin.zip", + "checksum": "01a97847767f5a1d908d647e6bb325af8e47e0ed4ed1a3ff9935584437e33350", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B4/sapmachine-jdk-11.0.14-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "df4d40aff0de39eb7fd85807e959e66e3ad9c871bfa5a30ba17c3000ece1695e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B4/sapmachine-jre-11.0.14-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "a5d260fa8e8d1820ae53a2f40fc84d39ac892697903b43bac1f8dc70ebe5a421", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B4/sapmachine-jre-11.0.14-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.4_linux-x64_bin.tar.gz", + "checksum": "1853635618d778cdd7ce730e17bc8a21c1311d3c30e525dc3fdc02cdc92827f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B4/sapmachine-jre-11.0.14-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.14-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B4/sapmachine-jre-11.0.14-ea.4_osx-x64_bin.dmg", + "checksum": "cb003a9f9032d8ecaa9e054baec5b1276961623c44b32598d5a6e0c6a9f0a093" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.4_osx-x64_bin.tar.gz", + "checksum": "5c25cd4359b9026a5f202c67cd718b950529bdf3d85286ee96373c6be6db7e29", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B4/sapmachine-jre-11.0.14-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.14-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B4/sapmachine-jre-11.0.14-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.14-ea.4_windows-x64_bin.zip", + "checksum": "41afe3cf08695db9cb9bf0f8f72a8548aa8a463d9a7cede0a7d9e83405a87640", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B4/sapmachine-jre-11.0.14-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.14+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.14%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "c8493233893dd5b8b103142ef5bacf82cf4fbd86ee5942c2c427070277ca8c28", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B3/sapmachine-jdk-11.0.14-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "a3c512a4ed5857d0bf40a827562a71a76b156d3c49f2259b0f737c72e5970c4f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B3/sapmachine-jdk-11.0.14-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.3_linux-x64_bin.tar.gz", + "checksum": "f0713c68003754d22038e537424f3b92fea3ebbd09c75d21d185d1bfcb5c6770", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B3/sapmachine-jdk-11.0.14-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.14-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B3/sapmachine-jdk-11.0.14-ea.3_osx-x64_bin.dmg", + "checksum": "bf918315d7d74e26c1d416572bc4889288529c89b9e5db19b5f2b5cdfb62edc1" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.3_osx-x64_bin.tar.gz", + "checksum": "5d472b541f474906fb70319d0a3d32da619317933ae70fcebcf5a5d714b74d88", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B3/sapmachine-jdk-11.0.14-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.14-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B3/sapmachine-jdk-11.0.14-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.14-ea.3_windows-x64_bin.zip", + "checksum": "4d9af5bcde8e04c60a204a2a6797e781692d47de4f101cff39bc4a79984cd674", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B3/sapmachine-jdk-11.0.14-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "07a3a8671bdc1d529bd27d49a84998c7b7a917c822d03dfcf75e53d1f09c4549", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B3/sapmachine-jre-11.0.14-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "32a687af811117e646e98ffb251027b88ba9e97e5ea96b33e1d8899b47f1d732", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B3/sapmachine-jre-11.0.14-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.3_linux-x64_bin.tar.gz", + "checksum": "0f5c81e8c08417c63b9abcad284df4f19db364512a4f631f9a913c9acdd79eca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B3/sapmachine-jre-11.0.14-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.14-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B3/sapmachine-jre-11.0.14-ea.3_osx-x64_bin.dmg", + "checksum": "0ee697e242bb99d6cca87e3e44bfa2424c2e6cac8849f1752f040d2bd07733ba" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.3_osx-x64_bin.tar.gz", + "checksum": "028562bf6c20c00004ef2cf35dedf70f79bc70d1c3b5be4c2b5d3e2f994de384", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B3/sapmachine-jre-11.0.14-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.14-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B3/sapmachine-jre-11.0.14-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.14-ea.3_windows-x64_bin.zip", + "checksum": "75224541a90825bb1a0fc2693d1b4b233b4332f99203a0bcea36548b82f25014", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B3/sapmachine-jre-11.0.14-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.14+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.14%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "f508329f0d1736bc2dd1d84aa026f400ee9d13bfd5f183eb1e8c3eb3811dc0af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B2/sapmachine-jdk-11.0.14-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "6a08d2afd8597c2b9614db3366067f935fc95adc927e43a91368773f465087d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B2/sapmachine-jdk-11.0.14-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.2_linux-x64_bin.tar.gz", + "checksum": "a846f181fa0e027cd894f7ba08e1f394be10aeac5170d3c90290031287b72ab4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B2/sapmachine-jdk-11.0.14-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.14-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B2/sapmachine-jdk-11.0.14-ea.2_osx-x64_bin.dmg", + "checksum": "e7092b0623b7e279e074a94123f9a72cec63935576875566f70a1c731d8c473d" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.2_osx-x64_bin.tar.gz", + "checksum": "77e40371b5dd18b883ff4fc8db626f58eb94ac82cc5c9dcf438ace6b11009454", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B2/sapmachine-jdk-11.0.14-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.14-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B2/sapmachine-jdk-11.0.14-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.14-ea.2_windows-x64_bin.zip", + "checksum": "e11385bc651c1208299d59aae777f57fff093de4104e85a985b701173dbbe030", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B2/sapmachine-jdk-11.0.14-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "e120fc176caac9ce6f9f6f555297b67d4e50971f774c7dbe5e8f97628dfca42e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B2/sapmachine-jre-11.0.14-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "6dd2c80638c5a571f4d6cb00c38e552853e11e2eb2f18d92f0d511774513f377", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B2/sapmachine-jre-11.0.14-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.2_linux-x64_bin.tar.gz", + "checksum": "5d086e32d99282bed7002cce908e4e47f732babd63a7095902d8b93c2b77ef12", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B2/sapmachine-jre-11.0.14-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.14-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B2/sapmachine-jre-11.0.14-ea.2_osx-x64_bin.dmg", + "checksum": "b0ae8684e9f36ce23d3fa4880426d39477508e4f730cf8c4091d2304ca20d83a" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.2_osx-x64_bin.tar.gz", + "checksum": "db312b5a24c5538c4cb65cc91c7a6b55628a46b9ab123b050d491b41da505b42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B2/sapmachine-jre-11.0.14-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.14-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B2/sapmachine-jre-11.0.14-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.14-ea.2_windows-x64_bin.zip", + "checksum": "1177426b7a1738535d0a0b7048fcd432c6ad07118886681ddf087c75be25f49e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B2/sapmachine-jre-11.0.14-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.14+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.14%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "8530e38afa062841e2c9bdd86d7e0ee0b32be38da59fcb0d53617b86b039a125", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B1/sapmachine-jdk-11.0.14-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "4810fc5f4c04ef236da147e4c2c617cd116964b7f124758a6536b4e990a18528", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B1/sapmachine-jdk-11.0.14-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.1_linux-x64_bin.tar.gz", + "checksum": "2c0aad14a0c864710c18fa8721d182f82fd11b00ace02be6caf3330554efc359", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B1/sapmachine-jdk-11.0.14-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.14-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B1/sapmachine-jdk-11.0.14-ea.1_osx-x64_bin.dmg", + "checksum": "c477cf420f981a904253ab16c325566e4f7a1b789d13902c888dfa1e3bc0149c" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.14-ea.1_osx-x64_bin.tar.gz", + "checksum": "f094898140f1ebcd3f93144c55db1da91c76f91264b03cb1c9f0ad69495fa7f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B1/sapmachine-jdk-11.0.14-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.14-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B1/sapmachine-jdk-11.0.14-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.14-ea.1_windows-x64_bin.zip", + "checksum": "04d787093372ab0ae0120ca22ea5e681d4ea7172a176a594efbcec6f2544de5c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B1/sapmachine-jdk-11.0.14-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "9b86a0ee97145b8bad969135bc85183e98a5384a418d1007347804fffec10f6d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B1/sapmachine-jre-11.0.14-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "bde7cb67e31c81e525bba804dc65c04c8d7405553ff70bd2d0cf92a32e971c81", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B1/sapmachine-jre-11.0.14-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.1_linux-x64_bin.tar.gz", + "checksum": "14e6cbae3cffe33fb5adcb35943971b2e5b93683f4e9b0227cf9a67589f68bd3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B1/sapmachine-jre-11.0.14-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.14-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B1/sapmachine-jre-11.0.14-ea.1_osx-x64_bin.dmg", + "checksum": "b17a0644bc2867733bfa60ea6618f8eaca73dcde149aecf54890f2a45f0b35eb" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.14-ea.1_osx-x64_bin.tar.gz", + "checksum": "3e6f165ae2d40b9379d2f5b5292715381b0a835516d68caa56cab16249255677", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B1/sapmachine-jre-11.0.14-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.14-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B1/sapmachine-jre-11.0.14-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.14-ea.1_windows-x64_bin.zip", + "checksum": "638de1b76a19828f65e7afa8e1d53e53cdcdc2e82d36012c6efd370cf9a4c108", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.14%2B1/sapmachine-jre-11.0.14-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.13": { + "sapmachine-11.0.13": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.13", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-beta_linux-aarch64_bin.tar.gz", + "checksum": "17c3a972ea6a4f1c090303eb666a2e3a43c1eb6a4b74a1589ae2a4e17ccfd118", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13/sapmachine-jdk-11.0.13-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13_linux-ppc64le_bin.tar.gz", + "checksum": "54ae6157017c75addf6ebb1006aeac7c72c0ced54d34b2b93e22576b41f31a41", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13/sapmachine-jdk-11.0.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13_linux-x64_bin.tar.gz", + "checksum": "91bdf89bd23a6593343f89c98d5fd3d3942dd85f7d0927aaf2e4e32ec6e863d2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13/sapmachine-jdk-11.0.13_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.13_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13/sapmachine-jdk-11.0.13_osx-x64_bin.dmg", + "checksum": "28d09578cd76022950b873c38a3a0cd7e1fd243b044c106e3a9ccca2405518df" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.13_osx-x64_bin.tar.gz", + "checksum": "0fd703bbb510d75b5a120ad359e05a5c4c7b495c20b30b457b197329629f6757", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13/sapmachine-jdk-11.0.13_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13/sapmachine-jdk-11.0.13_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.13_windows-x64_bin.zip", + "checksum": "605aa78ba9c9aabcf303bf3efeaae3261c458ca17d3613591c4502fb4cb50aa6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13/sapmachine-jdk-11.0.13_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-beta_linux-aarch64_bin.tar.gz", + "checksum": "1c6a359de61065922d610bbe5e9d7ba2039f35c27d59c20e2237b0631ba45988", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13/sapmachine-jre-11.0.13-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13_linux-ppc64le_bin.tar.gz", + "checksum": "d5ce52127362f2a913b2eac1e152c37640064ae487fe49ff3527d07e16b84e31", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13/sapmachine-jre-11.0.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13_linux-x64_bin.tar.gz", + "checksum": "9b84ffe35df6063d94b9e6af0ad3d89928544ada4ad7e2312183f903f419ebff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13/sapmachine-jre-11.0.13_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.13_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13/sapmachine-jre-11.0.13_osx-x64_bin.dmg", + "checksum": "807e0d5f12a9e8bbbc4c87d732b9afd89a5ff41011b2df99ef6ab4a711dcbab3" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.13_osx-x64_bin.tar.gz", + "checksum": "de531a098804363cbbf98ffe0121acf65e3c3c91a5698c8c2e31bce1f30f1d2d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13/sapmachine-jre-11.0.13_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.13_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13/sapmachine-jre-11.0.13_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.13_windows-x64_bin.zip", + "checksum": "414a1b99e894b85b2acee1e8eb6e549ee8cf271b923b24c095b3a6b77cead1c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13/sapmachine-jre-11.0.13_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.13+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.13%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "93b40cdb830e759d9f8902afb7a71e377f24e4bc3711f697a27cf44b7dd582c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B8/sapmachine-jdk-11.0.13-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "9f557ae2454120a030c87ecc31caff125763252547c48ef3175c8247a57c779f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B8/sapmachine-jdk-11.0.13-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.8_linux-x64_bin.tar.gz", + "checksum": "be0002635c8522b3b92ee3bd2d0169b2e287fbeb27b99b917c47c97f6954bc21", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B8/sapmachine-jdk-11.0.13-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.13-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B8/sapmachine-jdk-11.0.13-ea.8_osx-x64_bin.dmg", + "checksum": "abb59948666ddb8f9d264103da4a37c91d444e84431c7392fab0412c378d3a7d" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.8_osx-x64_bin.tar.gz", + "checksum": "8e6d121af917822fc101767219c0473c059222743e841346a95a5240c73f60cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B8/sapmachine-jdk-11.0.13-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.13-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B8/sapmachine-jdk-11.0.13-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.13-ea.8_windows-x64_bin.zip", + "checksum": "7ffe0609a1fb4cb575a05dc079718bdca16712e2f0cf825a199c2971caa52b72", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B8/sapmachine-jdk-11.0.13-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "ba1072fd043a7780b62b02dfb61455b21b744601957a1868d4d0faffc32b892b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B8/sapmachine-jre-11.0.13-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "ef055754f0428cc59a041b55a9fd7781f41ebb1490e1fabb733bcf52eb818f77", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B8/sapmachine-jre-11.0.13-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.8_linux-x64_bin.tar.gz", + "checksum": "600c62199f774320c427402ad44cbc03fc19e362db947d4e41d6db703bcb84d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B8/sapmachine-jre-11.0.13-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.13-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B8/sapmachine-jre-11.0.13-ea.8_osx-x64_bin.dmg", + "checksum": "27405afd031123e6a9600481d37cb54ff0e2835b88ac9810ed550ccfe5ed3e1b" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.8_osx-x64_bin.tar.gz", + "checksum": "24144198b832dfa333398a081fb8b7de2894e984581a3e79ca17516e6bc6b7f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B8/sapmachine-jre-11.0.13-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.13-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B8/sapmachine-jre-11.0.13-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.13-ea.8_windows-x64_bin.zip", + "checksum": "8023349ae78ecb739dafcfc90bb186de112bc3b6c6ecf81184c69c8ce608ab81", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B8/sapmachine-jre-11.0.13-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.13+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.13%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "f0e55f35de60dfeb469c38afa083e45cf2bbf338fc0a69c677aba16aa55279ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B7/sapmachine-jdk-11.0.13-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "df298c628806340af8cb86f1b8652f88b72b6bfbb1e8b61559418895f51874dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B7/sapmachine-jdk-11.0.13-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.7_linux-x64_bin.tar.gz", + "checksum": "dfabf2b396696cba128004f38d32100352885f7613f2a693a9e5b83cea5de5b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B7/sapmachine-jdk-11.0.13-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.13-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B7/sapmachine-jdk-11.0.13-ea.7_osx-x64_bin.dmg", + "checksum": "eedc3df8c4d95e9cf5ca1b1a82f925ea3cf60d7a71dbee5f656146d978d7d5fe" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.7_osx-x64_bin.tar.gz", + "checksum": "735eb4f9b8636384240d00d81987447bfaa02ec07ad204cf706e0d69453e32b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B7/sapmachine-jdk-11.0.13-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.13-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B7/sapmachine-jdk-11.0.13-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.13-ea.7_windows-x64_bin.zip", + "checksum": "a8d1734bddf2eee547f9cd74893188bdb1c19f1ce25c964e2bae53a3d72b7f42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B7/sapmachine-jdk-11.0.13-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "b64dfca5f5d81287830aac5b89be0daacef23397c0b97c50f21bf6636d55f45f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B7/sapmachine-jre-11.0.13-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "7d517b5fa1549df770cb7aa1fe38ab1d72020011259e1ba31f1c0834d8b48aca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B7/sapmachine-jre-11.0.13-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.7_linux-x64_bin.tar.gz", + "checksum": "879c4cb49c96d9c8f47a6b998409efdcdba89319cf789a266207f8a0017db198", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B7/sapmachine-jre-11.0.13-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.13-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B7/sapmachine-jre-11.0.13-ea.7_osx-x64_bin.dmg", + "checksum": "5b4e50f62118600c82c15d7dd729fe14ff9544de347695594bc76a8040a877b5" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.7_osx-x64_bin.tar.gz", + "checksum": "1d61a77dcb56b8e6ddcb0f87f8c3ad48b2726e2eea50b4f51ad4038ab95f14b1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B7/sapmachine-jre-11.0.13-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.13-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B7/sapmachine-jre-11.0.13-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.13-ea.7_windows-x64_bin.zip", + "checksum": "35693b8c7f381fd5a178b868958f18afd4d841fed7dec136d2a717bedab14019", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B7/sapmachine-jre-11.0.13-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.13+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.13%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "793bdb5c8316cb27620d82b8b4dc5d260b481a0cf343320eae9b5d30235e0276", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B6/sapmachine-jdk-11.0.13-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "2c12562b26994e16c682e5c350521414d603779b5d1f5124b07208fc8daaeec4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B6/sapmachine-jdk-11.0.13-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.6_linux-x64_bin.tar.gz", + "checksum": "67fa88f8ecbd31da6490c4d06d4b767ec1f045e7f0a307698ff99d996f421914", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B6/sapmachine-jdk-11.0.13-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.13-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B6/sapmachine-jdk-11.0.13-ea.6_osx-x64_bin.dmg", + "checksum": "d2ffeb28104f77fb820475a0827b6070beb2e3090082a1e7bb1b3c9cc52bc0b5" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.6_osx-x64_bin.tar.gz", + "checksum": "06ca71be88d6ca907e94c12a80805f9e6334cf3241a5e691e0c532e76487b62f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B6/sapmachine-jdk-11.0.13-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.13-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B6/sapmachine-jdk-11.0.13-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.13-ea.6_windows-x64_bin.zip", + "checksum": "4e15021e521168161027742d532f59c575d00304c66502b5c15c890447334dca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B6/sapmachine-jdk-11.0.13-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "ee9da1caa121c472f3e280107a58af10c4ffd7bd5f3080820d5a2c0c71634d34", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B6/sapmachine-jre-11.0.13-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "a06d931f1638e58a4c5f44f5884828622911d97ed22595a634a97c84aae03d5a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B6/sapmachine-jre-11.0.13-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.6_linux-x64_bin.tar.gz", + "checksum": "7620d1fa7955c16ad4aa321c475eacf793a9c902326382d0b1c945dfd3b4a8b3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B6/sapmachine-jre-11.0.13-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.13-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B6/sapmachine-jre-11.0.13-ea.6_osx-x64_bin.dmg", + "checksum": "ac86d2b583c356948d0085382b6f981a27a039852929ee412a96f001f6203066" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.6_osx-x64_bin.tar.gz", + "checksum": "b10f741bc4cc5354ae68023a7800cbd061b1facde100391a3617661838b14b76", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B6/sapmachine-jre-11.0.13-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.13-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B6/sapmachine-jre-11.0.13-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.13-ea.6_windows-x64_bin.zip", + "checksum": "2e88ae0ce0f4bb4624811db229b7a1fae4827ef49d9bbe250211db190d669951", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B6/sapmachine-jre-11.0.13-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.13+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.13%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "61cb20deb6a9dad4ce2763b1bd8c4c6b89707bf99ae699200ea51e87cdceb080", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B5/sapmachine-jdk-11.0.13-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "57ae23563cf5c8118897e4bbb8b63bcf3e3a319802417e5b257af9e580f64dca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B5/sapmachine-jdk-11.0.13-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.5_linux-x64_bin.tar.gz", + "checksum": "43a09da63232f7d646e069fd716779752149738123de3bbe773d1729d57f4739", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B5/sapmachine-jdk-11.0.13-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.13-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B5/sapmachine-jdk-11.0.13-ea.5_osx-x64_bin.dmg", + "checksum": "a8a0d24a76ec428eb92ac5cee1ee651481dde9249440e45a59fc7fe13807e216" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.5_osx-x64_bin.tar.gz", + "checksum": "451aa3a3a80ff99989692133293443bb891304cf5ae5d5ee0d163b224d6b7ea4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B5/sapmachine-jdk-11.0.13-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.13-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B5/sapmachine-jdk-11.0.13-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.13-ea.5_windows-x64_bin.zip", + "checksum": "9e941eb4df4b976a3d5196df4a6ed5b4fa6bd5a54bd53992b270f45a470d91ba", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B5/sapmachine-jdk-11.0.13-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "6956a35440afc533965e376bbf808b59e5876e9e03f74c959a1068a772184859", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B5/sapmachine-jre-11.0.13-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "ddad5b107575b14e1a730ed321351728a450988f69d2aade598e781ddd9a6fb9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B5/sapmachine-jre-11.0.13-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.5_linux-x64_bin.tar.gz", + "checksum": "38c52e651ab34bdcebccaa2e6a77a8d0c8b1b709e5789a840749371ad78e98dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B5/sapmachine-jre-11.0.13-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.13-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B5/sapmachine-jre-11.0.13-ea.5_osx-x64_bin.dmg", + "checksum": "431d1e12ad40e4e7b10f56697d704de56356e19f1c2f3a732aa7f9a7baa9180b" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.5_osx-x64_bin.tar.gz", + "checksum": "d9b7b87c3a8c696651e66476e63867185f50d0e195c4c0acf744f5ccf77f9d67", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B5/sapmachine-jre-11.0.13-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.13-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B5/sapmachine-jre-11.0.13-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.13-ea.5_windows-x64_bin.zip", + "checksum": "27b277edf0e83cb54f83cc35c5e38e2ea60c081e51d8500df616419c342ac6ef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B5/sapmachine-jre-11.0.13-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.13+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.13%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "f795460d55e7550fa19a1a0018194152dc3fa9bf7167643ad77866b32546e2c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B4/sapmachine-jdk-11.0.13-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "79d1b619beaa9d6d61a6a4e9fb64cada132515e16f52e927ea9bc3a511eee863", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B4/sapmachine-jdk-11.0.13-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.4_linux-x64_bin.tar.gz", + "checksum": "a127c22d67d910656a11fb57c4676c5aaea711424276adb62070bba956407e11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B4/sapmachine-jdk-11.0.13-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.13-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B4/sapmachine-jdk-11.0.13-ea.4_osx-x64_bin.dmg", + "checksum": "4e29c662a125168e54b35794fbc74329057d267602ba65d448ab281b3f865f37" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.4_osx-x64_bin.tar.gz", + "checksum": "3d0019bd76143c38be4932d38fe151f100c5b56b50f6c818f5bf9d761c7970eb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B4/sapmachine-jdk-11.0.13-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.13-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B4/sapmachine-jdk-11.0.13-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.13-ea.4_windows-x64_bin.zip", + "checksum": "398a16d2e60bd3a27ad7b3371a20a2ccf7efd61da1c02e2eed4c293cc638c382", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B4/sapmachine-jdk-11.0.13-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "37256372dd5171bf436b90b4163517b7a37f13415317eab4ce5dbfb543be7c6f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B4/sapmachine-jre-11.0.13-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "e602abd6511b050ad504181ae815326e591c368d7413178f2ce24f98937240a8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B4/sapmachine-jre-11.0.13-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.4_linux-x64_bin.tar.gz", + "checksum": "f96a014a360b4d4870e80c1adf7ede0688921c9aee99036bfedd3c84875b54c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B4/sapmachine-jre-11.0.13-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.13-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B4/sapmachine-jre-11.0.13-ea.4_osx-x64_bin.dmg", + "checksum": "a70338d882109c55f7ad3dccd609c7dee86dfd439f6dec1aace81d192fff5623" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.4_osx-x64_bin.tar.gz", + "checksum": "e038b1a16de988c9fe46306195904795757963cd8277ce3170b432a294ae0dc6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B4/sapmachine-jre-11.0.13-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.13-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B4/sapmachine-jre-11.0.13-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.13-ea.4_windows-x64_bin.zip", + "checksum": "77d7dc1ffbbedb0cf915953cc48865e735e066fc6af60e1dc535d61db75ccd16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B4/sapmachine-jre-11.0.13-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.13+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.13%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "41fe52fe4ce5d177473f23994a741cd08a4b47efe4a8415830b940ed6325f6e0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B3/sapmachine-jdk-11.0.13-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "83f2a96e7e00e7354cd464f81935973beb55a4405734c5e88b77d8226dd9b746", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B3/sapmachine-jdk-11.0.13-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.3_linux-x64_bin.tar.gz", + "checksum": "27af58d4b7394189232c4929a6b34c22a2db58d50285f56834c0e1d6921f21ab", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B3/sapmachine-jdk-11.0.13-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.13-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B3/sapmachine-jdk-11.0.13-ea.3_osx-x64_bin.dmg", + "checksum": "50895e44aef0e07e90c1aa8bac1e6590e993a522f641429eb51825feb5a8fdc5" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.3_osx-x64_bin.tar.gz", + "checksum": "7a5ce5def3bfcb9bddcc68c6e0f1c6b3b7740cd128ec559d3c85f87607ecd4b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B3/sapmachine-jdk-11.0.13-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.13-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B3/sapmachine-jdk-11.0.13-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.13-ea.3_windows-x64_bin.zip", + "checksum": "c75cf7d6f1a23f21e207c02afa2c321d7ee28f9d5ffb5fefcf69db69976b336d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B3/sapmachine-jdk-11.0.13-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "769b91cc58a15232316897d2e59b92fbdfb204830502b54b2acc22b834871ab9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B3/sapmachine-jre-11.0.13-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "be8966b2cbc83c69e50009867501f9d58ca9488487e6fe84e7b870e8332dc595", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B3/sapmachine-jre-11.0.13-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.3_linux-x64_bin.tar.gz", + "checksum": "0180436a8114bc9d89d5ad5c4dd42d2a34b3e5788605f91a547a74cb94992571", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B3/sapmachine-jre-11.0.13-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.13-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B3/sapmachine-jre-11.0.13-ea.3_osx-x64_bin.dmg", + "checksum": "42ba82649453202ddb8503229df5d61457371a779df4be5b23294be235911366" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.3_osx-x64_bin.tar.gz", + "checksum": "05d36f5d9b69b976dcf597ee227c70ddaee6b080910d832955c52167758f141f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B3/sapmachine-jre-11.0.13-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.13-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B3/sapmachine-jre-11.0.13-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.13-ea.3_windows-x64_bin.zip", + "checksum": "ceea13f0e66b9690e41dfbb365c0dcf26438022b4b2408d4945ae0dbeee0b7c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B3/sapmachine-jre-11.0.13-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.13+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.13%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "a93e4cb9667ba2946f72550921cd19f37b3adac4d6711022c4f9326fe2e8527f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B2/sapmachine-jdk-11.0.13-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "29a35a23657083ee8b1894ecd613253b796a3cebdd009ef15b728f93082e31e6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B2/sapmachine-jdk-11.0.13-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.2_linux-x64_bin.tar.gz", + "checksum": "04bcb70310c1cb139146769404cd3336cbd283f2908320dcfad045a51f3a9337", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B2/sapmachine-jdk-11.0.13-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.13-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B2/sapmachine-jdk-11.0.13-ea.2_osx-x64_bin.dmg", + "checksum": "b2f0b5d07bf2078c8165074e9163b16ec53df001eac669adb22205a281b5af6f" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.2_osx-x64_bin.tar.gz", + "checksum": "9600e00b6587e904da6c7eab029af8a2667da0b44fa82569a14af4b7ba782e33", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B2/sapmachine-jdk-11.0.13-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.13-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B2/sapmachine-jdk-11.0.13-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.13-ea.2_windows-x64_bin.zip", + "checksum": "c71a21ad119931c8b0110bd604656f440568acd955f95bd071cf434a9d675171", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B2/sapmachine-jdk-11.0.13-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "1f8efdd626071ffe2870bd02283ae8ff81c8665f4c3ab53b32cee15918613235", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B2/sapmachine-jre-11.0.13-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "cba55040c92ce4ae5185c89d4de73ef497a2fc92e02e3fc57ed5bdb495639a30", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B2/sapmachine-jre-11.0.13-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.2_linux-x64_bin.tar.gz", + "checksum": "cbac0fdd10e72b9d2bc32fc7e20dd88931d6c6d9cdbeb031de19a7f2e2b332d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B2/sapmachine-jre-11.0.13-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.13-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B2/sapmachine-jre-11.0.13-ea.2_osx-x64_bin.dmg", + "checksum": "1899c2fa6b4a2870713ba4ddd6f2e613d38fec5e825746f49184757427e968eb" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.2_osx-x64_bin.tar.gz", + "checksum": "78c2fd8f25ce070e9fd270a023857b7ae0846d6970718d5e245d32387ad03bda", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B2/sapmachine-jre-11.0.13-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.13-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B2/sapmachine-jre-11.0.13-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.13-ea.2_windows-x64_bin.zip", + "checksum": "c93c649ea661076e5ac7bb92f47d1678ce099c5c92d88383e5998f501c594804", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B2/sapmachine-jre-11.0.13-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.13+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.13%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "38aebf4a65f36d9b6f99d7582cb49209faaf8c04a89b028bb123a18b22d9cc13", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B1/sapmachine-jdk-11.0.13-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "9d1c929847b1b211fe06c84a07691e6a86d55a2186ddff851b6a631baac54b0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B1/sapmachine-jdk-11.0.13-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.1_linux-x64_bin.tar.gz", + "checksum": "70c43bd76716cdfb29aae3d463b4b7889096a21e53ec2854c7aaddb038a8016b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B1/sapmachine-jdk-11.0.13-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.13-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B1/sapmachine-jdk-11.0.13-ea.1_osx-x64_bin.dmg", + "checksum": "a3f996df6c27838c5dedfd4759bfdae675195c300acc336aa662b53328f987cd" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.13-ea.1_osx-x64_bin.tar.gz", + "checksum": "5290f4b3a1890618631518427c2b1e8b28f7c9c9940c6b249981007cc3af53da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B1/sapmachine-jdk-11.0.13-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.13-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B1/sapmachine-jdk-11.0.13-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.13-ea.1_windows-x64_bin.zip", + "checksum": "5ead79c039c5de289ae058f061546bd93d56f438f18e587d85e5466ffdd568d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B1/sapmachine-jdk-11.0.13-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "a1e0ff181128260d2dace3bfd4860ffe211b9a8d4abf74bca40bb3b32923c363", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B1/sapmachine-jre-11.0.13-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "dee859251cf0f030ba1e7c8d02fc2e5fcb302d110d75de8a0b4ca3be0383445a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B1/sapmachine-jre-11.0.13-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.1_linux-x64_bin.tar.gz", + "checksum": "ed3d7e90cedf496354c3a4e4ffe6608a84ed1428452e8574c47e4b82384a415b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B1/sapmachine-jre-11.0.13-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.13-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B1/sapmachine-jre-11.0.13-ea.1_osx-x64_bin.dmg", + "checksum": "b5501b5392f7e68604254ea894af3b4d1fbbf0a7458d13a642fb1db3a81ceb44" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.13-ea.1_osx-x64_bin.tar.gz", + "checksum": "b17002b9af4e1753dd4881ddaa2b326aaf0a24508f2b5771dc3ca8ae99a4e275", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B1/sapmachine-jre-11.0.13-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.13-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B1/sapmachine-jre-11.0.13-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.13-ea.1_windows-x64_bin.zip", + "checksum": "8bb89eb245c5a03dd93c1b34cfd637e73b27e41f8ba5c373528c0cf8ff14ce1e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.13%2B1/sapmachine-jre-11.0.13-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.12": { + "sapmachine-11.0.12": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.12", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-beta_linux-aarch64_bin.tar.gz", + "checksum": "4405e2cc3dc0661e27a5e39f802f698c4fd7425d51b4c3f4e56dff7949940584", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jdk-11.0.12-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12_linux-ppc64_bin.tar.gz", + "checksum": "d6163a77a81f1818db5a7127c061e538cd7a601cd83b40565266a5df9bbb7bb4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jdk-11.0.12_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12_linux-ppc64le_bin.tar.gz", + "checksum": "ea34cb6039b67e65d90cdca0162761d2e73ea4743fd9b6244b2f7eb08aa9d801", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jdk-11.0.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12_linux-x64_bin.tar.gz", + "checksum": "f999dd243d00ee037ade946ed9c6c13217636666f4e433f019b635df6eab8f5c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jdk-11.0.12_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.12_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jdk-11.0.12_osx-x64_bin.dmg", + "checksum": "ca43ae0b88a984fad84d53a0ad846c775f08410b96fb26dd9d93d77458cf847b" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.12_osx-x64_bin.tar.gz", + "checksum": "57389db3ec283650cd98ea2a018be10dfccee489a73f065e97722c422a318f11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jdk-11.0.12_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jdk-11.0.12_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.12_windows-x64_bin.zip", + "checksum": "344407b8525bf3d7d5a5866dc9c90c151140294d67f32478b1c9f565c0de6d8a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jdk-11.0.12_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-beta_linux-aarch64_bin.tar.gz", + "checksum": "fa51e9db8731d2f580b27897ca0af0ef1297341c3c0509e8065922da960265ff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jre-11.0.12-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12_linux-ppc64_bin.tar.gz", + "checksum": "bdce6111abe29c2664166c803ebfab9a33b90c81c62ca619e93f269c5ddcadbe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jre-11.0.12_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12_linux-ppc64le_bin.tar.gz", + "checksum": "c2101cc90ceef46b9dbd17a96638901ab733904cec00a5ff3ccefc8e9c699799", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jre-11.0.12_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12_linux-x64_bin.tar.gz", + "checksum": "8d79c1881f1e826b2b0b0bf082f0c4cd0086d9be78808a04b9a17bf37af133a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jre-11.0.12_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.12_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jre-11.0.12_osx-x64_bin.dmg", + "checksum": "46b0e474c7c2c27c27295f05b60b3f424b4fab149efe615bb241235579d24263" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.12_osx-x64_bin.tar.gz", + "checksum": "be0fd98af0334b3c61bd3807ff705abee7153598c37cfc5fb375f1b84bae2aa5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jre-11.0.12_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.12_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jre-11.0.12_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.12_windows-x64_bin.zip", + "checksum": "7ed044cbd9778ed6c9581f387ca7b3392bd343e37055cb5b74072740389a2949", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12/sapmachine-jre-11.0.12_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.12+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.12%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "f442eeb4948355dc817e1a6dd02e7806f50bc2e6118df7a389b845b1ec08bf2c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jdk-11.0.12-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "0c2d04ae43d9fee01f126ec19dfde0c777566af3795b528da4478fca7221b61f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jdk-11.0.12-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "6bdd6161be506096fd4e73e84a896cfe8266fc4af99c19d6f682e761ee3af83b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jdk-11.0.12-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.7_linux-x64_bin.tar.gz", + "checksum": "42faeabcf91e3775d02d33297618cc89ef8cc36936212563c9c96608d7573b4d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jdk-11.0.12-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.12-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jdk-11.0.12-ea.7_osx-x64_bin.dmg", + "checksum": "cadcdd28fbaa5022b4fd89139b8aba0c230631714b4ed48c39c3308415b4613e" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.7_osx-x64_bin.tar.gz", + "checksum": "b40ccbf9e4d7245f3db5f42a5c59d4be9b05cc355e7e3e12a19b706554204457", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jdk-11.0.12-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.12-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jdk-11.0.12-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.12-ea.7_windows-x64_bin.zip", + "checksum": "d9fdee6611ee95cf0e43239e1b986cc209239d0a5ffe700ed50fe0b778df3943", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jdk-11.0.12-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "b23b25d4d62ff8eee2577adf9232ad8b907343a1390b5ef02ff802950a8fe935", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jre-11.0.12-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "96b4eff41f05aeb51f2924e7b6c345bc3b8302ff42eedb6a076ab483a96dd08e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jre-11.0.12-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "75496ee9d6397ec3edfe6e87cb67fe344a5a048ee8b704c3ea64b5a5cdc74f3d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jre-11.0.12-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.7_linux-x64_bin.tar.gz", + "checksum": "909407be0909691343d6fbeed4b5dbb98411c19e6867f911a805ddac60396371", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jre-11.0.12-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.12-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jre-11.0.12-ea.7_osx-x64_bin.dmg", + "checksum": "d0729519c7cad142728dae97ac5c0bce5904f8a42740b25edd04aa6177e2e2bb" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.7_osx-x64_bin.tar.gz", + "checksum": "8fc917ff4b8445084945570c6228a81738fb1f060eee80640718393cbf6d0938", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jre-11.0.12-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.12-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jre-11.0.12-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.12-ea.7_windows-x64_bin.zip", + "checksum": "55c5c90e9459e174f2ec6a749396b6c7c6546e2eb782c3dce5cbd2bb458fba02", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B7/sapmachine-jre-11.0.12-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.12+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.12%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "eb40eada2edb2213adf6d47f674a9b2031c5b71d8d2d08725ddd2465450b9dfd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jdk-11.0.12-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "aa783b9786ffe88dd2ea523afc8dd9d6e6eb23f74f1f309af73ef83dc95579ff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jdk-11.0.12-ea.6_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "0ba677df14fbcb248ac26576c629c16577f7b09eaf80d45240bc949fcb67a537", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jdk-11.0.12-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.6_linux-x64_bin.tar.gz", + "checksum": "ee163030b57cf4cd86f42a78b9786a95c56563e0a7e3c11f5f721de273af625a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jdk-11.0.12-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.12-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jdk-11.0.12-ea.6_osx-x64_bin.dmg", + "checksum": "c4815c0589653659f91e45c87e07c795f63ad1f30ecb431659a53126fcabdd94" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.6_osx-x64_bin.tar.gz", + "checksum": "e2573736721e0949ed6a0e9359a5265586b02fcda96c53101d62ca3d8ee7d608", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jdk-11.0.12-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.12-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jdk-11.0.12-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.12-ea.6_windows-x64_bin.zip", + "checksum": "baaedacc24d9eb0ea37baf506d9f085ef190e7d8577fd58ab7cd63fdb78ea6b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jdk-11.0.12-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "b4b1c8ec6bcbe7b1482780846149096fa9fc0753d05f3e261e890556644aa35c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jre-11.0.12-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "2e26b6737253b9b44d212c992c6e7ceaadf00c8389c4085295ca3e56e435d254", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jre-11.0.12-ea.6_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "dd3edd85eb91a20b8280884111d34b10765913b21724b5affb0d152f0e8f0940", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jre-11.0.12-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.6_linux-x64_bin.tar.gz", + "checksum": "091e15b8167782abb803cdb6873ec8160b9089b06863fa98300d5b4679c3a546", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jre-11.0.12-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.12-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jre-11.0.12-ea.6_osx-x64_bin.dmg", + "checksum": "ba33f47c5bbeec8f528e21143a3099183029ac3042d77c29c443cdebd8375437" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.6_osx-x64_bin.tar.gz", + "checksum": "277b6a2695c77d6087b560a3e4f39a886d906113289f74e6c141cffdd8e484b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jre-11.0.12-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.12-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jre-11.0.12-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.12-ea.6_windows-x64_bin.zip", + "checksum": "ed6e982892736ba93bb1013d9f767f4844e2e1bd0f14d7eedce1c37a25bf2297", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B6/sapmachine-jre-11.0.12-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.12+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.12%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "156b0e505fa1ae822407ac574012a8e0458d992d813099357a73c1f59ce5a8b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jdk-11.0.12-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "1afae1d189f18206616df1472d3193d96d32d2cc00937d4eca7f997f35c4c8ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jdk-11.0.12-ea.5_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "e9994b65e6a46cdf5b77981039e1b546320b41e91039c4330acb1c1fa9f71c9b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jdk-11.0.12-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.5_linux-x64_bin.tar.gz", + "checksum": "429e885da0cdb5b2895a1dbd8b01503d67da39bc1548c8b4840a7771e0ddf45f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jdk-11.0.12-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.12-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jdk-11.0.12-ea.5_osx-x64_bin.dmg", + "checksum": "fca25d78faf2d11df63f5b2098790d7e3c39ddc23534aa004329f69565084e7f" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.5_osx-x64_bin.tar.gz", + "checksum": "386d876c411d513dd4ce49702fa9413b7ee88b9395d8a34a4cf4bbc9ab72d4a7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jdk-11.0.12-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.12-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jdk-11.0.12-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.12-ea.5_windows-x64_bin.zip", + "checksum": "ce034f413fd53450f291ba5edd5713652c2818b08fdf6c305a1dec3139344528", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jdk-11.0.12-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "a5e30bb4b421a2b6958a0904c847f97bd2cf3f298904f1f62ce5d501fb2034d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jre-11.0.12-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "c23624607c396591616559bd2ffb3318f0325edac6e7e34edfcac38ada8c2851", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jre-11.0.12-ea.5_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "1545745966e843b65899a25bd1fa78f7208114c3f2c48145d44b45b520fe0e87", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jre-11.0.12-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.5_linux-x64_bin.tar.gz", + "checksum": "8a1aab9724a5d42809feee4424cf41fd994ced7c44cd4dc96824f08fc2ac9963", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jre-11.0.12-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.12-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jre-11.0.12-ea.5_osx-x64_bin.dmg", + "checksum": "da1b8e457ef6632dc577b37be72221a7322330d32aa5689660be619482d68b76" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.5_osx-x64_bin.tar.gz", + "checksum": "95c1319990b51d1d4ecac286cec408c2cbb85b6e9b5e7c4777f1bbdaafc0d7ff", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jre-11.0.12-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.12-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jre-11.0.12-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.12-ea.5_windows-x64_bin.zip", + "checksum": "a666d45aa199e958ef056062c1b2f7df8fbfadad326482050bde3a2227e61305", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B5/sapmachine-jre-11.0.12-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.12+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.12%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "cedbe711027e20ad6924d3a6c9c65fb2c165364f57ed6ed6dd35a265d13985f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jdk-11.0.12-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "bf7ab7d2758313dec4924e2a7c3fdbdc1931123101e3779c7fd2a4984f2a1894", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jdk-11.0.12-ea.4_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "ac2f352e9240c706e3d2c9e3b462270ced29548ff434ff0cc766d0f18adfffca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jdk-11.0.12-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.4_linux-x64_bin.tar.gz", + "checksum": "2a5a83ef63fd9a07d329f63a30d54d45e0e800cafc04ec2e953ee62f299e771b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jdk-11.0.12-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.12-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jdk-11.0.12-ea.4_osx-x64_bin.dmg", + "checksum": "9ad73a3b33711a32f5cadfcf91cdf351586fcc32cfc86dbe4e8851d476a73de7" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.4_osx-x64_bin.tar.gz", + "checksum": "5ea4c561ef9b9f299091a5e89184610f992126bfd378a58528f64d3371b27b98", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jdk-11.0.12-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.12-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jdk-11.0.12-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.12-ea.4_windows-x64_bin.zip", + "checksum": "0ccb42ac3f2bb067deababad0f6af28179208ff9d3da42248dc6bde6e4878140", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jdk-11.0.12-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "ee3e6ba9135ef32e0e9dbaec5470871fa35ffa2c7605827929d3b46b74788bdb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jre-11.0.12-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "4567aec4a5283c4cef6e5d65d9ee21cbdf775512ca26a8629aa7072fe81c1c34", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jre-11.0.12-ea.4_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "90a576151b173ffa15fd7a94d0da980e9688d4cb5bdded3a135434757d7d8e49", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jre-11.0.12-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.4_linux-x64_bin.tar.gz", + "checksum": "12c0e5a365b3de2b45229241788a400ce0f27a6769debd77bd72393fbe387835", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jre-11.0.12-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.12-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jre-11.0.12-ea.4_osx-x64_bin.dmg", + "checksum": "bc80ae2b802f6d7b8c6e5eb22adca3825485123e7331de95d7085352473b8006" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.4_osx-x64_bin.tar.gz", + "checksum": "48f0f2f23be0bf0ba0b448baf381f2d1c6d09fdbde877211b11f9f8e8200557e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jre-11.0.12-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.12-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jre-11.0.12-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.12-ea.4_windows-x64_bin.zip", + "checksum": "4dda78f932b5c96b8228a27551d2038538da0c431a5ba26be5ec13ee62d7b4e3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B4/sapmachine-jre-11.0.12-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.12+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.12%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "00e64b64b3fce3b626e2fd5a38e1f623dfad97d389f7aa154abfdc61d80a89fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jdk-11.0.12-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "b052ed799f8250d2028417817c78d0e9d6925e5e35f642b2c93e6a10078d4c0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jdk-11.0.12-ea.3_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "2ccc80edfaa06e345160a3a37baed0c047d03d78dadcbfd7e401b3af9753a510", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jdk-11.0.12-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.3_linux-x64_bin.tar.gz", + "checksum": "90ca253d13f5c29a5ab5059588520a5ba571c7994ebc48e050c498375bd810b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jdk-11.0.12-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.12-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jdk-11.0.12-ea.3_osx-x64_bin.dmg", + "checksum": "9975fa90ddf8e136936ddb1060d90fd81a82ecc7f1640ab5bd297dc38a4dbf8e" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.3_osx-x64_bin.tar.gz", + "checksum": "fac8ae66ea3c7acba986982b9177635a59c27d9bcefaeba111e6ab25071fd07d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jdk-11.0.12-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.12-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jdk-11.0.12-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.12-ea.3_windows-x64_bin.zip", + "checksum": "49401a326f8f8e2f28af870d04a3e19f158d537eed3af656e9d08b15e1457cc8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jdk-11.0.12-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "40699a0d222a2afe5bc3ef5e814fad06c12e1d1414015124430c71d8b5a63bf9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jre-11.0.12-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "095f93f604921ef2ae4fed5be25b3127721136c1fd46f4650b472157854dfc01", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jre-11.0.12-ea.3_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "1c8899c51331ac4801d4b68099b46ff025ec03beae9eb47075a08b1bcb3b5582", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jre-11.0.12-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.3_linux-x64_bin.tar.gz", + "checksum": "a055b381df9ccd10d5a161e8437dcc124d5413de8665a0936406ca78d4eb3af5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jre-11.0.12-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.12-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jre-11.0.12-ea.3_osx-x64_bin.dmg", + "checksum": "326210409c7e490a7fd2a031aea5749c641ddce3fed148cab48722c781d1f166" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.3_osx-x64_bin.tar.gz", + "checksum": "c85c37a65ff1f48751165e243c68e688cf6e9339b71eec913a95d6d7f99648da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jre-11.0.12-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.12-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jre-11.0.12-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.12-ea.3_windows-x64_bin.zip", + "checksum": "dd7c247c32bf1d0dd24e4f1938bb1fe82b88e67f0a50d6c521a3682e0553e66c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B3/sapmachine-jre-11.0.12-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.12+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.12%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "924ec2abea629f9d55cea46974bc451c4d87c05aa399357f5e4acb3792144708", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jdk-11.0.12-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "6ac4be6763d4b03be269ca95fe7482b172cdd14e7b992abd1643e78dc94f3fdf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jdk-11.0.12-ea.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "0c836ca3ac062c973792fbe9d44e4ba02999ab99d52cf7ce56680091516053e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jdk-11.0.12-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.2_linux-x64_bin.tar.gz", + "checksum": "6ab7ac7dac9d786ea464919369738bfd39fadb1decfdac5a8ba76a43989259a4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jdk-11.0.12-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.12-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jdk-11.0.12-ea.2_osx-x64_bin.dmg", + "checksum": "944ea9a1c2d568b58d5a0b72110659b68e794ee44a5386d0d7feb4d09fbc5afb" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.2_osx-x64_bin.tar.gz", + "checksum": "09d73f0ec154c198e27cdf86cdf6f7b0ac3dd9189e6ab60dd81c4ccb6c0f51bb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jdk-11.0.12-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.12-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jdk-11.0.12-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.12-ea.2_windows-x64_bin.zip", + "checksum": "7f3584c0fb271b07ce423ad2c251beae4b5c5dcc606b6f474b7e390ae0a08999", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jdk-11.0.12-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "892534b12631b59ad92ece418e3f897ddc380fff00b4cffc65c3a4d9e828033c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jre-11.0.12-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "a835b72b26f34ba277c3e49992aed6a04da30e730d19bcd1eaa7e03377620314", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jre-11.0.12-ea.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "8719f26fb16f63e3b1dfc47dbd3147b074bf7efc57bbb4bf127272b129f0c6a2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jre-11.0.12-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.2_linux-x64_bin.tar.gz", + "checksum": "b6efd9a8518d00aa7788f55e0bb3e76199f67339e1989b56415afd130aea7ea1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jre-11.0.12-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.12-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jre-11.0.12-ea.2_osx-x64_bin.dmg", + "checksum": "a55ba28d0ae270e2b501b1a195acaf97d958b6dec193be2a286b4d958d12e3f0" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.2_osx-x64_bin.tar.gz", + "checksum": "e82fcb35cdefe428f80927357d3a13d49c7e95400b12f365b1e78dc9a4122df0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jre-11.0.12-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.12-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jre-11.0.12-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.12-ea.2_windows-x64_bin.zip", + "checksum": "c962ee678166586e349dda84ae291e996cdaf40d5769798404ee95a267a3341f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B2/sapmachine-jre-11.0.12-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.12+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.12%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "fba580c49e29e7bab89f681ef3c8b31203657cd43560afbb4b15d3efe81ec1d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jdk-11.0.12-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "c4e0c5db6d0fe69d371f26407fe63c8252e008afd8d7d93ce79d1fd933198221", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jdk-11.0.12-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "27e05c0ac9a732daf00a1a55202891fe0cb538e24d6687a61897e7e8ae65af30", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jdk-11.0.12-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.1_linux-x64_bin.tar.gz", + "checksum": "068e9d07b0f376a3ce5c9ad7b6e5fd86e60a509c5fb702e5c531828412d02ab0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jdk-11.0.12-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.12-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jdk-11.0.12-ea.1_osx-x64_bin.dmg", + "checksum": "f2d5f1dd3e93ae334a825095d94f5a2085cb9156bd4433a5d91772ff3e58cf4f" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.12-ea.1_osx-x64_bin.tar.gz", + "checksum": "b86451668f36c3e3ee9572246d2735a95a082c2dc7957a60152aedbc71f27901", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jdk-11.0.12-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.12-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jdk-11.0.12-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.12-ea.1_windows-x64_bin.zip", + "checksum": "07fe738dd6727cf0b9a8566f955136556c604f81b898cbf14d329f49ef1c307d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jdk-11.0.12-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "37aa5e6f50a713beb0d98825b2527b52c551f28cc99eacb446e612a2703ce929", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jre-11.0.12-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "4a03907749b2548ae01349c4ef30db8ca5d4a37047d2f0ddac4f7f7a36affa9f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jre-11.0.12-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "fb0547543c8a61b192f1db877de55c45aead893873fbc4ccce53badbef359e81", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jre-11.0.12-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.1_linux-x64_bin.tar.gz", + "checksum": "940dfc83af08795763ce32d31e22a292ecd47702adf2e816dc626c93eba8b031", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jre-11.0.12-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.12-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jre-11.0.12-ea.1_osx-x64_bin.dmg", + "checksum": "5a4934b17c46ac856326ceecec5c1f7f2885bc13e0410818c79b9a12a65f63ca" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.12-ea.1_osx-x64_bin.tar.gz", + "checksum": "4a1b35e034c23c3d479cb9c6d951d48f6ff7dff17787ba1740160528d7459ea8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jre-11.0.12-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.12-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jre-11.0.12-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.12-ea.1_windows-x64_bin.zip", + "checksum": "045d135b01aa4c65a52d1f250350cfff4bda642866e07f21dd0b913608b2d2c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.12%2B1/sapmachine-jre-11.0.12-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.11": { + "sapmachine-11.0.11": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.11", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-beta_linux-aarch64_bin.tar.gz", + "checksum": "3244a4f90cce0fbfdb5b0ddc41288cde2fb6e8e47b7cabf0f20d71ae960e9f44", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jdk-11.0.11-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11_linux-ppc64_bin.tar.gz", + "checksum": "afbd411c51d2c5a93dda288afc87a00c03eade8eec4109b76ccf119dd69e465b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jdk-11.0.11_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11_linux-ppc64le_bin.tar.gz", + "checksum": "933b7006bf9c0610c678c6d041b7789985287c87c3762a847bf1df6bda9e20a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jdk-11.0.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11_linux-x64_bin.tar.gz", + "checksum": "a23cff74ffbd36b25706664d2f2d5eb7720f17b0f1b0e9311f6fc466057d6609", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jdk-11.0.11_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.11_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jdk-11.0.11_osx-x64_bin.dmg", + "checksum": "f3eac8e9272860ca143e4a3d38b102ed4b0c7df9b4747dac42b2570bad4f43af" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.11_osx-x64_bin.tar.gz", + "checksum": "43c1e91a2e58021ef5f7c3c5357d3ba1edaebd4526a344fb1463c4f6d057d619", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jdk-11.0.11_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jdk-11.0.11_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.11_windows-x64_bin.zip", + "checksum": "247e04d50edb69e0b04bddfbfe144f128cfaebc369a6076e568026b68787b424", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jdk-11.0.11_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-beta_linux-aarch64_bin.tar.gz", + "checksum": "886d5c6df13529611434368fc4a043e7377a14fb6bbc24e454b847cf89cd8e5e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jre-11.0.11-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11_linux-ppc64_bin.tar.gz", + "checksum": "d3f63743c2b3f5f55318b824f1a60e9a0cb52e5732cb45b7c046457c1f9c31fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jre-11.0.11_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11_linux-ppc64le_bin.tar.gz", + "checksum": "6e688342ec73d3a41bdef6b2cfe0dc488f872804ec433c8b1cf2c364306a07c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jre-11.0.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11_linux-x64_bin.tar.gz", + "checksum": "119305a845b18b302324dfbc9cb341110127255185689af902219c3be0fa3b5a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jre-11.0.11_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.11_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jre-11.0.11_osx-x64_bin.dmg", + "checksum": "c4f864bffa0cfa1321621a6b1321081f21566b0b3035f32cfbd9f9f5b5fe0e43" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.11_osx-x64_bin.tar.gz", + "checksum": "0aacb4cf3c50d76ebdfdb489269cda1b609eb66954fa35f6bc72545440646014", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jre-11.0.11_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jre-11.0.11_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.11_windows-x64_bin.zip", + "checksum": "5424bab6f25728f7cce2b7c9fe5d370dcf1a121b8b3a623571c94f81155bfde2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11/sapmachine-jre-11.0.11_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.11+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.11%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "271e8d938a8e5e54499b948e18caa3237141a2282453cb8e34091c2e05974d88", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jdk-11.0.11-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "08182120fe54a06f52bba8c5a5834ad031ebd2df98add4d84cd8524bcb6cbedc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jdk-11.0.11-ea.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "578b0372d05d920de16e93750c7002e66fa773a2574a74805ae580b6e1d12c27", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jdk-11.0.11-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.9_linux-x64_bin.tar.gz", + "checksum": "aeb73cb33eb375ede92a68348e18f59917ba6c8122d2f8fde0bf4d22fe46fd65", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jdk-11.0.11-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.11-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jdk-11.0.11-ea.9_osx-x64_bin.dmg", + "checksum": "d8e9fe07ca633642f9699e375e2f42d7f9588c53bd0d45be95446c9d15284526" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.9_osx-x64_bin.tar.gz", + "checksum": "5c43dc291a069a941711172e9be18fb13b0d4801fef2e39ae766cbe919f92bea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jdk-11.0.11-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.11-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jdk-11.0.11-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.11-ea.9_windows-x64_bin.zip", + "checksum": "2db571435fb4efa4ba2bbdf0122a038729f4310ca6956395a686bea1bf3bc1af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jdk-11.0.11-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "e9e9fb1db18725f8d95588b16dc78b18de0a11848185933902cd600bc2c60f98", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jre-11.0.11-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "c835d4321e5374a266b34d403c235c47e50755cb06695411cae18e09b32bfddc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jre-11.0.11-ea.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "6dc5b572bdd5ab3c88a4d19a124203e08799d9040ce349a27811299f73f70d56", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jre-11.0.11-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.9_linux-x64_bin.tar.gz", + "checksum": "2dbe2866c114c5de100bd4c4b8bef0f8f8889d41071b7096217beedafd17ac6a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jre-11.0.11-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.11-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jre-11.0.11-ea.9_osx-x64_bin.dmg", + "checksum": "931b91c4335ad014e6e09e94370f13074b1e07cd2a253e4cb59a432bb54100e4" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.9_osx-x64_bin.tar.gz", + "checksum": "37d3751e60379ddbe72a2c639434dd6f9d24f317be5a5cd2108692b568e2d9e5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jre-11.0.11-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.11-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jre-11.0.11-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.11-ea.9_windows-x64_bin.zip", + "checksum": "77f8cd93d3ca0ccb5c677f3e005635d6b1102960c80225a4fe04b8700dc50b37", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B9/sapmachine-jre-11.0.11-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.11+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.11%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "9c19721c2c85b9123805184ff93396bc3b70be641d6fc89916f0402134752df9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jdk-11.0.11-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "619a16ee04132f49a403976108387789de4c227032c2afcb49f0cb87007a0e71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jdk-11.0.11-ea.8_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "d74fbb66fd385015915ad879d239e68017450695a787dc84d78d06d3b26051df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jdk-11.0.11-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.8_linux-x64_bin.tar.gz", + "checksum": "0fd5cc249033528633a914b07866d8739840c358c43407cc3c6ec297a5a5c9aa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jdk-11.0.11-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.11-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jdk-11.0.11-ea.8_osx-x64_bin.dmg", + "checksum": "cea15779b62c6ecf81e52dbab4f1c80b8b3f3313835392c1a97778ffe042781e" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.8_osx-x64_bin.tar.gz", + "checksum": "0ebd8805b3416695705a8248377baa8d0d24ec4b6395d231688b0cd5b333c4d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jdk-11.0.11-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.11-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jdk-11.0.11-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.11-ea.8_windows-x64_bin.zip", + "checksum": "361b9b6cf1f292adc0167a723e3b028ac9c8c8c4d1c1d0887426d67e3fce0541", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jdk-11.0.11-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "63bbdca8beedba2426f6b6321c23b590c6589ec80176692ee2d78cb9308373af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jre-11.0.11-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "372c29179280df8b47b124011ab76d81c3235105fb56e956b7ef6c255c43560f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jre-11.0.11-ea.8_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "82b3a434ae9cd6bed0958b59458092225911b0ae04a71861641730f0b740530f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jre-11.0.11-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.8_linux-x64_bin.tar.gz", + "checksum": "f491f388df47682c585c367a830847956263d177c3f4b3218d6dc13f7c03df49", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jre-11.0.11-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.11-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jre-11.0.11-ea.8_osx-x64_bin.dmg", + "checksum": "99450848f420a3bdd37f6b1b2461c46d22b68321fe21772042df263595fe5253" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.8_osx-x64_bin.tar.gz", + "checksum": "6d1ca5e744225b23d1fe48281a054c1a07b320c7ac3d96b4817cff4158cbd8d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jre-11.0.11-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.11-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jre-11.0.11-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.11-ea.8_windows-x64_bin.zip", + "checksum": "523fe349197ff1f53e3ee351aa7f0e2b48f6c8596bd82efd64d4b67d8e8aa91a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B8/sapmachine-jre-11.0.11-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.11+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.11%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "2f1db61e5b05abc11f70f2648db7c12dee7678b9c54dc858a975fbd6ecff101b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jdk-11.0.11-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "ef791f60bf8eb0eaa50d06c7880684faa79c94465cdde1abc3ae29addf636af0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jdk-11.0.11-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "ec65f525131ed532051566b63c9484a4eed1ee599300fc9f4d3b0ca756054dd1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jdk-11.0.11-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.7_linux-x64_bin.tar.gz", + "checksum": "6d63390f44a2025c0fb0cabba77c6dee2e7e8f566b083c68d32e07c62e2711c2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jdk-11.0.11-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.11-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jdk-11.0.11-ea.7_osx-x64_bin.dmg", + "checksum": "36da34d5d2814f39b684993f0b86573899caebcc7c3cdc1faedc0efb8f098f35" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.7_osx-x64_bin.tar.gz", + "checksum": "da8b6df5c72c2ba31a0f4df603769ee383bb2a3ba00239a88608b90c801049ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jdk-11.0.11-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.11-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jdk-11.0.11-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.11-ea.7_windows-x64_bin.zip", + "checksum": "d683366f9ff5cfaa0a7777db0428f699eb9dcaf978ed79f92be75ad08c5c32da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jdk-11.0.11-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "75c474e0fed5827d746c2635b47cf83c979b55ac1bde57498e107ab9c9034e65", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jre-11.0.11-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "25e3e3b0042bdf48c9fe9f5cb0c289c22257ae1a6ca2d4a3f9d966f0bcadb9fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jre-11.0.11-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "9db001319f608c99f30e7fbae6e70945d7013d5ffdf022b4365bcc7fbb2d1dc7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jre-11.0.11-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.7_linux-x64_bin.tar.gz", + "checksum": "45c1b770b22a12a050601d96e689cb0a4e9d4351a9c17918503a2aa2ffe5a8d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jre-11.0.11-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.11-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jre-11.0.11-ea.7_osx-x64_bin.dmg", + "checksum": "297ea0053b207d49d7a9916ce5596ace0153839dced83299fdfc7c17e638250d" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.7_osx-x64_bin.tar.gz", + "checksum": "28fd9e69bd87c3a0d12d484b2e92ab3fd52737a7ebcdf83872c78759c30ed913", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jre-11.0.11-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.11-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jre-11.0.11-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.11-ea.7_windows-x64_bin.zip", + "checksum": "779accf9eb92fa7fe908dabf9ef6e8a596724bd00019704cdd6e440e5521396f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B7/sapmachine-jre-11.0.11-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.11+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.11%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "62268098c4dac0e6184cf777ae6028218e86ec616e1f1cd34d7815146f2060e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jdk-11.0.11-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "5647347910d176fc660efa19ccc532ccd33c21e14b6f22ace3e4d8082faf4b7e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jdk-11.0.11-ea.6_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "9718f2efb14c486d20cb49741d4587171d082f39b8a95e8a404e01a8241c5436", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jdk-11.0.11-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.6_linux-x64_bin.tar.gz", + "checksum": "ead352ae22837a7f8efb2d9afb19aeccec440f9e1ccae1f9ee97a9f6438a1a82", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jdk-11.0.11-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.11-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jdk-11.0.11-ea.6_osx-x64_bin.dmg", + "checksum": "d2596d3885f5ac118f0565b46388b8141fe84dec9f5772b76ea855cedec3d854" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.6_osx-x64_bin.tar.gz", + "checksum": "16194f4417b56c6c51d2df9620cc34aa2eac608e76b261966c65ab910a43cc1c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jdk-11.0.11-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.11-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jdk-11.0.11-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.11-ea.6_windows-x64_bin.zip", + "checksum": "3b26c74129f9102be74457b4013b2ab987c3837b85cc5ab5c1594abeffca99c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jdk-11.0.11-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "43218bbe9b99174f922fa75f424a484ac12d20d6ba86c3da7f2491227acfa031", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jre-11.0.11-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "80661e847ab6c999d484d07857f909c49df4ec5d9cd1bd35a95da1e6ce2c187d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jre-11.0.11-ea.6_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "20692b4119b46fbda4734318799a9d99f10c2d7321c1607b75b6085bd7b49120", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jre-11.0.11-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.6_linux-x64_bin.tar.gz", + "checksum": "6f8a77bdb455b3d0dc85e5906b5f1748a18d3086a79be6534c8da095ab0d53c2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jre-11.0.11-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.11-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jre-11.0.11-ea.6_osx-x64_bin.dmg", + "checksum": "2ac21ca17a1facc6bac251e9d1a61b492099d4ae4461012a7794be6e2578415e" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.6_osx-x64_bin.tar.gz", + "checksum": "a36b525bfd310c0bb99f567219ea5ac642726ffcb4145887230c1da87e758ee5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jre-11.0.11-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.11-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jre-11.0.11-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.11-ea.6_windows-x64_bin.zip", + "checksum": "765df9519b70f162c3d8c869150d249e0709d77a4c4cacadd9c00bb0c0702af2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B6/sapmachine-jre-11.0.11-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.11+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.11%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "d382d7709c24a06148e6c7f2a746a9a6a0339d68b0e7768453c4f64ebc644e63", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jdk-11.0.11-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "baf5adf9a86eeefd13712a4fb595609504ada37a48997f32b4a3de777500a126", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jdk-11.0.11-ea.5_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "19038623e0df4f261389ad5bef31c4a997be77049cb213f2391f16623b2fd1d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jdk-11.0.11-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.5_linux-x64_bin.tar.gz", + "checksum": "8a55935847e910e35713c844599c29acb5928ad0b24af31b49cf034be3403b8a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jdk-11.0.11-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.11-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jdk-11.0.11-ea.5_osx-x64_bin.dmg", + "checksum": "13de2138af6c587127464808a2482e9ff2faf99a6770ca28142921ab1b8241bb" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.5_osx-x64_bin.tar.gz", + "checksum": "3a81d608a8006e394a45eb9d9b78b8d3a0792ecdada48f86807fdba2947c75d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jdk-11.0.11-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.11-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jdk-11.0.11-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.11-ea.5_windows-x64_bin.zip", + "checksum": "89544278244dc90c9bf52c064b32ac3b3336203148add4edf1c8750a80994bdc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jdk-11.0.11-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "6d3441cebcd49e08c9544183ba6cd0276f4d8c309496ea6af48aa12d6da5c3c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jre-11.0.11-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "f45495c13bcb146c7851c468bbff8bfdff9295b75a0e28a420c826a0f734e65f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jre-11.0.11-ea.5_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "ee8c46d7bebdc11923bb96fa1bf1fe816903c1d7e9b71d1ee64cbadde5bffcbb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jre-11.0.11-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.5_linux-x64_bin.tar.gz", + "checksum": "d0e068e79ef2747d33fcc9b900d2177ced5c9015c7bbce58db32900cb0775dc8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jre-11.0.11-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.11-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jre-11.0.11-ea.5_osx-x64_bin.dmg", + "checksum": "8703c639540bbeffa4d7253e2a812bbc597aa4ad095d2cf3c3b6b4ac98c17462" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.5_osx-x64_bin.tar.gz", + "checksum": "0d8b6e17db9d52109705c167123b91bb8f4aa3995c207e357fbd48387b656f42", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jre-11.0.11-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.11-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jre-11.0.11-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.11-ea.5_windows-x64_bin.zip", + "checksum": "fc8cf89dbb8691aa858b09bb67fc52c5ca8e3860461ab9bfdb6b7bc4ef04451d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B5/sapmachine-jre-11.0.11-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.11+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.11%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "86f1b8c3b707d9f0d2242a90b65e105202797632c3412759e12cf17bd8c450b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jdk-11.0.11-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "e8e0db32e48de1177536f6e369e753fbe19c384daff006e9f8d651deb1cf70d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jdk-11.0.11-ea.4_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "6e163a316093905e1993365ae7a1911d4e4b4d2da49102dc65333dc09ccfae8e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jdk-11.0.11-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.4_linux-x64_bin.tar.gz", + "checksum": "7490bc615de4706f6852fbf9467433ec448c3e8b0acd91222277c9c5bf0142ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jdk-11.0.11-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.11-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jdk-11.0.11-ea.4_osx-x64_bin.dmg", + "checksum": "38b28a49f921d5279314be76f2e275f55054189943dc73653038da89ecbcf6c8" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.4_osx-x64_bin.tar.gz", + "checksum": "1a19f121d95057226c7d6d73965d08ba0dca8ed379d9879138f777b30b169434", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jdk-11.0.11-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.11-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jdk-11.0.11-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.11-ea.4_windows-x64_bin.zip", + "checksum": "5f1fb4d72c6985b87fb83906f19e6d88881c99df331fcd8a9757d1ee3f455f06", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jdk-11.0.11-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "e71178b5e21715ecd34a731dd4ab20797f89b73b6a681fa80d440e74ec3e5667", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jre-11.0.11-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "bd18424ee26390fdd0b751ca20413b8d6a77547dc12b81262fe9a53de8db6eb8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jre-11.0.11-ea.4_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "c92d59003cf7d10abacab8c100e1f338473b58ce4acb87c4b5334847c016210c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jre-11.0.11-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.4_linux-x64_bin.tar.gz", + "checksum": "3b078147df79cd14d3aec27df0cb472d5a8b20418b6b6d83769cfefe46835027", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jre-11.0.11-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.11-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jre-11.0.11-ea.4_osx-x64_bin.dmg", + "checksum": "589c10025fa0acbb7a2024914767553ebc62b7e74c68e3c70e095c933e8967de" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.4_osx-x64_bin.tar.gz", + "checksum": "fcf7a5d815ce44ae40ffc03e3ed1198fff98e90fda0abe13a04e56ddf64d8401", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jre-11.0.11-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.11-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jre-11.0.11-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.11-ea.4_windows-x64_bin.zip", + "checksum": "cfbdae7f279ec504b2360c2f3ca3779b74896c5aacc27723ec9964dcc991656f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B4/sapmachine-jre-11.0.11-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.11+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.11%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "7277e9c36d8a5dd6a9e6df787179f76369f1a34958a2b23191eca49236d01741", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jdk-11.0.11-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "6d31db27db76da184bf88938181ce82614c1afb5322990478f4237de2520ca3f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jdk-11.0.11-ea.3_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "3709a6625486f61be5d1cf8e2b6d836035784099daac2841bea6ee4325e0a5a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jdk-11.0.11-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.3_linux-x64_bin.tar.gz", + "checksum": "64f191fb746467e27fef7c340c2ee75514571a11e7b1dec02106df6c1fff75d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jdk-11.0.11-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.11-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jdk-11.0.11-ea.3_osx-x64_bin.dmg", + "checksum": "9c6212df18d27182195c46a9eb7baa8d2a0498f8fb6ed67a33be237b8b07e477" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.3_osx-x64_bin.tar.gz", + "checksum": "7eeeeb9d8b29e63ad273b20266ef728074809a70319bc3bdd762589767fb9c1d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jdk-11.0.11-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.11-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jdk-11.0.11-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.11-ea.3_windows-x64_bin.zip", + "checksum": "de3bbf4b23731922464c9aa9e82c486cdfb93d141253729a43fa85b6d5e158e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jdk-11.0.11-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "ac604c56e707b5c08f58002933b765744e72c835e6c52ea054d313cdc65a555d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jre-11.0.11-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "4d8a39e1c94f9b907eb607e976789f75e8692f5e42626239f45e3380a0270930", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jre-11.0.11-ea.3_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "0530b9e32238386b9665918ee9215ba54c259070883056872efbb6137b050ecc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jre-11.0.11-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.3_linux-x64_bin.tar.gz", + "checksum": "46382d94bb96194285a4323d628601ee9fdecd87f6365f5efdc18bdbdcee991c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jre-11.0.11-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.11-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jre-11.0.11-ea.3_osx-x64_bin.dmg", + "checksum": "13993982fe683867f5acc9746435da325015851eadb10520e4571d0cd60f4ba1" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.3_osx-x64_bin.tar.gz", + "checksum": "e1b51c54c8e465b1b780305d1d3a39d5c76a0ed7c1c08f7f87d6378c7da9c54a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jre-11.0.11-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.11-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jre-11.0.11-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.11-ea.3_windows-x64_bin.zip", + "checksum": "955ef67c2eacdd0a2c78e4ae6e48b9904a4b52766394b4e07ff5de648333fe13", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B3/sapmachine-jre-11.0.11-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.11+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.11%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "a6248bbce8c1a616590aa2b4839256fcb8735912052f9fd166ca25487d09197f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jdk-11.0.11-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "5c8e4faf5d6a41d327645a20a4d5288e0bf140ccadc7234c110d12ba9a19c363", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jdk-11.0.11-ea.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "07915a0aa745920f3381a5cf620997e7ec9daeb9d89fa1a30996aba98a34a967", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jdk-11.0.11-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.2_linux-x64_bin.tar.gz", + "checksum": "6bd792afbdd2e785396e0d564cfc6a9a91034359a55ef6e121251dfa1f2338d6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jdk-11.0.11-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.11-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jdk-11.0.11-ea.2_osx-x64_bin.dmg", + "checksum": "e1110a9dad888fc7d28acaa8d99908b195c2a402313efbce515379972c970f7f" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.2_osx-x64_bin.tar.gz", + "checksum": "5dd2ae447735cd5a6d2a1a0d809f3e1b3e930e54af808f5896113b5de75f212f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jdk-11.0.11-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.11-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jdk-11.0.11-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.11-ea.2_windows-x64_bin.zip", + "checksum": "76451690cb7ac179aee0d986afeaf2758a844577b7e69a9a0ced37c5e239fd9f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jdk-11.0.11-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "8206db22a1a8fd81c618ae9e941f725ce44f3060aa4524a213d1b47e2a604778", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jre-11.0.11-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "18442d4dd05e41f1436b8be74e92785e6e0e24ce3e8c469341dff9e00e8cbaf2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jre-11.0.11-ea.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "ae88a7e7471ea48ddf7580dac0936afa3873226fee3ae0d3d0179442cfd25685", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jre-11.0.11-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.2_linux-x64_bin.tar.gz", + "checksum": "36688ad109be176fbf118a738df78655d3a3f4d24f4530e6aa459f01a65e95e6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jre-11.0.11-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.11-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jre-11.0.11-ea.2_osx-x64_bin.dmg", + "checksum": "5a28057a089b2987966abbb0333d2396aa3d6332afe7e71b452a2485bf5fb524" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.2_osx-x64_bin.tar.gz", + "checksum": "6cdbb7c49934b81af2794fe30511390f021e6eee17d0b23aeff3a4027a3f161a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jre-11.0.11-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.11-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jre-11.0.11-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.11-ea.2_windows-x64_bin.zip", + "checksum": "b1187a9e6b955872281a1df5506fd2c1264cc6bfbc5994822483aa978976e7b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B2/sapmachine-jre-11.0.11-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.11+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.11%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "15f4d5877990d1935078a4340a2f336314aa4c2c054b25c4316b57cbaafed3ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jdk-11.0.11-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "f3cf1579a4316dc9a7e1a6311e6d023f816b9da21c3a5a584bd8c48a8657c6b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jdk-11.0.11-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "573c1ac6cad443aa8bf3434d6fa858949f69bac6ae9a7803ef5bcc128b6ebef7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jdk-11.0.11-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.1_linux-x64_bin.tar.gz", + "checksum": "10e9a501532d927a53a9345d4fc88414e27ccd3a3251292279c12948773201cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jdk-11.0.11-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.11-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jdk-11.0.11-ea.1_osx-x64_bin.dmg", + "checksum": "7726424be5f2abab44647203a4a56de0a0e69da282b54cc28c267cc14e95041a" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.11-ea.1_osx-x64_bin.tar.gz", + "checksum": "d60b350aa25bd00ad9c181bb866b8bcfea688cf4344e31fb69e9538e2bd000bf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jdk-11.0.11-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.11-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jdk-11.0.11-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.11-ea.1_windows-x64_bin.zip", + "checksum": "926b482c2a43201745f7493a6546ef1eda99df3eaa5d8e53f4aee69f4c068c1d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jdk-11.0.11-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "e6c71f5e4154d8d1bd76ac2f9461e4cba492204135ac7139b20ced0a5dd36c50", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jre-11.0.11-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "2d2c0bfd260acb1711152fc04234e9dbd3c8bb7864a2791700529ad409351c0f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jre-11.0.11-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "d7bb8e4eab1a0a455fb054f3e85845ec6aaca23601a712a81b0a214b5e82c635", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jre-11.0.11-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.1_linux-x64_bin.tar.gz", + "checksum": "6d13895eb70bcd0e1e362bbe0435d1a74ff6d70974b4c66e8182bfbc7a8f8a35", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jre-11.0.11-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.11-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jre-11.0.11-ea.1_osx-x64_bin.dmg", + "checksum": "69617140543c661d685293b93ee5885929822836a69468c404e1d260d942cd03" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.11-ea.1_osx-x64_bin.tar.gz", + "checksum": "ca9746c6219095ebd85979a5a76b0802136769d7ac7bd717190cb743874d1043", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jre-11.0.11-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.11-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jre-11.0.11-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.11-ea.1_windows-x64_bin.zip", + "checksum": "aaf2a6019259fcd533a3700ae0a520fdcab2edad7ef289a1bc0557d30b252631", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.11%2B1/sapmachine-jre-11.0.11-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.10": { + "sapmachine-11.0.10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.10", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-beta_linux-aarch64_bin.tar.gz", + "checksum": "f6798cdd2381297c22a632997eae79ff9d8d312ccdb0229e7dc0dc2968abbb7d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jdk-11.0.10-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10_linux-ppc64_bin.tar.gz", + "checksum": "fb8d73c492d605dd4e18a8a810d6d84a65d7d7605747b9c2947a4ee17ef5c831", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jdk-11.0.10_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10_linux-ppc64le_bin.tar.gz", + "checksum": "64d73971e4ab01767c6d8d8a222e2787ff6347a0d54b2bd2c7080ff65c343aaa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jdk-11.0.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10_linux-x64_bin.tar.gz", + "checksum": "2e6baf16d93b696ea183456d95122c6135559c64bc91ed19a486c4c05c7d8fbf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jdk-11.0.10_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jdk-11.0.10_osx-x64_bin.dmg", + "checksum": "9534d6ec89f1dd77615f20f0d3bff7dd4d3f76ba2a4fe2e29431485cd9131dbe" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.10_osx-x64_bin.tar.gz", + "checksum": "bd36bcdaaaecfb70eaea9ff58fd6083e2ec23ac7da3366705168427e118b86f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jdk-11.0.10_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jdk-11.0.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.10_windows-x64_bin.zip", + "checksum": "93f1325d55f510047013931c94ef5fcae0e24f6601e5b3184527bf607aead4e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jdk-11.0.10_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-beta_linux-aarch64_bin.tar.gz", + "checksum": "53ed2ded1c54ee8e6d2eafb3f6858ff5e7c18db426506f358b181b5decb02789", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jre-11.0.10-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10_linux-ppc64_bin.tar.gz", + "checksum": "04d60df6b0c63fd3a90e7e01c94b81a448365892ad362ee4e5246556a397d99d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jre-11.0.10_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10_linux-ppc64le_bin.tar.gz", + "checksum": "e00f0f0c613ec6cf339ca4e594035fb1378a2ba87d31356b41460989321c513f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jre-11.0.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10_linux-x64_bin.tar.gz", + "checksum": "396c2a1f37fb3bcc7c235349edb593158cf0650793a7f70bf861289620f7e1df", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jre-11.0.10_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jre-11.0.10_osx-x64_bin.dmg", + "checksum": "3729593ce8dedfe6d2a59bc51c49cce11655721a31840b5865a6f09d7fab1153" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.10_osx-x64_bin.tar.gz", + "checksum": "f095ab3f50f1b0d32d9e88d70942fca505b43f540105d11f0dbe8308e936c310", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jre-11.0.10_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jre-11.0.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.10_windows-x64_bin.zip", + "checksum": "c828b18d2b6f1696a47c5d93d0c24f47571419754f9d36393c4306471fb1ff55", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10/sapmachine-jre-11.0.10_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.10+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.10%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "f857cd36429a16f39449f8124589b8e9f4647ba4e24b02cebdc6058d8b647543", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jdk-11.0.10-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "73f3b27e1a41dbcd23699226ea1e35955da5fca62ec2055a2787e246951ebe78", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jdk-11.0.10-ea.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "188de075090ebd5e360d8343318b0182666656b5b51aa3330439ea2048e0a9b0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jdk-11.0.10-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.9_linux-x64_bin.tar.gz", + "checksum": "b17955e4aaf7c1959e88582cc335e21836e04b10e5170fb1a102db3a795e4a8b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jdk-11.0.10-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.10-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jdk-11.0.10-ea.9_osx-x64_bin.dmg", + "checksum": "4627e3bc1fa1e603ff3f1dc6902e7d9571e48c5144e771205037222d9cff2462" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.9_osx-x64_bin.tar.gz", + "checksum": "e1cdf9e9165854a51b259a1781261bc07384373148b4250920a79a4b87a4d20a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jdk-11.0.10-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.10-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jdk-11.0.10-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.10-ea.9_windows-x64_bin.zip", + "checksum": "54849c1d35be0b5ea7369cc750e42cef65810fa435e52537d167212fadd9b18b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jdk-11.0.10-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "5645ef9f2074cc63feac6429dc7023fbf643aeecde5a265363ca3547beddb7a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jre-11.0.10-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "b4a1d79822dacc3fbe0e3ba018e3edcb989950a31d5e1b2416c96382ff6a4ea9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jre-11.0.10-ea.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "2d5c5a6ad0f76dc43e614dc11deed3053d732a55e6502008fbc3496ea10b1f49", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jre-11.0.10-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.9_linux-x64_bin.tar.gz", + "checksum": "2fe07ccefff245624cd3e26f56a39b114f08bd119f60af0b60eb69aa9b4db503", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jre-11.0.10-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.10-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jre-11.0.10-ea.9_osx-x64_bin.dmg", + "checksum": "828d5f947f21313c38a6f0f9e00352060e5670ab378bf8376cd06b7f5401e755" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.9_osx-x64_bin.tar.gz", + "checksum": "c0ba33b26cf170b4c050ad7a782b5651eff452c6f74cfa11f643b21466702c23", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jre-11.0.10-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.10-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jre-11.0.10-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.10-ea.9_windows-x64_bin.zip", + "checksum": "6302e1a9efd7f07e3c1e4d2ca419e8e9f3800a6affd21013b7d607f20498b66f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B9/sapmachine-jre-11.0.10-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.10+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.10%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "8d66114f915512bce0ed0ba18b64006ccfe888c9ce97c62ecd4d296dd5278a92", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jdk-11.0.10-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "3f76138beb6cd93f23a4b763cf101a0cafda5183532ca1cff2c92a2d59691661", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jdk-11.0.10-ea.8_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "852b930acd29ab5728af794621e3bad8e3300325eea6182de7bdac9164bbdbd4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jdk-11.0.10-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.8_linux-x64_bin.tar.gz", + "checksum": "32dfe390e05f986ca63cd8fb4e4ce1b09ad75e957df002a0b1693a2fd1fc3082", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jdk-11.0.10-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.10-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jdk-11.0.10-ea.8_osx-x64_bin.dmg", + "checksum": "615a504d54c7ffe5a7bae1692529fa72312b0776a91eeb952d13dd9b949f0860" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.8_osx-x64_bin.tar.gz", + "checksum": "0c3adc56f07be9a25f4d4c3eb2a08a9546347a02afe19d294683cf84b871de8c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jdk-11.0.10-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.10-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jdk-11.0.10-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.10-ea.8_windows-x64_bin.zip", + "checksum": "199a8ab4e31124253b574dd45efb44e9b9ba082dde80201497660a5307ac107d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jdk-11.0.10-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "4d361db685a284598f91098148998d6cfa6b016d736c80e58a28d2c5ca687e81", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jre-11.0.10-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "23774e10542c210b8472566b747673f4f5edf90ec6cacc3ad4e55200427aaea8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jre-11.0.10-ea.8_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "39bf99fe61a7e9bc40eb9824e0c73e20a270fa3849e1f04b9ea24df2fbcf5207", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jre-11.0.10-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.8_linux-x64_bin.tar.gz", + "checksum": "1db2af80ccadf518304c9f4dd3ffd141599a56dbd1b6263212331505d562e52e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jre-11.0.10-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.10-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jre-11.0.10-ea.8_osx-x64_bin.dmg", + "checksum": "19bf96384afddf614c3e047fe84f18770f20b93bf8dba8c98e06f15acdfb0796" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.8_osx-x64_bin.tar.gz", + "checksum": "99f8ce124e5c89d3646d1a1862b57a03b10df5cb8551c1f2e6c35ea2a5219209", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jre-11.0.10-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.10-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jre-11.0.10-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.10-ea.8_windows-x64_bin.zip", + "checksum": "aa82931715697731e3cd2a9cb7b42228e8d7af125048108830cdd56a8f4d499d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B8/sapmachine-jre-11.0.10-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.10+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.10%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "86bd89d2fb872e399fbee51e6592818bd7a0a03e47a8fcd2a89c1d5d1d3c4cce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jdk-11.0.10-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "bcac52139130ccb6476b6cbda70dbb7ff299377b36e239eeee91a58e4a23e043", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jdk-11.0.10-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "1dc141e9229830a2b542ac1460668d869617774b962613d5c9e192f3f6927013", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jdk-11.0.10-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.7_linux-x64_bin.tar.gz", + "checksum": "16e061c4342f4629c0ce5fba7e45af09a03a41013600ce34e19a450cca5738b7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jdk-11.0.10-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.10-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jdk-11.0.10-ea.7_osx-x64_bin.dmg", + "checksum": "3056e3604e604f50847b7c2bcf0ec38966bbe9a084a5735253ebdbf5312fb774" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.7_osx-x64_bin.tar.gz", + "checksum": "089c81c9066e91262a3a75aa33fc23cc4f721834b10c1f5a3e6e5248244d55cf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jdk-11.0.10-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.10-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jdk-11.0.10-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.10-ea.7_windows-x64_bin.zip", + "checksum": "242807c84d218f9bee9ac34e536ca784c8571517de05ee81a92c9fca04aedd36", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jdk-11.0.10-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "fc6e004ba32630e7a83d4a6b3bd80c3f4d0de838de978c925f6856f901cd3c0e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jre-11.0.10-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "3fef99fa02633373f8a9eb9f5f78483b5d917dc8587c62710c1828469483dedd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jre-11.0.10-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "fc733c86692d483160a6ac3f21ed986c6a60732b71a0cb75b68a8e69fa3c0b2c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jre-11.0.10-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.7_linux-x64_bin.tar.gz", + "checksum": "55a8f6433a7cb5ad8c285463223c7054b9b672235dd069eb487db0e6daa04ae5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jre-11.0.10-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.10-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jre-11.0.10-ea.7_osx-x64_bin.dmg", + "checksum": "c1163911f38c58be32fe965be42c942fd770c74d497e0025cd11242efc281e82" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.7_osx-x64_bin.tar.gz", + "checksum": "cb5a651f0a967c8f06cff27a9ca80d420d5bd12657107057d7e3d3f17d6d8ce4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jre-11.0.10-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.10-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jre-11.0.10-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.10-ea.7_windows-x64_bin.zip", + "checksum": "188a445f64e2215dd874670238eb81b04b83279e41c1bef321803bffea2e3b1f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B7/sapmachine-jre-11.0.10-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.10+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.10%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "713bae66822b33860d6bf7cf9fd4737cc035241cf07615b113aeef2d04c730d3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jdk-11.0.10-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "eb7a8f100f0e0e2bc2d4ee39dc95d181829a69e2202816cfec8368c41c0e6e9d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jdk-11.0.10-ea.6_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "e42e4ac270c1f9f64fb0348d96ce60a7c87bef9a5e2461550974edc9ab0cc628", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jdk-11.0.10-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.6_linux-x64_bin.tar.gz", + "checksum": "071503e1f6144042303ada8e9d412b5f3324455f3b928471a31521ff77407e0e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jdk-11.0.10-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.10-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jdk-11.0.10-ea.6_osx-x64_bin.dmg", + "checksum": "b99d36a1e4929bba18edbef2750332d7ac46c64ad51a032f1aca5e6f74cd9475" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.6_osx-x64_bin.tar.gz", + "checksum": "25bfb8e9f472a71d090f7023e655d70c9ab427ca6f01a28da67801847515c492", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jdk-11.0.10-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.10-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jdk-11.0.10-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.10-ea.6_windows-x64_bin.zip", + "checksum": "5b37c7972c03ccc892c114924173f7f6c5b46620c691c68f745e32b7d8d50282", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jdk-11.0.10-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-eabeta.6_linux-aarch64_bin.tar.gz", + "checksum": "50b27a9b7b99876957f27cc68388857811c4e1f83122d345f3aaaaa94cde04ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jre-11.0.10-eabeta.6_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "d4d7450f782e321ea095958c2417f03720bb42388446f944db75e9ad0a0dc1c9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jre-11.0.10-ea.6_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "16491f71c5c7c34bce2b4a27049fc4d802c9e577eeb0d022568ca8cc9054d60f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jre-11.0.10-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.6_linux-x64_bin.tar.gz", + "checksum": "4997d811a975d9ad1ee77375d67e09256eaad0c0a71fc6e15a7d9eda56c1c2c0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jre-11.0.10-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.10-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jre-11.0.10-ea.6_osx-x64_bin.dmg", + "checksum": "efb42d1fc20d27f9683a875211ef70d3d0329b04e057598d25beb7f14cec55ce" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.6_osx-x64_bin.tar.gz", + "checksum": "105c55e966d9f48b843cf60a3725d10719543eddc758b540a4a830449bced545", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jre-11.0.10-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.10-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jre-11.0.10-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.10-ea.6_windows-x64_bin.zip", + "checksum": "c1de616f3c6af79a54554cb0a374ab9cc30fa0c7d6354af6ad6a8d2a453b7957", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B6/sapmachine-jre-11.0.10-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.10+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.10%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "7be0846d13d23ffd56555a809e130ad6448133ae6cdb9e093224c87be02ca8d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jdk-11.0.10-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "d7c4c35e33caec9fa63260baf6e619b602e467c546541f2cbaeb5cb2b5b33c70", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jdk-11.0.10-ea.5_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "decb6df75ced4cf65be2420b886e51db703b8e0252051f69dcf14ec846aba728", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jdk-11.0.10-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.5_linux-x64_bin.tar.gz", + "checksum": "2b5dee52ff06868b901d730582537a915068f7fe923ac0a6b196cb900ba5ed6e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jdk-11.0.10-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.10-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jdk-11.0.10-ea.5_osx-x64_bin.dmg", + "checksum": "40baf21429850bd0eba8902fd93bca5621c12b96797ba80f263de7a642c32665" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.5_osx-x64_bin.tar.gz", + "checksum": "b82b83451fb3944936ffadc8721861ef08ec583cd02f91241a01b6305a04657a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jdk-11.0.10-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.10-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jdk-11.0.10-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.10-ea.5_windows-x64_bin.zip", + "checksum": "a9b895ec61f0df6523006bcdc85124aa143f2d368ee3a63372ecb8a5fe59c90f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jdk-11.0.10-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-eabeta.5_linux-aarch64_bin.tar.gz", + "checksum": "15701dda43824b8b5ea7507ef81719c24ab79535ef4711f7f3379abebaa15e6c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jre-11.0.10-eabeta.5_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "7e2708794eab2d1fc58a28ca511e8d6b750040fc9a0c85e4bc3ee8311764a085", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jre-11.0.10-ea.5_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "a12ea833a7bcc44345472808d0cb737761e32b6579347304a0549fa053548bc7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jre-11.0.10-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.5_linux-x64_bin.tar.gz", + "checksum": "46310fbc968fe9b4c44b4d7c0a5ab2f3cceb6a1ed7699c5d175028d25e09b0f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jre-11.0.10-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.10-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jre-11.0.10-ea.5_osx-x64_bin.dmg", + "checksum": "7d52b47cea20945af8238378392158d55e50a82ed4dc6cf0b353d3b35aaf60ff" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.5_osx-x64_bin.tar.gz", + "checksum": "a68b74092db6613d0a991892667a005ba9567e4aaf5a952957e30302b1bdd0c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jre-11.0.10-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.10-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jre-11.0.10-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.10-ea.5_windows-x64_bin.zip", + "checksum": "748c58ce6c89aef0f84b18441a6297b2a3677065fa63e8260add016d498d2253", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B5/sapmachine-jre-11.0.10-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.10+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.10%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "e3dcd108a656265ea8bd3b1503d656e1b1fa03e501ecf360d271da44bd1eed2a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jdk-11.0.10-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "3803212e03d2a57366fd0ca728a489af32251637b91f1493705a02c8d42d1ed4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jdk-11.0.10-ea.4_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "75e1e00bd0da4e3b11c129c4e0c41829365183b4e9c35737bfd433dcacb6a37d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jdk-11.0.10-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.4_linux-x64_bin.tar.gz", + "checksum": "fa2a018f775e9d22a5097d2496af9c965e2b74d6478446a44696d742665c1b35", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jdk-11.0.10-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.10-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jdk-11.0.10-ea.4_osx-x64_bin.dmg", + "checksum": "b02a5e3d13ca578449bf779117558292077809877534126b67094afc02bd5bf0" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.4_osx-x64_bin.tar.gz", + "checksum": "73d47b80e146c1ea604bd7f014054ced60c23f3add126258c0989401eb444cb5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jdk-11.0.10-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.10-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jdk-11.0.10-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.10-ea.4_windows-x64_bin.zip", + "checksum": "49a4140b70774f9567152038b4cbd0c1d45b8a5b372f4d71a92f2e0adb5dcc16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jdk-11.0.10-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-eabeta.4_linux-aarch64_bin.tar.gz", + "checksum": "cdeaa9876b47254a21c29d95ede24911563f0ce5c0e3ed448fdf91f6be0f2b0d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jre-11.0.10-eabeta.4_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "2125718d18686c85d93079af4c62b6dea99bd1f4ca63bfbb7eadc2af91ad6620", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jre-11.0.10-ea.4_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "cfc5cda3a8fa2d0b30f2484f751ac9d5d8d5970b6aba0334500f65f20c3b1b40", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jre-11.0.10-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.4_linux-x64_bin.tar.gz", + "checksum": "9c3279d98e479bfd8519aa8af21bc09c3dcba115b1a675a46c2a95cdaa6d3e1a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jre-11.0.10-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.10-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jre-11.0.10-ea.4_osx-x64_bin.dmg", + "checksum": "5f73abe92ca2e6b38159d637f7918b5156f11861df25b2a25964c3f80fc450c3" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.4_osx-x64_bin.tar.gz", + "checksum": "40b93b95e5ea8a623cbe6477107e42ec303f56262b1e0060f9ed48987740b5dc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jre-11.0.10-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.10-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jre-11.0.10-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.10-ea.4_windows-x64_bin.zip", + "checksum": "46761dbc99cdefe8e5f3e5696e2e8b60230a6c2e311ac179abbc77c05a012e50", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B4/sapmachine-jre-11.0.10-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.10+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.10%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "a120bef86e26c497e44a5037b00af12bc7519e1b36ab409e30321818118ce4f2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jdk-11.0.10-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "2629ac27f98ceb6fd23a3b359715d1c439f40e3c0c3cf6173e7b5af774283a0e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jdk-11.0.10-ea.3_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "50b1e1d2f8bae01367d12f9a43a5043102ff353b85604d90f87617515bd64657", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jdk-11.0.10-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.3_linux-x64_bin.tar.gz", + "checksum": "a9784f16dc5a948c2b23745188d71fc00970fd957c0b75405a12c890834b2614", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jdk-11.0.10-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.10-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jdk-11.0.10-ea.3_osx-x64_bin.dmg", + "checksum": "6ae2e25d661b6ff2ae108f2f23f3fc93faee078ff0d722d50030b673134f2c25" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.3_osx-x64_bin.tar.gz", + "checksum": "05d51c0ef304869ed8799fd44f4f754d7357d631e84718efc83e09c69981cbe2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jdk-11.0.10-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.10-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jdk-11.0.10-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.10-ea.3_windows-x64_bin.zip", + "checksum": "ccc2f77efcb632d7563e4ef7ff120169c99e85fd81acd62396d03171b1ce41c1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jdk-11.0.10-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-eabeta.3_linux-aarch64_bin.tar.gz", + "checksum": "1d0e3974cdd490a28e706eb6926baea5fab68ea272c843adb52f7bd675742863", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jre-11.0.10-eabeta.3_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "eb02fbd53777e2df70367f881df2152b930912e62e2e7174e2be9d0300216cd8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jre-11.0.10-ea.3_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "8d80e94aa958c49137eb2f55f2732f043d59345ab213d2cfa7febd88e4ac0e0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jre-11.0.10-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.3_linux-x64_bin.tar.gz", + "checksum": "663c6c008b17c9b2641bea2bc4cb74bc7a94d508a5b8e00f65c40cba854247bf", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jre-11.0.10-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.10-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jre-11.0.10-ea.3_osx-x64_bin.dmg", + "checksum": "ed1564a795d4f31ad376ee912b315d988c6b3f9cbb58ca31b806a5b74deaa98a" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.3_osx-x64_bin.tar.gz", + "checksum": "f77f332f86cdce524ec04c46e7f1a5c7127b0a1c2328eca1fc438c05cda518f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jre-11.0.10-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.10-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jre-11.0.10-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.10-ea.3_windows-x64_bin.zip", + "checksum": "5af9f94312a93ba03c0393df5890bf1541ecb365bc39cf7c3d34c031d65181d5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B3/sapmachine-jre-11.0.10-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.10+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.10%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "3911daee6ef07b880092131a421d2a416692a2eeb526115f84efc974766d2f3b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jdk-11.0.10-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "8373f948096ac211af57b7ffa4a52777135dad08d295bfe806a45a4391206464", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jdk-11.0.10-ea.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "a24b533e27516c68340d539f84b28326f04940a4f03129b1c7524aaade10b7d0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jdk-11.0.10-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.2_linux-x64_bin.tar.gz", + "checksum": "a8fafe06c264153525231ab4c056f95dbe094bd8a1ff5a4b11eda51f23c7b1ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jdk-11.0.10-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.10-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jdk-11.0.10-ea.2_osx-x64_bin.dmg", + "checksum": "fdc707a9648130a14994fa1b2511ce70ffc8d971dcfb2beecceef33f4f4e18d9" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.2_osx-x64_bin.tar.gz", + "checksum": "676aeaaf9ab780842f918d2c42ae86114aae46a6d6f384e8f57d7d5f924fd92e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jdk-11.0.10-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.10-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jdk-11.0.10-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.10-ea.2_windows-x64_bin.zip", + "checksum": "9e067ba5d3e64e9900ba106708821ce2c30f41393b373fd76a87062c2d65e262", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jdk-11.0.10-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-eabeta.2_linux-aarch64_bin.tar.gz", + "checksum": "d6bda8dc92e12326968b1cf537d40c3eb1488494dba1721331a77d81b6af0f9c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jre-11.0.10-eabeta.2_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "a8041dbc2934fe52006b6870dc624d57f3b8316a318bedc3db57b8a3fb02128f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jre-11.0.10-ea.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "bcd84846777600820516c0408d815703fd2b3743f435ae5990d97151936d398c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jre-11.0.10-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.2_linux-x64_bin.tar.gz", + "checksum": "7f624125ed7013bc69b5cbecd3d7a164466680d43126cdd64fd83bbf126a751a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jre-11.0.10-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.10-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jre-11.0.10-ea.2_osx-x64_bin.dmg", + "checksum": "f9748d34345fc9818fd59a51314ef37da888313fd0d1c4b370b6ef4a56ba0457" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.2_osx-x64_bin.tar.gz", + "checksum": "3c5c0624d42de11b5a11c83f381f745c66fa6303de2ec01a0d1ce5643fac4299", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jre-11.0.10-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.10-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jre-11.0.10-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.10-ea.2_windows-x64_bin.zip", + "checksum": "12059dc007d401095125b03a0eda98d285fb2d0c131bf3490407e2ad2d1e17a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B2/sapmachine-jre-11.0.10-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.10+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.10%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "a602a746044425964af052085535cc35540d9599c1275a0566d3ead7ecd45b16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jdk-11.0.10-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "f3a294c4fcb122fe29cecf77823793fa420e160e4ab6aa74dc16aa901ca093da", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jdk-11.0.10-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "c6a970755937882e3b515506cbda705238583c74026adf97980e6a4c68debf10", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jdk-11.0.10-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.1_linux-x64_bin.tar.gz", + "checksum": "6a4e4b2b5e1f9dd9e9c288e4974ad74b6343f47ac3b2f428e0a07f84a35d73c7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jdk-11.0.10-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.10-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jdk-11.0.10-ea.1_osx-x64_bin.dmg", + "checksum": "40512952119428cc2996677b2b3e79799ce1efd91c3bf7eb42edbf1b16817e70" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.10-ea.1_osx-x64_bin.tar.gz", + "checksum": "ed278d644eba18927d7719d62e9bca1bf58ea0a5762475fe46e3374f6879d4db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jdk-11.0.10-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.10-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jdk-11.0.10-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.10-ea.1_windows-x64_bin.zip", + "checksum": "93e94268de58b37094056144e9d8aeac0ab95e5a5db98435ccf36cfdfc634b07", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jdk-11.0.10-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "762f8c0a2d2d2f1f9cc44dc69fa4822647b9a8c17129e750e6abbc5b55d46e58", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jre-11.0.10-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "0081c957f3430884944b528738f4aabfb166c425e6b296e0ab83599b85c49688", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jre-11.0.10-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "8b0af375dbe81adbf82440bfbbde0187f8b0df0c858c37bfeae6001d6e0e069a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jre-11.0.10-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.1_linux-x64_bin.tar.gz", + "checksum": "92a01e4adbc9b39fd978ce668f2b4e9debcaccc84c4d914e02af3f9be6af8de6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jre-11.0.10-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.10-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jre-11.0.10-ea.1_osx-x64_bin.dmg", + "checksum": "befff35fdae2a24c26d7f4b190ee6a8981b6c46448ceed51c3253835e180b3c6" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.10-ea.1_osx-x64_bin.tar.gz", + "checksum": "cb8bc8a102ea15cff60e3ff6ff43bf6ec09f5d88bf526fca43a5e21de0511219", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jre-11.0.10-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.10-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jre-11.0.10-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.10-ea.1_windows-x64_bin.zip", + "checksum": "70d5b97cc6ae1f2f7098e3fddd254fefe1e6471bccea50bb4e90a025e5ad15a3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.10%2B1/sapmachine-jre-11.0.10-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.9.1": { + "sapmachine-11.0.9.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.9.1", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "c7c5edc71dc2edd7d7aaca21f19af318a23667b7245ddc535551ebeae8322923", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jdk-11.0.9.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9.1_linux-ppc64_bin.tar.gz", + "checksum": "a00d7a3796b53af994911bfeae278dcde7b14429c3a2f192244e1ec2e6b2a9f7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jdk-11.0.9.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9.1_linux-ppc64le_bin.tar.gz", + "checksum": "5e2a916f1b1e447c5b4deae4600c51f20954277991f47e4bb35827492523fbe3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jdk-11.0.9.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9.1_linux-x64_bin.tar.gz", + "checksum": "abc1530fa7d6b589161844ccb6a390b61755d5ce54aa9734c2300613a64c0198", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jdk-11.0.9.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.9.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jdk-11.0.9.1_osx-x64_bin.dmg", + "checksum": "7f54314b375d1809b7b58af5f382979952ad1108797af56ba87b3341e02e0011" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.9.1_osx-x64_bin.tar.gz", + "checksum": "5784fd582e10e0f78b3daaeb969e7be57555df610e89c2b48f896b8589d07e85", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jdk-11.0.9.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.9.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jdk-11.0.9.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.9.1_windows-x64_bin.zip", + "checksum": "8da918eb5c0dcad52b8bbb12db096f4e43e24e89552c747134bd4d7ab0ea47a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jdk-11.0.9.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9.1-beta_linux-aarch64_bin.tar.gz", + "checksum": "6c27c1c04a51c17d438638e8b69454aa2d82c1bc7af1ea1b8de806bfe905e4a6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jre-11.0.9.1-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9.1_linux-ppc64_bin.tar.gz", + "checksum": "2edad9852db1a36cd6e67b4b55bed70e46dd4705972f4fe7e15dd98cc0e75f6f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jre-11.0.9.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9.1_linux-ppc64le_bin.tar.gz", + "checksum": "7488e87758706c37490aebf08181b24dbddb941ce3252f692e90fa9f250cc3f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jre-11.0.9.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9.1_linux-x64_bin.tar.gz", + "checksum": "493cecfd2b0cab8d2e1e427c2fdaf52dc71431c906bb1e5c7dafb424219f8043", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jre-11.0.9.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.9.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jre-11.0.9.1_osx-x64_bin.dmg", + "checksum": "0a3b2772b616b476cb84665deee86dca604f75fe2b2654efa8089d14e81c8546" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.9.1_osx-x64_bin.tar.gz", + "checksum": "e34ad4c07c75f8dbae279b19f58a4f76677b2160f50a7f7a0e76ede519463d69", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jre-11.0.9.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.9.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jre-11.0.9.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.9.1_windows-x64_bin.zip", + "checksum": "170008c06dec9576b3dafb267838cfc575103f7a306e4df4851c842492d02b87", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1/sapmachine-jre-11.0.9.1_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.9.1+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.9.1%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9.1-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "046ba8856f21b74d75fbda1d0761b3f409dfee092f91e4b68e927589a4977a4d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jdk-11.0.9.1-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9.1-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "b89083798ca483a1c38e0a71b8eba5a05d1d3eaec736b8a48a8912f480a033e3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jdk-11.0.9.1-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "e10dd85be459d9bd5125040430970a8ad2af24711592fc6c71519acbe239706f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jdk-11.0.9.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "2baa4b4655244480917c91d7af1d8e9197bb6bd8d0de0641d715f3676cae3e3f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jdk-11.0.9.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.9.1-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jdk-11.0.9.1-ea.1_osx-x64_bin.dmg", + "checksum": "e0818a8477191909b8cab06ced475addc7aeadf9092c213e49dca42de87667be" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.9.1-ea.1_osx-x64_bin.tar.gz", + "checksum": "49530aaef22d8e2215e36cbf265cb7b3196e73fbd83738156f9957cf2749bde8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jdk-11.0.9.1-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.9.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jdk-11.0.9.1-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.9.1-ea.1_windows-x64_bin.zip", + "checksum": "1c114a08855d128d8252db4da49c04fab0f49e923fcd6d490958c0b146716ce9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jdk-11.0.9.1-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9.1-eabeta.1_linux-aarch64_bin.tar.gz", + "checksum": "fe6733327b75a75d573a53f397a14d9a7e0edcb20c91a5f68d8f6aaeb41d9331", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jre-11.0.9.1-eabeta.1_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9.1-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "ac900afcf4ef2abb79743d36e35e2bd9501ceca46b5729bf8cb7d90826ccca38", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jre-11.0.9.1-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9.1-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "93e07e569f7efb443cf11adad0581bea1b13f4aa03432830e536008c03fbb6fe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jre-11.0.9.1-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9.1-ea.1_linux-x64_bin.tar.gz", + "checksum": "9235dd300329be14f10d1ef2e289fd976e5ff4c83ed0ff1080314414636df369", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jre-11.0.9.1-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.9.1-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jre-11.0.9.1-ea.1_osx-x64_bin.dmg", + "checksum": "428a20c7758f69bc560ea51235ed00747e6dfdc1da94b88a5399c24caa345dc7" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.9.1-ea.1_osx-x64_bin.tar.gz", + "checksum": "b414b47e7858357c76c3faca19665a6c48f26457124b8822dd94c1880792de81", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jre-11.0.9.1-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.9.1-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jre-11.0.9.1-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.9.1-ea.1_windows-x64_bin.zip", + "checksum": "2f5ae2b955c5f604407ade5900b77559b8917b58d838c768216bf8a779ed9db2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9.1%2B1/sapmachine-jre-11.0.9.1-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.9": { + "sapmachine-11.0.9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.9", + "ea": "false", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-beta_linux-aarch64_bin.tar.gz", + "checksum": "32221ec9e082e899fb47c97864bc3c8604e5add89738523b23fac04102332579", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jdk-11.0.9-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9_linux-ppc64_bin.tar.gz", + "checksum": "71a884725588b4c028a7cebf8d614f298470895b8f43e2ae614588e068562089", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jdk-11.0.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9_linux-ppc64le_bin.tar.gz", + "checksum": "6cfc12ccb98a6a36f67313f7d5b9ae24e681509fb49ac346928104d2985b2ad9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jdk-11.0.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9_linux-x64_bin.tar.gz", + "checksum": "a4879f32cff8c1575364888775e61705f79b37f4ec5135fbd20b220d0f0aecca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jdk-11.0.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jdk-11.0.9_osx-x64_bin.dmg", + "checksum": "c68b26cc9d4817feaa14beefde927dd663e7c35354fbe0ca10c966085648159c" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.9_osx-x64_bin.tar.gz", + "checksum": "76936ba702b463c4ddd1908cf0bd2af6bf18144a34f8c6531d2fc47774cbaea8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jdk-11.0.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jdk-11.0.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.9_windows-x64_bin.zip", + "checksum": "7beab71c42a6f1e6faef1a16d78beebd0e3d488bd3368b5b07be8600b50dde43", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jdk-11.0.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-beta_linux-aarch64_bin.tar.gz", + "checksum": "f5301fd6d6cd84b7556dba02ae24c6d8beb9ac4bab30f3fd480098f66f18dbb9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jre-11.0.9-beta_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9_linux-ppc64_bin.tar.gz", + "checksum": "12cd02f5e10cbebe2f87ddfb74b1e9bc8784abb218e0786b289715c12a16c038", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jre-11.0.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9_linux-ppc64le_bin.tar.gz", + "checksum": "e697dcb8d32ba054f30fdc2f181494c99f25e5ba797b1116002533a54de49339", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jre-11.0.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9_linux-x64_bin.tar.gz", + "checksum": "423a5ddd873aaf80d96d4602cf3d893da728edd2e8ea29d9250e881be7388d52", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jre-11.0.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jre-11.0.9_osx-x64_bin.dmg", + "checksum": "78d2fe77ba060694b2b8c4811f1535fb71178f42ec60b9fc40b6fbf19a6284db" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.9_osx-x64_bin.tar.gz", + "checksum": "c1bdae781cdc33708dd6f8ba47e391d488e17c50c0378844e5fe7069ac8b66f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jre-11.0.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jre-11.0.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.9_windows-x64_bin.zip", + "checksum": "f7ab33d7dce87ed6db2aca51b91719aaa33abd106a9b66532eb07ef4b331e3ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9/sapmachine-jre-11.0.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.9+11": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.9%2B11", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-eabeta.11_linux-aarch64_bin.tar.gz", + "checksum": "8533ec523deed2e2e31643d65702940db09e6f8f43f2f9731385cddf0be49cfe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jdk-11.0.9-eabeta.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "e56a23845776378c37f00fb5be329fb16a4fd810addf1ab0f46681ba3bdfa9aa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jdk-11.0.9-ea.11_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "a8303b9090056a61b81bf44716c9596389251bb802d2b8b98033159f6f329313", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jdk-11.0.9-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.11_linux-x64_bin.tar.gz", + "checksum": "5127e218ff32e231a73180569f8f22984daf9b0af90980320e64da5723940b2f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jdk-11.0.9-ea.11_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.9-ea.11_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jdk-11.0.9-ea.11_osx-x64_bin.dmg", + "checksum": "e9094860a9749839fd70552e9761e1cc98b4a92b5530b4eddbbae55552266c4c" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.11_osx-x64_bin.tar.gz", + "checksum": "4f755c35195ff6cddc40081192cf11cb379a268a3aa2cb979881cb81ec508055", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jdk-11.0.9-ea.11_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.9-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jdk-11.0.9-ea.11_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.9-ea.11_windows-x64_bin.zip", + "checksum": "a04847451fdae32851798df5ce2e32b00b0ad657ccb7f035c8fa50b773926f24", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jdk-11.0.9-ea.11_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-eabeta.11_linux-aarch64_bin.tar.gz", + "checksum": "868f45f40fed8a813b2d4863ef0cae687bb4216ff946c613da8fc644d8e13384", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jre-11.0.9-eabeta.11_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "b9f629d40f16110576b168882ab4f34841a1bcf5563bb5609f47456a95725aa5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jre-11.0.9-ea.11_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "b00f8d2920afc3a14eb5f2a0e38558f3a4b97753f0d6420b68fc39bf90a6cc6c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jre-11.0.9-ea.11_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.11_linux-x64_bin.tar.gz", + "checksum": "e97789a5110bbd9c6f0ae2b2eaada50e9751b606011f9952355080a992599a79", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jre-11.0.9-ea.11_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.9-ea.11_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jre-11.0.9-ea.11_osx-x64_bin.dmg", + "checksum": "41ed6b51a5c57ffa392d43891f543bcaa589bfa8fef4862960231cc39928161d" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.11_osx-x64_bin.tar.gz", + "checksum": "91bc4299023fbe04c4827e25d5fe2dcb9e4e9cfcdfa1cfc26a4c1f2a01873139", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jre-11.0.9-ea.11_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.9-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jre-11.0.9-ea.11_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.9-ea.11_windows-x64_bin.zip", + "checksum": "16b9aad2875f97a67c73a64ec8a003a1187cef37e8ec3ab80097e758d51f15f5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B11/sapmachine-jre-11.0.9-ea.11_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.9+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.9%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-eabeta.10_linux-aarch64_bin.tar.gz", + "checksum": "d047a535303028bbb24ddc6835ff4e316976756260d77a56f89c706c5c837f11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jdk-11.0.9-eabeta.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "1740f96720c75860625cf15659b8979dcbe04e718a542fb4808670b8c10fe4c4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jdk-11.0.9-ea.10_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "879a9277479c1e6710d8a06b9698e6dcbdaeef6d667de28d9ca8580ad220fcc9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jdk-11.0.9-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.10_linux-x64_bin.tar.gz", + "checksum": "6166f7d7067a2bfe8aabbf4968de025ef49ef976d3f0b074867a4d4e02178af9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jdk-11.0.9-ea.10_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.9-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jdk-11.0.9-ea.10_osx-x64_bin.dmg", + "checksum": "0792d7ea56b90ebd80a78dfe459c301d12c7192a9a73e33da4c622ff4756d268" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.10_osx-x64_bin.tar.gz", + "checksum": "f62d5018343356456e647062bd10ce5dcb68d7649767f15db59ea77a39584d90", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jdk-11.0.9-ea.10_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.9-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jdk-11.0.9-ea.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.9-ea.10_windows-x64_bin.zip", + "checksum": "17dff3532cdf13934c9ab1b0e2cede566b727ee80630d957dadda59473ab5c55", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jdk-11.0.9-ea.10_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-eabeta.10_linux-aarch64_bin.tar.gz", + "checksum": "35b9f4c832645a9fdc66196b66f8254c44fb81221ad4c46c0c90bf5382b0980b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jre-11.0.9-eabeta.10_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "92259120ecb62bd36a32af7a52bf4498da24a605ae3c331329be480ab11f2b16", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jre-11.0.9-ea.10_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "ffcea7f6391b93e92f50378361409821aa6173819c17c82b77db8ea08bea9f09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jre-11.0.9-ea.10_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.10_linux-x64_bin.tar.gz", + "checksum": "ffa43b5ab6709c2570b3efe4cc82b71fda6d5bdef7283f929ace31f177fa6e46", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jre-11.0.9-ea.10_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.9-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jre-11.0.9-ea.10_osx-x64_bin.dmg", + "checksum": "5b9b55f4f671bee1657fbccc024445172b22c2f767db303459ea580b5a772abd" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.10_osx-x64_bin.tar.gz", + "checksum": "0d4b27112054f061c8c972dcebc748dfb73f7c68e3020efd16f93282f68b5661", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jre-11.0.9-ea.10_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.9-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jre-11.0.9-ea.10_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.9-ea.10_windows-x64_bin.zip", + "checksum": "062fd34d309a78be0a822df5d6c695acb64d2d88cea0f773f2183267fc100673", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B10/sapmachine-jre-11.0.9-ea.10_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.9+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.9%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "0019e29d7913758f6a09fb9f1a75897a58678ff84e594131a2cd4aded7c27210", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jdk-11.0.9-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "024a5c08b9936f2be79459c2e43941c4f8bed7a2b4bf8d6aaf7142435fcfe482", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jdk-11.0.9-ea.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "67ec7669290dd4abd809aeaf5777bf9ddb1961836992c8b56db04de7469f766e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jdk-11.0.9-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.9_linux-x64_bin.tar.gz", + "checksum": "525287d686ff8454967b64137ec12f27f13a31e1376337f70b32ed57f74b242a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jdk-11.0.9-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.9-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jdk-11.0.9-ea.9_osx-x64_bin.dmg", + "checksum": "0d87d37debb76ee6f7c9342cdc519b2bacf48932f2740330111095f639c58427" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.9_osx-x64_bin.tar.gz", + "checksum": "94ef490164f126df1f56bd11721faa349c3cd691487ed74272e8df49af11fc72", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jdk-11.0.9-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.9-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jdk-11.0.9-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.9-ea.9_windows-x64_bin.zip", + "checksum": "f39a19b28c144ac4a8000d569ce25ae6a419d365f2785d8acba68c1c51fc3097", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jdk-11.0.9-ea.9_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-eabeta.9_linux-aarch64_bin.tar.gz", + "checksum": "be7856e039d7debf6daa654c6b89e23fd8eaee4579ee01b77c973cb931fedf68", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jre-11.0.9-eabeta.9_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "1cc95cb4ecc7da179c6d4e353c898240e479621378bfc477234192ae89d1af2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jre-11.0.9-ea.9_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "c6cb3605cc821094cd893c7c062e90289b8633853f8e1c759db3f881ad3f8546", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jre-11.0.9-ea.9_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.9_linux-x64_bin.tar.gz", + "checksum": "95f0c4772059581678fe2e78df6a2fbe0267c753f0f4f11630557cebf2fb0a53", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jre-11.0.9-ea.9_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.9-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jre-11.0.9-ea.9_osx-x64_bin.dmg", + "checksum": "5dee611c0221f0275e0cfaa000f86cda0a65723cbb5054d612ee70ea05903062" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.9_osx-x64_bin.tar.gz", + "checksum": "c873b64ceef1ee6432bc5132c4bacd86fc13f3008bfd54732aeaae7234a3d35c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jre-11.0.9-ea.9_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.9-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jre-11.0.9-ea.9_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.9-ea.9_windows-x64_bin.zip", + "checksum": "7900ddb67148ac88bfe3dad0e5a74408fe20b96b260938d412cb299323793919", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B9/sapmachine-jre-11.0.9-ea.9_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.9+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.9%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "4615d3f5a8c7f78c9da5d35c8ce5fc036f275e24ff51164b06d46517c853a119", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jdk-11.0.9-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "690a85361b8b5a43806a648508b66300d2cd3b9857ed996a5d774ea972aa6fb6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jdk-11.0.9-ea.8_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "91e13fd3633594878dff8a4b81657140fa878e1c7d0fdfab9be725cc8bc510b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jdk-11.0.9-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.8_linux-x64_bin.tar.gz", + "checksum": "ca1cdfd8a83c8daa011c40f791274afcc389e9af25da5558e18c99ceb7aa033a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jdk-11.0.9-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.9-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jdk-11.0.9-ea.8_osx-x64_bin.dmg", + "checksum": "d4518e369a8273e1cf9e5026709e59266dea6b319451cd4492bc750766d52fa4" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.8_osx-x64_bin.tar.gz", + "checksum": "2fb27f6c6824e159a35fe7a1c80c534ca6f106c6bf1371d542c351c7546f1cd5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jdk-11.0.9-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.9-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jdk-11.0.9-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.9-ea.8_windows-x64_bin.zip", + "checksum": "c98ee8485a73e708345b91577fdeb742843419fd6f2c1a932975db1c27fc47e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jdk-11.0.9-ea.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-eabeta.8_linux-aarch64_bin.tar.gz", + "checksum": "98112773cc2bcc534da5dd663fa186d90201a459c7eb9081c32bdf1157bbadc0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jre-11.0.9-eabeta.8_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "41ba0647a0681cec36ccb7fe9cecf76ec2af90876b8e0f3e005b7c09da818ca9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jre-11.0.9-ea.8_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "dbddcb551eaf154c4bd9e169cb9bced827ad4b9be10575ad21aa55db64702fa0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jre-11.0.9-ea.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.8_linux-x64_bin.tar.gz", + "checksum": "cd8c6aae418caeef75e0b8ae14b542db5b3fe7f43fbfd3be2b7a2cadd604b8fa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jre-11.0.9-ea.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.9-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jre-11.0.9-ea.8_osx-x64_bin.dmg", + "checksum": "fdda57f320ea5b68ab3f668ce62ae12cd6a97b92f92716c63576bf0a553262c1" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.8_osx-x64_bin.tar.gz", + "checksum": "54ef244942a8e3a0b4270a7e5e86f4ecea1a6b5b83d3b3d5591e3beac22ffd8f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jre-11.0.9-ea.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.9-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jre-11.0.9-ea.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.9-ea.8_windows-x64_bin.zip", + "checksum": "798845f8e4f47fa5101432febf6842b1cc315f00fed4d08bd14bd4e2634e2b63", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B8/sapmachine-jre-11.0.9-ea.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.9+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.9%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "d64ec17d3fc312de3811edc60a02781981a3dfffbf381dcae79095f7d0568639", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jdk-11.0.9-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "06b59c5a4776c3fc7948551c41ff2861a481a0ef42f1a9a541d9ce75a212bded", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jdk-11.0.9-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "28396bdd5360c71e86439f88c02596fd539e31b87c8cb63b7bee7c382194246f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jdk-11.0.9-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.7_linux-x64_bin.tar.gz", + "checksum": "a000a4b22f22b376b992bb1eaec5c1e6660fe319bce5ad06b1f15bafb3806096", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jdk-11.0.9-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.9-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jdk-11.0.9-ea.7_osx-x64_bin.dmg", + "checksum": "af86a05880df6ac8660a264068bb5d4b021187d6436ed29f5e2de1f77f5b5d18" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.7_osx-x64_bin.tar.gz", + "checksum": "bb7c65dab42e863d5ca6f1d81ff01a4a2e85cc387052b18bc3d0e4c4737488e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jdk-11.0.9-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.9-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jdk-11.0.9-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.9-ea.7_windows-x64_bin.zip", + "checksum": "d2296daf37e23e1797beafdf87ec721dcf27756bf12a57218c14917a4345e8a2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jdk-11.0.9-ea.7_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-aarch64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-eabeta.7_linux-aarch64_bin.tar.gz", + "checksum": "cde4342dde77a2431ba652d289d4305123eec6f0c3ca71bd87dba6dda2dcf637", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jre-11.0.9-eabeta.7_linux-aarch64_bin.tar.gz" + } + }, + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "84826b78be9c5c756c5a9c2b74584c2e0e9c7b553208f58be7d7a85405db3aed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jre-11.0.9-ea.7_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "5fa8f0a97408a988e1c0f31cb6364b76a4d99a8319fa7a9b9d97d30b3f0b3ef1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jre-11.0.9-ea.7_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.7_linux-x64_bin.tar.gz", + "checksum": "0237e88ac03d7fc8506ef53874316a62c597b064f0b6283d03601428954716ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jre-11.0.9-ea.7_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.9-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jre-11.0.9-ea.7_osx-x64_bin.dmg", + "checksum": "e8f797e4215c115287bc80872e4d0a9a547bae4066c1888d19894f6691fa0355" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.7_osx-x64_bin.tar.gz", + "checksum": "bc46ee7a55de03a15813d118b894e43b267c88eb7fb20104f3e5751e017e78c5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jre-11.0.9-ea.7_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.9-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jre-11.0.9-ea.7_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.9-ea.7_windows-x64_bin.zip", + "checksum": "43c9be0bd42a899bee16a1af667b875be310274a16d872724ff291ae0c3e0f09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B7/sapmachine-jre-11.0.9-ea.7_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.9+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.9%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "1ef24e87a467662be8832e2dec9490134eea3ae40db4b8f0ce21c8d4e29e1f87", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B6/sapmachine-jdk-11.0.9-ea.6_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "725cbce283e44262ae0882f2d2503a2c0d509780baafbc70b42fc94460ecbfc9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B6/sapmachine-jdk-11.0.9-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.6_linux-x64_bin.tar.gz", + "checksum": "091a9108d5d05a79859a62043b71ca9364f6f1498577f5d65d3dba1c242cb41c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B6/sapmachine-jdk-11.0.9-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.9-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B6/sapmachine-jdk-11.0.9-ea.6_osx-x64_bin.dmg", + "checksum": "2b0438e9680160363cc931c8430f6184268b694dbab5e63f57173c469dca7a8c" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.6_osx-x64_bin.tar.gz", + "checksum": "898dacff8d28566697cab8e52f9eb6d9ab3f8ae895e51681c0ca1fb8341da304", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B6/sapmachine-jdk-11.0.9-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.9-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B6/sapmachine-jdk-11.0.9-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.9-ea.6_windows-x64_bin.zip", + "checksum": "23fbb56495a9d2ead54f79c8b9edf9ba1ebfc5f45e7dbbc4c81810abdb94f608", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B6/sapmachine-jdk-11.0.9-ea.6_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "d34212d0c4e8710368bfb716411af73157d80eac82fed8122aa713cfde937380", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B6/sapmachine-jre-11.0.9-ea.6_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "3a0cc4d7770ee8ab290d3893105164b7da2600ef9e01944f4dd401f2f83e1462", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B6/sapmachine-jre-11.0.9-ea.6_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.6_linux-x64_bin.tar.gz", + "checksum": "ec75072bca0305e5f3efbfb96961dc5c87fca945da580cca6392b2763245bfd8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B6/sapmachine-jre-11.0.9-ea.6_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.9-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B6/sapmachine-jre-11.0.9-ea.6_osx-x64_bin.dmg", + "checksum": "ad45b9514a34036b19c51a8f74414a284ec5a01b0572409e856dbc380b424023" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.6_osx-x64_bin.tar.gz", + "checksum": "1f30395186995902aa9171c6186b72bdf6b082b71f379146b9ec8e0c4500d3d9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B6/sapmachine-jre-11.0.9-ea.6_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.9-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B6/sapmachine-jre-11.0.9-ea.6_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.9-ea.6_windows-x64_bin.zip", + "checksum": "4b356d42b263ab2f2147a58bf27c32f0e9c10eca33393b31645f7ac5cd01435d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B6/sapmachine-jre-11.0.9-ea.6_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.9+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.9%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "87deb6712199aa6aa941d84b9d1b6f0eab460e626f45c6aa8ca4ed27d00d2d8d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B5/sapmachine-jdk-11.0.9-ea.5_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "742e04d96e053bce6c1a40bf7c6d54c66ceb3b982c0dfb784df1d511dec465af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B5/sapmachine-jdk-11.0.9-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.5_linux-x64_bin.tar.gz", + "checksum": "5e4373f6145264c5bff94d74aabfd52eb715ebab2954eabff220d99270d3e571", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B5/sapmachine-jdk-11.0.9-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.9-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B5/sapmachine-jdk-11.0.9-ea.5_osx-x64_bin.dmg", + "checksum": "554a66799f883f1fee635ec65bba77afc63e7c7a9cdb789fa6abe3adf339645a" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.5_osx-x64_bin.tar.gz", + "checksum": "35d1069f38e1ec0cd8e5dccd4ccd448ee7179f9744c23c01d759f5a23ae56297", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B5/sapmachine-jdk-11.0.9-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.9-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B5/sapmachine-jdk-11.0.9-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.9-ea.5_windows-x64_bin.zip", + "checksum": "4a750ed9776bb5406421ae4a5db9f802a0dcc224fc0b43f3d1c85d9b804f5281", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B5/sapmachine-jdk-11.0.9-ea.5_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "2d338ee962b2e24c3439e57d7b9eaa2a1bd593a1699fdbf67019bb20ae779864", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B5/sapmachine-jre-11.0.9-ea.5_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "508bfda49f9dbaaafcc5391142ff44d017fe380fd0b63884c2bb0ec82aa9c178", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B5/sapmachine-jre-11.0.9-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.5_linux-x64_bin.tar.gz", + "checksum": "7fee538413bc5db1f9a5fb3bce5f86284865fe050acde28b779b85953cf93843", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B5/sapmachine-jre-11.0.9-ea.5_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.9-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B5/sapmachine-jre-11.0.9-ea.5_osx-x64_bin.dmg", + "checksum": "16863c41a97f2114f6ae8e5cc0e41ccd5e7d82a0adc1a23a30dee0dfa08fa047" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.5_osx-x64_bin.tar.gz", + "checksum": "baf6400bf2a4d59117153de992b83e0943c0e9496c62fa3480961bd13f3e0a24", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B5/sapmachine-jre-11.0.9-ea.5_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.9-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B5/sapmachine-jre-11.0.9-ea.5_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.9-ea.5_windows-x64_bin.zip", + "checksum": "30a170bb1a6597ebc1a385874124a81b369a8d3fd26c72a8c1d32b0328220812", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B5/sapmachine-jre-11.0.9-ea.5_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.9+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.9%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "d3e4b8f3b9862ff5a1bb603e6e199c24fd11168a353aa10d03a0c8d44d048070", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B4/sapmachine-jdk-11.0.9-ea.4_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "a96859e2626dc65be07746a0f5075fc7bac19dfc6f48660b258482fdc80c679c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B4/sapmachine-jdk-11.0.9-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.4_linux-x64_bin.tar.gz", + "checksum": "4dc09afab1cc0d52aa9077a44e28f8142cecb73ea34da738a872fdbbc1249516", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B4/sapmachine-jdk-11.0.9-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.9-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B4/sapmachine-jdk-11.0.9-ea.4_osx-x64_bin.dmg", + "checksum": "0b52dd84eb0bed3986fa030704967eec1179234c995c3a6dcb587e13a56a5231" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.4_osx-x64_bin.tar.gz", + "checksum": "96ff732f631f3a92423a947f510d676ae9b1c5e9e95e447257facb68b17d4e91", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B4/sapmachine-jdk-11.0.9-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.9-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B4/sapmachine-jdk-11.0.9-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.9-ea.4_windows-x64_bin.zip", + "checksum": "6833bb2cafc12430fcd5feaa13951fc2771db18bda612c07a7e9f681c7404da7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B4/sapmachine-jdk-11.0.9-ea.4_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "b94ac5c556f7f9a0ce24ed91116734afda09666b8b2f0c3fe26d8eaabd72c4af", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B4/sapmachine-jre-11.0.9-ea.4_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "fc936539ee5da896a8e3c5bee13d8df09428571a010c5f1cc0250504268b4b44", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B4/sapmachine-jre-11.0.9-ea.4_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.4_linux-x64_bin.tar.gz", + "checksum": "f9a72834c1f741f18cfae5c74ae793f7959cbf4d15b1b5acee8d5ced9a30a183", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B4/sapmachine-jre-11.0.9-ea.4_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.9-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B4/sapmachine-jre-11.0.9-ea.4_osx-x64_bin.dmg", + "checksum": "b30f28f74cb101e2474d84a031a093db36e8d7be0b0825eee91c72e3577419d7" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.4_osx-x64_bin.tar.gz", + "checksum": "babde94375972b5537a969e130945e5be5c522f2fd8b9b0664f9b42730a1ce52", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B4/sapmachine-jre-11.0.9-ea.4_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.9-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B4/sapmachine-jre-11.0.9-ea.4_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.9-ea.4_windows-x64_bin.zip", + "checksum": "32515803e2862898b95d88bcc0b34ea51c10b74ca80f4a65e3711ba6d2571a78", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B4/sapmachine-jre-11.0.9-ea.4_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.9+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.9%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "0c124a0059ef92de5e055911fbb6dbd75fdda2129e11edeb3641682f05a25765", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B3/sapmachine-jdk-11.0.9-ea.3_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "2f5b2d55a0d09f3e051c22eafcc0e510f0d30a34ebf45f0495d905b6a001cf86", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B3/sapmachine-jdk-11.0.9-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.3_linux-x64_bin.tar.gz", + "checksum": "ab9ecf77a4401c1ba3a822bfe360c224f2d678ff8d246ab495f52c491e61c1cb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B3/sapmachine-jdk-11.0.9-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.9-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B3/sapmachine-jdk-11.0.9-ea.3_osx-x64_bin.dmg", + "checksum": "2ad371c0c18a0fd1c62c5700aa2e9620f6fd0ac0c3dbc2a42f698f4081c88bcc" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.3_osx-x64_bin.tar.gz", + "checksum": "469784c1f79f4e04e157d75ce15472f1960c5336a0d919a7296ea792b4dd188e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B3/sapmachine-jdk-11.0.9-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.9-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B3/sapmachine-jdk-11.0.9-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.9-ea.3_windows-x64_bin.zip", + "checksum": "c386a4bfa57740b4f943aabccc33eb27ada584fb4f9c5d41c21d2a04680fe1db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B3/sapmachine-jdk-11.0.9-ea.3_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "2d9fba97dfde1b80657e534845cc85f482e65610b2ad742b3e2357fb1cb11b1c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B3/sapmachine-jre-11.0.9-ea.3_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "e0076a6bc0edf65dc23b3e031ec05e8e87ba4eace1c0a155f7582548b4673c26", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B3/sapmachine-jre-11.0.9-ea.3_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.3_linux-x64_bin.tar.gz", + "checksum": "e1811550e6b0c4539df6c57837acc46bc5b36d79ce80ee5909e1226f4de835db", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B3/sapmachine-jre-11.0.9-ea.3_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.9-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B3/sapmachine-jre-11.0.9-ea.3_osx-x64_bin.dmg", + "checksum": "a5d7640c08c40661543da857ab7d615ad25292f06775c8e1ef41a74979f70700" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.3_osx-x64_bin.tar.gz", + "checksum": "247b60ced8cd04c5c61c678da05d4df705d16ff2bbf2356b15accd679940c1aa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B3/sapmachine-jre-11.0.9-ea.3_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.9-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B3/sapmachine-jre-11.0.9-ea.3_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.9-ea.3_windows-x64_bin.zip", + "checksum": "fbac435865167aacbeaf937122d01b6fa7c5850fc3df3cdbfb74013140688597", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B3/sapmachine-jre-11.0.9-ea.3_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.9+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.9%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "2f33ee01abaa4501ed5579ec553bf17ff8669c87ce44dfe4ed000b3a7e34f507", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B2/sapmachine-jdk-11.0.9-ea.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "cdc61ea986a653f87870d0c7c327ba8169cf54dc24055de2728677a077c8bdf1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B2/sapmachine-jdk-11.0.9-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.2_linux-x64_bin.tar.gz", + "checksum": "e3d3428a054398648bb3cd95e641095ce979452a2a851fe60016fba2a183b310", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B2/sapmachine-jdk-11.0.9-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.9-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B2/sapmachine-jdk-11.0.9-ea.2_osx-x64_bin.dmg", + "checksum": "59a564f17a050dd576117f115c06e9978377fce6ccda4f658b174771b04f6ab5" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.2_osx-x64_bin.tar.gz", + "checksum": "03be1474c212d6c831ab469ef26afb7ef59b0da5de882c84b7694fd5edbf3cd1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B2/sapmachine-jdk-11.0.9-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.9-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B2/sapmachine-jdk-11.0.9-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.9-ea.2_windows-x64_bin.zip", + "checksum": "03328edae0c919b6b1d4fc78acb882a5926e8afe86581e29c48866dcf80d39b8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B2/sapmachine-jdk-11.0.9-ea.2_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "51527874d6eaaf9909d68eff06ffd5a2296077d4169c3078425412eb006c6d52", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B2/sapmachine-jre-11.0.9-ea.2_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "3f76408bf932bd4c605bae3adc1f8b684598eecde99509c5d0e88dc91659dacd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B2/sapmachine-jre-11.0.9-ea.2_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.2_linux-x64_bin.tar.gz", + "checksum": "d10bd0029c985b0709f8a85d5f0c8f0dd56bd1b0e849350f9c56b99846df3f68", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B2/sapmachine-jre-11.0.9-ea.2_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.9-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B2/sapmachine-jre-11.0.9-ea.2_osx-x64_bin.dmg", + "checksum": "78763c8aa76991335979ac6449c97ee6345bc62cb1ab648260ddde72edf5ecf1" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.2_osx-x64_bin.tar.gz", + "checksum": "e47ee8083504b5dc2752bc0dfd638de3dc6741a100395f36fea94b281b58ac0e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B2/sapmachine-jre-11.0.9-ea.2_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.9-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B2/sapmachine-jre-11.0.9-ea.2_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.9-ea.2_windows-x64_bin.zip", + "checksum": "573465ae13194b937fa95689a2cfc8e8edcf8e42afc0417f33ad815088ba1265", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B2/sapmachine-jre-11.0.9-ea.2_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.9+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.9%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "9debb78ff09f2d462b3abcc75c2f9873a5c7d29074f6bdbdf88b457d657da3ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B1/sapmachine-jdk-11.0.9-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "c7a45f4345a9d1fe17ab643213a29c1dede56d4b9ecd59987e2943366755c53e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B1/sapmachine-jdk-11.0.9-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.1_linux-x64_bin.tar.gz", + "checksum": "d1aec0944be68fae3ed5f50207d5158a6a41048305c81db45176299dea57672c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B1/sapmachine-jdk-11.0.9-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.9-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B1/sapmachine-jdk-11.0.9-ea.1_osx-x64_bin.dmg", + "checksum": "c2b959353e904bb64e99408507b01fe35b574ff2f37ccbaa2693945beac46338" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.9-ea.1_osx-x64_bin.tar.gz", + "checksum": "e97b1d3f68283eb8cea03de1e5a29eb796ba7eca1599fe504f901fee9a2226a9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B1/sapmachine-jdk-11.0.9-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.9-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B1/sapmachine-jdk-11.0.9-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.9-ea.1_windows-x64_bin.zip", + "checksum": "2d5d54965a4772f5bc74f6cd8c4c9a34923d15dec7a06235632901ff8e59d429", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B1/sapmachine-jdk-11.0.9-ea.1_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "470a8fab6b3d2471edaf4cb64ebba2607d2e1d601b568a6af9b13d7b10401c56", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B1/sapmachine-jre-11.0.9-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "96c764c2ae66301d7029f66fc178fa9b3c92face0c29b66c7b795a6246791c8d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B1/sapmachine-jre-11.0.9-ea.1_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.1_linux-x64_bin.tar.gz", + "checksum": "d0f3c174e1311c69b8b1c5fe08a5d8df465d16a5a07de96ef8b19c674390e3c3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B1/sapmachine-jre-11.0.9-ea.1_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.9-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B1/sapmachine-jre-11.0.9-ea.1_osx-x64_bin.dmg", + "checksum": "1ac43954c713b1ce139a26de13cd4fbc9d63742d48ca7b40dcd6679f8b7cf217" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.9-ea.1_osx-x64_bin.tar.gz", + "checksum": "83a8bc051980438f4a20451c7d5d931c257f95f32d4abdb2165cc8f8c5b78688", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B1/sapmachine-jre-11.0.9-ea.1_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.9-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B1/sapmachine-jre-11.0.9-ea.1_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.9-ea.1_windows-x64_bin.zip", + "checksum": "b3e32faa9a87100a347592863a967b0ab238316bbc042a120e176fde8ce947ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.9%2B1/sapmachine-jre-11.0.9-ea.1_windows-x64_bin.zip" + } + } + } + } + } + }, + "11.0.8": { + "sapmachine-11.0.8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.8", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8_linux-ppc64_bin.tar.gz", + "checksum": "eefa502045b44fefcf81dc4cf8f33f3cc259d78d85d113420afb17d0cee50916", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8/sapmachine-jdk-11.0.8_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8_linux-ppc64le_bin.tar.gz", + "checksum": "89319a75c5b3d1438a01abb3390c6f6de2df4dc9d5c5ecd854412a4685ab1778", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8/sapmachine-jdk-11.0.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8_linux-x64_bin.tar.gz", + "checksum": "fb0a39e18ab893da6a27a0b7f09f52b0b049503205d4d1c29a2228cb16372539", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8/sapmachine-jdk-11.0.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jdk-11.0.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8/sapmachine-jdk-11.0.8_osx-x64_bin.dmg", + "checksum": "15829218eb47303b74eaecbc28d307c10123d841e67fe9701a904cd45365dc2d" + }, + "tar.gz": { + "name": "sapmachine-jdk-11.0.8_osx-x64_bin.tar.gz", + "checksum": "6935a166231deb6357e83cf6b0be214b06d05a73415bfda45f367c0eec9edc55", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8/sapmachine-jdk-11.0.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jdk-11.0.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8/sapmachine-jdk-11.0.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jdk-11.0.8_windows-x64_bin.zip", + "checksum": "19ed73a3bc2a1f8e1fc2409f4e3c1fba9ef93d43ec267cb9ebcfaa5f0f43e3c8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8/sapmachine-jdk-11.0.8_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8_linux-ppc64_bin.tar.gz", + "checksum": "4d28cdc480de486fecf495af8ed15dba27020dc4755fc2c0872116ec1ecca319", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8/sapmachine-jre-11.0.8_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8_linux-ppc64le_bin.tar.gz", + "checksum": "52be20af0f4d0ea672a3f2eb561e71e9b3a5af214c254e56c43410a340810fd3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8/sapmachine-jre-11.0.8_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8_linux-x64_bin.tar.gz", + "checksum": "e4fba48b4752c73901ea62dcec6b58e1abcab10ce768499a68c0fe7c3b2b3f99", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8/sapmachine-jre-11.0.8_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "dmg": { + "name": "sapmachine-jre-11.0.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8/sapmachine-jre-11.0.8_osx-x64_bin.dmg", + "checksum": "144bdd632c053b755fdf9c6a8f23b70dfa76b9a5d6c0ed9c578cda15ef835a77" + }, + "tar.gz": { + "name": "sapmachine-jre-11.0.8_osx-x64_bin.tar.gz", + "checksum": "9cacc02c5a6f6818de6488c39459cdd8e27bb103c6de56d158d945a8c2d698ad", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8/sapmachine-jre-11.0.8_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "msi": { + "name": "sapmachine-jre-11.0.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8/sapmachine-jre-11.0.8_windows-x64_bin.msi" + }, + "zip": { + "name": "sapmachine-jre-11.0.8_windows-x64_bin.zip", + "checksum": "2f3ba1cae2e5170b9f12e41d80b303fd8f654a1ac1df40f750c5eab8c4c6d3a0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8/sapmachine-jre-11.0.8_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11.0.8+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.8%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.10_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B10/sapmachine-jdk-11.0.8-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "a94a589d69bf65ec1374a24a088f0784236b4d2b2504520f06cdeadad1745c7c" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.10_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B10/sapmachine-jdk-11.0.8-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "361f030668d917b7164c11ab15adbf55a49ab5a8a6fef6853aba059a54c3fb9b" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.10_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B10/sapmachine-jdk-11.0.8-ea.10_linux-x64_bin.tar.gz", + "checksum": "a62adf25334009ef9a38a303b983fa88a2afc17467dd1b8949162207d7527446" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.10_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B10/sapmachine-jdk-11.0.8-ea.10_osx-x64_bin.tar.gz", + "checksum": "49f8351672650a2807f8d69355be0327d4f5e5ff3e40b6ba5abbbadd56511384" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.8-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B10/sapmachine-jdk-11.0.8-ea.10_osx-x64_bin.dmg", + "checksum": "10a06bd50d24db4bc0e43c417365c9f79a06cef676aa24fb2b6a11b7a72a4273" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.8-ea.10_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B10/sapmachine-jdk-11.0.8-ea.10_windows-x64_bin.zip", + "checksum": "5a06d93531fb90af3b6f25ecc3b28e98993076be24f0d817e1ee1eae6aef418a" + }, + "msi": { + "name": "sapmachine-jdk-11.0.8-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B10/sapmachine-jdk-11.0.8-ea.10_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.10_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B10/sapmachine-jre-11.0.8-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "52e5a4d0306190f19a3ff34cb26a6befd6e4b6a1ac02e6609ed681401ab59b83" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.10_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B10/sapmachine-jre-11.0.8-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "07527e7d198c834d43a12340a91a3b4d2a9fd7acf488f8c783b78416bfb41940" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.10_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B10/sapmachine-jre-11.0.8-ea.10_linux-x64_bin.tar.gz", + "checksum": "50f06e2603cae25cf3ad795593cfdeb366b2ecbfbb38549a85929c52719612cc" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.10_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B10/sapmachine-jre-11.0.8-ea.10_osx-x64_bin.tar.gz", + "checksum": "c7fda8a74fa0db98bf52b650f213fbb82ced0ef4da77d47de452c4d717fd432c" + }, + "dmg": { + "name": "sapmachine-jre-11.0.8-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B10/sapmachine-jre-11.0.8-ea.10_osx-x64_bin.dmg", + "checksum": "81b90dfde5884b30132e701864ed598346bf31002ace00081676c51ad0e7a49a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.8-ea.10_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B10/sapmachine-jre-11.0.8-ea.10_windows-x64_bin.zip", + "checksum": "fbbd13cc3c551d7ce14423aac9715eed810b5466de78c6519fa81bb60226b727" + }, + "msi": { + "name": "sapmachine-jre-11.0.8-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B10/sapmachine-jre-11.0.8-ea.10_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.8+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.8%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B8/sapmachine-jdk-11.0.8-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "bd20c57f44a3fe645dc5a6482baab2a5bc01dacd84691ed4b59ec230bfaac230" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B8/sapmachine-jdk-11.0.8-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "7e34db131b220684576ca0286e378653aa0320d37878a02c61af4fb0d63c89e1" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B8/sapmachine-jdk-11.0.8-ea.8_linux-x64_bin.tar.gz", + "checksum": "1d18531fad163d6a9f785d1ea9cebc2c80f6d944c7231969104fcf5a9ecfaf21" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B8/sapmachine-jdk-11.0.8-ea.8_osx-x64_bin.tar.gz", + "checksum": "5cba707fe4f218d4e52b0992ae671e239559e6cab56dd16b9468d4e510532306" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.8-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B8/sapmachine-jdk-11.0.8-ea.8_osx-x64_bin.dmg", + "checksum": "031ed29a34e959c98d9b05aeaacb4ddcb9f0c48cc1e2dabae9aad3794e666bbb" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.8-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B8/sapmachine-jdk-11.0.8-ea.8_windows-x64_bin.zip", + "checksum": "a896549f2ef13ae10b16243f0f76883ffa9010b9167d659dbb512cd929bf47e4" + }, + "msi": { + "name": "sapmachine-jdk-11.0.8-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B8/sapmachine-jdk-11.0.8-ea.8_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B8/sapmachine-jre-11.0.8-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "46a67eb912298cec8b6d9cc50a9cfadadfeb8ca536e988fd1599c77d9fe070e2" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B8/sapmachine-jre-11.0.8-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "a36c44e3bc459e9d968793fe8ca2317871e947ea7872c4c5f5919b11afba840c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B8/sapmachine-jre-11.0.8-ea.8_linux-x64_bin.tar.gz", + "checksum": "74419aba944184a68ef6bc67d056c57efbcb3314b9491f0749e167c1faa8bd2c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B8/sapmachine-jre-11.0.8-ea.8_osx-x64_bin.tar.gz", + "checksum": "ad090f32f5e2542fa23711daf5623626651f972c8c0ffd49edbc917f7d437c82" + }, + "dmg": { + "name": "sapmachine-jre-11.0.8-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B8/sapmachine-jre-11.0.8-ea.8_osx-x64_bin.dmg", + "checksum": "bcbf5fcf8c547062a56f0ca140942ae6a113d9c2a1226c7d189da77eb4634539" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.8-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B8/sapmachine-jre-11.0.8-ea.8_windows-x64_bin.zip", + "checksum": "2e3f4f00516c8a5c4223a1b5f0ed39d8b9b6a4630e43e2bb9cf89ff88a9877a2" + }, + "msi": { + "name": "sapmachine-jre-11.0.8-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B8/sapmachine-jre-11.0.8-ea.8_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.8+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.8%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B7/sapmachine-jdk-11.0.8-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "321443cc3f3f32a6182c4d828912c9cd218a1f97b687ce9817425b5004ba9224" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B7/sapmachine-jdk-11.0.8-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "e1658daab0646bc26de3b2724035298fa0ad6d1d75e0d2ebc51d42518b4195ec" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B7/sapmachine-jdk-11.0.8-ea.7_linux-x64_bin.tar.gz", + "checksum": "b29602f62e787dfe0b1866198805c4f5a3f6d7152689d463092e650bcad2b7b0" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B7/sapmachine-jdk-11.0.8-ea.7_osx-x64_bin.tar.gz", + "checksum": "6834fefb90c30cac44dfc66fe1efb9d80b4ba6917ab73c21ae45c23606c1f8ea" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.8-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B7/sapmachine-jdk-11.0.8-ea.7_osx-x64_bin.dmg", + "checksum": "38c3732fc59b7783e233a0b14b5fdc60e0888a1e765050fd874c64eac9288a7c" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.8-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B7/sapmachine-jdk-11.0.8-ea.7_windows-x64_bin.zip", + "checksum": "fc34c58a5aaaf6c9b0330811a090e0470c6a9a682867dfb8da92a66312e1ae50" + }, + "msi": { + "name": "sapmachine-jdk-11.0.8-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B7/sapmachine-jdk-11.0.8-ea.7_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B7/sapmachine-jre-11.0.8-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "8e29372a72881e9c535826500e8c489f370ac20531635b9c81d13c47f49a10d4" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B7/sapmachine-jre-11.0.8-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "1af57b46439a632aaea7f2df560b38727c0b2d0da73503effa4eaa30491e5ac2" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B7/sapmachine-jre-11.0.8-ea.7_linux-x64_bin.tar.gz", + "checksum": "4ffa9ef46251a754f20e07e431419718783e997348cbea9a68ea5f24a3a49c73" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B7/sapmachine-jre-11.0.8-ea.7_osx-x64_bin.tar.gz", + "checksum": "92ea224f0cbd90426bc601a23a14429014b3bf1949a7ec78d8b74ba28d80cb3b" + }, + "dmg": { + "name": "sapmachine-jre-11.0.8-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B7/sapmachine-jre-11.0.8-ea.7_osx-x64_bin.dmg", + "checksum": "ce319e426b5d11106250ee8ebc0cdd9246d464b6d0880db31863f485374853bd" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.8-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B7/sapmachine-jre-11.0.8-ea.7_windows-x64_bin.zip", + "checksum": "cb9fe305bca398a284777068c71c751e2df1af935c637bfb7dc9785bfa121e86" + }, + "msi": { + "name": "sapmachine-jre-11.0.8-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B7/sapmachine-jre-11.0.8-ea.7_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.8+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.8%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B6/sapmachine-jdk-11.0.8-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "bacd765e0f0b4107fdfb8cd93217ad776d4924c58ca1af22797aefd2118321a5" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B6/sapmachine-jdk-11.0.8-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "35efe4f4565bb0ad35a8c03b3ef4d9754658be100c18f55dfcbea318fb600038" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B6/sapmachine-jdk-11.0.8-ea.6_linux-x64_bin.tar.gz", + "checksum": "f2df3976542767a864dd88e44bc00b6147c7567b2322ad5c26899a2814732458" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B6/sapmachine-jdk-11.0.8-ea.6_osx-x64_bin.tar.gz", + "checksum": "227e6232e4eb288deb0c9064b3132396d040c157d0e26da92f83f5abbcab46f7" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.8-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B6/sapmachine-jdk-11.0.8-ea.6_osx-x64_bin.dmg", + "checksum": "af9d1fc627941a6d03fdb5df6de1c0e059393a475ee921b845b759de28d526d3" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.8-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B6/sapmachine-jdk-11.0.8-ea.6_windows-x64_bin.zip", + "checksum": "936ce633451ebb18deaafa988af7e42f71019b9784f5668f6ae74d7302c883ab" + }, + "msi": { + "name": "sapmachine-jdk-11.0.8-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B6/sapmachine-jdk-11.0.8-ea.6_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B6/sapmachine-jre-11.0.8-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "54a6a60118a83b54a53af4e9ca09bb887e537a019b206177a0c7d4101d13fc8d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B6/sapmachine-jre-11.0.8-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "9dce4a875a75f70873abe2140b51d48c596901e1f4ed4e4f7e5c8ad45ad5c13a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B6/sapmachine-jre-11.0.8-ea.6_linux-x64_bin.tar.gz", + "checksum": "8c6f4522598bbd4725dc9565fa8b25c1ac001602b05118dae284bba2b68b4e6f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B6/sapmachine-jre-11.0.8-ea.6_osx-x64_bin.tar.gz", + "checksum": "948c073a7bc3d3a4742be40b89e9d23021afb61715bf01c5e103ce90af261924" + }, + "dmg": { + "name": "sapmachine-jre-11.0.8-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B6/sapmachine-jre-11.0.8-ea.6_osx-x64_bin.dmg", + "checksum": "1394f7f2b6dc5dac67e39323915f2ea168d0e824ca8d9fabf231b499c7ab309f" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.8-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B6/sapmachine-jre-11.0.8-ea.6_windows-x64_bin.zip", + "checksum": "6b2c2ac6c4c929bc2b9e99e70d4da1df6b2df9485778917a72a35b937ff1ebe0" + }, + "msi": { + "name": "sapmachine-jre-11.0.8-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B6/sapmachine-jre-11.0.8-ea.6_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.8+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.8%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B5/sapmachine-jdk-11.0.8-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "1c6c19550cc070e217bc929d1d2355309811a9a0e013e27671e17ae5d67500fc" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B5/sapmachine-jdk-11.0.8-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "b0b29d8ff1a036036431ba21c98248e786d6cd8ef0544a2a1be37f7a62dd7152" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B5/sapmachine-jdk-11.0.8-ea.5_linux-x64_bin.tar.gz", + "checksum": "1f15c25b3f8212f07cbe3df5a596f8540b6a99a37df778a93e366c75ec662e53" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B5/sapmachine-jdk-11.0.8-ea.5_osx-x64_bin.tar.gz", + "checksum": "f93db16253bbeaf8cdb3d7f8c471e139fcba2d1a66e5ae09c57c50d7095a0473" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.8-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B5/sapmachine-jdk-11.0.8-ea.5_osx-x64_bin.dmg", + "checksum": "8690e6a4094e4a9693f5c82ff93d969e4a2764f869392e38baac41546f919ce2" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.8-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B5/sapmachine-jdk-11.0.8-ea.5_windows-x64_bin.zip", + "checksum": "4927cce4cf6a2904b46eb23d580d18014d3938b59a7ccbcd9c261ebdcdcef5fb" + }, + "msi": { + "name": "sapmachine-jdk-11.0.8-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B5/sapmachine-jdk-11.0.8-ea.5_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B5/sapmachine-jre-11.0.8-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "4d3e85b6703783db1a39debee67b452ed485a93e524089b8993aef92f9aa0b85" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B5/sapmachine-jre-11.0.8-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "545865aaf445ec7cc90a3e5a48c699428d09f3a3b0e65c8d1627831414e5605c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B5/sapmachine-jre-11.0.8-ea.5_linux-x64_bin.tar.gz", + "checksum": "e335054353d2993b9f5868d979e33ee92897b42a01b40b307d0c0235491863ce" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B5/sapmachine-jre-11.0.8-ea.5_osx-x64_bin.tar.gz", + "checksum": "bf1151ff94ea131094b6d9de1fe292995e80c54a97fe3a6e68bee9e25321c7d1" + }, + "dmg": { + "name": "sapmachine-jre-11.0.8-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B5/sapmachine-jre-11.0.8-ea.5_osx-x64_bin.dmg", + "checksum": "54fcfe56e3b2fea48b5fbeb6dc8c6273e6f80797f81fd6edbcd8f2ad351853d4" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.8-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B5/sapmachine-jre-11.0.8-ea.5_windows-x64_bin.zip", + "checksum": "52a08df69407ee338e9be0b00057b059c047ec59c5424f940b9c44a519a1a818" + }, + "msi": { + "name": "sapmachine-jre-11.0.8-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B5/sapmachine-jre-11.0.8-ea.5_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.8+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.8%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B4/sapmachine-jdk-11.0.8-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "e9192ff4aa1b7bf2535a499ce9aa1ac176f317a0d40abfeeb187865cc9ffd350" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B4/sapmachine-jdk-11.0.8-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "3f953e517dd127ac7c26b1983a10ba15aae0740369aaf54a57ef641003be7bb3" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B4/sapmachine-jdk-11.0.8-ea.4_linux-x64_bin.tar.gz", + "checksum": "564f5ad425d231017345288097e9c24c4837e2c72314cddb0203bc8735a06726" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B4/sapmachine-jdk-11.0.8-ea.4_osx-x64_bin.tar.gz", + "checksum": "7989ebfdbd15f13b4c08a0efb335da1bea7d440be80b565963aa4bef036dc0a2" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.8-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B4/sapmachine-jdk-11.0.8-ea.4_osx-x64_bin.dmg", + "checksum": "1c49b3f5f9cac69419136819fd58cb881b93995751f8c6c6dcfd185aae57dde5" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.8-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B4/sapmachine-jdk-11.0.8-ea.4_windows-x64_bin.zip", + "checksum": "63e6395d542fb99f1ccbd67aa76e73a2f929627581b50475375dfd96f109c148" + }, + "msi": { + "name": "sapmachine-jdk-11.0.8-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B4/sapmachine-jdk-11.0.8-ea.4_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B4/sapmachine-jre-11.0.8-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "73204fdb917d673ce45a6984465f5b39c00c4ae9bcc7132948134bb9f8fcb164" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B4/sapmachine-jre-11.0.8-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "579146c1396e14732a3c8cd5c2e05cc65916af99a25c95e5e860523ae0db4d48" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B4/sapmachine-jre-11.0.8-ea.4_linux-x64_bin.tar.gz", + "checksum": "a60c5a2ea2ca13155e093ed90ec9588960841a2e8819aa4d4e2165e79c35550c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B4/sapmachine-jre-11.0.8-ea.4_osx-x64_bin.tar.gz", + "checksum": "74ac71e8282d98ce17d1de37b207c823db7df50542bb7d97f1b30c7ee9138259" + }, + "dmg": { + "name": "sapmachine-jre-11.0.8-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B4/sapmachine-jre-11.0.8-ea.4_osx-x64_bin.dmg", + "checksum": "1a8d6eeb65d2a926ed260bec3de81f73fec79d5032289f250a9d95f256142f63" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.8-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B4/sapmachine-jre-11.0.8-ea.4_windows-x64_bin.zip", + "checksum": "8d312092aaf77eeffee3c0920139f3c5b4d82872b092c0b4665caa451c4aad9c" + }, + "msi": { + "name": "sapmachine-jre-11.0.8-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B4/sapmachine-jre-11.0.8-ea.4_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.8+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.8%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B3/sapmachine-jdk-11.0.8-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "813fb1b17789d3b6039e1ad98aab853eb80adfeea8f1df9e728df81e14b079c9" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B3/sapmachine-jdk-11.0.8-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "2dc2f94df3349d196bd563ae56f8d5a75d366c2008a04dc8d0d185c8450c6594" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B3/sapmachine-jdk-11.0.8-ea.3_linux-x64_bin.tar.gz", + "checksum": "dc7229016eac937db91b3555def1c7a87af3b4739202f1199ed68058eecb2ec6" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B3/sapmachine-jdk-11.0.8-ea.3_osx-x64_bin.tar.gz", + "checksum": "36533501d8f1a6936f7da20446071e201b7bb572af493607fc19cba4161b211f" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.8-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B3/sapmachine-jdk-11.0.8-ea.3_osx-x64_bin.dmg", + "checksum": "97e8c712b4cc733b0c3d10fab26420aa8536d5eba0c2dfb95621ed6f32692a51" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.8-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B3/sapmachine-jdk-11.0.8-ea.3_windows-x64_bin.zip", + "checksum": "45b652bbcfd46ebb52389a4fc35b55f06ab11de6ec014caf778370301fb10806" + }, + "msi": { + "name": "sapmachine-jdk-11.0.8-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B3/sapmachine-jdk-11.0.8-ea.3_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B3/sapmachine-jre-11.0.8-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "f5525b90737b0816eedae1de2361cafbb2fbb0b3e468fd9be07ff2bba19da591" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B3/sapmachine-jre-11.0.8-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "e91b483af6e3eeeb00c684b551f70768adfadfffa22d4386f7c13970e94fcdcc" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B3/sapmachine-jre-11.0.8-ea.3_linux-x64_bin.tar.gz", + "checksum": "6dcd865bad1228119b5b1b9f8c93d2fa57860ed17349f80a5095d4a18c245575" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B3/sapmachine-jre-11.0.8-ea.3_osx-x64_bin.tar.gz", + "checksum": "efa3c6d48261fc0cdba2865d24157fd504107071cd554468015d6c80edffa30a" + }, + "dmg": { + "name": "sapmachine-jre-11.0.8-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B3/sapmachine-jre-11.0.8-ea.3_osx-x64_bin.dmg", + "checksum": "f2b9867250c4a8476c1c5d390b7428c9210383d000d9c832277bbc868414ed90" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.8-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B3/sapmachine-jre-11.0.8-ea.3_windows-x64_bin.zip", + "checksum": "a67b855b8df7efa2b8b7ded9645ff30a7d65b5d1e62c0dd6e06666b2dc45beb2" + }, + "msi": { + "name": "sapmachine-jre-11.0.8-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B3/sapmachine-jre-11.0.8-ea.3_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.8+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.8%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B2/sapmachine-jdk-11.0.8-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "2367c8ea0b93b1f61b0fced40c53d34ad6277e4798f269a12c97d89426a552a8" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B2/sapmachine-jdk-11.0.8-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "9d2ee8ad198b81b1e191a11b449fb1cae995b15ce2a785bc8b90cc091b0a5eaf" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B2/sapmachine-jdk-11.0.8-ea.2_linux-x64_bin.tar.gz", + "checksum": "9544ee4661ac826b10c2934ec85db6ea80060810445ef8f7b39a1c2a2e5de84c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B2/sapmachine-jdk-11.0.8-ea.2_osx-x64_bin.tar.gz", + "checksum": "aca0906752a7e9d302b1c777887e9b5e3f00922797056bf6cddd827130d2ebed" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.8-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B2/sapmachine-jdk-11.0.8-ea.2_osx-x64_bin.dmg", + "checksum": "8375256b674328fe1d7db8f9354de7e41c63aa71b0285e818a7e2ef89b27cb00" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.8-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B2/sapmachine-jdk-11.0.8-ea.2_windows-x64_bin.zip", + "checksum": "706f906ee756d69a38bf9353d3ceadbebf7cb404b47def3a4383741c79a6efb4" + }, + "msi": { + "name": "sapmachine-jdk-11.0.8-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B2/sapmachine-jdk-11.0.8-ea.2_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B2/sapmachine-jre-11.0.8-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "064a973ef1ff91fbb51d7f2b949c6fc7a9b11298766130ed1c9eda0a919b0ed6" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B2/sapmachine-jre-11.0.8-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "2833f007d40196413324bb667530dbc07f97358cbc7d71097ef5aea84dffef40" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B2/sapmachine-jre-11.0.8-ea.2_linux-x64_bin.tar.gz", + "checksum": "1e722d64fa78bb09a1690b023bbf9f56b5958f7adc326b62cbae554372192b1a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B2/sapmachine-jre-11.0.8-ea.2_osx-x64_bin.tar.gz", + "checksum": "143c50e5deabc965bc254477f7b4f859da65f9d3cf45639a7aa03a30d3597c59" + }, + "dmg": { + "name": "sapmachine-jre-11.0.8-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B2/sapmachine-jre-11.0.8-ea.2_osx-x64_bin.dmg", + "checksum": "52e08f7d3e5bb7b0826ade7d7a4bd90a60decb097722f66a288a906c46458062" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.8-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B2/sapmachine-jre-11.0.8-ea.2_windows-x64_bin.zip", + "checksum": "2b9e73b326817c5b8405e11a7465c49a232e450cf8554af208f456cfb4afc775" + }, + "msi": { + "name": "sapmachine-jre-11.0.8-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B2/sapmachine-jre-11.0.8-ea.2_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.8+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.8%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B1/sapmachine-jdk-11.0.8-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "2d3035700d7ae3d0704e4af60755e9f945461e76c9c66cd362833c7e05ff7c17" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B1/sapmachine-jdk-11.0.8-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "61aa7bad2f4ea8563b507ced6c54e3af33d06530ffb2ac3eae468ae10a8c17ee" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B1/sapmachine-jdk-11.0.8-ea.1_linux-x64_bin.tar.gz", + "checksum": "1a39818745abf88bf859cd11ac48456c4781c651eba167b2a8be85dd525fe35f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.8-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B1/sapmachine-jdk-11.0.8-ea.1_osx-x64_bin.tar.gz", + "checksum": "4e42cb226bee1ee31b18c38b9c63f5551b7f8baea41ff48481484542dac16616" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.8-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B1/sapmachine-jdk-11.0.8-ea.1_osx-x64_bin.dmg", + "checksum": "4c769c7fddc38ab7d0af7d2f41aeff756f656db0a2d75885ccb81007da7f9b17" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.8-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B1/sapmachine-jdk-11.0.8-ea.1_windows-x64_bin.zip", + "checksum": "c623fb16485ef35e03ccab3308445d50b2f7c39d67843b027ae2d15fd980d7eb" + }, + "msi": { + "name": "sapmachine-jdk-11.0.8-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B1/sapmachine-jdk-11.0.8-ea.1_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B1/sapmachine-jre-11.0.8-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "25b2a550461678f4c7cb9791bd2b92ac253a8c1cc5a6930b2d70e74b63dcf6f4" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B1/sapmachine-jre-11.0.8-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "abe920dbce9210ddd52dd266aefc3db17beba9566c995098e6a5708d8a5b3a1d" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B1/sapmachine-jre-11.0.8-ea.1_linux-x64_bin.tar.gz", + "checksum": "478a775ea5da76405b209bd95991b1f2b93721b8f2691c9676d43132bf1d8918" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.8-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B1/sapmachine-jre-11.0.8-ea.1_osx-x64_bin.tar.gz", + "checksum": "35beef6ad6d196781a7402f3425bb9ae2ec5e1df532b37c2b7084589508b3100" + }, + "dmg": { + "name": "sapmachine-jre-11.0.8-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B1/sapmachine-jre-11.0.8-ea.1_osx-x64_bin.dmg", + "checksum": "ebe952f18ec2c6e8564edf600a464a8d3351503114d4a49661386834623f222b" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.8-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B1/sapmachine-jre-11.0.8-ea.1_windows-x64_bin.zip", + "checksum": "99a5f61f1121d3ab9223a9fe7c0ffaedab918a0c7181d61615c6adc0c9c0eb15" + }, + "msi": { + "name": "sapmachine-jre-11.0.8-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.8%2B1/sapmachine-jre-11.0.8-ea.1_windows-x64_bin.msi" + } + } + } + } + } + }, + "11.0.7": { + "sapmachine-11.0.7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.7", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7/sapmachine-jdk-11.0.7_linux-ppc64_bin.tar.gz", + "checksum": "4f435508a9914d879c8e6eda5b5cbe4369ea169583d33619d7b4da2ec5fa910f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7/sapmachine-jdk-11.0.7_linux-ppc64le_bin.tar.gz", + "checksum": "a615ada7df3dd07509ad26ec02de4d34f9bb5180a84a45847116e60bdcbff9b1" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7/sapmachine-jdk-11.0.7_linux-x64_bin.tar.gz", + "checksum": "1817306e827cd7f99b78530509d8c8d83035542231d7f319eff34d98170dd4fa" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7/sapmachine-jdk-11.0.7_osx-x64_bin.tar.gz", + "checksum": "0a3d51e9d07e46e8ce624a1e385efa186d99097c7c7c56e529ec6b50a5e63b40" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7/sapmachine-jdk-11.0.7_osx-x64_bin.dmg", + "checksum": "2a69888af8eb313fd91145eeea595cd6a3f9409d0a9ed9856ad74aa85268b9d0" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7/sapmachine-jdk-11.0.7_windows-x64_bin.zip", + "checksum": "3f16ce7f09598eb7b136de8dc6805b7cc0d1c8678a2bc29108e4952250b8c0cb" + }, + "msi": { + "name": "sapmachine-jdk-11.0.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7/sapmachine-jdk-11.0.7_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7/sapmachine-jre-11.0.7_linux-ppc64_bin.tar.gz", + "checksum": "6e006978a22d0297ad30dd443ac7fcfe1d355b0b418e2b1d61c7cfb4ad365d1d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7/sapmachine-jre-11.0.7_linux-ppc64le_bin.tar.gz", + "checksum": "52217de9e5b103afcb659ad91f48f35aee95302114dbb67ff1ba893b0b6adba8" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7/sapmachine-jre-11.0.7_linux-x64_bin.tar.gz", + "checksum": "edd51958d1bfa1f9024c56e7298e741976b7d0edaa5be8b8cd6abb225806d43a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7/sapmachine-jre-11.0.7_osx-x64_bin.tar.gz", + "checksum": "dfed9f7f6d7a3a3b3dc9180fab238a521541564808074dbb536384a2070289a3" + }, + "dmg": { + "name": "sapmachine-jre-11.0.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7/sapmachine-jre-11.0.7_osx-x64_bin.dmg", + "checksum": "b694490e4331ab1d604a0319b8909d3863ccd92f45e2ec5439e55cf31f1e4a13" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7/sapmachine-jre-11.0.7_windows-x64_bin.zip", + "checksum": "e64c185440e1addcf9bd49c6b57a04d0fd340e7c628bb22a0d0b6bce4d5de492" + }, + "msi": { + "name": "sapmachine-jre-11.0.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7/sapmachine-jre-11.0.7_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.7+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.7%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.10_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B10/sapmachine-jdk-11.0.7-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "eeb560a35fcb623b7ff823a8ecbadc5748343fc252df6bd056d50011944eb415" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.10_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B10/sapmachine-jdk-11.0.7-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "7e6b63ba52d82e87adc3cae82e017de5e1b6f6c37333c0b0bf4250ca9d7f607f" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.10_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B10/sapmachine-jdk-11.0.7-ea.10_linux-x64_bin.tar.gz", + "checksum": "0041fe46999f27743270f996d3099ec7d63068d8204ad4bfaaee50b7cf604a83" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.10_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B10/sapmachine-jdk-11.0.7-ea.10_osx-x64_bin.tar.gz", + "checksum": "ce91a6cef2393ed0303227d6757b53e8542608da3c0c82c8f28ace9a12f27b22" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.7-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B10/sapmachine-jdk-11.0.7-ea.10_osx-x64_bin.dmg", + "checksum": "7acaf3896a96037aa4d289f65c00fc3c9921fb9d5463efe8ab47326280ad6ab8" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.7-ea.10_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B10/sapmachine-jdk-11.0.7-ea.10_windows-x64_bin.zip", + "checksum": "8d7c3da2e0c24d1416c16b7e6461402221b721960f145b9c05f56f442f66ec0c" + }, + "msi": { + "name": "sapmachine-jdk-11.0.7-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B10/sapmachine-jdk-11.0.7-ea.10_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.10_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B10/sapmachine-jre-11.0.7-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "6ad0a29b7394ff2f61eac245d596ed3400ce88028b67c8d1e8bfb87f5f1c2981" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.10_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B10/sapmachine-jre-11.0.7-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "5b1c75f43136ae6acc22763f53d54c27420e413723da6abafdb6c7b30855e7ad" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.10_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B10/sapmachine-jre-11.0.7-ea.10_linux-x64_bin.tar.gz", + "checksum": "7d0cf8b40d2e4abfd570d953924e28588fc5c7ae896790b36fd0a2ec38f0111e" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.10_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B10/sapmachine-jre-11.0.7-ea.10_osx-x64_bin.tar.gz", + "checksum": "75f3c7d593cf7bd254b2fc3d8e11bd4b1da71749a42d8e3bcec82977d1f4a54b" + }, + "dmg": { + "name": "sapmachine-jre-11.0.7-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B10/sapmachine-jre-11.0.7-ea.10_osx-x64_bin.dmg", + "checksum": "d2239162d807dc50106fe2b5af151020c178f9954fe9830bb2e93ab147499a86" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.7-ea.10_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B10/sapmachine-jre-11.0.7-ea.10_windows-x64_bin.zip", + "checksum": "68277c1f2e6b680864deb93ab688f0e2c9e340f3016940c9ade5767aa4cb097b" + }, + "msi": { + "name": "sapmachine-jre-11.0.7-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B10/sapmachine-jre-11.0.7-ea.10_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.7+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.7%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B9/sapmachine-jdk-11.0.7-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "45b3b29cfa5972adcd5ddb571e4939af3dde3231527f5595fa9a3ed2d7af8f95" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B9/sapmachine-jdk-11.0.7-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "fee4d9cf7df1df3401806ce93e499cc71ff4a9bdd28175a28c587b21aac52a02" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B9/sapmachine-jdk-11.0.7-ea.9_linux-x64_bin.tar.gz", + "checksum": "ad832b07d506cd16b601445179ca25cf748a6fa76cd0408a7010178ff8a6cd69" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B9/sapmachine-jdk-11.0.7-ea.9_osx-x64_bin.tar.gz", + "checksum": "8083b3ce7104b03e911b82416d4f983c803f14a59d9ba64190cea62690074b7b" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.7-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B9/sapmachine-jdk-11.0.7-ea.9_osx-x64_bin.dmg", + "checksum": "3458fdb0a058cbe88d995c16221f2ae0829c265d8b1672ef8c7ae9f9153ed179" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.7-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B9/sapmachine-jdk-11.0.7-ea.9_windows-x64_bin.zip", + "checksum": "7f488164e4a41357d26145afd7f42bd069f2a8ee784abbd42d4235bace75648e" + }, + "msi": { + "name": "sapmachine-jdk-11.0.7-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B9/sapmachine-jdk-11.0.7-ea.9_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B9/sapmachine-jre-11.0.7-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "3762c83744e0eaec6338e922a2c448bf354f9b892de2c6a5a5b10fbd33936541" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B9/sapmachine-jre-11.0.7-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "dbee6cdb4143737623bc2fa13bb096056aa4683fff58a7a7ffd2ba165bd33984" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B9/sapmachine-jre-11.0.7-ea.9_linux-x64_bin.tar.gz", + "checksum": "ea5db20735ab7c1fd216d19af90f47f6d6a4493ccf91c56ffa621758e9e51719" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B9/sapmachine-jre-11.0.7-ea.9_osx-x64_bin.tar.gz", + "checksum": "ddbd8690c3f64da4b71a79063253e4435922f1f8a2b955cb9fc72dcc04ecfe52" + }, + "dmg": { + "name": "sapmachine-jre-11.0.7-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B9/sapmachine-jre-11.0.7-ea.9_osx-x64_bin.dmg", + "checksum": "c71e831bf72c17cca31a4b8f7264369d03fc538de69b2960e261f0c08a59551d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.7-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B9/sapmachine-jre-11.0.7-ea.9_windows-x64_bin.zip", + "checksum": "cf373584538030327f7f4efbd8ef269dadffeed5d756ec10e37bc21f005bd649" + }, + "msi": { + "name": "sapmachine-jre-11.0.7-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B9/sapmachine-jre-11.0.7-ea.9_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.7+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.7%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B8/sapmachine-jdk-11.0.7-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "0c97fe4c4b0824068c6b03a894d6549b08e79a9359dc22a9fc3c5b4c6e5613e8" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B8/sapmachine-jdk-11.0.7-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "518d0eae6eb3a8d87a3ab110aab1d4d17bfde99784e9a486ff2e2e7e7da7c611" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B8/sapmachine-jdk-11.0.7-ea.8_linux-x64_bin.tar.gz", + "checksum": "bf149861fdadd5dc99fc837de913305242f720c88b0f6619edb26649747b2378" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B8/sapmachine-jdk-11.0.7-ea.8_osx-x64_bin.tar.gz", + "checksum": "43376f22a01fe5b026d508348b78516ed652385690e30d8b6242090600a3d2ac" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.7-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B8/sapmachine-jdk-11.0.7-ea.8_osx-x64_bin.dmg", + "checksum": "8cd7e8e34b4ad755d24969664b14bc6b89ec371d394fad4f8455d02a86e733f9" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.7-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B8/sapmachine-jdk-11.0.7-ea.8_windows-x64_bin.zip", + "checksum": "ecf5de31fba88fab9af8ad6c645fd3181a4343431a6af6c13cca58f63a5e21c4" + }, + "msi": { + "name": "sapmachine-jdk-11.0.7-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B8/sapmachine-jdk-11.0.7-ea.8_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B8/sapmachine-jre-11.0.7-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "a983d5d4bbc638da0bb107434e02b5bbdd0a24f62fc0be18fbd9c44868ee8b15" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B8/sapmachine-jre-11.0.7-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "62c88965a50301e9345889313ea473213d84a37e774f7ca1a34033218841271f" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B8/sapmachine-jre-11.0.7-ea.8_linux-x64_bin.tar.gz", + "checksum": "ba35e1519b698e0fc07e453a8fbd35e7a805c69e54b7df277c84ee72d0328de2" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B8/sapmachine-jre-11.0.7-ea.8_osx-x64_bin.tar.gz", + "checksum": "1d4e88724050ccb20bc1cf8cfeee5760e81d5cdc677b4a3a7d31fce7e9b2e88c" + }, + "dmg": { + "name": "sapmachine-jre-11.0.7-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B8/sapmachine-jre-11.0.7-ea.8_osx-x64_bin.dmg", + "checksum": "bff0a043b75aa2971aae25a355773c70c5a734c3fd7ea07536f3a95a9bad4322" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.7-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B8/sapmachine-jre-11.0.7-ea.8_windows-x64_bin.zip", + "checksum": "720d08aa806404d0b2395110609dfec0e6dac9efdb9f74d041eee15757c520ca" + }, + "msi": { + "name": "sapmachine-jre-11.0.7-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B8/sapmachine-jre-11.0.7-ea.8_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.7+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.7%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B7/sapmachine-jdk-11.0.7-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "047fd23f01ba543be594cace16bc7e064ed51ac84a27e84a717afbbe4e043056" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B7/sapmachine-jdk-11.0.7-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "4ab987a3ec015f736523dd17e56b1b23de100b97eeacdc405389f48beeda48c5" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B7/sapmachine-jdk-11.0.7-ea.7_linux-x64_bin.tar.gz", + "checksum": "c31fe6c22951aa23d4f4121f56bb977d74c0df37a3a387493e7699eccdb9858a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B7/sapmachine-jdk-11.0.7-ea.7_osx-x64_bin.tar.gz", + "checksum": "19cc89a449b57fb25661c14c5ebc10b93b8f49d216779bebb05de32cc85ebff1" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.7-ea.7_osx-x64_bin.dmg", + "checksum": "354bc59a9dad7889d4e6c4875427f48c4ad09798deb69e20e5a793bc0ef87813", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B7/sapmachine-jdk-11.0.7-ea.7_osx-x64_bin.dmg" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.7-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B7/sapmachine-jdk-11.0.7-ea.7_windows-x64_bin.zip", + "checksum": "8adc7501f0d26c984a16d70718de190bd96d46385a5465fc4fe9768c2eec205b" + }, + "msi": { + "name": "sapmachine-jdk-11.0.7-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B7/sapmachine-jdk-11.0.7-ea.7_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B7/sapmachine-jre-11.0.7-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "b61b0bd8e23b13ccba5b4a5144235f549dbdc387cd3285d3fdb817a3f7ee938a" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B7/sapmachine-jre-11.0.7-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "88ed4a2d28d08a38edfee74716d9ae07dd0355b028bf28c756b8fcd05d0e938d" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B7/sapmachine-jre-11.0.7-ea.7_linux-x64_bin.tar.gz", + "checksum": "d215d5c5eb13d01a246910115450ff531489bdfd7b07733262fff202efaff126" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B7/sapmachine-jre-11.0.7-ea.7_osx-x64_bin.tar.gz", + "checksum": "b4c8a6f3339162e1d12e6b4ed0f50ce189b6bd2b99200024d55813eba55f75f3" + }, + "dmg": { + "name": "sapmachine-jre-11.0.7-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B7/sapmachine-jre-11.0.7-ea.7_osx-x64_bin.dmg", + "checksum": "c9f16b1e721d622992041685f7aadbd90d38c5d5f9a494661ddd50179354a4f8" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.7-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B7/sapmachine-jre-11.0.7-ea.7_windows-x64_bin.zip", + "checksum": "9d457e3e32cb596e728763dda845958009e62b25b5773deda3149abe856087f5" + }, + "msi": { + "name": "sapmachine-jre-11.0.7-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B7/sapmachine-jre-11.0.7-ea.7_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.7+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.7%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B6/sapmachine-jdk-11.0.7-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "369b65ff8bf305eb879e4ef3ac8baee65f62134db2db705a70fd582f132c65f9" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B6/sapmachine-jdk-11.0.7-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "cf634735ac8806fee94c85b386747a153f51ab4d76996bad841f530f497e80c1" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.6_linux-x64_bin.tar.gz", + "checksum": "b7c6075c3b06587c7de6c465ae8dc59c294282f4075a89e2be4dc49de0165c3f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B6/sapmachine-jdk-11.0.7-ea.6_osx-x64_bin.tar.gz", + "checksum": "f4bbb33ceadb0dfb8814de7c637be6bc4faeeec373a85529011178e2fad397ab" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.7-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B6/sapmachine-jdk-11.0.7-ea.6_osx-x64_bin.dmg", + "checksum": "9d2eafa0493e5d97c18339fd571277af27b2e40529e14c9effade109ec257ff5" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.7-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B6/sapmachine-jdk-11.0.7-ea.6_windows-x64_bin.zip", + "checksum": "7a7d21efeaa9b6708dc4db81549aad25d8dc150e473d033a5cb56d2889eb9d8d" + }, + "msi": { + "name": "sapmachine-jdk-11.0.7-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B6/sapmachine-jdk-11.0.7-ea.6_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B6/sapmachine-jre-11.0.7-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "062ad1033bd58935bfdc44a2d629ba54c2ba51e26339c199c6c98f13887a33b2" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B6/sapmachine-jre-11.0.7-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "3633a478df67243f1637c01d3edc73a2f5b5bc46bf4b12009d680a20dd642bb2" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B6/sapmachine-jre-11.0.7-ea.6_linux-x64_bin.tar.gz", + "checksum": "cfb585ae352523f3f41a82d69831404fd389400f7049ac4cf245357f694c6d41" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B6/sapmachine-jre-11.0.7-ea.6_osx-x64_bin.tar.gz", + "checksum": "4d2f37f15a31eebce3ef5d1f41e9882cb08108236dc3a726dbbe1df8f9f6a4af" + }, + "dmg": { + "name": "sapmachine-jre-11.0.7-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B6/sapmachine-jre-11.0.7-ea.6_osx-x64_bin.dmg", + "checksum": "3da4e8aa660eecced5780b4c510d626a4682893e397326ed74e1d77899f98771" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.7-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B6/sapmachine-jre-11.0.7-ea.6_windows-x64_bin.zip", + "checksum": "fa0968ea1c0bae4b714be401b2f53b73a5227a806dfd9711938cedd3be441675" + }, + "msi": { + "name": "sapmachine-jre-11.0.7-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B6/sapmachine-jre-11.0.7-ea.6_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.7+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.7%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B5/sapmachine-jdk-11.0.7-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "6fb86d0bdd617258077852c50a5dd7db397733af21d2bd991d7d5e240706df12" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B5/sapmachine-jdk-11.0.7-ea.5_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B5/sapmachine-jdk-11.0.7-ea.5_linux-x64_bin.tar.gz", + "checksum": "226a688ce6b9c5f9972551719105fe971c915561e42fb379d8eb73ad29a2136f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B5/sapmachine-jdk-11.0.7-ea.5_osx-x64_bin.tar.gz", + "checksum": "93c80480703847149db26248f7245dbd7b0394add799a859c29984b0d7eba9cb" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.7-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B5/sapmachine-jdk-11.0.7-ea.5_osx-x64_bin.dmg", + "checksum": "3db190b310783518dcb182ef6595dbfbfd0d2c5ea084a082de7234090f8b52b9" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.7-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B5/sapmachine-jdk-11.0.7-ea.5_windows-x64_bin.zip", + "checksum": "76e9b696cf3f581c146a465ce226f65d3202856b10c5e3cd71e4919eddd58618" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B5/sapmachine-jre-11.0.7-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "1066cdde1af4182e12759abe54de23088e0467fad3d36fd397e6930ce22d7d3d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B5/sapmachine-jre-11.0.7-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "0151cee6bf67d5ca36116c1839b3aa44558375a119a366e79efab3c90b36253e" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B5/sapmachine-jre-11.0.7-ea.5_linux-x64_bin.tar.gz", + "checksum": "482023b66ab78175ba5ac11ddcc3b79bdfea79c6c6557fce583b04d5ef01e954" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B5/sapmachine-jre-11.0.7-ea.5_osx-x64_bin.tar.gz", + "checksum": "be92b8d0ad18581153730ae775a42098fb260b4bb8340e2936b0f6056545ebb4" + }, + "dmg": { + "name": "sapmachine-jre-11.0.7-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B5/sapmachine-jre-11.0.7-ea.5_osx-x64_bin.dmg", + "checksum": "05de5a68cc8c620c3dbec7d530423bd226a76c5c9652462eabab32c048945339" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.7-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B5/sapmachine-jre-11.0.7-ea.5_windows-x64_bin.zip", + "checksum": "4a0784f2357b830a4db291b88912dc4dfa6b7f4c3ca6fb866f9e053b810f7ef5" + }, + "msi": { + "name": "sapmachine-jre-11.0.7-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B5/sapmachine-jre-11.0.7-ea.5_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.7+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.7%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B4/sapmachine-jdk-11.0.7-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "1a9f5897d51cbcb752e0d171de522db39aa293feab83131149221a52fcfa1f55" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B4/sapmachine-jdk-11.0.7-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "2772c6d432fe240ec6255b742b274bb99564fc780538acfce45923799e326e0f" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B4/sapmachine-jdk-11.0.7-ea.4_linux-x64_bin.tar.gz", + "checksum": "fa6902539d077791781cf78f784348b93e63e6e70f917405d0618d53e2ffd5fa" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B4/sapmachine-jdk-11.0.7-ea.4_osx-x64_bin.tar.gz", + "checksum": "24c6c4243fffe75cd5b50e6a0fa712d24e23a7a806ca48a7b5bea7956b11f586" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.7-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B4/sapmachine-jdk-11.0.7-ea.4_osx-x64_bin.dmg", + "checksum": "6e05bb28599b24886d54827a972856399c29f8c28ec25c09d50bbac5e7b455bc" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.7-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B4/sapmachine-jdk-11.0.7-ea.4_windows-x64_bin.zip", + "checksum": "b5ed81649be910da3c33f016786620bb3a4d324e5eeec8ec74a4829c05653371" + }, + "msi": { + "name": "sapmachine-jdk-11.0.7-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B4/sapmachine-jdk-11.0.7-ea.4_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B4/sapmachine-jre-11.0.7-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "c2151010aaeb35b47deddc191bef8e0572f8b0eba7a9336d8f082e541149aab3" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B4/sapmachine-jre-11.0.7-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "6654c26120e2de8f48f9b3f8a7107d5bf8189dc1186969f4cbec3a957d048ff9" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B4/sapmachine-jre-11.0.7-ea.4_linux-x64_bin.tar.gz", + "checksum": "91030661bdc7d16f73b1c1c292d74586453f711ffd6234466cc4955b23e19ac7" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B4/sapmachine-jre-11.0.7-ea.4_osx-x64_bin.tar.gz" + }, + "dmg": { + "name": "sapmachine-jre-11.0.7-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B4/sapmachine-jre-11.0.7-ea.4_osx-x64_bin.dmg", + "checksum": "d115503b305322a1a40012d18d2fe020267d4a4fdf843e0d47ba8c7fd6deeaaa" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.7-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B4/sapmachine-jre-11.0.7-ea.4_windows-x64_bin.zip", + "checksum": "a9f7cd55d1093bfcbee3d31eba59bcefa425de6d8db8f2f9d288ae9b9a1762ce" + }, + "msi": { + "name": "sapmachine-jre-11.0.7-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B4/sapmachine-jre-11.0.7-ea.4_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.7+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.7%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B3/sapmachine-jdk-11.0.7-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "8fdb68da7b218d332abcb59aef2843725a65fcd2fd8efd96e5993dc4306ea22d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B3/sapmachine-jdk-11.0.7-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "19300f2d63047ac561611277d3314dbc939e605f88a0ca5cd280fa98479d4fca" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B3/sapmachine-jdk-11.0.7-ea.3_linux-x64_bin.tar.gz", + "checksum": "62ab53102e22e1c1accbc52ccd3df14161955f0efb028a7b85d315d12ea80110" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B3/sapmachine-jdk-11.0.7-ea.3_osx-x64_bin.tar.gz", + "checksum": "1e1079afdd2d605587f7161c8d1f1f20e193aa9937c541f0be957ec327bf66cb" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.7-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B3/sapmachine-jdk-11.0.7-ea.3_osx-x64_bin.dmg", + "checksum": "1b98d7ea5c54dd289397b50b29c15ed3158313b82938795d43a1e20b55d099c9" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.7-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B3/sapmachine-jdk-11.0.7-ea.3_windows-x64_bin.zip", + "checksum": "6fd760d17ecb40d48d32842e994b1accceb1247ed298b92b1f2dbf0100b776a3" + }, + "msi": { + "name": "sapmachine-jdk-11.0.7-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B3/sapmachine-jdk-11.0.7-ea.3_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B3/sapmachine-jre-11.0.7-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "ef3e9538ce28a5f4beaf04bd6189dc7e2b9e54c4b7537a8bcbc5c83fe7bb751b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B3/sapmachine-jre-11.0.7-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "c3c92e44635de5b578054d30fe2f93b984cdc62fdc8656445694bab20861266c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B3/sapmachine-jre-11.0.7-ea.3_linux-x64_bin.tar.gz", + "checksum": "cc47c586f8f8d2af479689b29a3ceb367a96dc49bab64bb59f5ebf244befb583" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B3/sapmachine-jre-11.0.7-ea.3_osx-x64_bin.tar.gz", + "checksum": "9b51f6a31516121c41adccb81a9accb2df36939649a5c68d39d39bac2b13bd49" + }, + "dmg": { + "name": "sapmachine-jre-11.0.7-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B3/sapmachine-jre-11.0.7-ea.3_osx-x64_bin.dmg" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.7-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B3/sapmachine-jre-11.0.7-ea.3_windows-x64_bin.zip", + "checksum": "fd5f11ac4175b347369be560620ce070839a179291bb4cc45cb7e17f5eef9ef8" + }, + "msi": { + "name": "sapmachine-jre-11.0.7-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B3/sapmachine-jre-11.0.7-ea.3_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.7+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.7%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B2/sapmachine-jdk-11.0.7-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "91a60a1ac50b0e18047e6133a1a1e4df1b1ca58f6c143a4285afe57a0b1b8126" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B2/sapmachine-jdk-11.0.7-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "6219645eb4153b6f9cd25f13e8cbc224e7e766b3488e9bed2cdb3f97625373ed" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B2/sapmachine-jdk-11.0.7-ea.2_linux-x64_bin.tar.gz", + "checksum": "a8b278078b6e113eaaa8a199aa713aaf4c7daae92f751683693a3e3f56b37c3a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B2/sapmachine-jdk-11.0.7-ea.2_osx-x64_bin.tar.gz", + "checksum": "44160ea832fab38e8c8b7ea171941b701367e2ca8b56cf9ec277180587387a1e" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.7-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B2/sapmachine-jdk-11.0.7-ea.2_osx-x64_bin.dmg", + "checksum": "3c2ffa75256075b20ea81a5e28fd199da71a98536fef7ce11e4d5589743bfcca" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.7-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B2/sapmachine-jdk-11.0.7-ea.2_windows-x64_bin.zip", + "checksum": "d57f1e320693dec47799869b638e044f4318170087da97a6523cd46fe4ddbae7" + }, + "msi": { + "name": "sapmachine-jdk-11.0.7-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B2/sapmachine-jdk-11.0.7-ea.2_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B2/sapmachine-jre-11.0.7-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "499b100bb3a285453cb0210a9b5e2a5f68dd6d2634c8777126b877255b42247c" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B2/sapmachine-jre-11.0.7-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "3edca3741f3a5dd1bca1028d797b2a9467db4c5006306dad7dc1fb3ccb2ac0a5" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B2/sapmachine-jre-11.0.7-ea.2_linux-x64_bin.tar.gz", + "checksum": "22df28202b188ef5b1ea5ff822f04690f8bc15636ca5304dbaaea58a32a1b240" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B2/sapmachine-jre-11.0.7-ea.2_osx-x64_bin.tar.gz", + "checksum": "da0b50e63be259516e0857794321ad22896c0cbde2b8fbdb69cfa62fc2ac8764" + }, + "dmg": { + "name": "sapmachine-jre-11.0.7-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B2/sapmachine-jre-11.0.7-ea.2_osx-x64_bin.dmg", + "checksum": "24f72de1d927046076ff0b678b1aa56d770214fa8def6998a7aaa97c60ca8672" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.7-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B2/sapmachine-jre-11.0.7-ea.2_windows-x64_bin.zip", + "checksum": "8c005e5ff23fed0f8fd117a8b0896b141dc62dd45b0789538bc36700e525e640" + }, + "msi": { + "name": "sapmachine-jre-11.0.7-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B2/sapmachine-jre-11.0.7-ea.2_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.7+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.7%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B1/sapmachine-jdk-11.0.7-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "6e13e133e96fcc1be3f90832a3b14cba6a3a2497922fa5b8d72bcd7103ae175d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B1/sapmachine-jdk-11.0.7-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "d96fd24775b3953c57ef60b05f1bb6f1ff7a843ae6bbbbfb67b4233920d00d0a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B1/sapmachine-jdk-11.0.7-ea.1_linux-x64_bin.tar.gz", + "checksum": "d602e2802948a27ae390d467d1c5f6ed0a119e116074218bc4526b405f0af670" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.7-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B1/sapmachine-jdk-11.0.7-ea.1_osx-x64_bin.tar.gz", + "checksum": "7df103ebc08051eef625e4a1e2b3d20d61e474b9398513558e6033f8ffe3a84a" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.7-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B1/sapmachine-jdk-11.0.7-ea.1_osx-x64_bin.dmg", + "checksum": "74394e56bd2e5826d0e1e66f0612198b2fbb37dd58bbca84e501140e74e16ef7" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.7-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B1/sapmachine-jdk-11.0.7-ea.1_windows-x64_bin.zip", + "checksum": "17d8af34213d9daf8cfe233645546be0cc1051192cc5912e5183c5ee70ce553d" + }, + "msi": { + "name": "sapmachine-jdk-11.0.7-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B1/sapmachine-jdk-11.0.7-ea.1_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B1/sapmachine-jre-11.0.7-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "e8a5beb2471633c23bc4e8ad3591036dd6368c5f13d7dbde9e5bc5b8ebe12bc0" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B1/sapmachine-jre-11.0.7-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "68a1d316b65d6bdf407b2c16ba8379ebc77793970b081085e7b4760c8a82d366" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B1/sapmachine-jre-11.0.7-ea.1_linux-x64_bin.tar.gz", + "checksum": "d923a26e2e0e3bd5ce886ec8fa2124bc2f97111a1717db4a991c06d823d1435d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.7-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B1/sapmachine-jre-11.0.7-ea.1_osx-x64_bin.tar.gz", + "checksum": "3137d1c73894beabf19edbecdf9cbbbbf41f029d53465662b56e982758f577a0" + }, + "dmg": { + "name": "sapmachine-jre-11.0.7-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B1/sapmachine-jre-11.0.7-ea.1_osx-x64_bin.dmg", + "checksum": "9e130e9b40ae3e997495ddf6a05c1a846808afa464031aed68b9de6ae418bf61" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.7-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B1/sapmachine-jre-11.0.7-ea.1_windows-x64_bin.zip", + "checksum": "cea38e58a8dd480d9865a73dfbd8d17de848ab64a32737ad084aa464125964b9" + }, + "msi": { + "name": "sapmachine-jre-11.0.7-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.7%2B1/sapmachine-jre-11.0.7-ea.1_windows-x64_bin.msi" + } + } + } + } + } + }, + "11.0.6.0.1": { + "sapmachine-11.0.6.0.1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.6.0.1", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6.0.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6.0.1/sapmachine-jdk-11.0.6.0.1_linux-ppc64_bin.tar.gz", + "checksum": "c3212dcc7486e8449edb4931a15a3b8b6971c553b6c71c0ef80943df06298290" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6.0.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6.0.1/sapmachine-jdk-11.0.6.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "cdc904cddbf40a21e4855cc045c0ee4e07a205e837743a886bd4f266337426a2" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6.0.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6.0.1/sapmachine-jdk-11.0.6.0.1_linux-x64_bin.tar.gz", + "checksum": "697d5575ac0a9f24ee4f7a11d264311f2ca0e05841305236fd02d47325792e25" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6.0.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6.0.1/sapmachine-jdk-11.0.6.0.1_osx-x64_bin.tar.gz", + "checksum": "e722275d93fed1d68d35b71c02e6a45d136ae09c4e1d07c2ee89e95a5b91cc4b" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.6.0.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6.0.1/sapmachine-jdk-11.0.6.0.1_osx-x64_bin.dmg", + "checksum": "ec7d720f3da0e6c07eb37e68a74e82c74c696a338b40adb9734ff8284f59beb1" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.6.0.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6.0.1/sapmachine-jdk-11.0.6.0.1_windows-x64_bin.zip", + "checksum": "b7c2d070827eb78270a2422c9f7f6805475ef2050ddb2973585aa1a6dd11e51c" + }, + "msi": { + "name": "sapmachine-jdk-11.0.6.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6.0.1/sapmachine-jdk-11.0.6.0.1_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6.0.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6.0.1/sapmachine-jre-11.0.6.0.1_linux-ppc64_bin.tar.gz", + "checksum": "d6036919114ba38ce4b88abe2343f9d3b6b33197b467c32519a484edf479f151" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6.0.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6.0.1/sapmachine-jre-11.0.6.0.1_linux-ppc64le_bin.tar.gz", + "checksum": "6946bdc436b91f6bd30a8bb23f331586de56b415c4f1699295f023daba455f98" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6.0.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6.0.1/sapmachine-jre-11.0.6.0.1_linux-x64_bin.tar.gz", + "checksum": "d90fc415a66856a9c4c5c76564ee7f6dbfd5e2f6950f2697d1788657010ad98a" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6.0.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6.0.1/sapmachine-jre-11.0.6.0.1_osx-x64_bin.tar.gz", + "checksum": "62af948aeed6e4a05c618492bb22ac5f6a43a592f8e523171f8356aa560d5094" + }, + "dmg": { + "name": "sapmachine-jre-11.0.6.0.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6.0.1/sapmachine-jre-11.0.6.0.1_osx-x64_bin.dmg", + "checksum": "3cafb5c3e6d846b75fbcd958f8d454a46e10d01fd4ee6d55df57fbcfc91b8a44" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.6.0.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6.0.1/sapmachine-jre-11.0.6.0.1_windows-x64_bin.zip", + "checksum": "0bfce50e63dc118b44673867f2248fe8fd7d7bf7e12497f4ddc275fc39e088eb" + }, + "msi": { + "name": "sapmachine-jre-11.0.6.0.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6.0.1/sapmachine-jre-11.0.6.0.1_windows-x64_bin.msi" + } + } + } + } + } + }, + "11.0.6": { + "sapmachine-11.0.6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.6", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6/sapmachine-jdk-11.0.6_linux-ppc64_bin.tar.gz", + "checksum": "210b1443468c19ba5bc5fd56fa563e2629d0dc35828316d41e7ba0cb344d5a51" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6/sapmachine-jdk-11.0.6_linux-ppc64le_bin.tar.gz", + "checksum": "88cf0a1770931a29247bf475f6e9fa370e99fdfb72ae405bb97b876d167d24a5" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6/sapmachine-jdk-11.0.6_linux-x64_bin.tar.gz", + "checksum": "9bc9af984caaa531d46a7ea8ef38e2e24eb5ac331d7f783f90d9801b332719bf" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6/sapmachine-jdk-11.0.6_osx-x64_bin.tar.gz", + "checksum": "e21e81f71fc4d399480a72657fc7d93e0f38d1b51f2f8fccc58bcbc5a3c4b6c9" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6/sapmachine-jdk-11.0.6_osx-x64_bin.dmg", + "checksum": "53f5770b08e146cd3cf582e1485feb370cd4c393856f3e7c7234ce07af00b041" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6/sapmachine-jdk-11.0.6_windows-x64_bin.zip", + "checksum": "1d5da8f6a9b7fdc57598a8c7da7a1daa6999ee9397005dedc3edb9598c663673" + }, + "msi": { + "name": "sapmachine-jdk-11.0.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6/sapmachine-jdk-11.0.6_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6/sapmachine-jre-11.0.6_linux-ppc64_bin.tar.gz", + "checksum": "14d6bb7b4d5843b73fe3d0ae1a11e810626d77af39f9165f30c9f33331e1f828" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6/sapmachine-jre-11.0.6_linux-ppc64le_bin.tar.gz", + "checksum": "a59f6297e3e77c57d368f3685c609be3596f3ea537bb637ff2c84979ab16f215" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6/sapmachine-jre-11.0.6_linux-x64_bin.tar.gz", + "checksum": "e40e11b1bcd408887dd4ff8c6b816b256f7c6cfef6715e0e608ec33dcce7a320" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6/sapmachine-jre-11.0.6_osx-x64_bin.tar.gz", + "checksum": "c80b6355a15f37f4a8722efb04e6af06ae21dcba51530dd0a4236739b215d767" + }, + "dmg": { + "name": "sapmachine-jre-11.0.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6/sapmachine-jre-11.0.6_osx-x64_bin.dmg", + "checksum": "25cb4e1942780721a683713cbf194c2b541cebdcef21494818d1753a78b80665" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6/sapmachine-jre-11.0.6_windows-x64_bin.zip", + "checksum": "b53baf1d7fef30dcd9ec5d2cfff24a0103093a6a65407e129fd706105c26e7af" + }, + "msi": { + "name": "sapmachine-jre-11.0.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6/sapmachine-jre-11.0.6_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.6+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.6%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.10_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B10/sapmachine-jdk-11.0.6-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "1a57cd5588efa49d9020c8d2ce0d372735957beea1821987102796611494ef72" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.10_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B10/sapmachine-jdk-11.0.6-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "da6fcdb54203d37ce706218401e003112f751f6c256164693e2b56af5130f8b7" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.10_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B10/sapmachine-jdk-11.0.6-ea.10_linux-x64_bin.tar.gz", + "checksum": "de7f4f13222bf8e3f2fcebecdba173e6d64fad49e2127e71f82e7776f706c0c3" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.10_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B10/sapmachine-jdk-11.0.6-ea.10_osx-x64_bin.tar.gz", + "checksum": "46af285e352bd7ce463c365805c466b45a1b06fbf6880f632055f26f431e3e60" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.6-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B10/sapmachine-jdk-11.0.6-ea.10_osx-x64_bin.dmg", + "checksum": "516d3f72f1f89c5afcaf78bd8a7a6a3a08069032596b79f89b6096120dae6e83" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.6-ea.10_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B10/sapmachine-jdk-11.0.6-ea.10_windows-x64_bin.zip", + "checksum": "bec819219fe2764e150e35d0494afb3f12b13a0543d29f8ad29234ccc57131c1" + }, + "msi": { + "name": "sapmachine-jdk-11.0.6-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B10/sapmachine-jdk-11.0.6-ea.10_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.10_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B10/sapmachine-jre-11.0.6-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "11168f010f2df0c292c7c6e0e53df38d550f56ad7d42b22a881af0e67d164571" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.10_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B10/sapmachine-jre-11.0.6-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "e918cb5b76d88afb0bec5b40bafd3a3a9159259788b39588e685898c7f5c08da" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.10_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B10/sapmachine-jre-11.0.6-ea.10_linux-x64_bin.tar.gz", + "checksum": "e04ee0c05c940c1e619a144cc3fe3d9102cc47ade4da0f29b8c9b9b3d2addb3d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.10_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B10/sapmachine-jre-11.0.6-ea.10_osx-x64_bin.tar.gz", + "checksum": "bf67206ebab716f5148c9eabb6acd82410081928664a2c77edbee5cb37d242e9" + }, + "dmg": { + "name": "sapmachine-jre-11.0.6-ea.10_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B10/sapmachine-jre-11.0.6-ea.10_osx-x64_bin.dmg", + "checksum": "cb7b395b250d2b84b51974247c4d805dd0a8a32c9344942da2a88b2faf78c93e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.6-ea.10_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B10/sapmachine-jre-11.0.6-ea.10_windows-x64_bin.zip", + "checksum": "4cb23cd3e503acd21dc3814a6857e44811026d914b6285d805aec00b91492e73" + }, + "msi": { + "name": "sapmachine-jre-11.0.6-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B10/sapmachine-jre-11.0.6-ea.10_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.6+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.6%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B9/sapmachine-jdk-11.0.6-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "1e6eecd1f9a5873c35cb82ab0b569687c5a0c9c586998fea40df4aa71548fad6" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B9/sapmachine-jdk-11.0.6-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "9bb838997cf95d5a91c6fe11cd890939d191fe441328628b04c167e98dcab4ed" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B9/sapmachine-jdk-11.0.6-ea.9_linux-x64_bin.tar.gz", + "checksum": "02ed75b0f590af095ebf6809aa06eeb588cc0c44ffe13e0f8c2803c35d791eb9" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B9/sapmachine-jdk-11.0.6-ea.9_osx-x64_bin.tar.gz", + "checksum": "0d06e254a35e7db01c4a28cee3b7ba70547142ab5c77fa9dc580b01ff5799e01" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.6-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B9/sapmachine-jdk-11.0.6-ea.9_osx-x64_bin.dmg", + "checksum": "9261e7ed87931f98c0c3d416813c6953542bac6baea72839148bbc86edfabb06" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.6-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B9/sapmachine-jdk-11.0.6-ea.9_windows-x64_bin.zip", + "checksum": "7611155a45d177af66fad36e785a1c8b2f11baf0623626f164bc3dcd0b184f76" + }, + "msi": { + "name": "sapmachine-jdk-11.0.6-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B9/sapmachine-jdk-11.0.6-ea.9_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B9/sapmachine-jre-11.0.6-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "6d2e83c9d4f8f287ee6bae187389540ad84dab387764cb8884f4327620022bc2" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B9/sapmachine-jre-11.0.6-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "2a020315c0103d63150ed3e7b1cb090f6768844646ba91dc1e4b92ee3d1c76ef" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B9/sapmachine-jre-11.0.6-ea.9_linux-x64_bin.tar.gz", + "checksum": "c393cf33ae0049c9dd3975b41f652adf6c7a6f28ffe783c494db6c76cf350cde" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B9/sapmachine-jre-11.0.6-ea.9_osx-x64_bin.tar.gz", + "checksum": "c10946572708472b71712c6671dfe1ee9362a0b63e4388feb890ff5a9f4756af" + }, + "dmg": { + "name": "sapmachine-jre-11.0.6-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B9/sapmachine-jre-11.0.6-ea.9_osx-x64_bin.dmg", + "checksum": "346a0ea3109bddb8fbc1b9cca68a18cdf209eaf3070d3fef4aee43556b72d5f4" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.6-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B9/sapmachine-jre-11.0.6-ea.9_windows-x64_bin.zip", + "checksum": "65124a1b9e6247484c7acfe28606deb104215357b9c23c854902f32c0f298dc1" + }, + "msi": { + "name": "sapmachine-jre-11.0.6-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B9/sapmachine-jre-11.0.6-ea.9_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.6+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.6%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B8/sapmachine-jdk-11.0.6-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "3f1de4563d043104e730bf3abbce849a9ef40920b73196aab342101b393e1a71" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B8/sapmachine-jdk-11.0.6-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "97bbdc7529d4c45f70117022895054096c9a758f0a2f6e8bd0c7907f778dd934" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B8/sapmachine-jdk-11.0.6-ea.8_linux-x64_bin.tar.gz", + "checksum": "604bd5c8b95ee663768588ef164607a49fcbb93677a9d767f5e5bbfdb350fb4f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B8/sapmachine-jdk-11.0.6-ea.8_osx-x64_bin.tar.gz", + "checksum": "0baa65c8dcc6d3a0a725c16c78ec2881864f7616f83e4eb4adef84a9a5ed1fbc" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.6-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B8/sapmachine-jdk-11.0.6-ea.8_osx-x64_bin.dmg", + "checksum": "0e56612dea8dff9a27a60a7c6793cf42217e19b1b3a8206c0241c08d82b21900" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.6-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B8/sapmachine-jdk-11.0.6-ea.8_windows-x64_bin.zip", + "checksum": "c31696f551d9bc0c218dfcf7997a6a2cc55680f490e42d563d92d06c40da54b4" + }, + "msi": { + "name": "sapmachine-jdk-11.0.6-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B8/sapmachine-jdk-11.0.6-ea.8_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B8/sapmachine-jre-11.0.6-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "68aae974567e12a54142b9dc60134f24bb32ce7f82a1dcd91a674bad220e3340" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B8/sapmachine-jre-11.0.6-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "d5dda22509eba0c4ca751636a04fad75bec80f515be7563350bd0383afeae109" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B8/sapmachine-jre-11.0.6-ea.8_linux-x64_bin.tar.gz", + "checksum": "6e5e388cf4be53d6bed4562ef4111e20c0938bda7c27acc2bc62e00a9a6be1ff" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B8/sapmachine-jre-11.0.6-ea.8_osx-x64_bin.tar.gz", + "checksum": "bb36537d1f6baab843c8596bfdb43a26bb26ae682178f4eb071cf0d886fd9b66" + }, + "dmg": { + "name": "sapmachine-jre-11.0.6-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B8/sapmachine-jre-11.0.6-ea.8_osx-x64_bin.dmg", + "checksum": "f7b1a3d17567f43824ed827c3f2e60dd9da5176d99b6158cefa64edc1c6da2cb" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.6-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B8/sapmachine-jre-11.0.6-ea.8_windows-x64_bin.zip", + "checksum": "28303c693f1e8def42049fa16b449c457b475ca4d0aa434ecedce3c59259a818" + }, + "msi": { + "name": "sapmachine-jre-11.0.6-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B8/sapmachine-jre-11.0.6-ea.8_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.6+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.6%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B7/sapmachine-jdk-11.0.6-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "5b487e0ea9a996dd8ab017a69d7f95983ceaaa034cbb4bf5ae15065cb404e341" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B7/sapmachine-jdk-11.0.6-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "a72d492483f5fff32d3a86a1b3b7b5be2b2906c2583f381e68dbb5eab3cff461" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B7/sapmachine-jdk-11.0.6-ea.7_linux-x64_bin.tar.gz", + "checksum": "15d245b4d6dc3e7fb1002adf2e9b778a2be0c68bfcb8dfc1ab07a27393a42148" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B7/sapmachine-jdk-11.0.6-ea.7_osx-x64_bin.tar.gz", + "checksum": "908af0c0859ba0ca70993606bc93426a9ce6792be218d61ec523d7b32bd82203" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.6-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B7/sapmachine-jdk-11.0.6-ea.7_osx-x64_bin.dmg", + "checksum": "308a86651f5a3f3e6c52b8bb3c0a887d66a890457cea67bbdbba801e807e5a6a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.6-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B7/sapmachine-jdk-11.0.6-ea.7_windows-x64_bin.zip", + "checksum": "057fd842b524deef2c402d75b65ca2f3abcb4f71c52a0d652180bf883194c77b" + }, + "msi": { + "name": "sapmachine-jdk-11.0.6-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B7/sapmachine-jdk-11.0.6-ea.7_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B7/sapmachine-jre-11.0.6-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "9a7d6ec2ec5ea2ab874e93f82f683d89ceca5559580f4c8db67f6876aad4c095" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B7/sapmachine-jre-11.0.6-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "66a2016bf599340dedb4b15efe2296e07f3c40807498ad7374cb9a8f1eee2fb8" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B7/sapmachine-jre-11.0.6-ea.7_linux-x64_bin.tar.gz", + "checksum": "3e2be3678bea8919d7f770b5efdd09d40d725f8ac664899ee77f8fba607a8c41" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B7/sapmachine-jre-11.0.6-ea.7_osx-x64_bin.tar.gz", + "checksum": "4f0cd6e7dd36c44ab08eaabce8553026e1d0e6ac798096bc9280a6b7d017a272" + }, + "dmg": { + "name": "sapmachine-jre-11.0.6-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B7/sapmachine-jre-11.0.6-ea.7_osx-x64_bin.dmg", + "checksum": "477866db5d620efd7d7559e7a9e3e5274d135185d9617531aeaecc776f2ffa95" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.6-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B7/sapmachine-jre-11.0.6-ea.7_windows-x64_bin.zip", + "checksum": "a05b84bf84da2c7201f372df185b9715ef7e0212911ebdf9d44cfa8b2f9c4177" + }, + "msi": { + "name": "sapmachine-jre-11.0.6-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B7/sapmachine-jre-11.0.6-ea.7_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.6+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.6%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B6/sapmachine-jdk-11.0.6-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "227c8e52b4a7f2044d82935632ef2446619d1322f2e54e081cbc0349d56fb81c" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B6/sapmachine-jdk-11.0.6-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "7bd40d8810f51da0448755c0531bd90fa1cc2d4cec71c12c9df50fe610b01509" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B6/sapmachine-jdk-11.0.6-ea.6_linux-x64_bin.tar.gz", + "checksum": "1b7df99512b0824c7af03edcc6fbe9eae387c0f817a3e9add28d217818c12d39" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B6/sapmachine-jdk-11.0.6-ea.6_osx-x64_bin.tar.gz", + "checksum": "3d14c86d94646b02cbcc734ada17e02f9ef4e0af2a52c54e4d0545bd2f899a3e" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.6-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B6/sapmachine-jdk-11.0.6-ea.6_osx-x64_bin.dmg", + "checksum": "4073e6254b532c0229c6e377a732fe851cf75e2017c0b07f6fd915a92080bb3e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.6-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B6/sapmachine-jdk-11.0.6-ea.6_windows-x64_bin.zip", + "checksum": "4c83f36f483ac1acdb5c511fb977901b2c6843d0088700d668d2faf71b6f614e" + }, + "msi": { + "name": "sapmachine-jdk-11.0.6-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B6/sapmachine-jdk-11.0.6-ea.6_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B6/sapmachine-jre-11.0.6-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "4aa334bee10fc03042d53d853ed189aa063883199dd7292ae460e64e5a92d126" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B6/sapmachine-jre-11.0.6-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "21bb9ccba1fd17a2fdde2bde965701e9e0a89229baae61fa793ea0be938de852" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B6/sapmachine-jre-11.0.6-ea.6_linux-x64_bin.tar.gz", + "checksum": "492add2871294e4c452d26628dedb57d3610381635776666c734cbf9033912c9" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B6/sapmachine-jre-11.0.6-ea.6_osx-x64_bin.tar.gz", + "checksum": "c8056a9024b98b1f18376147a853d36c7d53cef66a222f0d77bc48779d8877d7" + }, + "dmg": { + "name": "sapmachine-jre-11.0.6-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B6/sapmachine-jre-11.0.6-ea.6_osx-x64_bin.dmg", + "checksum": "e64ad93c9aa9f88f8eb74ceaefb2bc25435021e6091e5b2df9892d66b862604b" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.6-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B6/sapmachine-jre-11.0.6-ea.6_windows-x64_bin.zip", + "checksum": "8313d30af53577dca18ab0c49ff6052a86d2b1b145da4f33d34d1290405cbb72" + }, + "msi": { + "name": "sapmachine-jre-11.0.6-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B6/sapmachine-jre-11.0.6-ea.6_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.6+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.6%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B5/sapmachine-jdk-11.0.6-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "006677191b5b0d2e3d1c75e1392b0394d128d8a83f0925e35b6a5af6f39cba80" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B5/sapmachine-jdk-11.0.6-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "0fcdaf5e640fec87f27ff1b64de78c02781bbc02f717009a928286e15e7bef79" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B5/sapmachine-jdk-11.0.6-ea.5_linux-x64_bin.tar.gz", + "checksum": "c5c54d0a125c4a722d123e7bd5bfb9ef36542d7ce0abeabd68c7d0edd1f6067b" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B5/sapmachine-jdk-11.0.6-ea.5_osx-x64_bin.tar.gz", + "checksum": "7635271068b8270155a1c9373405b53148040f9c1d0bbe51212ef993046aa5a5" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.6-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B5/sapmachine-jdk-11.0.6-ea.5_osx-x64_bin.dmg", + "checksum": "1961e10f69c4d27a089dd6d64c7a9e8d67ee2c174a1d2994c3c6fa15a7043b0e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.6-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B5/sapmachine-jdk-11.0.6-ea.5_windows-x64_bin.zip", + "checksum": "5e3606d711eee311ff255a0234fee5968bb41cf6e4a1076e133c843678ffea16" + }, + "msi": { + "name": "sapmachine-jdk-11.0.6-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B5/sapmachine-jdk-11.0.6-ea.5_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B5/sapmachine-jre-11.0.6-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "270bb177c2f6fdbef90a61a51a9696a5837c7ef05ad6f83b566ae0719a699098" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B5/sapmachine-jre-11.0.6-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "61b90c86eebd62ebd802dd2c20f9e76d9a6ba6d05f358566ebff2e3036fcc937" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B5/sapmachine-jre-11.0.6-ea.5_linux-x64_bin.tar.gz", + "checksum": "5d4ff2b73dd7bbf96f245f9953f7d5147a2916f6dc072068429ca2d921954c7f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B5/sapmachine-jre-11.0.6-ea.5_osx-x64_bin.tar.gz", + "checksum": "862bfe091d3c45563f90708d4c0e4520c54971e29ffdf6bb14d35540920a39ce" + }, + "dmg": { + "name": "sapmachine-jre-11.0.6-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B5/sapmachine-jre-11.0.6-ea.5_osx-x64_bin.dmg", + "checksum": "a8fd8bb1e6664422fbddd2215fd137b5bbb996f0c1eebfdb4ff6a22c8c2f5866" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.6-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B5/sapmachine-jre-11.0.6-ea.5_windows-x64_bin.zip", + "checksum": "ee5abbcce2c044aca0e06c881d833e41fe2ffbc94943611a413d7f280df8d4e1" + }, + "msi": { + "name": "sapmachine-jre-11.0.6-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B5/sapmachine-jre-11.0.6-ea.5_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.6+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.6%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B4/sapmachine-jdk-11.0.6-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "c221ecbd8ccf0f512939a6dbc76205be2860db070cc5c4acc91b8b48d55b64fd" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B4/sapmachine-jdk-11.0.6-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "a8e08e7b90cef33ddbd7336b8fada44a0c6bbed7033d477ceeab4041ee158c5e" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B4/sapmachine-jdk-11.0.6-ea.4_linux-x64_bin.tar.gz", + "checksum": "a9dbff52a54554b87e6dfab72f776ec7cc40ae925e9782ddea89b0b3694601de" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B4/sapmachine-jdk-11.0.6-ea.4_osx-x64_bin.tar.gz", + "checksum": "f7be0b3bf92ec6a88ed83a3ad5e2a793d3e3eed13e527a01a4a5f0a8b05c1279" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.6-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B4/sapmachine-jdk-11.0.6-ea.4_osx-x64_bin.dmg", + "checksum": "556780ef35d4fff72ab67c5e7c5057ed65fafe943b3ce345e5b18f0de364a015" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.6-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B4/sapmachine-jdk-11.0.6-ea.4_windows-x64_bin.zip", + "checksum": "4bb3e1a8fd086bd65f1bad491f26b0f447640977f20c0a85d280fdda3c0e6657" + }, + "msi": { + "name": "sapmachine-jdk-11.0.6-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B4/sapmachine-jdk-11.0.6-ea.4_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B4/sapmachine-jre-11.0.6-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "56737246f3adadbb3a18afdc5be09c31031ea273c383b33101b22034ea560ae3" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B4/sapmachine-jre-11.0.6-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "95141f78aaee545561b328e3f165b9cde1a3e28b69eed560c24d2244ed80bf5a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B4/sapmachine-jre-11.0.6-ea.4_linux-x64_bin.tar.gz", + "checksum": "53265ce8df7c38ac12c3e93b0de8d078c416e7dfa007847abe83adce0991817e" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B4/sapmachine-jre-11.0.6-ea.4_osx-x64_bin.tar.gz", + "checksum": "303be49436e80f2124b404cba26bbadf2b204fe81f82a0a15a56e676ad2ce22b" + }, + "dmg": { + "name": "sapmachine-jre-11.0.6-ea.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B4/sapmachine-jre-11.0.6-ea.4_osx-x64_bin.dmg", + "checksum": "bb826b039760f3e18c194dbd8b6e3bd7d1b19527f4ad44647c450345c3dbb959" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.6-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B4/sapmachine-jre-11.0.6-ea.4_windows-x64_bin.zip", + "checksum": "d98cd67667eaa32c8044546284bd9a2240ac67edc48b3389b39884c47d65c56d" + } + } + } + } + }, + "sapmachine-11.0.6+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.6%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B3/sapmachine-jdk-11.0.6-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "a1b763426690d73162d8a2ae1e658f63f301f11b73a413aaf3b1ba1be0aaafcc" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B3/sapmachine-jdk-11.0.6-ea.3_linux-x64_bin.tar.gz", + "checksum": "930c71a92cdd07bd43fc1677652bc34b2f647e5d14e176754809a8de88d494a0" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B3/sapmachine-jdk-11.0.6-ea.3_osx-x64_bin.tar.gz", + "checksum": "afce3b44d4598a59df968a85f5f6311a8493aad02b7fea614b04fec29a8db52f" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.6-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B3/sapmachine-jdk-11.0.6-ea.3_osx-x64_bin.dmg", + "checksum": "48cf21cbbf1a9b4adfc47d1f239a99320aa1f764708401a9760161ef30ad32cd" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.6-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B3/sapmachine-jdk-11.0.6-ea.3_windows-x64_bin.zip", + "checksum": "e99e56a79d4f2904a1fb0d8c88fcf9c294d4164c3ef2720374f383fd4635cad7" + }, + "msi": { + "name": "sapmachine-jdk-11.0.6-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B3/sapmachine-jdk-11.0.6-ea.3_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B3/sapmachine-jre-11.0.6-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "4afde5c5d1ac1fb2fc83577b045211bbf167f735f17ece3f4abd25f05ba889a5" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B3/sapmachine-jre-11.0.6-ea.3_linux-x64_bin.tar.gz", + "checksum": "77e6fafd9823c42c1856fb706ef1735d926fb9a4145756ae4f82d2b165dcdc8d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B3/sapmachine-jre-11.0.6-ea.3_osx-x64_bin.tar.gz", + "checksum": "0dc9dae53c96618ae2fd1397547728d62461ad3d5007c62e90dd3c9755bcb538" + }, + "dmg": { + "name": "sapmachine-jre-11.0.6-ea.3_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B3/sapmachine-jre-11.0.6-ea.3_osx-x64_bin.dmg", + "checksum": "4782a19e0881bb5f017f64211d92a44c5e5d96838bab22bed9ad9882558ca223" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.6-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B3/sapmachine-jre-11.0.6-ea.3_windows-x64_bin.zip", + "checksum": "57d72511a440b38846935434d445ec0f2376f7666dbcace5aad79d1f233f1ee0" + } + } + } + } + }, + "sapmachine-11.0.6+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.6%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B2/sapmachine-jdk-11.0.6-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "560fb70735ec37c51bd252da2c6d71f562dac1b207fb4ee6240cce69f3c20e5e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B2/sapmachine-jdk-11.0.6-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "cf39217ea2f0f18f1cf80fb2a79d02b72c052120bae1c10b5d5279a0351af4af" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B2/sapmachine-jdk-11.0.6-ea.2_linux-x64_bin.tar.gz", + "checksum": "53170e15595e0c9edd3928bca7bd9908e64da08ccdae4cf665ffa2f5cff9a7f6" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B2/sapmachine-jdk-11.0.6-ea.2_osx-x64_bin.tar.gz", + "checksum": "7248da73759337ab5625a5bf57a1b093cbbe1b02099cc295232b67b5f999967b" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.6-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B2/sapmachine-jdk-11.0.6-ea.2_osx-x64_bin.dmg", + "checksum": "842ff1c662b8fa0238c486b2f3315722fbd4697c64cd2c92e81cdfce044e75a2" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.6-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B2/sapmachine-jdk-11.0.6-ea.2_windows-x64_bin.zip", + "checksum": "e430fda6437b0b145221def4f611b82b586ded7be2375ee0831bfeef3c3a83eb" + }, + "msi": { + "name": "sapmachine-jdk-11.0.6-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B2/sapmachine-jdk-11.0.6-ea.2_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B2/sapmachine-jre-11.0.6-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "465518e745b7dd9d0a59dde4c148bfe45b1b8f4889da231ff67eeb7e59cd0564" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B2/sapmachine-jre-11.0.6-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "88d5f2158c879b68a3aabfe5a87e75c9520832c2c93226254d55a03dd7b8db7a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B2/sapmachine-jre-11.0.6-ea.2_linux-x64_bin.tar.gz", + "checksum": "3a4539a3868059d624e8b423769c17f0bd627d56cce12567b54dc5fa121dd912" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B2/sapmachine-jre-11.0.6-ea.2_osx-x64_bin.tar.gz", + "checksum": "c1e4fda3c6e7c6ad283f379a13ef0f649bcc3d95c6e5f5f5dabeb6f5630941d8" + }, + "dmg": { + "name": "sapmachine-jre-11.0.6-ea.2_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B2/sapmachine-jre-11.0.6-ea.2_osx-x64_bin.dmg", + "checksum": "2a36c54eb838e2ea1d72a9745c8d14d753feec006637766f953b4733f034bbde" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.6-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B2/sapmachine-jre-11.0.6-ea.2_windows-x64_bin.zip", + "checksum": "b726d09ad7db4e3f27353e14fa11437d58be4f141d2486f0a52a419f7177b985" + } + } + } + } + }, + "sapmachine-11.0.6+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.6%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B1/sapmachine-jdk-11.0.6-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "9b61c52a8a13759f892f2baae38c3bfebf94de73ce0ad2f71e7457241b715d34" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B1/sapmachine-jdk-11.0.6-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "c8775f4777987bb405bdce336f6110a45770952f6860b6da114f3e4a2ddc7188" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B1/sapmachine-jdk-11.0.6-ea.1_linux-x64_bin.tar.gz", + "checksum": "b3952adf1f07f0bd472b4bda3fa91149dd6983d8f56ad3d0fd5d6d643e68bc0e" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.6-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B1/sapmachine-jdk-11.0.6-ea.1_osx-x64_bin.tar.gz", + "checksum": "cb9b7873926401cb6e510c0f4118a2ecf59220f355089141d050e53b97be27a6" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.6-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B1/sapmachine-jdk-11.0.6-ea.1_osx-x64_bin.dmg", + "checksum": "e5739d55186e3b06e2a582877ea1018ed9aa289a102ee970213c8aaefb27270f" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.6-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B1/sapmachine-jdk-11.0.6-ea.1_windows-x64_bin.zip", + "checksum": "6b532e2e044edf90a12da751e6b618c9c3603c9d47341d585d8da441ae3a7425" + }, + "msi": { + "name": "sapmachine-jdk-11.0.6-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B1/sapmachine-jdk-11.0.6-ea.1_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B1/sapmachine-jre-11.0.6-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "2ab3a4f744fa565f8cc702d5d2a9f6bc9ed90357db982cdce9dd32bb5924f59f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B1/sapmachine-jre-11.0.6-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "ba3192d560b453193bebeebc2a2f1c82f9d6da76d4e0c334a2dc8c8adf612782" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B1/sapmachine-jre-11.0.6-ea.1_linux-x64_bin.tar.gz", + "checksum": "1cdf775361d97aacbc7d209c7dc26f9f3d0effc5e9e2264cd64814de87d19e6f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.6-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B1/sapmachine-jre-11.0.6-ea.1_osx-x64_bin.tar.gz", + "checksum": "e9185b35d58b77b4cc832b0fc0d9b02c0eb990951bf2763050b5837c3a79a109" + }, + "dmg": { + "name": "sapmachine-jre-11.0.6-ea.1_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B1/sapmachine-jre-11.0.6-ea.1_osx-x64_bin.dmg", + "checksum": "c14165adfb12617bf644cd49df1c911a207f7b5f3ba9eeca1ce581525a08d609" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.6-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B1/sapmachine-jre-11.0.6-ea.1_windows-x64_bin.zip", + "checksum": "1573c18ef73e8efa679a6e567f78a6b3ca54675de0f8cef10b8b9ef7343dbaef" + } + } + } + } + }, + "sapmachine-11.0.6+0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.6%2B0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.0_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B0/sapmachine-jdk-11.0.5-ea.0_linux-ppc64_bin.tar.gz", + "checksum": "8e6108e3bd520ff7077c676374dbb94ce4d2f51367d2b80e3ee067a1e1760477" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.0_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B0/sapmachine-jdk-11.0.5-ea.0_linux-ppc64le_bin.tar.gz", + "checksum": "fbaa378a60e33e52f0c4d956eca8985e6399f90f177049fb58e1a2a3e8a9d672" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.0_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B0/sapmachine-jdk-11.0.5-ea.0_linux-x64_bin.tar.gz", + "checksum": "7f625a1239cd4a10118e2d92198f303e872bc129ff80c0f30720eb10f845476e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.5-ea.0_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B0/sapmachine-jdk-11.0.5-ea.0_windows-x64_bin.zip", + "checksum": "c65630d21437248dabc8f8d22ca1fe33add7fd5e2a4b3645dd05022fd0f50af8" + }, + "msi": { + "name": "sapmachine-jdk-11.0.5-ea.0_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B0/sapmachine-jdk-11.0.5-ea.0_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.0_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B0/sapmachine-jre-11.0.5-ea.0_linux-ppc64_bin.tar.gz", + "checksum": "1104ae07ed2c8b198c4b1f84bb7e214751206b7a71563a14eae136d2297ceada" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.0_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B0/sapmachine-jre-11.0.5-ea.0_linux-ppc64le_bin.tar.gz", + "checksum": "de2d104770f23549c332cc127f909680311333116ac24083e065faa5cee62a67" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.0_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B0/sapmachine-jre-11.0.5-ea.0_linux-x64_bin.tar.gz", + "checksum": "c22e2abb99c38dbbba48a320c7d4ad00c5a0b6ad7fe06f8e2c90f1b9aff494f6" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.5-ea.0_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.6%2B0/sapmachine-jre-11.0.5-ea.0_windows-x64_bin.zip", + "checksum": "193088c22cd97df96e5abc1360ee863aa956d769eff8c87795aa4fd09fa5937b" + } + } + } + } + } + }, + "11.0.5": { + "sapmachine-11.0.5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.5", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5/sapmachine-jdk-11.0.5_linux-ppc64_bin.tar.gz", + "checksum": "d26f947d7f456914bc93adfd55b6156a534a9d689ce7e3b4c48c76affc067396" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5/sapmachine-jdk-11.0.5_linux-ppc64le_bin.tar.gz", + "checksum": "827bf60567d8d6d5624e6dc76a38c3adb2753b17ceaad4764302eb95aa1848e4" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5/sapmachine-jdk-11.0.5_linux-x64_bin.tar.gz", + "checksum": "f8b849bbd044acfd38972987305bd4c8bf5706a794ec12b51f1ed747a492ca55" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5/sapmachine-jdk-11.0.5_osx-x64_bin.tar.gz", + "checksum": "31fcd79060ca5c62be9866450cf501361c0e478f3418c366a136f63a7a530059" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5/sapmachine-jdk-11.0.5_osx-x64_bin.dmg", + "checksum": "c3521e365a9b85a0126a2b6bec5b9ec36e2a83776b0d7371e2bbee5a8199723d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5/sapmachine-jdk-11.0.5_windows-x64_bin.zip", + "checksum": "52f3671d0ef9c6612d43101b17a3a5dbc64a926bc1ca2e8e7af88c2f5484ef74" + }, + "msi": { + "name": "sapmachine-jdk-11.0.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5/sapmachine-jdk-11.0.5_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5/sapmachine-jre-11.0.5_linux-ppc64_bin.tar.gz", + "checksum": "31e1911c7508257a7167e24266861cba8173069f404298880e5ceaed917ba7be" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5/sapmachine-jre-11.0.5_linux-ppc64le_bin.tar.gz", + "checksum": "181b12c48f45f26c08f070129fb697088da843dace58233d0a4b01c63b937510" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5/sapmachine-jre-11.0.5_linux-x64_bin.tar.gz", + "checksum": "42844a023db2c74e82b7e08b934f90ab4615a147bbbd7088f67520a0d05a71d2" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5/sapmachine-jre-11.0.5_osx-x64_bin.tar.gz", + "checksum": "cbab8be999a902d2f679669f3ddf3810d96050c710b8b7e07636f1282a763b19" + }, + "dmg": { + "name": "sapmachine-jre-11.0.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5/sapmachine-jre-11.0.5_osx-x64_bin.dmg", + "checksum": "09aad6aa1d713aa76a4a08c90143262047bec0907b05888f4147080cdba50897" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5/sapmachine-jre-11.0.5_windows-x64_bin.zip", + "checksum": "13ecd5554b23dae50340c23f46b374b89a15335802f68c46794c141ebf022627" + }, + "msi": { + "name": "sapmachine-jre-11.0.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5/sapmachine-jre-11.0.5_windows-x64_bin.msi" + } + } + } + } + }, + "sapmachine-11.0.5+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.5%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B9/sapmachine-jdk-11.0.5-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "5919d061cd0f9c1be94dfa68503d1a4d64c37ad19e9d008826d1b82aa46dea35" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B9/sapmachine-jdk-11.0.5-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "7a8f9bc98d8342e66b56ffd5b126db38920ef11943ecdc09d1e97a8dac0d477b" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B9/sapmachine-jdk-11.0.5-ea.9_linux-x64_bin.tar.gz", + "checksum": "a595d7282118b6e5d729d1f068ca3167d9194e27ee2365b5683441d88d096e5c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B9/sapmachine-jdk-11.0.5-ea.9_osx-x64_bin.tar.gz", + "checksum": "07979f0ab797a25e78ff6d5086eb4fa78802b02d5aea6982ff1633a0e2de4200" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.5-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B9/sapmachine-jdk-11.0.5-ea.9_osx-x64_bin.dmg", + "checksum": "52914eec503b78f8349868f74f9280ae28cdf748dcec801ed81236e8f0431464" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.5-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B9/sapmachine-jdk-11.0.5-ea.9_windows-x64_bin.zip", + "checksum": "62bd78fc2e6ea781b38d20390b486f77533ebc00a421a5d9e978e88f0386c704" + }, + "msi": { + "name": "sapmachine-jdk-11.0.5-ea.9_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B9/sapmachine-jdk-11.0.5-ea.9_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B9/sapmachine-jre-11.0.5-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "0ec3a42efc1c0e5743873e722fc36cdd422bf5fbe35b5b775c7a7e07cf03dc1b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B9/sapmachine-jre-11.0.5-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "5950f9218a3600224cdb18a5168611f18ed945cb359e53ebd200f22a496a4b99" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B9/sapmachine-jre-11.0.5-ea.9_linux-x64_bin.tar.gz", + "checksum": "b0dfdca004705f8d0606c364b8fa9e0c61d1cb0d66f17f74801209f985794f6b" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B9/sapmachine-jre-11.0.5-ea.9_osx-x64_bin.tar.gz", + "checksum": "02fbef62e8b3928f0c13a35ebc45177f2b41f8b4e9556a882bdf1eb91678d255" + }, + "dmg": { + "name": "sapmachine-jre-11.0.5-ea.9_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B9/sapmachine-jre-11.0.5-ea.9_osx-x64_bin.dmg", + "checksum": "42ea64037012cd5a6bc4241a862807c54b937f8357f5d1305e753a723e44438b" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.5-ea.9_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B9/sapmachine-jre-11.0.5-ea.9_windows-x64_bin.zip", + "checksum": "fde057f1b228f0f6272d118a9e5e176e701b7955f4f78b62e01173cee718dff2" + } + } + } + } + }, + "sapmachine-11.0.5+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.5%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B8/sapmachine-jdk-11.0.5-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "1072bd877f5dab1634e156f0199d34c89a97144e22256a1095bd89c40c75237f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B8/sapmachine-jdk-11.0.5-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "1a6ec6ee3e9aeff68b58bd04048b9e7feb2cd1d3f96acc13892557433c1af36d" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B8/sapmachine-jdk-11.0.5-ea.8_linux-x64_bin.tar.gz", + "checksum": "6caa273615ac50f94fa7d506e8bea74e7adaaf02db856ae62e76d4a7df86ad16" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B8/sapmachine-jdk-11.0.5-ea.8_osx-x64_bin.tar.gz", + "checksum": "1c553703fcb48b619389adb9046095a163f89512e1db08836544e56cb8d3aa16" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.5-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B8/sapmachine-jdk-11.0.5-ea.8_osx-x64_bin.dmg", + "checksum": "9047e22b5cce9c83df088b9fd013814f7dcabbeb22f3691cc1253fcfc400e218" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.5-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B8/sapmachine-jdk-11.0.5-ea.8_windows-x64_bin.zip", + "checksum": "ea18409b5ac20b67f32b2a4a5021d459986679551de6c6ef30a39392fcc127db" + }, + "msi": { + "name": "sapmachine-jdk-11.0.5-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B8/sapmachine-jdk-11.0.5-ea.8_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B8/sapmachine-jre-11.0.5-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "4163b295e15717a1e46fb3776e55396cec668f5a0d466a01bfa99a7e0ebbd629" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B8/sapmachine-jre-11.0.5-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "5852656317af598bd4e5e3ceb38cc7624cfd1dcf1625edb732046ea0cd213973" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B8/sapmachine-jre-11.0.5-ea.8_linux-x64_bin.tar.gz", + "checksum": "7f0463ad21ab5f4a98b4a4e1045652f78f596cd06000bb98552674bac0fdc87f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B8/sapmachine-jre-11.0.5-ea.8_osx-x64_bin.tar.gz", + "checksum": "9f922d578a861ad9383327f15991bdc1fb3c7239cb68af0a4bc8aa2cc0bcb22c" + }, + "dmg": { + "name": "sapmachine-jre-11.0.5-ea.8_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B8/sapmachine-jre-11.0.5-ea.8_osx-x64_bin.dmg", + "checksum": "88922cea721437920f103c057ca816530deff97163e3c23e608f186a02ba5f26" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.5-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B8/sapmachine-jre-11.0.5-ea.8_windows-x64_bin.zip", + "checksum": "9b50ab64e22e19b92dafd60f6ac9f0358d58998d3b41f581cf5422cebfe59003" + } + } + } + } + }, + "sapmachine-11.0.5+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.5%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B7/sapmachine-jdk-11.0.5-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "56aade1c8bcf594c78ed38c3155c44ad17b85e5a88a8420cc8ba2388ad8d1a11" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B7/sapmachine-jdk-11.0.5-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "eb15b7f708d1f57675f9d6e63266a0bf833a0b02949d10bee41e1d766e87ec57" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B7/sapmachine-jdk-11.0.5-ea.7_linux-x64_bin.tar.gz", + "checksum": "a05566807ffe52540fe40ba34fb853faef2f402ccff0762193e7ad675fc0d06d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B7/sapmachine-jdk-11.0.5-ea.7_osx-x64_bin.tar.gz", + "checksum": "88a86185de9a65d184164033af5aadc84c563d87f840eafb172639603b207f67" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.5-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B7/sapmachine-jdk-11.0.5-ea.7_osx-x64_bin.dmg", + "checksum": "0dc44a0f451c0ec7392794419b6f763218b9d02c9b8f0f2a79b41590a22bc990" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.5-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B7/sapmachine-jdk-11.0.5-ea.7_windows-x64_bin.zip", + "checksum": "e2fb2214055ddb9dbc2f5b93624b88d545adfc8113bc733bfd663fe1c494e553" + }, + "msi": { + "name": "sapmachine-jdk-11.0.5-ea.7_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B7/sapmachine-jdk-11.0.5-ea.7_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B7/sapmachine-jre-11.0.5-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "08987734eef093bd7ab426b5515ba4776a5a7bb3ef766570701ff392293bab25" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B7/sapmachine-jre-11.0.5-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "76a81cc23613f11f1f61f5a1a9db0e31422021075826c6e0b77ba2bc036be390" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B7/sapmachine-jre-11.0.5-ea.7_linux-x64_bin.tar.gz", + "checksum": "c4bca462a94f8d27470d4cc35fee47481572d28745f5927bf9bd8a0e6a9a8466" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B7/sapmachine-jre-11.0.5-ea.7_osx-x64_bin.tar.gz", + "checksum": "12b6fd5fac3b52e9de73c1dd4513f563fe117134e09a9518d4d9ac13330d716f" + }, + "dmg": { + "name": "sapmachine-jre-11.0.5-ea.7_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B7/sapmachine-jre-11.0.5-ea.7_osx-x64_bin.dmg", + "checksum": "74a9e5515601263c22934e2fa7259a489e764dae835fec946f5f86618b431f04" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.5-ea.7_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B7/sapmachine-jre-11.0.5-ea.7_windows-x64_bin.zip", + "checksum": "6c65ab6781d0c50ec91dae18c43b62b10df713fd47079ec660113b0566e00efb" + } + } + } + } + }, + "sapmachine-11.0.5+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.5%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B6/sapmachine-jdk-11.0.5-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "ce074af2639b8bcd2a97b31279926cf25f99f8621d1be42ae78f767684a4b02f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B6/sapmachine-jdk-11.0.5-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "3eca5e6ed36364017a750832b5a024edb49e011c98d0ecd99c8c4650ff3df88c" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B6/sapmachine-jdk-11.0.5-ea.6_linux-x64_bin.tar.gz", + "checksum": "23e3a71daa6d40cd88be5b4d0a6420bcaa76ca42cbd40b1722f3a365f225894e" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B6/sapmachine-jdk-11.0.5-ea.6_osx-x64_bin.tar.gz", + "checksum": "4a69a4696d4a3bfd65172671d13975510a53988ff72f0dbc3e2aa61821430ec3" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.5-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B6/sapmachine-jdk-11.0.5-ea.6_osx-x64_bin.dmg", + "checksum": "e7a0efb02bb1242bb489059dde73f134f2177e3e27e01743a2e30a030186b3d3" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.5-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B6/sapmachine-jdk-11.0.5-ea.6_windows-x64_bin.zip", + "checksum": "ad00ef067d6c329cac857d528b8ad9782ae3ad708835b0563092a26d5ed2e374" + }, + "msi": { + "name": "sapmachine-jdk-11.0.5-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B6/sapmachine-jdk-11.0.5-ea.6_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B6/sapmachine-jre-11.0.5-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "9fa9540a5949d98d5ad4a142b4dd727baf6b4e06268067ae969ba7e7f6d22d3d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B6/sapmachine-jre-11.0.5-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "66ddc2b28909dc17513120a811eda114d082f38fabd86ef1cd56b8dc93e2a5cd" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B6/sapmachine-jre-11.0.5-ea.6_linux-x64_bin.tar.gz", + "checksum": "6bec0e5fdab593f03b1c58ce77d08402ab2b93ee946c8c6ba3c88dc52402f00d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B6/sapmachine-jre-11.0.5-ea.6_osx-x64_bin.tar.gz", + "checksum": "1ff1a15fe32b8efdd10b5a9c6c82780365ffd112bfb0ddd9522554639d960271" + }, + "dmg": { + "name": "sapmachine-jre-11.0.5-ea.6_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B6/sapmachine-jre-11.0.5-ea.6_osx-x64_bin.dmg", + "checksum": "d5981d91ab28a66b86f8a955e4ce7dbd49a5c262d8dccb18f88e324755e6745e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.5-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B6/sapmachine-jre-11.0.5-ea.6_windows-x64_bin.zip", + "checksum": "6d0134085a6bc225098b9b42e1e4c2b57eda07dd4b3a79ab501c2ffd4dc8efdf" + } + } + } + } + }, + "sapmachine-11.0.5+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.5%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B5/sapmachine-jdk-11.0.5-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "a9f8441123e888446b69b13c83c42624d18cd06ff138369c3dbeaef9cbc6652d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B5/sapmachine-jdk-11.0.5-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "87586353b8f04bab465ee6bb9e9deef4c11f7812dd64b71d16cd1db6b7141eeb" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B5/sapmachine-jdk-11.0.5-ea.5_linux-x64_bin.tar.gz", + "checksum": "529510865c324eba6e2f9c5e6bfacfbdd40ab94da3e3b7a7d9ef9c65eee76d48" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B5/sapmachine-jdk-11.0.5-ea.5_osx-x64_bin.tar.gz", + "checksum": "d4127a8b9f01762b6d7f8a6803af858d42e3acf68c2ad0f499a7ff333e6f62f9" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.5-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B5/sapmachine-jdk-11.0.5-ea.5_osx-x64_bin.dmg", + "checksum": "a658f1a82a964f112f4e3a489966147c30258c743589dfab9ba7b951a75711cb" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.5-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B5/sapmachine-jdk-11.0.5-ea.5_windows-x64_bin.zip", + "checksum": "080fdc91040c9ca7b9ceaa02ee964fdfdad50d816a749fe2f34a853e6d9378b6" + }, + "msi": { + "name": "sapmachine-jdk-11.0.5-ea.5_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B5/sapmachine-jdk-11.0.5-ea.5_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B5/sapmachine-jre-11.0.5-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "e7207a1ad38d4b5e04272bd8a9e4d1346163d86e0a0f3b2a2fd2d47db0cb92d3" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B5/sapmachine-jre-11.0.5-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "897651014c47eb381d68d59549dfff3cd8d8a39452434bfa55ac6da30fe00e58" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B5/sapmachine-jre-11.0.5-ea.5_linux-x64_bin.tar.gz", + "checksum": "1376e76e9dd51445bfc997faef277abddfeaaf6ee499fd5ccd14b7d10da4956e" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B5/sapmachine-jre-11.0.5-ea.5_osx-x64_bin.tar.gz", + "checksum": "05efb505a2812da9d6486012b6cd8769940314910b278c5c2faf9cffa272bc15" + }, + "dmg": { + "name": "sapmachine-jre-11.0.5-ea.5_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B5/sapmachine-jre-11.0.5-ea.5_osx-x64_bin.dmg", + "checksum": "e9c38b9138ee876a5fc8d3a9685d4405937a6a9fe18be6196d75276f7419ad91" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.5-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B5/sapmachine-jre-11.0.5-ea.5_windows-x64_bin.zip", + "checksum": "b9fbb18bec04481d114d079d7a527dd8264ac140e4c466278068d098e3b3cadf" + } + } + } + } + }, + "sapmachine-11.0.5+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.5%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B4/sapmachine-jdk-11.0.5-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "1f6be3b2c73101f09d2901a9ba4bec8df771f8f42f1cb59456125c4448d563d7" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B4/sapmachine-jdk-11.0.5-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "d3bf2aceb3934c7dacb30fe59ad741d267fde8909a2485c471177af504445574" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B4/sapmachine-jdk-11.0.5-ea.4_linux-x64_bin.tar.gz", + "checksum": "32a7f945ca840e97bd6d9ecbb920f8d539bf94e17ccfd59c9a9fa7616407d7eb" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B4/sapmachine-jdk-11.0.5-ea.4_osx-x64_bin.tar.gz", + "checksum": "79c860ccc5a1217d850795dc59833ec96b699feb70e0523a6c99b44841176a96" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.5-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B4/sapmachine-jdk-11.0.5-ea.4_windows-x64_bin.zip", + "checksum": "eb646f8e8f91fede917f47118c718f550c3087af50c7578f74949e93f3487d8e" + }, + "msi": { + "name": "sapmachine-jdk-11.0.5-ea.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B4/sapmachine-jdk-11.0.5-ea.4_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B4/sapmachine-jre-11.0.5-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "d3235a952c8fed0eb551ace32e7b7a8b2d72eabdcf45cd4c8fcea15764a7c25a" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B4/sapmachine-jre-11.0.5-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "e95216ec9db922b678ce0b863bc409210fa683b7517d03ecc190ac1bc4701776" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B4/sapmachine-jre-11.0.5-ea.4_linux-x64_bin.tar.gz", + "checksum": "01a3d06f0b47e808bf76670e3464c4ea16b490007b74a3cffd5676239e05c706" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B4/sapmachine-jre-11.0.5-ea.4_osx-x64_bin.tar.gz", + "checksum": "ba63f7703f5d664e67109664eafa40deccb847c7a9be6af2d5eab3e3ef44423e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.5-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B4/sapmachine-jre-11.0.5-ea.4_windows-x64_bin.zip", + "checksum": "80f6c44ba648b1936439e68e9d419322222974e107ef4ecc6467000411d71bae" + } + } + } + } + }, + "sapmachine-11.0.5+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.5%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B3/sapmachine-jdk-11.0.5-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "c6a843342fdca79b3255ebe173b127b7a80bacecf1f97346ce06347caf225d8f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B3/sapmachine-jdk-11.0.5-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "d3c3e540d1f1f3cdb0ea79eacd6dcd4c5be77658168e88109091308c0dba0854" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B3/sapmachine-jdk-11.0.5-ea.3_linux-x64_bin.tar.gz", + "checksum": "836ce297e802e235748df12ac0d6d577083ad3b88f4cc0b3457fdd51e3243ff6" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B3/sapmachine-jdk-11.0.5-ea.3_osx-x64_bin.tar.gz", + "checksum": "0ac9c16cdbe708d464095bf835cfc7d331080790f1d60bb37350a7bf3380677f" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B3/sapmachine-jre-11.0.5-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "2e562b233e486ea06424d6b266b64a416f1851e949651bcb59bf2a0b8ea5c25b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B3/sapmachine-jre-11.0.5-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "d55c68b1486b37faaf28fa6de035d73aff2bb3bd9084076a62671fd32fb97602" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B3/sapmachine-jre-11.0.5-ea.3_linux-x64_bin.tar.gz", + "checksum": "cdc1936783903588ada7f8199aaa422befed75bb2ecb04342db44d657236c17b" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B3/sapmachine-jre-11.0.5-ea.3_osx-x64_bin.tar.gz", + "checksum": "0516c3b3f3de75c965dd2b1c452aac2a5d0879fc3f6268b18947ed72f43a8ba6" + } + } + } + } + }, + "sapmachine-11.0.5+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.5%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B2/sapmachine-jdk-11.0.5-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "54b694447b2a040f05bf3f8ebe7db90c359a9668be501e4b1e5d5e3c3e6bc0c9" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B2/sapmachine-jdk-11.0.5-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "7d593f27eb1903c958a0515141f98150b452b6cfc74ab0fa9c6bc7ee7a742e74" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B2/sapmachine-jdk-11.0.5-ea.2_linux-x64_bin.tar.gz", + "checksum": "4ce1ea371b5eb202dcebc946f2b161fe3b2cfb49ba5fb89023aa1668de77e888" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B2/sapmachine-jdk-11.0.5-ea.2_osx-x64_bin.tar.gz", + "checksum": "196f7e15edb2356391e964dd9837342f81f52289670c1fceace50aff8b076e0c" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.5-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B2/sapmachine-jdk-11.0.5-ea.2_windows-x64_bin.zip", + "checksum": "2844272aa553a7a8172530020a6373672e375525c4c5d309be93bdbdce34dbb0" + }, + "msi": { + "name": "sapmachine-jdk-11.0.5-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B2/sapmachine-jdk-11.0.5-ea.2_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B2/sapmachine-jre-11.0.5-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "63df834b89e5b0639479db307da18c7a11761f3f17e59e43fde6a1ba220eacb6" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B2/sapmachine-jre-11.0.5-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "5bfbfeb6978b5e7a78dae0701ccda80586c6f9c423ac00d3dd9316bad5bc622b" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B2/sapmachine-jre-11.0.5-ea.2_linux-x64_bin.tar.gz", + "checksum": "a6ee2bdd858cf0a95641f00f34b6e8fcac385bf08ae712a002210b3519f904c8" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B2/sapmachine-jre-11.0.5-ea.2_osx-x64_bin.tar.gz", + "checksum": "dba6ea4d71bdb490a91f5fa169fe8ce66ccb0eb6ded2a963b0b91fb2806ca0ea" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.5-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B2/sapmachine-jre-11.0.5-ea.2_windows-x64_bin.zip", + "checksum": "34735d8c53d646aa21b1c8d96c8f7f3c16dd4ed6d176001690c6c50b3fb34ffe" + } + } + } + } + }, + "sapmachine-11.0.5+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.5%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B1/sapmachine-jdk-11.0.5-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "dc1acc2ac07771125a4a26abd395dd1d384f27b1358ca60b0af5f22bbdf183ce" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B1/sapmachine-jdk-11.0.5-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "a0425c5894ebe3f7b4c2784533783eb0eb3fc62afb3269a29bf98dc86c38c3cd" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B1/sapmachine-jdk-11.0.5-ea.1_linux-x64_bin.tar.gz", + "checksum": "00bf49913b949303dbbf5cd1d48cbacfc3b1dae6c84397479c341916be941f1d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.5-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B1/sapmachine-jdk-11.0.5-ea.1_osx-x64_bin.tar.gz", + "checksum": "95967a5aefb967d098ffe07b1f05bed472a51d60f199a26c672b1c7895177610" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.5-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B1/sapmachine-jdk-11.0.5-ea.1_windows-x64_bin.zip", + "checksum": "3cf7c94c63df03dde2a3f4c7b9678e9c03dc6ccdc7ea1c204664668b24ccf298" + }, + "msi": { + "name": "sapmachine-jdk-11.0.5-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B1/sapmachine-jdk-11.0.5-ea.1_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B1/sapmachine-jre-11.0.5-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "a9509556f49f886a1441bd72400c1d8c3f4b4952b7dcc61ece5289e60d5edbe8" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B1/sapmachine-jre-11.0.5-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "592a7e20d4e71e67eae0abb47590771b2888b563b4e8a661e9535a5b0eb42362" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B1/sapmachine-jre-11.0.5-ea.1_linux-x64_bin.tar.gz", + "checksum": "fc89ecc7b662ab64527127b56c3c47530080cc25028eaa096d6dca3fc45c7708" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.5-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B1/sapmachine-jre-11.0.5-ea.1_osx-x64_bin.tar.gz", + "checksum": "56ee43c98e30998bb24dc165114da2046714f85fd6e9e145313d90e462d9fcf4" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.5-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.5%2B1/sapmachine-jre-11.0.5-ea.1_windows-x64_bin.zip", + "checksum": "f8f304ed208d972d2690abe6fda36adc837692afa2f9e79a8f88d1d7201ee9bd" + } + } + } + } + } + }, + "11.0.4": { + "sapmachine-11.0.4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.4", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4/sapmachine-jdk-11.0.4_linux-ppc64_bin.tar.gz", + "checksum": "2a59b5404ab750cb87dff2e9d870474700df882ad25c84cb27b36357427d90b4" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4/sapmachine-jdk-11.0.4_linux-ppc64le_bin.tar.gz", + "checksum": "362459afc09714235783e0d737177e40222579b7609ad5b921e7895f455330ac" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4/sapmachine-jdk-11.0.4_linux-x64_bin.tar.gz", + "checksum": "a572665d9dce3caf4c8f73ff954cd49bf66291d8cdd6a5d1caa64a575f869f12" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4/sapmachine-jdk-11.0.4_osx-x64_bin.tar.gz", + "checksum": "98afe558077e2057e40dfcdcb66e9be213494b32e2d306e74d0e949892b2e3c9" + }, + "dmg": { + "name": "sapmachine-jdk-11.0.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4/sapmachine-jdk-11.0.4_osx-x64_bin.dmg", + "checksum": "bfe87af4495b0b4a7209a694c36108d9591ebaf136cb45801dc06cdad296ad51" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4/sapmachine-jdk-11.0.4_windows-x64_bin.zip", + "checksum": "f05c34c08b0ef79755f84820184ab1f811b4f54be74cde8d5344cded6e596404" + }, + "msi": { + "name": "sapmachine-jdk-11.0.4_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4/sapmachine-jdk-11.0.4_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4/sapmachine-jre-11.0.4_linux-ppc64_bin.tar.gz", + "checksum": "92e5f133f4f8c68d6b4c01f09a747e4f7b20189bebad2567fc0736aab1004bc3" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4/sapmachine-jre-11.0.4_linux-ppc64le_bin.tar.gz", + "checksum": "c143b1da2517f567f5eedee820ba5213a2cc58407a89578812c7566d9c9a15dc" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4/sapmachine-jre-11.0.4_linux-x64_bin.tar.gz", + "checksum": "6916ce95f7cbd043d11f8c8f30d7979b7f3fe2a69b5d9b56c8a5242d38ab372d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4/sapmachine-jre-11.0.4_osx-x64_bin.tar.gz", + "checksum": "b03786ec1ad7eb70985b2089fd1bdd654d297f8a6b7fbedd9ee19bd2b1a4e14d" + }, + "dmg": { + "name": "sapmachine-jre-11.0.4_osx-x64_bin.dmg", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4/sapmachine-jre-11.0.4_osx-x64_bin.dmg", + "checksum": "7c6e4f9440f03601d728fc522729f5c8d9ee64ace62530742d5715d2e729e201" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4/sapmachine-jre-11.0.4_windows-x64_bin.zip", + "checksum": "648680332b2270f265f9d65ae5f5a0189e1c27a745a832c462ffb6990c2826d9" + } + } + } + } + }, + "sapmachine-11.0.4+11": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.4%2B11", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.11_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B11/sapmachine-jdk-11.0.4-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "d08467f321d118f6c764e55cd71fa0ad295e6672d8072461c612a70b7b616b5a" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.11_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B11/sapmachine-jdk-11.0.4-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "f6cb3960be59f79a6d7aa9115620e6c19aacb37af65c92563b65357e279fa2d1" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.11_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B11/sapmachine-jdk-11.0.4-ea.11_linux-x64_bin.tar.gz", + "checksum": "6201bf18c63d7f3bafec65decb8900c18507235eae6b1b96aeb6109786c385bf" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.11_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B11/sapmachine-jdk-11.0.4-ea.11_osx-x64_bin.tar.gz", + "checksum": "7fdf99bd359625a489aeba16798e507801675c2b53eb2d68abcf3d8597555b6e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.4-ea.11_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B11/sapmachine-jdk-11.0.4-ea.11_windows-x64_bin.zip", + "checksum": "30e3d935a2babd4383036bf6822ebb09678e210086405234dbe601a2a7856474" + }, + "msi": { + "name": "sapmachine-jdk-11.0.4-ea.11_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B11/sapmachine-jdk-11.0.4-ea.11_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.11_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B11/sapmachine-jre-11.0.4-ea.11_linux-ppc64_bin.tar.gz", + "checksum": "0b300a2221dcabaac74adff714fbc6a76acf2505fa2ff05e626d97b64aae91df" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.11_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B11/sapmachine-jre-11.0.4-ea.11_linux-ppc64le_bin.tar.gz", + "checksum": "07c42772a0723c0acd34de561421a32681ea2ec627ad055a23ccd43857ba92f4" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.11_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B11/sapmachine-jre-11.0.4-ea.11_linux-x64_bin.tar.gz", + "checksum": "5eaa575b1826e5424734f73b288f4d99f39979e0c9bea9c3ded3d5402ce7b1e0" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.11_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B11/sapmachine-jre-11.0.4-ea.11_osx-x64_bin.tar.gz", + "checksum": "6acfa38f2fd277d6d0c8a62af5f2ed600a31336b6945499778f96be813d26003" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.4-ea.11_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B11/sapmachine-jre-11.0.4-ea.11_windows-x64_bin.zip", + "checksum": "a5d1a36cc110e4401179921103be76ca842e2015c5cb9b8029a743998f138bb8" + } + } + } + } + }, + "sapmachine-11.0.4+10": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.4%2B10", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.10_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B10/sapmachine-jdk-11.0.4-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "689dee0d4b4b6c3c3833c80350a52d7013900d377bdbccab25c361558d598387" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.10_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B10/sapmachine-jdk-11.0.4-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "4e5d6ebfad24428b6e542f81d284b680e708d244d9f9eae9b4c9d0cb9553d2e8" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.10_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B10/sapmachine-jdk-11.0.4-ea.10_linux-x64_bin.tar.gz", + "checksum": "b843bda77d9cd85fd2cdb1f82cdfd805393ca57e58abdc128230d37e71c08113" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.10_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B10/sapmachine-jdk-11.0.4-ea.10_osx-x64_bin.tar.gz", + "checksum": "1ca6ad7987f38accd2d99784cf0ecd3e0aee559a52df31ec1a1cd89e217b8ef8" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.4-ea.10_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B10/sapmachine-jdk-11.0.4-ea.10_windows-x64_bin.zip", + "checksum": "9d4df69bd906cdd707299112e4b975ca97dcbe2983eee4ef787a912108819d64" + }, + "msi": { + "name": "sapmachine-jdk-11.0.4-ea.10_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B10/sapmachine-jdk-11.0.4-ea.10_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.10_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B10/sapmachine-jre-11.0.4-ea.10_linux-ppc64_bin.tar.gz", + "checksum": "8c298dbe1e4794d47465bda1ba69f279086629c6dada9f40e9fcacf20b7a4e5f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.10_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B10/sapmachine-jre-11.0.4-ea.10_linux-ppc64le_bin.tar.gz", + "checksum": "0c3d6d6dd12a213c8818b98a0ee7846a16e9eea02d8b3a80d62d2cf5ca76ca41" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.10_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B10/sapmachine-jre-11.0.4-ea.10_linux-x64_bin.tar.gz", + "checksum": "199fded1cbf6204e5ad7df406dba1633e8f5aed187e6dbe9aa14fa4f1e7229cb" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.10_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B10/sapmachine-jre-11.0.4-ea.10_osx-x64_bin.tar.gz", + "checksum": "9ad2fe87c7eae40732e2967d7440e30bc4f2d2373d763fe8874555cb27bedb61" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.4-ea.10_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B10/sapmachine-jre-11.0.4-ea.10_windows-x64_bin.zip", + "checksum": "4925cadcf1a8a9c4b846674a92fdd22ad7cae71184d03dc68d3e9b537cb3ebcb" + } + } + } + } + }, + "sapmachine-11.0.4+9": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.4%2B9", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B9/sapmachine-jdk-11.0.4-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "00be60046a29c9a3bce950634fa2affcdcd76d9b52ed5a10133b9bc61d59c3a8" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B9/sapmachine-jdk-11.0.4-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "2fd9d74b4c82190d28159f9cd106e644c1f2ee7f6ad8136213852b22a69e5ffd" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B9/sapmachine-jdk-11.0.4-ea.9_linux-x64_bin.tar.gz", + "checksum": "9759876625104b01af6deaaa30d7a5fe5065119ac3493e95d0cd071e6e24ae27" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B9/sapmachine-jdk-11.0.4-ea.9_osx-x64_bin.tar.gz", + "checksum": "1970ffa585f8cc0ed1e89f4b2fe08550015e8941e7f46ee9992b4ee6769ad74e" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.9_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B9/sapmachine-jre-11.0.4-ea.9_linux-ppc64_bin.tar.gz", + "checksum": "4278b0b8550ff2b1fec99164e27743403d294b97648a69757584f436cabef902" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.9_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B9/sapmachine-jre-11.0.4-ea.9_linux-ppc64le_bin.tar.gz", + "checksum": "88bc3a0e430fd91bf5b3d10913339deb2f61f96d4bdbba53d02b3ad41f3f45a8" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.9_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B9/sapmachine-jre-11.0.4-ea.9_linux-x64_bin.tar.gz", + "checksum": "d2c059874f4476db0ebb18eaf56577fc84a6ec922b3193397324dda20c3b656c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.9_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B9/sapmachine-jre-11.0.4-ea.9_osx-x64_bin.tar.gz", + "checksum": "a28dce9a7a7e8ae06b3d1ae435e85cfe5319dcf5b108c597a0a8f2f0291d9576" + } + } + } + } + }, + "sapmachine-11.0.4+8": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.4%2B8", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B8/sapmachine-jdk-11.0.4-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "2f82b701ccacea037d596752b877b59bf90b3497b42e0a2ddf2ada3df27d199a" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B8/sapmachine-jdk-11.0.4-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "68857c2189946a202eabd25bd88230bf440734a6fa5c5219214d00fe7878dd10" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B8/sapmachine-jdk-11.0.4-ea.8_linux-x64_bin.tar.gz", + "checksum": "604d1b51e40f100f64ef4082b1a923d7bd75a716d16f9c0d7e7015f59d676dbc" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B8/sapmachine-jdk-11.0.4-ea.8_osx-x64_bin.tar.gz", + "checksum": "1c9cb298d052f9d014b5fb0804145ea2f52ecd7c926ae7fb6614cdde7449c218" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.4-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B8/sapmachine-jdk-11.0.4-ea.8_windows-x64_bin.zip", + "checksum": "f17ab81528c7ded604d7b7148fd27fc801149359c0f26d4b8ec20f11203deaac" + }, + "msi": { + "name": "sapmachine-jdk-11.0.4-ea.8_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B8/sapmachine-jdk-11.0.4-ea.8_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.8_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B8/sapmachine-jre-11.0.4-ea.8_linux-ppc64_bin.tar.gz", + "checksum": "1b47396a43ef2fab15187330e899534c53aae5eb9f3c450f17a03e22bd5c2f9b" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.8_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B8/sapmachine-jre-11.0.4-ea.8_linux-ppc64le_bin.tar.gz", + "checksum": "a6e0eea7b1a50978a2cd5302857c86f1d1d624ed5015470359ba55c8124cf926" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.8_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B8/sapmachine-jre-11.0.4-ea.8_linux-x64_bin.tar.gz", + "checksum": "4932bdcd598ed978bb2aa0e26d1385aa809611ccfeee8ab94002b0c6df67f6bb" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.8_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B8/sapmachine-jre-11.0.4-ea.8_osx-x64_bin.tar.gz", + "checksum": "a6733055fbaf4ab566ed454fdad8d6626ae41b45a579145bee6bc7353408d627" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.4-ea.8_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B8/sapmachine-jre-11.0.4-ea.8_windows-x64_bin.zip", + "checksum": "ffcbe7cc729a20b5df922dc7fb8153c64b73c34522abaa9a51dacd4bbeff1970" + } + } + } + } + }, + "sapmachine-11.0.4+7": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.4%2B7", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B7/sapmachine-jdk-11.0.4-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "6a2768191b19831d410f89ec738ddc448aa0b717a9b9c7619576355f2480c2bb" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B7/sapmachine-jdk-11.0.4-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "f783247e750692ebd0e492980ccb8780e87f778280d1f65b1d9cf044177d6eab" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B7/sapmachine-jdk-11.0.4-ea.7_linux-x64_bin.tar.gz", + "checksum": "623cd7a2f2a900934952f66af28aff447f2712dbb7a686b2778450010f4c57df" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B7/sapmachine-jdk-11.0.4-ea.7_osx-x64_bin.tar.gz", + "checksum": "50c30267ea74cb48e353da96e510306862f5fe50337b7869e3c3d4e6b0ceb55c" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.7_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B7/sapmachine-jre-11.0.4-ea.7_linux-ppc64_bin.tar.gz", + "checksum": "63bc6bb63132826c7a0ab764b81b85bc02c6d224b7b2c73078ebcfb04964e5a0" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.7_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B7/sapmachine-jre-11.0.4-ea.7_linux-ppc64le_bin.tar.gz", + "checksum": "fe6196cf4623ca2705bc142e9c62ac19776739234570130e94cf1caba4db72f3" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.7_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B7/sapmachine-jre-11.0.4-ea.7_linux-x64_bin.tar.gz", + "checksum": "42b8d27e1962e4e77d6c4a956aa6679ca5a3a223d2a6deccfb446cfb593835f8" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.7_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B7/sapmachine-jre-11.0.4-ea.7_osx-x64_bin.tar.gz", + "checksum": "8d2c84bc34542f4674a3c86b10b9e11b43587afb73baf460fb8bde52c78c7d5c" + } + } + } + } + }, + "sapmachine-11.0.4+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.4%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B6/sapmachine-jdk-11.0.4-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "9360e296e6fec90c4622fd397859eed6cd720a5655b7776d24c047c5456df7b0" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B6/sapmachine-jdk-11.0.4-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "92d1685a118be94889a7999a2abb5af8b048fc6bad0f700d438b75dda503be1e" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B6/sapmachine-jdk-11.0.4-ea.6_linux-x64_bin.tar.gz", + "checksum": "19bf3cd5f5782c6fa72526c32b4b1c4227b7a6159db19d7b0e6b7de9f962f16d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B6/sapmachine-jdk-11.0.4-ea.6_osx-x64_bin.tar.gz", + "checksum": "87f25d01627edfc156c4e77a0bb570ecab0555d33cb05b03c3be9b13bdf503a0" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.4-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B6/sapmachine-jdk-11.0.4-ea.6_windows-x64_bin.zip", + "checksum": "e3a2dc9a8d22b10bd02d0b48108e7504b23713607c01c374409caa5275bd252b" + }, + "msi": { + "name": "sapmachine-jdk-11.0.4-ea.6_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B6/sapmachine-jdk-11.0.4-ea.6_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B6/sapmachine-jre-11.0.4-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "2fb163d10960ed96eb0ae1d9c3d9e6d6d0645f21a262af96faba13b9633bb456" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B6/sapmachine-jre-11.0.4-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "81b5d91a4205f8de0ea6dfb51f943a25b28f45fac67d2e5de01927fd6e9892bd" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B6/sapmachine-jre-11.0.4-ea.6_linux-x64_bin.tar.gz", + "checksum": "77af284eb2ee665c46d624b494810d2b112ad398aa29dfa21c13660a32fafd6c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B6/sapmachine-jre-11.0.4-ea.6_osx-x64_bin.tar.gz", + "checksum": "edf8edb51a9eac1eeede38d70175bedabab016f0380790803181f187a33b78e7" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.4-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B6/sapmachine-jre-11.0.4-ea.6_windows-x64_bin.zip", + "checksum": "0839e589d87d89f465108b25a4c5f316b5082caca6e8c1be75558e92e6e0820f" + } + } + } + } + }, + "sapmachine-11.0.4+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.4%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B5/sapmachine-jdk-11.0.4-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "184f56d8e3b1a47d895648e96805663091e3789fb0658c09e6b73ca01ac95c09" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B5/sapmachine-jdk-11.0.4-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "b93e164986a668b8c5862f66a9c867f90bdacab1e309c4f1ca54ab0bc77eaaf5" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B5/sapmachine-jdk-11.0.4-ea.5_linux-x64_bin.tar.gz", + "checksum": "f5a978557cfdbc4511a51c9cff9303193b72801e07d3047d970553ef7bea9ba1" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B5/sapmachine-jdk-11.0.4-ea.5_osx-x64_bin.tar.gz", + "checksum": "bb2ccb6f286d525110a341a4956f3e28b8059d442c8c87b96a7c7b6a36db0ee0" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B5/sapmachine-jre-11.0.4-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "eb88c5e88165aebecc31717dadef260fc8e012b0d615dbd922de85252815cd37" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B5/sapmachine-jre-11.0.4-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "7a09494d6d27dd08e5a2e58fb45e34779f9e587dfcd5a40c09219fb9701ff5da" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B5/sapmachine-jre-11.0.4-ea.5_linux-x64_bin.tar.gz", + "checksum": "59e7294eec8b886d1e2267a5d0f2772a16a61ece94ae687c968f4fbd82ed8e3f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B5/sapmachine-jre-11.0.4-ea.5_osx-x64_bin.tar.gz", + "checksum": "db0514a11c289431462ed35274f42a911eca67f4cd4b60ff3dab9d4a8481584c" + } + } + } + } + }, + "sapmachine-11.0.4+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.4%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B4/sapmachine-jdk-11.0.4-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "18e72d0cc702429c59662e1c42c61c190abdda7fba5c27cf58dd26c3ba0737ee" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B4/sapmachine-jdk-11.0.4-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "577351c975bdd453ed2a763b3419a90fa6960b5c2768faf075a0e9b3665a1fe1" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B4/sapmachine-jdk-11.0.4-ea.4_linux-x64_bin.tar.gz", + "checksum": "1e3c926467e047cb14a61fc007653db2dc64f025a8fc5f7904680b5797c6673d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B4/sapmachine-jdk-11.0.4-ea.4_osx-x64_bin.tar.gz", + "checksum": "85f26dd37ec34a05aa73ae3c1ee345665bcefd90d503138d5ef67472a14104f9" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B4/sapmachine-jre-11.0.4-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "513724917728895f5ef1bb182807c817851477280e3447f14e123f3f6d85199f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B4/sapmachine-jre-11.0.4-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "0ff1e393ed067524e05ca33f057b91a3d08084f99edb5b4e1ea5758b4129866a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B4/sapmachine-jre-11.0.4-ea.4_linux-x64_bin.tar.gz", + "checksum": "da5f9dcdf09bf391efd38576e7310cb146a9ee13b34f4b2a7f3a5a4f151ba27e" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B4/sapmachine-jre-11.0.4-ea.4_osx-x64_bin.tar.gz", + "checksum": "84cc02ac31adc30ccfa31a624b56596f1e0d27f5a9b3a4c44dd2192e04801e06" + } + } + } + } + }, + "sapmachine-11.0.4+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.4%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B3/sapmachine-jdk-11.0.4-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "8c8872dd1cca85d08c220adacc1bc9fce34332d59071ea5f73454eda2af3acec" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B3/sapmachine-jdk-11.0.4-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "fe6da44b19e99291c08a0d0a4634aed4c7562ee51898a130b632db7d915545d9" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B3/sapmachine-jdk-11.0.4-ea.3_linux-x64_bin.tar.gz", + "checksum": "6efb23608fce887e5cbfe4b1795f33612e18bce268bd5cdba60d160b63e4d363" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B3/sapmachine-jdk-11.0.4-ea.3_osx-x64_bin.tar.gz", + "checksum": "888a806b5479a6e853411d6832f003ceed4b7a044eee232ff894aa21d813540a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.4-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B3/sapmachine-jdk-11.0.4-ea.3_windows-x64_bin.zip", + "checksum": "67103ee5fd031fcf5a74799c4e179a8001c5e4ffe6900b2368e57531bb3c4273" + }, + "msi": { + "name": "sapmachine-jdk-11.0.4-ea.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B3/sapmachine-jdk-11.0.4-ea.3_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B3/sapmachine-jre-11.0.4-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "c55dff14b549241e53171866137d155b4658c6661b340d940d3aa8cb2a067cb3" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B3/sapmachine-jre-11.0.4-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "bca6280ef7336d24f3385a1a7a1c0e17105a16aba41479011db376a81b06c32a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B3/sapmachine-jre-11.0.4-ea.3_linux-x64_bin.tar.gz", + "checksum": "8e045d346aab264e2f2cf0313364f950fbebcc547dd10c46b37c9b50b115ffcd" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B3/sapmachine-jre-11.0.4-ea.3_osx-x64_bin.tar.gz", + "checksum": "47ebd71462f4efe0dd040423b1e72aacf6a85e26f4a7c6be4535effbee6789c9" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.4-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B3/sapmachine-jre-11.0.4-ea.3_windows-x64_bin.zip", + "checksum": "6d93a6c662d2dff848a9b6cc92aeeffc83121bef70085ced078e8db4876ae398" + } + } + } + } + }, + "sapmachine-11.0.4+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.4%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B2/sapmachine-jdk-11.0.4-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "33e5ef5c0b90291a87f91c1e23a272900cdb98a145756e58987b3b5ca3813387" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B2/sapmachine-jdk-11.0.4-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "826be61c30dd6eeff4aefe5579da12ce91b1421d64ce58191407ee77982e0ea3" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B2/sapmachine-jdk-11.0.4-ea.2_linux-x64_bin.tar.gz", + "checksum": "be547a0267c6d1e7becf42f9f585875d5cad7276c15f4a3975eb01f481fc74b7" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B2/sapmachine-jdk-11.0.4-ea.2_osx-x64_bin.tar.gz", + "checksum": "bf6bc12790fca78f7f0085fefbb715e8db3ddfb5236a78e8bfb366f9e8209d1d" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.4-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B2/sapmachine-jdk-11.0.4-ea.2_windows-x64_bin.zip", + "checksum": "0f6c2f6ef71ed60ea8b895009642a7be2befa8bfc25b0026bd612c7c00db9abb" + }, + "msi": { + "name": "sapmachine-jdk-11.0.4-ea.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B2/sapmachine-jdk-11.0.4-ea.2_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B2/sapmachine-jre-11.0.4-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "691709ea9b1c3dc81aaca6cb20a8436f0b87865a21772935dd65d523531354e1" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B2/sapmachine-jre-11.0.4-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "2ac99149fe2714141ce0ceeb937f05e13f15f16677c33cda712861745b089936" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B2/sapmachine-jre-11.0.4-ea.2_linux-x64_bin.tar.gz", + "checksum": "f8a97574e20341f1ee86dfc4b14e872409a6c0673fc5dcbb005c6d664439b5dc" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B2/sapmachine-jre-11.0.4-ea.2_osx-x64_bin.tar.gz", + "checksum": "6f080c56d9be3b35fc136861f3d15caecbaa3a468a93b23108b443f75c8200d0" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.4-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B2/sapmachine-jre-11.0.4-ea.2_windows-x64_bin.zip", + "checksum": "8dc4877971cc2272795af918f825c8889cc2e4d94df24390344780aad28b9634" + } + } + } + } + }, + "sapmachine-11.0.4+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.4%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B1/sapmachine-jdk-11.0.4-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "6b35eff7702dc67c39b0217567795b0e963e41cd4a1d129c2697d2b1c935e07f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B1/sapmachine-jdk-11.0.4-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "05433b52f13eabb69d7168c904c6c7036092a7323166ee1694e9ff6fa1a7374f" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B1/sapmachine-jdk-11.0.4-ea.1_linux-x64_bin.tar.gz", + "checksum": "6e6f30e539a1befdcd2358373062519c194a58b0e04332bbcf5ff5de4170c8c3" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.4-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B1/sapmachine-jdk-11.0.4-ea.1_osx-x64_bin.tar.gz", + "checksum": "6fc6e31b9b83eefd880b238ad5bbc6bd96f095d3da5584dd7fb0dc8e040e438a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.4-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B1/sapmachine-jdk-11.0.4-ea.1_windows-x64_bin.zip", + "checksum": "bf87d856eb9eb1c4af3fcb3ae7191a5df0db0a490ffe9e17e5335c3744e6942d" + }, + "msi": { + "name": "sapmachine-jdk-11.0.4-ea.1_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B1/sapmachine-jdk-11.0.4-ea.1_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B1/sapmachine-jre-11.0.4-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "ccb3b2c1db9e73229786e610cfc3fddd9d2ae4ddd04579855d1485a93b0bb1c5" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B1/sapmachine-jre-11.0.4-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "e988aa678df401c1260b413618027523f155571c61f3722f2eb2e8c3f91cf874" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B1/sapmachine-jre-11.0.4-ea.1_linux-x64_bin.tar.gz", + "checksum": "d4dc18e89ef42f806e2064464628e10453e073b81589e2657b96b39006cdc75c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.4-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B1/sapmachine-jre-11.0.4-ea.1_osx-x64_bin.tar.gz", + "checksum": "c6db9234f1e548dcbd065fd0b83e00c2fe7708efc1753e9de5c2bac2b4b422c4" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.4-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.4%2B1/sapmachine-jre-11.0.4-ea.1_windows-x64_bin.zip", + "checksum": "8a35014247ebb2cc9ab3dc46bb3a5e0c9a99e9413bbf4321311821f6362d98c9" + } + } + } + } + } + }, + "11.0.3": { + "sapmachine-11.0.3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.3", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3/sapmachine-jdk-11.0.3_linux-ppc64_bin.tar.gz", + "checksum": "49d202808c2be10a1e679f1c398c439f6a0f72bca5ee8aaa48b2111322a1d05e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3/sapmachine-jdk-11.0.3_linux-ppc64le_bin.tar.gz", + "checksum": "5e3dddf2e8d617511f84c14a1c32db9d02f06811aec6ea71566dc895d1f8644a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3/sapmachine-jdk-11.0.3_linux-x64_bin.tar.gz", + "checksum": "ad3d4b65214734e324bfdc50392c1092d2f6bfebef12067604066ba3a3d50367" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3/sapmachine-jdk-11.0.3_osx-x64_bin.tar.gz", + "checksum": "c051f653e2a14b1e152ff20327200b4907fd8c9fda180ab7f2deb0a6b5242400" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3/sapmachine-jdk-11.0.3_windows-x64_bin.zip", + "checksum": "dd1299a577fd8f61003eb20baf999a3135ba968f0620f37a477f96afc2c1fc3b" + }, + "msi": { + "name": "sapmachine-jdk-11.0.3_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3/sapmachine-jdk-11.0.3_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3/sapmachine-jre-11.0.3_linux-ppc64_bin.tar.gz", + "checksum": "fb614843ccb2170884b5dfb5f4e494fce40cbfd7da938cc6773d1d8b904b0571" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3/sapmachine-jre-11.0.3_linux-ppc64le_bin.tar.gz", + "checksum": "84c405a25dccfd501b67b5ff95e52209aaa5cc00cd6751bd5f7b990c332a5d3a" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3/sapmachine-jre-11.0.3_linux-x64_bin.tar.gz", + "checksum": "c5202447e2afb3afae0478596235bc66b75ed711d42dbee115e1c7dbdc3b1ab5" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3/sapmachine-jre-11.0.3_osx-x64_bin.tar.gz", + "checksum": "63532b2c58d4b599d1f6edf92193572844f8fbe3449b50fad56c7636061f7aa1" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3/sapmachine-jre-11.0.3_windows-x64_bin.zip", + "checksum": "4fe9b38a55d1f30fe222230ffb3ed95dff91cea30f814aeda57f013a9d000917" + } + } + } + } + }, + "sapmachine-11.0.3+6": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.3%2B6", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B6/sapmachine-jdk-11.0.3-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "dbd8489a149971289fb6f01f7e323583d36024043e1c153a7691b1b3b8935416" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B6/sapmachine-jdk-11.0.3-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "8dacebbd9408d9a271345e81056cfd1eead526fb59585d0d8f4db681224c25cf" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B6/sapmachine-jdk-11.0.3-ea.6_linux-x64_bin.tar.gz", + "checksum": "cb174eb3fce95cace727c9859e81c8117fa355784cc145b6f59f13eaacd8f517" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B6/sapmachine-jdk-11.0.3-ea.6_osx-x64_bin.tar.gz", + "checksum": "1760215a7b9dfb23f9f06b6d0f7079e5941cb611467a72eb8ce89ba97a71d3b3" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.3-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B6/sapmachine-jdk-11.0.3-ea.6_windows-x64_bin.zip", + "checksum": "92afb65b08425f772b7b2f00d40833c253a3bc01ad0a9da956ddc549c9e4ad05" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.6_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B6/sapmachine-jre-11.0.3-ea.6_linux-ppc64_bin.tar.gz", + "checksum": "8b26ae99ab186457e2bc104c8fd8d40b2140fe03af8c0c163a629cace12e7502" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.6_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B6/sapmachine-jre-11.0.3-ea.6_linux-ppc64le_bin.tar.gz", + "checksum": "5555d57379c979fb162ee48864c6738b1cfc52ae9b61e54609dc33ccb96e70cb" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.6_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B6/sapmachine-jre-11.0.3-ea.6_linux-x64_bin.tar.gz", + "checksum": "5680215ffd1ea3e318153174dd3e6e1591824b4da1e8d65f2fda498cb9422798" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.6_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B6/sapmachine-jre-11.0.3-ea.6_osx-x64_bin.tar.gz", + "checksum": "a3b83a4c73f15ea24c58b15fb63b03de06598ea183f0bd49bd1f19f574609c87" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.3-ea.6_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B6/sapmachine-jre-11.0.3-ea.6_windows-x64_bin.zip", + "checksum": "1b97c2c55875281e4ec69f479fdb9ebd0582011faa962a688ad846fda1c3bebd" + } + } + } + } + }, + "sapmachine-11.0.3+5": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.3%2B5", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B5/sapmachine-jdk-11.0.3-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "d14844373735144b6f3a326a9a60b8a711675aed8df7d2ab9e0fa1617e9ea10d" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B5/sapmachine-jdk-11.0.3-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "b04a2d1dcdf2b4c2fc1aa9c89fc6454d5b11762f8133ce64a2aebe68a842ceee" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B5/sapmachine-jdk-11.0.3-ea.5_linux-x64_bin.tar.gz", + "checksum": "8a61887e4c1a98527a9ae259cfdfcd907342f6cdf1bdc183795cc8475fc2f7a1" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B5/sapmachine-jdk-11.0.3-ea.5_osx-x64_bin.tar.gz", + "checksum": "0eb1c9dfcb58b247dbba04da96981550fb465f26d64a3c8ff0ae547a918f7366" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.3-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B5/sapmachine-jdk-11.0.3-ea.5_windows-x64_bin.zip", + "checksum": "89aec537f615ef547e810eb92abb783aae0f87e53bb1a9884199f33f9f09f37f" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.5_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B5/sapmachine-jre-11.0.3-ea.5_linux-ppc64_bin.tar.gz", + "checksum": "eaf49da63bc7865e22aab5b5bdcd57f3ba012c07e05cf5ec4e8920d39c7a4305" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.5_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B5/sapmachine-jre-11.0.3-ea.5_linux-ppc64le_bin.tar.gz", + "checksum": "036cffef76002f747f7c0e2f360ec6c40b70d3901813a51c726a5fb8fdf3d8de" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.5_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B5/sapmachine-jre-11.0.3-ea.5_linux-x64_bin.tar.gz", + "checksum": "c1d9c30930903bb978ed09ab3ef3f432130e45041c9a6228705139be7ee69241" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.5_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B5/sapmachine-jre-11.0.3-ea.5_osx-x64_bin.tar.gz", + "checksum": "8a546096dd654170b84c3cd243094914eee2ad8a405726ae53b26782bd330a1f" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.3-ea.5_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B5/sapmachine-jre-11.0.3-ea.5_windows-x64_bin.zip", + "checksum": "77d9cf912e8abce433e575b1c21e8888b260c99765a98d1946bfa0ca587ef8bc" + } + } + } + } + }, + "sapmachine-11.0.3+4": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.3%2B4", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B4/sapmachine-jdk-11.0.3-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "91b4f6df50b1219df779eb501be569ccd371ee68f7c85e6bb6b2755a52a48e25" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B4/sapmachine-jdk-11.0.3-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "12a8032d7724970e322b888df7a1ef094580a74b3c507b7b8fb47324e4c6015d" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B4/sapmachine-jdk-11.0.3-ea.4_linux-x64_bin.tar.gz", + "checksum": "3d6251bf5abf4fd6890b4e075f1880bcce5a5d19904ff88cb652269ec92cb40d" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B4/sapmachine-jdk-11.0.3-ea.4_osx-x64_bin.tar.gz", + "checksum": "fbe0a6fc874e2e6a8d6f5e8771fd7a91a1fdd90affd3cf9902d5de8e0a04a885" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.3-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B4/sapmachine-jdk-11.0.3-ea.4_windows-x64_bin.zip", + "checksum": "9a311574baa2aeeaa03add072c1e7e2064a96c3a6086fcf304572f9475a549b2" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.4_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B4/sapmachine-jre-11.0.3-ea.4_linux-ppc64_bin.tar.gz", + "checksum": "f7d6ef6b16807df41466ab0fe4ba65b2c34086bd922794e4f6c9f7bfa3c885d1" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.4_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B4/sapmachine-jre-11.0.3-ea.4_linux-ppc64le_bin.tar.gz", + "checksum": "5ccead4388ad56b3cdbfc2d5d908266bc3d236321a7d35c7520bb6da7365d9d0" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.4_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B4/sapmachine-jre-11.0.3-ea.4_linux-x64_bin.tar.gz", + "checksum": "af7bf7be1b0682d170f4f3a277ea58a723de4fc555fa19b80c8a0a21a8675e3c" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.4_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B4/sapmachine-jre-11.0.3-ea.4_osx-x64_bin.tar.gz", + "checksum": "fc4fd020dc6901511db6ef21081b531da0afd4d2b59426548886f8256d981958" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.3-ea.4_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B4/sapmachine-jre-11.0.3-ea.4_windows-x64_bin.zip", + "checksum": "81e29ab274d5f7080c7cfef4a39a2fb1c83f48095646663d2c301eb298bcaa0b" + } + } + } + } + }, + "sapmachine-11.0.3+3": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.3%2B3", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B3/sapmachine-jdk-11.0.3-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "5e96b0b8fc9e1cae5b4b2a8fa10b3c479fd572bec6098505ce4cbce884937341" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B3/sapmachine-jdk-11.0.3-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "63ae0d1dbd9caae376d7f885f321422ede6004bc73ee20dcbf53bceba9205e7f" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B3/sapmachine-jdk-11.0.3-ea.3_linux-x64_bin.tar.gz", + "checksum": "2565bb2b4216634b6849b2603f657ff73c771fecfa7b8bc8be26c30cd06826b5" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B3/sapmachine-jdk-11.0.3-ea.3_osx-x64_bin.tar.gz", + "checksum": "070daa430002eb929affaa5965d21473f07c12935aff0dd49f7759122e1f124e" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.3-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B3/sapmachine-jdk-11.0.3-ea.3_windows-x64_bin.zip", + "checksum": "d918192a9a412f3558011fc312fb6269bc99b11cba6986df982647b37c01a40f" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.3_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B3/sapmachine-jre-11.0.3-ea.3_linux-ppc64_bin.tar.gz", + "checksum": "01b517c1a78a2ad3bdcc9bbebcb251f5377ed10eab16c368f07a5e91eff3282c" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.3_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B3/sapmachine-jre-11.0.3-ea.3_linux-ppc64le_bin.tar.gz", + "checksum": "1fbf6f29e0f0e1787438cf8496e3ab410d551fc2ee0670736ee4e1c716c9a522" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.3_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B3/sapmachine-jre-11.0.3-ea.3_linux-x64_bin.tar.gz", + "checksum": "a50f23a7062ec679201a0622ac7b5df0f4e38814f255c76fc0fe2017506b6a47" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.3_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B3/sapmachine-jre-11.0.3-ea.3_osx-x64_bin.tar.gz", + "checksum": "39b609efe724429971032804655083d03be4a50787a875e86a40e694656dd46b" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.3-ea.3_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B3/sapmachine-jre-11.0.3-ea.3_windows-x64_bin.zip", + "checksum": "0a92d86054f5358019764bd39bc3eb1827594c56aa240841e7614dd12cfe4fb5" + } + } + } + } + }, + "sapmachine-11.0.3+2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.3%2B2", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B2/sapmachine-jdk-11.0.3-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "aa12b9e0e0d1e31f84715b8771364e1980ef347d30453b4b09891ddd0142ee81" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B2/sapmachine-jdk-11.0.3-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "ee80fff6cc972c8eeffc5cdad5241074ad986cf61852e26e9bab7fbb67f2a10b" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B2/sapmachine-jdk-11.0.3-ea.2_linux-x64_bin.tar.gz", + "checksum": "7b55addf6eb9268b53756ef1927662f02d630f70b8acee95948a652d7ead7260" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B2/sapmachine-jdk-11.0.3-ea.2_osx-x64_bin.tar.gz", + "checksum": "107987fbb2d129e4b0df579ef118c093c9ec2fc027a367ffa4d9ba3572aa3bd3" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.3-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B2/sapmachine-jdk-11.0.3-ea.2_windows-x64_bin.zip", + "checksum": "e155238daedf28a0a5f7847599f23d6ea18ee18090368b5e82d41220c7807577" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B2/sapmachine-jre-11.0.3-ea.2_linux-ppc64_bin.tar.gz", + "checksum": "c54eefff7e6eb6a185bd1ae191a8efa02870b612ecdfe42e6974d4a4e4d60b33" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B2/sapmachine-jre-11.0.3-ea.2_linux-ppc64le_bin.tar.gz", + "checksum": "c414775f2fc0ae9aed3581d3ba8fd1d9e1be285d29fe66eccbfcba0f706f4cfd" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B2/sapmachine-jre-11.0.3-ea.2_linux-x64_bin.tar.gz", + "checksum": "027629a2849f233341706cf8826911f64c5325b0094dacf4a121226d8c8c12f0" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B2/sapmachine-jre-11.0.3-ea.2_osx-x64_bin.tar.gz", + "checksum": "255b01b2e899e8245bada3dd62ef8a22c46774d9842006266301fb4591e37b57" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.3-ea.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B2/sapmachine-jre-11.0.3-ea.2_windows-x64_bin.zip", + "checksum": "9bdd6a31d9fd81c5d23e0596a2e564001f0a32f2447d6c5a1050158744c70521" + } + } + } + } + }, + "sapmachine-11.0.3+1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.3%2B1", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B1/sapmachine-jdk-11.0.3-ea.1_linux-ppc64_bin.tar.gz", + "checksum": "78ccd06bf71b0c717e36deddf68e6c31907f6dec63b37f6864ce03af3c03dfd5" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B1/sapmachine-jdk-11.0.3-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "bd695e09c4b3d287b23b03d9dfa3b5eb4ee2284ea6ecaa0ae1e8095b1aaff271" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B1/sapmachine-jdk-11.0.3-ea.1_linux-x64_bin.tar.gz", + "checksum": "f84b47bfe521dd494bb58bbe4b83f9d0b6bf5d3b598d4b42c920e267662eec82" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.3-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B1/sapmachine-jdk-11.0.3-ea.1_osx-x64_bin.tar.gz", + "checksum": "5131e625b6829ba478c330e463081c3a200ea522ecd7763e0a35f997c1a5d204" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.3-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B1/sapmachine-jdk-11.0.3-ea.1_windows-x64_bin.zip", + "checksum": "fba93887e19f8a835eb374e0961a4886cd2b220f56a7ccfcbc5d001494fd30cc" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.1_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B1/sapmachine-jre-11.0.3-ea.1_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.1_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B1/sapmachine-jre-11.0.3-ea.1_linux-ppc64le_bin.tar.gz", + "checksum": "efc0e0d18f248d2714f6fc9fb68901be75970ca889c36f99687b9bbbf0c2db49" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.1_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B1/sapmachine-jre-11.0.3-ea.1_linux-x64_bin.tar.gz", + "checksum": "1c184d588bffb5874c63ba2415e3603e07d0f1ac7ab966a8b304271394c787f1" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.3-ea.1_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B1/sapmachine-jre-11.0.3-ea.1_osx-x64_bin.tar.gz", + "checksum": "d148f60a52783fd8245054bcf630c73d7fc9933fce4b85134a65dbb1a752c286" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.3-ea.1_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.3%2B1/sapmachine-jre-11.0.3-ea.1_windows-x64_bin.zip", + "checksum": "01a3b5d1a4761bb1beaa9d6adb3e27e02a0a538d546060a5fa36137ad6a2d2b7" + } + } + } + } + } + }, + "11.0.2": { + "sapmachine-11.0.2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.2", + "ea": "false", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.2/sapmachine-jdk-11.0.2_linux-ppc64_bin.tar.gz", + "checksum": "798666badc1302f9897947e6ce2a227b933ebe62a1ddf048e0fd5f7254e0f01e" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.2/sapmachine-jdk-11.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "e98c40d4e7a83b1d3420509034e3c3148d10ff5230c46e5b8cfea3ba04edeefe" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.2/sapmachine-jdk-11.0.2_linux-x64_bin.tar.gz", + "checksum": "fb5629021615651c8e3f2179d5d33ceaa140beace9ce7184d00a82d953c6687e" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.2/sapmachine-jdk-11.0.2_osx-x64_bin.tar.gz", + "checksum": "c17526aca0891ab291916faeca7a6cdcef77d63de8acb8362c1af0eb95a9c680" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.2/sapmachine-jdk-11.0.2_windows-x64_bin.zip", + "checksum": "9cd3567fa6d61d46d8f83ba637feef4fe3deca7d17e0932c7f0c59128477f1d3" + }, + "msi": { + "name": "sapmachine-jdk-11.0.2_windows-x64_bin.msi", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.2/sapmachine-jdk-11.0.2_windows-x64_bin.msi" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.2_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.2/sapmachine-jre-11.0.2_linux-ppc64_bin.tar.gz", + "checksum": "4bf2a5db3266c16c71fd29eaedc694559a8dc63a20998a1f0b6444f7d477fc4f" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.2_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.2/sapmachine-jre-11.0.2_linux-ppc64le_bin.tar.gz", + "checksum": "d41d780bed11f60bed4c8665e4f1a36d7d17d3ce1215d1f4b6df93a311e3ac9f" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.2_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.2/sapmachine-jre-11.0.2_linux-x64_bin.tar.gz", + "checksum": "a0323ec152fd600c1753092bc690ef39966c43d798f9db4ceda144380721e651" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.2_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.2/sapmachine-jre-11.0.2_osx-x64_bin.tar.gz", + "checksum": "a2ccbe4a105933a80529c2d713a0b8267ae63b0019b692208cee64171debcf43" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.2_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.2/sapmachine-jre-11.0.2_windows-x64_bin.zip", + "checksum": "1032ff2dabd8c93d379548984b6bd56571aa2654e586b49eec4e3f0e83cbdeda" + } + } + } + } + } + }, + "11.0.1": { + "sapmachine-11.0.1+13-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11.0.1%2B13-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.1.13_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.1%2B13-0/sapmachine-jdk-11.0.1.13_linux-ppc64_bin.tar.gz", + "checksum": "3fc44392a634fae1841409f861e065bcb3a78e260f95ce2d50bf366ad4fc2296" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.1.13_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.1%2B13-0/sapmachine-jdk-11.0.1.13_linux-ppc64le_bin.tar.gz", + "checksum": "29d595d5e020a25858f2c240d0ddce7596ef9842c8d4b90ad0f62cd8fbaa3da9" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.1.13_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.1%2B13-0/sapmachine-jdk-11.0.1.13_linux-x64_bin.tar.gz", + "checksum": "41d70861c71d33ed437d28f3aaa0a22543b83271c35b7910cd8613961dee3d2f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.0.1.13_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.1%2B13-0/sapmachine-jdk-11.0.1.13_osx-x64_bin.tar.gz", + "checksum": "600fc431d96fbc0b22a3cb160a1b1fbe878b887efd5be99668f3cf9677aa11cc" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.0.1.13_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.1%2B13-0/sapmachine-jdk-11.0.1.13_windows-x64_bin.zip", + "checksum": "66e10ceadf6ba718ee445f332c6f96a8fe0782aae4433e5477b2e9e1593783d9" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.1.13_linux-ppc64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.1%2B13-0/sapmachine-jre-11.0.1.13_linux-ppc64_bin.tar.gz", + "checksum": "54a7a4c6ee9ef3d5d29203e62993c9d4d7f50e7f34744217b0fa07e72c7acfb2" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.0.1.13_linux-ppc64le_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.1%2B13-0/sapmachine-jre-11.0.1.13_linux-ppc64le_bin.tar.gz", + "checksum": "b8baddb06ff61c6da45ee9f71c32c4882c58edbd9a4aae9b2c828820dcfe370b" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.1.13_linux-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.1%2B13-0/sapmachine-jre-11.0.1.13_linux-x64_bin.tar.gz", + "checksum": "e59fb5c426da0433a15d4f49198ad37fdd8f124b7ee82d3ca22711190090be1f" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.0.1.13_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.1%2B13-0/sapmachine-jre-11.0.1.13_osx-x64_bin.tar.gz", + "checksum": "b0c0fd2616c7d1f8ae801ce7135ff53296735f3ae69f44b4bd46860e3c10e45a" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.0.1.13_windows-x64_bin.zip", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.1%2B13-0/sapmachine-jre-11.0.1.13_windows-x64_bin.zip", + "checksum": "ea31742e663a7ccd75f6bc1f81b95ae91460d2afef9c0798438e695eab198417" + } + } + } + } + } + }, + "11": { + "sapmachine-11+0-2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B0-2", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.0_linux-x64_bin.tar.gz", + "checksum": "fceb14c80903428c25348b50c9adca30d47559930d340d4046f706d361b4acd5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B0-2/sapmachine-jdk-11-ea.0_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.0_linux-x64-musl_bin.tar.gz", + "checksum": "db16f0b3058305f551d21ca1f718fd0e4a779887b6a0e89a81ccefc86b107d64", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B0-2/sapmachine-jdk-11-ea.0_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.0_linux-x64_bin.tar.gz", + "checksum": "c9a04f78b429e07067a4f0df4becebf86329c11f05e9aab99b193496cf3dafa6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B0-2/sapmachine-jre-11-ea.0_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.0_linux-x64-musl_bin.tar.gz", + "checksum": "4e9439f6f7c0ed55ac356d9bf5b63c0866fc7011eaa189092dc28d748c204df4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B0-2/sapmachine-jre-11-ea.0_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+28-1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B28-1", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11.28_linux-ppc64_bin.tar.gz", + "checksum": "301cc48aa7089e0746978c8b159faf96c8717049a6b29864f6fd7610581ef947", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-1/sapmachine-jdk-11.28_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11.28_linux-ppc64le_bin.tar.gz", + "checksum": "b3e531785731a003f458e2cd979fbe7e3443227b8909311ca808f220f59fa9d0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-1/sapmachine-jdk-11.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11.28_linux-x64_bin.tar.gz", + "checksum": "2236f8c407134c4b12ce136c874018e03429940603f176b67c27a7eaee04fc95", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-1/sapmachine-jdk-11.28_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11+28_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-1/sapmachine-jdk-11%2B28_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11.28_windows-x64_bin.zip", + "checksum": "1cb21c23dc89a34c0d974d2e3fc9553f4f06848dff7f3c5c969760ea1bc27479", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-1/sapmachine-jdk-11.28_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11.28_linux-ppc64_bin.tar.gz", + "checksum": "2c08a302dba737880500a466b59a55be4f36449db212717e1ec8b81da48e1e20", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-1/sapmachine-jre-11.28_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11.28_linux-ppc64le_bin.tar.gz", + "checksum": "c773fb4cdc71af37963c86b4b2c2b853c3bfeec0231eb76fdb91c7eab57f2859", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-1/sapmachine-jre-11.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11.28_linux-x64_bin.tar.gz", + "checksum": "5d57d3b8ccafb40324cad3882ce80681c16b003ea0822b0e958b6cf6314bd15e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-1/sapmachine-jre-11.28_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11+28_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-1/sapmachine-jre-11%2B28_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11.28_windows-x64_bin.zip", + "checksum": "0dd6185e050a04d79074570f266d00eee3adabc75c9728886b8a03f3f03e77d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-1/sapmachine-jre-11.28_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11+21-1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B21-1", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.21_linux-x64_bin.tar.gz", + "checksum": "ed1d8f5e05a5e46f2a85c48ee164ea184635b015dbaef2dcd5fbfd739aae3aa0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B21-1/sapmachine-jdk-11-ea.21_linux-x64_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.21_linux-x64_bin.tar.gz", + "checksum": "c0245afae76ceacfe0dbddfc2883a8552a9279690200bde30c2854283b3c1367", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B21-1/sapmachine-jre-11-ea.21_linux-x64_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+0-1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B0-1", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.0_linux-x64_bin.tar.gz", + "checksum": "82cb6c59e6db144c017d3ef9ef4777d150675d1d374b84942050d16ab5f04c13", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B0-1/sapmachine-jdk-11-ea.0_linux-x64_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.0_linux-x64_bin.tar.gz", + "checksum": "1ef48e2f4824801efbc3722dbd93efc48f8ba3c08339b872578eb7c12279c73b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B0-1/sapmachine-jre-11-ea.0_linux-x64_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+28-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B28-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.28_linux-ppc64_bin.tar.gz", + "checksum": "562a8507c08d858022d451d361634562b7a7d805036afeb2487c5facd209c372", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-0/sapmachine-jdk-11-ea.28_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "d818247bd11240f58f82b8063d0226e18e0e0ac8854683d024050db7607e3f46", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-0/sapmachine-jdk-11-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.28_linux-x64_bin.tar.gz", + "checksum": "d0f623d6e27fa29fab8d3779bcb705a633700746d4732ce8b9783994dc45a801", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-0/sapmachine-jdk-11-ea.28_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.28_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-0/sapmachine-jdk-11-ea.28_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11-ea.28_windows-x64_bin.zip", + "checksum": "9c4fdbb8a914da49282e4a4d197c6a4590224f0e8e8a86371081219d25415958", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-0/sapmachine-jdk-11-ea.28_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.28_linux-ppc64_bin.tar.gz", + "checksum": "f6dbbd683a06b5f7e7d6e0fbbe4178eb1eddcc9c2ea4b94b8d59552efc5ca0c6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-0/sapmachine-jre-11-ea.28_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.28_linux-ppc64le_bin.tar.gz", + "checksum": "460b79b290261170726dfc456a96b08f9499772760a99092a426140545bd3632", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-0/sapmachine-jre-11-ea.28_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.28_linux-x64_bin.tar.gz", + "checksum": "c2ae7d94cee018db1f21df03ce7788733ead637e905e489573d9e833e987f9aa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-0/sapmachine-jre-11-ea.28_linux-x64_bin.tar.gz" + } + }, + "macos-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.28_osx-x64_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-0/sapmachine-jre-11-ea.28_osx-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11-ea.28_windows-x64_bin.zip", + "checksum": "7af97ea88534dc061cd45ae31a7c29143a7cc042971b45aa447fa54d5092c7f1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B28-0/sapmachine-jre-11-ea.28_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11+27-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B27-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.27_linux-ppc64_bin.tar.gz", + "checksum": "aff14d7c021a9984262531d36f6ed4d21234a3e91cab497d85ff81cf12e028e9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B27-0/sapmachine-jdk-11-ea.27_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "879211e3c910bf5ae124c7d7677f4ffe3bf850fbfdf8672ee8475a0d6d6a7c59", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B27-0/sapmachine-jdk-11-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.27_linux-x64_bin.tar.gz", + "checksum": "4679f4eedeca986b556f2ce92b75868a02673a3f6201c66dfc88e477fc18ded4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B27-0/sapmachine-jdk-11-ea.27_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11-ea.27_windows-x64_bin.zip", + "checksum": "9b049cfbe1a96761d1c20c771d5f67f3237eb99bedefaf7fc8483e461c548efd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B27-0/sapmachine-jdk-11-ea.27_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.27_linux-ppc64_bin.tar.gz", + "checksum": "70a0df1c02b17af80d67a8c0f71452617f274e3c2fcfd02a9d960281737f871c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B27-0/sapmachine-jre-11-ea.27_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.27_linux-ppc64le_bin.tar.gz", + "checksum": "08c43c78e44f0bb2765fbda9a971d3223b0395dd4149eb9cc1cdc3ae58865f2e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B27-0/sapmachine-jre-11-ea.27_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.27_linux-x64_bin.tar.gz", + "checksum": "f85f65cf483876412cdff23d0d90aa7f49f72e03538afd99195ca5a86954dece", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B27-0/sapmachine-jre-11-ea.27_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11-ea.27_windows-x64_bin.zip", + "checksum": "894ec6f94618ffd0c1d6bd0702957c12d60afb0fec778c1e6ad06fc62990c06a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B27-0/sapmachine-jre-11-ea.27_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11+26-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B26-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.26_linux-ppc64_bin.tar.gz", + "checksum": "2dd570d8af1e067b55136b4d925756928130bcca5e60baa8f5a2ef880a3680d8", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B26-0/sapmachine-jdk-11-ea.26_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "d7195b9f7b5d387da6a8d2b9f1794c2f363a7d06b624b4a98e91b4b4ff60aeca", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B26-0/sapmachine-jdk-11-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.26_linux-x64_bin.tar.gz", + "checksum": "837451f98a8ab84bd3693bf119877d2d446221082e79266da0a6858634a4ee98", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B26-0/sapmachine-jdk-11-ea.26_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11-ea.26_windows-x64_bin.zip", + "checksum": "5ec65c05eec14de0753db5f5295302ebed2fa0b08ae8491f95bc3a28e87d07e5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B26-0/sapmachine-jdk-11-ea.26_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.26_linux-ppc64_bin.tar.gz", + "checksum": "5389c0d0b332c36047a2627509192255fde2f97664fc44d9f4a9267f5561e252", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B26-0/sapmachine-jre-11-ea.26_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.26_linux-ppc64le_bin.tar.gz", + "checksum": "8451c59aab5f340705b4b8dd685313a4b5bb4b7fea5fc2298e25dafa8b0e610a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B26-0/sapmachine-jre-11-ea.26_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.26_linux-x64_bin.tar.gz", + "checksum": "1e2b8f1bd4f3bace43b666959a70ef033f79db71e31b297fdf7f74bf698955cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B26-0/sapmachine-jre-11-ea.26_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11-ea.26_windows-x64_bin.zip", + "checksum": "f1329333fc1ca2ba006075a143844ba6760a74c862904902eca4b73ea9d816f4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B26-0/sapmachine-jre-11-ea.26_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11+25-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B25-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.25_linux-ppc64_bin.tar.gz", + "checksum": "5f15adb2807c0ebd0ca47f376b14cd47798abf9487cbbdce17ff16f462c6adbe", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B25-0/sapmachine-jdk-11-ea.25_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "5eb877c693cef8b707669ddb363ac9b1ecafb234a91c235267d5e00ecbfe5302", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B25-0/sapmachine-jdk-11-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.25_linux-x64_bin.tar.gz", + "checksum": "1b0229fcd4d9a9db313268fc592ebc74d7449dfa09f0a47e282888cc5b3bf272", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B25-0/sapmachine-jdk-11-ea.25_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11-ea.25_windows-x64_bin.zip", + "checksum": "1aeec7982ccbad9dcffc22d055214c09f2ffc357ad67454c19cced6ac4e0b9c1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B25-0/sapmachine-jdk-11-ea.25_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.25_linux-ppc64_bin.tar.gz", + "checksum": "ce68c8b868f86e8240f049d200e8fd09bbcd6bbdd07e49be6e61a798e34fc98b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B25-0/sapmachine-jre-11-ea.25_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.25_linux-ppc64le_bin.tar.gz", + "checksum": "a5f639c15fcb9e544ea55c9e9a5f72421b3089a4a77633700ef4d67125e0f384", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B25-0/sapmachine-jre-11-ea.25_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.25_linux-x64_bin.tar.gz", + "checksum": "73c574a35fd1dd2850232e62d5152037cd48c0afa7fcd61a866f1042fdd5c9cd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B25-0/sapmachine-jre-11-ea.25_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11-ea.25_windows-x64_bin.zip", + "checksum": "9238a17487a8aaab5663feab2131aa23c8dd1400a211352844a2318e85c0d63f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B25-0/sapmachine-jre-11-ea.25_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11+24-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B24-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "d6272a953c6a52c5ffe6a092017d4029f19f2f3424b8e1a03d111c1305703a3e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B24-0/sapmachine-jdk-11-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.24_linux-x64_bin.tar.gz", + "checksum": "aaa29704b7cf813759d69e7ba5df541edda2ee13d560806b9543aeddf85b2a08", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B24-0/sapmachine-jdk-11-ea.24_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11-ea.24_windows-x64_bin.zip", + "checksum": "53cdd38e3649427df2fc245348713abb3a07301090d272bda68bdca07a53e8b2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B24-0/sapmachine-jdk-11-ea.24_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.24_linux-ppc64le_bin.tar.gz", + "checksum": "5d99723a5a83702c4136e7a123ac1a719e0fac850cee4cf3cf3e36dfc526efdc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B24-0/sapmachine-jre-11-ea.24_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.24_linux-x64_bin.tar.gz", + "checksum": "a2206cba3dc2667c295abca7f6e10bbd8bc2689baf8c687bcfcee8223130da57", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B24-0/sapmachine-jre-11-ea.24_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11-ea.24_windows-x64_bin.zip", + "checksum": "c961cc96115299e201d52f6fa8138fb2b4d84aa9a378e651c8651d6540ecc082", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B24-0/sapmachine-jre-11-ea.24_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11+23-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B23-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "f62c207cea4560efb6f50ccacc5bffe8da13ced6d482ac72961e69265d5a4f09", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B23-0/sapmachine-jdk-11-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.23_linux-x64_bin.tar.gz", + "checksum": "76828302806fde0bbdc24a7b39d5edc04f259dc8eedb4c11595c607ead3b0870", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B23-0/sapmachine-jdk-11-ea.23_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jdk-11-ea.23_windows-x64_bin.zip", + "checksum": "3f2ac1288cd8cfdae003514d40c856b6f11acbdf9851395872165e9a89309945", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B23-0/sapmachine-jdk-11-ea.23_windows-x64_bin.zip" + } + } + }, + "jre": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.23_linux-ppc64le_bin.tar.gz", + "checksum": "ed0e4b549433fbe8b5cde5883b539dccac1c681c9d25458ebd6ab7c0f520a162", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B23-0/sapmachine-jre-11-ea.23_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.23_linux-x64_bin.tar.gz", + "checksum": "55162837979a20bcc250fab99083af511ce63a87e5efd489cc31650d52e71f6d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B23-0/sapmachine-jre-11-ea.23_linux-x64_bin.tar.gz" + } + }, + "windows-x64": { + "zip": { + "name": "sapmachine-jre-11-ea.23_windows-x64_bin.zip", + "checksum": "9bf3fddddc64e646d25306d65a4fd583bd0a1316fbbe8802e69dd8bbac13400d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B23-0/sapmachine-jre-11-ea.23_windows-x64_bin.zip" + } + } + } + } + }, + "sapmachine-11+21-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B21-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.21_linux-x64_bin.tar.gz", + "checksum": "afd331f030fe92d28b58ca3c55522f71c4dfe64c425d7428a356b88c2c4ffede", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B21-0/sapmachine-jdk-11-ea.21_linux-x64_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.21_linux-x64_bin.tar.gz", + "checksum": "6e5040ab6edef9005939ebc60efe443545dfac57052196934e0fae0ee716ea71", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B21-0/sapmachine-jre-11-ea.21_linux-x64_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+19-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B19-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.19_linux-x64_bin.tar.gz", + "checksum": "0a64737df28c2582158119289307504b7751648cb924d26d2cf7ebf986e554b4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B19-0/sapmachine-jdk-11-ea.19_linux-x64_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.19_linux-x64_bin.tar.gz", + "checksum": "fc72cca5c1cbef7fecfbd139fdb4b7c913006757ee921ec8d9f37d83472745f3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B19-0/sapmachine-jre-11-ea.19_linux-x64_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+18-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B18-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.18_linux-x64_bin.tar.gz", + "checksum": "49c1730615d3039fdf9b61790f844f15a072153a98aa325a163bcab7591461cb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B18-0/sapmachine-jdk-11-ea.18_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.18_linux-x64-musl_bin.tar.gz", + "checksum": "75046aeae2c9f83cb576d5f5ee07c97f1e56ea0b2561c0712ef3c5710709d3a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B18-0/sapmachine-jdk-11-ea.18_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.18_linux-x64_bin.tar.gz", + "checksum": "73b8a59d0f95c73832ed735e07e101610deefeb2684d51a4d588a48f9139feb7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B18-0/sapmachine-jre-11-ea.18_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.18_linux-x64-musl_bin.tar.gz", + "checksum": "d682fe3bba08dfabcc9121423ee9a941b7cd61a3bda335db449b18686e53b9aa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B18-0/sapmachine-jre-11-ea.18_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+16-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B16-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.16_linux-x64_bin.tar.gz", + "checksum": "9cf274f27624c6d8101b3978c45d4da734adee59f22b051d35a2d91022135622", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B16-0/sapmachine-jdk-11-ea.16_linux-x64_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.16_linux-x64_bin.tar.gz", + "checksum": "1d225280bafc87f6a8e25b1779e707ede36c4550759dd84367f78bdbfc1b2801", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B16-0/sapmachine-jre-11-ea.16_linux-x64_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+15-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B15-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.15_linux-x64_bin.tar.gz", + "checksum": "a1e44a0dc0a68cd9eff28aaad839becdc10018ed801dffe55533316b01a0259b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B15-0/sapmachine-jdk-11-ea.15_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.15_linux-x64-musl_bin.tar.gz", + "checksum": "663d4ad900dc7574ed8efdf0176e6bb3738c51ea8b4fa5bfd9d5fea6cf51aa5d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B15-0/sapmachine-jdk-11-ea.15_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.15_linux-x64_bin.tar.gz", + "checksum": "97691bfee52d50cf76a8b9365a48d834461578119c764a5e39bebd789591087e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B15-0/sapmachine-jre-11-ea.15_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.15_linux-x64-musl_bin.tar.gz", + "checksum": "19878c58815a2dc7b12a9d48c522a4581c40729793c77a1606fffb2d61d08cd9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B15-0/sapmachine-jre-11-ea.15_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+14-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B14-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.14_linux-x64_bin.tar.gz", + "checksum": "7930b19cf96721f9290deec818fd22b7b3b817067688e176246446cf426fd7e4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B14-0/sapmachine-jdk-11-ea.14_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.14_linux-x64-musl_bin.tar.gz", + "checksum": "f75fcf2c02976bd3c4d47839220e87244bb50e2c4469a5b17d3f2cda8b4f8991", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B14-0/sapmachine-jdk-11-ea.14_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.14_linux-x64_bin.tar.gz", + "checksum": "532dfbf0c0baf37f728229b9dc1fb80164c213521abe7006bd023cd4c83397aa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B14-0/sapmachine-jre-11-ea.14_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.14_linux-x64-musl_bin.tar.gz", + "checksum": "ac6a7b9624b7657b5fb4b19569cd3dc7e941662e3b2e65d3dd5ed1147f5a4442", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B14-0/sapmachine-jre-11-ea.14_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+13-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B13-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.13_linux-x64_bin.tar.gz", + "checksum": "db0b73efc63688257c97115fe70dcca5e0033c88c3d1613933d4606fd0badf41", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B13-0/sapmachine-jdk-11-ea.13_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.13_linux-x64-musl_bin.tar.gz", + "checksum": "5764b8f5b87779dfbb6640bdbd765712987dca2e259045bb282b8fe1b25aca11", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B13-0/sapmachine-jdk-11-ea.13_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.13_linux-x64_bin.tar.gz", + "checksum": "b4ee8ade6d6f7b3ace7ae4b7a573feb263e4f7d139840f4f9cdf960ff189284a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B13-0/sapmachine-jre-11-ea.13_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.13_linux-x64-musl_bin.tar.gz", + "checksum": "59f1fd899a9b488a3f47a2c7289f7fccd2dbeb85725a361327c8abd5d6c067ae", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B13-0/sapmachine-jre-11-ea.13_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+12-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B12-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.12_linux-x64_bin.tar.gz", + "checksum": "829ce933bb889fb63b3516d87e2f684d409e4e41e541838d77e937a5041f9099", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B12-0/sapmachine-jdk-11-ea.12_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.12_linux-x64-musl_bin.tar.gz", + "checksum": "56c823c242cb0142cd03f4a80cdf73b0c3124ead6d9ceabf2f280e501710eebb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B12-0/sapmachine-jdk-11-ea.12_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.12_linux-x64_bin.tar.gz", + "checksum": "b31c8cf6ac340850dc943fe27ed40956d01ab986f6582734fcbb16624f0878ee", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B12-0/sapmachine-jre-11-ea.12_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.12_linux-x64-musl_bin.tar.gz", + "checksum": "4319a0c62a794f87506b2cf5eae0570fc4d1de0950da25ccac2d211a2e7e8707", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B12-0/sapmachine-jre-11-ea.12_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+11-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B11-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.11_linux-x64_bin.tar.gz", + "checksum": "65947a274d64fcf937dc0fbcf889ca7e3b9e13a8547639acd3a2d52384c21a19", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B11-0/sapmachine-jdk-11-ea.11_linux-x64_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.11_linux-x64_bin.tar.gz", + "checksum": "e185c8944164a2b3d18c970146f9f11b3172c2886a8fe10f64d7ad38f3316319", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B11-0/sapmachine-jre-11-ea.11_linux-x64_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+10-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B10-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.10_linux-x64_bin.tar.gz", + "checksum": "ef9efbe7bc42f4e50432b71531d0e5613819a4d440ef1004aaf4efcb891f4967", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B10-0/sapmachine-jdk-11-ea.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.10_linux-x64-musl_bin.tar.gz", + "checksum": "8eab58e69a490c3ecadf5b91ad06f28497f6084a65a08af269df1b423bfd16fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B10-0/sapmachine-jdk-11-ea.10_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.10_linux-x64_bin.tar.gz", + "checksum": "b12c7938ea33de21cffc036cfc20df18bc718b97db763d3464589de7f749b26e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B10-0/sapmachine-jre-11-ea.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.10_linux-x64-musl_bin.tar.gz", + "checksum": "af485f7081bb6452125b31d167363f931a1d1cd8e4b4901a346b74c6ef11ae4b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B10-0/sapmachine-jre-11-ea.10_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+9-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B9-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.9_linux-x64_bin.tar.gz", + "checksum": "895187672171bce6815587f13ff5c7f383de393bb92f178a4f477fa908d55d4b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B9-0/sapmachine-jdk-11-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.9_linux-x64-musl_bin.tar.gz", + "checksum": "6538b98ef068a41f258308ac04a46d073a99ef3e84cf6ff9cfcdf3c4f95d11d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B9-0/sapmachine-jdk-11-ea.9_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.9_linux-x64_bin.tar.gz", + "checksum": "3cf5c6c2749988341efb44b21ca5115036bf096000e0667424a0200ffd5f7b9a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B9-0/sapmachine-jre-11-ea.9_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.9_linux-x64-musl_bin.tar.gz", + "checksum": "2f56b2b2e6ce3d428c9b2a715ac482891686c42f17f1f9eb21fb371c7ed92152", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B9-0/sapmachine-jre-11-ea.9_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+8-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B8-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.8_linux-x64_bin.tar.gz", + "checksum": "6c785c86ad6975ad1115ecee725e99515d8ae60bea73deb8f3e1ed62486bafac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B8-0/sapmachine-jdk-11-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.8_linux-x64-musl_bin.tar.gz", + "checksum": "1fbf8b196b5aab051b3f7683a02e67b02514384ba4334566d5963cc02f62d1e5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B8-0/sapmachine-jdk-11-ea.8_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.8_linux-x64_bin.tar.gz", + "checksum": "769e6c05670b53ca4c9c3c2cb4102de4b3ab3624f8eda64edf625cd52e814ae7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B8-0/sapmachine-jre-11-ea.8_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.8_linux-x64-musl_bin.tar.gz", + "checksum": "090d8d29a2e554ed7e19f20b50e612fbcd10e3bff142865d54b912e4a4e6a097", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B8-0/sapmachine-jre-11-ea.8_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+7-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B7-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.7_linux-x64_bin.tar.gz", + "checksum": "50736a7fdd972c54962ea35e0cc0d7c38061e02e188adaa89faf8ba98d9a7104", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B7-0/sapmachine-jdk-11-ea.7_linux-x64_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.7_linux-x64_bin.tar.gz", + "checksum": "11cd738eb89cb416bc161fb631a25b638fae824d7f3ab199a283535615d2d9e2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B7-0/sapmachine-jre-11-ea.7_linux-x64_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+6-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B6-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.6_linux-x64_bin.tar.gz", + "checksum": "7d07a6964a2905f8f30a0d3da3f592106252e3a20f621d48ac800f86fe49b676", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B6-0/sapmachine-jdk-11-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "60282fa7c3f34bd6347d0944224e3fcde79d9a38aa0401ddbb5eb63e78a37f28", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B6-0/sapmachine-jdk-11-ea.6_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.6_linux-x64_bin.tar.gz", + "checksum": "dc56e83b24504254e3a1b660329235cd30ee0fbce1affb7ec3e5659768681610", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B6-0/sapmachine-jre-11-ea.6_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.6_linux-x64-musl_bin.tar.gz", + "checksum": "0db003181db0b412e60a1bad719afcb015986bb1ab393fa51aab236246985d9a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B6-0/sapmachine-jre-11-ea.6_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+5-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B5-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.5_linux-x64_bin.tar.gz", + "checksum": "5c09a24891e773110d4e1672545f2289cc61d169f9dda928a89fadd60ed1ba9e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B5-0/sapmachine-jdk-11-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "8204e232b7108ebf0f339da0b9acf0636e9f66b866f9f1dd2ee9f134c5ce1eaa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B5-0/sapmachine-jdk-11-ea.5_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.5_linux-x64_bin.tar.gz", + "checksum": "dc541e1d6465a1d93a3ccf68ff96a0d1efb4cfb056990f24258e93aae27695b2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B5-0/sapmachine-jre-11-ea.5_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.5_linux-x64-musl_bin.tar.gz", + "checksum": "0082169d92afdcfb39ea847548de323ea959648c874c7ca820e2d53e1f218145", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B5-0/sapmachine-jre-11-ea.5_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+3-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B3-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.3_linux-x64_bin.tar.gz", + "checksum": "ce17ce42f71498077b77361a03911d8433431dc0fa7093556da55d0ecfa6258b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B3-0/sapmachine-jdk-11-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "1dcc5458ca700f43afcb4a91807e7524f777003a89f419026a2024bf25fbed4b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B3-0/sapmachine-jdk-11-ea.3_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.3_linux-x64_bin.tar.gz", + "checksum": "e2a8531ca12e6e4a66f7af3bf286e33273e52ecda1946d142abfea3f184c82ce", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B3-0/sapmachine-jre-11-ea.3_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.3_linux-x64-musl_bin.tar.gz", + "checksum": "3b8ee3b99d4eb43d1016231de58c95bf5af46978a4ffb7b8857e3b6409e6f840", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B3-0/sapmachine-jre-11-ea.3_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+2-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B2-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.2_linux-x64_bin.tar.gz", + "checksum": "8f312ad22ad0ba7dc73c950e8cbeb476365b59e8639ed865cc133e8f6dff3d62", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B2-0/sapmachine-jdk-11-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "8ac87298c02fa5266c0852c3737831d823630082be8fa92c5e615aa209c23612", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B2-0/sapmachine-jdk-11-ea.2_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.2_linux-x64_bin.tar.gz", + "checksum": "b4b87361777555ee962944212c9910071972b82396d22f0094ec558b1456ec92", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B2-0/sapmachine-jre-11-ea.2_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.2_linux-x64-musl_bin.tar.gz", + "checksum": "5478921e1539f4b19673c2afa6ecbecec8f5132caa44d69e43bced277e46f86f", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B2-0/sapmachine-jre-11-ea.2_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-11+1-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-11%2B1-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.1_linux-x64_bin.tar.gz", + "checksum": "5f6cae1b812f1154d4bd2e4b5386d75a410ba1bb1fd96124dc423c850991f688", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B1-0/sapmachine-jdk-11-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-11-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "4bf0df632cca7d22a6f5f6a794f84e1e44bb38eb068876e4c47eb0af5c4aa252", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B1-0/sapmachine-jdk-11-ea.1_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.1_linux-x64_bin.tar.gz", + "checksum": "5bc685f10401575c075ce45178235ee87ee93552596536b6a14441538ceacd82", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B1-0/sapmachine-jre-11-ea.1_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-11-ea.1_linux-x64-musl_bin.tar.gz", + "checksum": "8ec8bbb0cd0e0a68f308e9663fcf36132ab7774797c7e76d5dc78a73ae6c0df1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-11%2B1-0/sapmachine-jre-11-ea.1_linux-x64-musl_bin.tar.gz" + } + } + } + } + } + } + }, + "lts": "true" + }, + "10": { + "updates": { + "10.0.2": { + "sapmachine-10.0.2+13-1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10.0.2%2B13-1", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jdk-10.0.2.13_linux-ppc64_bin.tar.gz", + "checksum": "9d2f3017fa6028354542581e29d43259174c3d963d9ba39e85b6dc1956690245", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10.0.2%2B13-1/sapmachine-jdk-10.0.2.13_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-10.0.2.13_linux-ppc64le_bin.tar.gz", + "checksum": "6d3c8effd4814a642d52234dad109d3064aa002655ee49539bea51bfefa613d7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10.0.2%2B13-1/sapmachine-jdk-10.0.2.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-10.0.2.13_linux-x64_bin.tar.gz", + "checksum": "26117204d872fec0af05a5c0689e6d548366372a191a22730b43f7a01bcff718", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10.0.2%2B13-1/sapmachine-jdk-10.0.2.13_linux-x64_bin.tar.gz" + } + } + }, + "jre": { + "linux-ppc64": { + "tar.gz": { + "name": "sapmachine-jre-10.0.2.13_linux-ppc64_bin.tar.gz", + "checksum": "3f88fe465cf0a21857d460b2f7dc2bb09c3daa5e3cb175031f90ddda27d9a5ea", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10.0.2%2B13-1/sapmachine-jre-10.0.2.13_linux-ppc64_bin.tar.gz" + } + }, + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-10.0.2.13_linux-ppc64le_bin.tar.gz", + "checksum": "a97a828bb7109f3509f1c0b7624eae5759317df21080d53300210c94a5e78efa", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10.0.2%2B13-1/sapmachine-jre-10.0.2.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-10.0.2.13_linux-x64_bin.tar.gz", + "checksum": "8d4a207454c7dbd3ca2be00286cffedbf68717012af70d03c84ade7033585b21", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10.0.2%2B13-1/sapmachine-jre-10.0.2.13_linux-x64_bin.tar.gz" + } + } + } + } + }, + "sapmachine-10.0.2+13-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10.0.2%2B13-0", + "ea": "true", + "assets": { + "jdk": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jdk-10.0.2.13_linux-ppc64le_bin.tar.gz", + "checksum": "a055211181c77f466edd22be20e0d419aee91e51542488fdce33e91d33a42ff3", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10.0.2%2B13-0/sapmachine-jdk-10.0.2.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-10.0.2.13_linux-x64_bin.tar.gz", + "checksum": "7cbba13effe3d6ea0fb91d94644ef267d3e0183569a49a9899d0a181b8a194fb", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10.0.2%2B13-0/sapmachine-jdk-10.0.2.13_linux-x64_bin.tar.gz" + } + } + }, + "jre": { + "linux-ppc64le": { + "tar.gz": { + "name": "sapmachine-jre-10.0.2.13_linux-ppc64le_bin.tar.gz", + "checksum": "9d39167b4dfefc931550ee080d4b8c792d6fb22c63c419f62f94c5f31c6e9b2c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10.0.2%2B13-0/sapmachine-jre-10.0.2.13_linux-ppc64le_bin.tar.gz" + } + }, + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-10.0.2.13_linux-x64_bin.tar.gz", + "checksum": "55a7dc05489d710571f2a1161a2d0c102515f4eafbe0d6c873b4a7f437ef7c0b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10.0.2%2B13-0/sapmachine-jre-10.0.2.13_linux-x64_bin.tar.gz" + } + } + } + } + } + }, + "10.0.1": { + "sapmachine-10.0.1+10-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10.0.1%2B10-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-10.0.1.10_linux-x64_bin.tar.gz", + "checksum": "8d367d49aef22cbc4be938905da93650193564c10881289dd372c076ee291519", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10.0.1%2B10-0/sapmachine-jdk-10.0.1.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-10.0.1.10_linux-x64-musl_bin.tar.gz", + "checksum": "4cd4840e74640b6cd4b01f190c629fb837e5848386b789d7eafef51c312a086d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10.0.1%2B10-0/sapmachine-jdk-10.0.1.10_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-10.0.1.10_linux-x64_bin.tar.gz", + "checksum": "fd1986fba3d9a6ecc32aeacf1132d832f4f6ac5f299377b21d07eb5c729729ed", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10.0.1%2B10-0/sapmachine-jre-10.0.1.10_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-10.0.1.10_linux-x64-musl_bin.tar.gz", + "checksum": "ed3bfc1f614203adcb29920bfb2034e84126ec58885910cae451d7911aebdc7a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10.0.1%2B10-0/sapmachine-jre-10.0.1.10_linux-x64-musl_bin.tar.gz" + } + } + } + } + } + }, + "10": { + "sapmachine-10+46-2": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10%2B46-2", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-10.46_linux-x64_bin.tar.gz", + "checksum": "f3f3e072a3f8887f0dea47ddeb724b9c063c02014c46896d341e9af108cca4d4", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B46-2/sapmachine-jdk-10.46_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.46_linux-x64-musl_bin.tar.gz", + "checksum": "a326d7db8e4a272b8f83addebb1e1cc5aa1d402234b69a5ab913a5610293e6ac", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B46-2/sapmachine-jdk-10-ea.46_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-10.46_linux-x64_bin.tar.gz", + "checksum": "2af0c4e41ef93f78fde27df019c401d0b77de11eb630ab18cc47803dcf35ef64", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B46-2/sapmachine-jre-10.46_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.46_linux-x64-musl_bin.tar.gz", + "checksum": "9c0d648121ae653cdfcd8bacf12e5367e87c555e0b967e6d3e6cfba874284015", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B46-2/sapmachine-jre-10-ea.46_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-10+46-1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10%2B46-1", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.46_linux-x64_bin.tar.gz", + "checksum": "fcbc57890f242362058a812fe0750ffc8bf515fbba3c707f6a3b829fe92bd23c", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B46-1/sapmachine-jdk-10-ea.46_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.46_linux-x64-musl_bin.tar.gz", + "checksum": "42d631b43aeba26b242731e20bebd1f37d78e8ca3142b6b64fa12342d06476b9", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B46-1/sapmachine-jdk-10-ea.46_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.46_linux-x64_bin.tar.gz", + "checksum": "e9ef10d3a9a5c629bb8878232b5f7a3bdfd85e564112252b6b08798612988fde", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B46-1/sapmachine-jre-10-ea.46_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.46_linux-x64-musl_bin.tar.gz", + "checksum": "dee0d65d834968783314a251d4e9a068747768ff2560303ded2db07d2f5bb262", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B46-1/sapmachine-jre-10-ea.46_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-10+39-1": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10%2B39-1", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.39_linux-x64_bin.tar.gz", + "checksum": "063f3bd57d0cae6441b1f3fd0a1c0ff9812539461b1f8c60dd236edfd901b758", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B39-1/sapmachine-jdk-10-ea.39_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.39_linux-x64-musl_bin.tar.gz", + "checksum": "8a86b166292b55d5e39b666fba7e67b5f76f172b3ce8004c23f815109fd92d5a", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B39-1/sapmachine-jdk-10-ea.39_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.39_linux-x64_bin.tar.gz", + "checksum": "e4e1c9c5dd5ebb3242fee3532810f18f2ff36f4201d06c5bc2fce0be9611eb53", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B39-1/sapmachine-jre-10-ea.39_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.39_linux-x64-musl_bin.tar.gz", + "checksum": "0ad50d4b0db3f5bc88071bd29e4ad9133905882cacf8206c65ef8bf4aba56f76", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B39-1/sapmachine-jre-10-ea.39_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-10+46-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10%2B46-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.46_linux-x64_bin.tar.gz", + "checksum": "abf028dfecb6c63f6fad59926385da105ee51955dc464444ac5e81b6b2529433", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B46-0/sapmachine-jdk-10-ea.46_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.46_linux-x64-musl_bin.tar.gz", + "checksum": "1eb5d26d1a25f079c1ba09c8662b384dadb7d4ecd2fecacfff0c9b957c8b5423", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B46-0/sapmachine-jdk-10-ea.46_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.46_linux-x64_bin.tar.gz", + "checksum": "c90a299deba0615fabaccf74492250aed94cc996a9775f1aadac2614fed3feef", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B46-0/sapmachine-jre-10-ea.46_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.46_linux-x64-musl_bin.tar.gz", + "checksum": "de0522621797054dcf66da762c010517d55646656dc182971f6276e7bac217dd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B46-0/sapmachine-jre-10-ea.46_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-10+45-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10%2B45-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.45_linux-x64_bin.tar.gz", + "checksum": "c5566464b942668dfc4abfb881a69bf8257a7652fd089f1e7f5d59872482bd85", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B45-0/sapmachine-jdk-10-ea.45_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.45_linux-x64-musl_bin.tar.gz", + "checksum": "22e88e0ce06622649eb26342de5300434893a3d422bc6d636581e7a26053456e", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B45-0/sapmachine-jdk-10-ea.45_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.45_linux-x64_bin.tar.gz", + "checksum": "710c3f0f67cb2797271cda7019c3dec70da2fe336787fed94bbd369b2d42a5d0", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B45-0/sapmachine-jre-10-ea.45_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.45_linux-x64-musl_bin.tar.gz", + "checksum": "8955c6d32dc40b427503ba570c5120e5ca4d2728150ec9528c603188ec85f599", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B45-0/sapmachine-jre-10-ea.45_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-10+44-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10%2B44-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.44_linux-x64_bin.tar.gz", + "checksum": "c35c729682b5a7e2cf8721081c224f6fd8ec2f9bec220bd6c405146375a362b5", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B44-0/sapmachine-jdk-10-ea.44_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.44_linux-x64-musl_bin.tar.gz", + "checksum": "0673352d49327229d777673d32306d82f26b867cc7de5fcefff6135e284850bc", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B44-0/sapmachine-jdk-10-ea.44_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.44_linux-x64_bin.tar.gz", + "checksum": "aaecd34ef75e9523721c4adde18f75f789a35e1701199b68232828b806456876", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B44-0/sapmachine-jre-10-ea.44_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.44_linux-x64-musl_bin.tar.gz", + "checksum": "3cd912683193a6057c96b6c0459e8a864e498895e8f2464c582b20d8254f12d1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B44-0/sapmachine-jre-10-ea.44_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-10+43-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10%2B43-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.43_linux-x64_bin.tar.gz", + "checksum": "9eccdfaea7a6299dc8126cc127342edf731c1635485046d483613c052f238667", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B43-0/sapmachine-jdk-10-ea.43_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.43_linux-x64-musl_bin.tar.gz", + "checksum": "4fe12c79f4388ede630cb4e9b9670ed1cc56415972ba3b3038111f3d558a1855", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B43-0/sapmachine-jdk-10-ea.43_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.43_linux-x64_bin.tar.gz", + "checksum": "a82566a00d5b7c1d2868a329811869c15c8f2fc6c712d9bd4ba6dabe2f1875c2", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B43-0/sapmachine-jre-10-ea.43_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.43_linux-x64-musl_bin.tar.gz", + "checksum": "7d5356176cbb7bb04622f716330e6afa5f721e9a048baeb730f56a547c4a3b45", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B43-0/sapmachine-jre-10-ea.43_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-10+42-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10%2B42-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.42_linux-x64_bin.tar.gz", + "checksum": "cbba0342a5023b1e8e4e655d70b3b768523c37364234939025cf61b4fa2aab4d", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B42-0/sapmachine-jdk-10-ea.42_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.42_linux-x64-musl_bin.tar.gz", + "checksum": "01e91419fcb6cd9fe9539ecb4fc7f8f31f39da7b8edc3ef1c883ae7a89e8ddf6", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B42-0/sapmachine-jdk-10-ea.42_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.42_linux-x64_bin.tar.gz", + "checksum": "c99b9abbac13035041279e7e6d3a945d8293483ee5208d74cbbd1d36d1624212", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B42-0/sapmachine-jre-10-ea.42_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.42_linux-x64-musl_bin.tar.gz", + "checksum": "1778ded6e9b858661ed3f604775e60598ac655a233cba1099bc8490da579e675", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B42-0/sapmachine-jre-10-ea.42_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-10+41-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10%2B41-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.41_linux-x64_bin.tar.gz", + "checksum": "b6bdf8a79bc2f5268cb1e2e30ad05f829d2cdbf9caa4c88f52fcc764df1b4920", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B41-0/sapmachine-jdk-10-ea.41_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.41_linux-x64-musl_bin.tar.gz", + "checksum": "5f6be92df55fbb527212bfa30bc934bbd5910c554d66dc415cf6524f54248e02", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B41-0/sapmachine-jdk-10-ea.41_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.41_linux-x64_bin.tar.gz", + "checksum": "d0f5e98ee9fa098c17023493d86300af28045ef2c9d2b7e8d7f658cdef17be14", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B41-0/sapmachine-jre-10-ea.41_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.41_linux-x64-musl_bin.tar.gz", + "checksum": "ffd06c4763ede272ae9233452cbb76d64593f7951ade9fee8336e6e4f2fe7677", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B41-0/sapmachine-jre-10-ea.41_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-10+40-0": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10%2B40-0", + "ea": "true", + "assets": { + "jdk": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.40_linux-x64_bin.tar.gz", + "checksum": "4d600263b5c1dbdd7d48d4bae1b022d83eb401a5a37b89647820bc81f85ba1bd", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B40-0/sapmachine-jdk-10-ea.40_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.40_linux-x64-musl_bin.tar.gz", + "checksum": "1249a3990bd90da4365c68fedea37a810a410142949e425431702b76cd19331b", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B40-0/sapmachine-jdk-10-ea.40_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.40_linux-x64_bin.tar.gz", + "checksum": "9b90f8886e8eb8490734e75e94bfd2855e1e723aee1e6bfb045ebe1b1329c5a1", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B40-0/sapmachine-jre-10-ea.40_linux-x64_bin.tar.gz" + } + }, + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.40_linux-x64-musl_bin.tar.gz", + "checksum": "6a13eb7212736418cce1b04cbe86205a4df95ba78e7fab6eae27bf538df57ce7", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B40-0/sapmachine-jre-10-ea.40_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-10+39": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10%2B39", + "ea": "true", + "assets": { + "jdk": { + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jdk-10-ea.39_linux-x64-musl_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B39/sapmachine-jdk-10-ea.39_linux-x64-musl_bin.tar.gz" + } + } + }, + "jre": { + "linux-x64-musl": { + "tar.gz": { + "name": "sapmachine-jre-10-ea.39_linux-x64-musl_bin.tar.gz", + "url": "https://github.com/SAP/SapMachine/releases/download/sapmachine-10%2B39/sapmachine-jre-10-ea.39_linux-x64-musl_bin.tar.gz" + } + } + } + } + }, + "sapmachine-10+37": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10%2B37", + "ea": "true", + "assets": {} + }, + "sapmachine-10+36": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10%2B36", + "ea": "true", + "assets": {} + }, + "sapmachine-10+35": { + "url": "https://github.com/SAP/SapMachine/releases/tag/sapmachine-10%2B35", + "ea": "true", + "assets": {} + } + } + }, + "lts": "false" + } +} \ No newline at end of file diff --git a/__tests__/data/sdkman-java-versions.csv b/__tests__/data/sdkman-java-versions.csv new file mode 100644 index 000000000..5c75a44c9 --- /dev/null +++ b/__tests__/data/sdkman-java-versions.csv @@ -0,0 +1,135 @@ +6.0.119-zulu, 6.0.119 +7.0.352-zulu, 7.0.352 +8.0.282-trava, 8.0.282 +8.0.432-albba, 8.0.432 +8.0.432-amzn, 8.0.432 +8.0.432-kona, 8.0.432 +8.0.432-librca, 8.0.432 +8.0.432-sem, 8.0.432 +8.0.432-tem, 8.0.432 +8.0.432-zulu, 8.0.432 +8.0.432.fx-librca, 8.0.432 +8.0.432.fx-zulu, 8.0.432 +8.0.442-amzn, 8.0.442 +8.0.442-librca, 8.0.442 +8.0.442-tem, 8.0.442 +8.0.442-zulu, 8.0.442 +8.0.442.fx-librca, 8.0.442 +8.0.442.fx-zulu, 8.0.442 +11.0.14.1-jbr, 11.0.14 +11.0.15-trava, 11.0.15 +11.0.25-albba, 11.0.25 +11.0.25-amzn, 11.0.25 +11.0.25-kona, 11.0.25 +11.0.25-librca, 11.0.25 +11.0.25-ms, 11.0.25 +11.0.25-sapmchn, 11.0.25 +11.0.25-sem, 11.0.25 +11.0.25-tem, 11.0.25 +11.0.25-zulu, 11.0.25 +11.0.25.fx-librca, 11.0.25 +11.0.25.fx-zulu, 11.0.25 +11.0.26-amzn, 11.0.26 +11.0.26-librca, 11.0.26 +11.0.26-ms, 11.0.26 +11.0.26-sapmchn, 11.0.26 +11.0.26-zulu, 11.0.26 +11.0.26.fx-librca, 11.0.26 +11.0.26.fx-zulu, 11.0.26 +17.0.12-graal, 17.0.12 +17.0.12-jbr, 17.0.12 +17.0.12-oracle, 17.0.12 +17.0.13-albba, 17.0.13 +17.0.13-amzn, 17.0.13 +17.0.13-kona, 17.0.13 +17.0.13-librca, 17.0.13 +17.0.13-ms, 17.0.13 +17.0.13-sapmchn, 17.0.13 +17.0.13-sem, 17.0.13 +17.0.13-tem, 17.0.13 +17.0.13-zulu, 17.0.13 +17.0.13.crac-librca, 17.0.13 +17.0.13.crac-zulu, 17.0.13 +17.0.13.fx-librca, 17.0.13 +17.0.13.fx-zulu, 17.0.13 +17.0.14-amzn, 17.0.14 +17.0.14-librca, 17.0.14 +17.0.14-ms, 17.0.14 +17.0.14-sapmchn, 17.0.14 +17.0.14-zulu, 17.0.14 +17.0.14.fx-librca, 17.0.14 +17.0.14.fx-zulu, 17.0.14 +17.0.9-graalce, 17.0.9 +21.0.2-graalce, 21.0.2 +21.0.2-open, 21.0.2 +21.0.5-amzn, 21.0.5 +21.0.5-graal, 21.0.5 +21.0.5-jbr, 21.0.5 +21.0.5-kona, 21.0.5 +21.0.5-librca, 21.0.5 +21.0.5-ms, 21.0.5 +21.0.5-oracle, 21.0.5 +21.0.5-sapmchn, 21.0.5 +21.0.5-sem, 21.0.5 +21.0.5-tem, 21.0.5 +21.0.5-zulu, 21.0.5 +21.0.5.crac-librca, 21.0.5 +21.0.5.crac-zulu, 21.0.5 +21.0.5.fx-librca, 21.0.5 +21.0.5.fx-zulu, 21.0.5 +21.0.6-amzn, 21.0.6 +21.0.6-graal, 21.0.6 +21.0.6-librca, 21.0.6 +21.0.6-ms, 21.0.6 +21.0.6-oracle, 21.0.6 +21.0.6-sapmchn, 21.0.6 +21.0.6-tem, 21.0.6 +21.0.6-zulu, 21.0.6 +21.0.6.fx-librca, 21.0.6 +21.0.6.fx-zulu, 21.0.6 +22.0.2-oracle, 22.0.2 +22.1.0.1.r11-gln, 22.1.0 +22.1.0.1.r17-gln, 22.1.0 +22.3.5.r11-nik, 22.3.5 +22.3.5.r17-mandrel, 22.3.5 +22.3.5.r17-nik, 22.3.5 +23-open, 23 +23.0.1-amzn, 23.0.1 +23.0.1-graal, 23.0.1 +23.0.1-graalce, 23.0.1 +23.0.1-librca, 23.0.1 +23.0.1-open, 23.0.1 +23.0.1-oracle, 23.0.1 +23.0.1-sapmchn, 23.0.1 +23.0.1-tem, 23.0.1 +23.0.1-zulu, 23.0.1 +23.0.1.crac-zulu, 23.0.1 +23.0.1.fx-librca, 23.0.1 +23.0.1.fx-zulu, 23.0.1 +23.0.2-amzn, 23.0.2 +23.0.2-graal, 23.0.2 +23.0.2-graalce, 23.0.2 +23.0.2-librca, 23.0.2 +23.0.2-oracle, 23.0.2 +23.0.2-sapmchn, 23.0.2 +23.0.2-tem, 23.0.2 +23.0.2-zulu, 23.0.2 +23.0.2.fx-librca, 23.0.2 +23.0.2.fx-zulu, 23.0.2 +23.0.6.fx-nik, 23.0.6 +23.0.6.r17-mandrel, 23.0.6 +23.0.6.r17-nik, 23.0.6 +23.1.5.fx-nik, 23.1.5 +23.1.5.r21-mandrel, 23.1.5 +23.1.5.r21-nik, 23.1.5 +24.0.2.r22-mandrel, 24.0.2 +24.ea.27-graal, 24.0.0 +24.ea.28-graal, 24.0.0 +24.ea.31-open, 24.0.0 +24.ea.32-open, 24.0.0 +24.1.1.r23-mandrel, 24.1.1 +24.1.1.r23-nik, 24.1.1 +25.ea.4-graal, 25.0.0 +25.ea.5-graal, 25.0.0 +25.ea.5-open, 25.0.0 +25.ea.6-open, 25.0.0 \ No newline at end of file diff --git a/__tests__/data/semeru.json b/__tests__/data/semeru.json new file mode 100644 index 000000000..409a53eff --- /dev/null +++ b/__tests__/data/semeru.json @@ -0,0 +1,2168 @@ +[ + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 87, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "50ad0862a4bb395480d65ef936dec083133e741667bc2e9fc2a526b7a22a3508", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_17.0.2_8_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 87, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_17.0.2_8_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "size": 202318708 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T05:11:16Z" + }, + { + "architecture": "ppc64le", + "download_count": 9, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "fca6b34696be3661f95aafe14318c0b7d8b86a0dd0a26ab0d68be1489273e9dc", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_17.0.2_8_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 9, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_17.0.2_8_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "size": 207879163 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T05:11:34Z" + }, + { + "architecture": "s390x", + "download_count": 10, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "a06fb421563952a4fbd12fcd2f4b0c9b9ee22154604553baa8eb0428406ecf1b", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_17.0.2_8_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 10, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_17.0.2_8_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "size": 203657967 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T05:11:42Z" + }, + { + "architecture": "x64", + "download_count": 224, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "784b15f6d5ac5bc83ad9018dd5998854af21d2c468038cc8935abe40cf02f730", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_17.0.2_8_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 224, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_17.0.2_8_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "size": 207514103 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T05:11:50Z" + } + ], + "download_count": 514, + "id": "RE_kwDOGgIW6M4Dd2_r.qiAvl8XCnvMGWg==", + "release_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/tag/jdk-17.0.2%2B8_openj9-0.30.0", + "release_name": "jdk-17.0.2+8_openj9-0.30.0", + "release_type": "ga", + "timestamp": "2022-01-28T14:12:15Z", + "updated_at": "2022-01-28T14:12:15Z", + "vendor": "ibm", + "version_data": { + "build": 8, + "major": 17, + "minor": 0, + "openjdk_version": "17.0.2+8", + "security": 2, + "semver": "17.0.2+8" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 247, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "7a8ba2ca08e7ceaed2a8d349087184dc4fce57da5ab8e538e82667cf42c1c9cb", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_aarch64_linux_17.0.1_12_openj9-0.29.1.tar.gz.sha256.txt", + "download_count": 247, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_aarch64_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_aarch64_linux_17.0.1_12_openj9-0.29.1.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "size": 202169246 + }, + "project": "jdk", + "scm_ref": "v0.29.1-release", + "updated_at": "2021-12-09T16:17:24Z" + }, + { + "architecture": "ppc64le", + "download_count": 53, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "919a26f4098fd16680388e30fc3ed2056c8b0009205447511ba119f1be07dd08", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_ppc64le_linux_17.0.1_12_openj9-0.29.1.tar.gz.sha256.txt", + "download_count": 53, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_ppc64le_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_ppc64le_linux_17.0.1_12_openj9-0.29.1.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "size": 207687300 + }, + "project": "jdk", + "scm_ref": "v0.29.1-release", + "updated_at": "2021-12-09T16:17:43Z" + }, + { + "architecture": "s390x", + "download_count": 53, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "6cc23f5467e3e339da8d4ce180c537dc3f23d76db83c7d6b1d80c4ce00239fc0", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_s390x_linux_17.0.1_12_openj9-0.29.1.tar.gz.sha256.txt", + "download_count": 53, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_s390x_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_s390x_linux_17.0.1_12_openj9-0.29.1.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "size": 203493613 + }, + "project": "jdk", + "scm_ref": "v0.29.1-release", + "updated_at": "2021-12-09T16:17:52Z" + }, + { + "architecture": "x64", + "download_count": 1391, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "e02870ff175ed131481c4258d5b9069f39add8376e48527a5d4b87dfac196af9", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_x64_linux_17.0.1_12_openj9-0.29.1.tar.gz.sha256.txt", + "download_count": 1391, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_x64_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_x64_linux_17.0.1_12_openj9-0.29.1.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "size": 207287538 + }, + "project": "jdk", + "scm_ref": "v0.29.1-release", + "updated_at": "2021-12-09T16:18:01Z" + } + ], + "download_count": 4164, + "id": "RE_kwDOGgIW6M4DRt0H.NPTs+7PN5sPqSg==", + "release_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/tag/jdk-17.0.1%2B12_openj9-0.29.1", + "release_name": "jdk-17.0.1+12_openj9-0.29.1", + "release_type": "ga", + "timestamp": "2021-12-09T19:35:32Z", + "updated_at": "2021-12-09T19:35:32Z", + "vendor": "ibm", + "version_data": { + "build": 12, + "major": 17, + "minor": 0, + "openjdk_version": "17.0.1+12", + "security": 1, + "semver": "17.0.1+12" + } + }, + { + "binaries": [ + { + "architecture": "ppc64le", + "download_count": 909, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "edc972a824a8c9993b1403eb33a2148f59d1fd8d6faa5e89582be9d518999441", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.1.tar.gz.sha256.txt", + "download_count": 909, + "link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.1.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.1.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.1.tar.gz", + "size": 206335729 + }, + "project": "jdk", + "scm_ref": "v0.27.1-release", + "updated_at": "2021-09-16T20:45:40Z" + } + ], + "download_count": 1520, + "id": "MDc6UmVsZWFzZTQ5NzA2NjE3.thCg2143ldcHOw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/tag/jdk-16.0.2%2B7_openj9-0.27.1", + "release_name": "jdk-16.0.2+7_openj9-0.27.1", + "release_type": "ga", + "timestamp": "2021-09-16T20:46:21Z", + "updated_at": "2021-09-16T20:46:21Z", + "vendor": "ibm", + "version_data": { + "build": 7, + "major": 16, + "minor": 0, + "openjdk_version": "16.0.2+7", + "security": 2, + "semver": "16.0.2+7" + } + }, + { + "binaries": [ + { + "architecture": "ppc64le", + "download_count": 217, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "d5901996f2c0889b2b92de97fed0b36d5068da308be0fbd6c8293a6b6b91634d", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 217, + "link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "size": 206337625 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T17:03:32Z" + }, + { + "architecture": "s390x", + "download_count": 412, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "3a2741a2e14b9934405a6c0b6af9e865687a70814af355e62dd84025707ccfdc", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_16.0.2_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 412, + "link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_16.0.2_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "size": 203152325 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T17:03:38Z" + }, + { + "architecture": "x64", + "download_count": 13739, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "1349eb9a1d9af491a1984d66a80126730357c4a5c4fcbe7112a2c832f6c0886e", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_16.0.2_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 13739, + "link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_16.0.2_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "size": 205317058 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T17:03:46Z" + } + ], + "download_count": 59895, + "id": "MDc6UmVsZWFzZTQ3MjQxNTU3.thCg2143ldcHOw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/tag/jdk-16.0.2%2B7_openj9-0.27.0", + "release_name": "jdk-16.0.2+7_openj9-0.27.0", + "release_type": "ga", + "timestamp": "2021-08-03T17:56:51Z", + "updated_at": "2021-08-03T17:56:51Z", + "vendor": "ibm", + "version_data": { + "build": 7, + "major": 16, + "minor": 0, + "openjdk_version": "16.0.2+7", + "security": 2, + "semver": "16.0.2+7" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 191, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "022cda1210331488c3db3d0d1282ea74467397fdabc34cb482cdfe81c45f6a15", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_16.0.2_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 191, + "link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_16.0.2_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "size": 200907027 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T17:03:20Z" + } + ], + "download_count": 304, + "id": "MDc6UmVsZWFzZTQ3MjQxNTU3.bCP9NcEAVyL3kw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/tag/jdk-16.0.2%2B7_openj9-0.27.0", + "release_name": "jdk-16.0.2+7_openj9-0.27.0", + "release_type": "ga", + "timestamp": "2021-08-03T17:56:51Z", + "updated_at": "2021-08-03T17:56:51Z", + "vendor": "ibm", + "version_data": { + "build": 7, + "major": 16, + "minor": 0, + "openjdk_version": "16.0.2-ea+7", + "pre": "ea", + "security": 2, + "semver": "16.0.2-ea+7" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 22, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "5411e55aa50862c396f8f01ae6f84822b13a18138813a1831310adc926b58c37", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_11.0.14_9_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 22, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_11.0.14_9_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "size": 197962280 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T07:14:39Z" + }, + { + "architecture": "ppc64le", + "download_count": 86, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "9237ba2b221c523bc4ce4fdebcc5ad508801cfe7cbeae0f8f2897c120f8c1683", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.14_9_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 86, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.14_9_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "size": 203330982 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T07:14:55Z" + }, + { + "architecture": "s390x", + "download_count": 58, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "49adc9ea3ab77e7319ef1e9cd7937a227a3e4d650f99a539c59a05f3915cee99", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_11.0.14_9_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 58, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_11.0.14_9_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "size": 200096167 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T07:15:03Z" + }, + { + "architecture": "x64", + "download_count": 1223, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "17a4841299a17b84dcfecbb568a28e8ab2ebfb37320e642dfa2cc8758cda48e3", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_11.0.14_9_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 1223, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_11.0.14_9_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "size": 202536056 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T07:15:11Z" + } + ], + "download_count": 1988, + "id": "MDc6UmVsZWFzZTU4MTYyODc1.RKbT1cigFXPSvw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/tag/jdk-11.0.14%2B9_openj9-0.30.0", + "release_name": "jdk-11.0.14+9_openj9-0.30.0", + "release_type": "ga", + "timestamp": "2022-01-28T14:13:43Z", + "updated_at": "2022-01-28T14:13:43Z", + "vendor": "ibm", + "version_data": { + "build": 9, + "major": 11, + "minor": 0, + "openjdk_version": "11.0.14+9", + "security": 14, + "semver": "11.0.14+9" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 350, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "151dca23e1fdb43eaa60631c96895be9aa7bb751e7fdf88ddffa1c32157fb417", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_aarch64_linux_11.0.13_8_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 350, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_aarch64_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_aarch64_linux_11.0.13_8_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "size": 197781632 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T14:35:04Z" + }, + { + "architecture": "ppc64le", + "download_count": 559, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "7b304c52974f51611b45a2ab7949503e33a204b8a4ae705eb3c74789350174d3", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.13_8_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 559, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.13_8_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "size": 203079177 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T14:35:22Z" + }, + { + "architecture": "s390x", + "download_count": 705, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "6c3ebb4af0f4066e721e1f0078438458775f4b93bfd2d0be1066c54ccf015654", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_s390x_linux_11.0.13_8_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 705, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_s390x_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_s390x_linux_11.0.13_8_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "size": 199870826 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T14:35:30Z" + }, + { + "architecture": "x64", + "download_count": 23275, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "3975e2732cf632ca8f41c237ba7e033fd96bda262b79861f83b4e2ac62c90c3d", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_x64_linux_11.0.13_8_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 23275, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_x64_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_x64_linux_11.0.13_8_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "size": 202193589 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T14:35:38Z" + } + ], + "download_count": 41804, + "id": "MDc6UmVsZWFzZTUxODcxNDUz.DrSSnWfQGA0+fw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/tag/jdk-11.0.13%2B8_openj9-0.29.0", + "release_name": "jdk-11.0.13+8_openj9-0.29.0", + "release_type": "ga", + "timestamp": "2021-10-22T16:14:14Z", + "updated_at": "2021-11-11T16:27:32Z", + "vendor": "ibm", + "version_data": { + "build": 8, + "major": 11, + "minor": 0, + "openjdk_version": "11.0.13+8", + "security": 13, + "semver": "11.0.13+8" + } + }, + { + "binaries": [ + { + "architecture": "ppc64le", + "download_count": 248, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "4465df8798e84d62dd951a10913e817a9611856fa64166691bb30182402dec4f", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.1.tar.gz.sha256.txt", + "download_count": 248, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.1.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.1.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.1.tar.gz", + "size": 203028556 + }, + "project": "jdk", + "scm_ref": "v0.27.1-release", + "updated_at": "2021-09-16T20:38:36Z" + } + ], + "download_count": 472, + "id": "MDc6UmVsZWFzZTQ5NzA2MTQx.Xk3KfzrxRzXZIw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/tag/jdk-11.0.12%2B7_openj9-0.27.1", + "release_name": "jdk-11.0.12+7_openj9-0.27.1", + "release_type": "ga", + "timestamp": "2021-09-16T20:39:08Z", + "updated_at": "2021-09-16T20:39:08Z", + "vendor": "ibm", + "version_data": { + "build": 7, + "major": 11, + "minor": 0, + "openjdk_version": "11.0.12+7", + "security": 12, + "semver": "11.0.12+7" + } + }, + { + "binaries": [ + { + "architecture": "ppc64le", + "download_count": 362, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "7d49a5b29a84831526f7bffaaee399ac9a26d05712ac4b9cb7ca0a370ed3f020", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 362, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "size": 203013889 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:07:26Z" + }, + { + "architecture": "s390x", + "download_count": 1567, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "991f8df53079378782b9de3bbfd4c52a19920ea9ba90e9a54c871ce47b599cdb", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_11.0.12_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 1567, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_11.0.12_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "size": 200393575 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:07:31Z" + }, + { + "architecture": "x64", + "download_count": 27364, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "4c2d776f69e3ff7d01cd57c0938b7a7f058264425faf18e3708b905e93f915c4", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_11.0.12_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 27364, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_11.0.12_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "size": 202156239 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:07:36Z" + } + ], + "download_count": 61477, + "id": "MDc6UmVsZWFzZTQ3MjM4NDA4.Xk3KfzrxRzXZIw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/tag/jdk-11.0.12%2B7_openj9-0.27.0", + "release_name": "jdk-11.0.12+7_openj9-0.27.0", + "release_type": "ga", + "timestamp": "2021-08-03T16:16:45Z", + "updated_at": "2021-08-03T16:16:45Z", + "vendor": "ibm", + "version_data": { + "build": 7, + "major": 11, + "minor": 0, + "openjdk_version": "11.0.12+7", + "security": 12, + "semver": "11.0.12+7" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 328, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "f025af94a65872653baeb6f889ec6d592ce9d92391fa04e82fb68a50b96178a7", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_11.0.12_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 328, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_11.0.12_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "size": 197763167 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:07:13Z" + } + ], + "download_count": 387, + "id": "MDc6UmVsZWFzZTQ3MjM4NDA4.P5vAkWZRL+vIuA==", + "release_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/tag/jdk-11.0.12%2B7_openj9-0.27.0", + "release_name": "jdk-11.0.12+7_openj9-0.27.0", + "release_type": "ga", + "timestamp": "2021-08-03T16:16:45Z", + "updated_at": "2021-08-03T16:16:45Z", + "vendor": "ibm", + "version_data": { + "build": 7, + "major": 11, + "minor": 0, + "openjdk_version": "11.0.12-ea+7", + "pre": "ea", + "security": 12, + "semver": "11.0.12-ea+7" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 20, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "82f4b84bf52693c798db943d0f68a5ec912c44dc1137ce627687b7fb6f86645d", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_8u322b06_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 20, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_8u322b06_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_8u322b06_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_8u322b06_openj9-0.30.0.tar.gz", + "size": 113415046 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T04:56:41Z" + }, + { + "architecture": "ppc64le", + "download_count": 77, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "fcc679ac35f33756f88375382ff96f01dea19e15e1edbc202bce5b5f74581f90", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_8u322b06_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 77, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_8u322b06_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_8u322b06_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_8u322b06_openj9-0.30.0.tar.gz", + "size": 116100956 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T04:56:56Z" + }, + { + "architecture": "s390x", + "download_count": 58, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "d479426395696d30b8b215d3d008f897043b8cf6b8f3fced83650693d0b2ab30", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_8u322b06_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 58, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_8u322b06_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_8u322b06_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_8u322b06_openj9-0.30.0.tar.gz", + "size": 114746857 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T04:57:05Z" + }, + { + "architecture": "x64", + "download_count": 934, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "d31ab3c9eab5436d3bb1315d7690d3548c42633edcbd952a625cccc7cb129aad", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_8u322b06_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 934, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_8u322b06_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_8u322b06_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_8u322b06_openj9-0.30.0.tar.gz", + "size": 116002995 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T04:57:12Z" + } + ], + "download_count": 1930, + "id": "MDc6UmVsZWFzZTU4MTU4Nzc2.EnUUTzyeM/7M8Q==", + "release_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/tag/jdk8u322-b06_openj9-0.30.0", + "release_name": "jdk8u322-b06_openj9-0.30.0", + "release_type": "ga", + "timestamp": "2022-01-28T14:13:47Z", + "updated_at": "2022-01-28T14:13:47Z", + "vendor": "ibm", + "version_data": { + "build": 6, + "major": 8, + "minor": 0, + "openjdk_version": "1.8.0_322-b06", + "security": 322, + "semver": "8.0.322+6" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 306, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "055e51b462fac3af198424ab41804959bf769274ebdffef9ac8bf036a9d73b95", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_aarch64_linux_8u312b07_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 306, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_aarch64_linux_8u312b07_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_aarch64_linux_8u312b07_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_8u312b07_openj9-0.29.0.tar.gz", + "size": 113313103 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T15:26:24Z" + }, + { + "architecture": "ppc64le", + "download_count": 332, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "ebd9d0b4e9ecca578b684e080f0c45fa4edb1a4d5f572ea21ff61b301dd7c870", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_ppc64le_linux_8u312b07_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 332, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_ppc64le_linux_8u312b07_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_ppc64le_linux_8u312b07_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_8u312b07_openj9-0.29.0.tar.gz", + "size": 115990151 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T15:26:35Z" + }, + { + "architecture": "s390x", + "download_count": 345, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "6908fb701b5834cbf2e8d6f1345aa29039ab95bc0c125631f310afe1c1715eae", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_s390x_linux_8u312b07_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 345, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_s390x_linux_8u312b07_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_s390x_linux_8u312b07_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_8u312b07_openj9-0.29.0.tar.gz", + "size": 114646513 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T15:26:41Z" + }, + { + "architecture": "x64", + "download_count": 12691, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "c7306112201b45cc8b96e6d6fb3f6de727ddbbb51022cbd9cff98b661e37a510", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_x64_linux_8u312b07_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 12691, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_x64_linux_8u312b07_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_x64_linux_8u312b07_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_8u312b07_openj9-0.29.0.tar.gz", + "size": 115894347 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T15:26:47Z" + } + ], + "download_count": 36633, + "id": "MDc6UmVsZWFzZTUxODc1OTky.ONE85BtmOGD9Uw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/tag/jdk8u312-b07_openj9-0.29.0", + "release_name": "jdk8u312-b07_openj9-0.29.0", + "release_type": "ga", + "timestamp": "2021-10-22T16:14:40Z", + "updated_at": "2021-11-11T16:39:44Z", + "vendor": "ibm", + "version_data": { + "build": 7, + "major": 8, + "minor": 0, + "openjdk_version": "1.8.0_312-b07", + "security": 312, + "semver": "8.0.312+7" + } + }, + { + "binaries": [ + { + "architecture": "ppc64le", + "download_count": 165, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "9aa400cba9fc88f0eb819e633c725258b7def8424a181cb1e949bd457da10065", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.1.tar.gz.sha256.txt", + "download_count": 165, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.1.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.1.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.1.tar.gz", + "size": 115933314 + }, + "project": "jdk", + "scm_ref": "v0.27.1-release", + "updated_at": "2021-09-16T19:53:06Z" + } + ], + "download_count": 331, + "id": "MDc6UmVsZWFzZTQ5NzAzNjIz.ZZ5uD1yix/X1Qg==", + "release_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/tag/jdk8u302-b08_openj9-0.27.1", + "release_name": "jdk8u302-b08_openj9-0.27.1", + "release_type": "ga", + "timestamp": "2021-09-16T19:53:57Z", + "updated_at": "2021-09-16T19:53:57Z", + "vendor": "ibm", + "version_data": { + "build": 8, + "major": 8, + "minor": 0, + "openjdk_version": "1.8.0_302-b08", + "security": 302, + "semver": "8.0.302+8" + } + }, + { + "binaries": [ + { + "architecture": "ppc64le", + "download_count": 168, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "ce3f5f46ed4bcee187a5734d20fa4f7914765026f1ad2799b7020feed22a19ef", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 168, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.0.tar.gz", + "size": 115933990 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:46:14Z" + }, + { + "architecture": "s390x", + "download_count": 188, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "4ae2fff725327937dc9cf74e714a8e349f00fad0f543052bd95a9a79ee99d121", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_8u302b08_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 188, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_8u302b08_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_8u302b08_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_8u302b08_openj9-0.27.0.tar.gz", + "size": 114605370 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:46:19Z" + }, + { + "architecture": "x64", + "download_count": 10381, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "f1fea5d3049754ad13f9b90d90beb9157dbd7e84e00c255c2cef81441f0f348e", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_8u302b08_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 10381, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_8u302b08_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_8u302b08_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_8u302b08_openj9-0.27.0.tar.gz", + "size": 115788440 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:46:24Z" + } + ], + "download_count": 48028, + "id": "MDc6UmVsZWFzZTQ3MjQwNjMy.ZZ5uD1yix/X1Qg==", + "release_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/tag/jdk8u302-b08_openj9-0.27.0", + "release_name": "jdk8u302-b08_openj9-0.27.0", + "release_type": "ga", + "timestamp": "2021-08-03T18:02:49Z", + "updated_at": "2021-08-03T18:02:49Z", + "vendor": "ibm", + "version_data": { + "build": 8, + "major": 8, + "minor": 0, + "openjdk_version": "1.8.0_302-b08", + "security": 302, + "semver": "8.0.302+8" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 109, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "d802b80e8022c81973da0e56056ecd09ce44fc3dad6496aff24a7005e9f5e77e", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_8u302b08_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 109, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_8u302b08_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_8u302b08_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_8u302b08_openj9-0.27.0.tar.gz", + "size": 113208788 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:46:04Z" + } + ], + "download_count": 162, + "id": "MDc6UmVsZWFzZTQ3MjQwNjMy.wiccQXilryXyYQ==", + "release_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/tag/jdk8u302-b08_openj9-0.27.0", + "release_name": "jdk8u302-b08_openj9-0.27.0", + "release_type": "ga", + "timestamp": "2021-08-03T18:02:49Z", + "updated_at": "2021-08-03T18:02:49Z", + "vendor": "ibm", + "version_data": { + "build": 8, + "major": 8, + "minor": 0, + "openjdk_version": "1.8.0_302-ea-b08", + "pre": "ea", + "security": 302, + "semver": "8.0.302-ea+8" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 87, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "50ad0862a4bb395480d65ef936dec083133e741667bc2e9fc2a526b7a22a3508", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_17.0.2_8_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 87, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_17.0.2_8_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "size": 202318708 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T05:11:16Z" + }, + { + "architecture": "ppc64le", + "download_count": 9, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "fca6b34696be3661f95aafe14318c0b7d8b86a0dd0a26ab0d68be1489273e9dc", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_17.0.2_8_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 9, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_17.0.2_8_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "size": 207879163 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T05:11:34Z" + }, + { + "architecture": "s390x", + "download_count": 10, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "a06fb421563952a4fbd12fcd2f4b0c9b9ee22154604553baa8eb0428406ecf1b", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_17.0.2_8_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 10, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_17.0.2_8_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "size": 203657967 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T05:11:42Z" + }, + { + "architecture": "x64", + "download_count": 224, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "784b15f6d5ac5bc83ad9018dd5998854af21d2c468038cc8935abe40cf02f730", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_17.0.2_8_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 224, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.2%2B8_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_17.0.2_8_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_17.0.2_8_openj9-0.30.0.tar.gz", + "size": 207514103 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T05:11:50Z" + } + ], + "download_count": 514, + "id": "RE_kwDOGgIW6M4Dd2_r.qiAvl8XCnvMGWg==", + "release_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/tag/jdk-17.0.2%2B8_openj9-0.30.0", + "release_name": "jdk-17.0.2+8_openj9-0.30.0", + "release_type": "ga", + "timestamp": "2022-01-28T14:12:15Z", + "updated_at": "2022-01-28T14:12:15Z", + "vendor": "ibm", + "version_data": { + "build": 8, + "major": 17, + "minor": 0, + "openjdk_version": "17.0.2+8", + "security": 2, + "semver": "17.0.2+8" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 247, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "7a8ba2ca08e7ceaed2a8d349087184dc4fce57da5ab8e538e82667cf42c1c9cb", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_aarch64_linux_17.0.1_12_openj9-0.29.1.tar.gz.sha256.txt", + "download_count": 247, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_aarch64_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_aarch64_linux_17.0.1_12_openj9-0.29.1.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "size": 202169246 + }, + "project": "jdk", + "scm_ref": "v0.29.1-release", + "updated_at": "2021-12-09T16:17:24Z" + }, + { + "architecture": "ppc64le", + "download_count": 53, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "919a26f4098fd16680388e30fc3ed2056c8b0009205447511ba119f1be07dd08", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_ppc64le_linux_17.0.1_12_openj9-0.29.1.tar.gz.sha256.txt", + "download_count": 53, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_ppc64le_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_ppc64le_linux_17.0.1_12_openj9-0.29.1.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "size": 207687300 + }, + "project": "jdk", + "scm_ref": "v0.29.1-release", + "updated_at": "2021-12-09T16:17:43Z" + }, + { + "architecture": "s390x", + "download_count": 53, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "6cc23f5467e3e339da8d4ce180c537dc3f23d76db83c7d6b1d80c4ce00239fc0", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_s390x_linux_17.0.1_12_openj9-0.29.1.tar.gz.sha256.txt", + "download_count": 53, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_s390x_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_s390x_linux_17.0.1_12_openj9-0.29.1.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "size": 203493613 + }, + "project": "jdk", + "scm_ref": "v0.29.1-release", + "updated_at": "2021-12-09T16:17:52Z" + }, + { + "architecture": "x64", + "download_count": 1391, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "e02870ff175ed131481c4258d5b9069f39add8376e48527a5d4b87dfac196af9", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_x64_linux_17.0.1_12_openj9-0.29.1.tar.gz.sha256.txt", + "download_count": 1391, + "link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_x64_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/download/jdk-17.0.1%2B12_openj9-0.29.1/ibm-semeru-open-jdk_x64_linux_17.0.1_12_openj9-0.29.1.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_17.0.1_12_openj9-0.29.1.tar.gz", + "size": 207287538 + }, + "project": "jdk", + "scm_ref": "v0.29.1-release", + "updated_at": "2021-12-09T16:18:01Z" + } + ], + "download_count": 4164, + "id": "RE_kwDOGgIW6M4DRt0H.NPTs+7PN5sPqSg==", + "release_link": "https://github.com/AdoptOpenJDK/semeru17-binaries/releases/tag/jdk-17.0.1%2B12_openj9-0.29.1", + "release_name": "jdk-17.0.1+12_openj9-0.29.1", + "release_type": "ga", + "timestamp": "2021-12-09T19:35:32Z", + "updated_at": "2021-12-09T19:35:32Z", + "vendor": "ibm", + "version_data": { + "build": 12, + "major": 17, + "minor": 0, + "openjdk_version": "17.0.1+12", + "security": 1, + "semver": "17.0.1+12" + } + }, + { + "binaries": [ + { + "architecture": "ppc64le", + "download_count": 909, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "edc972a824a8c9993b1403eb33a2148f59d1fd8d6faa5e89582be9d518999441", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.1.tar.gz.sha256.txt", + "download_count": 909, + "link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.1.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.1.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.1.tar.gz", + "size": 206335729 + }, + "project": "jdk", + "scm_ref": "v0.27.1-release", + "updated_at": "2021-09-16T20:45:40Z" + } + ], + "download_count": 1520, + "id": "MDc6UmVsZWFzZTQ5NzA2NjE3.thCg2143ldcHOw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/tag/jdk-16.0.2%2B7_openj9-0.27.1", + "release_name": "jdk-16.0.2+7_openj9-0.27.1", + "release_type": "ga", + "timestamp": "2021-09-16T20:46:21Z", + "updated_at": "2021-09-16T20:46:21Z", + "vendor": "ibm", + "version_data": { + "build": 7, + "major": 16, + "minor": 0, + "openjdk_version": "16.0.2+7", + "security": 2, + "semver": "16.0.2+7" + } + }, + { + "binaries": [ + { + "architecture": "ppc64le", + "download_count": 217, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "d5901996f2c0889b2b92de97fed0b36d5068da308be0fbd6c8293a6b6b91634d", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 217, + "link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "size": 206337625 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T17:03:32Z" + }, + { + "architecture": "s390x", + "download_count": 412, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "3a2741a2e14b9934405a6c0b6af9e865687a70814af355e62dd84025707ccfdc", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_16.0.2_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 412, + "link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_16.0.2_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "size": 203152325 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T17:03:38Z" + }, + { + "architecture": "x64", + "download_count": 13739, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "1349eb9a1d9af491a1984d66a80126730357c4a5c4fcbe7112a2c832f6c0886e", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_16.0.2_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 13739, + "link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_16.0.2_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "size": 205317058 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T17:03:46Z" + } + ], + "download_count": 59895, + "id": "MDc6UmVsZWFzZTQ3MjQxNTU3.thCg2143ldcHOw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/tag/jdk-16.0.2%2B7_openj9-0.27.0", + "release_name": "jdk-16.0.2+7_openj9-0.27.0", + "release_type": "ga", + "timestamp": "2021-08-03T17:56:51Z", + "updated_at": "2021-08-03T17:56:51Z", + "vendor": "ibm", + "version_data": { + "build": 7, + "major": 16, + "minor": 0, + "openjdk_version": "16.0.2+7", + "security": 2, + "semver": "16.0.2+7" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 191, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "022cda1210331488c3db3d0d1282ea74467397fdabc34cb482cdfe81c45f6a15", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_16.0.2_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 191, + "link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/download/jdk-16.0.2%2B7_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_16.0.2_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_16.0.2_7_openj9-0.27.0.tar.gz", + "size": 200907027 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T17:03:20Z" + } + ], + "download_count": 304, + "id": "MDc6UmVsZWFzZTQ3MjQxNTU3.bCP9NcEAVyL3kw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru16-binaries/releases/tag/jdk-16.0.2%2B7_openj9-0.27.0", + "release_name": "jdk-16.0.2+7_openj9-0.27.0", + "release_type": "ga", + "timestamp": "2021-08-03T17:56:51Z", + "updated_at": "2021-08-03T17:56:51Z", + "vendor": "ibm", + "version_data": { + "build": 7, + "major": 16, + "minor": 0, + "openjdk_version": "16.0.2-ea+7", + "pre": "ea", + "security": 2, + "semver": "16.0.2-ea+7" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 22, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "5411e55aa50862c396f8f01ae6f84822b13a18138813a1831310adc926b58c37", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_11.0.14_9_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 22, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_11.0.14_9_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "size": 197962280 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T07:14:39Z" + }, + { + "architecture": "ppc64le", + "download_count": 86, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "9237ba2b221c523bc4ce4fdebcc5ad508801cfe7cbeae0f8f2897c120f8c1683", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.14_9_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 86, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.14_9_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "size": 203330982 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T07:14:55Z" + }, + { + "architecture": "s390x", + "download_count": 58, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "49adc9ea3ab77e7319ef1e9cd7937a227a3e4d650f99a539c59a05f3915cee99", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_11.0.14_9_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 58, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_11.0.14_9_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "size": 200096167 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T07:15:03Z" + }, + { + "architecture": "x64", + "download_count": 1223, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "17a4841299a17b84dcfecbb568a28e8ab2ebfb37320e642dfa2cc8758cda48e3", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_11.0.14_9_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 1223, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_11.0.14_9_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_11.0.14_9_openj9-0.30.0.tar.gz", + "size": 202536056 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T07:15:11Z" + } + ], + "download_count": 1988, + "id": "MDc6UmVsZWFzZTU4MTYyODc1.RKbT1cigFXPSvw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/tag/jdk-11.0.14%2B9_openj9-0.30.0", + "release_name": "jdk-11.0.14+9_openj9-0.30.0", + "release_type": "ga", + "timestamp": "2022-01-28T14:13:43Z", + "updated_at": "2022-01-28T14:13:43Z", + "vendor": "ibm", + "version_data": { + "build": 9, + "major": 11, + "minor": 0, + "openjdk_version": "11.0.14+9", + "security": 14, + "semver": "11.0.14+9" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 350, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "151dca23e1fdb43eaa60631c96895be9aa7bb751e7fdf88ddffa1c32157fb417", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_aarch64_linux_11.0.13_8_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 350, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_aarch64_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_aarch64_linux_11.0.13_8_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "size": 197781632 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T14:35:04Z" + }, + { + "architecture": "ppc64le", + "download_count": 559, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "7b304c52974f51611b45a2ab7949503e33a204b8a4ae705eb3c74789350174d3", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.13_8_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 559, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.13_8_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "size": 203079177 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T14:35:22Z" + }, + { + "architecture": "s390x", + "download_count": 705, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "6c3ebb4af0f4066e721e1f0078438458775f4b93bfd2d0be1066c54ccf015654", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_s390x_linux_11.0.13_8_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 705, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_s390x_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_s390x_linux_11.0.13_8_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "size": 199870826 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T14:35:30Z" + }, + { + "architecture": "x64", + "download_count": 23275, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "3975e2732cf632ca8f41c237ba7e033fd96bda262b79861f83b4e2ac62c90c3d", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_x64_linux_11.0.13_8_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 23275, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_x64_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jdk_x64_linux_11.0.13_8_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_11.0.13_8_openj9-0.29.0.tar.gz", + "size": 202193589 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T14:35:38Z" + } + ], + "download_count": 41804, + "id": "MDc6UmVsZWFzZTUxODcxNDUz.DrSSnWfQGA0+fw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/tag/jdk-11.0.13%2B8_openj9-0.29.0", + "release_name": "jdk-11.0.13+8_openj9-0.29.0", + "release_type": "ga", + "timestamp": "2021-10-22T16:14:14Z", + "updated_at": "2021-11-11T16:27:32Z", + "vendor": "ibm", + "version_data": { + "build": 8, + "major": 11, + "minor": 0, + "openjdk_version": "11.0.13+8", + "security": 13, + "semver": "11.0.13+8" + } + }, + { + "binaries": [ + { + "architecture": "ppc64le", + "download_count": 248, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "4465df8798e84d62dd951a10913e817a9611856fa64166691bb30182402dec4f", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.1.tar.gz.sha256.txt", + "download_count": 248, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.1.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.1.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.1.tar.gz", + "size": 203028556 + }, + "project": "jdk", + "scm_ref": "v0.27.1-release", + "updated_at": "2021-09-16T20:38:36Z" + } + ], + "download_count": 472, + "id": "MDc6UmVsZWFzZTQ5NzA2MTQx.Xk3KfzrxRzXZIw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/tag/jdk-11.0.12%2B7_openj9-0.27.1", + "release_name": "jdk-11.0.12+7_openj9-0.27.1", + "release_type": "ga", + "timestamp": "2021-09-16T20:39:08Z", + "updated_at": "2021-09-16T20:39:08Z", + "vendor": "ibm", + "version_data": { + "build": 7, + "major": 11, + "minor": 0, + "openjdk_version": "11.0.12+7", + "security": 12, + "semver": "11.0.12+7" + } + }, + { + "binaries": [ + { + "architecture": "ppc64le", + "download_count": 362, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "7d49a5b29a84831526f7bffaaee399ac9a26d05712ac4b9cb7ca0a370ed3f020", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 362, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "size": 203013889 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:07:26Z" + }, + { + "architecture": "s390x", + "download_count": 1567, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "991f8df53079378782b9de3bbfd4c52a19920ea9ba90e9a54c871ce47b599cdb", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_11.0.12_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 1567, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_11.0.12_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "size": 200393575 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:07:31Z" + }, + { + "architecture": "x64", + "download_count": 27364, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "4c2d776f69e3ff7d01cd57c0938b7a7f058264425faf18e3708b905e93f915c4", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_11.0.12_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 27364, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_11.0.12_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "size": 202156239 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:07:36Z" + } + ], + "download_count": 61477, + "id": "MDc6UmVsZWFzZTQ3MjM4NDA4.Xk3KfzrxRzXZIw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/tag/jdk-11.0.12%2B7_openj9-0.27.0", + "release_name": "jdk-11.0.12+7_openj9-0.27.0", + "release_type": "ga", + "timestamp": "2021-08-03T16:16:45Z", + "updated_at": "2021-08-03T16:16:45Z", + "vendor": "ibm", + "version_data": { + "build": 7, + "major": 11, + "minor": 0, + "openjdk_version": "11.0.12+7", + "security": 12, + "semver": "11.0.12+7" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 328, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "f025af94a65872653baeb6f889ec6d592ce9d92391fa04e82fb68a50b96178a7", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_11.0.12_7_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 328, + "link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_11.0.12_7_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_11.0.12_7_openj9-0.27.0.tar.gz", + "size": 197763167 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:07:13Z" + } + ], + "download_count": 387, + "id": "MDc6UmVsZWFzZTQ3MjM4NDA4.P5vAkWZRL+vIuA==", + "release_link": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/tag/jdk-11.0.12%2B7_openj9-0.27.0", + "release_name": "jdk-11.0.12+7_openj9-0.27.0", + "release_type": "ga", + "timestamp": "2021-08-03T16:16:45Z", + "updated_at": "2021-08-03T16:16:45Z", + "vendor": "ibm", + "version_data": { + "build": 7, + "major": 11, + "minor": 0, + "openjdk_version": "11.0.12-ea+7", + "pre": "ea", + "security": 12, + "semver": "11.0.12-ea+7" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 20, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "82f4b84bf52693c798db943d0f68a5ec912c44dc1137ce627687b7fb6f86645d", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_8u322b06_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 20, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_8u322b06_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_aarch64_linux_8u322b06_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_8u322b06_openj9-0.30.0.tar.gz", + "size": 113415046 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T04:56:41Z" + }, + { + "architecture": "ppc64le", + "download_count": 77, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "fcc679ac35f33756f88375382ff96f01dea19e15e1edbc202bce5b5f74581f90", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_8u322b06_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 77, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_8u322b06_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_ppc64le_linux_8u322b06_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_8u322b06_openj9-0.30.0.tar.gz", + "size": 116100956 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T04:56:56Z" + }, + { + "architecture": "s390x", + "download_count": 58, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "d479426395696d30b8b215d3d008f897043b8cf6b8f3fced83650693d0b2ab30", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_8u322b06_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 58, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_8u322b06_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_s390x_linux_8u322b06_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_8u322b06_openj9-0.30.0.tar.gz", + "size": 114746857 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T04:57:05Z" + }, + { + "architecture": "x64", + "download_count": 934, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "d31ab3c9eab5436d3bb1315d7690d3548c42633edcbd952a625cccc7cb129aad", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_8u322b06_openj9-0.30.0.tar.gz.sha256.txt", + "download_count": 934, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_8u322b06_openj9-0.30.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jdk_x64_linux_8u322b06_openj9-0.30.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_8u322b06_openj9-0.30.0.tar.gz", + "size": 116002995 + }, + "project": "jdk", + "scm_ref": "v0.30.0-release", + "updated_at": "2022-01-28T04:57:12Z" + } + ], + "download_count": 1930, + "id": "MDc6UmVsZWFzZTU4MTU4Nzc2.EnUUTzyeM/7M8Q==", + "release_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/tag/jdk8u322-b06_openj9-0.30.0", + "release_name": "jdk8u322-b06_openj9-0.30.0", + "release_type": "ga", + "timestamp": "2022-01-28T14:13:47Z", + "updated_at": "2022-01-28T14:13:47Z", + "vendor": "ibm", + "version_data": { + "build": 6, + "major": 8, + "minor": 0, + "openjdk_version": "1.8.0_322-b06", + "security": 322, + "semver": "8.0.322+6" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 306, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "055e51b462fac3af198424ab41804959bf769274ebdffef9ac8bf036a9d73b95", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_aarch64_linux_8u312b07_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 306, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_aarch64_linux_8u312b07_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_aarch64_linux_8u312b07_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_8u312b07_openj9-0.29.0.tar.gz", + "size": 113313103 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T15:26:24Z" + }, + { + "architecture": "ppc64le", + "download_count": 332, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "ebd9d0b4e9ecca578b684e080f0c45fa4edb1a4d5f572ea21ff61b301dd7c870", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_ppc64le_linux_8u312b07_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 332, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_ppc64le_linux_8u312b07_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_ppc64le_linux_8u312b07_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_8u312b07_openj9-0.29.0.tar.gz", + "size": 115990151 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T15:26:35Z" + }, + { + "architecture": "s390x", + "download_count": 345, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "6908fb701b5834cbf2e8d6f1345aa29039ab95bc0c125631f310afe1c1715eae", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_s390x_linux_8u312b07_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 345, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_s390x_linux_8u312b07_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_s390x_linux_8u312b07_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_8u312b07_openj9-0.29.0.tar.gz", + "size": 114646513 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T15:26:41Z" + }, + { + "architecture": "x64", + "download_count": 12691, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "c7306112201b45cc8b96e6d6fb3f6de727ddbbb51022cbd9cff98b661e37a510", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_x64_linux_8u312b07_openj9-0.29.0.tar.gz.sha256.txt", + "download_count": 12691, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_x64_linux_8u312b07_openj9-0.29.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jdk_x64_linux_8u312b07_openj9-0.29.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_8u312b07_openj9-0.29.0.tar.gz", + "size": 115894347 + }, + "project": "jdk", + "scm_ref": "v0.29.0-release", + "updated_at": "2021-10-22T15:26:47Z" + } + ], + "download_count": 36633, + "id": "MDc6UmVsZWFzZTUxODc1OTky.ONE85BtmOGD9Uw==", + "release_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/tag/jdk8u312-b07_openj9-0.29.0", + "release_name": "jdk8u312-b07_openj9-0.29.0", + "release_type": "ga", + "timestamp": "2021-10-22T16:14:40Z", + "updated_at": "2021-11-11T16:39:44Z", + "vendor": "ibm", + "version_data": { + "build": 7, + "major": 8, + "minor": 0, + "openjdk_version": "1.8.0_312-b07", + "security": 312, + "semver": "8.0.312+7" + } + }, + { + "binaries": [ + { + "architecture": "ppc64le", + "download_count": 165, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "9aa400cba9fc88f0eb819e633c725258b7def8424a181cb1e949bd457da10065", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.1.tar.gz.sha256.txt", + "download_count": 165, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.1.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.1/ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.1.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.1.tar.gz", + "size": 115933314 + }, + "project": "jdk", + "scm_ref": "v0.27.1-release", + "updated_at": "2021-09-16T19:53:06Z" + } + ], + "download_count": 331, + "id": "MDc6UmVsZWFzZTQ5NzAzNjIz.ZZ5uD1yix/X1Qg==", + "release_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/tag/jdk8u302-b08_openj9-0.27.1", + "release_name": "jdk8u302-b08_openj9-0.27.1", + "release_type": "ga", + "timestamp": "2021-09-16T19:53:57Z", + "updated_at": "2021-09-16T19:53:57Z", + "vendor": "ibm", + "version_data": { + "build": 8, + "major": 8, + "minor": 0, + "openjdk_version": "1.8.0_302-b08", + "security": 302, + "semver": "8.0.302+8" + } + }, + { + "binaries": [ + { + "architecture": "ppc64le", + "download_count": 168, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "ce3f5f46ed4bcee187a5734d20fa4f7914765026f1ad2799b7020feed22a19ef", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 168, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_ppc64le_linux_8u302b08_openj9-0.27.0.tar.gz", + "size": 115933990 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:46:14Z" + }, + { + "architecture": "s390x", + "download_count": 188, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "4ae2fff725327937dc9cf74e714a8e349f00fad0f543052bd95a9a79ee99d121", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_8u302b08_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 188, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_8u302b08_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_s390x_linux_8u302b08_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_s390x_linux_8u302b08_openj9-0.27.0.tar.gz", + "size": 114605370 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:46:19Z" + }, + { + "architecture": "x64", + "download_count": 10381, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "f1fea5d3049754ad13f9b90d90beb9157dbd7e84e00c255c2cef81441f0f348e", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_8u302b08_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 10381, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_8u302b08_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_x64_linux_8u302b08_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_x64_linux_8u302b08_openj9-0.27.0.tar.gz", + "size": 115788440 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:46:24Z" + } + ], + "download_count": 48028, + "id": "MDc6UmVsZWFzZTQ3MjQwNjMy.ZZ5uD1yix/X1Qg==", + "release_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/tag/jdk8u302-b08_openj9-0.27.0", + "release_name": "jdk8u302-b08_openj9-0.27.0", + "release_type": "ga", + "timestamp": "2021-08-03T18:02:49Z", + "updated_at": "2021-08-03T18:02:49Z", + "vendor": "ibm", + "version_data": { + "build": 8, + "major": 8, + "minor": 0, + "openjdk_version": "1.8.0_302-b08", + "security": 302, + "semver": "8.0.302+8" + } + }, + { + "binaries": [ + { + "architecture": "aarch64", + "download_count": 109, + "heap_size": "normal", + "image_type": "jdk", + "jvm_impl": "openj9", + "os": "linux", + "package": { + "checksum": "d802b80e8022c81973da0e56056ecd09ce44fc3dad6496aff24a7005e9f5e77e", + "checksum_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_8u302b08_openj9-0.27.0.tar.gz.sha256.txt", + "download_count": 109, + "link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_8u302b08_openj9-0.27.0.tar.gz", + "metadata_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jdk_aarch64_linux_8u302b08_openj9-0.27.0.tar.gz.json", + "name": "ibm-semeru-open-jdk_aarch64_linux_8u302b08_openj9-0.27.0.tar.gz", + "size": 113208788 + }, + "project": "jdk", + "scm_ref": "v0.27.0-release", + "updated_at": "2021-08-03T16:46:04Z" + } + ], + "download_count": 162, + "id": "MDc6UmVsZWFzZTQ3MjQwNjMy.wiccQXilryXyYQ==", + "release_link": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/tag/jdk8u302-b08_openj9-0.27.0", + "release_name": "jdk8u302-b08_openj9-0.27.0", + "release_type": "ga", + "timestamp": "2021-08-03T18:02:49Z", + "updated_at": "2021-08-03T18:02:49Z", + "vendor": "ibm", + "version_data": { + "build": 8, + "major": 8, + "minor": 0, + "openjdk_version": "1.8.0_302-ea-b08", + "pre": "ea", + "security": 302, + "semver": "8.0.302-ea+8" + } + } +] diff --git a/__tests__/data/zulu-linux.json b/__tests__/data/zulu-linux.json new file mode 100644 index 000000000..1f2fa2716 --- /dev/null +++ b/__tests__/data/zulu-linux.json @@ -0,0 +1,254 @@ +[ + { + "id": 10996, + "url": "https://cdn.azul.com/zulu/bin/zulu1.8.0_05-8.1.0.10-linux.tar.gz", + "name": "zulu1.8.0_05-8.1.0.10-linux.tar.gz", + "zulu_version": [8, 1, 0, 10], + "jdk_version": [8, 0, 5, 13] + }, + { + "id": 10997, + "url": "https://cdn.azul.com/zulu/bin/zulu1.8.0_11-8.2.0.1-linux.tar.gz", + "name": "zulu1.8.0_11-8.2.0.1-linux.tar.gz", + "zulu_version": [8, 2, 0, 1], + "jdk_version": [8, 0, 11, 12] + }, + { + "id": 10346, + "url": "https://cdn.azul.com/zulu/bin/zulu8.21.0.1-jdk8.0.131-linux_x64.tar.gz", + "name": "zulu8.21.0.1-jdk8.0.131-linux_x64.tar.gz", + "zulu_version": [8, 21, 0, 1], + "jdk_version": [8, 0, 131, 11] + }, + { + "id": 10362, + "url": "https://cdn.azul.com/zulu/bin/zulu8.23.0.3-jdk8.0.144-linux_x64.tar.gz", + "name": "zulu8.23.0.3-jdk8.0.144-linux_x64.tar.gz", + "zulu_version": [8, 23, 0, 3], + "jdk_version": [8, 0, 144, 1] + }, + { + "id": 10399, + "url": "https://cdn.azul.com/zulu/bin/zulu8.25.0.1-jdk8.0.152-linux_x64.tar.gz", + "name": "zulu8.25.0.1-jdk8.0.152-linux_x64.tar.gz", + "zulu_version": [8, 25, 0, 1], + "jdk_version": [8, 0, 152, 16] + }, + { + "id": 11355, + "url": "https://cdn.azul.com/zulu/bin/zulu8.46.0.19-ca-jdk8.0.252-linux_x64.tar.gz", + "name": "zulu8.46.0.19-ca-jdk8.0.252-linux_x64.tar.gz", + "zulu_version": [8, 46, 0, 19], + "jdk_version": [8, 0, 252, 14] + }, + { + "id": 11481, + "url": "https://cdn.azul.com/zulu/bin/zulu8.48.0.47-ca-jdk8.0.262-linux_x64.tar.gz", + "name": "zulu8.48.0.47-ca-jdk8.0.262-linux_x64.tar.gz", + "zulu_version": [8, 48, 0, 47], + "jdk_version": [8, 0, 262, 17] + }, + { + "id": 11622, + "url": "https://cdn.azul.com/zulu/bin/zulu8.48.0.51-ca-jdk8.0.262-linux_x64.tar.gz", + "name": "zulu8.48.0.51-ca-jdk8.0.262-linux_x64.tar.gz", + "zulu_version": [8, 48, 0, 51], + "jdk_version": [8, 0, 262, 19] + }, + { + "id": 11535, + "url": "https://cdn.azul.com/zulu/bin/zulu8.48.0.49-ca-jdk8.0.262-linux_x64.tar.gz", + "name": "zulu8.48.0.49-ca-jdk8.0.262-linux_x64.tar.gz", + "zulu_version": [8, 48, 0, 49], + "jdk_version": [8, 0, 262, 18] + }, + { + "id": 12424, + "url": "https://cdn.azul.com/zulu/bin/zulu8.52.0.23-ca-jdk8.0.282-linux_x64.tar.gz", + "name": "zulu8.52.0.23-ca-jdk8.0.282-linux_x64.tar.gz", + "zulu_version": [8, 52, 0, 23], + "jdk_version": [8, 0, 282, 8] + }, + { + "id": 10383, + "url": "https://cdn.azul.com/zulu/bin/zulu9.0.0.15-jdk9.0.0-linux_x64.tar.gz", + "name": "zulu9.0.0.15-jdk9.0.0-linux_x64.tar.gz", + "zulu_version": [9, 0, 0, 15], + "jdk_version": [9, 0, 0, 0] + }, + { + "id": 10413, + "url": "https://cdn.azul.com/zulu/bin/zulu9.0.1.3-jdk9.0.1-linux_x64.tar.gz", + "name": "zulu9.0.1.3-jdk9.0.1-linux_x64.tar.gz", + "zulu_version": [9, 0, 1, 3], + "jdk_version": [9, 0, 1, 0] + }, + { + "id": 10503, + "url": "https://cdn.azul.com/zulu/bin/zulu10.2+3-jdk10.0.1-linux_x64.tar.gz", + "name": "zulu10.2+3-jdk10.0.1-linux_x64.tar.gz", + "zulu_version": [10, 2, 3, 0], + "jdk_version": [10, 0, 1, 9] + }, + { + "id": 10541, + "url": "https://cdn.azul.com/zulu/bin/zulu10.3+5-jdk10.0.2-linux_x64.tar.gz", + "name": "zulu10.3+5-jdk10.0.2-linux_x64.tar.gz", + "zulu_version": [10, 3, 5, 0], + "jdk_version": [10, 0, 2, 13] + }, + { + "id": 10576, + "url": "https://cdn.azul.com/zulu/bin/zulu11.2.3-jdk11.0.1-linux_x64.tar.gz", + "name": "zulu11.2.3-jdk11.0.1-linux_x64.tar.gz", + "zulu_version": [11, 2, 3, 0], + "jdk_version": [11, 0, 1, 13] + }, + { + "id": 10604, + "url": "https://cdn.azul.com/zulu/bin/zulu11.29.3-ca-jdk11.0.2-linux_x64.tar.gz", + "name": "zulu11.29.3-ca-jdk11.0.2-linux_x64.tar.gz", + "zulu_version": [11, 29, 3, 0], + "jdk_version": [11, 0, 2, 7] + }, + { + "id": 10687, + "url": "https://cdn.azul.com/zulu/bin/zulu11.31.11-ca-jdk11.0.3-linux_x64.tar.gz", + "name": "zulu11.31.11-ca-jdk11.0.3-linux_x64.tar.gz", + "zulu_version": [11, 31, 11, 0], + "jdk_version": [11, 0, 3, 7] + }, + { + "id": 10856, + "url": "https://cdn.azul.com/zulu/bin/zulu11.35.13-ca-jdk11.0.5-linux_x64.tar.gz", + "name": "zulu11.35.13-ca-jdk11.0.5-linux_x64.tar.gz", + "zulu_version": [11, 35, 13, 0], + "jdk_version": [11, 0, 5, 10] + }, + { + "id": 10933, + "url": "https://cdn.azul.com/zulu/bin/zulu11.35.15-ca-jdk11.0.5-linux_x64.tar.gz", + "name": "zulu11.35.15-ca-jdk11.0.5-linux_x64.tar.gz", + "zulu_version": [11, 35, 15, 0], + "jdk_version": [11, 0, 5, 10] + }, + { + "id": 10933, + "url": "https://cdn.azul.com/zulu/bin/zulu11.35.11-ca-jdk11.0.5-linux_x64.tar.gz", + "name": "zulu11.35.15-ca-jdk11.0.5-linux_x64.tar.gz", + "zulu_version": [11, 35, 11, 0], + "jdk_version": [11, 0, 5, 10] + }, + { + "id": 12397, + "url": "https://cdn.azul.com/zulu/bin/zulu11.45.27-ca-jdk11.0.10-linux_x64.tar.gz", + "name": "zulu11.45.27-ca-jdk11.0.10-linux_x64.tar.gz", + "zulu_version": [11, 45, 27, 0], + "jdk_version": [11, 0, 10, 9] + }, + { + "id": 10667, + "url": "https://cdn.azul.com/zulu/bin/zulu12.1.3-ca-jdk12.0.0-linux_x64.tar.gz", + "name": "zulu12.1.3-ca-jdk12.0.0-linux_x64.tar.gz", + "zulu_version": [12, 1, 3, 0], + "jdk_version": [12, 0, 0, 33] + }, + { + "id": 10710, + "url": "https://cdn.azul.com/zulu/bin/zulu12.2.3-ca-jdk12.0.1-linux_x64.tar.gz", + "name": "zulu12.2.3-ca-jdk12.0.1-linux_x64.tar.gz", + "zulu_version": [12, 2, 3, 0], + "jdk_version": [12, 0, 1, 12] + }, + { + "id": 10780, + "url": "https://cdn.azul.com/zulu/bin/zulu12.3.11-ca-jdk12.0.2-linux_x64.tar.gz", + "name": "zulu12.3.11-ca-jdk12.0.2-linux_x64.tar.gz", + "zulu_version": [12, 3, 11, 0], + "jdk_version": [12, 0, 2, 3] + }, + { + "id": 10846, + "url": "https://cdn.azul.com/zulu/bin/zulu13.27.9-ca-jdk13.0.0-linux_x64.tar.gz", + "name": "zulu13.27.9-ca-jdk13.0.0-linux_x64.tar.gz", + "zulu_version": [13, 27, 9, 0], + "jdk_version": [13, 0, 0, 33] + }, + { + "id": 10888, + "url": "https://cdn.azul.com/zulu/bin/zulu13.28.11-ca-jdk13.0.1-linux_x64.tar.gz", + "name": "zulu13.28.11-ca-jdk13.0.1-linux_x64.tar.gz", + "zulu_version": [13, 28, 11, 0], + "jdk_version": [13, 0, 1, 10] + }, + { + "id": 11073, + "url": "https://cdn.azul.com/zulu/bin/zulu13.29.9-ca-jdk13.0.2-linux_x64.tar.gz", + "name": "zulu13.29.9-ca-jdk13.0.2-linux_x64.tar.gz", + "zulu_version": [13, 29, 9, 0], + "jdk_version": [13, 0, 2, 6] + }, + { + "id": 12408, + "url": "https://cdn.azul.com/zulu/bin/zulu13.37.21-ca-jdk13.0.6-linux_x64.tar.gz", + "name": "zulu13.37.21-ca-jdk13.0.6-linux_x64.tar.gz", + "zulu_version": [13, 37, 21, 0], + "jdk_version": [13, 0, 6, 5] + }, + { + "id": 11236, + "url": "https://cdn.azul.com/zulu/bin/zulu14.27.1-ca-jdk14.0.0-linux_x64.tar.gz", + "name": "zulu14.27.1-ca-jdk14.0.0-linux_x64.tar.gz", + "zulu_version": [14, 27, 1, 0], + "jdk_version": [14, 0, 0, 36] + }, + { + "id": 11349, + "url": "https://cdn.azul.com/zulu/bin/zulu14.28.21-ca-jdk14.0.1-linux_x64.tar.gz", + "name": "zulu14.28.21-ca-jdk14.0.1-linux_x64.tar.gz", + "zulu_version": [14, 28, 21, 0], + "jdk_version": [14, 0, 1, 8] + }, + { + "id": 11513, + "url": "https://cdn.azul.com/zulu/bin/zulu14.29.23-ca-jdk14.0.2-linux_x64.tar.gz", + "name": "zulu14.29.23-ca-jdk14.0.2-linux_x64.tar.gz", + "zulu_version": [14, 29, 23, 0], + "jdk_version": [14, 0, 2, 12] + }, + { + "id": 11780, + "url": "https://cdn.azul.com/zulu/bin/zulu15.27.17-ca-jdk15.0.0-linux_x64.tar.gz", + "name": "zulu15.27.17-ca-jdk15.0.0-linux_x64.tar.gz", + "zulu_version": [15, 27, 17, 0], + "jdk_version": [15, 0, 0, 36] + }, + { + "id": 11924, + "url": "https://cdn.azul.com/zulu/bin/zulu15.28.13-ca-jdk15.0.1-linux_x64.tar.gz", + "name": "zulu15.28.13-ca-jdk15.0.1-linux_x64.tar.gz", + "zulu_version": [15, 28, 13, 0], + "jdk_version": [15, 0, 1, 8] + }, + { + "id": 12101, + "url": "https://cdn.azul.com/zulu/bin/zulu15.28.51-ca-jdk15.0.1-linux_x64.tar.gz", + "name": "zulu15.28.51-ca-jdk15.0.1-linux_x64.tar.gz", + "zulu_version": [15, 28, 51, 0], + "jdk_version": [15, 0, 1, 9] + }, + { + "id": 12445, + "url": "https://cdn.azul.com/zulu/bin/zulu15.29.15-ca-jdk15.0.2-linux_x64.tar.gz", + "name": "zulu15.29.15-ca-jdk15.0.2-linux_x64.tar.gz", + "zulu_version": [15, 29, 15, 0], + "jdk_version": [15, 0, 2, 7] + }, + { + "id": 12447, + "url": "https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-linux_aarch64.tar.gz", + "name": "zulu21.32.17-ca-jdk21.0.2-linux_aarch64.tar.gz", + "zulu_version": [21, 32, 17, 0], + "jdk_version": [21, 0, 2, 6] + } +] \ No newline at end of file diff --git a/__tests__/data/zulu-windows.json b/__tests__/data/zulu-windows.json new file mode 100644 index 000000000..e4ce99538 --- /dev/null +++ b/__tests__/data/zulu-windows.json @@ -0,0 +1,254 @@ +[ + { + "id": 10996, + "url": "https://cdn.azul.com/zulu/bin/zulu1.8.0_05-8.1.0.10-windows.tar.gz", + "name": "zulu1.8.0_05-8.1.0.10-windows.tar.gz", + "zulu_version": [8, 1, 0, 10], + "jdk_version": [8, 0, 5, 13] + }, + { + "id": 10997, + "url": "https://cdn.azul.com/zulu/bin/zulu1.8.0_11-8.2.0.1-windows.tar.gz", + "name": "zulu1.8.0_11-8.2.0.1-windows.tar.gz", + "zulu_version": [8, 2, 0, 1], + "jdk_version": [8, 0, 11, 12] + }, + { + "id": 10346, + "url": "https://cdn.azul.com/zulu/bin/zulu8.21.0.1-jdk8.0.131-windows_x64.tar.gz", + "name": "zulu8.21.0.1-jdk8.0.131-windows_x64.tar.gz", + "zulu_version": [8, 21, 0, 1], + "jdk_version": [8, 0, 131, 11] + }, + { + "id": 10362, + "url": "https://cdn.azul.com/zulu/bin/zulu8.23.0.3-jdk8.0.144-windows_x64.tar.gz", + "name": "zulu8.23.0.3-jdk8.0.144-windows_x64.tar.gz", + "zulu_version": [8, 23, 0, 3], + "jdk_version": [8, 0, 144, 1] + }, + { + "id": 10399, + "url": "https://cdn.azul.com/zulu/bin/zulu8.25.0.1-jdk8.0.152-windows_x64.tar.gz", + "name": "zulu8.25.0.1-jdk8.0.152-windows_x64.tar.gz", + "zulu_version": [8, 25, 0, 1], + "jdk_version": [8, 0, 152, 16] + }, + { + "id": 11355, + "url": "https://cdn.azul.com/zulu/bin/zulu8.46.0.19-ca-jdk8.0.252-windows_x64.tar.gz", + "name": "zulu8.46.0.19-ca-jdk8.0.252-windows_x64.tar.gz", + "zulu_version": [8, 46, 0, 19], + "jdk_version": [8, 0, 252, 14] + }, + { + "id": 11481, + "url": "https://cdn.azul.com/zulu/bin/zulu8.48.0.47-ca-jdk8.0.262-windows_x64.tar.gz", + "name": "zulu8.48.0.47-ca-jdk8.0.262-windows_x64.tar.gz", + "zulu_version": [8, 48, 0, 47], + "jdk_version": [8, 0, 262, 17] + }, + { + "id": 11622, + "url": "https://cdn.azul.com/zulu/bin/zulu8.48.0.51-ca-jdk8.0.262-windows_x64.tar.gz", + "name": "zulu8.48.0.51-ca-jdk8.0.262-windows_x64.tar.gz", + "zulu_version": [8, 48, 0, 51], + "jdk_version": [8, 0, 262, 19] + }, + { + "id": 11535, + "url": "https://cdn.azul.com/zulu/bin/zulu8.48.0.49-ca-jdk8.0.262-windows_x64.tar.gz", + "name": "zulu8.48.0.49-ca-jdk8.0.262-windows_x64.tar.gz", + "zulu_version": [8, 48, 0, 49], + "jdk_version": [8, 0, 262, 18] + }, + { + "id": 12424, + "url": "https://cdn.azul.com/zulu/bin/zulu8.52.0.23-ca-jdk8.0.282-windows_x64.tar.gz", + "name": "zulu8.52.0.23-ca-jdk8.0.282-windows_x64.tar.gz", + "zulu_version": [8, 52, 0, 23], + "jdk_version": [8, 0, 282, 8] + }, + { + "id": 10383, + "url": "https://cdn.azul.com/zulu/bin/zulu9.0.0.15-jdk9.0.0-windows_x64.tar.gz", + "name": "zulu9.0.0.15-jdk9.0.0-windows_x64.tar.gz", + "zulu_version": [9, 0, 0, 15], + "jdk_version": [9, 0, 0, 0] + }, + { + "id": 10413, + "url": "https://cdn.azul.com/zulu/bin/zulu9.0.1.3-jdk9.0.1-windows_x64.tar.gz", + "name": "zulu9.0.1.3-jdk9.0.1-windows_x64.tar.gz", + "zulu_version": [9, 0, 1, 3], + "jdk_version": [9, 0, 1, 0] + }, + { + "id": 10503, + "url": "https://cdn.azul.com/zulu/bin/zulu10.2+3-jdk10.0.1-windows_x64.tar.gz", + "name": "zulu10.2+3-jdk10.0.1-windows_x64.tar.gz", + "zulu_version": [10, 2, 3, 0], + "jdk_version": [10, 0, 1, 9] + }, + { + "id": 10541, + "url": "https://cdn.azul.com/zulu/bin/zulu10.3+5-jdk10.0.2-windows_x64.tar.gz", + "name": "zulu10.3+5-jdk10.0.2-windows_x64.tar.gz", + "zulu_version": [10, 3, 5, 0], + "jdk_version": [10, 0, 2, 13] + }, + { + "id": 10576, + "url": "https://cdn.azul.com/zulu/bin/zulu11.2.3-jdk11.0.1-windows_x64.tar.gz", + "name": "zulu11.2.3-jdk11.0.1-windows_x64.tar.gz", + "zulu_version": [11, 2, 3, 0], + "jdk_version": [11, 0, 1, 13] + }, + { + "id": 10604, + "url": "https://cdn.azul.com/zulu/bin/zulu11.29.3-ca-jdk11.0.2-windows_x64.tar.gz", + "name": "zulu11.29.3-ca-jdk11.0.2-windows_x64.tar.gz", + "zulu_version": [11, 29, 3, 0], + "jdk_version": [11, 0, 2, 7] + }, + { + "id": 10687, + "url": "https://cdn.azul.com/zulu/bin/zulu11.31.11-ca-jdk11.0.3-windows_x64.tar.gz", + "name": "zulu11.31.11-ca-jdk11.0.3-windows_x64.tar.gz", + "zulu_version": [11, 31, 11, 0], + "jdk_version": [11, 0, 3, 7] + }, + { + "id": 10856, + "url": "https://cdn.azul.com/zulu/bin/zulu11.35.13-ca-jdk11.0.5-windows_x64.tar.gz", + "name": "zulu11.35.13-ca-jdk11.0.5-windows_x64.tar.gz", + "zulu_version": [11, 35, 13, 0], + "jdk_version": [11, 0, 5, 10] + }, + { + "id": 10933, + "url": "https://cdn.azul.com/zulu/bin/zulu11.35.15-ca-jdk11.0.5-windows_x64.tar.gz", + "name": "zulu11.35.15-ca-jdk11.0.5-windows_x64.tar.gz", + "zulu_version": [11, 35, 15, 0], + "jdk_version": [11, 0, 5, 10] + }, + { + "id": 10933, + "url": "https://cdn.azul.com/zulu/bin/zulu11.35.11-ca-jdk11.0.5-windows_x64.tar.gz", + "name": "zulu11.35.15-ca-jdk11.0.5-windows_x64.tar.gz", + "zulu_version": [11, 35, 11, 0], + "jdk_version": [11, 0, 5, 10] + }, + { + "id": 12397, + "url": "https://cdn.azul.com/zulu/bin/zulu11.45.27-ca-jdk11.0.10-windows_x64.tar.gz", + "name": "zulu11.45.27-ca-jdk11.0.10-windows_x64.tar.gz", + "zulu_version": [11, 45, 27, 0], + "jdk_version": [11, 0, 10, 9] + }, + { + "id": 10667, + "url": "https://cdn.azul.com/zulu/bin/zulu12.1.3-ca-jdk12.0.0-windows_x64.tar.gz", + "name": "zulu12.1.3-ca-jdk12.0.0-windows_x64.tar.gz", + "zulu_version": [12, 1, 3, 0], + "jdk_version": [12, 0, 0, 33] + }, + { + "id": 10710, + "url": "https://cdn.azul.com/zulu/bin/zulu12.2.3-ca-jdk12.0.1-windows_x64.tar.gz", + "name": "zulu12.2.3-ca-jdk12.0.1-windows_x64.tar.gz", + "zulu_version": [12, 2, 3, 0], + "jdk_version": [12, 0, 1, 12] + }, + { + "id": 10780, + "url": "https://cdn.azul.com/zulu/bin/zulu12.3.11-ca-jdk12.0.2-windows_x64.tar.gz", + "name": "zulu12.3.11-ca-jdk12.0.2-windows_x64.tar.gz", + "zulu_version": [12, 3, 11, 0], + "jdk_version": [12, 0, 2, 3] + }, + { + "id": 10846, + "url": "https://cdn.azul.com/zulu/bin/zulu13.27.9-ca-jdk13.0.0-windows_x64.tar.gz", + "name": "zulu13.27.9-ca-jdk13.0.0-windows_x64.tar.gz", + "zulu_version": [13, 27, 9, 0], + "jdk_version": [13, 0, 0, 33] + }, + { + "id": 10888, + "url": "https://cdn.azul.com/zulu/bin/zulu13.28.11-ca-jdk13.0.1-windows_x64.tar.gz", + "name": "zulu13.28.11-ca-jdk13.0.1-windows_x64.tar.gz", + "zulu_version": [13, 28, 11, 0], + "jdk_version": [13, 0, 1, 10] + }, + { + "id": 11073, + "url": "https://cdn.azul.com/zulu/bin/zulu13.29.9-ca-jdk13.0.2-windows_x64.tar.gz", + "name": "zulu13.29.9-ca-jdk13.0.2-windows_x64.tar.gz", + "zulu_version": [13, 29, 9, 0], + "jdk_version": [13, 0, 2, 6] + }, + { + "id": 12408, + "url": "https://cdn.azul.com/zulu/bin/zulu13.37.21-ca-jdk13.0.6-windows_x64.tar.gz", + "name": "zulu13.37.21-ca-jdk13.0.6-windows_x64.tar.gz", + "zulu_version": [13, 37, 21, 0], + "jdk_version": [13, 0, 6, 5] + }, + { + "id": 11236, + "url": "https://cdn.azul.com/zulu/bin/zulu14.27.1-ca-jdk14.0.0-windows_x64.tar.gz", + "name": "zulu14.27.1-ca-jdk14.0.0-windows_x64.tar.gz", + "zulu_version": [14, 27, 1, 0], + "jdk_version": [14, 0, 0, 36] + }, + { + "id": 11349, + "url": "https://cdn.azul.com/zulu/bin/zulu14.28.21-ca-jdk14.0.1-windows_x64.tar.gz", + "name": "zulu14.28.21-ca-jdk14.0.1-windows_x64.tar.gz", + "zulu_version": [14, 28, 21, 0], + "jdk_version": [14, 0, 1, 8] + }, + { + "id": 11513, + "url": "https://cdn.azul.com/zulu/bin/zulu14.29.23-ca-jdk14.0.2-windows_x64.tar.gz", + "name": "zulu14.29.23-ca-jdk14.0.2-windows_x64.tar.gz", + "zulu_version": [14, 29, 23, 0], + "jdk_version": [14, 0, 2, 12] + }, + { + "id": 11780, + "url": "https://cdn.azul.com/zulu/bin/zulu15.27.17-ca-jdk15.0.0-windows_x64.tar.gz", + "name": "zulu15.27.17-ca-jdk15.0.0-windows_x64.tar.gz", + "zulu_version": [15, 27, 17, 0], + "jdk_version": [15, 0, 0, 36] + }, + { + "id": 11924, + "url": "https://cdn.azul.com/zulu/bin/zulu15.28.13-ca-jdk15.0.1-windows_x64.tar.gz", + "name": "zulu15.28.13-ca-jdk15.0.1-windows_x64.tar.gz", + "zulu_version": [15, 28, 13, 0], + "jdk_version": [15, 0, 1, 8] + }, + { + "id": 12101, + "url": "https://cdn.azul.com/zulu/bin/zulu15.28.51-ca-jdk15.0.1-windows_x64.tar.gz", + "name": "zulu15.28.51-ca-jdk15.0.1-windows_x64.tar.gz", + "zulu_version": [15, 28, 51, 0], + "jdk_version": [15, 0, 1, 9] + }, + { + "id": 12445, + "url": "https://cdn.azul.com/zulu/bin/zulu15.29.15-ca-jdk15.0.2-windows_x64.tar.gz", + "name": "zulu15.29.15-ca-jdk15.0.2-windows_x64.tar.gz", + "zulu_version": [15, 29, 15, 0], + "jdk_version": [15, 0, 2, 7] + }, + { + "id": 12446, + "url": "https://cdn.azul.com/zulu/bin/zulu17.48.15-ca-jdk17.0.10-windows_aarch64.zip", + "name": "zulu17.48.15-ca-jdk17.0.10-win_aarhc4.zip", + "zulu_version": [17, 48, 15, 0], + "jdk_version": [17, 0, 10, 7] + } +] \ No newline at end of file diff --git a/__tests__/distributors/adopt-installer.test.ts b/__tests__/distributors/adopt-installer.test.ts index ce862c26f..ff477be05 100644 --- a/__tests__/distributors/adopt-installer.test.ts +++ b/__tests__/distributors/adopt-installer.test.ts @@ -1,12 +1,19 @@ -import { HttpClient } from '@actions/http-client'; +import {HttpClient} from '@actions/http-client'; +import {IAdoptAvailableVersions} from '../../src/distributions/adopt/models'; +import { + AdoptDistribution, + AdoptImplementation +} from '../../src/distributions/adopt/installer'; +import {JavaInstallerOptions} from '../../src/distributions/base-models'; -import { AdoptDistribution, AdoptImplementation } from '../../src/distributions/adopt/installer'; -import { JavaInstallerOptions } from '../../src/distributions/base-models'; +import os from 'os'; -let manifestData = require('../data/adopt.json') as []; +import manifestData from '../data/adopt.json'; +import * as core from '@actions/core'; describe('getAvailableVersions', () => { let spyHttpClient: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; beforeEach(() => { spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); @@ -15,6 +22,10 @@ describe('getAvailableVersions', () => { headers: {}, result: [] }); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); }); afterEach(() => { @@ -25,42 +36,82 @@ describe('getAvailableVersions', () => { it.each([ [ - { version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '11', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, AdoptImplementation.Hotspot, 'os=mac&architecture=x64&image_type=jdk&release_type=ga&jvm_impl=hotspot&page_size=20&page=0' ], [ - { version: '11', architecture: 'x86', packageType: 'jdk', checkLatest: false }, + { + version: '11', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, AdoptImplementation.Hotspot, 'os=mac&architecture=x86&image_type=jdk&release_type=ga&jvm_impl=hotspot&page_size=20&page=0' ], [ - { version: '11', architecture: 'x64', packageType: 'jre', checkLatest: false }, + { + version: '11', + architecture: 'x64', + packageType: 'jre', + checkLatest: false + }, AdoptImplementation.Hotspot, 'os=mac&architecture=x64&image_type=jre&release_type=ga&jvm_impl=hotspot&page_size=20&page=0' ], [ - { version: '11-ea', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '11-ea', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, AdoptImplementation.Hotspot, 'os=mac&architecture=x64&image_type=jdk&release_type=ea&jvm_impl=hotspot&page_size=20&page=0' ], [ - { version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '11', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, AdoptImplementation.OpenJ9, 'os=mac&architecture=x64&image_type=jdk&release_type=ga&jvm_impl=openj9&page_size=20&page=0' ], [ - { version: '11', architecture: 'x86', packageType: 'jdk', checkLatest: false }, + { + version: '11', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, AdoptImplementation.OpenJ9, 'os=mac&architecture=x86&image_type=jdk&release_type=ga&jvm_impl=openj9&page_size=20&page=0' ], [ - { version: '11', architecture: 'x64', packageType: 'jre', checkLatest: false }, + { + version: '11', + architecture: 'x64', + packageType: 'jre', + checkLatest: false + }, AdoptImplementation.OpenJ9, 'os=mac&architecture=x64&image_type=jre&release_type=ga&jvm_impl=openj9&page_size=20&page=0' ], [ - { version: '11-ea', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '11-ea', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, AdoptImplementation.OpenJ9, 'os=mac&architecture=x64&image_type=jdk&release_type=ea&jvm_impl=openj9&page_size=20&page=0' ] @@ -72,7 +123,8 @@ describe('getAvailableVersions', () => { expectedParameters ) => { const distribution = new AdoptDistribution(installerOptions, impl); - const baseUrl = 'https://api.adoptopenjdk.net/v3/assets/version/%5B1.0,100.0%5D'; + const baseUrl = + 'https://api.adoptopenjdk.net/v3/assets/version/%5B1.0,100.0%5D'; const expectedUrl = `${baseUrl}?project=jdk&vendor=adoptopenjdk&heap_size=normal&sort_method=DEFAULT&sort_order=DESC&${expectedParameters}`; distribution['getPlatformOption'] = () => 'mac'; @@ -89,12 +141,12 @@ describe('getAvailableVersions', () => { .mockReturnValueOnce({ statusCode: 200, headers: {}, - result: manifestData + result: manifestData as any }) .mockReturnValueOnce({ statusCode: 200, headers: {}, - result: manifestData + result: manifestData as any }) .mockReturnValueOnce({ statusCode: 200, @@ -103,7 +155,12 @@ describe('getAvailableVersions', () => { }); const distribution = new AdoptDistribution( - { version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '11', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, AdoptImplementation.Hotspot ); const availableVersions = await distribution['getAvailableVersions'](); @@ -120,7 +177,12 @@ describe('getAvailableVersions', () => { 'find right toolchain folder', (impl: AdoptImplementation, packageType: string, expected: string) => { const distribution = new AdoptDistribution( - { version: '11', architecture: 'x64', packageType: packageType, checkLatest: false }, + { + version: '11', + architecture: 'x64', + packageType: packageType, + checkLatest: false + }, impl ); @@ -128,6 +190,41 @@ describe('getAvailableVersions', () => { expect(distribution.toolcacheFolderName).toBe(expected); } ); + + it.each([ + ['amd64', 'x64'], + ['arm64', 'aarch64'] + ])( + 'defaults to os.arch(): %s mapped to distro arch: %s', + async (osArch: string, distroArch: string) => { + jest + .spyOn(os, 'arch') + .mockReturnValue(osArch as ReturnType); + + const installerOptions: JavaInstallerOptions = { + version: '17', + architecture: '', // to get default value + packageType: 'jdk', + checkLatest: false + }; + + const expectedParameters = `os=mac&architecture=${distroArch}&image_type=jdk&release_type=ga&jvm_impl=hotspot&page_size=20&page=0`; + + const distribution = new AdoptDistribution( + installerOptions, + AdoptImplementation.Hotspot + ); + const baseUrl = + 'https://api.adoptopenjdk.net/v3/assets/version/%5B1.0,100.0%5D'; + const expectedUrl = `${baseUrl}?project=jdk&vendor=adoptopenjdk&heap_size=normal&sort_method=DEFAULT&sort_order=DESC&${expectedParameters}`; + distribution['getPlatformOption'] = () => 'mac'; + + await distribution['getAvailableVersions'](); + + expect(spyHttpClient.mock.calls).toHaveLength(1); + expect(spyHttpClient.mock.calls[0][0]).toBe(expectedUrl); + } + ); }); describe('findPackageForDownload', () => { @@ -145,44 +242,64 @@ describe('findPackageForDownload', () => { ['15.0.1+9.1', '15.0.1+9.1'] ])('version is resolved correctly %s -> %s', async (input, expected) => { const distribution = new AdoptDistribution( - { version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '11', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, AdoptImplementation.Hotspot ); - distribution['getAvailableVersions'] = async () => manifestData; + distribution['getAvailableVersions'] = async () => manifestData as any; const resolvedVersion = await distribution['findPackageForDownload'](input); expect(resolvedVersion.version).toBe(expected); }); it('version is found but binaries list is empty', async () => { const distribution = new AdoptDistribution( - { version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '11', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, AdoptImplementation.Hotspot ); - distribution['getAvailableVersions'] = async () => manifestData; - await expect(distribution['findPackageForDownload']('9.0.8')).rejects.toThrowError( - /Could not find satisfied version for SemVer */ - ); + distribution['getAvailableVersions'] = async () => manifestData as any; + await expect( + distribution['findPackageForDownload']('9.0.8') + ).rejects.toThrow(/No matching version found for SemVer */); }); it('version is not found', async () => { const distribution = new AdoptDistribution( - { version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '11', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, AdoptImplementation.Hotspot ); - distribution['getAvailableVersions'] = async () => manifestData; - await expect(distribution['findPackageForDownload']('7.x')).rejects.toThrowError( - /Could not find satisfied version for SemVer */ + distribution['getAvailableVersions'] = async () => manifestData as any; + await expect(distribution['findPackageForDownload']('7.x')).rejects.toThrow( + /No matching version found for SemVer */ ); }); it('version list is empty', async () => { const distribution = new AdoptDistribution( - { version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '11', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, AdoptImplementation.Hotspot ); distribution['getAvailableVersions'] = async () => []; - await expect(distribution['findPackageForDownload']('11')).rejects.toThrowError( - /Could not find satisfied version for SemVer */ + await expect(distribution['findPackageForDownload']('11')).rejects.toThrow( + /No matching version found for SemVer */ ); }); }); diff --git a/__tests__/distributors/base-installer.test.ts b/__tests__/distributors/base-installer.test.ts index 177c7aced..2a0b13ab1 100644 --- a/__tests__/distributors/base-installer.test.ts +++ b/__tests__/distributors/base-installer.test.ts @@ -5,29 +5,40 @@ import * as util from '../../src/util'; import path from 'path'; import * as semver from 'semver'; -import { JavaBase } from '../../src/distributions/base-installer'; +import {JavaBase} from '../../src/distributions/base-installer'; import { JavaDownloadRelease, JavaInstallerOptions, JavaInstallerResults } from '../../src/distributions/base-models'; +import os from 'os'; + class EmptyJavaBase extends JavaBase { constructor(installerOptions: JavaInstallerOptions) { super('Empty', installerOptions); } - protected async downloadTool(javaRelease: JavaDownloadRelease): Promise { + protected async downloadTool( + javaRelease: JavaDownloadRelease + ): Promise { return { version: '11.0.9', - path: path.join('toolcache', this.toolcacheFolderName, '11.0.9', this.architecture) + path: path.join( + 'toolcache', + this.toolcacheFolderName, + '11.0.9', + this.architecture + ) }; } - protected async findPackageForDownload(range: string): Promise { + protected async findPackageForDownload( + range: string + ): Promise { const availableVersion = '11.0.9'; if (!semver.satisfies(availableVersion, range)) { - throw new Error('Available version not found'); + throw this.createVersionNotFoundError(range, [availableVersion]); } return { @@ -58,44 +69,111 @@ describe('findInToolcache', () => { it.each([ [ - { version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false }, - { version: actualJavaVersion, path: javaPath } + { + version: '11', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, + {version: actualJavaVersion, path: javaPath} + ], + [ + { + version: '11.0', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, + {version: actualJavaVersion, path: javaPath} + ], + [ + { + version: '11.0.8', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, + {version: actualJavaVersion, path: javaPath} + ], + [ + { + version: '11', + architecture: 'x64', + packageType: 'jdk', + checkLatest: true + }, + {version: actualJavaVersion, path: javaPath} ], [ - { version: '11.0', architecture: 'x64', packageType: 'jdk', checkLatest: false }, - { version: actualJavaVersion, path: javaPath } + { + version: '11.0', + architecture: 'x64', + packageType: 'jdk', + checkLatest: true + }, + {version: actualJavaVersion, path: javaPath} ], [ - { version: '11.0.8', architecture: 'x64', packageType: 'jdk', checkLatest: false }, - { version: actualJavaVersion, path: javaPath } + { + version: '11.0.8', + architecture: 'x64', + packageType: 'jdk', + checkLatest: true + }, + {version: actualJavaVersion, path: javaPath} ], [ - { version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: true }, - { version: actualJavaVersion, path: javaPath } + { + version: '11', + architecture: 'x64', + packageType: 'jre', + checkLatest: false + }, + null ], [ - { version: '11.0', architecture: 'x64', packageType: 'jdk', checkLatest: true }, - { version: actualJavaVersion, path: javaPath } + { + version: '8', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, + null ], [ - { version: '11.0.8', architecture: 'x64', packageType: 'jdk', checkLatest: true }, - { version: actualJavaVersion, path: javaPath } + { + version: '11', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, + null ], - [{ version: '11', architecture: 'x64', packageType: 'jre', checkLatest: false }, null], - [{ version: '8', architecture: 'x64', packageType: 'jdk', checkLatest: false }, null], - [{ version: '11', architecture: 'x86', packageType: 'jdk', checkLatest: false }, null], - [{ version: '11', architecture: 'x86', packageType: 'jre', checkLatest: false }, null] + [ + { + version: '11', + architecture: 'x86', + packageType: 'jre', + checkLatest: false + }, + null + ] ])(`should find java for path %s -> %s`, (input, expected) => { spyTcFindAllVersions.mockReturnValue([actualJavaVersion]); spyGetToolcachePath.mockImplementation( (toolname: string, javaVersion: string, architecture: string) => { const semverVersion = new semver.Range(javaVersion); - if (path.basename(javaPath) !== architecture || !javaPath.includes(toolname)) { + if ( + path.basename(javaPath) !== architecture || + !javaPath.includes(toolname) + ) { return ''; } - return semver.satisfies(actualJavaVersion, semverVersion) ? javaPath : ''; + return semver.satisfies(actualJavaVersion, semverVersion) + ? javaPath + : ''; } ); mockJavaBase = new EmptyJavaBase(input); @@ -103,52 +181,63 @@ describe('findInToolcache', () => { }); it.each([ - ['11', { version: '11.0.3+2', versionInPath: '11.0.3-2' }], - ['11.0', { version: '11.0.3+2', versionInPath: '11.0.3-2' }], - ['11.0.1', { version: '11.0.1', versionInPath: '11.0.1' }], - ['11.0.3', { version: '11.0.3+2', versionInPath: '11.0.3-2' }], - ['15', { version: '15.0.2+4', versionInPath: '15.0.2-4' }], - ['x', { version: '15.0.2+4', versionInPath: '15.0.2-4' }], - ['x-ea', { version: '17.4.4', versionInPath: '17.4.4-ea' }], - ['11-ea', { version: '11.3.3+5.2.1231421', versionInPath: '11.3.3-ea.5.2.1231421' }], - ['11.2-ea', { version: '11.2.1', versionInPath: '11.2.1-ea' }], - ['11.2.1-ea', { version: '11.2.1', versionInPath: '11.2.1-ea' }] - ])('should choose correct java from tool-cache for input %s', (input, expected) => { - spyTcFindAllVersions.mockReturnValue([ - '17.4.4-ea', - '11.0.2', - '15.0.2-4', - '11.0.3-2', - '11.2.1-ea', - '11.3.2-ea', - '11.3.2-ea.5', - '11.3.3-ea.5.2.1231421', - '12.3.2-0', - '11.0.1' - ]); - spyGetToolcachePath.mockImplementation( - (toolname: string, javaVersion: string, architecture: string) => - `/hostedtoolcache/${toolname}/${javaVersion}/${architecture}` - ); - mockJavaBase = new EmptyJavaBase({ - version: input, - architecture: 'x64', - packageType: 'jdk', - checkLatest: false - }); - const foundVersion = mockJavaBase['findInToolcache'](); - expect(foundVersion).toEqual({ - version: expected.version, - path: `/hostedtoolcache/Java_Empty_jdk/${expected.versionInPath}/x64` - }); - }); + ['11', {version: '11.0.3+2', versionInPath: '11.0.3-2'}], + ['11.0', {version: '11.0.3+2', versionInPath: '11.0.3-2'}], + ['11.0.1', {version: '11.0.1', versionInPath: '11.0.1'}], + ['11.0.3', {version: '11.0.3+2', versionInPath: '11.0.3-2'}], + ['15', {version: '15.0.2+4', versionInPath: '15.0.2-4'}], + ['x', {version: '15.0.2+4', versionInPath: '15.0.2-4'}], + ['x-ea', {version: '17.4.4', versionInPath: '17.4.4-ea'}], + [ + '11-ea', + {version: '11.3.3+5.2.1231421', versionInPath: '11.3.3-ea.5.2.1231421'} + ], + ['11.2-ea', {version: '11.2.1', versionInPath: '11.2.1-ea'}], + ['11.2.1-ea', {version: '11.2.1', versionInPath: '11.2.1-ea'}] + ])( + 'should choose correct java from tool-cache for input %s', + (input, expected) => { + spyTcFindAllVersions.mockReturnValue([ + '17.4.4-ea', + '11.0.2', + '15.0.2-4', + '11.0.3-2', + '11.2.1-ea', + '11.3.2-ea', + '11.3.2-ea.5', + '11.3.3-ea.5.2.1231421', + '12.3.2-0', + '11.0.1' + ]); + spyGetToolcachePath.mockImplementation( + (toolname: string, javaVersion: string, architecture: string) => + `/hostedtoolcache/${toolname}/${javaVersion}/${architecture}` + ); + mockJavaBase = new EmptyJavaBase({ + version: input, + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + const foundVersion = mockJavaBase['findInToolcache'](); + expect(foundVersion).toEqual({ + version: expected.version, + path: `/hostedtoolcache/Java_Empty_jdk/${expected.versionInPath}/x64` + }); + } + ); }); describe('setupJava', () => { const actualJavaVersion = '11.0.9'; const installedJavaVersion = '11.0.8'; const javaPath = path.join('Java_Empty_jdk', installedJavaVersion, 'x86'); - const javaPathInstalled = path.join('toolcache', 'Java_Empty_jdk', actualJavaVersion, 'x86'); + const javaPathInstalled = path.join( + 'toolcache', + 'Java_Empty_jdk', + actualJavaVersion, + 'x86' + ); let mockJavaBase: EmptyJavaBase; @@ -159,6 +248,7 @@ describe('setupJava', () => { let spyCoreExportVariable: jest.SpyInstance; let spyCoreAddPath: jest.SpyInstance; let spyCoreSetOutput: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; beforeEach(() => { spyGetToolcachePath = jest.spyOn(util, 'getToolcachePath'); @@ -166,11 +256,16 @@ describe('setupJava', () => { (toolname: string, javaVersion: string, architecture: string) => { const semverVersion = new semver.Range(javaVersion); - if (path.basename(javaPath) !== architecture || !javaPath.includes(toolname)) { + if ( + path.basename(javaPath) !== architecture || + !javaPath.includes(toolname) + ) { return ''; } - return semver.satisfies(installedJavaVersion, semverVersion) ? javaPath : ''; + return semver.satisfies(installedJavaVersion, semverVersion) + ? javaPath + : ''; } ); @@ -192,6 +287,12 @@ describe('setupJava', () => { spyCoreSetOutput = jest.spyOn(core, 'setOutput'); spyCoreSetOutput.mockImplementation(() => undefined); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => undefined); + + jest.spyOn(os, 'arch').mockReturnValue('x86' as ReturnType); }); afterEach(() => { @@ -202,23 +303,46 @@ describe('setupJava', () => { it.each([ [ - { version: '11', architecture: 'x86', packageType: 'jdk', checkLatest: false }, - { version: installedJavaVersion, path: javaPath } + { + version: '11', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, + {version: installedJavaVersion, path: javaPath} + ], + [ + { + version: '11.0', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, + {version: installedJavaVersion, path: javaPath} ], [ - { version: '11.0', architecture: 'x86', packageType: 'jdk', checkLatest: false }, - { version: installedJavaVersion, path: javaPath } + { + version: '11.0.8', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, + {version: installedJavaVersion, path: javaPath} ], [ - { version: '11.0.8', architecture: 'x86', packageType: 'jdk', checkLatest: false }, - { version: installedJavaVersion, path: javaPath } + {version: '11', architecture: '', packageType: 'jdk', checkLatest: false}, + {version: installedJavaVersion, path: javaPath} ] - ])('should find java locally for %s', (input, expected) => { + ])('should find java locally for %s', async (input, expected) => { mockJavaBase = new EmptyJavaBase(input); - expect(mockJavaBase.setupJava()).resolves.toEqual(expected); + await expect(mockJavaBase.setupJava()).resolves.toEqual(expected); expect(spyGetToolcachePath).toHaveBeenCalled(); - expect(spyCoreInfo).toHaveBeenCalledWith(`Resolved Java ${expected.version} from tool-cache`); - expect(spyCoreInfo).toHaveBeenCalledWith(`Setting Java ${expected.version} as the default`); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Resolved Java ${expected.version} from tool-cache` + ); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Setting Java ${expected.version} as the default` + ); expect(spyCoreInfo).not.toHaveBeenCalledWith( 'Trying to resolve the latest version from remote' ); @@ -227,16 +351,47 @@ describe('setupJava', () => { it.each([ [ - { version: '11', architecture: 'x86', packageType: 'jre', checkLatest: false }, - { path: path.join('toolcache', 'Java_Empty_jre', '11.0.9', 'x86'), version: '11.0.9' } + { + version: '11', + architecture: 'x86', + packageType: 'jre', + checkLatest: false + }, + { + path: path.join('toolcache', 'Java_Empty_jre', '11.0.9', 'x86'), + version: '11.0.9' + } ], [ - { version: '11', architecture: 'x64', packageType: 'jdk', checkLatest: false }, - { path: path.join('toolcache', 'Java_Empty_jdk', '11.0.9', 'x64'), version: '11.0.9' } + { + version: '11', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, + { + path: path.join('toolcache', 'Java_Empty_jdk', '11.0.9', 'x64'), + version: '11.0.9' + } ], [ - { version: '11', architecture: 'x64', packageType: 'jre', checkLatest: false }, - { path: path.join('toolcache', 'Java_Empty_jre', '11.0.9', 'x64'), version: '11.0.9' } + { + version: '11', + architecture: 'x64', + packageType: 'jre', + checkLatest: false + }, + { + path: path.join('toolcache', 'Java_Empty_jre', '11.0.9', 'x64'), + version: '11.0.9' + } + ], + [ + {version: '11', architecture: '', packageType: 'jre', checkLatest: false}, + { + path: path.join('toolcache', 'Java_Empty_jre', '11.0.9', 'x86'), + version: '11.0.9' + } ] ])('download java with configuration %s', async (input, expected) => { mockJavaBase = new EmptyJavaBase(input); @@ -244,59 +399,147 @@ describe('setupJava', () => { expect(spyGetToolcachePath).toHaveBeenCalled(); expect(spyCoreAddPath).toHaveBeenCalled(); expect(spyCoreExportVariable).toHaveBeenCalled(); + expect(spyCoreExportVariable).toHaveBeenCalledWith( + `JAVA_HOME_${input.version}_${( + input.architecture || 'x86' + ).toLocaleUpperCase()}`, + expected.path + ); expect(spyCoreSetOutput).toHaveBeenCalled(); - expect(spyCoreInfo).toHaveBeenCalledWith('Trying to resolve the latest version from remote'); - expect(spyCoreInfo).toHaveBeenCalledWith(`Resolved latest version as ${expected.version}`); + expect(spyCoreInfo).toHaveBeenCalledWith( + 'Trying to resolve the latest version from remote' + ); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Resolved latest version as ${expected.version}` + ); expect(spyCoreInfo).toHaveBeenCalledWith('Trying to download...'); - expect(spyCoreInfo).toHaveBeenCalledWith(`Java ${expected.version} was downloaded`); - expect(spyCoreInfo).toHaveBeenCalledWith(`Setting Java ${expected.version} as the default`); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Java ${expected.version} was downloaded` + ); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Setting Java ${expected.version} as the default` + ); }); it.each([ [ - { version: '11.0.9', architecture: 'x86', packageType: 'jdk', checkLatest: true }, - { version: '11.0.9', path: javaPathInstalled } + { + version: '11.0.9', + architecture: 'x86', + packageType: 'jdk', + checkLatest: true + }, + {version: '11.0.9', path: javaPathInstalled} + ], + [ + { + version: '11.0.9', + architecture: '', + packageType: 'jdk', + checkLatest: true + }, + {version: '11.0.9', path: javaPathInstalled} ] - ])('should check the latest java version for %s and resolve locally', async (input, expected) => { - mockJavaBase = new EmptyJavaBase(input); - mockJavaBase['findInToolcache'] = () => ({ version: '11.0.9', path: expected.path }); - await expect(mockJavaBase.setupJava()).resolves.toEqual(expected); - expect(spyCoreInfo).toHaveBeenCalledWith('Trying to resolve the latest version from remote'); - expect(spyCoreInfo).toHaveBeenCalledWith(`Resolved latest version as ${expected.version}`); - expect(spyCoreInfo).toHaveBeenCalledWith(`Resolved Java ${expected.version} from tool-cache`); - expect(spyCoreInfo).toHaveBeenCalledWith(`Setting Java ${expected.version} as the default`); - }); + ])( + 'should check the latest java version for %s and resolve locally', + async (input, expected) => { + mockJavaBase = new EmptyJavaBase(input); + mockJavaBase['findInToolcache'] = () => ({ + version: '11.0.9', + path: expected.path + }); + await expect(mockJavaBase.setupJava()).resolves.toEqual(expected); + expect(spyCoreInfo).toHaveBeenCalledWith( + 'Trying to resolve the latest version from remote' + ); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Resolved latest version as ${expected.version}` + ); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Resolved Java ${expected.version} from tool-cache` + ); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Setting Java ${expected.version} as the default` + ); + } + ); it.each([ [ - { version: '11', architecture: 'x86', packageType: 'jdk', checkLatest: true }, - { version: actualJavaVersion, path: javaPathInstalled } + { + version: '11', + architecture: 'x86', + packageType: 'jdk', + checkLatest: true + }, + {version: actualJavaVersion, path: javaPathInstalled} + ], + [ + { + version: '11.0', + architecture: 'x86', + packageType: 'jdk', + checkLatest: true + }, + {version: actualJavaVersion, path: javaPathInstalled} ], [ - { version: '11.0', architecture: 'x86', packageType: 'jdk', checkLatest: true }, - { version: actualJavaVersion, path: javaPathInstalled } + { + version: '11.0.x', + architecture: 'x86', + packageType: 'jdk', + checkLatest: true + }, + {version: actualJavaVersion, path: javaPathInstalled} ], [ - { version: '11.0.x', architecture: 'x86', packageType: 'jdk', checkLatest: true }, - { version: actualJavaVersion, path: javaPathInstalled } + {version: '11', architecture: '', packageType: 'jdk', checkLatest: true}, + {version: actualJavaVersion, path: javaPathInstalled} ] - ])('should check the latest java version for %s and download', async (input, expected) => { - mockJavaBase = new EmptyJavaBase(input); - await expect(mockJavaBase.setupJava()).resolves.toEqual(expected); - expect(spyGetToolcachePath).toHaveBeenCalled(); - expect(spyCoreInfo).toHaveBeenCalledWith('Trying to resolve the latest version from remote'); - expect(spyCoreInfo).toHaveBeenCalledWith(`Resolved latest version as ${actualJavaVersion}`); - expect(spyCoreInfo).toHaveBeenCalledWith('Trying to download...'); - expect(spyCoreInfo).toHaveBeenCalledWith(`Java ${actualJavaVersion} was downloaded`); - expect(spyCoreInfo).toHaveBeenCalledWith(`Setting Java ${expected.version} as the default`); - }); + ])( + 'should check the latest java version for %s and download', + async (input, expected) => { + mockJavaBase = new EmptyJavaBase(input); + await expect(mockJavaBase.setupJava()).resolves.toEqual(expected); + expect(spyGetToolcachePath).toHaveBeenCalled(); + expect(spyCoreInfo).toHaveBeenCalledWith( + 'Trying to resolve the latest version from remote' + ); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Resolved latest version as ${actualJavaVersion}` + ); + expect(spyCoreInfo).toHaveBeenCalledWith('Trying to download...'); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Java ${actualJavaVersion} was downloaded` + ); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Setting Java ${expected.version} as the default` + ); + } + ); it.each([ - [{ version: '15', architecture: 'x86', packageType: 'jre', checkLatest: false }], - [{ version: '11.0.7', architecture: 'x64', packageType: 'jre', checkLatest: false }] - ])('should throw an error for Available version not found for %s', async input => { + [ + { + version: '15', + architecture: 'x86', + packageType: 'jre', + checkLatest: false + } + ], + [ + { + version: '11.0.7', + architecture: 'x64', + packageType: 'jre', + checkLatest: false + } + ] + ])('should throw an error for version not found for %s', async input => { mockJavaBase = new EmptyJavaBase(input); - await expect(mockJavaBase.setupJava()).rejects.toThrowError('Available version not found'); + await expect(mockJavaBase.setupJava()).rejects.toThrow( + `No matching version found for SemVer '${input.version}'` + ); expect(spyTcFindAllVersions).toHaveBeenCalled(); expect(spyCoreAddPath).not.toHaveBeenCalled(); expect(spyCoreExportVariable).not.toHaveBeenCalled(); @@ -308,35 +551,130 @@ describe('normalizeVersion', () => { const DummyJavaBase = JavaBase as any; it.each([ - ['11', { version: '11', stable: true }], - ['11.0', { version: '11.0', stable: true }], - ['11.0.10', { version: '11.0.10', stable: true }], - ['11-ea', { version: '11', stable: false }], - ['11.0.2-ea', { version: '11.0.2', stable: false }] + ['11', {version: '11', stable: true}], + ['11.0', {version: '11.0', stable: true}], + ['11.0.10', {version: '11.0.10', stable: true}], + ['11-ea', {version: '11', stable: false}], + ['11.0.2-ea', {version: '11.0.2', stable: false}] ])('normalizeVersion from %s to %s', (input, expected) => { - expect(DummyJavaBase.prototype.normalizeVersion.call(null, input)).toEqual(expected); + expect(DummyJavaBase.prototype.normalizeVersion.call(null, input)).toEqual( + expected + ); }); it('normalizeVersion should throw an error for non semver', () => { const version = '11g'; - expect(DummyJavaBase.prototype.normalizeVersion.bind(null, version)).toThrowError( + expect( + DummyJavaBase.prototype.normalizeVersion.bind(null, version) + ).toThrow( `The string '${version}' is not valid SemVer notation for a Java version. Please check README file for code snippets and more detailed information` ); }); }); +describe('createVersionNotFoundError', () => { + it('should include all required fields in error message without available versions', () => { + const mockJavaBase = new EmptyJavaBase({ + version: '17.0.5', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + + const error = (mockJavaBase as any).createVersionNotFoundError('17.0.5'); + + expect(error.message).toContain( + "No matching version found for SemVer '17.0.5'" + ); + expect(error.message).toContain('Distribution: Empty'); + expect(error.message).toContain('Package type: jdk'); + expect(error.message).toContain('Architecture: x64'); + }); + + it('should include available versions when provided', () => { + const mockJavaBase = new EmptyJavaBase({ + version: '17.0.5', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + + const availableVersions = ['11.0.1', '11.0.2', '17.0.1', '17.0.2']; + const error = (mockJavaBase as any).createVersionNotFoundError( + '17.0.5', + availableVersions + ); + + expect(error.message).toContain( + "No matching version found for SemVer '17.0.5'" + ); + expect(error.message).toContain('Distribution: Empty'); + expect(error.message).toContain('Package type: jdk'); + expect(error.message).toContain('Architecture: x64'); + expect(error.message).toContain( + 'Available versions: 11.0.1, 11.0.2, 17.0.1, 17.0.2' + ); + }); + + it('should truncate available versions when there are many', () => { + const mockJavaBase = new EmptyJavaBase({ + version: '17.0.5', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + + // Create 60 versions to test truncation + const availableVersions = Array.from({length: 60}, (_, i) => `11.0.${i}`); + const error = (mockJavaBase as any).createVersionNotFoundError( + '17.0.5', + availableVersions + ); + + expect(error.message).toContain('Available versions:'); + expect(error.message).toContain('...'); + expect(error.message).toContain('(showing first 50 of 60 versions'); + }); + + it('should include additional context when provided', () => { + const mockJavaBase = new EmptyJavaBase({ + version: '17.0.5', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + + const availableVersions = ['11.0.1', '11.0.2']; + const additionalContext = 'Platform: linux'; + const error = (mockJavaBase as any).createVersionNotFoundError( + '17.0.5', + availableVersions, + additionalContext + ); + + expect(error.message).toContain( + "No matching version found for SemVer '17.0.5'" + ); + expect(error.message).toContain('Distribution: Empty'); + expect(error.message).toContain('Package type: jdk'); + expect(error.message).toContain('Architecture: x64'); + expect(error.message).toContain('Platform: linux'); + expect(error.message).toContain('Available versions: 11.0.1, 11.0.2'); + }); +}); + describe('getToolcacheVersionName', () => { const DummyJavaBase = JavaBase as any; it.each([ - [{ version: '11', stable: true }, '11'], - [{ version: '11.0.2', stable: true }, '11.0.2'], - [{ version: '11.0.2+4', stable: true }, '11.0.2-4'], - [{ version: '11.0.2+4.1.2563234', stable: true }, '11.0.2-4.1.2563234'], - [{ version: '11.0', stable: false }, '11.0-ea'], - [{ version: '11.0.3', stable: false }, '11.0.3-ea'], - [{ version: '11.0.3+4', stable: false }, '11.0.3-ea.4'], - [{ version: '11.0.3+4.2.256', stable: false }, '11.0.3-ea.4.2.256'] + [{version: '11', stable: true}, '11'], + [{version: '11.0.2', stable: true}, '11.0.2'], + [{version: '11.0.2+4', stable: true}, '11.0.2-4'], + [{version: '11.0.2+4.1.2563234', stable: true}, '11.0.2-4.1.2563234'], + [{version: '11.0', stable: false}, '11.0-ea'], + [{version: '11.0.3', stable: false}, '11.0.3-ea'], + [{version: '11.0.3+4', stable: false}, '11.0.3-ea.4'], + [{version: '11.0.3+4.2.256', stable: false}, '11.0.3-ea.4.2.256'] ])('returns correct version name for %s', (input, expected) => { const inputVersion = input.stable ? '11' : '11-ea'; const mockJavaBase = new EmptyJavaBase({ diff --git a/__tests__/distributors/corretto-installer.test.ts b/__tests__/distributors/corretto-installer.test.ts index 45d51aca8..7832e971f 100644 --- a/__tests__/distributors/corretto-installer.test.ts +++ b/__tests__/distributors/corretto-installer.test.ts @@ -1,14 +1,17 @@ -import { HttpClient } from '@actions/http-client'; -import { JavaInstallerOptions } from '../../src/distributions/base-models'; +import {HttpClient} from '@actions/http-client'; +import {JavaInstallerOptions} from '../../src/distributions/base-models'; -import { CorrettoDistribution } from '../../src/distributions/corretto/installer'; +import {CorrettoDistribution} from '../../src/distributions/corretto/installer'; import * as util from '../../src/util'; +import os from 'os'; +import * as core from '@actions/core'; -const manifestData = require('../data/corretto.json') as []; +import manifestData from '../data/corretto.json'; describe('getAvailableVersions', () => { let spyHttpClient: jest.SpyInstance; let spyGetDownloadArchiveExtension: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; beforeEach(() => { spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); @@ -17,7 +20,14 @@ describe('getAvailableVersions', () => { headers: {}, result: manifestData }); - spyGetDownloadArchiveExtension = jest.spyOn(util, 'getDownloadArchiveExtension'); + spyGetDownloadArchiveExtension = jest.spyOn( + util, + 'getDownloadArchiveExtension' + ); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); }); afterEach(() => { @@ -42,16 +52,66 @@ describe('getAvailableVersions', () => { }); it.each([ - [{ version: '16', architecture: 'x64', packageType: 'jdk', checkLatest: false }, 'macos', 6], - [{ version: '16', architecture: 'x86', packageType: 'jdk', checkLatest: false }, 'macos', 0], - [{ version: '16', architecture: 'x64', packageType: 'jre', checkLatest: false }, 'macos', 0], - [{ version: '16', architecture: 'x64', packageType: 'jdk', checkLatest: false }, 'linux', 6], [ - { version: '18', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '16', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, + 'macos', + 6 + ], + [ + { + version: '16', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, + 'macos', + 0 + ], + [ + { + version: '16', + architecture: 'x64', + packageType: 'jre', + checkLatest: false + }, + 'macos', + 0 + ], + [ + { + version: '16', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, + 'linux', + 6 + ], + [ + { + version: '18', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, 'windows', 6 ], - [{ version: '18', architecture: 'x64', packageType: 'jre', checkLatest: false }, 'windows', 1] + [ + { + version: '18', + architecture: 'x64', + packageType: 'jre', + checkLatest: false + }, + 'windows', + 1 + ] ])( 'fetch expected amount of available versions for %s', async ( @@ -64,7 +124,9 @@ describe('getAvailableVersions', () => { const availableVersions = await distribution['getAvailableVersions'](); expect(availableVersions).not.toBeNull(); - expect(availableVersions.length).toBe(expectedAmountOfAvailableVersions); + expect(availableVersions.length).toBe( + expectedAmountOfAvailableVersions + ); } ); }); @@ -93,7 +155,8 @@ describe('getAvailableVersions', () => { }); mockPlatform(distribution, platform); - const availableVersion = await distribution['findPackageForDownload'](version); + const availableVersion = + await distribution['findPackageForDownload'](version); expect(availableVersion).not.toBeNull(); expect(availableVersion.url).toBe(expectedLink); }); @@ -108,9 +171,9 @@ describe('getAvailableVersions', () => { }); mockPlatform(distribution, 'linux'); - await expect(distribution['findPackageForDownload'](version)).rejects.toThrowError( - 'Early access versions are not supported' - ); + await expect( + distribution['findPackageForDownload'](version) + ).rejects.toThrow('Early access versions are not supported'); }); it('with non major version expect to throw not supported error', async () => { @@ -123,9 +186,9 @@ describe('getAvailableVersions', () => { }); mockPlatform(distribution, 'linux'); - await expect(distribution['findPackageForDownload'](version)).rejects.toThrowError( - 'Only major versions are supported' - ); + await expect( + distribution['findPackageForDownload'](version) + ).rejects.toThrow('Only major versions are supported'); }); it('with unfound version throw could not find error', async () => { @@ -138,14 +201,44 @@ describe('getAvailableVersions', () => { }); mockPlatform(distribution, 'linux'); - await expect(distribution['findPackageForDownload'](version)).rejects.toThrowError( - "Could not find satisfied version for SemVer '4'" - ); + await expect( + distribution['findPackageForDownload'](version) + ).rejects.toThrow("No matching version found for SemVer '4'"); }); + + it.each([ + ['amd64', 'x64'], + ['arm64', 'aarch64'] + ])( + 'defaults to os.arch(): %s mapped to distro arch: %s', + async (osArch: string, distroArch: string) => { + jest + .spyOn(os, 'arch') + .mockReturnValue(osArch as ReturnType); + + const distribution = new CorrettoDistribution({ + version: '17', + architecture: '', // to get default value + packageType: 'jdk', + checkLatest: false + }); + mockPlatform(distribution, 'macos'); + + const expectedLink = `https://corretto.aws/downloads/resources/17.0.2.8.1/amazon-corretto-17.0.2.8.1-macosx-${distroArch}.tar.gz`; + + const availableVersion = + await distribution['findPackageForDownload']('17'); + expect(availableVersion).not.toBeNull(); + expect(availableVersion.url).toBe(expectedLink); + } + ); }); - const mockPlatform = (distributon: CorrettoDistribution, platform: string) => { - distributon['getPlatformOption'] = () => platform; + const mockPlatform = ( + distribution: CorrettoDistribution, + platform: string + ) => { + distribution['getPlatformOption'] = () => platform; const mockedExtension = platform === 'windows' ? 'zip' : 'tar.gz'; spyGetDownloadArchiveExtension.mockReturnValue(mockedExtension); }; diff --git a/__tests__/distributors/dragonwell-installer.test.ts b/__tests__/distributors/dragonwell-installer.test.ts new file mode 100644 index 000000000..a10f75a9c --- /dev/null +++ b/__tests__/distributors/dragonwell-installer.test.ts @@ -0,0 +1,262 @@ +import {HttpClient} from '@actions/http-client'; +import {DragonwellDistribution} from '../../src/distributions/dragonwell/installer'; +import * as utils from '../../src/util'; +import * as core from '@actions/core'; + +import manifestData from '../data/dragonwell.json'; + +describe('getAvailableVersions', () => { + let spyHttpClient: jest.SpyInstance; + let spyUtilGetDownloadArchiveExtension: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; + + beforeEach(() => { + spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); + spyHttpClient.mockReturnValue({ + statusCode: 200, + headers: {}, + result: manifestData + }); + + spyUtilGetDownloadArchiveExtension = jest.spyOn( + utils, + 'getDownloadArchiveExtension' + ); + spyUtilGetDownloadArchiveExtension.mockReturnValue('tar.gz'); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); + }); + + afterEach(() => { + jest.resetAllMocks(); + jest.clearAllMocks(); + jest.restoreAllMocks(); + }); + + const mockPlatform = ( + distribution: DragonwellDistribution, + platform: string + ) => { + distribution['getPlatformOption'] = () => platform; + const mockedExtension = platform == 'windows' ? 'zip' : 'tar.gz'; + spyUtilGetDownloadArchiveExtension.mockReturnValue(mockedExtension); + }; + + describe('getAvailableVersions', () => { + it.each([ + ['8', 'x86', 'linux', 0], + ['8', 'aarch64', 'linux', 28], + ['8.6.6', 'x64', 'linux', 31], + ['8', 'x86', 'anolis', 0], + ['8', 'x86', 'windows', 0], + ['8', 'x86', 'mac', 0], + ['11', 'x64', 'linux', 31], + ['11', 'aarch64', 'linux', 28], + ['17', 'riscv', 'linux', 3], + ['16.0.1', 'x64', 'linux', 31], + ['21', 'x64', 'linux', 31] + ])( + 'should get right number of available versions from JSON', + async ( + jdkVersion: string, + arch: string, + platform: string, + len: number + ) => { + const distribution = new DragonwellDistribution({ + version: jdkVersion, + architecture: arch, + packageType: 'jdk', + checkLatest: false + }); + mockPlatform(distribution, platform); + + const availableVersions = await distribution['getAvailableVersions'](); + expect(availableVersions).not.toBeNull(); + expect(availableVersions.length).toBe(len); + } + ); + }); + + describe('findPackageForDownload', () => { + it.each([ + [ + '8', + 'linux', + 'x64', + 'https://github.com/alibaba/dragonwell8/releases/download/dragonwell-extended-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Extended_8.13.14_x64_linux.tar.gz' + ], + [ + '8', + 'linux', + 'aarch64', + 'https://github.com/alibaba/dragonwell8/releases/download/dragonwell-extended-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Extended_8.13.14_aarch64_linux.tar.gz' + ], + [ + '8', + 'windows', + 'x64', + 'https://github.com/alibaba/dragonwell8/releases/download/dragonwell-extended-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Extended_8.13.14_x64_windows.zip' + ], + [ + '8.13.14', + 'linux', + 'x64', + 'https://github.com/alibaba/dragonwell8/releases/download/dragonwell-extended-8.13.14_jdk8u352-ga/Alibaba_Dragonwell_Extended_8.13.14_x64_linux.tar.gz' + ], + [ + '11', + 'linux', + 'x64', + 'https://github.com/dragonwell-project/dragonwell11/releases/download/dragonwell-extended-11.0.23.20_jdk-11.0.23-ga/Alibaba_Dragonwell_Extended_11.0.23.20.9_x64_linux.tar.gz' + ], + [ + '11', + 'linux', + 'aarch64', + 'https://github.com/dragonwell-project/dragonwell11/releases/download/dragonwell-extended-11.0.23.20_jdk-11.0.23-ga/Alibaba_Dragonwell_Extended_11.0.23.20.9_aarch64_linux.tar.gz' + ], + [ + '11', + 'linux', + 'riscv', + 'https://github.com/dragonwell-project/dragonwell11/releases/download/dragonwell-extended-11.0.23.20_jdk-11.0.23-ga/Alibaba_Dragonwell_Extended_11.0.23.20.9_riscv64_linux.tar.gz' + ], + [ + '11', + 'windows', + 'x64', + 'https://github.com/dragonwell-project/dragonwell11/releases/download/dragonwell-extended-11.0.23.20_jdk-11.0.23-ga/Alibaba_Dragonwell_Extended_11.0.23.20.9_x64_windows.zip' + ], + [ + '11', + 'alpine-linux', + 'x64', + 'https://github.com/dragonwell-project/dragonwell11/releases/download/dragonwell-extended-11.0.23.20_jdk-11.0.23-ga/Alibaba_Dragonwell_Extended_11.0.23.20.9_x64_alpine-linux.tar.gz' + ], + [ + '11.0.17', + 'linux', + 'x64', + 'https://github.com/alibaba/dragonwell11/releases/download/dragonwell-extended-11.0.17.13_jdk-11.0.17-ga/Alibaba_Dragonwell_Extended_11.0.17.13.8_x64_linux.tar.gz' + ], + [ + '17', + 'linux', + 'x64', + 'https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.5.0.5%2B8_jdk-17.0.5-ga/Alibaba_Dragonwell_Standard_17.0.5.0.5.8_x64_linux.tar.gz' + ], + [ + '17', + 'linux', + 'aarch64', + 'https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.5.0.5%2B8_jdk-17.0.5-ga/Alibaba_Dragonwell_Standard_17.0.5.0.5.8_aarch64_linux.tar.gz' + ], + [ + '17', + 'windows', + 'x64', + 'https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.5.0.5%2B8_jdk-17.0.5-ga/Alibaba_Dragonwell_Standard_17.0.5.0.5.8_x64_windows.zip' + ], + [ + '17', + 'alpine-linux', + 'x64', + 'https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.5.0.5%2B8_jdk-17.0.5-ga/Alibaba_Dragonwell_Standard_17.0.5.0.5.8_x64_alpine-linux.tar.gz' + ], + [ + '17.0.4', + 'linux', + 'x64', + 'https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.4.0.4%2B8_jdk-17.0.4-ga/Alibaba_Dragonwell_Standard_17.0.4.0.4%2B8_x64_linux.tar.gz' + ], + [ + '17.0.4+8', + 'linux', + 'x64', + 'https://github.com/alibaba/dragonwell17/releases/download/dragonwell-standard-17.0.4.0.4%2B8_jdk-17.0.4-ga/Alibaba_Dragonwell_Standard_17.0.4.0.4%2B8_x64_linux.tar.gz' + ], + [ + '21', + 'linux', + 'aarch64', + 'https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.3.0.3%2B9_jdk-21.0.3-ga/Alibaba_Dragonwell_Standard_21.0.3.0.3.9_aarch64_linux.tar.gz' + ], + [ + '21.0.3+9', + 'linux', + 'riscv', + 'https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.3.0.3%2B9_jdk-21.0.3-ga/Alibaba_Dragonwell_Standard_21.0.3.0.3.9_riscv64_linux.tar.gz' + ], + [ + '21.0.1+12', + 'linux', + 'x64', + 'https://github.com/dragonwell-project/dragonwell21/releases/download/dragonwell-standard-21.0.1.0.1%2B12_jdk-21.0.1-ga/Alibaba_Dragonwell_Standard_21.0.1.0.1.12_x64_linux.tar.gz' + ] + ])( + 'should return proper link according to the specified java-version, platform and arch', + async ( + jdkVersion: string, + platform: string, + arch: string, + expectedLink: string + ) => { + const distribution = new DragonwellDistribution({ + version: jdkVersion, + architecture: arch, + packageType: 'jdk', + checkLatest: false + }); + mockPlatform(distribution, platform); + + const availableVersion = + await distribution['findPackageForDownload'](jdkVersion); + expect(availableVersion).not.toBeNull(); + expect(availableVersion.url).toBe(expectedLink); + } + ); + + it.each([ + ['8', 'alpine-linux', 'x64'], + ['8', 'macos', 'aarch64'], + ['11', 'macos', 'aarch64'], + ['17', 'linux', 'riscv'] + ])( + 'should throw when required version of JDK can not be found in the JSON', + async (jdkVersion: string, platform: string, arch: string) => { + const distribution = new DragonwellDistribution({ + version: jdkVersion, + architecture: arch, + packageType: 'jdk', + checkLatest: false + }); + mockPlatform(distribution, platform); + + await expect( + distribution['findPackageForDownload'](jdkVersion) + ).rejects.toThrow( + `No matching version found for SemVer '${jdkVersion}'` + ); + } + ); + + it('should throw when required package type is not jdk', async () => { + const jdkVersion = '17'; + const arch = 'x64'; + const platform = 'linux'; + const distribution = new DragonwellDistribution({ + version: jdkVersion, + architecture: arch, + packageType: 'jre', + checkLatest: false + }); + mockPlatform(distribution, platform); + await expect( + distribution['findPackageForDownload'](jdkVersion) + ).rejects.toThrow('Dragonwell provides only the `jdk` package type'); + }); + }); +}); diff --git a/__tests__/distributors/graalvm-installer.test.ts b/__tests__/distributors/graalvm-installer.test.ts new file mode 100644 index 000000000..23f90b884 --- /dev/null +++ b/__tests__/distributors/graalvm-installer.test.ts @@ -0,0 +1,952 @@ +import * as core from '@actions/core'; +import * as tc from '@actions/tool-cache'; +import * as http from '@actions/http-client'; +import fs from 'fs'; +import path from 'path'; +import {GraalVMDistribution} from '../../src/distributions/graalvm/installer'; +import {JavaInstallerOptions} from '../../src/distributions/base-models'; +import * as util from '../../src/util'; + +jest.mock('@actions/core'); +jest.mock('@actions/tool-cache'); +jest.mock('@actions/http-client'); + +jest.mock('../../src/util', () => ({ + ...jest.requireActual('../../src/util'), + extractJdkFile: jest.fn(), + getDownloadArchiveExtension: jest.fn(), + renameWinArchive: jest.fn(), + getGitHubHttpHeaders: jest.fn().mockReturnValue({Accept: 'application/json'}) +})); + +jest.mock('fs', () => ({ + ...jest.requireActual('fs'), + readdirSync: jest.fn(), + existsSync: jest.fn() +})); + +beforeAll(() => { + process.env.NODE_ENV = 'test'; + + if (!jest.isMockFunction(http.HttpClient)) { + throw new Error('HTTP client must be mocked in tests!'); + } + + if (!jest.isMockFunction(tc.downloadTool)) { + throw new Error('Tool cache downloadTool must be mocked in tests!'); + } + + console.log('✅ All external dependencies are properly mocked'); +}); + +describe('GraalVMDistribution', () => { + let distribution: GraalVMDistribution; + let mockHttpClient: jest.Mocked; + let spyCoreError: jest.SpyInstance; + + const defaultOptions: JavaInstallerOptions = { + version: '17', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }; + + beforeEach(() => { + jest.clearAllMocks(); + + distribution = new GraalVMDistribution(defaultOptions); + + mockHttpClient = new http.HttpClient() as jest.Mocked; + (distribution as any).http = mockHttpClient; + + (util.getDownloadArchiveExtension as jest.Mock).mockReturnValue('tar.gz'); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); + }); + + afterAll(() => { + expect(jest.isMockFunction(http.HttpClient)).toBe(true); + + expect(jest.isMockFunction(tc.downloadTool)).toBe(true); + expect(jest.isMockFunction(tc.cacheDir)).toBe(true); + + jest.restoreAllMocks(); + jest.clearAllMocks(); + }); + + describe('getPlatform', () => { + it('should map darwin to macos', () => { + const result = distribution.getPlatform('darwin'); + expect(result).toBe('macos'); + }); + + it('should map win32 to windows', () => { + const result = distribution.getPlatform('win32'); + expect(result).toBe('windows'); + }); + + it('should map linux to linux', () => { + const result = distribution.getPlatform('linux'); + expect(result).toBe('linux'); + }); + + it('should throw error for unsupported platform', () => { + expect(() => distribution.getPlatform('aix' as NodeJS.Platform)).toThrow( + "Platform 'aix' is not supported. Supported platforms: 'linux', 'macos', 'windows'" + ); + }); + }); + + describe('downloadTool', () => { + const javaRelease = { + version: '17.0.5', + url: 'https://example.com/graalvm.tar.gz' + }; + + beforeEach(() => { + (tc.downloadTool as jest.Mock).mockResolvedValue('/tmp/archive.tar.gz'); + (tc.cacheDir as jest.Mock).mockResolvedValue('/cached/java/path'); + + (util.extractJdkFile as jest.Mock).mockResolvedValue('/tmp/extracted'); + + // Mock renameWinArchive - it returns the same path (no renaming) + (util.renameWinArchive as jest.Mock).mockImplementation((p: string) => p); + + (util.getDownloadArchiveExtension as jest.Mock).mockReturnValue('tar.gz'); + + // Mock fs.existsSync to return true for extracted path + (fs.existsSync as jest.Mock).mockReturnValue(true); + + (fs.readdirSync as jest.Mock).mockReturnValue(['graalvm-jdk-17.0.5']); + + jest + .spyOn(distribution as any, 'getToolcacheVersionName') + .mockImplementation(version => version); + }); + + it('should download, extract and cache the tool successfully', async () => { + const result = await (distribution as any).downloadTool(javaRelease); + + // Verify the download was initiated + expect(tc.downloadTool).toHaveBeenCalledWith(javaRelease.url); + + // The implementation uses the original path for extraction + expect(util.extractJdkFile).toHaveBeenCalledWith( + '/tmp/archive.tar.gz', // Original path + 'tar.gz' + ); + + // Verify path existence check + expect(fs.existsSync).toHaveBeenCalledWith('/tmp/extracted'); + + // Verify directory reading + expect(fs.readdirSync).toHaveBeenCalledWith('/tmp/extracted'); + + // Verify caching with correct parameters + expect(tc.cacheDir).toHaveBeenCalledWith( + path.join('/tmp/extracted', 'graalvm-jdk-17.0.5'), + 'Java_GraalVM_jdk', + '17.0.5', + 'x64' + ); + + // Verify the result + expect(result).toEqual({ + version: '17.0.5', + path: '/cached/java/path' + }); + + // Verify logging + expect(core.info).toHaveBeenCalledWith( + 'Downloading Java 17.0.5 (GraalVM) from https://example.com/graalvm.tar.gz ...' + ); + expect(core.info).toHaveBeenCalledWith('Extracting Java archive...'); + }); + + it('should throw error when extracted path does not exist', async () => { + (fs.existsSync as jest.Mock).mockReturnValue(false); + + await expect( + (distribution as any).downloadTool(javaRelease) + ).rejects.toThrow( + 'Extraction failed: path /tmp/extracted does not exist' + ); + + expect(core.error).toHaveBeenCalledWith( + expect.stringContaining('Failed to download and extract GraalVM:') + ); + }); + + it('should throw error when extracted directory is empty', async () => { + (fs.existsSync as jest.Mock).mockReturnValue(true); + (fs.readdirSync as jest.Mock).mockReturnValue([]); + + await expect( + (distribution as any).downloadTool(javaRelease) + ).rejects.toThrow( + 'Extraction failed: no files found in extracted directory' + ); + + expect(core.error).toHaveBeenCalledWith( + expect.stringContaining('Failed to download and extract GraalVM:') + ); + }); + + it('should handle download errors', async () => { + const downloadError = new Error('Network error during download'); + (tc.downloadTool as jest.Mock).mockRejectedValue(downloadError); + + await expect( + (distribution as any).downloadTool(javaRelease) + ).rejects.toThrow('Network error during download'); + + expect(core.error).toHaveBeenCalledWith( + 'Failed to download and extract GraalVM: Error: Network error during download' + ); + }); + + it('should handle extraction errors', async () => { + const extractError = new Error('Failed to extract archive'); + (util.extractJdkFile as jest.Mock).mockRejectedValue(extractError); + + await expect( + (distribution as any).downloadTool(javaRelease) + ).rejects.toThrow('Failed to extract archive'); + + expect(core.error).toHaveBeenCalledWith( + 'Failed to download and extract GraalVM: Error: Failed to extract archive' + ); + }); + + it('should handle different archive extensions', async () => { + // Test with a .zip file + (util.getDownloadArchiveExtension as jest.Mock).mockReturnValue('zip'); + (tc.downloadTool as jest.Mock).mockResolvedValue('/tmp/archive.zip'); + + const zipRelease = { + version: '17.0.5', + url: 'https://example.com/graalvm.zip' + }; + + const result = await (distribution as any).downloadTool(zipRelease); + + expect(util.extractJdkFile).toHaveBeenCalledWith( + '/tmp/archive.zip', + 'zip' + ); + + expect(result).toEqual({ + version: '17.0.5', + path: '/cached/java/path' + }); + }); + }); + + describe('findPackageForDownload', () => { + beforeEach(() => { + jest.spyOn(distribution, 'getPlatform').mockReturnValue('linux'); + }); + + describe('input validation', () => { + it('should throw error for null version range', async () => { + await expect( + (distribution as any).findPackageForDownload(null) + ).rejects.toThrow('Version range is required and must be a string'); + }); + + it('should throw error for undefined version range', async () => { + await expect( + (distribution as any).findPackageForDownload(undefined) + ).rejects.toThrow('Version range is required and must be a string'); + }); + + it('should throw error for empty string version range', async () => { + await expect( + (distribution as any).findPackageForDownload('') + ).rejects.toThrow('Version range is required and must be a string'); + }); + + it('should throw error for non-string version range', async () => { + await expect( + (distribution as any).findPackageForDownload(123) + ).rejects.toThrow('Version range is required and must be a string'); + }); + + it('should throw error for invalid version format', async () => { + await expect( + (distribution as any).findPackageForDownload('abc') + ).rejects.toThrow('Invalid version format: abc'); + }); + }); + + describe('stable builds', () => { + it('should construct correct URL for specific version', async () => { + const mockResponse = { + message: {statusCode: 200} + } as http.HttpClientResponse; + mockHttpClient.head.mockResolvedValue(mockResponse); + + const result = await (distribution as any).findPackageForDownload( + '17.0.5' + ); + + expect(result).toEqual({ + url: 'https://download.oracle.com/graalvm/17/archive/graalvm-jdk-17.0.5_linux-x64_bin.tar.gz', + version: '17.0.5' + }); + expect(mockHttpClient.head).toHaveBeenCalledWith(result.url); + }); + + it('should construct correct URL for major version (latest)', async () => { + const mockResponse = { + message: {statusCode: 200} + } as http.HttpClientResponse; + mockHttpClient.head.mockResolvedValue(mockResponse); + + const result = await (distribution as any).findPackageForDownload('21'); + + expect(result).toEqual({ + url: 'https://download.oracle.com/graalvm/21/latest/graalvm-jdk-21_linux-x64_bin.tar.gz', + version: '21' + }); + }); + + it('should throw error for unsupported architecture', async () => { + distribution = new GraalVMDistribution({ + ...defaultOptions, + architecture: 'x86' + }); + (distribution as any).http = mockHttpClient; + + await expect( + (distribution as any).findPackageForDownload('17') + ).rejects.toThrow( + 'Unsupported architecture: x86. Supported architectures are: x64, aarch64' + ); + }); + + it('should throw error for JDK versions less than 17', async () => { + await expect( + (distribution as any).findPackageForDownload('11') + ).rejects.toThrow( + 'GraalVM is only supported for JDK 17 and later. Requested version: 11' + ); + }); + + it('should throw error for non-jdk package types', async () => { + distribution = new GraalVMDistribution({ + ...defaultOptions, + packageType: 'jre' + }); + (distribution as any).http = mockHttpClient; + + await expect( + (distribution as any).findPackageForDownload('17') + ).rejects.toThrow('GraalVM provides only the `jdk` package type'); + }); + + it('should throw error when file not found (404)', async () => { + const mockResponse = { + message: {statusCode: 404} + } as http.HttpClientResponse; + mockHttpClient.head.mockResolvedValue(mockResponse); + + // Verify the error is thrown with the expected message + await expect( + (distribution as any).findPackageForDownload('17.0.99') + ).rejects.toThrow("No matching version found for SemVer '17.0.99'"); + // Verify distribution info is included + await expect( + (distribution as any).findPackageForDownload('17.0.99') + ).rejects.toThrow('GraalVM'); + + // Verify the hint about checking the base URL is included + await expect( + (distribution as any).findPackageForDownload('17.0.99') + ).rejects.toThrow('https://www.graalvm.org/downloads/'); + }); + + it('should throw error for unauthorized access (401)', async () => { + const mockResponse = { + message: {statusCode: 401} + } as http.HttpClientResponse; + mockHttpClient.head.mockResolvedValue(mockResponse); + + await expect( + (distribution as any).findPackageForDownload('17') + ).rejects.toThrow( + 'Access denied when downloading GraalVM. Status code: 401. Please check your credentials or permissions.' + ); + }); + + it('should throw error for forbidden access (403)', async () => { + const mockResponse = { + message: {statusCode: 403} + } as http.HttpClientResponse; + mockHttpClient.head.mockResolvedValue(mockResponse); + + await expect( + (distribution as any).findPackageForDownload('17') + ).rejects.toThrow( + 'Access denied when downloading GraalVM. Status code: 403. Please check your credentials or permissions.' + ); + }); + + it('should throw error for other HTTP errors with status message', async () => { + const mockResponse = { + message: { + statusCode: 500, + statusMessage: 'Internal Server Error' + } + } as http.HttpClientResponse; + mockHttpClient.head.mockResolvedValue(mockResponse); + + await expect( + (distribution as any).findPackageForDownload('17') + ).rejects.toThrow( + 'HTTP request for GraalVM failed with status code: 500 (Internal Server Error)' + ); + }); + + it('should throw error for other HTTP errors without status message', async () => { + const mockResponse = { + message: {statusCode: 500} + } as http.HttpClientResponse; + mockHttpClient.head.mockResolvedValue(mockResponse); + + await expect( + (distribution as any).findPackageForDownload('17') + ).rejects.toThrow( + 'HTTP request for GraalVM failed with status code: 500 (Unknown error)' + ); + }); + }); + + describe('EA builds', () => { + beforeEach(() => { + distribution = new GraalVMDistribution(defaultOptions); + (distribution as any).http = mockHttpClient; + (distribution as any).stable = false; + }); + + it('should delegate to findEABuildDownloadUrl for unstable versions', async () => { + const currentPlatform = + process.platform === 'win32' ? 'windows' : process.platform; + + const mockEAVersions = [ + { + version: '23-ea-20240716', + latest: true, + download_base_url: 'https://example.com/download/', + files: [ + { + arch: 'x64', + platform: currentPlatform, + filename: 'graalvm-jdk-23_linux-x64_bin.tar.gz' + }, + { + arch: 'aarch64', + platform: currentPlatform, + filename: 'graalvm-jdk-23_linux-aarch64_bin.tar.gz' + } + ] + } + ]; + + mockHttpClient.getJson.mockResolvedValue({ + result: mockEAVersions, + statusCode: 200, + headers: {} + }); + + jest + .spyOn(distribution as any, 'distributionArchitecture') + .mockReturnValue('x64'); + + const result = await (distribution as any).findPackageForDownload('23'); + + expect(result).toEqual({ + url: 'https://example.com/download/graalvm-jdk-23_linux-x64_bin.tar.gz', + version: '23-ea-20240716' + }); + + expect(mockHttpClient.getJson).toHaveBeenCalledWith( + 'https://api.github.com/repos/graalvm/oracle-graalvm-ea-builds/contents/versions/23-ea.json?ref=main', + {Accept: 'application/json'} + ); + }); + + it('should throw error when no latest EA version found', async () => { + const currentPlatform = + process.platform === 'win32' ? 'windows' : process.platform; + + const mockEAVersions = [ + { + version: '23-ea-20240716', + latest: false, + download_base_url: 'https://example.com/download/', + files: [ + { + arch: 'x64', + platform: currentPlatform, + filename: 'graalvm-jdk-23_linux-x64_bin.tar.gz' + } + ] + } + ]; + + mockHttpClient.getJson.mockResolvedValue({ + result: mockEAVersions, + statusCode: 200, + headers: {} + }); + + jest + .spyOn(distribution as any, 'distributionArchitecture') + .mockReturnValue('x64'); + + await expect( + (distribution as any).findPackageForDownload('23') + ).rejects.toThrow("No matching version found for SemVer '23-ea'"); + + await expect( + (distribution as any).findPackageForDownload('23') + ).rejects.toThrow( + 'Note: No EA build is marked as latest for this version.' + ); + + await expect( + (distribution as any).findPackageForDownload('23') + ).rejects.toThrow('23-ea-20240716'); + + // Verify error logging - removed as we now use the helper method which doesn't call core.error + }); + + it('should throw error when no matching file for architecture in EA build', async () => { + const currentPlatform = + process.platform === 'win32' ? 'windows' : process.platform; + + const mockEAVersions = [ + { + version: '23-ea-20240716', + latest: true, + download_base_url: 'https://example.com/download/', + files: [ + { + arch: 'arm64', + platform: currentPlatform, + filename: 'graalvm-jdk-23_linux-arm64_bin.tar.gz' + } + ] + } + ]; + + mockHttpClient.getJson.mockResolvedValue({ + result: mockEAVersions, + statusCode: 200, + headers: {} + }); + + jest + .spyOn(distribution as any, 'distributionArchitecture') + .mockReturnValue('x64'); + + await expect( + (distribution as any).findPackageForDownload('23') + ).rejects.toThrow( + `Unable to find file for architecture 'x64' and platform '${currentPlatform}'` + ); + + // Verify error logging + expect(core.error).toHaveBeenCalledWith( + expect.stringContaining('Available files for architecture x64:') + ); + }); + + it('should throw error when no matching platform in EA build', async () => { + const mockEAVersions = [ + { + version: '23-ea-20240716', + latest: true, + download_base_url: 'https://example.com/download/', + files: [ + { + arch: 'x64', + platform: 'different-platform', + filename: 'graalvm-jdk-23_different-x64_bin.tar.gz' + } + ] + } + ]; + + mockHttpClient.getJson.mockResolvedValue({ + result: mockEAVersions, + statusCode: 200, + headers: {} + }); + + jest + .spyOn(distribution as any, 'distributionArchitecture') + .mockReturnValue('x64'); + + const currentPlatform = + process.platform === 'win32' ? 'windows' : process.platform; + + await expect( + (distribution as any).findPackageForDownload('23') + ).rejects.toThrow( + `Unable to find file for architecture 'x64' and platform '${currentPlatform}'` + ); + }); + + it('should throw error when filename does not start with graalvm-jdk-', async () => { + const currentPlatform = + process.platform === 'win32' ? 'windows' : process.platform; + + const mockEAVersions = [ + { + version: '23-ea-20240716', + latest: true, + download_base_url: 'https://example.com/download/', + files: [ + { + arch: 'x64', + platform: currentPlatform, + filename: 'wrong-prefix-23_linux-x64_bin.tar.gz' + } + ] + } + ]; + + mockHttpClient.getJson.mockResolvedValue({ + result: mockEAVersions, + statusCode: 200, + headers: {} + }); + + jest + .spyOn(distribution as any, 'distributionArchitecture') + .mockReturnValue('x64'); + + await expect( + (distribution as any).findPackageForDownload('23') + ).rejects.toThrow( + "Invalid filename format: wrong-prefix-23_linux-x64_bin.tar.gz. Expected to start with 'graalvm-jdk-'" + ); + }); + + it('should throw error when EA version JSON is not found', async () => { + mockHttpClient.getJson.mockResolvedValue({ + result: null, + statusCode: 404, + headers: {} + }); + + await expect( + (distribution as any).findPackageForDownload('23') + ).rejects.toThrow( + "No GraalVM EA build found for version '23-ea'. Please check if the version is correct." + ); + }); + }); + }); + + describe('findEABuildDownloadUrl', () => { + const currentPlatform = + process.platform === 'win32' ? 'windows' : process.platform; + + const mockEAVersions = [ + { + version: '23-ea-20240716', + latest: true, + download_base_url: 'https://example.com/download/', + files: [ + { + arch: 'x64', + platform: currentPlatform, + filename: 'graalvm-jdk-23_linux-x64_bin.tar.gz' + }, + { + arch: 'aarch64', + platform: currentPlatform, + filename: 'graalvm-jdk-23_linux-aarch64_bin.tar.gz' + } + ] + }, + { + version: '23-ea-20240709', + latest: false, + download_base_url: 'https://example.com/old/', + files: [ + { + arch: 'x64', + platform: currentPlatform, + filename: 'graalvm-jdk-23_linux-x64_bin.tar.gz' + } + ] + } + ]; + + let fetchEASpy: jest.SpyInstance; + + beforeEach(() => { + fetchEASpy = jest.spyOn(distribution as any, 'fetchEAJson'); + jest + .spyOn(distribution as any, 'distributionArchitecture') + .mockReturnValue('x64'); + }); + + it('should find latest version and return correct URL', async () => { + fetchEASpy.mockResolvedValue(mockEAVersions); + + const result = await (distribution as any).findEABuildDownloadUrl( + '23-ea' + ); + + expect(fetchEASpy).toHaveBeenCalledWith('23-ea'); + expect(result).toEqual({ + url: 'https://example.com/download/graalvm-jdk-23_linux-x64_bin.tar.gz', + version: '23-ea-20240716' + }); + + // Verify debug logging + expect(core.debug).toHaveBeenCalledWith('Searching for EA build: 23-ea'); + expect(core.debug).toHaveBeenCalledWith('Found 2 EA versions'); + expect(core.debug).toHaveBeenCalledWith( + 'Latest version found: 23-ea-20240716' + ); + expect(core.debug).toHaveBeenCalledWith( + 'Download URL: https://example.com/download/graalvm-jdk-23_linux-x64_bin.tar.gz' + ); + }); + + it('should throw error when no latest version found', async () => { + const noLatestVersions = mockEAVersions.map(v => ({...v, latest: false})); + fetchEASpy.mockResolvedValue(noLatestVersions); + + await expect( + (distribution as any).findEABuildDownloadUrl('23-ea') + ).rejects.toThrow("No matching version found for SemVer '23-ea'"); + + await expect( + (distribution as any).findEABuildDownloadUrl('23-ea') + ).rejects.toThrow( + 'Note: No EA build is marked as latest for this version.' + ); + + await expect( + (distribution as any).findEABuildDownloadUrl('23-ea') + ).rejects.toThrow('23-ea-20240716'); + + // Verify error logging - removed as we now use the helper method which doesn't call core.error + }); + + it('should throw error when no matching file for architecture', async () => { + const wrongArchVersions = [ + { + version: '23-ea-20240716', + latest: true, + download_base_url: 'https://example.com/download/', + files: [ + { + arch: 'arm', + platform: currentPlatform, + filename: 'graalvm-jdk-23_linux-arm_bin.tar.gz' + } + ] + } + ]; + fetchEASpy.mockResolvedValue(wrongArchVersions); + + await expect( + (distribution as any).findEABuildDownloadUrl('23-ea') + ).rejects.toThrow( + `Unable to find file for architecture 'x64' and platform '${currentPlatform}'` + ); + + expect(core.error).toHaveBeenCalledWith( + expect.stringContaining('Available files for architecture x64:') + ); + }); + + it('should throw error when filename does not start with graalvm-jdk-', async () => { + const badFilenameVersions = [ + { + version: '23-ea-20240716', + latest: true, + download_base_url: 'https://example.com/download/', + files: [ + { + arch: 'x64', + platform: currentPlatform, + filename: 'wrong-name.tar.gz' + } + ] + } + ]; + fetchEASpy.mockResolvedValue(badFilenameVersions); + + await expect( + (distribution as any).findEABuildDownloadUrl('23-ea') + ).rejects.toThrow( + "Invalid filename format: wrong-name.tar.gz. Expected to start with 'graalvm-jdk-'" + ); + }); + + it('should work with aarch64 architecture', async () => { + jest + .spyOn(distribution as any, 'distributionArchitecture') + .mockReturnValue('aarch64'); + + fetchEASpy.mockResolvedValue(mockEAVersions); + + const result = await (distribution as any).findEABuildDownloadUrl( + '23-ea' + ); + + expect(result).toEqual({ + url: 'https://example.com/download/graalvm-jdk-23_linux-aarch64_bin.tar.gz', + version: '23-ea-20240716' + }); + }); + + it('should throw error when platform does not match', async () => { + const wrongPlatformVersions = [ + { + version: '23-ea-20240716', + latest: true, + download_base_url: 'https://example.com/download/', + files: [ + { + arch: 'x64', + platform: 'different-platform', + filename: 'graalvm-jdk-23_different-x64_bin.tar.gz' + } + ] + } + ]; + fetchEASpy.mockResolvedValue(wrongPlatformVersions); + + await expect( + (distribution as any).findEABuildDownloadUrl('23-ea') + ).rejects.toThrow( + `Unable to find file for architecture 'x64' and platform '${currentPlatform}'` + ); + }); + }); + + describe('fetchEAJson', () => { + it('should fetch and return EA version data', async () => { + const mockData = [{version: '23-ea', files: []}]; + mockHttpClient.getJson.mockResolvedValue({ + result: mockData, + statusCode: 200, + headers: {} + }); + + const result = await (distribution as any).fetchEAJson('23-ea'); + + expect(mockHttpClient.getJson).toHaveBeenCalledWith( + 'https://api.github.com/repos/graalvm/oracle-graalvm-ea-builds/contents/versions/23-ea.json?ref=main', + {Accept: 'application/json'} + ); + expect(result).toEqual(mockData); + expect(core.debug).toHaveBeenCalled(); + }); + + it('should throw error when no data returned', async () => { + mockHttpClient.getJson.mockResolvedValue({ + result: null, + statusCode: 200, + headers: {} + }); + + await expect((distribution as any).fetchEAJson('23-ea')).rejects.toThrow( + "No GraalVM EA build found for version '23-ea'. Please check if the version is correct." + ); + }); + + it('should handle 404 errors with specific message', async () => { + const error404 = new Error('Not Found: 404'); + mockHttpClient.getJson.mockRejectedValue(error404); + + await expect((distribution as any).fetchEAJson('23-ea')).rejects.toThrow( + "GraalVM EA version '23-ea' not found. Please verify the version exists in the EA builds repository." + ); + }); + + it('should handle generic HTTP errors with context', async () => { + const networkError = new Error('Network timeout'); + mockHttpClient.getJson.mockRejectedValue(networkError); + + await expect((distribution as any).fetchEAJson('23-ea')).rejects.toThrow( + "Failed to fetch GraalVM EA version information for '23-ea': Network timeout" + ); + }); + + it('should handle non-Error exceptions', async () => { + mockHttpClient.getJson.mockRejectedValue('String error'); + + await expect((distribution as any).fetchEAJson('23-ea')).rejects.toThrow( + "Failed to fetch GraalVM EA version information for '23-ea'" + ); + }); + }); + + describe('Integration tests', () => { + it('should handle different architectures correctly', async () => { + const architectures = ['x64', 'aarch64']; + + for (const arch of architectures) { + distribution = new GraalVMDistribution({ + ...defaultOptions, + architecture: arch + }); + (distribution as any).http = mockHttpClient; + + const mockResponse = { + message: {statusCode: 200} + } as http.HttpClientResponse; + mockHttpClient.head.mockResolvedValue(mockResponse); + + const result = await (distribution as any).findPackageForDownload('17'); + expect(result.url).toContain(arch); + } + }); + + it('should handle different platforms correctly', async () => { + const platforms = [ + {process: 'darwin', expected: 'macos'}, + {process: 'win32', expected: 'windows'}, + {process: 'linux', expected: 'linux'} + ]; + + const originalPlatform = process.platform; + + for (const {process: proc, expected} of platforms) { + Object.defineProperty(process, 'platform', { + value: proc, + configurable: true + }); + + distribution = new GraalVMDistribution(defaultOptions); + (distribution as any).http = mockHttpClient; + + const mockResponse = { + message: {statusCode: 200} + } as http.HttpClientResponse; + mockHttpClient.head.mockResolvedValue(mockResponse); + + const result = await (distribution as any).findPackageForDownload('17'); + expect(result.url).toContain(expected); + } + + Object.defineProperty(process, 'platform', { + value: originalPlatform, + configurable: true + }); + }); + }); +}); diff --git a/__tests__/distributors/jetbrains-installer.test.ts b/__tests__/distributors/jetbrains-installer.test.ts new file mode 100644 index 000000000..bf1dc15da --- /dev/null +++ b/__tests__/distributors/jetbrains-installer.test.ts @@ -0,0 +1,123 @@ +import https from 'https'; +import {HttpClient} from '@actions/http-client'; +import {JetBrainsDistribution} from '../../src/distributions/jetbrains/installer'; + +import manifestData from '../data/jetbrains.json'; +import os from 'os'; +import * as core from '@actions/core'; + +describe('getAvailableVersions', () => { + let spyHttpClient: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; + + beforeEach(() => { + spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); + spyHttpClient.mockReturnValue({ + statusCode: 200, + headers: {}, + result: [] + }); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); + }); + + afterEach(() => { + jest.resetAllMocks(); + jest.clearAllMocks(); + jest.restoreAllMocks(); + }); + + it('load available versions', async () => { + spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); + spyHttpClient.mockReturnValueOnce({ + statusCode: 200, + headers: {}, + result: manifestData as any + }); + + const distribution = new JetBrainsDistribution({ + version: '17', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + const availableVersions = await distribution['getAvailableVersions'](); + expect(availableVersions).not.toBeNull(); + + const length = + os.platform() === 'win32' ? manifestData.length : manifestData.length + 2; + expect(availableVersions.length).toBe(length); + }, 10_000); +}); + +describe('findPackageForDownload', () => { + it.each([ + ['17', '17.0.11+1207.24'], + ['11.0', '11.0.16+2043.64'], + ['11.0.11', '11.0.11+1542.1'], + ['21.0.2', '21.0.2+375.1'], + ['21', '21.0.3+465.3'], + ['x', '21.0.3+465.3'] + ])('version is resolved correctly %s -> %s', async (input, expected) => { + const distribution = new JetBrainsDistribution({ + version: input, + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData as any; + const resolvedVersion = await distribution['findPackageForDownload'](input); + expect(resolvedVersion.version).toBe(expected); + }); + + it.each(['17', '11.0', '11.0.11', '21.0.2', '21'])( + 'version %s can be downloaded', + async input => { + const distribution = new JetBrainsDistribution({ + version: input, + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData as any; + const resolvedVersion = + await distribution['findPackageForDownload'](input); + const url = resolvedVersion.url; + const options = {method: 'HEAD'}; + + https.request(url, options, res => { + // JetBrains uses 403 for inexistent packages + expect(res.statusCode).not.toBe(403); + res.resume(); + }); + } + ); + + it('version is not found', async () => { + const distribution = new JetBrainsDistribution({ + version: '8.0.452', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData as any; + await expect(distribution['findPackageForDownload']('8.x')).rejects.toThrow( + /No matching version found for SemVer */ + ); + }); + + it('version list is empty', async () => { + const distribution = new JetBrainsDistribution({ + version: '8', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => []; + await expect(distribution['findPackageForDownload']('8')).rejects.toThrow( + /No matching version found for SemVer */ + ); + }); +}); diff --git a/__tests__/distributors/liberica-installer.test.ts b/__tests__/distributors/liberica-installer.test.ts index 1044e7f48..171bab16b 100644 --- a/__tests__/distributors/liberica-installer.test.ts +++ b/__tests__/distributors/liberica-installer.test.ts @@ -1,19 +1,29 @@ -import { LibericaDistributions } from '../../src/distributions/liberica/installer'; -import { ArchitectureOptions, LibericaVersion } from '../../src/distributions/liberica/models'; -import { HttpClient } from '@actions/http-client'; +import {LibericaDistributions} from '../../src/distributions/liberica/installer'; +import { + ArchitectureOptions, + LibericaVersion +} from '../../src/distributions/liberica/models'; +import {HttpClient} from '@actions/http-client'; +import os from 'os'; +import * as core from '@actions/core'; -const manifestData = require('../data/liberica.json') as LibericaVersion[]; +import manifestData from '../data/liberica.json'; describe('getAvailableVersions', () => { let spyHttpClient: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; beforeEach(() => { spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); spyHttpClient.mockReturnValue({ statusCode: 200, headers: {}, - result: manifestData + result: manifestData as LibericaVersion[] }); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); }); afterEach(() => { @@ -24,27 +34,57 @@ describe('getAvailableVersions', () => { it.each([ [ - { version: '11.x', architecture: 'x86', packageType: 'jdk', checkLatest: false }, + { + version: '11.x', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, 'bundle-type=jdk&bitness=32&arch=x86&build-type=all' ], [ - { version: '11-ea', architecture: 'x86', packageType: 'jdk', checkLatest: false }, + { + version: '11-ea', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, 'bundle-type=jdk&bitness=32&arch=x86&build-type=ea' ], [ - { version: '16.0.2', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '16.0.2', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, 'bundle-type=jdk&bitness=64&arch=x86&build-type=all' ], [ - { version: '16.0.2', architecture: 'x64', packageType: 'jre', checkLatest: false }, + { + version: '16.0.2', + architecture: 'x64', + packageType: 'jre', + checkLatest: false + }, 'bundle-type=jre&bitness=64&arch=x86&build-type=all' ], [ - { version: '8', architecture: 'armv7', packageType: 'jdk+fx', checkLatest: false }, + { + version: '8', + architecture: 'armv7', + packageType: 'jdk+fx', + checkLatest: false + }, 'bundle-type=jdk-full&bitness=32&arch=arm&build-type=all' ], [ - { version: '8', architecture: 'aarch64', packageType: 'jre+fx', checkLatest: false }, + { + version: '8', + architecture: 'aarch64', + packageType: 'jre+fx', + checkLatest: false + }, 'bundle-type=jre-full&bitness=64&arch=arm&build-type=all' ] ])('build correct url for %s -> %s', async (input, urlParams) => { @@ -61,6 +101,41 @@ describe('getAvailableVersions', () => { expect(spyHttpClient.mock.calls[0][0]).toBe(buildUrl); }); + type DistroArch = { + bitness: string; + arch: string; + }; + it.each([ + ['amd64', {bitness: '64', arch: 'x86'}], + ['arm64', {bitness: '64', arch: 'arm'}] + ])( + 'defaults to os.arch(): %s mapped to distro arch: %s', + async (osArch: string, distroArch: DistroArch) => { + jest + .spyOn(os, 'arch') + .mockReturnValue(osArch as ReturnType); + + const distributions = new LibericaDistributions({ + version: '17', + architecture: '', // to get default value + packageType: 'jdk', + checkLatest: false + }); + + const additionalParams = + '&installation-type=archive&fields=downloadUrl%2Cversion%2CfeatureVersion%2CinterimVersion%2C' + + 'updateVersion%2CbuildVersion'; + distributions['getPlatformOption'] = () => 'macos'; + + const buildUrl = `https://api.bell-sw.com/v1/liberica/releases?os=macos&bundle-type=jdk&bitness=${distroArch.bitness}&arch=${distroArch.arch}&build-type=all${additionalParams}`; + + await distributions['getAvailableVersions'](); + + expect(spyHttpClient.mock.calls).toHaveLength(1); + expect(spyHttpClient.mock.calls[0][0]).toBe(buildUrl); + } + ); + it('load available versions', async () => { const distribution = new LibericaDistributions({ version: '11', @@ -75,21 +150,24 @@ describe('getAvailableVersions', () => { describe('getArchitectureOptions', () => { it.each([ - ['x86', { bitness: '32', arch: 'x86' }], - ['x64', { bitness: '64', arch: 'x86' }], - ['armv7', { bitness: '32', arch: 'arm' }], - ['aarch64', { bitness: '64', arch: 'arm' }], - ['ppc64le', { bitness: '64', arch: 'ppc' }] - ] as [string, ArchitectureOptions][])('parse architecture %s -> %s', (input, expected) => { - const distributions = new LibericaDistributions({ - architecture: input, - checkLatest: false, - packageType: '', - version: '' - }); + ['x86', {bitness: '32', arch: 'x86'}], + ['x64', {bitness: '64', arch: 'x86'}], + ['armv7', {bitness: '32', arch: 'arm'}], + ['aarch64', {bitness: '64', arch: 'arm'}], + ['ppc64le', {bitness: '64', arch: 'ppc'}] + ] as [string, ArchitectureOptions][])( + 'parse architecture %s -> %s', + (input, expected) => { + const distributions = new LibericaDistributions({ + architecture: input, + checkLatest: false, + packageType: '', + version: '' + }); - expect(distributions['getArchitectureOptions']()).toEqual(expected); - }); + expect(distributions['getArchitectureOptions']()).toEqual(expected); + } + ); it.each(['armv6', 's390x'])('not support architecture %s', input => { const distributions = new LibericaDistributions({ @@ -137,7 +215,7 @@ describe('findPackageForDownload', () => { it('should throw an error', async () => { await expect(distribution['findPackageForDownload']('17')).rejects.toThrow( - /Could not find satisfied version for semver */ + /No matching version found for SemVer/ ); }); }); @@ -165,9 +243,9 @@ describe('getPlatformOption', () => { it.each(['aix', 'android', 'freebsd', 'openbsd', 'netbsd'])( 'not support os version %s', input => { - expect(() => distributions['getPlatformOption'](input as NodeJS.Platform)).toThrow( - /Platform '\w+' is not supported\. Supported platforms: .+/ - ); + expect(() => + distributions['getPlatformOption'](input as NodeJS.Platform) + ).toThrow(/Platform '\w+' is not supported\. Supported platforms: .+/); } ); }); @@ -181,9 +259,33 @@ describe('convertVersionToSemver', () => { }); it.each([ - [{ featureVersion: 11, interimVersion: 0, updateVersion: 12, buildVersion: 7 }, '11.0.12+7'], - [{ featureVersion: 11, interimVersion: 0, updateVersion: 12, buildVersion: 0 }, '11.0.12'], - [{ featureVersion: 11, interimVersion: 0, updateVersion: 0, buildVersion: 13 }, '11.0.0+13'] + [ + { + featureVersion: 11, + interimVersion: 0, + updateVersion: 12, + buildVersion: 7 + }, + '11.0.12+7' + ], + [ + { + featureVersion: 11, + interimVersion: 0, + updateVersion: 12, + buildVersion: 0 + }, + '11.0.12' + ], + [ + { + featureVersion: 11, + interimVersion: 0, + updateVersion: 0, + buildVersion: 13 + }, + '11.0.0+13' + ] ])('%s -> %s', (input, expected) => { const actual = distributions['convertVersionToSemver']({ downloadUrl: '', diff --git a/__tests__/distributors/liberica-linux-installer.test.ts b/__tests__/distributors/liberica-linux-installer.test.ts new file mode 100644 index 000000000..f6d20dd28 --- /dev/null +++ b/__tests__/distributors/liberica-linux-installer.test.ts @@ -0,0 +1,298 @@ +import {LibericaDistributions} from '../../src/distributions/liberica/installer'; +import { + ArchitectureOptions, + LibericaVersion +} from '../../src/distributions/liberica/models'; +import {HttpClient} from '@actions/http-client'; +import os from 'os'; +import * as core from '@actions/core'; + +import manifestData from '../data/liberica-linux.json'; + +describe('getAvailableVersions', () => { + let spyHttpClient: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; + + beforeEach(() => { + spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); + spyHttpClient.mockReturnValue({ + statusCode: 200, + headers: {}, + result: manifestData as LibericaVersion[] + }); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); + }); + + afterEach(() => { + jest.resetAllMocks(); + jest.clearAllMocks(); + jest.restoreAllMocks(); + }); + + it.each([ + [ + { + version: '11.x', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, + 'bundle-type=jdk&bitness=32&arch=x86&build-type=all' + ], + [ + { + version: '11-ea', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, + 'bundle-type=jdk&bitness=32&arch=x86&build-type=ea' + ], + [ + { + version: '16.0.2', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, + 'bundle-type=jdk&bitness=64&arch=x86&build-type=all' + ], + [ + { + version: '16.0.2', + architecture: 'x64', + packageType: 'jre', + checkLatest: false + }, + 'bundle-type=jre&bitness=64&arch=x86&build-type=all' + ], + [ + { + version: '8', + architecture: 'armv7', + packageType: 'jdk+fx', + checkLatest: false + }, + 'bundle-type=jdk-full&bitness=32&arch=arm&build-type=all' + ], + [ + { + version: '8', + architecture: 'aarch64', + packageType: 'jre+fx', + checkLatest: false + }, + 'bundle-type=jre-full&bitness=64&arch=arm&build-type=all' + ] + ])('build correct url for %s -> %s', async (input, urlParams) => { + const additionalParams = + '&installation-type=archive&fields=downloadUrl%2Cversion%2CfeatureVersion%2CinterimVersion%2C' + + 'updateVersion%2CbuildVersion'; + const distribution = new LibericaDistributions(input); + distribution['getPlatformOption'] = () => 'linux'; + const buildUrl = `https://api.bell-sw.com/v1/liberica/releases?os=linux&${urlParams}${additionalParams}`; + + await distribution['getAvailableVersions'](); + + expect(spyHttpClient.mock.calls).toHaveLength(1); + expect(spyHttpClient.mock.calls[0][0]).toBe(buildUrl); + }); + + type DistroArch = { + bitness: string; + arch: string; + }; + it.each([ + ['amd64', {bitness: '64', arch: 'x86'}], + ['arm64', {bitness: '64', arch: 'arm'}] + ])( + 'defaults to os.arch(): %s mapped to distro arch: %s', + async (osArch: string, distroArch: DistroArch) => { + jest + .spyOn(os, 'arch') + .mockReturnValue(osArch as ReturnType); + + const distribution = new LibericaDistributions({ + version: '17', + architecture: '', // to get default value + packageType: 'jdk', + checkLatest: false + }); + + const additionalParams = + '&installation-type=archive&fields=downloadUrl%2Cversion%2CfeatureVersion%2CinterimVersion%2C' + + 'updateVersion%2CbuildVersion'; + distribution['getPlatformOption'] = () => 'linux'; + + const buildUrl = `https://api.bell-sw.com/v1/liberica/releases?os=linux&bundle-type=jdk&bitness=${distroArch.bitness}&arch=${distroArch.arch}&build-type=all${additionalParams}`; + + await distribution['getAvailableVersions'](); + + expect(spyHttpClient.mock.calls).toHaveLength(1); + expect(spyHttpClient.mock.calls[0][0]).toBe(buildUrl); + } + ); + + it('load available versions', async () => { + const distribution = new LibericaDistributions({ + version: '11', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + const availableVersions = await distribution['getAvailableVersions'](); + expect(availableVersions).toEqual(manifestData); + }); +}); + +describe('getArchitectureOptions', () => { + it.each([ + ['x86', {bitness: '32', arch: 'x86'}], + ['x64', {bitness: '64', arch: 'x86'}], + ['armv7', {bitness: '32', arch: 'arm'}], + ['aarch64', {bitness: '64', arch: 'arm'}], + ['ppc64le', {bitness: '64', arch: 'ppc'}] + ] as [string, ArchitectureOptions][])( + 'parse architecture %s -> %s', + (input, expected) => { + const distributions = new LibericaDistributions({ + architecture: input, + checkLatest: false, + packageType: '', + version: '' + }); + + expect(distributions['getArchitectureOptions']()).toEqual(expected); + } + ); + + it.each(['armv6', 's390x'])('not support architecture %s', input => { + const distributions = new LibericaDistributions({ + architecture: input, + checkLatest: false, + packageType: '', + version: '' + }); + + expect(() => distributions['getArchitectureOptions']()).toThrow( + /Architecture '\w+' is not supported\. Supported architectures: .*/ + ); + }); +}); + +describe('findPackageForDownload', () => { + let distribution: LibericaDistributions; + + beforeEach(() => { + distribution = new LibericaDistributions({ + version: '', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData; + }); + + it.each([ + ['8', '8.0.302+8'], + ['11.x', '11.0.12+7'], + ['8.0', '8.0.302+8'], + ['11.0.x', '11.0.12+7'], + ['15', '15.0.2+10'], + ['15.0', '15.0.2+10'], + ['15.0.0', '15.0.0+36'], + ['8.0.232', '8.0.232+10'], + ['8.0.232+9', '8.0.232+9'], + ['15.0.2+8', '15.0.2+8'], + ['15.0.2+10', '15.0.2+10'] + ])('version is %s -> %s', async (input, expected) => { + const result = await distribution['findPackageForDownload'](input); + expect(result.version).toBe(expected); + }); + + it('should throw an error', async () => { + await expect(distribution['findPackageForDownload']('18')).rejects.toThrow( + /No matching version found for SemVer/ + ); + }); +}); + +describe('getPlatformOption', () => { + const distributions = new LibericaDistributions({ + architecture: 'x64', + version: '11', + packageType: 'jdk', + checkLatest: false + }); + + it.each([ + ['linux', 'linux'], + ['darwin', 'macos'], + ['win32', 'windows'], + ['cygwin', 'windows'], + ['sunos', 'solaris'] + ])('os version %s -> %s', (input, expected) => { + const actual = distributions['getPlatformOption'](input as NodeJS.Platform); + + expect(actual).toEqual(expected); + }); + + it.each(['aix', 'android', 'freebsd', 'openbsd', 'netbsd'])( + 'not support os version %s', + input => { + expect(() => + distributions['getPlatformOption'](input as NodeJS.Platform) + ).toThrow(/Platform '\w+' is not supported\. Supported platforms: .+/); + } + ); +}); + +describe('convertVersionToSemver', () => { + const distributions = new LibericaDistributions({ + architecture: 'x64', + version: '11', + packageType: 'jdk', + checkLatest: false + }); + + it.each([ + [ + { + featureVersion: 11, + interimVersion: 0, + updateVersion: 12, + buildVersion: 7 + }, + '11.0.12+7' + ], + [ + { + featureVersion: 11, + interimVersion: 0, + updateVersion: 12, + buildVersion: 0 + }, + '11.0.12' + ], + [ + { + featureVersion: 11, + interimVersion: 0, + updateVersion: 0, + buildVersion: 13 + }, + '11.0.0+13' + ] + ])('%s -> %s', (input, expected) => { + const actual = distributions['convertVersionToSemver']({ + downloadUrl: '', + version: '', + ...input + }); + + expect(actual).toEqual(expected); + }); +}); diff --git a/__tests__/distributors/liberica-windows-installer.test.ts b/__tests__/distributors/liberica-windows-installer.test.ts new file mode 100644 index 000000000..da89ee7a2 --- /dev/null +++ b/__tests__/distributors/liberica-windows-installer.test.ts @@ -0,0 +1,297 @@ +import {LibericaDistributions} from '../../src/distributions/liberica/installer'; +import { + ArchitectureOptions, + LibericaVersion +} from '../../src/distributions/liberica/models'; +import {HttpClient} from '@actions/http-client'; +import os from 'os'; +import * as core from '@actions/core'; + +import manifestData from '../data/liberica-windows.json'; + +describe('getAvailableVersions', () => { + let spyHttpClient: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; + + beforeEach(() => { + spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); + spyHttpClient.mockReturnValue({ + statusCode: 200, + headers: {}, + result: manifestData as LibericaVersion[] + }); + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); + }); + + afterEach(() => { + jest.resetAllMocks(); + jest.clearAllMocks(); + jest.restoreAllMocks(); + }); + + it.each([ + [ + { + version: '11.x', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, + 'bundle-type=jdk&bitness=32&arch=x86&build-type=all' + ], + [ + { + version: '11-ea', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, + 'bundle-type=jdk&bitness=32&arch=x86&build-type=ea' + ], + [ + { + version: '16.0.2', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, + 'bundle-type=jdk&bitness=64&arch=x86&build-type=all' + ], + [ + { + version: '16.0.2', + architecture: 'x64', + packageType: 'jre', + checkLatest: false + }, + 'bundle-type=jre&bitness=64&arch=x86&build-type=all' + ], + [ + { + version: '8', + architecture: 'armv7', + packageType: 'jdk+fx', + checkLatest: false + }, + 'bundle-type=jdk-full&bitness=32&arch=arm&build-type=all' + ], + [ + { + version: '8', + architecture: 'aarch64', + packageType: 'jre+fx', + checkLatest: false + }, + 'bundle-type=jre-full&bitness=64&arch=arm&build-type=all' + ] + ])('build correct url for %s -> %s', async (input, urlParams) => { + const additionalParams = + '&installation-type=archive&fields=downloadUrl%2Cversion%2CfeatureVersion%2CinterimVersion%2C' + + 'updateVersion%2CbuildVersion'; + const distribution = new LibericaDistributions(input); + distribution['getPlatformOption'] = () => 'windows'; + const buildUrl = `https://api.bell-sw.com/v1/liberica/releases?os=windows&${urlParams}${additionalParams}`; + + await distribution['getAvailableVersions'](); + + expect(spyHttpClient.mock.calls).toHaveLength(1); + expect(spyHttpClient.mock.calls[0][0]).toBe(buildUrl); + }); + + type DistroArch = { + bitness: string; + arch: string; + }; + it.each([ + ['amd64', {bitness: '64', arch: 'x86'}], + ['arm64', {bitness: '64', arch: 'arm'}] + ])( + 'defaults to os.arch(): %s mapped to distro arch: %s', + async (osArch: string, distroArch: DistroArch) => { + jest + .spyOn(os, 'arch') + .mockReturnValue(osArch as ReturnType); + + const distribution = new LibericaDistributions({ + version: '17', + architecture: '', // to get default value + packageType: 'jdk', + checkLatest: false + }); + + const additionalParams = + '&installation-type=archive&fields=downloadUrl%2Cversion%2CfeatureVersion%2CinterimVersion%2C' + + 'updateVersion%2CbuildVersion'; + distribution['getPlatformOption'] = () => 'windows'; + + const buildUrl = `https://api.bell-sw.com/v1/liberica/releases?os=windows&bundle-type=jdk&bitness=${distroArch.bitness}&arch=${distroArch.arch}&build-type=all${additionalParams}`; + + await distribution['getAvailableVersions'](); + + expect(spyHttpClient.mock.calls).toHaveLength(1); + expect(spyHttpClient.mock.calls[0][0]).toBe(buildUrl); + } + ); + + it('load available versions', async () => { + const distribution = new LibericaDistributions({ + version: '11', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + const availableVersions = await distribution['getAvailableVersions'](); + expect(availableVersions).toEqual(manifestData); + }); +}); + +describe('getArchitectureOptions', () => { + it.each([ + ['x86', {bitness: '32', arch: 'x86'}], + ['x64', {bitness: '64', arch: 'x86'}], + ['armv7', {bitness: '32', arch: 'arm'}], + ['aarch64', {bitness: '64', arch: 'arm'}], + ['ppc64le', {bitness: '64', arch: 'ppc'}] + ] as [string, ArchitectureOptions][])( + 'parse architecture %s -> %s', + (input, expected) => { + const distributions = new LibericaDistributions({ + architecture: input, + checkLatest: false, + packageType: '', + version: '' + }); + + expect(distributions['getArchitectureOptions']()).toEqual(expected); + } + ); + + it.each(['armv6', 's390x'])('not support architecture %s', input => { + const distributions = new LibericaDistributions({ + architecture: input, + checkLatest: false, + packageType: '', + version: '' + }); + + expect(() => distributions['getArchitectureOptions']()).toThrow( + /Architecture '\w+' is not supported\. Supported architectures: .*/ + ); + }); +}); + +describe('findPackageForDownload', () => { + let distribution: LibericaDistributions; + + beforeEach(() => { + distribution = new LibericaDistributions({ + version: '', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData; + }); + + it.each([ + ['8', '8.0.302+8'], + ['11.x', '11.0.12+7'], + ['8.0', '8.0.302+8'], + ['11.0.x', '11.0.12+7'], + ['15', '15.0.2+10'], + ['15.0', '15.0.2+10'], + ['15.0.0', '15.0.0+36'], + ['8.0.232', '8.0.232+10'], + ['8.0.232+9', '8.0.232+9'], + ['15.0.2+8', '15.0.2+8'], + ['15.0.2+10', '15.0.2+10'] + ])('version is %s -> %s', async (input, expected) => { + const result = await distribution['findPackageForDownload'](input); + expect(result.version).toBe(expected); + }); + + it('should throw an error', async () => { + await expect(distribution['findPackageForDownload']('18')).rejects.toThrow( + /No matching version found for SemVer/ + ); + }); +}); + +describe('getPlatformOption', () => { + const distributions = new LibericaDistributions({ + architecture: 'x64', + version: '11', + packageType: 'jdk', + checkLatest: false + }); + + it.each([ + ['linux', 'linux'], + ['darwin', 'macos'], + ['win32', 'windows'], + ['cygwin', 'windows'], + ['sunos', 'solaris'] + ])('os version %s -> %s', (input, expected) => { + const actual = distributions['getPlatformOption'](input as NodeJS.Platform); + + expect(actual).toEqual(expected); + }); + + it.each(['aix', 'android', 'freebsd', 'openbsd', 'netbsd'])( + 'not support os version %s', + input => { + expect(() => + distributions['getPlatformOption'](input as NodeJS.Platform) + ).toThrow(/Platform '\w+' is not supported\. Supported platforms: .+/); + } + ); +}); + +describe('convertVersionToSemver', () => { + const distributions = new LibericaDistributions({ + architecture: 'x64', + version: '11', + packageType: 'jdk', + checkLatest: false + }); + + it.each([ + [ + { + featureVersion: 11, + interimVersion: 0, + updateVersion: 12, + buildVersion: 7 + }, + '11.0.12+7' + ], + [ + { + featureVersion: 11, + interimVersion: 0, + updateVersion: 12, + buildVersion: 0 + }, + '11.0.12' + ], + [ + { + featureVersion: 11, + interimVersion: 0, + updateVersion: 0, + buildVersion: 13 + }, + '11.0.0+13' + ] + ])('%s -> %s', (input, expected) => { + const actual = distributions['convertVersionToSemver']({ + downloadUrl: '', + version: '', + ...input + }); + + expect(actual).toEqual(expected); + }); +}); diff --git a/__tests__/distributors/local-installer.test.ts b/__tests__/distributors/local-installer.test.ts index c1618971b..201d1d254 100644 --- a/__tests__/distributors/local-installer.test.ts +++ b/__tests__/distributors/local-installer.test.ts @@ -7,7 +7,7 @@ import path from 'path'; import * as semver from 'semver'; import * as util from '../../src/util'; -import { LocalDistribution } from '../../src/distributions/local/installer'; +import {LocalDistribution} from '../../src/distributions/local/installer'; describe('setupJava', () => { const actualJavaVersion = '11.1.10'; @@ -27,7 +27,8 @@ describe('setupJava', () => { let spyFsReadDir: jest.SpyInstance; let spyUtilsExtractJdkFile: jest.SpyInstance; let spyPathResolve: jest.SpyInstance; - let expectedJdkFile = 'JavaLocalJdkFile'; + let spyCoreError: jest.SpyInstance; + const expectedJdkFile = 'JavaLocalJdkFile'; beforeEach(() => { spyGetToolcachePath = jest.spyOn(util, 'getToolcachePath'); @@ -35,18 +36,27 @@ describe('setupJava', () => { (toolname: string, javaVersion: string, architecture: string) => { const semverVersion = new semver.Range(javaVersion); - if (path.basename(javaPath) !== architecture || !javaPath.includes(toolname)) { + if ( + path.basename(javaPath) !== architecture || + !javaPath.includes(toolname) + ) { return ''; } - return semver.satisfies(actualJavaVersion, semverVersion) ? javaPath : ''; + return semver.satisfies(actualJavaVersion, semverVersion) + ? javaPath + : ''; } ); spyTcCacheDir = jest.spyOn(tc, 'cacheDir'); spyTcCacheDir.mockImplementation( - (archivePath: string, toolcacheFolderName: string, version: string, architecture: string) => - path.join(toolcacheFolderName, version, architecture) + ( + archivePath: string, + toolcacheFolderName: string, + version: string, + architecture: string + ) => path.join(toolcacheFolderName, version, architecture) ); spyTcFindAllVersions = jest.spyOn(tc, 'findAllVersions'); @@ -74,7 +84,7 @@ describe('setupJava', () => { spyFsStat = jest.spyOn(fs, 'statSync'); spyFsStat.mockImplementation((file: string) => { - return { isFile: () => file === expectedJdkFile }; + return {isFile: () => file === expectedJdkFile}; }); // Spy on util methods @@ -84,6 +94,10 @@ describe('setupJava', () => { // Spy on path methods spyPathResolve = jest.spyOn(path, 'resolve'); spyPathResolve.mockImplementation((path: string) => path); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); }); afterEach(() => { @@ -108,7 +122,9 @@ describe('setupJava', () => { mockJavaBase = new LocalDistribution(inputs, jdkFile); await expect(mockJavaBase.setupJava()).resolves.toEqual(expected); expect(spyGetToolcachePath).toHaveBeenCalled(); - expect(spyCoreInfo).toHaveBeenCalledWith(`Resolved Java ${actualJavaVersion} from tool-cache`); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Resolved Java ${actualJavaVersion} from tool-cache` + ); expect(spyCoreInfo).not.toHaveBeenCalledWith( `Java ${inputs.version} was not found in tool-cache. Trying to unpack JDK file...` ); @@ -130,7 +146,9 @@ describe('setupJava', () => { mockJavaBase = new LocalDistribution(inputs, jdkFile); await expect(mockJavaBase.setupJava()).resolves.toEqual(expected); expect(spyGetToolcachePath).toHaveBeenCalled(); - expect(spyCoreInfo).toHaveBeenCalledWith(`Resolved Java ${actualJavaVersion} from tool-cache`); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Resolved Java ${actualJavaVersion} from tool-cache` + ); expect(spyCoreInfo).not.toHaveBeenCalledWith( `Java ${inputs.version} was not found in tool-cache. Trying to unpack JDK file...` ); @@ -155,7 +173,9 @@ describe('setupJava', () => { expect(spyCoreInfo).not.toHaveBeenCalledWith( `Resolved Java ${actualJavaVersion} from tool-cache` ); - expect(spyCoreInfo).toHaveBeenCalledWith(`Extracting Java from '${jdkFile}'`); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Extracting Java from '${jdkFile}'` + ); expect(spyCoreInfo).toHaveBeenCalledWith( `Java ${inputs.version} was not found in tool-cache. Trying to unpack JDK file...` ); @@ -171,46 +191,163 @@ describe('setupJava', () => { const jdkFile = 'not_existing_one'; const expected = { javaVersion: '11.0.289', - javaPath: path.join('Java_jdkfile_jdk', inputs.version, inputs.architecture) + javaPath: path.join( + 'Java_jdkfile_jdk', + inputs.version, + inputs.architecture + ) }; mockJavaBase = new LocalDistribution(inputs, jdkFile); - expected.javaPath = path.join('Java_jdkfile_jdk', inputs.version, inputs.architecture); - await expect(mockJavaBase.setupJava()).rejects.toThrowError( + expected.javaPath = path.join( + 'Java_jdkfile_jdk', + inputs.version, + inputs.architecture + ); + await expect(mockJavaBase.setupJava()).rejects.toThrow( "JDK file was not found in path 'not_existing_one'" ); expect(spyTcFindAllVersions).toHaveBeenCalled(); expect(spyCoreInfo).not.toHaveBeenCalledWith( `Resolved Java ${actualJavaVersion} from tool-cache` ); - expect(spyCoreInfo).not.toHaveBeenCalledWith(`Extracting Java from '${jdkFile}'`); + expect(spyCoreInfo).not.toHaveBeenCalledWith( + `Extracting Java from '${jdkFile}'` + ); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Java ${inputs.version} was not found in tool-cache. Trying to unpack JDK file...` + ); + }); + + it('java is resolved from toolcache including Contents/Home on MacOS', async () => { + const inputs = { + version: actualJavaVersion, + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }; + const jdkFile = 'not_existing_one'; + const expected = { + version: actualJavaVersion, + path: path.join( + 'Java_jdkfile_jdk', + inputs.version, + inputs.architecture, + 'Contents', + 'Home' + ) + }; + const originalPlatform = process.platform; + Object.defineProperty(process, 'platform', { + value: 'darwin' + }); + + spyFsStat = jest.spyOn(fs, 'existsSync'); + spyFsStat.mockImplementation((file: string) => { + return file.endsWith('Home'); + }); + + mockJavaBase = new LocalDistribution(inputs, jdkFile); + await expect(mockJavaBase.setupJava()).resolves.toEqual(expected); + expect(spyGetToolcachePath).toHaveBeenCalled(); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Resolved Java ${actualJavaVersion} from tool-cache` + ); + expect(spyCoreInfo).not.toHaveBeenCalledWith( + `Java ${inputs.version} was not found in tool-cache. Trying to unpack JDK file...` + ); + + Object.defineProperty(process, 'platform', { + value: originalPlatform + }); + }); + + it('java is unpacked from jdkfile including Contents/Home on MacOS', async () => { + const inputs = { + version: '11.0.289', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }; + const jdkFile = expectedJdkFile; + const expected = { + version: '11.0.289', + path: path.join( + 'Java_jdkfile_jdk', + inputs.version, + inputs.architecture, + 'Contents', + 'Home' + ) + }; + const originalPlatform = process.platform; + Object.defineProperty(process, 'platform', { + value: 'darwin' + }); + spyFsStat = jest.spyOn(fs, 'existsSync'); + spyFsStat.mockImplementation((file: string) => { + return file.endsWith('Home'); + }); + + mockJavaBase = new LocalDistribution(inputs, jdkFile); + await expect(mockJavaBase.setupJava()).resolves.toEqual(expected); + expect(spyTcFindAllVersions).toHaveBeenCalled(); + expect(spyCoreInfo).not.toHaveBeenCalledWith( + `Resolved Java ${actualJavaVersion} from tool-cache` + ); + expect(spyCoreInfo).toHaveBeenCalledWith( + `Extracting Java from '${jdkFile}'` + ); expect(spyCoreInfo).toHaveBeenCalledWith( `Java ${inputs.version} was not found in tool-cache. Trying to unpack JDK file...` ); + Object.defineProperty(process, 'platform', { + value: originalPlatform + }); }); it.each([ [ - { version: '8.0.289', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '8.0.289', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, 'otherJdkFile' ], [ - { version: '11.0.289', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '11.0.289', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, 'otherJdkFile' ], [ - { version: '12.0.289', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '12.0.289', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, 'otherJdkFile' ], [ - { version: '11.1.11', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '11.1.11', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, 'not_existing_one' ] ])( `Throw an error if jdkfile has wrong path, inputs %s, jdkfile %s, real name ${expectedJdkFile}`, async (inputs, jdkFile) => { mockJavaBase = new LocalDistribution(inputs, jdkFile); - await expect(mockJavaBase.setupJava()).rejects.toThrowError( + await expect(mockJavaBase.setupJava()).rejects.toThrow( /JDK file was not found in path */ ); expect(spyTcFindAllVersions).toHaveBeenCalled(); @@ -218,18 +355,41 @@ describe('setupJava', () => { ); it.each([ - [{ version: '8.0.289', architecture: 'x64', packageType: 'jdk', checkLatest: false }, ''], [ - { version: '7.0.289', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '8.0.289', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, + '' + ], + [ + { + version: '7.0.289', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, undefined ], [ - { version: '11.0.289', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '11.0.289', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, undefined ] - ])('Throw an error if jdkfile is not specified, inputs %s', async (inputs, jdkFile) => { - mockJavaBase = new LocalDistribution(inputs, jdkFile); - await expect(mockJavaBase.setupJava()).rejects.toThrowError("'jdkFile' is not specified"); - expect(spyTcFindAllVersions).toHaveBeenCalled(); - }); + ])( + 'Throw an error if jdkfile is not specified, inputs %s', + async (inputs, jdkFile) => { + mockJavaBase = new LocalDistribution(inputs, jdkFile); + await expect(mockJavaBase.setupJava()).rejects.toThrow( + "'jdkFile' is not specified" + ); + expect(spyTcFindAllVersions).toHaveBeenCalled(); + } + ); }); diff --git a/__tests__/distributors/microsoft-installer.test.ts b/__tests__/distributors/microsoft-installer.test.ts index 9be0f50ea..a971dc7fb 100644 --- a/__tests__/distributors/microsoft-installer.test.ts +++ b/__tests__/distributors/microsoft-installer.test.ts @@ -1,7 +1,14 @@ -import { MicrosoftDistributions } from '../../src/distributions/microsoft/installer'; +import {MicrosoftDistributions} from '../../src/distributions/microsoft/installer'; +import os from 'os'; +import data from '../data/microsoft.json'; +import * as httpm from '@actions/http-client'; +import * as core from '@actions/core'; describe('findPackageForDownload', () => { let distribution: MicrosoftDistributions; + let spyGetManifestFromRepo: jest.SpyInstance; + let spyDebug: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; beforeEach(() => { distribution = new MicrosoftDistributions({ @@ -10,33 +17,62 @@ describe('findPackageForDownload', () => { packageType: 'jdk', checkLatest: false }); + + spyGetManifestFromRepo = jest.spyOn(httpm.HttpClient.prototype, 'getJson'); + spyGetManifestFromRepo.mockReturnValue({ + result: data, + statusCode: 200, + headers: {} + }); + + spyDebug = jest.spyOn(core, 'debug'); + spyDebug.mockImplementation(() => {}); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); }); it.each([ + [ + '25.x', + '25.0.0', + 'https://aka.ms/download-jdk/microsoft-jdk-25.0.0-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}' + ], + [ + '21.x', + '21.0.0', + 'https://aka.ms/download-jdk/microsoft-jdk-21.0.0-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}' + ], [ '17.0.1', - '17.0.1', + '17.0.1+12.1', 'https://aka.ms/download-jdk/microsoft-jdk-17.0.1.12.1-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}' ], [ '17.x', - '17.0.3', - 'https://aka.ms/download-jdk/microsoft-jdk-17.0.3-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}' + '17.0.7', + 'https://aka.ms/download-jdk/microsoft-jdk-17.0.7-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}' ], [ '16.0.x', - '16.0.2', + '16.0.2+7.1', 'https://aka.ms/download-jdk/microsoft-jdk-16.0.2.7.1-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}' ], [ '11.0.13', - '11.0.13', + '11.0.13+8.1', 'https://aka.ms/download-jdk/microsoft-jdk-11.0.13.8.1-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}' ], [ '11.0.15', '11.0.15', 'https://aka.ms/download-jdk/microsoft-jdk-11.0.15-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}' + ], + [ + '11.x', + '11.0.19', + 'https://aka.ms/download-jdk/microsoft-jdk-11.0.19-{{OS_TYPE}}-x64.{{ARCHIVE_TYPE}}' ] ])('version is %s -> %s', async (input, expectedVersion, expectedUrl) => { const result = await distribution['findPackageForDownload'](input); @@ -57,42 +93,93 @@ describe('findPackageForDownload', () => { archive = 'tar.gz'; break; } - const url = expectedUrl.replace('{{OS_TYPE}}', os).replace('{{ARCHIVE_TYPE}}', archive); + const url = expectedUrl + .replace('{{OS_TYPE}}', os) + .replace('{{ARCHIVE_TYPE}}', archive); expect(result.url).toBe(url); }); - it('should throw an error', async () => { - await expect(distribution['findPackageForDownload']('8')).rejects.toThrow( - /Could not find satisfied version for SemVer */ - ); - }); -}); + it.each([ + ['amd64', 'x64'], + ['arm64', 'aarch64'] + ])( + 'defaults to os.arch(): %s mapped to distro arch: %s', + async (osArch: string, distroArch: string) => { + jest + .spyOn(os, 'arch') + .mockReturnValue(osArch as ReturnType); + jest.spyOn(os, 'platform').mockReturnValue('darwin'); -describe('getPlatformOption', () => { - const distributions = new MicrosoftDistributions({ - architecture: 'x64', - version: '11', - packageType: 'jdk', - checkLatest: false - }); + const version = '17'; + const distro = new MicrosoftDistributions({ + version, + architecture: '', // to get default value + packageType: 'jdk', + checkLatest: false + }); + + const result = await distro['findPackageForDownload'](version); + const expectedUrl = `https://aka.ms/download-jdk/microsoft-jdk-17.0.7-macos-${distroArch}.tar.gz`; + + expect(result.url).toBe(expectedUrl); + } + ); it.each([ - ['linux', 'tar.gz', 'linux'], - ['darwin', 'tar.gz', 'macos'], - ['win32', 'zip', 'windows'] - ])('os version %s -> %s', (input, expectedArchive, expectedOs) => { - const actual = distributions['getPlatformOption'](input as NodeJS.Platform); - - expect(actual.archive).toEqual(expectedArchive); - expect(actual.os).toEqual(expectedOs); - }); + ['amd64', 'x64'], + ['arm64', 'aarch64'] + ])( + 'defaults to os.arch(): %s mapped to distro arch: %s', + async (osArch: string, distroArch: string) => { + jest + .spyOn(os, 'arch') + .mockReturnValue(osArch as ReturnType); + jest.spyOn(os, 'platform').mockReturnValue('linux'); - it.each(['aix', 'android', 'freebsd', 'openbsd', 'netbsd', 'solaris', 'cygwin'])( - 'not support os version %s', - input => { - expect(() => distributions['getPlatformOption'](input as NodeJS.Platform)).toThrow( - /Platform '\w+' is not supported\. Supported platforms: .+/ - ); + const version = '17'; + const distro = new MicrosoftDistributions({ + version, + architecture: '', // to get default value + packageType: 'jdk', + checkLatest: false + }); + + const result = await distro['findPackageForDownload'](version); + const expectedUrl = `https://aka.ms/download-jdk/microsoft-jdk-17.0.7-linux-${distroArch}.tar.gz`; + + expect(result.url).toBe(expectedUrl); } ); + + it.each([ + ['amd64', 'x64'], + ['arm64', 'aarch64'] + ])( + 'defaults to os.arch(): %s mapped to distro arch: %s', + async (osArch: string, distroArch: string) => { + jest + .spyOn(os, 'arch') + .mockReturnValue(osArch as ReturnType); + jest.spyOn(os, 'platform').mockReturnValue('win32'); + + const version = '17'; + const distro = new MicrosoftDistributions({ + version, + architecture: '', // to get default value + packageType: 'jdk', + checkLatest: false + }); + + const result = await distro['findPackageForDownload'](version); + const expectedUrl = `https://aka.ms/download-jdk/microsoft-jdk-17.0.7-windows-${distroArch}.zip`; + + expect(result.url).toBe(expectedUrl); + } + ); + + it('should throw an error', async () => { + await expect(distribution['findPackageForDownload']('8')).rejects.toThrow( + /No matching version found for SemVer */ + ); + }); }); diff --git a/__tests__/distributors/oracle-installer.test.ts b/__tests__/distributors/oracle-installer.test.ts new file mode 100644 index 000000000..6f64058c3 --- /dev/null +++ b/__tests__/distributors/oracle-installer.test.ts @@ -0,0 +1,137 @@ +import {OracleDistribution} from '../../src/distributions/oracle/installer'; +import os from 'os'; +import * as core from '@actions/core'; +import {getDownloadArchiveExtension} from '../../src/util'; +import {HttpClient} from '@actions/http-client'; + +describe('findPackageForDownload', () => { + let distribution: OracleDistribution; + let spyDebug: jest.SpyInstance; + let spyHttpClient: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; + + beforeEach(() => { + distribution = new OracleDistribution({ + version: '', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + + spyDebug = jest.spyOn(core, 'debug'); + spyDebug.mockImplementation(() => {}); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); + }); + + it.each([ + [ + '21', + '21', + 'https://download.oracle.com/java/21/latest/jdk-21_{{OS_TYPE}}-x64_bin.{{ARCHIVE_TYPE}}' + ], + [ + '20', + '20', + 'https://download.oracle.com/java/20/latest/jdk-20_{{OS_TYPE}}-x64_bin.{{ARCHIVE_TYPE}}' + ], + [ + '18', + '18', + 'https://download.oracle.com/java/18/archive/jdk-18_{{OS_TYPE}}-x64_bin.{{ARCHIVE_TYPE}}' + ], + [ + '20.0.1', + '20.0.1', + 'https://download.oracle.com/java/20/archive/jdk-20.0.1_{{OS_TYPE}}-x64_bin.{{ARCHIVE_TYPE}}' + ], + [ + '17', + '17', + 'https://download.oracle.com/java/17/latest/jdk-17_{{OS_TYPE}}-x64_bin.{{ARCHIVE_TYPE}}' + ], + [ + '17.0.1', + '17.0.1', + 'https://download.oracle.com/java/17/archive/jdk-17.0.1_{{OS_TYPE}}-x64_bin.{{ARCHIVE_TYPE}}' + ] + ])('version is %s -> %s', async (input, expectedVersion, expectedUrl) => { + /* Needed only for this particular test because some urls might change */ + spyHttpClient = jest.spyOn(HttpClient.prototype, 'head'); + spyHttpClient.mockReturnValue( + Promise.resolve({ + message: { + statusCode: 200 + } + }) + ); + + /** + * NOTE - Should fail to retrieve 18 from latest and check archive instead + */ + if (input === '18') { + spyHttpClient.mockReturnValueOnce( + Promise.resolve({ + message: { + statusCode: 404 + } + }) + ); + } + + const result = await distribution['findPackageForDownload'](input); + + jest.restoreAllMocks(); + + expect(result.version).toBe(expectedVersion); + const osType = distribution.getPlatform(); + const archiveType = getDownloadArchiveExtension(); + const url = expectedUrl + .replace('{{OS_TYPE}}', osType) + .replace('{{ARCHIVE_TYPE}}', archiveType); + expect(result.url).toBe(url); + }); + + it.each([ + ['amd64', 'x64'], + ['arm64', 'aarch64'] + ])( + 'defaults to os.arch(): %s mapped to distro arch: %s', + async (osArch: string, distroArch: string) => { + jest + .spyOn(os, 'arch') + .mockReturnValue(osArch as ReturnType); + jest.spyOn(os, 'platform').mockReturnValue('linux'); + + const version = '18'; + const distro = new OracleDistribution({ + version, + architecture: '', // to get default value + packageType: 'jdk', + checkLatest: false + }); + + const osType = distribution.getPlatform(); + if (osType === 'windows' && distroArch == 'aarch64') { + return; // skip, aarch64 is not available for Windows + } + const archiveType = getDownloadArchiveExtension(); + const result = await distro['findPackageForDownload'](version); + const expectedUrl = `https://download.oracle.com/java/18/archive/jdk-18_${osType}-${distroArch}_bin.${archiveType}`; + + expect(result.url).toBe(expectedUrl); + }, + 10000 + ); + + it('should throw an error', async () => { + await expect(distribution['findPackageForDownload']('8')).rejects.toThrow( + /Oracle JDK is only supported for JDK 17 and later/ + ); + await expect(distribution['findPackageForDownload']('11')).rejects.toThrow( + /Oracle JDK is only supported for JDK 17 and later/ + ); + }); +}); diff --git a/__tests__/distributors/sapmachine-installer.test.ts b/__tests__/distributors/sapmachine-installer.test.ts new file mode 100644 index 000000000..f49189a70 --- /dev/null +++ b/__tests__/distributors/sapmachine-installer.test.ts @@ -0,0 +1,298 @@ +import {HttpClient} from '@actions/http-client'; +import {SapMachineDistribution} from '../../src/distributions/sapmachine/installer'; +import * as utils from '../../src/util'; +import * as core from '@actions/core'; + +import manifestData from '../data/sapmachine.json'; + +describe('getAvailableVersions', () => { + let spyHttpClient: jest.SpyInstance; + let spyUtilGetDownloadArchiveExtension: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; + + beforeEach(() => { + spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); + spyHttpClient.mockReturnValue({ + statusCode: 200, + headers: {}, + result: manifestData + }); + + spyUtilGetDownloadArchiveExtension = jest.spyOn( + utils, + 'getDownloadArchiveExtension' + ); + spyUtilGetDownloadArchiveExtension.mockReturnValue('tar.gz'); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); + }); + + afterEach(() => { + jest.resetAllMocks(); + jest.clearAllMocks(); + jest.restoreAllMocks(); + }); + + const mockPlatform = ( + distribution: SapMachineDistribution, + platform: string + ) => { + distribution['getPlatformOption'] = () => platform; + const mockedExtension = platform == 'windows' ? 'zip' : 'tar.gz'; + spyUtilGetDownloadArchiveExtension.mockReturnValue(mockedExtension); + }; + + describe('shouldFallbackToBackupUrl', () => { + it('should return correct release when the primary URL is not available', async () => { + spyHttpClient.mockReturnValueOnce({ + statusCode: 404, + headers: {}, + result: '' + }); + spyHttpClient.mockReturnValueOnce({ + statusCode: 200, + headers: {}, + result: manifestData + }); + + const version = '17'; + const distribution = new SapMachineDistribution({ + version: version, + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + + mockPlatform(distribution, 'linux'); + + const availableVersion = + await distribution['findPackageForDownload'](version); + expect(availableVersion).not.toBeNull(); + expect(availableVersion.url).toBe( + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jdk-17.0.10_linux-x64_bin.tar.gz' + ); + }); + }); + + describe('getAvailableVersions', () => { + it.each([ + ['11', 'x64', 'linux', 71], + ['11', 'aarch64', 'linux', 54], + ['17', 'riscv', 'linux', 0], + ['16.0.1', 'x64', 'linux', 71], + ['23-ea', 'x64', 'linux', 798], + ['23-ea', 'aarch64', 'windows', 0], + ['23-ea', 'x64', 'windows', 750] + ])( + 'should get right number of available versions from JSON', + async ( + jdkVersion: string, + arch: string, + platform: string, + len: number + ) => { + const distribution = new SapMachineDistribution({ + version: jdkVersion, + architecture: arch, + packageType: 'jdk', + checkLatest: false + }); + mockPlatform(distribution, platform); + + const availableVersions = await distribution['getAvailableVersions'](); + expect(availableVersions).not.toBeNull(); + expect(availableVersions.length).toBe(len); + } + ); + }); + + describe('findPackageForDownload', () => { + it.each([ + [ + '11', + 'linux', + 'x64', + 'jdk', + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jdk-11.0.22_linux-x64_bin.tar.gz' + ], + [ + '11', + 'linux', + 'aarch64', + 'jdk', + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jdk-11.0.22_linux-aarch64_bin.tar.gz' + ], + [ + '11', + 'windows', + 'x64', + 'jdk', + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.22/sapmachine-jdk-11.0.22_windows-x64_bin.zip' + ], + [ + '11.0.17', + 'linux', + 'x64', + 'jdk', + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-11.0.17/sapmachine-jdk-11.0.17_linux-x64_bin.tar.gz' + ], + [ + '17', + 'linux', + 'x64', + 'jdk', + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jdk-17.0.10_linux-x64_bin.tar.gz' + ], + [ + '17', + 'linux', + 'aarch64', + 'jdk', + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jdk-17.0.10_linux-aarch64_bin.tar.gz' + ], + [ + '17', + 'windows', + 'x64', + 'jdk', + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jdk-17.0.10_windows-x64_bin.zip' + ], + [ + '17.0.4', + 'linux', + 'x64', + 'jdk', + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jdk-17.0.4.1_linux-x64_bin.tar.gz' + ], + [ + '17', + 'linux', + 'x64', + 'jre', + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jre-17.0.10_linux-x64_bin.tar.gz' + ], + [ + '17', + 'linux', + 'aarch64', + 'jre', + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jre-17.0.10_linux-aarch64_bin.tar.gz' + ], + [ + '17', + 'windows', + 'x64', + 'jre', + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jre-17.0.10_windows-x64_bin.zip' + ], + [ + '17.0.4', + 'linux', + 'x64', + 'jre', + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.4.1/sapmachine-jre-17.0.4.1_linux-x64_bin.tar.gz' + ], + [ + '23-ea', + 'linux', + 'x64', + 'jdk', + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-23%2B15/sapmachine-jdk-23-ea.15_linux-x64_bin.tar.gz', + '23' + ], + [ + '21.0.2+2-ea', + 'linux', + 'x64', + 'jdk', + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-21.0.2%2B2/sapmachine-jdk-21.0.2-ea.2_linux-x64_bin.tar.gz', + '21.0.2+2' + ], + [ + '17', + 'linux-musl', + 'x64', + 'jdk', + 'https://github.com/SAP/SapMachine/releases/download/sapmachine-17.0.10/sapmachine-jdk-17.0.10_linux-x64-musl_bin.tar.gz' + ] + ])( + 'should return proper link according to the specified java-version, platform and arch', + async ( + version: string, + platform: string, + arch: string, + packageType: string, + expectedLink: string, + normalizedVersion: string = version + ) => { + const distribution = new SapMachineDistribution({ + version: version, + architecture: arch, + packageType: packageType, + checkLatest: false + }); + mockPlatform(distribution, platform); + + const availableVersion = + await distribution['findPackageForDownload'](normalizedVersion); + expect(availableVersion).not.toBeNull(); + expect(availableVersion.url).toBe(expectedLink); + } + ); + + it.each([ + ['8', 'linux', 'x64'], + ['8', 'macos', 'aarch64'], + ['23', 'macos', 'aarch64'], + ['17', 'linux', 'riscv'], + ['23', 'linux', 'x64'], + ['25-ea', 'linux', 'x64', '25'], + ['8-ea', 'linux', 'x64', '8'], + ['21.0.3+7', 'linux', 'x64', '21.0.3+7'], + ['21.0.3+8-ea', 'linux', 'x64', '21.0.3+8'], + ['17', 'linux-muse', 'aarch64'] + ])( + 'should throw when required version of JDK can not be found in the JSON', + async ( + version: string, + platform: string, + arch: string, + normalizedVersion: string = version + ) => { + const distribution = new SapMachineDistribution({ + version: version, + architecture: arch, + packageType: 'jdk', + checkLatest: false + }); + mockPlatform(distribution, platform); + + await expect( + distribution['findPackageForDownload'](normalizedVersion) + ).rejects.toThrow( + `No matching version found for SemVer '${normalizedVersion}'` + ); + } + ); + + it('should throw when required package type is not supported', async () => { + const jdkVersion = '17'; + const arch = 'x64'; + const platform = 'linux'; + const distribution = new SapMachineDistribution({ + version: jdkVersion, + architecture: arch, + packageType: 'jdk+fx', + checkLatest: false + }); + mockPlatform(distribution, platform); + await expect( + distribution['findPackageForDownload'](jdkVersion) + ).rejects.toThrow( + 'SapMachine provides only the `jdk` and `jre` package type' + ); + }); + }); +}); diff --git a/__tests__/distributors/semeru-installer.test.ts b/__tests__/distributors/semeru-installer.test.ts new file mode 100644 index 000000000..1c26c79a3 --- /dev/null +++ b/__tests__/distributors/semeru-installer.test.ts @@ -0,0 +1,292 @@ +import {HttpClient} from '@actions/http-client'; + +import {JavaInstallerOptions} from '../../src/distributions/base-models'; +import {SemeruDistribution} from '../../src/distributions/semeru/installer'; + +import manifestData from '../data/semeru.json'; +import * as core from '@actions/core'; + +describe('getAvailableVersions', () => { + let spyHttpClient: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; + + beforeEach(() => { + spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); + spyHttpClient.mockReturnValue({ + statusCode: 200, + headers: {}, + result: [] + }); + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); + }); + + afterEach(() => { + jest.resetAllMocks(); + jest.clearAllMocks(); + jest.restoreAllMocks(); + }); + + it.each([ + [ + { + version: '16', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, + 'os=mac&architecture=x64&image_type=jdk&release_type=ga&jvm_impl=openj9&page_size=20&page=0' + ], + [ + { + version: '16', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, + 'os=mac&architecture=x86&image_type=jdk&release_type=ga&jvm_impl=openj9&page_size=20&page=0' + ], + [ + { + version: '16', + architecture: 'x64', + packageType: 'jre', + checkLatest: false + }, + 'os=mac&architecture=x64&image_type=jre&release_type=ga&jvm_impl=openj9&page_size=20&page=0' + ], + [ + { + version: '16', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, + 'os=mac&architecture=x64&image_type=jdk&release_type=ga&jvm_impl=openj9&page_size=20&page=0' + ] + ])( + 'build correct url for %s', + async (installerOptions: JavaInstallerOptions, expectedParameters) => { + const distribution = new SemeruDistribution(installerOptions); + const baseUrl = + 'https://api.adoptopenjdk.net/v3/assets/version/%5B1.0,100.0%5D'; + const expectedUrl = `${baseUrl}?project=jdk&vendor=ibm&heap_size=normal&sort_method=DEFAULT&sort_order=DESC&${expectedParameters}`; + distribution['getPlatformOption'] = () => 'mac'; + + await distribution['getAvailableVersions'](); + + expect(spyHttpClient.mock.calls).toHaveLength(1); + expect(spyHttpClient.mock.calls[0][0]).toBe(expectedUrl); + } + ); + + it('load available versions', async () => { + spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); + spyHttpClient + .mockReturnValueOnce({ + statusCode: 200, + headers: {}, + result: manifestData as any + }) + .mockReturnValueOnce({ + statusCode: 200, + headers: {}, + result: manifestData as any + }) + .mockReturnValueOnce({ + statusCode: 200, + headers: {}, + result: [] + }); + + const distribution = new SemeruDistribution({ + version: '8', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + const availableVersions = await distribution['getAvailableVersions'](); + expect(availableVersions).not.toBeNull(); + expect(availableVersions.length).toBe(manifestData.length * 2); + }); + + it.each([ + ['jdk', 'Java_IBM_Semeru_jdk'], + ['jre', 'Java_IBM_Semeru_jre'] + ])('find right toolchain folder', (packageType: string, expected: string) => { + const distribution = new SemeruDistribution({ + version: '8', + architecture: 'x64', + packageType: packageType, + checkLatest: false + }); + + // @ts-ignore - because it is protected + expect(distribution.toolcacheFolderName).toBe(expected); + }); +}); + +describe('findPackageForDownload', () => { + it.each([ + ['8', '8.0.322+6'], + ['16', '16.0.2+7'], + ['16.0', '16.0.2+7'], + ['16.0.2', '16.0.2+7'], + ['8.x', '8.0.322+6'], + ['x', '17.0.2+8'] + ])('version is resolved correctly %s -> %s', async (input, expected) => { + const distribution = new SemeruDistribution({ + version: '8', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData as any; + const resolvedVersion = await distribution['findPackageForDownload'](input); + expect(resolvedVersion.version).toBe(expected); + }); + + it('version is found but binaries list is empty', async () => { + const distribution = new SemeruDistribution({ + version: '9.0.8', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData as any; + await expect( + distribution['findPackageForDownload']('9.0.8') + ).rejects.toThrow(/No matching version found for SemVer */); + }); + + it('version is not found', async () => { + const distribution = new SemeruDistribution({ + version: '7.x', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData as any; + await expect(distribution['findPackageForDownload']('7.x')).rejects.toThrow( + /No matching version found for SemVer */ + ); + }); + + it('version list is empty', async () => { + const distribution = new SemeruDistribution({ + version: '8', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => []; + await expect(distribution['findPackageForDownload']('8')).rejects.toThrow( + /No matching version found for SemVer */ + ); + }); + + it.each(['x64', 'x86', 'ppc64le', 'ppc64', 's390x', 'aarch64'])( + 'correct Semeru `%s` architecture resolves', + async (arch: string) => { + const distribution = new SemeruDistribution({ + version: '8', + architecture: arch, + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData as any; + const resolvedVersion = await distribution['findPackageForDownload']('8'); + expect(resolvedVersion.version).not.toBeNull(); + } + ); + + it.each(['zos', 'z/OS', 'z/os', 'test0987654321=', '++=++', 'myArch'])( + 'incorrect Semeru `%s` architecture throws', + async (arch: string) => { + const distribution = new SemeruDistribution({ + version: '8', + architecture: arch, + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => []; + await expect(distribution['findPackageForDownload']('8')).rejects.toThrow( + `Unsupported architecture for IBM Semeru: ${arch} for your current OS version, the following are supported: x64, x86, ppc64le, ppc64, s390x, aarch64` + ); + } + ); + + it.each(['9-ea', '17-ea', '8-ea', '4-ea'])( + 'early access version are illegal for Semeru (%s)', + async (version: string) => { + const distribution = new SemeruDistribution({ + version: version, + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData as any; + await expect( + distribution['findPackageForDownload'](version) + ).rejects.toThrow( + 'IBM Semeru does not provide builds for early access versions' + ); + } + ); + + it.each([ + 'jdk+fx', + 'jre+fx', + 'test', + 'test2', + 'jdk-fx', + 'javafx', + 'jdk-javafx', + 'ibm', + ' ' + ])( + 'rejects incorrect `%s` Semeru package type', + async (packageType: string) => { + const distribution = new SemeruDistribution({ + version: '8', + architecture: 'x64', + packageType: packageType, + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData as any; + await expect(distribution['findPackageForDownload']('8')).rejects.toThrow( + 'IBM Semeru only provide `jdk` and `jre` package types' + ); + } + ); + + it.each(['jdk', 'jre'])( + 'accepts correct `%s` Semeru package type', + async (packageType: string) => { + const distribution = new SemeruDistribution({ + version: '8', + architecture: 'x64', + packageType: packageType, + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData as any; + const resolvedVersion = await distribution['findPackageForDownload']('8'); + await expect(resolvedVersion.version).toMatch(/8[0-9.]+/); + } + ); + + it('fails when long release name is used', async () => { + expect( + () => + new SemeruDistribution({ + version: 'jdk-16.0.2+7_openj9-0.27.1', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }) + ).toThrow( + "The string 'jdk-16.0.2+7_openj9-0.27.1' is not valid SemVer notation for a Java version. Please check README file for code snippets and more detailed information" + ); + }); +}); diff --git a/__tests__/distributors/temurin-installer.test.ts b/__tests__/distributors/temurin-installer.test.ts index c8904f8fd..0c6ef3f50 100644 --- a/__tests__/distributors/temurin-installer.test.ts +++ b/__tests__/distributors/temurin-installer.test.ts @@ -1,15 +1,17 @@ -import { HttpClient } from '@actions/http-client'; - +import {HttpClient} from '@actions/http-client'; +import os from 'os'; import { TemurinDistribution, TemurinImplementation } from '../../src/distributions/temurin/installer'; -import { JavaInstallerOptions } from '../../src/distributions/base-models'; +import {JavaInstallerOptions} from '../../src/distributions/base-models'; -let manifestData = require('../data/temurin.json') as []; +import manifestData from '../data/temurin.json'; +import * as core from '@actions/core'; describe('getAvailableVersions', () => { let spyHttpClient: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; beforeEach(() => { spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); @@ -18,6 +20,9 @@ describe('getAvailableVersions', () => { headers: {}, result: [] }); + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); }); afterEach(() => { @@ -28,22 +33,42 @@ describe('getAvailableVersions', () => { it.each([ [ - { version: '16', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '16', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, TemurinImplementation.Hotspot, 'os=mac&architecture=x64&image_type=jdk&release_type=ga&jvm_impl=hotspot&page_size=20&page=0' ], [ - { version: '16', architecture: 'x86', packageType: 'jdk', checkLatest: false }, + { + version: '16', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, TemurinImplementation.Hotspot, 'os=mac&architecture=x86&image_type=jdk&release_type=ga&jvm_impl=hotspot&page_size=20&page=0' ], [ - { version: '16', architecture: 'x64', packageType: 'jre', checkLatest: false }, + { + version: '16', + architecture: 'x64', + packageType: 'jre', + checkLatest: false + }, TemurinImplementation.Hotspot, 'os=mac&architecture=x64&image_type=jre&release_type=ga&jvm_impl=hotspot&page_size=20&page=0' ], [ - { version: '16-ea', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '16-ea', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, TemurinImplementation.Hotspot, 'os=mac&architecture=x64&image_type=jdk&release_type=ea&jvm_impl=hotspot&page_size=20&page=0' ] @@ -55,7 +80,8 @@ describe('getAvailableVersions', () => { expectedParameters ) => { const distribution = new TemurinDistribution(installerOptions, impl); - const baseUrl = 'https://api.adoptium.net/v3/assets/version/%5B1.0,100.0%5D'; + const baseUrl = + 'https://api.adoptium.net/v3/assets/version/%5B1.0,100.0%5D'; const expectedUrl = `${baseUrl}?project=jdk&vendor=adoptium&heap_size=normal&sort_method=DEFAULT&sort_order=DESC&${expectedParameters}`; distribution['getPlatformOption'] = () => 'mac'; @@ -72,12 +98,12 @@ describe('getAvailableVersions', () => { .mockReturnValueOnce({ statusCode: 200, headers: {}, - result: manifestData + result: manifestData as any }) .mockReturnValueOnce({ statusCode: 200, headers: {}, - result: manifestData + result: manifestData as any }) .mockReturnValueOnce({ statusCode: 200, @@ -86,7 +112,12 @@ describe('getAvailableVersions', () => { }); const distribution = new TemurinDistribution( - { version: '8', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '8', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, TemurinImplementation.Hotspot ); const availableVersions = await distribution['getAvailableVersions'](); @@ -101,7 +132,12 @@ describe('getAvailableVersions', () => { 'find right toolchain folder', (impl: TemurinImplementation, packageType: string, expected: string) => { const distribution = new TemurinDistribution( - { version: '8', architecture: 'x64', packageType: packageType, checkLatest: false }, + { + version: '8', + architecture: 'x64', + packageType: packageType, + checkLatest: false + }, impl ); @@ -109,6 +145,41 @@ describe('getAvailableVersions', () => { expect(distribution.toolcacheFolderName).toBe(expected); } ); + + it.each([ + ['amd64', 'x64'], + ['arm64', 'aarch64'] + ])( + 'defaults to os.arch(): %s mapped to distro arch: %s', + async (osArch: string, distroArch: string) => { + jest + .spyOn(os, 'arch') + .mockReturnValue(osArch as ReturnType); + + const installerOptions: JavaInstallerOptions = { + version: '17', + architecture: '', + packageType: 'jdk', + checkLatest: false + }; + + const expectedParameters = `os=mac&architecture=${distroArch}&image_type=jdk&release_type=ga&jvm_impl=hotspot&page_size=20&page=0`; + + const distribution = new TemurinDistribution( + installerOptions, + TemurinImplementation.Hotspot + ); + const baseUrl = + 'https://api.adoptium.net/v3/assets/version/%5B1.0,100.0%5D'; + const expectedUrl = `${baseUrl}?project=jdk&vendor=adoptium&heap_size=normal&sort_method=DEFAULT&sort_order=DESC&${expectedParameters}`; + distribution['getPlatformOption'] = () => 'mac'; + + await distribution['getAvailableVersions'](); + + expect(spyHttpClient.mock.calls).toHaveLength(1); + expect(spyHttpClient.mock.calls[0][0]).toBe(expectedUrl); + } + ); }); describe('findPackageForDownload', () => { @@ -121,44 +192,64 @@ describe('findPackageForDownload', () => { ['x', '16.0.2+7'] ])('version is resolved correctly %s -> %s', async (input, expected) => { const distribution = new TemurinDistribution( - { version: '8', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '8', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, TemurinImplementation.Hotspot ); - distribution['getAvailableVersions'] = async () => manifestData; + distribution['getAvailableVersions'] = async () => manifestData as any; const resolvedVersion = await distribution['findPackageForDownload'](input); expect(resolvedVersion.version).toBe(expected); }); it('version is found but binaries list is empty', async () => { const distribution = new TemurinDistribution( - { version: '9.0.8', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '9.0.8', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, TemurinImplementation.Hotspot ); - distribution['getAvailableVersions'] = async () => manifestData; - await expect(distribution['findPackageForDownload']('9.0.8')).rejects.toThrowError( - /Could not find satisfied version for SemVer */ - ); + distribution['getAvailableVersions'] = async () => manifestData as any; + await expect( + distribution['findPackageForDownload']('9.0.8') + ).rejects.toThrow(/No matching version found for SemVer */); }); it('version is not found', async () => { const distribution = new TemurinDistribution( - { version: '7.x', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '7.x', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, TemurinImplementation.Hotspot ); - distribution['getAvailableVersions'] = async () => manifestData; - await expect(distribution['findPackageForDownload']('7.x')).rejects.toThrowError( - /Could not find satisfied version for SemVer */ + distribution['getAvailableVersions'] = async () => manifestData as any; + await expect(distribution['findPackageForDownload']('7.x')).rejects.toThrow( + /No matching version found for SemVer */ ); }); it('version list is empty', async () => { const distribution = new TemurinDistribution( - { version: '8', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '8', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, TemurinImplementation.Hotspot ); distribution['getAvailableVersions'] = async () => []; - await expect(distribution['findPackageForDownload']('8')).rejects.toThrowError( - /Could not find satisfied version for SemVer */ + await expect(distribution['findPackageForDownload']('8')).rejects.toThrow( + /No matching version found for SemVer */ ); }); }); diff --git a/__tests__/distributors/zulu-installer.test.ts b/__tests__/distributors/zulu-installer.test.ts index 49d71d4ae..0a46983b2 100644 --- a/__tests__/distributors/zulu-installer.test.ts +++ b/__tests__/distributors/zulu-installer.test.ts @@ -1,14 +1,16 @@ -import { HttpClient } from '@actions/http-client'; -import * as semver from 'semver'; -import { ZuluDistribution } from '../../src/distributions/zulu/installer'; -import { IZuluVersions } from '../../src/distributions/zulu/models'; +import {HttpClient} from '@actions/http-client'; +import {ZuluDistribution} from '../../src/distributions/zulu/installer'; +import {IZuluVersions} from '../../src/distributions/zulu/models'; import * as utils from '../../src/util'; +import os from 'os'; +import * as core from '@actions/core'; -const manifestData = require('../data/zulu-releases-default.json') as []; +import manifestData from '../data/zulu-releases-default.json'; describe('getAvailableVersions', () => { let spyHttpClient: jest.SpyInstance; let spyUtilGetDownloadArchiveExtension: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; beforeEach(() => { spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); @@ -18,8 +20,15 @@ describe('getAvailableVersions', () => { result: manifestData as IZuluVersions[] }); - spyUtilGetDownloadArchiveExtension = jest.spyOn(utils, 'getDownloadArchiveExtension'); + spyUtilGetDownloadArchiveExtension = jest.spyOn( + utils, + 'getDownloadArchiveExtension' + ); spyUtilGetDownloadArchiveExtension.mockReturnValue('tar.gz'); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); }); afterEach(() => { @@ -30,35 +39,75 @@ describe('getAvailableVersions', () => { it.each([ [ - { version: '11', architecture: 'x86', packageType: 'jdk', checkLatest: false }, + { + version: '11', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, '?os=macos&ext=tar.gz&bundle_type=jdk&javafx=false&arch=x86&hw_bitness=32&release_status=ga' ], [ - { version: '11-ea', architecture: 'x86', packageType: 'jdk', checkLatest: false }, + { + version: '11-ea', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, '?os=macos&ext=tar.gz&bundle_type=jdk&javafx=false&arch=x86&hw_bitness=32&release_status=ea' ], [ - { version: '8', architecture: 'x64', packageType: 'jdk', checkLatest: false }, + { + version: '8', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, '?os=macos&ext=tar.gz&bundle_type=jdk&javafx=false&arch=x86&hw_bitness=64&release_status=ga' ], [ - { version: '8', architecture: 'x64', packageType: 'jre', checkLatest: false }, + { + version: '8', + architecture: 'x64', + packageType: 'jre', + checkLatest: false + }, '?os=macos&ext=tar.gz&bundle_type=jre&javafx=false&arch=x86&hw_bitness=64&release_status=ga' ], [ - { version: '8', architecture: 'x64', packageType: 'jdk+fx', checkLatest: false }, + { + version: '8', + architecture: 'x64', + packageType: 'jdk+fx', + checkLatest: false + }, '?os=macos&ext=tar.gz&bundle_type=jdk&javafx=true&arch=x86&hw_bitness=64&release_status=ga&features=fx' ], [ - { version: '8', architecture: 'x64', packageType: 'jre+fx', checkLatest: false }, + { + version: '8', + architecture: 'x64', + packageType: 'jre+fx', + checkLatest: false + }, '?os=macos&ext=tar.gz&bundle_type=jre&javafx=true&arch=x86&hw_bitness=64&release_status=ga&features=fx' ], [ - { version: '11', architecture: 'arm64', packageType: 'jdk', checkLatest: false }, + { + version: '11', + architecture: 'arm64', + packageType: 'jdk', + checkLatest: false + }, '?os=macos&ext=tar.gz&bundle_type=jdk&javafx=false&arch=arm&hw_bitness=64&release_status=ga' ], [ - { version: '11', architecture: 'arm', packageType: 'jdk', checkLatest: false }, + { + version: '11', + architecture: 'arm', + packageType: 'jdk', + checkLatest: false + }, '?os=macos&ext=tar.gz&bundle_type=jdk&javafx=false&arch=arm&hw_bitness=&release_status=ga' ] ])('build correct url for %s -> %s', async (input, parsedUrl) => { @@ -72,6 +121,36 @@ describe('getAvailableVersions', () => { expect(spyHttpClient.mock.calls[0][0]).toBe(buildUrl); }); + type DistroArch = { + bitness: string; + arch: string; + }; + it.each([ + ['amd64', {bitness: '64', arch: 'x86'}], + ['arm64', {bitness: '64', arch: 'arm'}] + ])( + 'defaults to os.arch(): %s mapped to distro arch: %s', + async (osArch: string, distroArch: DistroArch) => { + jest + .spyOn(os, 'arch') + .mockReturnValue(osArch as ReturnType); + + const distribution = new ZuluDistribution({ + version: '17', + architecture: '', // to get default value + packageType: 'jdk', + checkLatest: false + }); + distribution['getPlatformOption'] = () => 'macos'; + const buildUrl = `https://api.azul.com/zulu/download/community/v1.0/bundles/?os=macos&ext=tar.gz&bundle_type=jdk&javafx=false&arch=${distroArch.arch}&hw_bitness=${distroArch.bitness}&release_status=ga`; + + await distribution['getAvailableVersions'](); + + expect(spyHttpClient.mock.calls).toHaveLength(1); + expect(spyHttpClient.mock.calls[0][0]).toBe(buildUrl); + } + ); + it('load available versions', async () => { const distribution = new ZuluDistribution({ version: '11', @@ -86,10 +165,10 @@ describe('getAvailableVersions', () => { describe('getArchitectureOptions', () => { it.each([ - [{ architecture: 'x64' }, { arch: 'x86', hw_bitness: '64', abi: '' }], - [{ architecture: 'x86' }, { arch: 'x86', hw_bitness: '32', abi: '' }], - [{ architecture: 'x32' }, { arch: 'x32', hw_bitness: '', abi: '' }], - [{ architecture: 'arm' }, { arch: 'arm', hw_bitness: '', abi: '' }] + [{architecture: 'x64'}, {arch: 'x86', hw_bitness: '64', abi: ''}], + [{architecture: 'x86'}, {arch: 'x86', hw_bitness: '32', abi: ''}], + [{architecture: 'x32'}, {arch: 'x32', hw_bitness: '', abi: ''}], + [{architecture: 'arm'}, {arch: 'arm', hw_bitness: '', abi: ''}] ])('%s -> %s', (input, expected) => { const distribution = new ZuluDistribution({ version: '11', @@ -110,7 +189,7 @@ describe('findPackageForDownload', () => { ['15', '15.0.2+7'], ['9.0.0', '9.0.0+0'], ['9.0', '9.0.1+0'], - ['8.0.262', '8.0.262+19'], // validate correct choise between [8.0.262.17, 8.0.262.19, 8.0.262.18] + ['8.0.262', '8.0.262+19'], // validate correct choice between [8.0.262.17, 8.0.262.19, 8.0.262.18] ['8.0.262+17', '8.0.262+17'], ['15.0.1+8', '15.0.1+8'], ['15.0.1+9', '15.0.1+9'] @@ -122,7 +201,9 @@ describe('findPackageForDownload', () => { checkLatest: false }); distribution['getAvailableVersions'] = async () => manifestData; - const result = await distribution['findPackageForDownload'](distribution['version']); + const result = await distribution['findPackageForDownload']( + distribution['version'] + ); expect(result.version).toBe(expected); }); @@ -150,25 +231,6 @@ describe('findPackageForDownload', () => { distribution['getAvailableVersions'] = async () => manifestData; await expect( distribution['findPackageForDownload'](distribution['version']) - ).rejects.toThrowError(/Could not find satisfied version for semver */); - }); -}); - -describe('convertVersionToSemver', () => { - it.each([ - [[12], '12'], - [[12, 0], '12.0'], - [[12, 0, 2], '12.0.2'], - [[12, 0, 2, 1], '12.0.2+1'], - [[12, 0, 2, 1, 3], '12.0.2+1'] - ])('%s -> %s', (input: number[], expected: string) => { - const distribution = new ZuluDistribution({ - version: '18', - architecture: 'x86', - packageType: 'jdk', - checkLatest: false - }); - const actual = distribution['convertVersionToSemver'](input); - expect(actual).toBe(expected); + ).rejects.toThrow(/No matching version found for SemVer/); }); }); diff --git a/__tests__/distributors/zulu-linux-installer.test.ts b/__tests__/distributors/zulu-linux-installer.test.ts new file mode 100644 index 000000000..b3ca6fa17 --- /dev/null +++ b/__tests__/distributors/zulu-linux-installer.test.ts @@ -0,0 +1,239 @@ +import {HttpClient} from '@actions/http-client'; +import * as semver from 'semver'; +import {ZuluDistribution} from '../../src/distributions/zulu/installer'; +import {IZuluVersions} from '../../src/distributions/zulu/models'; +import * as utils from '../../src/util'; +import os from 'os'; +import * as core from '@actions/core'; + +import manifestData from '../data/zulu-linux.json'; + +describe('getAvailableVersions', () => { + let spyHttpClient: jest.SpyInstance; + let spyUtilGetDownloadArchiveExtension: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; + + beforeEach(() => { + spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); + spyHttpClient.mockReturnValue({ + statusCode: 200, + headers: {}, + result: manifestData as IZuluVersions[] + }); + + spyUtilGetDownloadArchiveExtension = jest.spyOn( + utils, + 'getDownloadArchiveExtension' + ); + spyUtilGetDownloadArchiveExtension.mockReturnValue('zip'); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); + }); + + afterEach(() => { + jest.resetAllMocks(); + jest.clearAllMocks(); + jest.restoreAllMocks(); + }); + + it.each([ + [ + { + version: '11', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, + '?os=linux&ext=zip&bundle_type=jdk&javafx=false&arch=x86&hw_bitness=32&release_status=ga' + ], + [ + { + version: '11-ea', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, + '?os=linux&ext=zip&bundle_type=jdk&javafx=false&arch=x86&hw_bitness=32&release_status=ea' + ], + [ + { + version: '8', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, + '?os=linux&ext=zip&bundle_type=jdk&javafx=false&arch=x86&hw_bitness=64&release_status=ga' + ], + [ + { + version: '8', + architecture: 'x64', + packageType: 'jre', + checkLatest: false + }, + '?os=linux&ext=zip&bundle_type=jre&javafx=false&arch=x86&hw_bitness=64&release_status=ga' + ], + [ + { + version: '8', + architecture: 'x64', + packageType: 'jdk+fx', + checkLatest: false + }, + '?os=linux&ext=zip&bundle_type=jdk&javafx=true&arch=x86&hw_bitness=64&release_status=ga&features=fx' + ], + [ + { + version: '8', + architecture: 'x64', + packageType: 'jre+fx', + checkLatest: false + }, + '?os=linux&ext=zip&bundle_type=jre&javafx=true&arch=x86&hw_bitness=64&release_status=ga&features=fx' + ], + [ + { + version: '11', + architecture: 'arm64', + packageType: 'jdk', + checkLatest: false + }, + '?os=linux&ext=zip&bundle_type=jdk&javafx=false&arch=arm&hw_bitness=64&release_status=ga' + ], + [ + { + version: '11', + architecture: 'arm', + packageType: 'jdk', + checkLatest: false + }, + '?os=linux&ext=zip&bundle_type=jdk&javafx=false&arch=arm&hw_bitness=&release_status=ga' + ] + ])('build correct url for %s -> %s', async (input, parsedUrl) => { + const distribution = new ZuluDistribution(input); + distribution['getPlatformOption'] = () => 'linux'; + const buildUrl = `https://api.azul.com/zulu/download/community/v1.0/bundles/${parsedUrl}`; + + await distribution['getAvailableVersions'](); + + expect(spyHttpClient.mock.calls).toHaveLength(1); + expect(spyHttpClient.mock.calls[0][0]).toBe(buildUrl); + }); + + type DistroArch = { + bitness: string; + arch: string; + }; + it.each([ + ['amd64', {bitness: '64', arch: 'x86'}], + ['arm64', {bitness: '64', arch: 'arm'}] + ])( + 'defaults to os.arch(): %s mapped to distro arch: %s', + async (osArch: string, distroArch: DistroArch) => { + jest + .spyOn(os, 'arch') + .mockReturnValue(osArch as ReturnType); + + const distribution = new ZuluDistribution({ + version: '17', + architecture: '', // to get default value + packageType: 'jdk', + checkLatest: false + }); + distribution['getPlatformOption'] = () => 'linux'; + // Override extension for linux default arch case to match util behavior + spyUtilGetDownloadArchiveExtension.mockReturnValue('tar.gz'); + const buildUrl = `https://api.azul.com/zulu/download/community/v1.0/bundles/?os=linux&ext=tar.gz&bundle_type=jdk&javafx=false&arch=${distroArch.arch}&hw_bitness=${distroArch.bitness}&release_status=ga`; + + await distribution['getAvailableVersions'](); + + expect(spyHttpClient.mock.calls).toHaveLength(1); + expect(spyHttpClient.mock.calls[0][0]).toBe(buildUrl); + } + ); + + it('load available versions', async () => { + const distribution = new ZuluDistribution({ + version: '11', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }); + const availableVersions = await distribution['getAvailableVersions'](); + expect(availableVersions).toHaveLength(manifestData.length); + }); +}); + +describe('getArchitectureOptions', () => { + it.each([ + [{architecture: 'x64'}, {arch: 'x86', hw_bitness: '64', abi: ''}], + [{architecture: 'x86'}, {arch: 'x86', hw_bitness: '32', abi: ''}], + [{architecture: 'x32'}, {arch: 'x32', hw_bitness: '', abi: ''}], + [{architecture: 'arm'}, {arch: 'arm', hw_bitness: '', abi: ''}] + ])('%s -> %s', (input, expected) => { + const distribution = new ZuluDistribution({ + version: '11', + architecture: input.architecture, + packageType: 'jdk', + checkLatest: false + }); + expect(distribution['getArchitectureOptions']()).toEqual(expected); + }); +}); + +describe('findPackageForDownload', () => { + it.each([ + ['8', '8.0.282+8'], + ['11.x', '11.0.10+9'], + ['8.0', '8.0.282+8'], + ['11.0.x', '11.0.10+9'], + ['15', '15.0.2+7'], + ['9.0.0', '9.0.0+0'], + ['9.0', '9.0.1+0'], + ['8.0.262', '8.0.262+19'], // validate correct choice between [8.0.262.17, 8.0.262.19, 8.0.262.18] + ['8.0.262+17', '8.0.262+17'], + ['15.0.1+8', '15.0.1+8'], + ['15.0.1+9', '15.0.1+9'] + ])('version is %s -> %s', async (input, expected) => { + const distribution = new ZuluDistribution({ + version: input, + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData; + const result = await distribution['findPackageForDownload']( + distribution['version'] + ); + expect(result.version).toBe(expected); + }); + + it('select correct bundle if there are multiple items with the same jdk version but different zulu versions', async () => { + const distribution = new ZuluDistribution({ + version: '', + architecture: 'arm64', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData; + const result = await distribution['findPackageForDownload']('21.0.2'); + expect(result.url).toBe( + 'https://cdn.azul.com/zulu/bin/zulu21.32.17-ca-jdk21.0.2-linux_aarch64.tar.gz' + ); + }); + + it('should throw an error', async () => { + const distribution = new ZuluDistribution({ + version: '18', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData; + await expect( + distribution['findPackageForDownload'](distribution['version']) + ).rejects.toThrow(/No matching version found for SemVer/); + }); +}); diff --git a/__tests__/distributors/zulu-windows-installer.test.ts b/__tests__/distributors/zulu-windows-installer.test.ts new file mode 100644 index 000000000..37435e8db --- /dev/null +++ b/__tests__/distributors/zulu-windows-installer.test.ts @@ -0,0 +1,237 @@ +import {HttpClient} from '@actions/http-client'; +import * as semver from 'semver'; +import {ZuluDistribution} from '../../src/distributions/zulu/installer'; +import {IZuluVersions} from '../../src/distributions/zulu/models'; +import * as utils from '../../src/util'; +import os from 'os'; +import * as core from '@actions/core'; + +import manifestData from '../data/zulu-windows.json'; + +describe('getAvailableVersions', () => { + let spyHttpClient: jest.SpyInstance; + let spyUtilGetDownloadArchiveExtension: jest.SpyInstance; + let spyCoreError: jest.SpyInstance; + + beforeEach(() => { + spyHttpClient = jest.spyOn(HttpClient.prototype, 'getJson'); + spyHttpClient.mockReturnValue({ + statusCode: 200, + headers: {}, + result: manifestData as IZuluVersions[] + }); + + spyUtilGetDownloadArchiveExtension = jest.spyOn( + utils, + 'getDownloadArchiveExtension' + ); + spyUtilGetDownloadArchiveExtension.mockReturnValue('zip'); + + // Mock core.error to suppress error logs + spyCoreError = jest.spyOn(core, 'error'); + spyCoreError.mockImplementation(() => {}); + }); + + afterEach(() => { + jest.resetAllMocks(); + jest.clearAllMocks(); + jest.restoreAllMocks(); + }); + + it.each([ + [ + { + version: '11', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, + '?os=windows&ext=zip&bundle_type=jdk&javafx=false&arch=x86&hw_bitness=32&release_status=ga' + ], + [ + { + version: '11-ea', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }, + '?os=windows&ext=zip&bundle_type=jdk&javafx=false&arch=x86&hw_bitness=32&release_status=ea' + ], + [ + { + version: '8', + architecture: 'x64', + packageType: 'jdk', + checkLatest: false + }, + '?os=windows&ext=zip&bundle_type=jdk&javafx=false&arch=x86&hw_bitness=64&release_status=ga' + ], + [ + { + version: '8', + architecture: 'x64', + packageType: 'jre', + checkLatest: false + }, + '?os=windows&ext=zip&bundle_type=jre&javafx=false&arch=x86&hw_bitness=64&release_status=ga' + ], + [ + { + version: '8', + architecture: 'x64', + packageType: 'jdk+fx', + checkLatest: false + }, + '?os=windows&ext=zip&bundle_type=jdk&javafx=true&arch=x86&hw_bitness=64&release_status=ga&features=fx' + ], + [ + { + version: '8', + architecture: 'x64', + packageType: 'jre+fx', + checkLatest: false + }, + '?os=windows&ext=zip&bundle_type=jre&javafx=true&arch=x86&hw_bitness=64&release_status=ga&features=fx' + ], + [ + { + version: '11', + architecture: 'arm64', + packageType: 'jdk', + checkLatest: false + }, + '?os=windows&ext=zip&bundle_type=jdk&javafx=false&arch=arm&hw_bitness=64&release_status=ga' + ], + [ + { + version: '11', + architecture: 'arm', + packageType: 'jdk', + checkLatest: false + }, + '?os=windows&ext=zip&bundle_type=jdk&javafx=false&arch=arm&hw_bitness=&release_status=ga' + ] + ])('build correct url for %s -> %s', async (input, parsedUrl) => { + const distribution = new ZuluDistribution(input); + distribution['getPlatformOption'] = () => 'windows'; + const buildUrl = `https://api.azul.com/zulu/download/community/v1.0/bundles/${parsedUrl}`; + + await distribution['getAvailableVersions'](); + + expect(spyHttpClient.mock.calls).toHaveLength(1); + expect(spyHttpClient.mock.calls[0][0]).toBe(buildUrl); + }); + + type DistroArch = { + bitness: string; + arch: string; + }; + it.each([ + ['amd64', {bitness: '64', arch: 'x86'}], + ['arm64', {bitness: '64', arch: 'arm'}] + ])( + 'defaults to os.arch(): %s mapped to distro arch: %s', + async (osArch: string, distroArch: DistroArch) => { + jest + .spyOn(os, 'arch') + .mockReturnValue(osArch as ReturnType); + + const distribution = new ZuluDistribution({ + version: '17', + architecture: '', // to get default value + packageType: 'jdk', + checkLatest: false + }); + distribution['getPlatformOption'] = () => 'windows'; + const buildUrl = `https://api.azul.com/zulu/download/community/v1.0/bundles/?os=windows&ext=zip&bundle_type=jdk&javafx=false&arch=${distroArch.arch}&hw_bitness=${distroArch.bitness}&release_status=ga`; + + await distribution['getAvailableVersions'](); + + expect(spyHttpClient.mock.calls).toHaveLength(1); + expect(spyHttpClient.mock.calls[0][0]).toBe(buildUrl); + } + ); + + it('load available versions', async () => { + const distribution = new ZuluDistribution({ + version: '11', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }); + const availableVersions = await distribution['getAvailableVersions'](); + expect(availableVersions).toHaveLength(manifestData.length); + }); +}); + +describe('getArchitectureOptions', () => { + it.each([ + [{architecture: 'x64'}, {arch: 'x86', hw_bitness: '64', abi: ''}], + [{architecture: 'x86'}, {arch: 'x86', hw_bitness: '32', abi: ''}], + [{architecture: 'x32'}, {arch: 'x32', hw_bitness: '', abi: ''}], + [{architecture: 'arm'}, {arch: 'arm', hw_bitness: '', abi: ''}] + ])('%s -> %s', (input, expected) => { + const distribution = new ZuluDistribution({ + version: '11', + architecture: input.architecture, + packageType: 'jdk', + checkLatest: false + }); + expect(distribution['getArchitectureOptions']()).toEqual(expected); + }); +}); + +describe('findPackageForDownload', () => { + it.each([ + ['8', '8.0.282+8'], + ['11.x', '11.0.10+9'], + ['8.0', '8.0.282+8'], + ['11.0.x', '11.0.10+9'], + ['15', '15.0.2+7'], + ['9.0.0', '9.0.0+0'], + ['9.0', '9.0.1+0'], + ['8.0.262', '8.0.262+19'], // validate correct choice between [8.0.262.17, 8.0.262.19, 8.0.262.18] + ['8.0.262+17', '8.0.262+17'], + ['15.0.1+8', '15.0.1+8'], + ['15.0.1+9', '15.0.1+9'] + ])('version is %s -> %s', async (input, expected) => { + const distribution = new ZuluDistribution({ + version: input, + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData; + const result = await distribution['findPackageForDownload']( + distribution['version'] + ); + expect(result.version).toBe(expected); + }); + + it('select correct bundle if there are multiple items with the same jdk version but different zulu versions', async () => { + const distribution = new ZuluDistribution({ + version: '', + architecture: 'arm64', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData; + const result = await distribution['findPackageForDownload']('17.0.10'); + expect(result.url).toBe( + 'https://cdn.azul.com/zulu/bin/zulu17.48.15-ca-jdk17.0.10-windows_aarch64.zip' + ); + }); + + it('should throw an error', async () => { + const distribution = new ZuluDistribution({ + version: '18', + architecture: 'x86', + packageType: 'jdk', + checkLatest: false + }); + distribution['getAvailableVersions'] = async () => manifestData; + await expect( + distribution['findPackageForDownload'](distribution['version']) + ).rejects.toThrow(/No matching version found for SemVer/); + }); +}); diff --git a/__tests__/gpg.test.ts b/__tests__/gpg.test.ts index 5288f9ee5..1c981b3f5 100644 --- a/__tests__/gpg.test.ts +++ b/__tests__/gpg.test.ts @@ -1,6 +1,7 @@ -import path = require('path'); -import io = require('@actions/io'); -import exec = require('@actions/exec'); +import * as path from 'path'; +import * as io from '@actions/io'; +import * as exec from '@actions/exec'; +import * as gpg from '../src/gpg'; jest.mock('@actions/exec', () => { return { @@ -11,8 +12,6 @@ jest.mock('@actions/exec', () => { const tempDir = path.join(__dirname, 'runner', 'temp'); process.env['RUNNER_TEMP'] = tempDir; -import gpg = require('../src/gpg'); - describe('gpg tests', () => { beforeEach(async () => { await io.mkdirP(tempDir); @@ -33,7 +32,11 @@ describe('gpg tests', () => { expect(keyId).toBeNull(); - expect(exec.exec).toHaveBeenCalledWith('gpg', expect.anything(), expect.anything()); + expect(exec.exec).toHaveBeenCalledWith( + 'gpg', + expect.anything(), + expect.anything() + ); }); }); @@ -42,7 +45,11 @@ describe('gpg tests', () => { const keyId = 'asdfhjkl'; await gpg.deleteKey(keyId); - expect(exec.exec).toHaveBeenCalledWith('gpg', expect.anything(), expect.anything()); + expect(exec.exec).toHaveBeenCalledWith( + 'gpg', + expect.anything(), + expect.anything() + ); }); }); }); diff --git a/__tests__/toolchains.test.ts b/__tests__/toolchains.test.ts new file mode 100644 index 000000000..483077dc1 --- /dev/null +++ b/__tests__/toolchains.test.ts @@ -0,0 +1,304 @@ +import * as fs from 'fs'; +import os from 'os'; +import * as path from 'path'; +import * as core from '@actions/core'; +import * as io from '@actions/io'; +import * as toolchains from '../src/toolchains'; +import {M2_DIR, MVN_TOOLCHAINS_FILE} from '../src/constants'; + +const m2Dir = path.join(__dirname, M2_DIR); +const toolchainsFile = path.join(m2Dir, MVN_TOOLCHAINS_FILE); + +describe('toolchains tests', () => { + let spyOSHomedir: jest.SpyInstance; + let spyInfo: jest.SpyInstance; + + beforeEach(async () => { + await io.rmRF(m2Dir); + spyOSHomedir = jest.spyOn(os, 'homedir'); + spyOSHomedir.mockReturnValue(__dirname); + spyInfo = jest.spyOn(core, 'info'); + spyInfo.mockImplementation(() => null); + }, 300000); + + afterAll(async () => { + try { + await io.rmRF(m2Dir); + } catch { + console.log('Failed to remove test directories'); + } + jest.resetAllMocks(); + jest.clearAllMocks(); + jest.restoreAllMocks(); + }, 100000); + + it('creates toolchains.xml in alternate locations', async () => { + const jdkInfo = { + version: '17', + vendor: 'Eclipse Temurin', + id: 'temurin_17', + jdkHome: '/opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/17.0.1-12/x64' + }; + + const altHome = path.join(__dirname, 'runner', 'toolchains'); + const altToolchainsFile = path.join(altHome, MVN_TOOLCHAINS_FILE); + await io.rmRF(altHome); // ensure it doesn't already exist + + await toolchains.createToolchainsSettings({ + jdkInfo, + settingsDirectory: altHome, + overwriteSettings: true + }); + + expect(fs.existsSync(m2Dir)).toBe(false); + expect(fs.existsSync(toolchainsFile)).toBe(false); + + expect(fs.existsSync(altHome)).toBe(true); + expect(fs.existsSync(altToolchainsFile)).toBe(true); + expect(fs.readFileSync(altToolchainsFile, 'utf-8')).toEqual( + toolchains.generateToolchainDefinition( + '', + jdkInfo.version, + jdkInfo.vendor, + jdkInfo.id, + jdkInfo.jdkHome + ) + ); + + await io.rmRF(altHome); + }, 100000); + + it('creates toolchains.xml with minimal configuration', async () => { + const jdkInfo = { + version: '17', + vendor: 'Eclipse Temurin', + id: 'temurin_17', + jdkHome: '/opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/17.0.1-12/x64' + }; + + const result = ` + + + jdk + + 17 + Eclipse Temurin + temurin_17 + + + /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/17.0.1-12/x64 + + +`; + + await toolchains.createToolchainsSettings({ + jdkInfo, + settingsDirectory: m2Dir, + overwriteSettings: true + }); + + expect(fs.existsSync(m2Dir)).toBe(true); + expect(fs.existsSync(toolchainsFile)).toBe(true); + expect(fs.readFileSync(toolchainsFile, 'utf-8')).toEqual( + toolchains.generateToolchainDefinition( + '', + jdkInfo.version, + jdkInfo.vendor, + jdkInfo.id, + jdkInfo.jdkHome + ) + ); + expect( + toolchains.generateToolchainDefinition( + '', + jdkInfo.version, + jdkInfo.vendor, + jdkInfo.id, + jdkInfo.jdkHome + ) + ).toEqual(result); + }, 100000); + + it('reuses existing toolchains.xml files', async () => { + const jdkInfo = { + version: '17', + vendor: 'Eclipse Temurin', + id: 'temurin_17', + jdkHome: '/opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/17.0.1-12/x64' + }; + + const originalFile = ` + + jdk + + 1.6 + Sun + sun_1.6 + + + /opt/jdk/sun/1.6 + + + `; + const result = ` + + + jdk + + 1.6 + Sun + sun_1.6 + + + /opt/jdk/sun/1.6 + + + + jdk + + 17 + Eclipse Temurin + temurin_17 + + + /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/17.0.1-12/x64 + + +`; + + fs.mkdirSync(m2Dir, {recursive: true}); + fs.writeFileSync(toolchainsFile, originalFile); + expect(fs.existsSync(m2Dir)).toBe(true); + expect(fs.existsSync(toolchainsFile)).toBe(true); + + await toolchains.createToolchainsSettings({ + jdkInfo, + settingsDirectory: m2Dir, + overwriteSettings: true + }); + + expect(fs.existsSync(m2Dir)).toBe(true); + expect(fs.existsSync(toolchainsFile)).toBe(true); + expect(fs.readFileSync(toolchainsFile, 'utf-8')).toEqual( + toolchains.generateToolchainDefinition( + originalFile, + jdkInfo.version, + jdkInfo.vendor, + jdkInfo.id, + jdkInfo.jdkHome + ) + ); + expect( + toolchains.generateToolchainDefinition( + originalFile, + jdkInfo.version, + jdkInfo.vendor, + jdkInfo.id, + jdkInfo.jdkHome + ) + ).toEqual(result); + }, 100000); + + it('does not overwrite existing toolchains.xml files', async () => { + const jdkInfo = { + version: '17', + vendor: 'Eclipse Temurin', + id: 'temurin_17', + jdkHome: '/opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/17.0.1-12/x64' + }; + + const originalFile = ` + + jdk + + 1.6 + Sun + sun_1.6 + + + /opt/jdk/sun/1.6 + + + `; + + fs.mkdirSync(m2Dir, {recursive: true}); + fs.writeFileSync(toolchainsFile, originalFile); + expect(fs.existsSync(m2Dir)).toBe(true); + expect(fs.existsSync(toolchainsFile)).toBe(true); + + await toolchains.createToolchainsSettings({ + jdkInfo, + settingsDirectory: m2Dir, + overwriteSettings: false + }); + + expect(fs.existsSync(m2Dir)).toBe(true); + expect(fs.existsSync(toolchainsFile)).toBe(true); + expect(fs.readFileSync(toolchainsFile, 'utf-8')).toEqual(originalFile); + }, 100000); + + it('generates valid toolchains.xml with minimal configuration', () => { + const jdkInfo = { + version: 'JAVA_VERSION', + vendor: 'JAVA_VENDOR', + id: 'VENDOR_VERSION', + jdkHome: 'JAVA_HOME' + }; + + const expectedToolchains = ` + + + jdk + + ${jdkInfo.version} + ${jdkInfo.vendor} + ${jdkInfo.id} + + + ${jdkInfo.jdkHome} + + +`; + + expect( + toolchains.generateToolchainDefinition( + '', + jdkInfo.version, + jdkInfo.vendor, + jdkInfo.id, + jdkInfo.jdkHome + ) + ).toEqual(expectedToolchains); + }, 100000); + + it('creates toolchains.xml with correct id when none is supplied', async () => { + const version = '17'; + const distributionName = 'temurin'; + const id = 'temurin_17'; + const jdkHome = + '/opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/17.0.1-12/x64'; + + await toolchains.configureToolchains( + version, + distributionName, + jdkHome, + undefined + ); + + expect(fs.existsSync(m2Dir)).toBe(true); + expect(fs.existsSync(toolchainsFile)).toBe(true); + expect(fs.readFileSync(toolchainsFile, 'utf-8')).toEqual( + toolchains.generateToolchainDefinition( + '', + version, + distributionName, + id, + jdkHome + ) + ); + }, 100000); +}); diff --git a/__tests__/util.test.ts b/__tests__/util.test.ts index 9815c950b..85b76069e 100644 --- a/__tests__/util.test.ts +++ b/__tests__/util.test.ts @@ -1,6 +1,14 @@ import * as cache from '@actions/cache'; import * as core from '@actions/core'; -import { isVersionSatisfies, isCacheFeatureAvailable } from '../src/util'; +import * as fs from 'fs'; +import * as path from 'path'; +import { + convertVersionToSemver, + getVersionFromFileContent, + isVersionSatisfies, + isCacheFeatureAvailable, + isGhes +} from '../src/util'; jest.mock('@actions/cache'); jest.mock('@actions/core'); @@ -20,23 +28,25 @@ describe('isVersionSatisfies', () => { ['2.5.1+3', '2.5.1+2', false], ['15.0.0+14', '15.0.0+14.1.202003190635', false], ['15.0.0+14.1.202003190635', '15.0.0+14.1.202003190635', true] - ])('%s, %s -> %s', (inputRange: string, inputVersion: string, expected: boolean) => { - const actual = isVersionSatisfies(inputRange, inputVersion); - expect(actual).toBe(expected); - }); + ])( + '%s, %s -> %s', + (inputRange: string, inputVersion: string, expected: boolean) => { + const actual = isVersionSatisfies(inputRange, inputVersion); + expect(actual).toBe(expected); + } + ); }); describe('isCacheFeatureAvailable', () => { it('isCacheFeatureAvailable disabled on GHES', () => { jest.spyOn(cache, 'isFeatureAvailable').mockImplementation(() => false); + const infoMock = jest.spyOn(core, 'warning'); + const message = + 'Caching is only supported on GHES version >= 3.5. If you are on a version >= 3.5, please check with your GHES admin if the Actions cache service is enabled or not.'; try { process.env['GITHUB_SERVER_URL'] = 'http://example.com'; - isCacheFeatureAvailable(); - } catch (error) { - expect(error).toHaveProperty( - 'message', - 'Caching is only supported on GHES version >= 3.5. If you are on a version >= 3.5, please check with your GHES admin if the Actions cache service is enabled or not.' - ); + expect(isCacheFeatureAvailable()).toBeFalsy(); + expect(infoMock).toHaveBeenCalledWith(message); } finally { delete process.env['GITHUB_SERVER_URL']; } @@ -45,7 +55,8 @@ describe('isCacheFeatureAvailable', () => { it('isCacheFeatureAvailable disabled on dotcom', () => { jest.spyOn(cache, 'isFeatureAvailable').mockImplementation(() => false); const infoMock = jest.spyOn(core, 'warning'); - const message = 'The runner was not able to contact the cache service. Caching will be skipped'; + const message = + 'The runner was not able to contact the cache service. Caching will be skipped'; try { process.env['GITHUB_SERVER_URL'] = 'http://github.com'; expect(isCacheFeatureAvailable()).toBe(false); @@ -60,3 +71,91 @@ describe('isCacheFeatureAvailable', () => { expect(isCacheFeatureAvailable()).toBe(true); }); }); + +describe('convertVersionToSemver', () => { + it.each([ + ['12', '12'], + ['12.0', '12.0'], + ['12.0.2', '12.0.2'], + ['12.0.2.1', '12.0.2+1'], + ['12.0.2.1.0', '12.0.2+1.0'] + ])('%s -> %s', (input: string, expected: string) => { + const actual = convertVersionToSemver(input); + expect(actual).toBe(expected); + }); +}); + +describe('getVersionFromFileContent', () => { + describe('.sdkmanrc', () => { + it.each([ + ['java=11.0.20.1-tem', '11.0.20'], + ['java = 11.0.20.1-tem', '11.0.20'], + ['java=11.0.20.1-tem # a comment in sdkmanrc', '11.0.20'], + ['java=11.0.20.1-tem\n#java=21.0.20.1-tem\n', '11.0.20'], // choose first match + ['java=11.0.20.1-tem\njava=21.0.20.1-tem\n', '11.0.20'], // choose first match + ['#java=11.0.20.1-tem\njava=21.0.20.1-tem\n', '21.0.20'] // first one is 'commented' in .sdkmanrc + ])('parsing %s should return %s', (content: string, expected: string) => { + const actual = getVersionFromFileContent(content, 'openjdk', '.sdkmanrc'); + expect(actual).toBe(expected); + }); + + describe('known versions', () => { + const csv = fs.readFileSync( + path.join(__dirname, 'data/sdkman-java-versions.csv'), + 'utf8' + ); + const versions = csv.split('\n').map(r => r.split(', ')); + + it.each(versions)( + 'parsing %s should return %s', + (sdkmanJavaVersion: string, expected: string) => { + const asContent = `java=${sdkmanJavaVersion}`; + const actual = getVersionFromFileContent( + asContent, + 'openjdk', + '.sdkmanrc' + ); + expect(actual).toBe(expected); + } + ); + }); + }); +}); + +describe('isGhes', () => { + const pristineEnv = process.env; + + beforeEach(() => { + jest.resetModules(); + process.env = {...pristineEnv}; + }); + + afterAll(() => { + process.env = pristineEnv; + }); + + it('returns false when the GITHUB_SERVER_URL environment variable is not defined', async () => { + delete process.env['GITHUB_SERVER_URL']; + expect(isGhes()).toBeFalsy(); + }); + + it('returns false when the GITHUB_SERVER_URL environment variable is set to github.com', async () => { + process.env['GITHUB_SERVER_URL'] = 'https://github.com'; + expect(isGhes()).toBeFalsy(); + }); + + it('returns false when the GITHUB_SERVER_URL environment variable is set to a GitHub Enterprise Cloud-style URL', async () => { + process.env['GITHUB_SERVER_URL'] = 'https://contoso.ghe.com'; + expect(isGhes()).toBeFalsy(); + }); + + it('returns false when the GITHUB_SERVER_URL environment variable has a .localhost suffix', async () => { + process.env['GITHUB_SERVER_URL'] = 'https://mock-github.localhost'; + expect(isGhes()).toBeFalsy(); + }); + + it('returns true when the GITHUB_SERVER_URL environment variable is set to some other URL', async () => { + process.env['GITHUB_SERVER_URL'] = 'https://src.onpremise.fabrikam.com'; + expect(isGhes()).toBeTruthy(); + }); +}); diff --git a/__tests__/verify-java.sh b/__tests__/verify-java.sh index 1bad5d357..069d9008a 100755 --- a/__tests__/verify-java.sh +++ b/__tests__/verify-java.sh @@ -24,7 +24,7 @@ fi ACTUAL_JAVA_VERSION="$(java -version 2>&1)" echo "Found java version: $ACTUAL_JAVA_VERSION" -GREP_RESULT=$(echo $ACTUAL_JAVA_VERSION | grep "^openjdk version \"$EXPECTED_JAVA_VERSION") +GREP_RESULT=$(echo $ACTUAL_JAVA_VERSION | grep -E "^(openjdk|java) version \"$EXPECTED_JAVA_VERSION") if [ -z "$GREP_RESULT" ]; then echo "::error::Unexpected version" echo "Expected version: $EXPECTED_JAVA_VERSION" diff --git a/action.yml b/action.yml index ec05f65ab..21a4269d7 100644 --- a/action.yml +++ b/action.yml @@ -5,7 +5,8 @@ author: 'GitHub' inputs: java-version: description: 'The Java version to set up. Takes a whole or semver Java version. See examples of supported syntax in README file' - required: true + java-version-file: + description: 'The path to the `.java-version` file. See examples of supported syntax in README file' distribution: description: 'Java distribution. See the list of supported distributions in README file' required: true @@ -14,9 +15,8 @@ inputs: required: false default: 'jdk' architecture: - description: 'The architecture of the package' + description: "The architecture of the package (defaults to the action runner's architecture)" required: false - default: 'x64' jdkFile: description: 'Path to where the compressed JDK is located' required: false @@ -56,9 +56,21 @@ inputs: cache: description: 'Name of the build platform to cache dependencies. It can be "maven", "gradle" or "sbt".' required: false + cache-dependency-path: + description: 'The path to a dependency file: pom.xml, build.gradle, build.sbt, etc. This option can be used with the `cache` option. If this option is omitted, the action searches for the dependency file in the entire repository. This option supports wildcards and a list of file names for caching multiple dependencies.' + required: false job-status: description: 'Workaround to pass job status to post job step. This variable is not intended for manual setting' default: ${{ job.status }} + token: + description: The token used to authenticate when fetching version manifests hosted on github.com, such as for the Microsoft Build of OpenJDK. When running this action on github.com, the default value is sufficient. When running on GHES, you can pass a personal access token for github.com if you are experiencing rate limiting. + default: ${{ github.server_url == 'https://github.com' && github.token || '' }} + mvn-toolchain-id: + description: 'Name of Maven Toolchain ID if the default name of "${distribution}_${java-version}" is not wanted. See examples of supported syntax in Advanced Usage file' + required: false + mvn-toolchain-vendor: + description: 'Name of Maven Toolchain Vendor if the default name of "${distribution}" is not wanted. See examples of supported syntax in Advanced Usage file' + required: false outputs: distribution: description: 'Distribution of Java that has been installed' @@ -66,7 +78,9 @@ outputs: description: 'Actual version of the java environment that has been installed' path: description: 'Path to where the java environment has been installed (same as $JAVA_HOME)' + cache-hit: + description: 'A boolean value to indicate an exact match was found for the primary key' runs: - using: 'node16' + using: 'node24' main: 'dist/setup/index.js' post: 'dist/cleanup/index.js' diff --git a/dist/cleanup/index.js b/dist/cleanup/index.js index 7bbe4b48e..df5d6c0eb 100644 --- a/dist/cleanup/index.js +++ b/dist/cleanup/index.js @@ -1,11 +1,44 @@ /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ -/***/ 7799: +/***/ 27799: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { @@ -15,19 +48,19 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; -}; Object.defineProperty(exports, "__esModule", ({ value: true })); -const core = __importStar(__nccwpck_require__(2186)); -const path = __importStar(__nccwpck_require__(1017)); -const utils = __importStar(__nccwpck_require__(1518)); -const cacheHttpClient = __importStar(__nccwpck_require__(8245)); -const tar_1 = __nccwpck_require__(6490); +exports.FinalizeCacheError = exports.ReserveCacheError = exports.ValidationError = void 0; +exports.isFeatureAvailable = isFeatureAvailable; +exports.restoreCache = restoreCache; +exports.saveCache = saveCache; +const core = __importStar(__nccwpck_require__(42186)); +const path = __importStar(__nccwpck_require__(71017)); +const utils = __importStar(__nccwpck_require__(91518)); +const cacheHttpClient = __importStar(__nccwpck_require__(98245)); +const cacheTwirpClient = __importStar(__nccwpck_require__(82502)); +const config_1 = __nccwpck_require__(35147); +const tar_1 = __nccwpck_require__(56490); +const http_client_1 = __nccwpck_require__(96255); class ValidationError extends Error { constructor(message) { super(message); @@ -44,6 +77,14 @@ class ReserveCacheError extends Error { } } exports.ReserveCacheError = ReserveCacheError; +class FinalizeCacheError extends Error { + constructor(message) { + super(message); + this.name = 'FinalizeCacheError'; + Object.setPrototypeOf(this, FinalizeCacheError.prototype); + } +} +exports.FinalizeCacheError = FinalizeCacheError; function checkPaths(paths) { if (!paths || paths.length === 0) { throw new ValidationError(`Path Validation Error: At least one directory or file path is required`); @@ -64,21 +105,54 @@ function checkKey(key) { * @returns boolean return true if Actions cache service feature is available, otherwise false */ function isFeatureAvailable() { - return !!process.env['ACTIONS_CACHE_URL']; + const cacheServiceVersion = (0, config_1.getCacheServiceVersion)(); + // Check availability based on cache service version + switch (cacheServiceVersion) { + case 'v2': + // For v2, we need ACTIONS_RESULTS_URL + return !!process.env['ACTIONS_RESULTS_URL']; + case 'v1': + default: + // For v1, we only need ACTIONS_CACHE_URL + return !!process.env['ACTIONS_CACHE_URL']; + } } -exports.isFeatureAvailable = isFeatureAvailable; /** * Restores cache from keys * * @param paths a list of file paths to restore from the cache - * @param primaryKey an explicit key for restoring the cache - * @param restoreKeys an optional ordered list of keys to use for restoring the cache if no cache hit occurred for key + * @param primaryKey an explicit key for restoring the cache. Lookup is done with prefix matching. + * @param restoreKeys an optional ordered list of keys to use for restoring the cache if no cache hit occurred for primaryKey * @param downloadOptions cache download options + * @param enableCrossOsArchive an optional boolean enabled to restore on windows any cache created on any platform * @returns string returns the key for the cache hit, otherwise returns undefined */ -function restoreCache(paths, primaryKey, restoreKeys, options) { - return __awaiter(this, void 0, void 0, function* () { +function restoreCache(paths_1, primaryKey_1, restoreKeys_1, options_1) { + return __awaiter(this, arguments, void 0, function* (paths, primaryKey, restoreKeys, options, enableCrossOsArchive = false) { + const cacheServiceVersion = (0, config_1.getCacheServiceVersion)(); + core.debug(`Cache service version: ${cacheServiceVersion}`); checkPaths(paths); + switch (cacheServiceVersion) { + case 'v2': + return yield restoreCacheV2(paths, primaryKey, restoreKeys, options, enableCrossOsArchive); + case 'v1': + default: + return yield restoreCacheV1(paths, primaryKey, restoreKeys, options, enableCrossOsArchive); + } + }); +} +/** + * Restores cache using the legacy Cache Service + * + * @param paths a list of file paths to restore from the cache + * @param primaryKey an explicit key for restoring the cache. Lookup is done with prefix matching. + * @param restoreKeys an optional ordered list of keys to use for restoring the cache if no cache hit occurred for primaryKey + * @param options cache download options + * @param enableCrossOsArchive an optional boolean enabled to restore on Windows any cache created on any platform + * @returns string returns the key for the cache hit, otherwise returns undefined + */ +function restoreCacheV1(paths_1, primaryKey_1, restoreKeys_1, options_1) { + return __awaiter(this, arguments, void 0, function* (paths, primaryKey, restoreKeys, options, enableCrossOsArchive = false) { restoreKeys = restoreKeys || []; const keys = [primaryKey, ...restoreKeys]; core.debug('Resolved Keys:'); @@ -94,22 +168,27 @@ function restoreCache(paths, primaryKey, restoreKeys, options) { try { // path are needed to compute version const cacheEntry = yield cacheHttpClient.getCacheEntry(keys, paths, { - compressionMethod + compressionMethod, + enableCrossOsArchive }); if (!(cacheEntry === null || cacheEntry === void 0 ? void 0 : cacheEntry.archiveLocation)) { // Cache not found return undefined; } + if (options === null || options === void 0 ? void 0 : options.lookupOnly) { + core.info('Lookup only - skipping download'); + return cacheEntry.cacheKey; + } archivePath = path.join(yield utils.createTempDirectory(), utils.getCacheFileName(compressionMethod)); core.debug(`Archive Path: ${archivePath}`); // Download the cache from the cache entry yield cacheHttpClient.downloadCache(cacheEntry.archiveLocation, archivePath, options); if (core.isDebug()) { - yield tar_1.listTar(archivePath, compressionMethod); + yield (0, tar_1.listTar)(archivePath, compressionMethod); } const archiveFileSize = utils.getArchiveFileSizeInBytes(archivePath); core.info(`Cache Size: ~${Math.round(archiveFileSize / (1024 * 1024))} MB (${archiveFileSize} B)`); - yield tar_1.extractTar(archivePath, compressionMethod); + yield (0, tar_1.extractTar)(archivePath, compressionMethod); core.info('Cache restored successfully'); return cacheEntry.cacheKey; } @@ -119,8 +198,16 @@ function restoreCache(paths, primaryKey, restoreKeys, options) { throw error; } else { - // Supress all non-validation cache related errors because caching should be optional - core.warning(`Failed to restore: ${error.message}`); + // warn on cache restore failure and continue build + // Log server errors (5xx) as errors, all other errors as warnings + if (typedError instanceof http_client_1.HttpClientError && + typeof typedError.statusCode === 'number' && + typedError.statusCode >= 500) { + core.error(`Failed to restore: ${error.message}`); + } + else { + core.warning(`Failed to restore: ${error.message}`); + } } } finally { @@ -135,20 +222,135 @@ function restoreCache(paths, primaryKey, restoreKeys, options) { return undefined; }); } -exports.restoreCache = restoreCache; +/** + * Restores cache using Cache Service v2 + * + * @param paths a list of file paths to restore from the cache + * @param primaryKey an explicit key for restoring the cache. Lookup is done with prefix matching + * @param restoreKeys an optional ordered list of keys to use for restoring the cache if no cache hit occurred for primaryKey + * @param downloadOptions cache download options + * @param enableCrossOsArchive an optional boolean enabled to restore on windows any cache created on any platform + * @returns string returns the key for the cache hit, otherwise returns undefined + */ +function restoreCacheV2(paths_1, primaryKey_1, restoreKeys_1, options_1) { + return __awaiter(this, arguments, void 0, function* (paths, primaryKey, restoreKeys, options, enableCrossOsArchive = false) { + // Override UploadOptions to force the use of Azure + options = Object.assign(Object.assign({}, options), { useAzureSdk: true }); + restoreKeys = restoreKeys || []; + const keys = [primaryKey, ...restoreKeys]; + core.debug('Resolved Keys:'); + core.debug(JSON.stringify(keys)); + if (keys.length > 10) { + throw new ValidationError(`Key Validation Error: Keys are limited to a maximum of 10.`); + } + for (const key of keys) { + checkKey(key); + } + let archivePath = ''; + try { + const twirpClient = cacheTwirpClient.internalCacheTwirpClient(); + const compressionMethod = yield utils.getCompressionMethod(); + const request = { + key: primaryKey, + restoreKeys, + version: utils.getCacheVersion(paths, compressionMethod, enableCrossOsArchive) + }; + const response = yield twirpClient.GetCacheEntryDownloadURL(request); + if (!response.ok) { + core.debug(`Cache not found for version ${request.version} of keys: ${keys.join(', ')}`); + return undefined; + } + const isRestoreKeyMatch = request.key !== response.matchedKey; + if (isRestoreKeyMatch) { + core.info(`Cache hit for restore-key: ${response.matchedKey}`); + } + else { + core.info(`Cache hit for: ${response.matchedKey}`); + } + if (options === null || options === void 0 ? void 0 : options.lookupOnly) { + core.info('Lookup only - skipping download'); + return response.matchedKey; + } + archivePath = path.join(yield utils.createTempDirectory(), utils.getCacheFileName(compressionMethod)); + core.debug(`Archive path: ${archivePath}`); + core.debug(`Starting download of archive to: ${archivePath}`); + yield cacheHttpClient.downloadCache(response.signedDownloadUrl, archivePath, options); + const archiveFileSize = utils.getArchiveFileSizeInBytes(archivePath); + core.info(`Cache Size: ~${Math.round(archiveFileSize / (1024 * 1024))} MB (${archiveFileSize} B)`); + if (core.isDebug()) { + yield (0, tar_1.listTar)(archivePath, compressionMethod); + } + yield (0, tar_1.extractTar)(archivePath, compressionMethod); + core.info('Cache restored successfully'); + return response.matchedKey; + } + catch (error) { + const typedError = error; + if (typedError.name === ValidationError.name) { + throw error; + } + else { + // Supress all non-validation cache related errors because caching should be optional + // Log server errors (5xx) as errors, all other errors as warnings + if (typedError instanceof http_client_1.HttpClientError && + typeof typedError.statusCode === 'number' && + typedError.statusCode >= 500) { + core.error(`Failed to restore: ${error.message}`); + } + else { + core.warning(`Failed to restore: ${error.message}`); + } + } + } + finally { + try { + if (archivePath) { + yield utils.unlinkFile(archivePath); + } + } + catch (error) { + core.debug(`Failed to delete archive: ${error}`); + } + } + return undefined; + }); +} /** * Saves a list of files with the specified key * * @param paths a list of file paths to be cached * @param key an explicit key for restoring the cache + * @param enableCrossOsArchive an optional boolean enabled to save cache on windows which could be restored on any platform * @param options cache upload options * @returns number returns cacheId if the cache was saved successfully and throws an error if save fails */ -function saveCache(paths, key, options) { - var _a, _b, _c, _d, _e; - return __awaiter(this, void 0, void 0, function* () { +function saveCache(paths_1, key_1, options_1) { + return __awaiter(this, arguments, void 0, function* (paths, key, options, enableCrossOsArchive = false) { + const cacheServiceVersion = (0, config_1.getCacheServiceVersion)(); + core.debug(`Cache service version: ${cacheServiceVersion}`); checkPaths(paths); checkKey(key); + switch (cacheServiceVersion) { + case 'v2': + return yield saveCacheV2(paths, key, options, enableCrossOsArchive); + case 'v1': + default: + return yield saveCacheV1(paths, key, options, enableCrossOsArchive); + } + }); +} +/** + * Save cache using the legacy Cache Service + * + * @param paths + * @param key + * @param options + * @param enableCrossOsArchive + * @returns + */ +function saveCacheV1(paths_1, key_1, options_1) { + return __awaiter(this, arguments, void 0, function* (paths, key, options, enableCrossOsArchive = false) { + var _a, _b, _c, _d, _e; const compressionMethod = yield utils.getCompressionMethod(); let cacheId = -1; const cachePaths = yield utils.resolvePaths(paths); @@ -161,20 +363,21 @@ function saveCache(paths, key, options) { const archivePath = path.join(archiveFolder, utils.getCacheFileName(compressionMethod)); core.debug(`Archive Path: ${archivePath}`); try { - yield tar_1.createTar(archiveFolder, cachePaths, compressionMethod); + yield (0, tar_1.createTar)(archiveFolder, cachePaths, compressionMethod); if (core.isDebug()) { - yield tar_1.listTar(archivePath, compressionMethod); + yield (0, tar_1.listTar)(archivePath, compressionMethod); } const fileSizeLimit = 10 * 1024 * 1024 * 1024; // 10GB per repo limit const archiveFileSize = utils.getArchiveFileSizeInBytes(archivePath); core.debug(`File Size: ${archiveFileSize}`); // For GHES, this check will take place in ReserveCache API with enterprise file size limit - if (archiveFileSize > fileSizeLimit && !utils.isGhes()) { + if (archiveFileSize > fileSizeLimit && !(0, config_1.isGhes)()) { throw new Error(`Cache size of ~${Math.round(archiveFileSize / (1024 * 1024))} MB (${archiveFileSize} B) is over the 10GB limit, not saving cache.`); } core.debug('Reserving Cache'); const reserveCacheResponse = yield cacheHttpClient.reserveCache(key, paths, { compressionMethod, + enableCrossOsArchive, cacheSize: archiveFileSize }); if ((_a = reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse.result) === null || _a === void 0 ? void 0 : _a.cacheId) { @@ -187,7 +390,7 @@ function saveCache(paths, key, options) { throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache. More details: ${(_e = reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse.error) === null || _e === void 0 ? void 0 : _e.message}`); } core.debug(`Saving Cache (ID: ${cacheId})`); - yield cacheHttpClient.saveCache(cacheId, archivePath, options); + yield cacheHttpClient.saveCache(cacheId, archivePath, '', options); } catch (error) { const typedError = error; @@ -198,7 +401,15 @@ function saveCache(paths, key, options) { core.info(`Failed to save: ${typedError.message}`); } else { - core.warning(`Failed to save: ${typedError.message}`); + // Log server errors (5xx) as errors, all other errors as warnings + if (typedError instanceof http_client_1.HttpClientError && + typeof typedError.statusCode === 'number' && + typedError.statusCode >= 500) { + core.error(`Failed to save: ${typedError.message}`); + } + else { + core.warning(`Failed to save: ${typedError.message}`); + } } } finally { @@ -213,16 +424,782 @@ function saveCache(paths, key, options) { return cacheId; }); } -exports.saveCache = saveCache; +/** + * Save cache using Cache Service v2 + * + * @param paths a list of file paths to restore from the cache + * @param key an explicit key for restoring the cache + * @param options cache upload options + * @param enableCrossOsArchive an optional boolean enabled to save cache on windows which could be restored on any platform + * @returns + */ +function saveCacheV2(paths_1, key_1, options_1) { + return __awaiter(this, arguments, void 0, function* (paths, key, options, enableCrossOsArchive = false) { + // Override UploadOptions to force the use of Azure + // ...options goes first because we want to override the default values + // set in UploadOptions with these specific figures + options = Object.assign(Object.assign({}, options), { uploadChunkSize: 64 * 1024 * 1024, uploadConcurrency: 8, useAzureSdk: true }); + const compressionMethod = yield utils.getCompressionMethod(); + const twirpClient = cacheTwirpClient.internalCacheTwirpClient(); + let cacheId = -1; + const cachePaths = yield utils.resolvePaths(paths); + core.debug('Cache Paths:'); + core.debug(`${JSON.stringify(cachePaths)}`); + if (cachePaths.length === 0) { + throw new Error(`Path Validation Error: Path(s) specified in the action for caching do(es) not exist, hence no cache is being saved.`); + } + const archiveFolder = yield utils.createTempDirectory(); + const archivePath = path.join(archiveFolder, utils.getCacheFileName(compressionMethod)); + core.debug(`Archive Path: ${archivePath}`); + try { + yield (0, tar_1.createTar)(archiveFolder, cachePaths, compressionMethod); + if (core.isDebug()) { + yield (0, tar_1.listTar)(archivePath, compressionMethod); + } + const archiveFileSize = utils.getArchiveFileSizeInBytes(archivePath); + core.debug(`File Size: ${archiveFileSize}`); + // Set the archive size in the options, will be used to display the upload progress + options.archiveSizeBytes = archiveFileSize; + core.debug('Reserving Cache'); + const version = utils.getCacheVersion(paths, compressionMethod, enableCrossOsArchive); + const request = { + key, + version + }; + let signedUploadUrl; + try { + const response = yield twirpClient.CreateCacheEntry(request); + if (!response.ok) { + if (response.message) { + core.warning(`Cache reservation failed: ${response.message}`); + } + throw new Error(response.message || 'Response was not ok'); + } + signedUploadUrl = response.signedUploadUrl; + } + catch (error) { + core.debug(`Failed to reserve cache: ${error}`); + throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`); + } + core.debug(`Attempting to upload cache located at: ${archivePath}`); + yield cacheHttpClient.saveCache(cacheId, archivePath, signedUploadUrl, options); + const finalizeRequest = { + key, + version, + sizeBytes: `${archiveFileSize}` + }; + const finalizeResponse = yield twirpClient.FinalizeCacheEntryUpload(finalizeRequest); + core.debug(`FinalizeCacheEntryUploadResponse: ${finalizeResponse.ok}`); + if (!finalizeResponse.ok) { + if (finalizeResponse.message) { + throw new FinalizeCacheError(finalizeResponse.message); + } + throw new Error(`Unable to finalize cache with key ${key}, another job may be finalizing this cache.`); + } + cacheId = parseInt(finalizeResponse.entryId); + } + catch (error) { + const typedError = error; + if (typedError.name === ValidationError.name) { + throw error; + } + else if (typedError.name === ReserveCacheError.name) { + core.info(`Failed to save: ${typedError.message}`); + } + else if (typedError.name === FinalizeCacheError.name) { + core.warning(typedError.message); + } + else { + // Log server errors (5xx) as errors, all other errors as warnings + if (typedError instanceof http_client_1.HttpClientError && + typeof typedError.statusCode === 'number' && + typedError.statusCode >= 500) { + core.error(`Failed to save: ${typedError.message}`); + } + else { + core.warning(`Failed to save: ${typedError.message}`); + } + } + } + finally { + // Try to delete the archive to save space + try { + yield utils.unlinkFile(archivePath); + } + catch (error) { + core.debug(`Failed to delete archive: ${error}`); + } + } + return cacheId; + }); +} +//# sourceMappingURL=cache.js.map + +/***/ }), + +/***/ 84388: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.CacheService = exports.GetCacheEntryDownloadURLResponse = exports.GetCacheEntryDownloadURLRequest = exports.FinalizeCacheEntryUploadResponse = exports.FinalizeCacheEntryUploadRequest = exports.CreateCacheEntryResponse = exports.CreateCacheEntryRequest = void 0; +// @generated by protobuf-ts 2.9.1 with parameter long_type_string,client_none,generate_dependencies +// @generated from protobuf file "results/api/v1/cache.proto" (package "github.actions.results.api.v1", syntax proto3) +// tslint:disable +const runtime_rpc_1 = __nccwpck_require__(60012); +const runtime_1 = __nccwpck_require__(4061); +const runtime_2 = __nccwpck_require__(4061); +const runtime_3 = __nccwpck_require__(4061); +const runtime_4 = __nccwpck_require__(4061); +const runtime_5 = __nccwpck_require__(4061); +const cachemetadata_1 = __nccwpck_require__(67988); +// @generated message type with reflection information, may provide speed optimized methods +class CreateCacheEntryRequest$Type extends runtime_5.MessageType { + constructor() { + super("github.actions.results.api.v1.CreateCacheEntryRequest", [ + { no: 1, name: "metadata", kind: "message", T: () => cachemetadata_1.CacheMetadata }, + { no: 2, name: "key", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, + { no: 3, name: "version", kind: "scalar", T: 9 /*ScalarType.STRING*/ } + ]); + } + create(value) { + const message = { key: "", version: "" }; + globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this }); + if (value !== undefined) + (0, runtime_3.reflectionMergePartial)(this, message, value); + return message; + } + internalBinaryRead(reader, length, options, target) { + let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length; + while (reader.pos < end) { + let [fieldNo, wireType] = reader.tag(); + switch (fieldNo) { + case /* github.actions.results.entities.v1.CacheMetadata metadata */ 1: + message.metadata = cachemetadata_1.CacheMetadata.internalBinaryRead(reader, reader.uint32(), options, message.metadata); + break; + case /* string key */ 2: + message.key = reader.string(); + break; + case /* string version */ 3: + message.version = reader.string(); + break; + default: + let u = options.readUnknownField; + if (u === "throw") + throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); + let d = reader.skip(wireType); + if (u !== false) + (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); + } + } + return message; + } + internalBinaryWrite(message, writer, options) { + /* github.actions.results.entities.v1.CacheMetadata metadata = 1; */ + if (message.metadata) + cachemetadata_1.CacheMetadata.internalBinaryWrite(message.metadata, writer.tag(1, runtime_1.WireType.LengthDelimited).fork(), options).join(); + /* string key = 2; */ + if (message.key !== "") + writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.key); + /* string version = 3; */ + if (message.version !== "") + writer.tag(3, runtime_1.WireType.LengthDelimited).string(message.version); + let u = options.writeUnknownFields; + if (u !== false) + (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); + return writer; + } +} +/** + * @generated MessageType for protobuf message github.actions.results.api.v1.CreateCacheEntryRequest + */ +exports.CreateCacheEntryRequest = new CreateCacheEntryRequest$Type(); +// @generated message type with reflection information, may provide speed optimized methods +class CreateCacheEntryResponse$Type extends runtime_5.MessageType { + constructor() { + super("github.actions.results.api.v1.CreateCacheEntryResponse", [ + { no: 1, name: "ok", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }, + { no: 2, name: "signed_upload_url", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, + { no: 3, name: "message", kind: "scalar", T: 9 /*ScalarType.STRING*/ } + ]); + } + create(value) { + const message = { ok: false, signedUploadUrl: "", message: "" }; + globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this }); + if (value !== undefined) + (0, runtime_3.reflectionMergePartial)(this, message, value); + return message; + } + internalBinaryRead(reader, length, options, target) { + let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length; + while (reader.pos < end) { + let [fieldNo, wireType] = reader.tag(); + switch (fieldNo) { + case /* bool ok */ 1: + message.ok = reader.bool(); + break; + case /* string signed_upload_url */ 2: + message.signedUploadUrl = reader.string(); + break; + case /* string message */ 3: + message.message = reader.string(); + break; + default: + let u = options.readUnknownField; + if (u === "throw") + throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); + let d = reader.skip(wireType); + if (u !== false) + (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); + } + } + return message; + } + internalBinaryWrite(message, writer, options) { + /* bool ok = 1; */ + if (message.ok !== false) + writer.tag(1, runtime_1.WireType.Varint).bool(message.ok); + /* string signed_upload_url = 2; */ + if (message.signedUploadUrl !== "") + writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.signedUploadUrl); + /* string message = 3; */ + if (message.message !== "") + writer.tag(3, runtime_1.WireType.LengthDelimited).string(message.message); + let u = options.writeUnknownFields; + if (u !== false) + (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); + return writer; + } +} +/** + * @generated MessageType for protobuf message github.actions.results.api.v1.CreateCacheEntryResponse + */ +exports.CreateCacheEntryResponse = new CreateCacheEntryResponse$Type(); +// @generated message type with reflection information, may provide speed optimized methods +class FinalizeCacheEntryUploadRequest$Type extends runtime_5.MessageType { + constructor() { + super("github.actions.results.api.v1.FinalizeCacheEntryUploadRequest", [ + { no: 1, name: "metadata", kind: "message", T: () => cachemetadata_1.CacheMetadata }, + { no: 2, name: "key", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, + { no: 3, name: "size_bytes", kind: "scalar", T: 3 /*ScalarType.INT64*/ }, + { no: 4, name: "version", kind: "scalar", T: 9 /*ScalarType.STRING*/ } + ]); + } + create(value) { + const message = { key: "", sizeBytes: "0", version: "" }; + globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this }); + if (value !== undefined) + (0, runtime_3.reflectionMergePartial)(this, message, value); + return message; + } + internalBinaryRead(reader, length, options, target) { + let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length; + while (reader.pos < end) { + let [fieldNo, wireType] = reader.tag(); + switch (fieldNo) { + case /* github.actions.results.entities.v1.CacheMetadata metadata */ 1: + message.metadata = cachemetadata_1.CacheMetadata.internalBinaryRead(reader, reader.uint32(), options, message.metadata); + break; + case /* string key */ 2: + message.key = reader.string(); + break; + case /* int64 size_bytes */ 3: + message.sizeBytes = reader.int64().toString(); + break; + case /* string version */ 4: + message.version = reader.string(); + break; + default: + let u = options.readUnknownField; + if (u === "throw") + throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); + let d = reader.skip(wireType); + if (u !== false) + (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); + } + } + return message; + } + internalBinaryWrite(message, writer, options) { + /* github.actions.results.entities.v1.CacheMetadata metadata = 1; */ + if (message.metadata) + cachemetadata_1.CacheMetadata.internalBinaryWrite(message.metadata, writer.tag(1, runtime_1.WireType.LengthDelimited).fork(), options).join(); + /* string key = 2; */ + if (message.key !== "") + writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.key); + /* int64 size_bytes = 3; */ + if (message.sizeBytes !== "0") + writer.tag(3, runtime_1.WireType.Varint).int64(message.sizeBytes); + /* string version = 4; */ + if (message.version !== "") + writer.tag(4, runtime_1.WireType.LengthDelimited).string(message.version); + let u = options.writeUnknownFields; + if (u !== false) + (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); + return writer; + } +} +/** + * @generated MessageType for protobuf message github.actions.results.api.v1.FinalizeCacheEntryUploadRequest + */ +exports.FinalizeCacheEntryUploadRequest = new FinalizeCacheEntryUploadRequest$Type(); +// @generated message type with reflection information, may provide speed optimized methods +class FinalizeCacheEntryUploadResponse$Type extends runtime_5.MessageType { + constructor() { + super("github.actions.results.api.v1.FinalizeCacheEntryUploadResponse", [ + { no: 1, name: "ok", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }, + { no: 2, name: "entry_id", kind: "scalar", T: 3 /*ScalarType.INT64*/ }, + { no: 3, name: "message", kind: "scalar", T: 9 /*ScalarType.STRING*/ } + ]); + } + create(value) { + const message = { ok: false, entryId: "0", message: "" }; + globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this }); + if (value !== undefined) + (0, runtime_3.reflectionMergePartial)(this, message, value); + return message; + } + internalBinaryRead(reader, length, options, target) { + let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length; + while (reader.pos < end) { + let [fieldNo, wireType] = reader.tag(); + switch (fieldNo) { + case /* bool ok */ 1: + message.ok = reader.bool(); + break; + case /* int64 entry_id */ 2: + message.entryId = reader.int64().toString(); + break; + case /* string message */ 3: + message.message = reader.string(); + break; + default: + let u = options.readUnknownField; + if (u === "throw") + throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); + let d = reader.skip(wireType); + if (u !== false) + (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); + } + } + return message; + } + internalBinaryWrite(message, writer, options) { + /* bool ok = 1; */ + if (message.ok !== false) + writer.tag(1, runtime_1.WireType.Varint).bool(message.ok); + /* int64 entry_id = 2; */ + if (message.entryId !== "0") + writer.tag(2, runtime_1.WireType.Varint).int64(message.entryId); + /* string message = 3; */ + if (message.message !== "") + writer.tag(3, runtime_1.WireType.LengthDelimited).string(message.message); + let u = options.writeUnknownFields; + if (u !== false) + (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); + return writer; + } +} +/** + * @generated MessageType for protobuf message github.actions.results.api.v1.FinalizeCacheEntryUploadResponse + */ +exports.FinalizeCacheEntryUploadResponse = new FinalizeCacheEntryUploadResponse$Type(); +// @generated message type with reflection information, may provide speed optimized methods +class GetCacheEntryDownloadURLRequest$Type extends runtime_5.MessageType { + constructor() { + super("github.actions.results.api.v1.GetCacheEntryDownloadURLRequest", [ + { no: 1, name: "metadata", kind: "message", T: () => cachemetadata_1.CacheMetadata }, + { no: 2, name: "key", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, + { no: 3, name: "restore_keys", kind: "scalar", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ }, + { no: 4, name: "version", kind: "scalar", T: 9 /*ScalarType.STRING*/ } + ]); + } + create(value) { + const message = { key: "", restoreKeys: [], version: "" }; + globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this }); + if (value !== undefined) + (0, runtime_3.reflectionMergePartial)(this, message, value); + return message; + } + internalBinaryRead(reader, length, options, target) { + let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length; + while (reader.pos < end) { + let [fieldNo, wireType] = reader.tag(); + switch (fieldNo) { + case /* github.actions.results.entities.v1.CacheMetadata metadata */ 1: + message.metadata = cachemetadata_1.CacheMetadata.internalBinaryRead(reader, reader.uint32(), options, message.metadata); + break; + case /* string key */ 2: + message.key = reader.string(); + break; + case /* repeated string restore_keys */ 3: + message.restoreKeys.push(reader.string()); + break; + case /* string version */ 4: + message.version = reader.string(); + break; + default: + let u = options.readUnknownField; + if (u === "throw") + throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); + let d = reader.skip(wireType); + if (u !== false) + (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); + } + } + return message; + } + internalBinaryWrite(message, writer, options) { + /* github.actions.results.entities.v1.CacheMetadata metadata = 1; */ + if (message.metadata) + cachemetadata_1.CacheMetadata.internalBinaryWrite(message.metadata, writer.tag(1, runtime_1.WireType.LengthDelimited).fork(), options).join(); + /* string key = 2; */ + if (message.key !== "") + writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.key); + /* repeated string restore_keys = 3; */ + for (let i = 0; i < message.restoreKeys.length; i++) + writer.tag(3, runtime_1.WireType.LengthDelimited).string(message.restoreKeys[i]); + /* string version = 4; */ + if (message.version !== "") + writer.tag(4, runtime_1.WireType.LengthDelimited).string(message.version); + let u = options.writeUnknownFields; + if (u !== false) + (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); + return writer; + } +} +/** + * @generated MessageType for protobuf message github.actions.results.api.v1.GetCacheEntryDownloadURLRequest + */ +exports.GetCacheEntryDownloadURLRequest = new GetCacheEntryDownloadURLRequest$Type(); +// @generated message type with reflection information, may provide speed optimized methods +class GetCacheEntryDownloadURLResponse$Type extends runtime_5.MessageType { + constructor() { + super("github.actions.results.api.v1.GetCacheEntryDownloadURLResponse", [ + { no: 1, name: "ok", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }, + { no: 2, name: "signed_download_url", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, + { no: 3, name: "matched_key", kind: "scalar", T: 9 /*ScalarType.STRING*/ } + ]); + } + create(value) { + const message = { ok: false, signedDownloadUrl: "", matchedKey: "" }; + globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this }); + if (value !== undefined) + (0, runtime_3.reflectionMergePartial)(this, message, value); + return message; + } + internalBinaryRead(reader, length, options, target) { + let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length; + while (reader.pos < end) { + let [fieldNo, wireType] = reader.tag(); + switch (fieldNo) { + case /* bool ok */ 1: + message.ok = reader.bool(); + break; + case /* string signed_download_url */ 2: + message.signedDownloadUrl = reader.string(); + break; + case /* string matched_key */ 3: + message.matchedKey = reader.string(); + break; + default: + let u = options.readUnknownField; + if (u === "throw") + throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); + let d = reader.skip(wireType); + if (u !== false) + (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); + } + } + return message; + } + internalBinaryWrite(message, writer, options) { + /* bool ok = 1; */ + if (message.ok !== false) + writer.tag(1, runtime_1.WireType.Varint).bool(message.ok); + /* string signed_download_url = 2; */ + if (message.signedDownloadUrl !== "") + writer.tag(2, runtime_1.WireType.LengthDelimited).string(message.signedDownloadUrl); + /* string matched_key = 3; */ + if (message.matchedKey !== "") + writer.tag(3, runtime_1.WireType.LengthDelimited).string(message.matchedKey); + let u = options.writeUnknownFields; + if (u !== false) + (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); + return writer; + } +} +/** + * @generated MessageType for protobuf message github.actions.results.api.v1.GetCacheEntryDownloadURLResponse + */ +exports.GetCacheEntryDownloadURLResponse = new GetCacheEntryDownloadURLResponse$Type(); +/** + * @generated ServiceType for protobuf service github.actions.results.api.v1.CacheService + */ +exports.CacheService = new runtime_rpc_1.ServiceType("github.actions.results.api.v1.CacheService", [ + { name: "CreateCacheEntry", options: {}, I: exports.CreateCacheEntryRequest, O: exports.CreateCacheEntryResponse }, + { name: "FinalizeCacheEntryUpload", options: {}, I: exports.FinalizeCacheEntryUploadRequest, O: exports.FinalizeCacheEntryUploadResponse }, + { name: "GetCacheEntryDownloadURL", options: {}, I: exports.GetCacheEntryDownloadURLRequest, O: exports.GetCacheEntryDownloadURLResponse } +]); //# sourceMappingURL=cache.js.map /***/ }), -/***/ 8245: +/***/ 42655: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.CacheServiceClientProtobuf = exports.CacheServiceClientJSON = void 0; +const cache_1 = __nccwpck_require__(84388); +class CacheServiceClientJSON { + constructor(rpc) { + this.rpc = rpc; + this.CreateCacheEntry.bind(this); + this.FinalizeCacheEntryUpload.bind(this); + this.GetCacheEntryDownloadURL.bind(this); + } + CreateCacheEntry(request) { + const data = cache_1.CreateCacheEntryRequest.toJson(request, { + useProtoFieldName: true, + emitDefaultValues: false, + }); + const promise = this.rpc.request("github.actions.results.api.v1.CacheService", "CreateCacheEntry", "application/json", data); + return promise.then((data) => cache_1.CreateCacheEntryResponse.fromJson(data, { + ignoreUnknownFields: true, + })); + } + FinalizeCacheEntryUpload(request) { + const data = cache_1.FinalizeCacheEntryUploadRequest.toJson(request, { + useProtoFieldName: true, + emitDefaultValues: false, + }); + const promise = this.rpc.request("github.actions.results.api.v1.CacheService", "FinalizeCacheEntryUpload", "application/json", data); + return promise.then((data) => cache_1.FinalizeCacheEntryUploadResponse.fromJson(data, { + ignoreUnknownFields: true, + })); + } + GetCacheEntryDownloadURL(request) { + const data = cache_1.GetCacheEntryDownloadURLRequest.toJson(request, { + useProtoFieldName: true, + emitDefaultValues: false, + }); + const promise = this.rpc.request("github.actions.results.api.v1.CacheService", "GetCacheEntryDownloadURL", "application/json", data); + return promise.then((data) => cache_1.GetCacheEntryDownloadURLResponse.fromJson(data, { + ignoreUnknownFields: true, + })); + } +} +exports.CacheServiceClientJSON = CacheServiceClientJSON; +class CacheServiceClientProtobuf { + constructor(rpc) { + this.rpc = rpc; + this.CreateCacheEntry.bind(this); + this.FinalizeCacheEntryUpload.bind(this); + this.GetCacheEntryDownloadURL.bind(this); + } + CreateCacheEntry(request) { + const data = cache_1.CreateCacheEntryRequest.toBinary(request); + const promise = this.rpc.request("github.actions.results.api.v1.CacheService", "CreateCacheEntry", "application/protobuf", data); + return promise.then((data) => cache_1.CreateCacheEntryResponse.fromBinary(data)); + } + FinalizeCacheEntryUpload(request) { + const data = cache_1.FinalizeCacheEntryUploadRequest.toBinary(request); + const promise = this.rpc.request("github.actions.results.api.v1.CacheService", "FinalizeCacheEntryUpload", "application/protobuf", data); + return promise.then((data) => cache_1.FinalizeCacheEntryUploadResponse.fromBinary(data)); + } + GetCacheEntryDownloadURL(request) { + const data = cache_1.GetCacheEntryDownloadURLRequest.toBinary(request); + const promise = this.rpc.request("github.actions.results.api.v1.CacheService", "GetCacheEntryDownloadURL", "application/protobuf", data); + return promise.then((data) => cache_1.GetCacheEntryDownloadURLResponse.fromBinary(data)); + } +} +exports.CacheServiceClientProtobuf = CacheServiceClientProtobuf; +//# sourceMappingURL=cache.twirp-client.js.map + +/***/ }), + +/***/ 67988: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.CacheMetadata = void 0; +const runtime_1 = __nccwpck_require__(4061); +const runtime_2 = __nccwpck_require__(4061); +const runtime_3 = __nccwpck_require__(4061); +const runtime_4 = __nccwpck_require__(4061); +const runtime_5 = __nccwpck_require__(4061); +const cachescope_1 = __nccwpck_require__(83749); +// @generated message type with reflection information, may provide speed optimized methods +class CacheMetadata$Type extends runtime_5.MessageType { + constructor() { + super("github.actions.results.entities.v1.CacheMetadata", [ + { no: 1, name: "repository_id", kind: "scalar", T: 3 /*ScalarType.INT64*/ }, + { no: 2, name: "scope", kind: "message", repeat: 1 /*RepeatType.PACKED*/, T: () => cachescope_1.CacheScope } + ]); + } + create(value) { + const message = { repositoryId: "0", scope: [] }; + globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this }); + if (value !== undefined) + (0, runtime_3.reflectionMergePartial)(this, message, value); + return message; + } + internalBinaryRead(reader, length, options, target) { + let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length; + while (reader.pos < end) { + let [fieldNo, wireType] = reader.tag(); + switch (fieldNo) { + case /* int64 repository_id */ 1: + message.repositoryId = reader.int64().toString(); + break; + case /* repeated github.actions.results.entities.v1.CacheScope scope */ 2: + message.scope.push(cachescope_1.CacheScope.internalBinaryRead(reader, reader.uint32(), options)); + break; + default: + let u = options.readUnknownField; + if (u === "throw") + throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); + let d = reader.skip(wireType); + if (u !== false) + (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); + } + } + return message; + } + internalBinaryWrite(message, writer, options) { + /* int64 repository_id = 1; */ + if (message.repositoryId !== "0") + writer.tag(1, runtime_1.WireType.Varint).int64(message.repositoryId); + /* repeated github.actions.results.entities.v1.CacheScope scope = 2; */ + for (let i = 0; i < message.scope.length; i++) + cachescope_1.CacheScope.internalBinaryWrite(message.scope[i], writer.tag(2, runtime_1.WireType.LengthDelimited).fork(), options).join(); + let u = options.writeUnknownFields; + if (u !== false) + (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); + return writer; + } +} +/** + * @generated MessageType for protobuf message github.actions.results.entities.v1.CacheMetadata + */ +exports.CacheMetadata = new CacheMetadata$Type(); +//# sourceMappingURL=cachemetadata.js.map + +/***/ }), + +/***/ 83749: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.CacheScope = void 0; +const runtime_1 = __nccwpck_require__(4061); +const runtime_2 = __nccwpck_require__(4061); +const runtime_3 = __nccwpck_require__(4061); +const runtime_4 = __nccwpck_require__(4061); +const runtime_5 = __nccwpck_require__(4061); +// @generated message type with reflection information, may provide speed optimized methods +class CacheScope$Type extends runtime_5.MessageType { + constructor() { + super("github.actions.results.entities.v1.CacheScope", [ + { no: 1, name: "scope", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, + { no: 2, name: "permission", kind: "scalar", T: 3 /*ScalarType.INT64*/ } + ]); + } + create(value) { + const message = { scope: "", permission: "0" }; + globalThis.Object.defineProperty(message, runtime_4.MESSAGE_TYPE, { enumerable: false, value: this }); + if (value !== undefined) + (0, runtime_3.reflectionMergePartial)(this, message, value); + return message; + } + internalBinaryRead(reader, length, options, target) { + let message = target !== null && target !== void 0 ? target : this.create(), end = reader.pos + length; + while (reader.pos < end) { + let [fieldNo, wireType] = reader.tag(); + switch (fieldNo) { + case /* string scope */ 1: + message.scope = reader.string(); + break; + case /* int64 permission */ 2: + message.permission = reader.int64().toString(); + break; + default: + let u = options.readUnknownField; + if (u === "throw") + throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`); + let d = reader.skip(wireType); + if (u !== false) + (u === true ? runtime_2.UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d); + } + } + return message; + } + internalBinaryWrite(message, writer, options) { + /* string scope = 1; */ + if (message.scope !== "") + writer.tag(1, runtime_1.WireType.LengthDelimited).string(message.scope); + /* int64 permission = 2; */ + if (message.permission !== "0") + writer.tag(2, runtime_1.WireType.Varint).int64(message.permission); + let u = options.writeUnknownFields; + if (u !== false) + (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); + return writer; + } +} +/** + * @generated MessageType for protobuf message github.actions.results.entities.v1.CacheScope + */ +exports.CacheScope = new CacheScope$Type(); +//# sourceMappingURL=cachescope.js.map + +/***/ }), + +/***/ 98245: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { @@ -232,28 +1209,25 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; -}; Object.defineProperty(exports, "__esModule", ({ value: true })); -const core = __importStar(__nccwpck_require__(2186)); -const http_client_1 = __nccwpck_require__(1825); -const auth_1 = __nccwpck_require__(2001); -const crypto = __importStar(__nccwpck_require__(6113)); -const fs = __importStar(__nccwpck_require__(7147)); -const url_1 = __nccwpck_require__(7310); -const utils = __importStar(__nccwpck_require__(1518)); -const constants_1 = __nccwpck_require__(8840); -const downloadUtils_1 = __nccwpck_require__(5500); -const options_1 = __nccwpck_require__(6215); -const requestUtils_1 = __nccwpck_require__(3981); -const versionSalt = '1.0'; +exports.getCacheEntry = getCacheEntry; +exports.downloadCache = downloadCache; +exports.reserveCache = reserveCache; +exports.saveCache = saveCache; +const core = __importStar(__nccwpck_require__(42186)); +const http_client_1 = __nccwpck_require__(96255); +const auth_1 = __nccwpck_require__(35526); +const fs = __importStar(__nccwpck_require__(57147)); +const url_1 = __nccwpck_require__(57310); +const utils = __importStar(__nccwpck_require__(91518)); +const uploadUtils_1 = __nccwpck_require__(1786); +const downloadUtils_1 = __nccwpck_require__(55500); +const options_1 = __nccwpck_require__(76215); +const requestUtils_1 = __nccwpck_require__(13981); +const config_1 = __nccwpck_require__(35147); +const user_agent_1 = __nccwpck_require__(580); function getCacheApiUrl(resource) { - const baseUrl = process.env['ACTIONS_CACHE_URL'] || ''; + const baseUrl = (0, config_1.getCacheServiceURL)(); if (!baseUrl) { throw new Error('Cache Service Url not found, unable to restore cache.'); } @@ -275,35 +1249,29 @@ function getRequestOptions() { function createHttpClient() { const token = process.env['ACTIONS_RUNTIME_TOKEN'] || ''; const bearerCredentialHandler = new auth_1.BearerCredentialHandler(token); - return new http_client_1.HttpClient('actions/cache', [bearerCredentialHandler], getRequestOptions()); -} -function getCacheVersion(paths, compressionMethod) { - const components = paths.concat(!compressionMethod || compressionMethod === constants_1.CompressionMethod.Gzip - ? [] - : [compressionMethod]); - // Add salt to cache version to support breaking changes in cache entry - components.push(versionSalt); - return crypto - .createHash('sha256') - .update(components.join('|')) - .digest('hex'); + return new http_client_1.HttpClient((0, user_agent_1.getUserAgentString)(), [bearerCredentialHandler], getRequestOptions()); } -exports.getCacheVersion = getCacheVersion; function getCacheEntry(keys, paths, options) { return __awaiter(this, void 0, void 0, function* () { const httpClient = createHttpClient(); - const version = getCacheVersion(paths, options === null || options === void 0 ? void 0 : options.compressionMethod); + const version = utils.getCacheVersion(paths, options === null || options === void 0 ? void 0 : options.compressionMethod, options === null || options === void 0 ? void 0 : options.enableCrossOsArchive); const resource = `cache?keys=${encodeURIComponent(keys.join(','))}&version=${version}`; - const response = yield requestUtils_1.retryTypedResponse('getCacheEntry', () => __awaiter(this, void 0, void 0, function* () { return httpClient.getJson(getCacheApiUrl(resource)); })); + const response = yield (0, requestUtils_1.retryTypedResponse)('getCacheEntry', () => __awaiter(this, void 0, void 0, function* () { return httpClient.getJson(getCacheApiUrl(resource)); })); + // Cache not found if (response.statusCode === 204) { + // List cache for primary key only if cache miss occurs + if (core.isDebug()) { + yield printCachesListForDiagnostics(keys[0], httpClient, version); + } return null; } - if (!requestUtils_1.isSuccessStatusCode(response.statusCode)) { + if (!(0, requestUtils_1.isSuccessStatusCode)(response.statusCode)) { throw new Error(`Cache service responded with ${response.statusCode}`); } const cacheResult = response.result; const cacheDownloadUrl = cacheResult === null || cacheResult === void 0 ? void 0 : cacheResult.archiveLocation; if (!cacheDownloadUrl) { + // Cache achiveLocation not found. This should never happen, and hence bail out. throw new Error('Cache not found.'); } core.setSecret(cacheDownloadUrl); @@ -312,40 +1280,61 @@ function getCacheEntry(keys, paths, options) { return cacheResult; }); } -exports.getCacheEntry = getCacheEntry; +function printCachesListForDiagnostics(key, httpClient, version) { + return __awaiter(this, void 0, void 0, function* () { + const resource = `caches?key=${encodeURIComponent(key)}`; + const response = yield (0, requestUtils_1.retryTypedResponse)('listCache', () => __awaiter(this, void 0, void 0, function* () { return httpClient.getJson(getCacheApiUrl(resource)); })); + if (response.statusCode === 200) { + const cacheListResult = response.result; + const totalCount = cacheListResult === null || cacheListResult === void 0 ? void 0 : cacheListResult.totalCount; + if (totalCount && totalCount > 0) { + core.debug(`No matching cache found for cache key '${key}', version '${version} and scope ${process.env['GITHUB_REF']}. There exist one or more cache(s) with similar key but they have different version or scope. See more info on cache matching here: https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#matching-a-cache-key \nOther caches with similar key:`); + for (const cacheEntry of (cacheListResult === null || cacheListResult === void 0 ? void 0 : cacheListResult.artifactCaches) || []) { + core.debug(`Cache Key: ${cacheEntry === null || cacheEntry === void 0 ? void 0 : cacheEntry.cacheKey}, Cache Version: ${cacheEntry === null || cacheEntry === void 0 ? void 0 : cacheEntry.cacheVersion}, Cache Scope: ${cacheEntry === null || cacheEntry === void 0 ? void 0 : cacheEntry.scope}, Cache Created: ${cacheEntry === null || cacheEntry === void 0 ? void 0 : cacheEntry.creationTime}`); + } + } + } + }); +} function downloadCache(archiveLocation, archivePath, options) { return __awaiter(this, void 0, void 0, function* () { const archiveUrl = new url_1.URL(archiveLocation); - const downloadOptions = options_1.getDownloadOptions(options); - if (downloadOptions.useAzureSdk && - archiveUrl.hostname.endsWith('.blob.core.windows.net')) { - // Use Azure storage SDK to download caches hosted on Azure to improve speed and reliability. - yield downloadUtils_1.downloadCacheStorageSDK(archiveLocation, archivePath, downloadOptions); + const downloadOptions = (0, options_1.getDownloadOptions)(options); + if (archiveUrl.hostname.endsWith('.blob.core.windows.net')) { + if (downloadOptions.useAzureSdk) { + // Use Azure storage SDK to download caches hosted on Azure to improve speed and reliability. + yield (0, downloadUtils_1.downloadCacheStorageSDK)(archiveLocation, archivePath, downloadOptions); + } + else if (downloadOptions.concurrentBlobDownloads) { + // Use concurrent implementation with HttpClient to work around blob SDK issue + yield (0, downloadUtils_1.downloadCacheHttpClientConcurrent)(archiveLocation, archivePath, downloadOptions); + } + else { + // Otherwise, download using the Actions http-client. + yield (0, downloadUtils_1.downloadCacheHttpClient)(archiveLocation, archivePath); + } } else { - // Otherwise, download using the Actions http-client. - yield downloadUtils_1.downloadCacheHttpClient(archiveLocation, archivePath); + yield (0, downloadUtils_1.downloadCacheHttpClient)(archiveLocation, archivePath); } }); } -exports.downloadCache = downloadCache; // Reserve Cache function reserveCache(key, paths, options) { return __awaiter(this, void 0, void 0, function* () { const httpClient = createHttpClient(); - const version = getCacheVersion(paths, options === null || options === void 0 ? void 0 : options.compressionMethod); + const version = utils.getCacheVersion(paths, options === null || options === void 0 ? void 0 : options.compressionMethod, options === null || options === void 0 ? void 0 : options.enableCrossOsArchive); const reserveCacheRequest = { key, version, cacheSize: options === null || options === void 0 ? void 0 : options.cacheSize }; - const response = yield requestUtils_1.retryTypedResponse('reserveCache', () => __awaiter(this, void 0, void 0, function* () { + const response = yield (0, requestUtils_1.retryTypedResponse)('reserveCache', () => __awaiter(this, void 0, void 0, function* () { return httpClient.postJson(getCacheApiUrl('caches'), reserveCacheRequest); })); return response; }); } -exports.reserveCache = reserveCache; function getContentRange(start, end) { // Format: `bytes start-end/filesize // start and end are inclusive @@ -356,17 +1345,15 @@ function getContentRange(start, end) { } function uploadChunk(httpClient, resourceUrl, openStream, start, end) { return __awaiter(this, void 0, void 0, function* () { - core.debug(`Uploading chunk of size ${end - - start + - 1} bytes at offset ${start} with content range: ${getContentRange(start, end)}`); + core.debug(`Uploading chunk of size ${end - start + 1} bytes at offset ${start} with content range: ${getContentRange(start, end)}`); const additionalHeaders = { 'Content-Type': 'application/octet-stream', 'Content-Range': getContentRange(start, end) }; - const uploadChunkResponse = yield requestUtils_1.retryHttpClientResponse(`uploadChunk (start: ${start}, end: ${end})`, () => __awaiter(this, void 0, void 0, function* () { + const uploadChunkResponse = yield (0, requestUtils_1.retryHttpClientResponse)(`uploadChunk (start: ${start}, end: ${end})`, () => __awaiter(this, void 0, void 0, function* () { return httpClient.sendStream('PATCH', resourceUrl, openStream(), additionalHeaders); })); - if (!requestUtils_1.isSuccessStatusCode(uploadChunkResponse.message.statusCode)) { + if (!(0, requestUtils_1.isSuccessStatusCode)(uploadChunkResponse.message.statusCode)) { throw new Error(`Cache service responded with ${uploadChunkResponse.message.statusCode} during upload chunk.`); } }); @@ -377,7 +1364,7 @@ function uploadFile(httpClient, cacheId, archivePath, options) { const fileSize = utils.getArchiveFileSizeInBytes(archivePath); const resourceUrl = getCacheApiUrl(`caches/${cacheId.toString()}`); const fd = fs.openSync(archivePath, 'r'); - const uploadOptions = options_1.getUploadOptions(options); + const uploadOptions = (0, options_1.getUploadOptions)(options); const concurrency = utils.assertDefined('uploadConcurrency', uploadOptions.uploadConcurrency); const maxChunkSize = utils.assertDefined('uploadChunkSize', uploadOptions.uploadChunkSize); const parallelUploads = [...new Array(concurrency).keys()]; @@ -412,37 +1399,79 @@ function uploadFile(httpClient, cacheId, archivePath, options) { function commitCache(httpClient, cacheId, filesize) { return __awaiter(this, void 0, void 0, function* () { const commitCacheRequest = { size: filesize }; - return yield requestUtils_1.retryTypedResponse('commitCache', () => __awaiter(this, void 0, void 0, function* () { + return yield (0, requestUtils_1.retryTypedResponse)('commitCache', () => __awaiter(this, void 0, void 0, function* () { return httpClient.postJson(getCacheApiUrl(`caches/${cacheId.toString()}`), commitCacheRequest); })); }); } -function saveCache(cacheId, archivePath, options) { +function saveCache(cacheId, archivePath, signedUploadURL, options) { return __awaiter(this, void 0, void 0, function* () { - const httpClient = createHttpClient(); - core.debug('Upload cache'); - yield uploadFile(httpClient, cacheId, archivePath, options); - // Commit Cache - core.debug('Commiting cache'); - const cacheSize = utils.getArchiveFileSizeInBytes(archivePath); - core.info(`Cache Size: ~${Math.round(cacheSize / (1024 * 1024))} MB (${cacheSize} B)`); - const commitCacheResponse = yield commitCache(httpClient, cacheId, cacheSize); - if (!requestUtils_1.isSuccessStatusCode(commitCacheResponse.statusCode)) { - throw new Error(`Cache service responded with ${commitCacheResponse.statusCode} during commit cache.`); - } - core.info('Cache saved successfully'); + const uploadOptions = (0, options_1.getUploadOptions)(options); + if (uploadOptions.useAzureSdk) { + // Use Azure storage SDK to upload caches directly to Azure + if (!signedUploadURL) { + throw new Error('Azure Storage SDK can only be used when a signed URL is provided.'); + } + yield (0, uploadUtils_1.uploadCacheArchiveSDK)(signedUploadURL, archivePath, options); + } + else { + const httpClient = createHttpClient(); + core.debug('Upload cache'); + yield uploadFile(httpClient, cacheId, archivePath, options); + // Commit Cache + core.debug('Commiting cache'); + const cacheSize = utils.getArchiveFileSizeInBytes(archivePath); + core.info(`Cache Size: ~${Math.round(cacheSize / (1024 * 1024))} MB (${cacheSize} B)`); + const commitCacheResponse = yield commitCache(httpClient, cacheId, cacheSize); + if (!(0, requestUtils_1.isSuccessStatusCode)(commitCacheResponse.statusCode)) { + throw new Error(`Cache service responded with ${commitCacheResponse.statusCode} during commit cache.`); + } + core.info('Cache saved successfully'); + } }); } -exports.saveCache = saveCache; //# sourceMappingURL=cacheHttpClient.js.map /***/ }), -/***/ 1518: +/***/ 91518: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { @@ -459,24 +1488,28 @@ var __asyncValues = (this && this.__asyncValues) || function (o) { function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } }; -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; -}; Object.defineProperty(exports, "__esModule", ({ value: true })); -const core = __importStar(__nccwpck_require__(2186)); -const exec = __importStar(__nccwpck_require__(1514)); -const glob = __importStar(__nccwpck_require__(1597)); -const io = __importStar(__nccwpck_require__(7436)); -const fs = __importStar(__nccwpck_require__(7147)); -const path = __importStar(__nccwpck_require__(1017)); +exports.createTempDirectory = createTempDirectory; +exports.getArchiveFileSizeInBytes = getArchiveFileSizeInBytes; +exports.resolvePaths = resolvePaths; +exports.unlinkFile = unlinkFile; +exports.getCompressionMethod = getCompressionMethod; +exports.getCacheFileName = getCacheFileName; +exports.getGnuTarPathOnWindows = getGnuTarPathOnWindows; +exports.assertDefined = assertDefined; +exports.getCacheVersion = getCacheVersion; +exports.getRuntimeToken = getRuntimeToken; +const core = __importStar(__nccwpck_require__(42186)); +const exec = __importStar(__nccwpck_require__(71514)); +const glob = __importStar(__nccwpck_require__(28090)); +const io = __importStar(__nccwpck_require__(47351)); +const crypto = __importStar(__nccwpck_require__(6113)); +const fs = __importStar(__nccwpck_require__(57147)); +const path = __importStar(__nccwpck_require__(71017)); const semver = __importStar(__nccwpck_require__(3771)); -const util = __importStar(__nccwpck_require__(3837)); -const uuid_1 = __nccwpck_require__(2155); -const constants_1 = __nccwpck_require__(8840); +const util = __importStar(__nccwpck_require__(73837)); +const constants_1 = __nccwpck_require__(88840); +const versionSalt = '1.0'; // From https://github.com/actions/toolkit/blob/main/packages/tool-cache/src/tool-cache.ts#L23 function createTempDirectory() { return __awaiter(this, void 0, void 0, function* () { @@ -498,59 +1531,64 @@ function createTempDirectory() { } tempDirectory = path.join(baseLocation, 'actions', 'temp'); } - const dest = path.join(tempDirectory, uuid_1.v4()); + const dest = path.join(tempDirectory, crypto.randomUUID()); yield io.mkdirP(dest); return dest; }); } -exports.createTempDirectory = createTempDirectory; function getArchiveFileSizeInBytes(filePath) { return fs.statSync(filePath).size; } -exports.getArchiveFileSizeInBytes = getArchiveFileSizeInBytes; function resolvePaths(patterns) { - var e_1, _a; - var _b; return __awaiter(this, void 0, void 0, function* () { + var _a, e_1, _b, _c; + var _d; const paths = []; - const workspace = (_b = process.env['GITHUB_WORKSPACE']) !== null && _b !== void 0 ? _b : process.cwd(); + const workspace = (_d = process.env['GITHUB_WORKSPACE']) !== null && _d !== void 0 ? _d : process.cwd(); const globber = yield glob.create(patterns.join('\n'), { implicitDescendants: false }); try { - for (var _c = __asyncValues(globber.globGenerator()), _d; _d = yield _c.next(), !_d.done;) { - const file = _d.value; + for (var _e = true, _f = __asyncValues(globber.globGenerator()), _g; _g = yield _f.next(), _a = _g.done, !_a; _e = true) { + _c = _g.value; + _e = false; + const file = _c; const relativeFile = path .relative(workspace, file) .replace(new RegExp(`\\${path.sep}`, 'g'), '/'); core.debug(`Matched: ${relativeFile}`); // Paths are made relative so the tar entries are all relative to the root of the workspace. - paths.push(`${relativeFile}`); + if (relativeFile === '') { + // path.relative returns empty string if workspace and file are equal + paths.push('.'); + } + else { + paths.push(`${relativeFile}`); + } } } catch (e_1_1) { e_1 = { error: e_1_1 }; } finally { try { - if (_d && !_d.done && (_a = _c.return)) yield _a.call(_c); + if (!_e && !_a && (_b = _f.return)) yield _b.call(_f); } finally { if (e_1) throw e_1.error; } } return paths; }); } -exports.resolvePaths = resolvePaths; function unlinkFile(filePath) { return __awaiter(this, void 0, void 0, function* () { return util.promisify(fs.unlink)(filePath); }); } -exports.unlinkFile = unlinkFile; -function getVersion(app) { - return __awaiter(this, void 0, void 0, function* () { - core.debug(`Checking ${app} --version`); +function getVersion(app_1) { + return __awaiter(this, arguments, void 0, function* (app, additionalArgs = []) { let versionOutput = ''; + additionalArgs.push('--version'); + core.debug(`Checking ${app} ${additionalArgs.join(' ')}`); try { - yield exec.exec(`${app} --version`, [], { + yield exec.exec(`${app}`, additionalArgs, { ignoreReturnCode: true, silent: true, listeners: { @@ -570,67 +1608,119 @@ function getVersion(app) { // Use zstandard if possible to maximize cache performance function getCompressionMethod() { return __awaiter(this, void 0, void 0, function* () { - if (process.platform === 'win32' && !(yield isGnuTarInstalled())) { - // Disable zstd due to bug https://github.com/actions/cache/issues/301 - return constants_1.CompressionMethod.Gzip; - } - const versionOutput = yield getVersion('zstd'); + const versionOutput = yield getVersion('zstd', ['--quiet']); const version = semver.clean(versionOutput); - if (!versionOutput.toLowerCase().includes('zstd command line interface')) { - // zstd is not installed + core.debug(`zstd version: ${version}`); + if (versionOutput === '') { return constants_1.CompressionMethod.Gzip; } - else if (!version || semver.lt(version, 'v1.3.2')) { - // zstd is installed but using a version earlier than v1.3.2 - // v1.3.2 is required to use the `--long` options in zstd - return constants_1.CompressionMethod.ZstdWithoutLong; - } else { - return constants_1.CompressionMethod.Zstd; + return constants_1.CompressionMethod.ZstdWithoutLong; } }); } -exports.getCompressionMethod = getCompressionMethod; function getCacheFileName(compressionMethod) { return compressionMethod === constants_1.CompressionMethod.Gzip ? constants_1.CacheFilename.Gzip : constants_1.CacheFilename.Zstd; } -exports.getCacheFileName = getCacheFileName; -function isGnuTarInstalled() { +function getGnuTarPathOnWindows() { return __awaiter(this, void 0, void 0, function* () { + if (fs.existsSync(constants_1.GnuTarPathOnWindows)) { + return constants_1.GnuTarPathOnWindows; + } const versionOutput = yield getVersion('tar'); - return versionOutput.toLowerCase().includes('gnu tar'); + return versionOutput.toLowerCase().includes('gnu tar') ? io.which('tar') : ''; }); } -exports.isGnuTarInstalled = isGnuTarInstalled; function assertDefined(name, value) { if (value === undefined) { throw Error(`Expected ${name} but value was undefiend`); } return value; } -exports.assertDefined = assertDefined; +function getCacheVersion(paths, compressionMethod, enableCrossOsArchive = false) { + // don't pass changes upstream + const components = paths.slice(); + // Add compression method to cache version to restore + // compressed cache as per compression method + if (compressionMethod) { + components.push(compressionMethod); + } + // Only check for windows platforms if enableCrossOsArchive is false + if (process.platform === 'win32' && !enableCrossOsArchive) { + components.push('windows-only'); + } + // Add salt to cache version to support breaking changes in cache entry + components.push(versionSalt); + return crypto.createHash('sha256').update(components.join('|')).digest('hex'); +} +function getRuntimeToken() { + const token = process.env['ACTIONS_RUNTIME_TOKEN']; + if (!token) { + throw new Error('Unable to get the ACTIONS_RUNTIME_TOKEN env variable'); + } + return token; +} +//# sourceMappingURL=cacheUtils.js.map + +/***/ }), + +/***/ 35147: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.isGhes = isGhes; +exports.getCacheServiceVersion = getCacheServiceVersion; +exports.getCacheServiceURL = getCacheServiceURL; function isGhes() { const ghUrl = new URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com'); - return ghUrl.hostname.toUpperCase() !== 'GITHUB.COM'; + const hostname = ghUrl.hostname.trimEnd().toUpperCase(); + const isGitHubHost = hostname === 'GITHUB.COM'; + const isGheHost = hostname.endsWith('.GHE.COM'); + const isLocalHost = hostname.endsWith('.LOCALHOST'); + return !isGitHubHost && !isGheHost && !isLocalHost; +} +function getCacheServiceVersion() { + // Cache service v2 is not supported on GHES. We will default to + // cache service v1 even if the feature flag was enabled by user. + if (isGhes()) + return 'v1'; + return process.env['ACTIONS_CACHE_SERVICE_V2'] ? 'v2' : 'v1'; +} +function getCacheServiceURL() { + const version = getCacheServiceVersion(); + // Based on the version of the cache service, we will determine which + // URL to use. + switch (version) { + case 'v1': + return (process.env['ACTIONS_CACHE_URL'] || + process.env['ACTIONS_RESULTS_URL'] || + ''); + case 'v2': + return process.env['ACTIONS_RESULTS_URL'] || ''; + default: + throw new Error(`Unsupported cache service version: ${version}`); + } } -exports.isGhes = isGhes; -//# sourceMappingURL=cacheUtils.js.map +//# sourceMappingURL=config.js.map /***/ }), -/***/ 8840: +/***/ 88840: /***/ ((__unused_webpack_module, exports) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.CacheFileSizeLimit = exports.ManifestFilename = exports.TarFilename = exports.SystemTarPathOnWindows = exports.GnuTarPathOnWindows = exports.SocketTimeout = exports.DefaultRetryDelay = exports.DefaultRetryAttempts = exports.ArchiveToolType = exports.CompressionMethod = exports.CacheFilename = void 0; var CacheFilename; (function (CacheFilename) { CacheFilename["Gzip"] = "cache.tgz"; CacheFilename["Zstd"] = "cache.tzst"; -})(CacheFilename = exports.CacheFilename || (exports.CacheFilename = {})); +})(CacheFilename || (exports.CacheFilename = CacheFilename = {})); var CompressionMethod; (function (CompressionMethod) { CompressionMethod["Gzip"] = "gzip"; @@ -638,7 +1728,12 @@ var CompressionMethod; // This enum is for earlier version of zstd that does not have --long support CompressionMethod["ZstdWithoutLong"] = "zstd-without-long"; CompressionMethod["Zstd"] = "zstd"; -})(CompressionMethod = exports.CompressionMethod || (exports.CompressionMethod = {})); +})(CompressionMethod || (exports.CompressionMethod = CompressionMethod = {})); +var ArchiveToolType; +(function (ArchiveToolType) { + ArchiveToolType["GNU"] = "gnu"; + ArchiveToolType["BSD"] = "bsd"; +})(ArchiveToolType || (exports.ArchiveToolType = ArchiveToolType = {})); // The default number of retry attempts. exports.DefaultRetryAttempts = 2; // The default delay in milliseconds between retry attempts. @@ -647,15 +1742,55 @@ exports.DefaultRetryDelay = 5000; // over the socket during this period, the socket is destroyed and the download // is aborted. exports.SocketTimeout = 5000; +// The default path of GNUtar on hosted Windows runners +exports.GnuTarPathOnWindows = `${process.env['PROGRAMFILES']}\\Git\\usr\\bin\\tar.exe`; +// The default path of BSDtar on hosted Windows runners +exports.SystemTarPathOnWindows = `${process.env['SYSTEMDRIVE']}\\Windows\\System32\\tar.exe`; +exports.TarFilename = 'cache.tar'; +exports.ManifestFilename = 'manifest.txt'; +exports.CacheFileSizeLimit = 10 * Math.pow(1024, 3); // 10GiB per repository //# sourceMappingURL=constants.js.map /***/ }), -/***/ 5500: +/***/ 55500: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { @@ -665,24 +1800,22 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; -}; Object.defineProperty(exports, "__esModule", ({ value: true })); -const core = __importStar(__nccwpck_require__(2186)); -const http_client_1 = __nccwpck_require__(1825); -const storage_blob_1 = __nccwpck_require__(4100); -const buffer = __importStar(__nccwpck_require__(4300)); -const fs = __importStar(__nccwpck_require__(7147)); -const stream = __importStar(__nccwpck_require__(2781)); -const util = __importStar(__nccwpck_require__(3837)); -const utils = __importStar(__nccwpck_require__(1518)); -const constants_1 = __nccwpck_require__(8840); -const requestUtils_1 = __nccwpck_require__(3981); +exports.DownloadProgress = void 0; +exports.downloadCacheHttpClient = downloadCacheHttpClient; +exports.downloadCacheHttpClientConcurrent = downloadCacheHttpClientConcurrent; +exports.downloadCacheStorageSDK = downloadCacheStorageSDK; +const core = __importStar(__nccwpck_require__(42186)); +const http_client_1 = __nccwpck_require__(96255); +const storage_blob_1 = __nccwpck_require__(37168); +const buffer = __importStar(__nccwpck_require__(14300)); +const fs = __importStar(__nccwpck_require__(57147)); +const stream = __importStar(__nccwpck_require__(12781)); +const util = __importStar(__nccwpck_require__(73837)); +const utils = __importStar(__nccwpck_require__(91518)); +const constants_1 = __nccwpck_require__(88840); +const requestUtils_1 = __nccwpck_require__(13981); +const abort_controller_1 = __nccwpck_require__(52557); /** * Pipes the body of a HTTP response to a stream * @@ -806,7 +1939,7 @@ function downloadCacheHttpClient(archiveLocation, archivePath) { return __awaiter(this, void 0, void 0, function* () { const writeStream = fs.createWriteStream(archivePath); const httpClient = new http_client_1.HttpClient('actions/cache'); - const downloadResponse = yield requestUtils_1.retryHttpClientResponse('downloadCache', () => __awaiter(this, void 0, void 0, function* () { return httpClient.get(archiveLocation); })); + const downloadResponse = yield (0, requestUtils_1.retryHttpClientResponse)('downloadCache', () => __awaiter(this, void 0, void 0, function* () { return httpClient.get(archiveLocation); })); // Abort download if no traffic received over the socket. downloadResponse.message.socket.setTimeout(constants_1.SocketTimeout, () => { downloadResponse.message.destroy(); @@ -827,7 +1960,114 @@ function downloadCacheHttpClient(archiveLocation, archivePath) { } }); } -exports.downloadCacheHttpClient = downloadCacheHttpClient; +/** + * Download the cache using the Actions toolkit http-client concurrently + * + * @param archiveLocation the URL for the cache + * @param archivePath the local path where the cache is saved + */ +function downloadCacheHttpClientConcurrent(archiveLocation, archivePath, options) { + return __awaiter(this, void 0, void 0, function* () { + var _a; + const archiveDescriptor = yield fs.promises.open(archivePath, 'w'); + const httpClient = new http_client_1.HttpClient('actions/cache', undefined, { + socketTimeout: options.timeoutInMs, + keepAlive: true + }); + try { + const res = yield (0, requestUtils_1.retryHttpClientResponse)('downloadCacheMetadata', () => __awaiter(this, void 0, void 0, function* () { return yield httpClient.request('HEAD', archiveLocation, null, {}); })); + const lengthHeader = res.message.headers['content-length']; + if (lengthHeader === undefined || lengthHeader === null) { + throw new Error('Content-Length not found on blob response'); + } + const length = parseInt(lengthHeader); + if (Number.isNaN(length)) { + throw new Error(`Could not interpret Content-Length: ${length}`); + } + const downloads = []; + const blockSize = 4 * 1024 * 1024; + for (let offset = 0; offset < length; offset += blockSize) { + const count = Math.min(blockSize, length - offset); + downloads.push({ + offset, + promiseGetter: () => __awaiter(this, void 0, void 0, function* () { + return yield downloadSegmentRetry(httpClient, archiveLocation, offset, count); + }) + }); + } + // reverse to use .pop instead of .shift + downloads.reverse(); + let actives = 0; + let bytesDownloaded = 0; + const progress = new DownloadProgress(length); + progress.startDisplayTimer(); + const progressFn = progress.onProgress(); + const activeDownloads = []; + let nextDownload; + const waitAndWrite = () => __awaiter(this, void 0, void 0, function* () { + const segment = yield Promise.race(Object.values(activeDownloads)); + yield archiveDescriptor.write(segment.buffer, 0, segment.count, segment.offset); + actives--; + delete activeDownloads[segment.offset]; + bytesDownloaded += segment.count; + progressFn({ loadedBytes: bytesDownloaded }); + }); + while ((nextDownload = downloads.pop())) { + activeDownloads[nextDownload.offset] = nextDownload.promiseGetter(); + actives++; + if (actives >= ((_a = options.downloadConcurrency) !== null && _a !== void 0 ? _a : 10)) { + yield waitAndWrite(); + } + } + while (actives > 0) { + yield waitAndWrite(); + } + } + finally { + httpClient.dispose(); + yield archiveDescriptor.close(); + } + }); +} +function downloadSegmentRetry(httpClient, archiveLocation, offset, count) { + return __awaiter(this, void 0, void 0, function* () { + const retries = 5; + let failures = 0; + while (true) { + try { + const timeout = 30000; + const result = yield promiseWithTimeout(timeout, downloadSegment(httpClient, archiveLocation, offset, count)); + if (typeof result === 'string') { + throw new Error('downloadSegmentRetry failed due to timeout'); + } + return result; + } + catch (err) { + if (failures >= retries) { + throw err; + } + failures++; + } + } + }); +} +function downloadSegment(httpClient, archiveLocation, offset, count) { + return __awaiter(this, void 0, void 0, function* () { + const partRes = yield (0, requestUtils_1.retryHttpClientResponse)('downloadCachePart', () => __awaiter(this, void 0, void 0, function* () { + return yield httpClient.get(archiveLocation, { + Range: `bytes=${offset}-${offset + count - 1}` + }); + })); + if (!partRes.readBodyBuffer) { + throw new Error('Expected HttpClientResponse to implement readBodyBuffer'); + } + return { + offset, + count, + buffer: yield partRes.readBodyBuffer() + }; + }); +} /** * Download the cache using the Azure Storage SDK. Only call this method if the * URL points to an Azure Storage endpoint. @@ -837,8 +2077,8 @@ exports.downloadCacheHttpClient = downloadCacheHttpClient; * @param options the download options with the defaults set */ function downloadCacheStorageSDK(archiveLocation, archivePath, options) { - var _a; return __awaiter(this, void 0, void 0, function* () { + var _a; const client = new storage_blob_1.BlockBlobClient(archiveLocation, undefined, { retryOptions: { // Override the timeout used when downloading each 4 MB chunk @@ -861,20 +2101,30 @@ function downloadCacheStorageSDK(archiveLocation, archivePath, options) { // If the file exceeds the buffer maximum length (~1 GB on 32-bit systems and ~2 GB // on 64-bit systems), split the download into multiple segments // ~2 GB = 2147483647, beyond this, we start getting out of range error. So, capping it accordingly. - const maxSegmentSize = Math.min(2147483647, buffer.constants.MAX_LENGTH); + // Updated segment size to 128MB = 134217728 bytes, to complete a segment faster and fail fast + const maxSegmentSize = Math.min(134217728, buffer.constants.MAX_LENGTH); const downloadProgress = new DownloadProgress(contentLength); const fd = fs.openSync(archivePath, 'w'); try { downloadProgress.startDisplayTimer(); + const controller = new abort_controller_1.AbortController(); + const abortSignal = controller.signal; while (!downloadProgress.isDone()) { const segmentStart = downloadProgress.segmentOffset + downloadProgress.segmentSize; const segmentSize = Math.min(maxSegmentSize, contentLength - segmentStart); downloadProgress.nextSegment(segmentSize); - const result = yield client.downloadToBuffer(segmentStart, segmentSize, { + const result = yield promiseWithTimeout(options.segmentTimeoutInMs || 3600000, client.downloadToBuffer(segmentStart, segmentSize, { + abortSignal, concurrency: options.downloadConcurrency, onProgress: downloadProgress.onProgress() - }); - fs.writeFileSync(fd, result); + })); + if (result === 'timeout') { + controller.abort(); + throw new Error('Aborting cache download as the download time exceeded the timeout.'); + } + else if (Buffer.isBuffer(result)) { + fs.writeFileSync(fd, result); + } } } finally { @@ -884,50 +2134,89 @@ function downloadCacheStorageSDK(archiveLocation, archivePath, options) { } }); } -exports.downloadCacheStorageSDK = downloadCacheStorageSDK; +const promiseWithTimeout = (timeoutMs, promise) => __awaiter(void 0, void 0, void 0, function* () { + let timeoutHandle; + const timeoutPromise = new Promise(resolve => { + timeoutHandle = setTimeout(() => resolve('timeout'), timeoutMs); + }); + return Promise.race([promise, timeoutPromise]).then(result => { + clearTimeout(timeoutHandle); + return result; + }); +}); //# sourceMappingURL=downloadUtils.js.map /***/ }), -/***/ 3981: +/***/ 13981: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; -}; Object.defineProperty(exports, "__esModule", ({ value: true })); -const core = __importStar(__nccwpck_require__(2186)); -const http_client_1 = __nccwpck_require__(1825); -const constants_1 = __nccwpck_require__(8840); +exports.isSuccessStatusCode = isSuccessStatusCode; +exports.isServerErrorStatusCode = isServerErrorStatusCode; +exports.isRetryableStatusCode = isRetryableStatusCode; +exports.retry = retry; +exports.retryTypedResponse = retryTypedResponse; +exports.retryHttpClientResponse = retryHttpClientResponse; +const core = __importStar(__nccwpck_require__(42186)); +const http_client_1 = __nccwpck_require__(96255); +const constants_1 = __nccwpck_require__(88840); function isSuccessStatusCode(statusCode) { if (!statusCode) { return false; } return statusCode >= 200 && statusCode < 300; } -exports.isSuccessStatusCode = isSuccessStatusCode; function isServerErrorStatusCode(statusCode) { if (!statusCode) { return true; } return statusCode >= 500; } -exports.isServerErrorStatusCode = isServerErrorStatusCode; function isRetryableStatusCode(statusCode) { if (!statusCode) { return false; @@ -939,14 +2228,13 @@ function isRetryableStatusCode(statusCode) { ]; return retryableStatusCodes.includes(statusCode); } -exports.isRetryableStatusCode = isRetryableStatusCode; function sleep(milliseconds) { return __awaiter(this, void 0, void 0, function* () { return new Promise(resolve => setTimeout(resolve, milliseconds)); }); } -function retry(name, method, getStatusCode, maxAttempts = constants_1.DefaultRetryAttempts, delay = constants_1.DefaultRetryDelay, onError = undefined) { - return __awaiter(this, void 0, void 0, function* () { +function retry(name_1, method_1, getStatusCode_1) { + return __awaiter(this, arguments, void 0, function* (name, method, getStatusCode, maxAttempts = constants_1.DefaultRetryAttempts, delay = constants_1.DefaultRetryDelay, onError = undefined) { let errorMessage = ''; let attempt = 1; while (attempt <= maxAttempts) { @@ -984,9 +2272,8 @@ function retry(name, method, getStatusCode, maxAttempts = constants_1.DefaultRet throw Error(`${name} failed: ${errorMessage}`); }); } -exports.retry = retry; -function retryTypedResponse(name, method, maxAttempts = constants_1.DefaultRetryAttempts, delay = constants_1.DefaultRetryDelay) { - return __awaiter(this, void 0, void 0, function* () { +function retryTypedResponse(name_1, method_1) { + return __awaiter(this, arguments, void 0, function* (name, method, maxAttempts = constants_1.DefaultRetryAttempts, delay = constants_1.DefaultRetryDelay) { return yield retry(name, method, (response) => response.statusCode, maxAttempts, delay, // If the error object contains the statusCode property, extract it and return // an TypedResponse so it can be processed by the retry logic. @@ -1005,18 +2292,16 @@ function retryTypedResponse(name, method, maxAttempts = constants_1.DefaultRetry }); }); } -exports.retryTypedResponse = retryTypedResponse; -function retryHttpClientResponse(name, method, maxAttempts = constants_1.DefaultRetryAttempts, delay = constants_1.DefaultRetryDelay) { - return __awaiter(this, void 0, void 0, function* () { +function retryHttpClientResponse(name_1, method_1) { + return __awaiter(this, arguments, void 0, function* (name, method, maxAttempts = constants_1.DefaultRetryAttempts, delay = constants_1.DefaultRetryDelay) { return yield retry(name, method, (response) => response.message.statusCode, maxAttempts, delay); }); } -exports.retryHttpClientResponse = retryHttpClientResponse; //# sourceMappingURL=requestUtils.js.map /***/ }), -/***/ 6490: +/***/ 82502: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1030,35 +2315,428 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.internalCacheTwirpClient = internalCacheTwirpClient; +const core_1 = __nccwpck_require__(42186); +const user_agent_1 = __nccwpck_require__(580); +const errors_1 = __nccwpck_require__(18223); +const config_1 = __nccwpck_require__(35147); +const cacheUtils_1 = __nccwpck_require__(91518); +const auth_1 = __nccwpck_require__(35526); +const http_client_1 = __nccwpck_require__(96255); +const cache_twirp_client_1 = __nccwpck_require__(42655); +const util_1 = __nccwpck_require__(61953); +/** + * This class is a wrapper around the CacheServiceClientJSON class generated by Twirp. + * + * It adds retry logic to the request method, which is not present in the generated client. + * + * This class is used to interact with cache service v2. + */ +class CacheServiceClient { + constructor(userAgent, maxAttempts, baseRetryIntervalMilliseconds, retryMultiplier) { + this.maxAttempts = 5; + this.baseRetryIntervalMilliseconds = 3000; + this.retryMultiplier = 1.5; + const token = (0, cacheUtils_1.getRuntimeToken)(); + this.baseUrl = (0, config_1.getCacheServiceURL)(); + if (maxAttempts) { + this.maxAttempts = maxAttempts; + } + if (baseRetryIntervalMilliseconds) { + this.baseRetryIntervalMilliseconds = baseRetryIntervalMilliseconds; + } + if (retryMultiplier) { + this.retryMultiplier = retryMultiplier; + } + this.httpClient = new http_client_1.HttpClient(userAgent, [ + new auth_1.BearerCredentialHandler(token) + ]); + } + // This function satisfies the Rpc interface. It is compatible with the JSON + // JSON generated client. + request(service, method, contentType, data) { + return __awaiter(this, void 0, void 0, function* () { + const url = new URL(`/twirp/${service}/${method}`, this.baseUrl).href; + (0, core_1.debug)(`[Request] ${method} ${url}`); + const headers = { + 'Content-Type': contentType + }; + try { + const { body } = yield this.retryableRequest(() => __awaiter(this, void 0, void 0, function* () { return this.httpClient.post(url, JSON.stringify(data), headers); })); + return body; + } + catch (error) { + throw new Error(`Failed to ${method}: ${error.message}`); + } + }); + } + retryableRequest(operation) { + return __awaiter(this, void 0, void 0, function* () { + let attempt = 0; + let errorMessage = ''; + let rawBody = ''; + while (attempt < this.maxAttempts) { + let isRetryable = false; + try { + const response = yield operation(); + const statusCode = response.message.statusCode; + rawBody = yield response.readBody(); + (0, core_1.debug)(`[Response] - ${response.message.statusCode}`); + (0, core_1.debug)(`Headers: ${JSON.stringify(response.message.headers, null, 2)}`); + const body = JSON.parse(rawBody); + (0, util_1.maskSecretUrls)(body); + (0, core_1.debug)(`Body: ${JSON.stringify(body, null, 2)}`); + if (this.isSuccessStatusCode(statusCode)) { + return { response, body }; + } + isRetryable = this.isRetryableHttpStatusCode(statusCode); + errorMessage = `Failed request: (${statusCode}) ${response.message.statusMessage}`; + if (body.msg) { + if (errors_1.UsageError.isUsageErrorMessage(body.msg)) { + throw new errors_1.UsageError(); + } + errorMessage = `${errorMessage}: ${body.msg}`; + } + // Handle rate limiting - don't retry, just warn and exit + // For more info, see https://docs.github.com/en/actions/reference/limits + if (statusCode === http_client_1.HttpCodes.TooManyRequests) { + const retryAfterHeader = response.message.headers['retry-after']; + if (retryAfterHeader) { + const parsedSeconds = parseInt(retryAfterHeader, 10); + if (!isNaN(parsedSeconds) && parsedSeconds > 0) { + (0, core_1.warning)(`You've hit a rate limit, your rate limit will reset in ${parsedSeconds} seconds`); + } + } + throw new errors_1.RateLimitError(`Rate limited: ${errorMessage}`); + } + } + catch (error) { + if (error instanceof SyntaxError) { + (0, core_1.debug)(`Raw Body: ${rawBody}`); + } + if (error instanceof errors_1.UsageError) { + throw error; + } + if (error instanceof errors_1.RateLimitError) { + throw error; + } + if (errors_1.NetworkError.isNetworkErrorCode(error === null || error === void 0 ? void 0 : error.code)) { + throw new errors_1.NetworkError(error === null || error === void 0 ? void 0 : error.code); + } + isRetryable = true; + errorMessage = error.message; + } + if (!isRetryable) { + throw new Error(`Received non-retryable error: ${errorMessage}`); + } + if (attempt + 1 === this.maxAttempts) { + throw new Error(`Failed to make request after ${this.maxAttempts} attempts: ${errorMessage}`); + } + const retryTimeMilliseconds = this.getExponentialRetryTimeMilliseconds(attempt); + (0, core_1.info)(`Attempt ${attempt + 1} of ${this.maxAttempts} failed with error: ${errorMessage}. Retrying request in ${retryTimeMilliseconds} ms...`); + yield this.sleep(retryTimeMilliseconds); + attempt++; + } + throw new Error(`Request failed`); + }); + } + isSuccessStatusCode(statusCode) { + if (!statusCode) + return false; + return statusCode >= 200 && statusCode < 300; + } + isRetryableHttpStatusCode(statusCode) { + if (!statusCode) + return false; + const retryableStatusCodes = [ + http_client_1.HttpCodes.BadGateway, + http_client_1.HttpCodes.GatewayTimeout, + http_client_1.HttpCodes.InternalServerError, + http_client_1.HttpCodes.ServiceUnavailable + ]; + return retryableStatusCodes.includes(statusCode); + } + sleep(milliseconds) { + return __awaiter(this, void 0, void 0, function* () { + return new Promise(resolve => setTimeout(resolve, milliseconds)); + }); + } + getExponentialRetryTimeMilliseconds(attempt) { + if (attempt < 0) { + throw new Error('attempt should be a positive integer'); + } + if (attempt === 0) { + return this.baseRetryIntervalMilliseconds; + } + const minTime = this.baseRetryIntervalMilliseconds * Math.pow(this.retryMultiplier, attempt); + const maxTime = minTime * this.retryMultiplier; + // returns a random number between minTime and maxTime (exclusive) + return Math.trunc(Math.random() * (maxTime - minTime) + minTime); + } +} +function internalCacheTwirpClient(options) { + const client = new CacheServiceClient((0, user_agent_1.getUserAgentString)(), options === null || options === void 0 ? void 0 : options.maxAttempts, options === null || options === void 0 ? void 0 : options.retryIntervalMs, options === null || options === void 0 ? void 0 : options.retryMultiplier); + return new cache_twirp_client_1.CacheServiceClientJSON(client); +} +//# sourceMappingURL=cacheTwirpClient.js.map + +/***/ }), + +/***/ 18223: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.RateLimitError = exports.UsageError = exports.NetworkError = exports.GHESNotSupportedError = exports.CacheNotFoundError = exports.InvalidResponseError = exports.FilesNotFoundError = void 0; +class FilesNotFoundError extends Error { + constructor(files = []) { + let message = 'No files were found to upload'; + if (files.length > 0) { + message += `: ${files.join(', ')}`; + } + super(message); + this.files = files; + this.name = 'FilesNotFoundError'; + } +} +exports.FilesNotFoundError = FilesNotFoundError; +class InvalidResponseError extends Error { + constructor(message) { + super(message); + this.name = 'InvalidResponseError'; + } +} +exports.InvalidResponseError = InvalidResponseError; +class CacheNotFoundError extends Error { + constructor(message = 'Cache not found') { + super(message); + this.name = 'CacheNotFoundError'; + } +} +exports.CacheNotFoundError = CacheNotFoundError; +class GHESNotSupportedError extends Error { + constructor(message = '@actions/cache v4.1.4+, actions/cache/save@v4+ and actions/cache/restore@v4+ are not currently supported on GHES.') { + super(message); + this.name = 'GHESNotSupportedError'; + } +} +exports.GHESNotSupportedError = GHESNotSupportedError; +class NetworkError extends Error { + constructor(code) { + const message = `Unable to make request: ${code}\nIf you are using self-hosted runners, please make sure your runner has access to all GitHub endpoints: https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#communication-between-self-hosted-runners-and-github`; + super(message); + this.code = code; + this.name = 'NetworkError'; + } +} +exports.NetworkError = NetworkError; +NetworkError.isNetworkErrorCode = (code) => { + if (!code) + return false; + return [ + 'ECONNRESET', + 'ENOTFOUND', + 'ETIMEDOUT', + 'ECONNREFUSED', + 'EHOSTUNREACH' + ].includes(code); +}; +class UsageError extends Error { + constructor() { + const message = `Cache storage quota has been hit. Unable to upload any new cache entries. Usage is recalculated every 6-12 hours.\nMore info on storage limits: https://docs.github.com/en/billing/managing-billing-for-github-actions/about-billing-for-github-actions#calculating-minute-and-storage-spending`; + super(message); + this.name = 'UsageError'; + } +} +exports.UsageError = UsageError; +UsageError.isUsageErrorMessage = (msg) => { + if (!msg) + return false; + return msg.includes('insufficient usage'); +}; +class RateLimitError extends Error { + constructor(message) { + super(message); + this.name = 'RateLimitError'; + } +} +exports.RateLimitError = RateLimitError; +//# sourceMappingURL=errors.js.map + +/***/ }), + +/***/ 580: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getUserAgentString = getUserAgentString; +// eslint-disable-next-line @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports +const packageJson = __nccwpck_require__(49167); +/** + * Ensure that this User Agent String is used in all HTTP calls so that we can monitor telemetry between different versions of this package + */ +function getUserAgentString() { + return `@actions/cache-${packageJson.version}`; +} +//# sourceMappingURL=user-agent.js.map + +/***/ }), + +/***/ 61953: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.maskSigUrl = maskSigUrl; +exports.maskSecretUrls = maskSecretUrls; +const core_1 = __nccwpck_require__(42186); +/** + * Masks the `sig` parameter in a URL and sets it as a secret. + * + * @param url - The URL containing the signature parameter to mask + * @remarks + * This function attempts to parse the provided URL and identify the 'sig' query parameter. + * If found, it registers both the raw and URL-encoded signature values as secrets using + * the Actions `setSecret` API, which prevents them from being displayed in logs. + * + * The function handles errors gracefully if URL parsing fails, logging them as debug messages. + * + * @example + * ```typescript + * // Mask a signature in an Azure SAS token URL + * maskSigUrl('https://example.blob.core.windows.net/container/file.txt?sig=abc123&se=2023-01-01'); + * ``` + */ +function maskSigUrl(url) { + if (!url) + return; + try { + const parsedUrl = new URL(url); + const signature = parsedUrl.searchParams.get('sig'); + if (signature) { + (0, core_1.setSecret)(signature); + (0, core_1.setSecret)(encodeURIComponent(signature)); + } + } + catch (error) { + (0, core_1.debug)(`Failed to parse URL: ${url} ${error instanceof Error ? error.message : String(error)}`); + } +} +/** + * Masks sensitive information in URLs containing signature parameters. + * Currently supports masking 'sig' parameters in the 'signed_upload_url' + * and 'signed_download_url' properties of the provided object. + * + * @param body - The object should contain a signature + * @remarks + * This function extracts URLs from the object properties and calls maskSigUrl + * on each one to redact sensitive signature information. The function doesn't + * modify the original object; it only marks the signatures as secrets for + * logging purposes. + * + * @example + * ```typescript + * const responseBody = { + * signed_upload_url: 'https://blob.core.windows.net/?sig=abc123', + * signed_download_url: 'https://blob.core/windows.net/?sig=def456' + * }; + * maskSecretUrls(responseBody); + * ``` + */ +function maskSecretUrls(body) { + if (typeof body !== 'object' || body === null) { + (0, core_1.debug)('body is not an object or is null'); + return; + } + if ('signed_upload_url' in body && + typeof body.signed_upload_url === 'string') { + maskSigUrl(body.signed_upload_url); + } + if ('signed_download_url' in body && + typeof body.signed_download_url === 'string') { + maskSigUrl(body.signed_download_url); + } +} +//# sourceMappingURL=util.js.map + +/***/ }), + +/***/ 56490: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); }; Object.defineProperty(exports, "__esModule", ({ value: true })); -const exec_1 = __nccwpck_require__(1514); -const io = __importStar(__nccwpck_require__(7436)); -const fs_1 = __nccwpck_require__(7147); -const path = __importStar(__nccwpck_require__(1017)); -const utils = __importStar(__nccwpck_require__(1518)); -const constants_1 = __nccwpck_require__(8840); -function getTarPath(args, compressionMethod) { +exports.listTar = listTar; +exports.extractTar = extractTar; +exports.createTar = createTar; +const exec_1 = __nccwpck_require__(71514); +const io = __importStar(__nccwpck_require__(47351)); +const fs_1 = __nccwpck_require__(57147); +const path = __importStar(__nccwpck_require__(71017)); +const utils = __importStar(__nccwpck_require__(91518)); +const constants_1 = __nccwpck_require__(88840); +const IS_WINDOWS = process.platform === 'win32'; +// Returns tar path and type: BSD or GNU +function getTarPath() { return __awaiter(this, void 0, void 0, function* () { switch (process.platform) { case 'win32': { - const systemTar = `${process.env['windir']}\\System32\\tar.exe`; - if (compressionMethod !== constants_1.CompressionMethod.Gzip) { - // We only use zstandard compression on windows when gnu tar is installed due to - // a bug with compressing large files with bsdtar + zstd - args.push('--force-local'); - } - else if (fs_1.existsSync(systemTar)) { - return systemTar; + const gnuTar = yield utils.getGnuTarPathOnWindows(); + const systemTar = constants_1.SystemTarPathOnWindows; + if (gnuTar) { + // Use GNUtar as default on windows + return { path: gnuTar, type: constants_1.ArchiveToolType.GNU }; } - else if (yield utils.isGnuTarInstalled()) { - args.push('--force-local'); + else if ((0, fs_1.existsSync)(systemTar)) { + return { path: systemTar, type: constants_1.ArchiveToolType.BSD }; } break; } @@ -1066,154 +2744,458 @@ function getTarPath(args, compressionMethod) { const gnuTar = yield io.which('gtar', false); if (gnuTar) { // fix permission denied errors when extracting BSD tar archive with GNU tar - https://github.com/actions/cache/issues/527 - args.push('--delay-directory-restore'); - return gnuTar; + return { path: gnuTar, type: constants_1.ArchiveToolType.GNU }; + } + else { + return { + path: yield io.which('tar', true), + type: constants_1.ArchiveToolType.BSD + }; } - break; } default: break; } - return yield io.which('tar', true); + // Default assumption is GNU tar is present in path + return { + path: yield io.which('tar', true), + type: constants_1.ArchiveToolType.GNU + }; }); } -function execTar(args, compressionMethod, cwd) { - return __awaiter(this, void 0, void 0, function* () { - try { - yield exec_1.exec(`"${yield getTarPath(args, compressionMethod)}"`, args, { cwd }); +// Return arguments for tar as per tarPath, compressionMethod, method type and os +function getTarArgs(tarPath_1, compressionMethod_1, type_1) { + return __awaiter(this, arguments, void 0, function* (tarPath, compressionMethod, type, archivePath = '') { + const args = [`"${tarPath.path}"`]; + const cacheFileName = utils.getCacheFileName(compressionMethod); + const tarFile = 'cache.tar'; + const workingDirectory = getWorkingDirectory(); + // Speficic args for BSD tar on windows for workaround + const BSD_TAR_ZSTD = tarPath.type === constants_1.ArchiveToolType.BSD && + compressionMethod !== constants_1.CompressionMethod.Gzip && + IS_WINDOWS; + // Method specific args + switch (type) { + case 'create': + args.push('--posix', '-cf', BSD_TAR_ZSTD + ? tarFile + : cacheFileName.replace(new RegExp(`\\${path.sep}`, 'g'), '/'), '--exclude', BSD_TAR_ZSTD + ? tarFile + : cacheFileName.replace(new RegExp(`\\${path.sep}`, 'g'), '/'), '-P', '-C', workingDirectory.replace(new RegExp(`\\${path.sep}`, 'g'), '/'), '--files-from', constants_1.ManifestFilename); + break; + case 'extract': + args.push('-xf', BSD_TAR_ZSTD + ? tarFile + : archivePath.replace(new RegExp(`\\${path.sep}`, 'g'), '/'), '-P', '-C', workingDirectory.replace(new RegExp(`\\${path.sep}`, 'g'), '/')); + break; + case 'list': + args.push('-tf', BSD_TAR_ZSTD + ? tarFile + : archivePath.replace(new RegExp(`\\${path.sep}`, 'g'), '/'), '-P'); + break; } - catch (error) { - throw new Error(`Tar failed with error: ${error === null || error === void 0 ? void 0 : error.message}`); + // Platform specific args + if (tarPath.type === constants_1.ArchiveToolType.GNU) { + switch (process.platform) { + case 'win32': + args.push('--force-local'); + break; + case 'darwin': + args.push('--delay-directory-restore'); + break; + } + } + return args; + }); +} +// Returns commands to run tar and compression program +function getCommands(compressionMethod_1, type_1) { + return __awaiter(this, arguments, void 0, function* (compressionMethod, type, archivePath = '') { + let args; + const tarPath = yield getTarPath(); + const tarArgs = yield getTarArgs(tarPath, compressionMethod, type, archivePath); + const compressionArgs = type !== 'create' + ? yield getDecompressionProgram(tarPath, compressionMethod, archivePath) + : yield getCompressionProgram(tarPath, compressionMethod); + const BSD_TAR_ZSTD = tarPath.type === constants_1.ArchiveToolType.BSD && + compressionMethod !== constants_1.CompressionMethod.Gzip && + IS_WINDOWS; + if (BSD_TAR_ZSTD && type !== 'create') { + args = [[...compressionArgs].join(' '), [...tarArgs].join(' ')]; } + else { + args = [[...tarArgs].join(' '), [...compressionArgs].join(' ')]; + } + if (BSD_TAR_ZSTD) { + return args; + } + return [args.join(' ')]; }); } function getWorkingDirectory() { var _a; return (_a = process.env['GITHUB_WORKSPACE']) !== null && _a !== void 0 ? _a : process.cwd(); } -function extractTar(archivePath, compressionMethod) { +// Common function for extractTar and listTar to get the compression method +function getDecompressionProgram(tarPath, compressionMethod, archivePath) { return __awaiter(this, void 0, void 0, function* () { - // Create directory to extract tar into - const workingDirectory = getWorkingDirectory(); - yield io.mkdirP(workingDirectory); - // --d: Decompress. + // -d: Decompress. + // unzstd is equivalent to 'zstd -d' // --long=#: Enables long distance matching with # bits. Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit. // Using 30 here because we also support 32-bit self-hosted runners. - function getCompressionProgram() { - switch (compressionMethod) { - case constants_1.CompressionMethod.Zstd: - return ['--use-compress-program', 'zstd -d --long=30']; - case constants_1.CompressionMethod.ZstdWithoutLong: - return ['--use-compress-program', 'zstd -d']; - default: - return ['-z']; - } + const BSD_TAR_ZSTD = tarPath.type === constants_1.ArchiveToolType.BSD && + compressionMethod !== constants_1.CompressionMethod.Gzip && + IS_WINDOWS; + switch (compressionMethod) { + case constants_1.CompressionMethod.Zstd: + return BSD_TAR_ZSTD + ? [ + 'zstd -d --long=30 --force -o', + constants_1.TarFilename, + archivePath.replace(new RegExp(`\\${path.sep}`, 'g'), '/') + ] + : [ + '--use-compress-program', + IS_WINDOWS ? '"zstd -d --long=30"' : 'unzstd --long=30' + ]; + case constants_1.CompressionMethod.ZstdWithoutLong: + return BSD_TAR_ZSTD + ? [ + 'zstd -d --force -o', + constants_1.TarFilename, + archivePath.replace(new RegExp(`\\${path.sep}`, 'g'), '/') + ] + : ['--use-compress-program', IS_WINDOWS ? '"zstd -d"' : 'unzstd']; + default: + return ['-z']; } - const args = [ - ...getCompressionProgram(), - '-xf', - archivePath.replace(new RegExp(`\\${path.sep}`, 'g'), '/'), - '-P', - '-C', - workingDirectory.replace(new RegExp(`\\${path.sep}`, 'g'), '/') - ]; - yield execTar(args, compressionMethod); }); } -exports.extractTar = extractTar; -function createTar(archiveFolder, sourceDirectories, compressionMethod) { +// Used for creating the archive +// -T#: Compress using # working thread. If # is 0, attempt to detect and use the number of physical CPU cores. +// zstdmt is equivalent to 'zstd -T0' +// --long=#: Enables long distance matching with # bits. Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit. +// Using 30 here because we also support 32-bit self-hosted runners. +// Long range mode is added to zstd in v1.3.2 release, so we will not use --long in older version of zstd. +function getCompressionProgram(tarPath, compressionMethod) { return __awaiter(this, void 0, void 0, function* () { - // Write source directories to manifest.txt to avoid command length limits - const manifestFilename = 'manifest.txt'; const cacheFileName = utils.getCacheFileName(compressionMethod); - fs_1.writeFileSync(path.join(archiveFolder, manifestFilename), sourceDirectories.join('\n')); - const workingDirectory = getWorkingDirectory(); - // -T#: Compress using # working thread. If # is 0, attempt to detect and use the number of physical CPU cores. - // --long=#: Enables long distance matching with # bits. Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit. - // Using 30 here because we also support 32-bit self-hosted runners. - // Long range mode is added to zstd in v1.3.2 release, so we will not use --long in older version of zstd. - function getCompressionProgram() { - switch (compressionMethod) { - case constants_1.CompressionMethod.Zstd: - return ['--use-compress-program', 'zstd -T0 --long=30']; - case constants_1.CompressionMethod.ZstdWithoutLong: - return ['--use-compress-program', 'zstd -T0']; - default: - return ['-z']; - } - } - const args = [ - '--posix', - ...getCompressionProgram(), - '-cf', - cacheFileName.replace(new RegExp(`\\${path.sep}`, 'g'), '/'), - '--exclude', - cacheFileName.replace(new RegExp(`\\${path.sep}`, 'g'), '/'), - '-P', - '-C', - workingDirectory.replace(new RegExp(`\\${path.sep}`, 'g'), '/'), - '--files-from', - manifestFilename - ]; - yield execTar(args, compressionMethod, archiveFolder); + const BSD_TAR_ZSTD = tarPath.type === constants_1.ArchiveToolType.BSD && + compressionMethod !== constants_1.CompressionMethod.Gzip && + IS_WINDOWS; + switch (compressionMethod) { + case constants_1.CompressionMethod.Zstd: + return BSD_TAR_ZSTD + ? [ + 'zstd -T0 --long=30 --force -o', + cacheFileName.replace(new RegExp(`\\${path.sep}`, 'g'), '/'), + constants_1.TarFilename + ] + : [ + '--use-compress-program', + IS_WINDOWS ? '"zstd -T0 --long=30"' : 'zstdmt --long=30' + ]; + case constants_1.CompressionMethod.ZstdWithoutLong: + return BSD_TAR_ZSTD + ? [ + 'zstd -T0 --force -o', + cacheFileName.replace(new RegExp(`\\${path.sep}`, 'g'), '/'), + constants_1.TarFilename + ] + : ['--use-compress-program', IS_WINDOWS ? '"zstd -T0"' : 'zstdmt']; + default: + return ['-z']; + } }); } -exports.createTar = createTar; -function listTar(archivePath, compressionMethod) { +// Executes all commands as separate processes +function execCommands(commands, cwd) { return __awaiter(this, void 0, void 0, function* () { - // --d: Decompress. - // --long=#: Enables long distance matching with # bits. - // Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit. - // Using 30 here because we also support 32-bit self-hosted runners. - function getCompressionProgram() { - switch (compressionMethod) { - case constants_1.CompressionMethod.Zstd: - return ['--use-compress-program', 'zstd -d --long=30']; - case constants_1.CompressionMethod.ZstdWithoutLong: - return ['--use-compress-program', 'zstd -d']; - default: - return ['-z']; + for (const command of commands) { + try { + yield (0, exec_1.exec)(command, undefined, { + cwd, + env: Object.assign(Object.assign({}, process.env), { MSYS: 'winsymlinks:nativestrict' }) + }); + } + catch (error) { + throw new Error(`${command.split(' ')[0]} failed with error: ${error === null || error === void 0 ? void 0 : error.message}`); } } - const args = [ - ...getCompressionProgram(), - '-tf', - archivePath.replace(new RegExp(`\\${path.sep}`, 'g'), '/'), - '-P' - ]; - yield execTar(args, compressionMethod); }); } -exports.listTar = listTar; +// List the contents of a tar +function listTar(archivePath, compressionMethod) { + return __awaiter(this, void 0, void 0, function* () { + const commands = yield getCommands(compressionMethod, 'list', archivePath); + yield execCommands(commands); + }); +} +// Extract a tar +function extractTar(archivePath, compressionMethod) { + return __awaiter(this, void 0, void 0, function* () { + // Create directory to extract tar into + const workingDirectory = getWorkingDirectory(); + yield io.mkdirP(workingDirectory); + const commands = yield getCommands(compressionMethod, 'extract', archivePath); + yield execCommands(commands); + }); +} +// Create a tar +function createTar(archiveFolder, sourceDirectories, compressionMethod) { + return __awaiter(this, void 0, void 0, function* () { + // Write source directories to manifest.txt to avoid command length limits + (0, fs_1.writeFileSync)(path.join(archiveFolder, constants_1.ManifestFilename), sourceDirectories.join('\n')); + const commands = yield getCommands(compressionMethod, 'create'); + yield execCommands(commands, archiveFolder); + }); +} //# sourceMappingURL=tar.js.map /***/ }), -/***/ 6215: +/***/ 1786: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); }; Object.defineProperty(exports, "__esModule", ({ value: true })); -const core = __importStar(__nccwpck_require__(2186)); +exports.UploadProgress = void 0; +exports.uploadCacheArchiveSDK = uploadCacheArchiveSDK; +const core = __importStar(__nccwpck_require__(42186)); +const storage_blob_1 = __nccwpck_require__(37168); +const errors_1 = __nccwpck_require__(18223); +/** + * Class for tracking the upload state and displaying stats. + */ +class UploadProgress { + constructor(contentLength) { + this.contentLength = contentLength; + this.sentBytes = 0; + this.displayedComplete = false; + this.startTime = Date.now(); + } + /** + * Sets the number of bytes sent + * + * @param sentBytes the number of bytes sent + */ + setSentBytes(sentBytes) { + this.sentBytes = sentBytes; + } + /** + * Returns the total number of bytes transferred. + */ + getTransferredBytes() { + return this.sentBytes; + } + /** + * Returns true if the upload is complete. + */ + isDone() { + return this.getTransferredBytes() === this.contentLength; + } + /** + * Prints the current upload stats. Once the upload completes, this will print one + * last line and then stop. + */ + display() { + if (this.displayedComplete) { + return; + } + const transferredBytes = this.sentBytes; + const percentage = (100 * (transferredBytes / this.contentLength)).toFixed(1); + const elapsedTime = Date.now() - this.startTime; + const uploadSpeed = (transferredBytes / + (1024 * 1024) / + (elapsedTime / 1000)).toFixed(1); + core.info(`Sent ${transferredBytes} of ${this.contentLength} (${percentage}%), ${uploadSpeed} MBs/sec`); + if (this.isDone()) { + this.displayedComplete = true; + } + } + /** + * Returns a function used to handle TransferProgressEvents. + */ + onProgress() { + return (progress) => { + this.setSentBytes(progress.loadedBytes); + }; + } + /** + * Starts the timer that displays the stats. + * + * @param delayInMs the delay between each write + */ + startDisplayTimer(delayInMs = 1000) { + const displayCallback = () => { + this.display(); + if (!this.isDone()) { + this.timeoutHandle = setTimeout(displayCallback, delayInMs); + } + }; + this.timeoutHandle = setTimeout(displayCallback, delayInMs); + } + /** + * Stops the timer that displays the stats. As this typically indicates the upload + * is complete, this will display one last line, unless the last line has already + * been written. + */ + stopDisplayTimer() { + if (this.timeoutHandle) { + clearTimeout(this.timeoutHandle); + this.timeoutHandle = undefined; + } + this.display(); + } +} +exports.UploadProgress = UploadProgress; +/** + * Uploads a cache archive directly to Azure Blob Storage using the Azure SDK. + * This function will display progress information to the console. Concurrency of the + * upload is determined by the calling functions. + * + * @param signedUploadURL + * @param archivePath + * @param options + * @returns + */ +function uploadCacheArchiveSDK(signedUploadURL, archivePath, options) { + return __awaiter(this, void 0, void 0, function* () { + var _a; + const blobClient = new storage_blob_1.BlobClient(signedUploadURL); + const blockBlobClient = blobClient.getBlockBlobClient(); + const uploadProgress = new UploadProgress((_a = options === null || options === void 0 ? void 0 : options.archiveSizeBytes) !== null && _a !== void 0 ? _a : 0); + // Specify data transfer options + const uploadOptions = { + blockSize: options === null || options === void 0 ? void 0 : options.uploadChunkSize, + concurrency: options === null || options === void 0 ? void 0 : options.uploadConcurrency, // maximum number of parallel transfer workers + maxSingleShotSize: 128 * 1024 * 1024, // 128 MiB initial transfer size + onProgress: uploadProgress.onProgress() + }; + try { + uploadProgress.startDisplayTimer(); + core.debug(`BlobClient: ${blobClient.name}:${blobClient.accountName}:${blobClient.containerName}`); + const response = yield blockBlobClient.uploadFile(archivePath, uploadOptions); + // TODO: better management of non-retryable errors + if (response._response.status >= 400) { + throw new errors_1.InvalidResponseError(`uploadCacheArchiveSDK: upload failed with status code ${response._response.status}`); + } + return response; + } + catch (error) { + core.warning(`uploadCacheArchiveSDK: internal error uploading cache archive: ${error.message}`); + throw error; + } + finally { + uploadProgress.stopDisplayTimer(); + } + }); +} +//# sourceMappingURL=uploadUtils.js.map + +/***/ }), + +/***/ 76215: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getUploadOptions = getUploadOptions; +exports.getDownloadOptions = getDownloadOptions; +const core = __importStar(__nccwpck_require__(42186)); /** * Returns a copy of the upload options with defaults filled in. * * @param copy the original upload options */ function getUploadOptions(copy) { + // Defaults if not overriden const result = { + useAzureSdk: false, uploadConcurrency: 4, uploadChunkSize: 32 * 1024 * 1024 }; if (copy) { + if (typeof copy.useAzureSdk === 'boolean') { + result.useAzureSdk = copy.useAzureSdk; + } if (typeof copy.uploadConcurrency === 'number') { result.uploadConcurrency = copy.uploadConcurrency; } @@ -1221,11 +3203,22 @@ function getUploadOptions(copy) { result.uploadChunkSize = copy.uploadChunkSize; } } + /** + * Add env var overrides + */ + // Cap the uploadConcurrency at 32 + result.uploadConcurrency = !isNaN(Number(process.env['CACHE_UPLOAD_CONCURRENCY'])) + ? Math.min(32, Number(process.env['CACHE_UPLOAD_CONCURRENCY'])) + : result.uploadConcurrency; + // Cap the uploadChunkSize at 128MiB + result.uploadChunkSize = !isNaN(Number(process.env['CACHE_UPLOAD_CHUNK_SIZE'])) + ? Math.min(128 * 1024 * 1024, Number(process.env['CACHE_UPLOAD_CHUNK_SIZE']) * 1024 * 1024) + : result.uploadChunkSize; + core.debug(`Use Azure SDK: ${result.useAzureSdk}`); core.debug(`Upload concurrency: ${result.uploadConcurrency}`); core.debug(`Upload chunk size: ${result.uploadChunkSize}`); return result; } -exports.getUploadOptions = getUploadOptions; /** * Returns a copy of the download options with defaults filled in. * @@ -1233,3859 +3226,3665 @@ exports.getUploadOptions = getUploadOptions; */ function getDownloadOptions(copy) { const result = { - useAzureSdk: true, + useAzureSdk: false, + concurrentBlobDownloads: true, downloadConcurrency: 8, - timeoutInMs: 30000 + timeoutInMs: 30000, + segmentTimeoutInMs: 600000, + lookupOnly: false }; if (copy) { if (typeof copy.useAzureSdk === 'boolean') { result.useAzureSdk = copy.useAzureSdk; } + if (typeof copy.concurrentBlobDownloads === 'boolean') { + result.concurrentBlobDownloads = copy.concurrentBlobDownloads; + } if (typeof copy.downloadConcurrency === 'number') { result.downloadConcurrency = copy.downloadConcurrency; } if (typeof copy.timeoutInMs === 'number') { result.timeoutInMs = copy.timeoutInMs; } + if (typeof copy.segmentTimeoutInMs === 'number') { + result.segmentTimeoutInMs = copy.segmentTimeoutInMs; + } + if (typeof copy.lookupOnly === 'boolean') { + result.lookupOnly = copy.lookupOnly; + } + } + const segmentDownloadTimeoutMins = process.env['SEGMENT_DOWNLOAD_TIMEOUT_MINS']; + if (segmentDownloadTimeoutMins && + !isNaN(Number(segmentDownloadTimeoutMins)) && + isFinite(Number(segmentDownloadTimeoutMins))) { + result.segmentTimeoutInMs = Number(segmentDownloadTimeoutMins) * 60 * 1000; } core.debug(`Use Azure SDK: ${result.useAzureSdk}`); core.debug(`Download concurrency: ${result.downloadConcurrency}`); core.debug(`Request timeout (ms): ${result.timeoutInMs}`); + core.debug(`Cache segment download timeout mins env var: ${process.env['SEGMENT_DOWNLOAD_TIMEOUT_MINS']}`); + core.debug(`Segment download timeout (ms): ${result.segmentTimeoutInMs}`); + core.debug(`Lookup only: ${result.lookupOnly}`); return result; } -exports.getDownloadOptions = getDownloadOptions; //# sourceMappingURL=options.js.map /***/ }), -/***/ 1597: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { +/***/ 3771: +/***/ ((module, exports) => { -"use strict"; +exports = module.exports = SemVer -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.create = void 0; -const internal_globber_1 = __nccwpck_require__(7341); -/** - * Constructs a globber - * - * @param patterns Patterns separated by newlines - * @param options Glob options - */ -function create(patterns, options) { - return __awaiter(this, void 0, void 0, function* () { - return yield internal_globber_1.DefaultGlobber.create(patterns, options); - }); +var debug +/* istanbul ignore next */ +if (typeof process === 'object' && + process.env && + process.env.NODE_DEBUG && + /\bsemver\b/i.test(process.env.NODE_DEBUG)) { + debug = function () { + var args = Array.prototype.slice.call(arguments, 0) + args.unshift('SEMVER') + console.log.apply(console, args) + } +} else { + debug = function () {} } -exports.create = create; -//# sourceMappingURL=glob.js.map -/***/ }), +// Note: this is the semver.org version of the spec that it implements +// Not necessarily the package version of this code. +exports.SEMVER_SPEC_VERSION = '2.0.0' -/***/ 9350: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { +var MAX_LENGTH = 256 +var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || + /* istanbul ignore next */ 9007199254740991 -"use strict"; +// Max safe segment length for coercion. +var MAX_SAFE_COMPONENT_LENGTH = 16 -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.getOptions = void 0; -const core = __importStar(__nccwpck_require__(2186)); -/** - * Returns a copy with defaults filled in. - */ -function getOptions(copy) { - const result = { - followSymbolicLinks: true, - implicitDescendants: true, - omitBrokenSymbolicLinks: true - }; - if (copy) { - if (typeof copy.followSymbolicLinks === 'boolean') { - result.followSymbolicLinks = copy.followSymbolicLinks; - core.debug(`followSymbolicLinks '${result.followSymbolicLinks}'`); - } - if (typeof copy.implicitDescendants === 'boolean') { - result.implicitDescendants = copy.implicitDescendants; - core.debug(`implicitDescendants '${result.implicitDescendants}'`); - } - if (typeof copy.omitBrokenSymbolicLinks === 'boolean') { - result.omitBrokenSymbolicLinks = copy.omitBrokenSymbolicLinks; - core.debug(`omitBrokenSymbolicLinks '${result.omitBrokenSymbolicLinks}'`); - } - } - return result; -} -exports.getOptions = getOptions; -//# sourceMappingURL=internal-glob-options-helper.js.map +var MAX_SAFE_BUILD_LENGTH = MAX_LENGTH - 6 -/***/ }), +// The actual regexps go on exports.re +var re = exports.re = [] +var safeRe = exports.safeRe = [] +var src = exports.src = [] +var t = exports.tokens = {} +var R = 0 -/***/ 7341: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { +function tok (n) { + t[n] = R++ +} -"use strict"; +var LETTERDASHNUMBER = '[a-zA-Z0-9-]' -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -var __asyncValues = (this && this.__asyncValues) || function (o) { - if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); - var m = o[Symbol.asyncIterator], i; - return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i); - function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } - function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } -}; -var __await = (this && this.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); } -var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _arguments, generator) { - if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); - var g = generator.apply(thisArg, _arguments || []), i, q = []; - return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i; - function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } - function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } - function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } - function fulfill(value) { resume("next", value); } - function reject(value) { resume("throw", value); } - function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.DefaultGlobber = void 0; -const core = __importStar(__nccwpck_require__(2186)); -const fs = __importStar(__nccwpck_require__(7147)); -const globOptionsHelper = __importStar(__nccwpck_require__(9350)); -const path = __importStar(__nccwpck_require__(1017)); -const patternHelper = __importStar(__nccwpck_require__(5186)); -const internal_match_kind_1 = __nccwpck_require__(836); -const internal_pattern_1 = __nccwpck_require__(5343); -const internal_search_state_1 = __nccwpck_require__(8530); -const IS_WINDOWS = process.platform === 'win32'; -class DefaultGlobber { - constructor(options) { - this.patterns = []; - this.searchPaths = []; - this.options = globOptionsHelper.getOptions(options); - } - getSearchPaths() { - // Return a copy - return this.searchPaths.slice(); - } - glob() { - var e_1, _a; - return __awaiter(this, void 0, void 0, function* () { - const result = []; - try { - for (var _b = __asyncValues(this.globGenerator()), _c; _c = yield _b.next(), !_c.done;) { - const itemPath = _c.value; - result.push(itemPath); - } - } - catch (e_1_1) { e_1 = { error: e_1_1 }; } - finally { - try { - if (_c && !_c.done && (_a = _b.return)) yield _a.call(_b); - } - finally { if (e_1) throw e_1.error; } - } - return result; - }); - } - globGenerator() { - return __asyncGenerator(this, arguments, function* globGenerator_1() { - // Fill in defaults options - const options = globOptionsHelper.getOptions(this.options); - // Implicit descendants? - const patterns = []; - for (const pattern of this.patterns) { - patterns.push(pattern); - if (options.implicitDescendants && - (pattern.trailingSeparator || - pattern.segments[pattern.segments.length - 1] !== '**')) { - patterns.push(new internal_pattern_1.Pattern(pattern.negate, true, pattern.segments.concat('**'))); - } - } - // Push the search paths - const stack = []; - for (const searchPath of patternHelper.getSearchPaths(patterns)) { - core.debug(`Search path '${searchPath}'`); - // Exists? - try { - // Intentionally using lstat. Detection for broken symlink - // will be performed later (if following symlinks). - yield __await(fs.promises.lstat(searchPath)); - } - catch (err) { - if (err.code === 'ENOENT') { - continue; - } - throw err; - } - stack.unshift(new internal_search_state_1.SearchState(searchPath, 1)); - } - // Search - const traversalChain = []; // used to detect cycles - while (stack.length) { - // Pop - const item = stack.pop(); - // Match? - const match = patternHelper.match(patterns, item.path); - const partialMatch = !!match || patternHelper.partialMatch(patterns, item.path); - if (!match && !partialMatch) { - continue; - } - // Stat - const stats = yield __await(DefaultGlobber.stat(item, options, traversalChain) - // Broken symlink, or symlink cycle detected, or no longer exists - ); - // Broken symlink, or symlink cycle detected, or no longer exists - if (!stats) { - continue; - } - // Directory - if (stats.isDirectory()) { - // Matched - if (match & internal_match_kind_1.MatchKind.Directory) { - yield yield __await(item.path); - } - // Descend? - else if (!partialMatch) { - continue; - } - // Push the child items in reverse - const childLevel = item.level + 1; - const childItems = (yield __await(fs.promises.readdir(item.path))).map(x => new internal_search_state_1.SearchState(path.join(item.path, x), childLevel)); - stack.push(...childItems.reverse()); - } - // File - else if (match & internal_match_kind_1.MatchKind.File) { - yield yield __await(item.path); - } - } - }); - } - /** - * Constructs a DefaultGlobber - */ - static create(patterns, options) { - return __awaiter(this, void 0, void 0, function* () { - const result = new DefaultGlobber(options); - if (IS_WINDOWS) { - patterns = patterns.replace(/\r\n/g, '\n'); - patterns = patterns.replace(/\r/g, '\n'); - } - const lines = patterns.split('\n').map(x => x.trim()); - for (const line of lines) { - // Empty or comment - if (!line || line.startsWith('#')) { - continue; - } - // Pattern - else { - result.patterns.push(new internal_pattern_1.Pattern(line)); - } - } - result.searchPaths.push(...patternHelper.getSearchPaths(result.patterns)); - return result; - }); - } - static stat(item, options, traversalChain) { - return __awaiter(this, void 0, void 0, function* () { - // Note: - // `stat` returns info about the target of a symlink (or symlink chain) - // `lstat` returns info about a symlink itself - let stats; - if (options.followSymbolicLinks) { - try { - // Use `stat` (following symlinks) - stats = yield fs.promises.stat(item.path); - } - catch (err) { - if (err.code === 'ENOENT') { - if (options.omitBrokenSymbolicLinks) { - core.debug(`Broken symlink '${item.path}'`); - return undefined; - } - throw new Error(`No information found for the path '${item.path}'. This may indicate a broken symbolic link.`); - } - throw err; - } - } - else { - // Use `lstat` (not following symlinks) - stats = yield fs.promises.lstat(item.path); - } - // Note, isDirectory() returns false for the lstat of a symlink - if (stats.isDirectory() && options.followSymbolicLinks) { - // Get the realpath - const realPath = yield fs.promises.realpath(item.path); - // Fixup the traversal chain to match the item level - while (traversalChain.length >= item.level) { - traversalChain.pop(); - } - // Test for a cycle - if (traversalChain.some((x) => x === realPath)) { - core.debug(`Symlink cycle detected for path '${item.path}' and realpath '${realPath}'`); - return undefined; - } - // Update the traversal chain - traversalChain.push(realPath); - } - return stats; - }); - } +// Replace some greedy regex tokens to prevent regex dos issues. These regex are +// used internally via the safeRe object since all inputs in this library get +// normalized first to trim and collapse all extra whitespace. The original +// regexes are exported for userland consumption and lower level usage. A +// future breaking change could export the safer regex only with a note that +// all input should have extra whitespace removed. +var safeRegexReplacements = [ + ['\\s', 1], + ['\\d', MAX_LENGTH], + [LETTERDASHNUMBER, MAX_SAFE_BUILD_LENGTH], +] + +function makeSafeRe (value) { + for (var i = 0; i < safeRegexReplacements.length; i++) { + var token = safeRegexReplacements[i][0] + var max = safeRegexReplacements[i][1] + value = value + .split(token + '*').join(token + '{0,' + max + '}') + .split(token + '+').join(token + '{1,' + max + '}') + } + return value } -exports.DefaultGlobber = DefaultGlobber; -//# sourceMappingURL=internal-globber.js.map -/***/ }), +// The following Regular Expressions can be used for tokenizing, +// validating, and parsing SemVer version strings. -/***/ 836: -/***/ ((__unused_webpack_module, exports) => { +// ## Numeric Identifier +// A single `0`, or a non-zero digit followed by zero or more digits. -"use strict"; +tok('NUMERICIDENTIFIER') +src[t.NUMERICIDENTIFIER] = '0|[1-9]\\d*' +tok('NUMERICIDENTIFIERLOOSE') +src[t.NUMERICIDENTIFIERLOOSE] = '\\d+' -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.MatchKind = void 0; -/** - * Indicates whether a pattern matches a path - */ -var MatchKind; -(function (MatchKind) { - /** Not matched */ - MatchKind[MatchKind["None"] = 0] = "None"; - /** Matched if the path is a directory */ - MatchKind[MatchKind["Directory"] = 1] = "Directory"; - /** Matched if the path is a regular file */ - MatchKind[MatchKind["File"] = 2] = "File"; - /** Matched */ - MatchKind[MatchKind["All"] = 3] = "All"; -})(MatchKind = exports.MatchKind || (exports.MatchKind = {})); -//# sourceMappingURL=internal-match-kind.js.map +// ## Non-numeric Identifier +// Zero or more digits, followed by a letter or hyphen, and then zero or +// more letters, digits, or hyphens. -/***/ }), +tok('NONNUMERICIDENTIFIER') +src[t.NONNUMERICIDENTIFIER] = '\\d*[a-zA-Z-]' + LETTERDASHNUMBER + '*' -/***/ 22: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { +// ## Main Version +// Three dot-separated numeric identifiers. -"use strict"; +tok('MAINVERSION') +src[t.MAINVERSION] = '(' + src[t.NUMERICIDENTIFIER] + ')\\.' + + '(' + src[t.NUMERICIDENTIFIER] + ')\\.' + + '(' + src[t.NUMERICIDENTIFIER] + ')' -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.safeTrimTrailingSeparator = exports.normalizeSeparators = exports.hasRoot = exports.hasAbsoluteRoot = exports.ensureAbsoluteRoot = exports.dirname = void 0; -const path = __importStar(__nccwpck_require__(1017)); -const assert_1 = __importDefault(__nccwpck_require__(9491)); -const IS_WINDOWS = process.platform === 'win32'; -/** - * Similar to path.dirname except normalizes the path separators and slightly better handling for Windows UNC paths. - * - * For example, on Linux/macOS: - * - `/ => /` - * - `/hello => /` - * - * For example, on Windows: - * - `C:\ => C:\` - * - `C:\hello => C:\` - * - `C: => C:` - * - `C:hello => C:` - * - `\ => \` - * - `\hello => \` - * - `\\hello => \\hello` - * - `\\hello\world => \\hello\world` - */ -function dirname(p) { - // Normalize slashes and trim unnecessary trailing slash - p = safeTrimTrailingSeparator(p); - // Windows UNC root, e.g. \\hello or \\hello\world - if (IS_WINDOWS && /^\\\\[^\\]+(\\[^\\]+)?$/.test(p)) { - return p; - } - // Get dirname - let result = path.dirname(p); - // Trim trailing slash for Windows UNC root, e.g. \\hello\world\ - if (IS_WINDOWS && /^\\\\[^\\]+\\[^\\]+\\$/.test(result)) { - result = safeTrimTrailingSeparator(result); - } - return result; -} -exports.dirname = dirname; -/** - * Roots the path if not already rooted. On Windows, relative roots like `\` - * or `C:` are expanded based on the current working directory. - */ -function ensureAbsoluteRoot(root, itemPath) { - assert_1.default(root, `ensureAbsoluteRoot parameter 'root' must not be empty`); - assert_1.default(itemPath, `ensureAbsoluteRoot parameter 'itemPath' must not be empty`); - // Already rooted - if (hasAbsoluteRoot(itemPath)) { - return itemPath; - } - // Windows - if (IS_WINDOWS) { - // Check for itemPath like C: or C:foo - if (itemPath.match(/^[A-Z]:[^\\/]|^[A-Z]:$/i)) { - let cwd = process.cwd(); - assert_1.default(cwd.match(/^[A-Z]:\\/i), `Expected current directory to start with an absolute drive root. Actual '${cwd}'`); - // Drive letter matches cwd? Expand to cwd - if (itemPath[0].toUpperCase() === cwd[0].toUpperCase()) { - // Drive only, e.g. C: - if (itemPath.length === 2) { - // Preserve specified drive letter case (upper or lower) - return `${itemPath[0]}:\\${cwd.substr(3)}`; - } - // Drive + path, e.g. C:foo - else { - if (!cwd.endsWith('\\')) { - cwd += '\\'; - } - // Preserve specified drive letter case (upper or lower) - return `${itemPath[0]}:\\${cwd.substr(3)}${itemPath.substr(2)}`; - } - } - // Different drive - else { - return `${itemPath[0]}:\\${itemPath.substr(2)}`; - } - } - // Check for itemPath like \ or \foo - else if (normalizeSeparators(itemPath).match(/^\\$|^\\[^\\]/)) { - const cwd = process.cwd(); - assert_1.default(cwd.match(/^[A-Z]:\\/i), `Expected current directory to start with an absolute drive root. Actual '${cwd}'`); - return `${cwd[0]}:\\${itemPath.substr(1)}`; - } - } - assert_1.default(hasAbsoluteRoot(root), `ensureAbsoluteRoot parameter 'root' must have an absolute root`); - // Otherwise ensure root ends with a separator - if (root.endsWith('/') || (IS_WINDOWS && root.endsWith('\\'))) { - // Intentionally empty - } - else { - // Append separator - root += path.sep; - } - return root + itemPath; -} -exports.ensureAbsoluteRoot = ensureAbsoluteRoot; -/** - * On Linux/macOS, true if path starts with `/`. On Windows, true for paths like: - * `\\hello\share` and `C:\hello` (and using alternate separator). - */ -function hasAbsoluteRoot(itemPath) { - assert_1.default(itemPath, `hasAbsoluteRoot parameter 'itemPath' must not be empty`); - // Normalize separators - itemPath = normalizeSeparators(itemPath); - // Windows - if (IS_WINDOWS) { - // E.g. \\hello\share or C:\hello - return itemPath.startsWith('\\\\') || /^[A-Z]:\\/i.test(itemPath); - } - // E.g. /hello - return itemPath.startsWith('/'); -} -exports.hasAbsoluteRoot = hasAbsoluteRoot; -/** - * On Linux/macOS, true if path starts with `/`. On Windows, true for paths like: - * `\`, `\hello`, `\\hello\share`, `C:`, and `C:\hello` (and using alternate separator). - */ -function hasRoot(itemPath) { - assert_1.default(itemPath, `isRooted parameter 'itemPath' must not be empty`); - // Normalize separators - itemPath = normalizeSeparators(itemPath); - // Windows - if (IS_WINDOWS) { - // E.g. \ or \hello or \\hello - // E.g. C: or C:\hello - return itemPath.startsWith('\\') || /^[A-Z]:/i.test(itemPath); - } - // E.g. /hello - return itemPath.startsWith('/'); -} -exports.hasRoot = hasRoot; -/** - * Removes redundant slashes and converts `/` to `\` on Windows - */ -function normalizeSeparators(p) { - p = p || ''; - // Windows - if (IS_WINDOWS) { - // Convert slashes on Windows - p = p.replace(/\//g, '\\'); - // Remove redundant slashes - const isUnc = /^\\\\+[^\\]/.test(p); // e.g. \\hello - return (isUnc ? '\\' : '') + p.replace(/\\\\+/g, '\\'); // preserve leading \\ for UNC - } - // Remove redundant slashes - return p.replace(/\/\/+/g, '/'); -} -exports.normalizeSeparators = normalizeSeparators; -/** - * Normalizes the path separators and trims the trailing separator (when safe). - * For example, `/foo/ => /foo` but `/ => /` - */ -function safeTrimTrailingSeparator(p) { - // Short-circuit if empty - if (!p) { - return ''; - } - // Normalize separators - p = normalizeSeparators(p); - // No trailing slash - if (!p.endsWith(path.sep)) { - return p; - } - // Check '/' on Linux/macOS and '\' on Windows - if (p === path.sep) { - return p; - } - // On Windows check if drive root. E.g. C:\ - if (IS_WINDOWS && /^[A-Z]:\\$/i.test(p)) { - return p; - } - // Otherwise trim trailing slash - return p.substr(0, p.length - 1); -} -exports.safeTrimTrailingSeparator = safeTrimTrailingSeparator; -//# sourceMappingURL=internal-path-helper.js.map +tok('MAINVERSIONLOOSE') +src[t.MAINVERSIONLOOSE] = '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\.' + + '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\.' + + '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')' -/***/ }), +// ## Pre-release Version Identifier +// A numeric identifier, or a non-numeric identifier. -/***/ 9413: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { +tok('PRERELEASEIDENTIFIER') +src[t.PRERELEASEIDENTIFIER] = '(?:' + src[t.NUMERICIDENTIFIER] + + '|' + src[t.NONNUMERICIDENTIFIER] + ')' -"use strict"; +tok('PRERELEASEIDENTIFIERLOOSE') +src[t.PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[t.NUMERICIDENTIFIERLOOSE] + + '|' + src[t.NONNUMERICIDENTIFIER] + ')' -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.Path = void 0; -const path = __importStar(__nccwpck_require__(1017)); -const pathHelper = __importStar(__nccwpck_require__(22)); -const assert_1 = __importDefault(__nccwpck_require__(9491)); -const IS_WINDOWS = process.platform === 'win32'; -/** - * Helper class for parsing paths into segments - */ -class Path { - /** - * Constructs a Path - * @param itemPath Path or array of segments - */ - constructor(itemPath) { - this.segments = []; - // String - if (typeof itemPath === 'string') { - assert_1.default(itemPath, `Parameter 'itemPath' must not be empty`); - // Normalize slashes and trim unnecessary trailing slash - itemPath = pathHelper.safeTrimTrailingSeparator(itemPath); - // Not rooted - if (!pathHelper.hasRoot(itemPath)) { - this.segments = itemPath.split(path.sep); - } - // Rooted - else { - // Add all segments, while not at the root - let remaining = itemPath; - let dir = pathHelper.dirname(remaining); - while (dir !== remaining) { - // Add the segment - const basename = path.basename(remaining); - this.segments.unshift(basename); - // Truncate the last segment - remaining = dir; - dir = pathHelper.dirname(remaining); - } - // Remainder is the root - this.segments.unshift(remaining); - } - } - // Array - else { - // Must not be empty - assert_1.default(itemPath.length > 0, `Parameter 'itemPath' must not be an empty array`); - // Each segment - for (let i = 0; i < itemPath.length; i++) { - let segment = itemPath[i]; - // Must not be empty - assert_1.default(segment, `Parameter 'itemPath' must not contain any empty segments`); - // Normalize slashes - segment = pathHelper.normalizeSeparators(itemPath[i]); - // Root segment - if (i === 0 && pathHelper.hasRoot(segment)) { - segment = pathHelper.safeTrimTrailingSeparator(segment); - assert_1.default(segment === pathHelper.dirname(segment), `Parameter 'itemPath' root segment contains information for multiple segments`); - this.segments.push(segment); - } - // All other segments - else { - // Must not contain slash - assert_1.default(!segment.includes(path.sep), `Parameter 'itemPath' contains unexpected path separators`); - this.segments.push(segment); - } - } - } - } - /** - * Converts the path to it's string representation - */ - toString() { - // First segment - let result = this.segments[0]; - // All others - let skipSlash = result.endsWith(path.sep) || (IS_WINDOWS && /^[A-Z]:$/i.test(result)); - for (let i = 1; i < this.segments.length; i++) { - if (skipSlash) { - skipSlash = false; - } - else { - result += path.sep; - } - result += this.segments[i]; - } - return result; - } -} -exports.Path = Path; -//# sourceMappingURL=internal-path.js.map +// ## Pre-release Version +// Hyphen, followed by one or more dot-separated pre-release version +// identifiers. -/***/ }), +tok('PRERELEASE') +src[t.PRERELEASE] = '(?:-(' + src[t.PRERELEASEIDENTIFIER] + + '(?:\\.' + src[t.PRERELEASEIDENTIFIER] + ')*))' -/***/ 5186: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { +tok('PRERELEASELOOSE') +src[t.PRERELEASELOOSE] = '(?:-?(' + src[t.PRERELEASEIDENTIFIERLOOSE] + + '(?:\\.' + src[t.PRERELEASEIDENTIFIERLOOSE] + ')*))' -"use strict"; +// ## Build Metadata Identifier +// Any combination of digits, letters, or hyphens. -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.partialMatch = exports.match = exports.getSearchPaths = void 0; -const pathHelper = __importStar(__nccwpck_require__(22)); -const internal_match_kind_1 = __nccwpck_require__(836); -const IS_WINDOWS = process.platform === 'win32'; -/** - * Given an array of patterns, returns an array of paths to search. - * Duplicates and paths under other included paths are filtered out. - */ -function getSearchPaths(patterns) { - // Ignore negate patterns - patterns = patterns.filter(x => !x.negate); - // Create a map of all search paths - const searchPathMap = {}; - for (const pattern of patterns) { - const key = IS_WINDOWS - ? pattern.searchPath.toUpperCase() - : pattern.searchPath; - searchPathMap[key] = 'candidate'; - } - const result = []; - for (const pattern of patterns) { - // Check if already included - const key = IS_WINDOWS - ? pattern.searchPath.toUpperCase() - : pattern.searchPath; - if (searchPathMap[key] === 'included') { - continue; - } - // Check for an ancestor search path - let foundAncestor = false; - let tempKey = key; - let parent = pathHelper.dirname(tempKey); - while (parent !== tempKey) { - if (searchPathMap[parent]) { - foundAncestor = true; - break; - } - tempKey = parent; - parent = pathHelper.dirname(tempKey); - } - // Include the search pattern in the result - if (!foundAncestor) { - result.push(pattern.searchPath); - searchPathMap[key] = 'included'; - } - } - return result; -} -exports.getSearchPaths = getSearchPaths; -/** - * Matches the patterns against the path - */ -function match(patterns, itemPath) { - let result = internal_match_kind_1.MatchKind.None; - for (const pattern of patterns) { - if (pattern.negate) { - result &= ~pattern.match(itemPath); - } - else { - result |= pattern.match(itemPath); - } - } - return result; -} -exports.match = match; -/** - * Checks whether to descend further into the directory - */ -function partialMatch(patterns, itemPath) { - return patterns.some(x => !x.negate && x.partialMatch(itemPath)); -} -exports.partialMatch = partialMatch; -//# sourceMappingURL=internal-pattern-helper.js.map +tok('BUILDIDENTIFIER') +src[t.BUILDIDENTIFIER] = LETTERDASHNUMBER + '+' -/***/ }), +// ## Build Metadata +// Plus sign, followed by one or more period-separated build metadata +// identifiers. -/***/ 5343: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { +tok('BUILD') +src[t.BUILD] = '(?:\\+(' + src[t.BUILDIDENTIFIER] + + '(?:\\.' + src[t.BUILDIDENTIFIER] + ')*))' -"use strict"; +// ## Full Version String +// A main version, followed optionally by a pre-release version and +// build metadata. -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.Pattern = void 0; -const os = __importStar(__nccwpck_require__(2037)); -const path = __importStar(__nccwpck_require__(1017)); -const pathHelper = __importStar(__nccwpck_require__(22)); -const assert_1 = __importDefault(__nccwpck_require__(9491)); -const minimatch_1 = __nccwpck_require__(3973); -const internal_match_kind_1 = __nccwpck_require__(836); -const internal_path_1 = __nccwpck_require__(9413); -const IS_WINDOWS = process.platform === 'win32'; -class Pattern { - constructor(patternOrNegate, isImplicitPattern = false, segments, homedir) { - /** - * Indicates whether matches should be excluded from the result set - */ - this.negate = false; - // Pattern overload - let pattern; - if (typeof patternOrNegate === 'string') { - pattern = patternOrNegate.trim(); - } - // Segments overload - else { - // Convert to pattern - segments = segments || []; - assert_1.default(segments.length, `Parameter 'segments' must not empty`); - const root = Pattern.getLiteral(segments[0]); - assert_1.default(root && pathHelper.hasAbsoluteRoot(root), `Parameter 'segments' first element must be a root path`); - pattern = new internal_path_1.Path(segments).toString().trim(); - if (patternOrNegate) { - pattern = `!${pattern}`; - } - } - // Negate - while (pattern.startsWith('!')) { - this.negate = !this.negate; - pattern = pattern.substr(1).trim(); - } - // Normalize slashes and ensures absolute root - pattern = Pattern.fixupPattern(pattern, homedir); - // Segments - this.segments = new internal_path_1.Path(pattern).segments; - // Trailing slash indicates the pattern should only match directories, not regular files - this.trailingSeparator = pathHelper - .normalizeSeparators(pattern) - .endsWith(path.sep); - pattern = pathHelper.safeTrimTrailingSeparator(pattern); - // Search path (literal path prior to the first glob segment) - let foundGlob = false; - const searchSegments = this.segments - .map(x => Pattern.getLiteral(x)) - .filter(x => !foundGlob && !(foundGlob = x === '')); - this.searchPath = new internal_path_1.Path(searchSegments).toString(); - // Root RegExp (required when determining partial match) - this.rootRegExp = new RegExp(Pattern.regExpEscape(searchSegments[0]), IS_WINDOWS ? 'i' : ''); - this.isImplicitPattern = isImplicitPattern; - // Create minimatch - const minimatchOptions = { - dot: true, - nobrace: true, - nocase: IS_WINDOWS, - nocomment: true, - noext: true, - nonegate: true - }; - pattern = IS_WINDOWS ? pattern.replace(/\\/g, '/') : pattern; - this.minimatch = new minimatch_1.Minimatch(pattern, minimatchOptions); - } - /** - * Matches the pattern against the specified path - */ - match(itemPath) { - // Last segment is globstar? - if (this.segments[this.segments.length - 1] === '**') { - // Normalize slashes - itemPath = pathHelper.normalizeSeparators(itemPath); - // Append a trailing slash. Otherwise Minimatch will not match the directory immediately - // preceding the globstar. For example, given the pattern `/foo/**`, Minimatch returns - // false for `/foo` but returns true for `/foo/`. Append a trailing slash to handle that quirk. - if (!itemPath.endsWith(path.sep) && this.isImplicitPattern === false) { - // Note, this is safe because the constructor ensures the pattern has an absolute root. - // For example, formats like C: and C:foo on Windows are resolved to an absolute root. - itemPath = `${itemPath}${path.sep}`; - } - } - else { - // Normalize slashes and trim unnecessary trailing slash - itemPath = pathHelper.safeTrimTrailingSeparator(itemPath); - } - // Match - if (this.minimatch.match(itemPath)) { - return this.trailingSeparator ? internal_match_kind_1.MatchKind.Directory : internal_match_kind_1.MatchKind.All; - } - return internal_match_kind_1.MatchKind.None; - } - /** - * Indicates whether the pattern may match descendants of the specified path - */ - partialMatch(itemPath) { - // Normalize slashes and trim unnecessary trailing slash - itemPath = pathHelper.safeTrimTrailingSeparator(itemPath); - // matchOne does not handle root path correctly - if (pathHelper.dirname(itemPath) === itemPath) { - return this.rootRegExp.test(itemPath); - } - return this.minimatch.matchOne(itemPath.split(IS_WINDOWS ? /\\+/ : /\/+/), this.minimatch.set[0], true); - } - /** - * Escapes glob patterns within a path - */ - static globEscape(s) { - return (IS_WINDOWS ? s : s.replace(/\\/g, '\\\\')) // escape '\' on Linux/macOS - .replace(/(\[)(?=[^/]+\])/g, '[[]') // escape '[' when ']' follows within the path segment - .replace(/\?/g, '[?]') // escape '?' - .replace(/\*/g, '[*]'); // escape '*' - } - /** - * Normalizes slashes and ensures absolute root - */ - static fixupPattern(pattern, homedir) { - // Empty - assert_1.default(pattern, 'pattern cannot be empty'); - // Must not contain `.` segment, unless first segment - // Must not contain `..` segment - const literalSegments = new internal_path_1.Path(pattern).segments.map(x => Pattern.getLiteral(x)); - assert_1.default(literalSegments.every((x, i) => (x !== '.' || i === 0) && x !== '..'), `Invalid pattern '${pattern}'. Relative pathing '.' and '..' is not allowed.`); - // Must not contain globs in root, e.g. Windows UNC path \\foo\b*r - assert_1.default(!pathHelper.hasRoot(pattern) || literalSegments[0], `Invalid pattern '${pattern}'. Root segment must not contain globs.`); - // Normalize slashes - pattern = pathHelper.normalizeSeparators(pattern); - // Replace leading `.` segment - if (pattern === '.' || pattern.startsWith(`.${path.sep}`)) { - pattern = Pattern.globEscape(process.cwd()) + pattern.substr(1); - } - // Replace leading `~` segment - else if (pattern === '~' || pattern.startsWith(`~${path.sep}`)) { - homedir = homedir || os.homedir(); - assert_1.default(homedir, 'Unable to determine HOME directory'); - assert_1.default(pathHelper.hasAbsoluteRoot(homedir), `Expected HOME directory to be a rooted path. Actual '${homedir}'`); - pattern = Pattern.globEscape(homedir) + pattern.substr(1); - } - // Replace relative drive root, e.g. pattern is C: or C:foo - else if (IS_WINDOWS && - (pattern.match(/^[A-Z]:$/i) || pattern.match(/^[A-Z]:[^\\]/i))) { - let root = pathHelper.ensureAbsoluteRoot('C:\\dummy-root', pattern.substr(0, 2)); - if (pattern.length > 2 && !root.endsWith('\\')) { - root += '\\'; - } - pattern = Pattern.globEscape(root) + pattern.substr(2); - } - // Replace relative root, e.g. pattern is \ or \foo - else if (IS_WINDOWS && (pattern === '\\' || pattern.match(/^\\[^\\]/))) { - let root = pathHelper.ensureAbsoluteRoot('C:\\dummy-root', '\\'); - if (!root.endsWith('\\')) { - root += '\\'; - } - pattern = Pattern.globEscape(root) + pattern.substr(1); - } - // Otherwise ensure absolute root - else { - pattern = pathHelper.ensureAbsoluteRoot(Pattern.globEscape(process.cwd()), pattern); - } - return pathHelper.normalizeSeparators(pattern); - } - /** - * Attempts to unescape a pattern segment to create a literal path segment. - * Otherwise returns empty string. - */ - static getLiteral(segment) { - let literal = ''; - for (let i = 0; i < segment.length; i++) { - const c = segment[i]; - // Escape - if (c === '\\' && !IS_WINDOWS && i + 1 < segment.length) { - literal += segment[++i]; - continue; - } - // Wildcard - else if (c === '*' || c === '?') { - return ''; - } - // Character set - else if (c === '[' && i + 1 < segment.length) { - let set = ''; - let closed = -1; - for (let i2 = i + 1; i2 < segment.length; i2++) { - const c2 = segment[i2]; - // Escape - if (c2 === '\\' && !IS_WINDOWS && i2 + 1 < segment.length) { - set += segment[++i2]; - continue; - } - // Closed - else if (c2 === ']') { - closed = i2; - break; - } - // Otherwise - else { - set += c2; - } - } - // Closed? - if (closed >= 0) { - // Cannot convert - if (set.length > 1) { - return ''; - } - // Convert to literal - if (set) { - literal += set; - i = closed; - continue; - } - } - // Otherwise fall thru - } - // Append - literal += c; - } - return literal; - } - /** - * Escapes regexp special characters - * https://javascript.info/regexp-escaping - */ - static regExpEscape(s) { - return s.replace(/[[\\^$.|?*+()]/g, '\\$&'); - } -} -exports.Pattern = Pattern; -//# sourceMappingURL=internal-pattern.js.map +// Note that the only major, minor, patch, and pre-release sections of +// the version string are capturing groups. The build metadata is not a +// capturing group, because it should not ever be used in version +// comparison. -/***/ }), +tok('FULL') +tok('FULLPLAIN') +src[t.FULLPLAIN] = 'v?' + src[t.MAINVERSION] + + src[t.PRERELEASE] + '?' + + src[t.BUILD] + '?' -/***/ 8530: -/***/ ((__unused_webpack_module, exports) => { +src[t.FULL] = '^' + src[t.FULLPLAIN] + '$' -"use strict"; +// like full, but allows v1.2.3 and =1.2.3, which people do sometimes. +// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty +// common in the npm registry. +tok('LOOSEPLAIN') +src[t.LOOSEPLAIN] = '[v=\\s]*' + src[t.MAINVERSIONLOOSE] + + src[t.PRERELEASELOOSE] + '?' + + src[t.BUILD] + '?' -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.SearchState = void 0; -class SearchState { - constructor(path, level) { - this.path = path; - this.level = level; - } -} -exports.SearchState = SearchState; -//# sourceMappingURL=internal-search-state.js.map +tok('LOOSE') +src[t.LOOSE] = '^' + src[t.LOOSEPLAIN] + '$' -/***/ }), +tok('GTLT') +src[t.GTLT] = '((?:<|>)?=?)' -/***/ 2001: -/***/ (function(__unused_webpack_module, exports) { +// Something like "2.*" or "1.2.x". +// Note that "x.x" is a valid xRange identifer, meaning "any version" +// Only the first item is strictly required. +tok('XRANGEIDENTIFIERLOOSE') +src[t.XRANGEIDENTIFIERLOOSE] = src[t.NUMERICIDENTIFIERLOOSE] + '|x|X|\\*' +tok('XRANGEIDENTIFIER') +src[t.XRANGEIDENTIFIER] = src[t.NUMERICIDENTIFIER] + '|x|X|\\*' -"use strict"; +tok('XRANGEPLAIN') +src[t.XRANGEPLAIN] = '[v=\\s]*(' + src[t.XRANGEIDENTIFIER] + ')' + + '(?:\\.(' + src[t.XRANGEIDENTIFIER] + ')' + + '(?:\\.(' + src[t.XRANGEIDENTIFIER] + ')' + + '(?:' + src[t.PRERELEASE] + ')?' + + src[t.BUILD] + '?' + + ')?)?' -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.PersonalAccessTokenCredentialHandler = exports.BearerCredentialHandler = exports.BasicCredentialHandler = void 0; -class BasicCredentialHandler { - constructor(username, password) { - this.username = username; - this.password = password; - } - prepareRequest(options) { - if (!options.headers) { - throw Error('The request has no headers'); - } - options.headers['Authorization'] = `Basic ${Buffer.from(`${this.username}:${this.password}`).toString('base64')}`; - } - // This handler cannot handle 401 - canHandleAuthentication() { - return false; - } - handleAuthentication() { - return __awaiter(this, void 0, void 0, function* () { - throw new Error('not implemented'); - }); - } +tok('XRANGEPLAINLOOSE') +src[t.XRANGEPLAINLOOSE] = '[v=\\s]*(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' + + '(?:\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' + + '(?:\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' + + '(?:' + src[t.PRERELEASELOOSE] + ')?' + + src[t.BUILD] + '?' + + ')?)?' + +tok('XRANGE') +src[t.XRANGE] = '^' + src[t.GTLT] + '\\s*' + src[t.XRANGEPLAIN] + '$' +tok('XRANGELOOSE') +src[t.XRANGELOOSE] = '^' + src[t.GTLT] + '\\s*' + src[t.XRANGEPLAINLOOSE] + '$' + +// Coercion. +// Extract anything that could conceivably be a part of a valid semver +tok('COERCE') +src[t.COERCE] = '(^|[^\\d])' + + '(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '})' + + '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' + + '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' + + '(?:$|[^\\d])' +tok('COERCERTL') +re[t.COERCERTL] = new RegExp(src[t.COERCE], 'g') +safeRe[t.COERCERTL] = new RegExp(makeSafeRe(src[t.COERCE]), 'g') + +// Tilde ranges. +// Meaning is "reasonably at or greater than" +tok('LONETILDE') +src[t.LONETILDE] = '(?:~>?)' + +tok('TILDETRIM') +src[t.TILDETRIM] = '(\\s*)' + src[t.LONETILDE] + '\\s+' +re[t.TILDETRIM] = new RegExp(src[t.TILDETRIM], 'g') +safeRe[t.TILDETRIM] = new RegExp(makeSafeRe(src[t.TILDETRIM]), 'g') +var tildeTrimReplace = '$1~' + +tok('TILDE') +src[t.TILDE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAIN] + '$' +tok('TILDELOOSE') +src[t.TILDELOOSE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAINLOOSE] + '$' + +// Caret ranges. +// Meaning is "at least and backwards compatible with" +tok('LONECARET') +src[t.LONECARET] = '(?:\\^)' + +tok('CARETTRIM') +src[t.CARETTRIM] = '(\\s*)' + src[t.LONECARET] + '\\s+' +re[t.CARETTRIM] = new RegExp(src[t.CARETTRIM], 'g') +safeRe[t.CARETTRIM] = new RegExp(makeSafeRe(src[t.CARETTRIM]), 'g') +var caretTrimReplace = '$1^' + +tok('CARET') +src[t.CARET] = '^' + src[t.LONECARET] + src[t.XRANGEPLAIN] + '$' +tok('CARETLOOSE') +src[t.CARETLOOSE] = '^' + src[t.LONECARET] + src[t.XRANGEPLAINLOOSE] + '$' + +// A simple gt/lt/eq thing, or just "" to indicate "any version" +tok('COMPARATORLOOSE') +src[t.COMPARATORLOOSE] = '^' + src[t.GTLT] + '\\s*(' + src[t.LOOSEPLAIN] + ')$|^$' +tok('COMPARATOR') +src[t.COMPARATOR] = '^' + src[t.GTLT] + '\\s*(' + src[t.FULLPLAIN] + ')$|^$' + +// An expression to strip any whitespace between the gtlt and the thing +// it modifies, so that `> 1.2.3` ==> `>1.2.3` +tok('COMPARATORTRIM') +src[t.COMPARATORTRIM] = '(\\s*)' + src[t.GTLT] + + '\\s*(' + src[t.LOOSEPLAIN] + '|' + src[t.XRANGEPLAIN] + ')' + +// this one has to use the /g flag +re[t.COMPARATORTRIM] = new RegExp(src[t.COMPARATORTRIM], 'g') +safeRe[t.COMPARATORTRIM] = new RegExp(makeSafeRe(src[t.COMPARATORTRIM]), 'g') +var comparatorTrimReplace = '$1$2$3' + +// Something like `1.2.3 - 1.2.4` +// Note that these all use the loose form, because they'll be +// checked against either the strict or loose comparator form +// later. +tok('HYPHENRANGE') +src[t.HYPHENRANGE] = '^\\s*(' + src[t.XRANGEPLAIN] + ')' + + '\\s+-\\s+' + + '(' + src[t.XRANGEPLAIN] + ')' + + '\\s*$' + +tok('HYPHENRANGELOOSE') +src[t.HYPHENRANGELOOSE] = '^\\s*(' + src[t.XRANGEPLAINLOOSE] + ')' + + '\\s+-\\s+' + + '(' + src[t.XRANGEPLAINLOOSE] + ')' + + '\\s*$' + +// Star ranges basically just allow anything at all. +tok('STAR') +src[t.STAR] = '(<|>)?=?\\s*\\*' + +// Compile to actual regexp objects. +// All are flag-free, unless they were created above with a flag. +for (var i = 0; i < R; i++) { + debug(i, src[i]) + if (!re[i]) { + re[i] = new RegExp(src[i]) + + // Replace all greedy whitespace to prevent regex dos issues. These regex are + // used internally via the safeRe object since all inputs in this library get + // normalized first to trim and collapse all extra whitespace. The original + // regexes are exported for userland consumption and lower level usage. A + // future breaking change could export the safer regex only with a note that + // all input should have extra whitespace removed. + safeRe[i] = new RegExp(makeSafeRe(src[i])) + } } -exports.BasicCredentialHandler = BasicCredentialHandler; -class BearerCredentialHandler { - constructor(token) { - this.token = token; - } - // currently implements pre-authorization - // TODO: support preAuth = false where it hooks on 401 - prepareRequest(options) { - if (!options.headers) { - throw Error('The request has no headers'); - } - options.headers['Authorization'] = `Bearer ${this.token}`; - } - // This handler cannot handle 401 - canHandleAuthentication() { - return false; - } - handleAuthentication() { - return __awaiter(this, void 0, void 0, function* () { - throw new Error('not implemented'); - }); + +exports.parse = parse +function parse (version, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false } + } + + if (version instanceof SemVer) { + return version + } + + if (typeof version !== 'string') { + return null + } + + if (version.length > MAX_LENGTH) { + return null + } + + var r = options.loose ? safeRe[t.LOOSE] : safeRe[t.FULL] + if (!r.test(version)) { + return null + } + + try { + return new SemVer(version, options) + } catch (er) { + return null + } } -exports.BearerCredentialHandler = BearerCredentialHandler; -class PersonalAccessTokenCredentialHandler { - constructor(token) { - this.token = token; - } - // currently implements pre-authorization - // TODO: support preAuth = false where it hooks on 401 - prepareRequest(options) { - if (!options.headers) { - throw Error('The request has no headers'); - } - options.headers['Authorization'] = `Basic ${Buffer.from(`PAT:${this.token}`).toString('base64')}`; - } - // This handler cannot handle 401 - canHandleAuthentication() { - return false; + +exports.valid = valid +function valid (version, options) { + var v = parse(version, options) + return v ? v.version : null +} + +exports.clean = clean +function clean (version, options) { + var s = parse(version.trim().replace(/^[=v]+/, ''), options) + return s ? s.version : null +} + +exports.SemVer = SemVer + +function SemVer (version, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false } - handleAuthentication() { - return __awaiter(this, void 0, void 0, function* () { - throw new Error('not implemented'); - }); + } + if (version instanceof SemVer) { + if (version.loose === options.loose) { + return version + } else { + version = version.version } -} -exports.PersonalAccessTokenCredentialHandler = PersonalAccessTokenCredentialHandler; -//# sourceMappingURL=auth.js.map + } else if (typeof version !== 'string') { + throw new TypeError('Invalid Version: ' + version) + } -/***/ }), + if (version.length > MAX_LENGTH) { + throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters') + } -/***/ 1825: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + if (!(this instanceof SemVer)) { + return new SemVer(version, options) + } -"use strict"; + debug('SemVer', version, options) + this.options = options + this.loose = !!options.loose -/* eslint-disable @typescript-eslint/no-explicit-any */ -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.HttpClient = exports.isHttps = exports.HttpClientResponse = exports.HttpClientError = exports.getProxyUrl = exports.MediaTypes = exports.Headers = exports.HttpCodes = void 0; -const http = __importStar(__nccwpck_require__(3685)); -const https = __importStar(__nccwpck_require__(5687)); -const pm = __importStar(__nccwpck_require__(4977)); -const tunnel = __importStar(__nccwpck_require__(4294)); -var HttpCodes; -(function (HttpCodes) { - HttpCodes[HttpCodes["OK"] = 200] = "OK"; - HttpCodes[HttpCodes["MultipleChoices"] = 300] = "MultipleChoices"; - HttpCodes[HttpCodes["MovedPermanently"] = 301] = "MovedPermanently"; - HttpCodes[HttpCodes["ResourceMoved"] = 302] = "ResourceMoved"; - HttpCodes[HttpCodes["SeeOther"] = 303] = "SeeOther"; - HttpCodes[HttpCodes["NotModified"] = 304] = "NotModified"; - HttpCodes[HttpCodes["UseProxy"] = 305] = "UseProxy"; - HttpCodes[HttpCodes["SwitchProxy"] = 306] = "SwitchProxy"; - HttpCodes[HttpCodes["TemporaryRedirect"] = 307] = "TemporaryRedirect"; - HttpCodes[HttpCodes["PermanentRedirect"] = 308] = "PermanentRedirect"; - HttpCodes[HttpCodes["BadRequest"] = 400] = "BadRequest"; - HttpCodes[HttpCodes["Unauthorized"] = 401] = "Unauthorized"; - HttpCodes[HttpCodes["PaymentRequired"] = 402] = "PaymentRequired"; - HttpCodes[HttpCodes["Forbidden"] = 403] = "Forbidden"; - HttpCodes[HttpCodes["NotFound"] = 404] = "NotFound"; - HttpCodes[HttpCodes["MethodNotAllowed"] = 405] = "MethodNotAllowed"; - HttpCodes[HttpCodes["NotAcceptable"] = 406] = "NotAcceptable"; - HttpCodes[HttpCodes["ProxyAuthenticationRequired"] = 407] = "ProxyAuthenticationRequired"; - HttpCodes[HttpCodes["RequestTimeout"] = 408] = "RequestTimeout"; - HttpCodes[HttpCodes["Conflict"] = 409] = "Conflict"; - HttpCodes[HttpCodes["Gone"] = 410] = "Gone"; - HttpCodes[HttpCodes["TooManyRequests"] = 429] = "TooManyRequests"; - HttpCodes[HttpCodes["InternalServerError"] = 500] = "InternalServerError"; - HttpCodes[HttpCodes["NotImplemented"] = 501] = "NotImplemented"; - HttpCodes[HttpCodes["BadGateway"] = 502] = "BadGateway"; - HttpCodes[HttpCodes["ServiceUnavailable"] = 503] = "ServiceUnavailable"; - HttpCodes[HttpCodes["GatewayTimeout"] = 504] = "GatewayTimeout"; -})(HttpCodes = exports.HttpCodes || (exports.HttpCodes = {})); -var Headers; -(function (Headers) { - Headers["Accept"] = "accept"; - Headers["ContentType"] = "content-type"; -})(Headers = exports.Headers || (exports.Headers = {})); -var MediaTypes; -(function (MediaTypes) { - MediaTypes["ApplicationJson"] = "application/json"; -})(MediaTypes = exports.MediaTypes || (exports.MediaTypes = {})); -/** - * Returns the proxy URL, depending upon the supplied url and proxy environment variables. - * @param serverUrl The server URL where the request will be sent. For example, https://api.github.com - */ -function getProxyUrl(serverUrl) { - const proxyUrl = pm.getProxyUrl(new URL(serverUrl)); - return proxyUrl ? proxyUrl.href : ''; + var m = version.trim().match(options.loose ? safeRe[t.LOOSE] : safeRe[t.FULL]) + + if (!m) { + throw new TypeError('Invalid Version: ' + version) + } + + this.raw = version + + // these are actually numbers + this.major = +m[1] + this.minor = +m[2] + this.patch = +m[3] + + if (this.major > MAX_SAFE_INTEGER || this.major < 0) { + throw new TypeError('Invalid major version') + } + + if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) { + throw new TypeError('Invalid minor version') + } + + if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) { + throw new TypeError('Invalid patch version') + } + + // numberify any prerelease numeric ids + if (!m[4]) { + this.prerelease = [] + } else { + this.prerelease = m[4].split('.').map(function (id) { + if (/^[0-9]+$/.test(id)) { + var num = +id + if (num >= 0 && num < MAX_SAFE_INTEGER) { + return num + } + } + return id + }) + } + + this.build = m[5] ? m[5].split('.') : [] + this.format() } -exports.getProxyUrl = getProxyUrl; -const HttpRedirectCodes = [ - HttpCodes.MovedPermanently, - HttpCodes.ResourceMoved, - HttpCodes.SeeOther, - HttpCodes.TemporaryRedirect, - HttpCodes.PermanentRedirect -]; -const HttpResponseRetryCodes = [ - HttpCodes.BadGateway, - HttpCodes.ServiceUnavailable, - HttpCodes.GatewayTimeout -]; -const RetryableHttpVerbs = ['OPTIONS', 'GET', 'DELETE', 'HEAD']; -const ExponentialBackoffCeiling = 10; -const ExponentialBackoffTimeSlice = 5; -class HttpClientError extends Error { - constructor(message, statusCode) { - super(message); - this.name = 'HttpClientError'; - this.statusCode = statusCode; - Object.setPrototypeOf(this, HttpClientError.prototype); - } + +SemVer.prototype.format = function () { + this.version = this.major + '.' + this.minor + '.' + this.patch + if (this.prerelease.length) { + this.version += '-' + this.prerelease.join('.') + } + return this.version } -exports.HttpClientError = HttpClientError; -class HttpClientResponse { - constructor(message) { - this.message = message; - } - readBody() { - return __awaiter(this, void 0, void 0, function* () { - return new Promise((resolve) => __awaiter(this, void 0, void 0, function* () { - let output = Buffer.alloc(0); - this.message.on('data', (chunk) => { - output = Buffer.concat([output, chunk]); - }); - this.message.on('end', () => { - resolve(output.toString()); - }); - })); - }); - } + +SemVer.prototype.toString = function () { + return this.version } -exports.HttpClientResponse = HttpClientResponse; -function isHttps(requestUrl) { - const parsedUrl = new URL(requestUrl); - return parsedUrl.protocol === 'https:'; + +SemVer.prototype.compare = function (other) { + debug('SemVer.compare', this.version, this.options, other) + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + return this.compareMain(other) || this.comparePre(other) } -exports.isHttps = isHttps; -class HttpClient { - constructor(userAgent, handlers, requestOptions) { - this._ignoreSslError = false; - this._allowRedirects = true; - this._allowRedirectDowngrade = false; - this._maxRedirects = 50; - this._allowRetries = false; - this._maxRetries = 1; - this._keepAlive = false; - this._disposed = false; - this.userAgent = userAgent; - this.handlers = handlers || []; - this.requestOptions = requestOptions; - if (requestOptions) { - if (requestOptions.ignoreSslError != null) { - this._ignoreSslError = requestOptions.ignoreSslError; - } - this._socketTimeout = requestOptions.socketTimeout; - if (requestOptions.allowRedirects != null) { - this._allowRedirects = requestOptions.allowRedirects; - } - if (requestOptions.allowRedirectDowngrade != null) { - this._allowRedirectDowngrade = requestOptions.allowRedirectDowngrade; - } - if (requestOptions.maxRedirects != null) { - this._maxRedirects = Math.max(requestOptions.maxRedirects, 0); - } - if (requestOptions.keepAlive != null) { - this._keepAlive = requestOptions.keepAlive; - } - if (requestOptions.allowRetries != null) { - this._allowRetries = requestOptions.allowRetries; - } - if (requestOptions.maxRetries != null) { - this._maxRetries = requestOptions.maxRetries; - } - } - } - options(requestUrl, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request('OPTIONS', requestUrl, null, additionalHeaders || {}); - }); - } - get(requestUrl, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request('GET', requestUrl, null, additionalHeaders || {}); - }); + +SemVer.prototype.compareMain = function (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + return compareIdentifiers(this.major, other.major) || + compareIdentifiers(this.minor, other.minor) || + compareIdentifiers(this.patch, other.patch) +} + +SemVer.prototype.comparePre = function (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + // NOT having a prerelease is > having one + if (this.prerelease.length && !other.prerelease.length) { + return -1 + } else if (!this.prerelease.length && other.prerelease.length) { + return 1 + } else if (!this.prerelease.length && !other.prerelease.length) { + return 0 + } + + var i = 0 + do { + var a = this.prerelease[i] + var b = other.prerelease[i] + debug('prerelease compare', i, a, b) + if (a === undefined && b === undefined) { + return 0 + } else if (b === undefined) { + return 1 + } else if (a === undefined) { + return -1 + } else if (a === b) { + continue + } else { + return compareIdentifiers(a, b) } - del(requestUrl, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request('DELETE', requestUrl, null, additionalHeaders || {}); - }); + } while (++i) +} + +SemVer.prototype.compareBuild = function (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } + + var i = 0 + do { + var a = this.build[i] + var b = other.build[i] + debug('prerelease compare', i, a, b) + if (a === undefined && b === undefined) { + return 0 + } else if (b === undefined) { + return 1 + } else if (a === undefined) { + return -1 + } else if (a === b) { + continue + } else { + return compareIdentifiers(a, b) } - post(requestUrl, data, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request('POST', requestUrl, data, additionalHeaders || {}); - }); + } while (++i) +} + +// preminor will bump the version up to the next minor release, and immediately +// down to pre-release. premajor and prepatch work the same way. +SemVer.prototype.inc = function (release, identifier) { + switch (release) { + case 'premajor': + this.prerelease.length = 0 + this.patch = 0 + this.minor = 0 + this.major++ + this.inc('pre', identifier) + break + case 'preminor': + this.prerelease.length = 0 + this.patch = 0 + this.minor++ + this.inc('pre', identifier) + break + case 'prepatch': + // If this is already a prerelease, it will bump to the next version + // drop any prereleases that might already exist, since they are not + // relevant at this point. + this.prerelease.length = 0 + this.inc('patch', identifier) + this.inc('pre', identifier) + break + // If the input is a non-prerelease version, this acts the same as + // prepatch. + case 'prerelease': + if (this.prerelease.length === 0) { + this.inc('patch', identifier) + } + this.inc('pre', identifier) + break + + case 'major': + // If this is a pre-major version, bump up to the same major version. + // Otherwise increment major. + // 1.0.0-5 bumps to 1.0.0 + // 1.1.0 bumps to 2.0.0 + if (this.minor !== 0 || + this.patch !== 0 || + this.prerelease.length === 0) { + this.major++ + } + this.minor = 0 + this.patch = 0 + this.prerelease = [] + break + case 'minor': + // If this is a pre-minor version, bump up to the same minor version. + // Otherwise increment minor. + // 1.2.0-5 bumps to 1.2.0 + // 1.2.1 bumps to 1.3.0 + if (this.patch !== 0 || this.prerelease.length === 0) { + this.minor++ + } + this.patch = 0 + this.prerelease = [] + break + case 'patch': + // If this is not a pre-release version, it will increment the patch. + // If it is a pre-release it will bump up to the same patch version. + // 1.2.0-5 patches to 1.2.0 + // 1.2.0 patches to 1.2.1 + if (this.prerelease.length === 0) { + this.patch++ + } + this.prerelease = [] + break + // This probably shouldn't be used publicly. + // 1.0.0 "pre" would become 1.0.0-0 which is the wrong direction. + case 'pre': + if (this.prerelease.length === 0) { + this.prerelease = [0] + } else { + var i = this.prerelease.length + while (--i >= 0) { + if (typeof this.prerelease[i] === 'number') { + this.prerelease[i]++ + i = -2 + } + } + if (i === -1) { + // didn't increment anything + this.prerelease.push(0) + } + } + if (identifier) { + // 1.2.0-beta.1 bumps to 1.2.0-beta.2, + // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0 + if (this.prerelease[0] === identifier) { + if (isNaN(this.prerelease[1])) { + this.prerelease = [identifier, 0] + } + } else { + this.prerelease = [identifier, 0] + } + } + break + + default: + throw new Error('invalid increment argument: ' + release) + } + this.format() + this.raw = this.version + return this +} + +exports.inc = inc +function inc (version, release, loose, identifier) { + if (typeof (loose) === 'string') { + identifier = loose + loose = undefined + } + + try { + return new SemVer(version, loose).inc(release, identifier).version + } catch (er) { + return null + } +} + +exports.diff = diff +function diff (version1, version2) { + if (eq(version1, version2)) { + return null + } else { + var v1 = parse(version1) + var v2 = parse(version2) + var prefix = '' + if (v1.prerelease.length || v2.prerelease.length) { + prefix = 'pre' + var defaultResult = 'prerelease' } - patch(requestUrl, data, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request('PATCH', requestUrl, data, additionalHeaders || {}); - }); + for (var key in v1) { + if (key === 'major' || key === 'minor' || key === 'patch') { + if (v1[key] !== v2[key]) { + return prefix + key + } + } } - put(requestUrl, data, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request('PUT', requestUrl, data, additionalHeaders || {}); - }); + return defaultResult // may be undefined + } +} + +exports.compareIdentifiers = compareIdentifiers + +var numeric = /^[0-9]+$/ +function compareIdentifiers (a, b) { + var anum = numeric.test(a) + var bnum = numeric.test(b) + + if (anum && bnum) { + a = +a + b = +b + } + + return a === b ? 0 + : (anum && !bnum) ? -1 + : (bnum && !anum) ? 1 + : a < b ? -1 + : 1 +} + +exports.rcompareIdentifiers = rcompareIdentifiers +function rcompareIdentifiers (a, b) { + return compareIdentifiers(b, a) +} + +exports.major = major +function major (a, loose) { + return new SemVer(a, loose).major +} + +exports.minor = minor +function minor (a, loose) { + return new SemVer(a, loose).minor +} + +exports.patch = patch +function patch (a, loose) { + return new SemVer(a, loose).patch +} + +exports.compare = compare +function compare (a, b, loose) { + return new SemVer(a, loose).compare(new SemVer(b, loose)) +} + +exports.compareLoose = compareLoose +function compareLoose (a, b) { + return compare(a, b, true) +} + +exports.compareBuild = compareBuild +function compareBuild (a, b, loose) { + var versionA = new SemVer(a, loose) + var versionB = new SemVer(b, loose) + return versionA.compare(versionB) || versionA.compareBuild(versionB) +} + +exports.rcompare = rcompare +function rcompare (a, b, loose) { + return compare(b, a, loose) +} + +exports.sort = sort +function sort (list, loose) { + return list.sort(function (a, b) { + return exports.compareBuild(a, b, loose) + }) +} + +exports.rsort = rsort +function rsort (list, loose) { + return list.sort(function (a, b) { + return exports.compareBuild(b, a, loose) + }) +} + +exports.gt = gt +function gt (a, b, loose) { + return compare(a, b, loose) > 0 +} + +exports.lt = lt +function lt (a, b, loose) { + return compare(a, b, loose) < 0 +} + +exports.eq = eq +function eq (a, b, loose) { + return compare(a, b, loose) === 0 +} + +exports.neq = neq +function neq (a, b, loose) { + return compare(a, b, loose) !== 0 +} + +exports.gte = gte +function gte (a, b, loose) { + return compare(a, b, loose) >= 0 +} + +exports.lte = lte +function lte (a, b, loose) { + return compare(a, b, loose) <= 0 +} + +exports.cmp = cmp +function cmp (a, op, b, loose) { + switch (op) { + case '===': + if (typeof a === 'object') + a = a.version + if (typeof b === 'object') + b = b.version + return a === b + + case '!==': + if (typeof a === 'object') + a = a.version + if (typeof b === 'object') + b = b.version + return a !== b + + case '': + case '=': + case '==': + return eq(a, b, loose) + + case '!=': + return neq(a, b, loose) + + case '>': + return gt(a, b, loose) + + case '>=': + return gte(a, b, loose) + + case '<': + return lt(a, b, loose) + + case '<=': + return lte(a, b, loose) + + default: + throw new TypeError('Invalid operator: ' + op) + } +} + +exports.Comparator = Comparator +function Comparator (comp, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false } - head(requestUrl, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request('HEAD', requestUrl, null, additionalHeaders || {}); - }); + } + + if (comp instanceof Comparator) { + if (comp.loose === !!options.loose) { + return comp + } else { + comp = comp.value } - sendStream(verb, requestUrl, stream, additionalHeaders) { - return __awaiter(this, void 0, void 0, function* () { - return this.request(verb, requestUrl, stream, additionalHeaders); - }); + } + + if (!(this instanceof Comparator)) { + return new Comparator(comp, options) + } + + comp = comp.trim().split(/\s+/).join(' ') + debug('comparator', comp, options) + this.options = options + this.loose = !!options.loose + this.parse(comp) + + if (this.semver === ANY) { + this.value = '' + } else { + this.value = this.operator + this.semver.version + } + + debug('comp', this) +} + +var ANY = {} +Comparator.prototype.parse = function (comp) { + var r = this.options.loose ? safeRe[t.COMPARATORLOOSE] : safeRe[t.COMPARATOR] + var m = comp.match(r) + + if (!m) { + throw new TypeError('Invalid comparator: ' + comp) + } + + this.operator = m[1] !== undefined ? m[1] : '' + if (this.operator === '=') { + this.operator = '' + } + + // if it literally is just '>' or '' then allow anything. + if (!m[2]) { + this.semver = ANY + } else { + this.semver = new SemVer(m[2], this.options.loose) + } +} + +Comparator.prototype.toString = function () { + return this.value +} + +Comparator.prototype.test = function (version) { + debug('Comparator.test', version, this.options.loose) + + if (this.semver === ANY || version === ANY) { + return true + } + + if (typeof version === 'string') { + try { + version = new SemVer(version, this.options) + } catch (er) { + return false } - /** - * Gets a typed object from an endpoint - * Be aware that not found returns a null. Other errors (4xx, 5xx) reject the promise - */ - getJson(requestUrl, additionalHeaders = {}) { - return __awaiter(this, void 0, void 0, function* () { - additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); - const res = yield this.get(requestUrl, additionalHeaders); - return this._processResponse(res, this.requestOptions); - }); + } + + return cmp(version, this.operator, this.semver, this.options) +} + +Comparator.prototype.intersects = function (comp, options) { + if (!(comp instanceof Comparator)) { + throw new TypeError('a Comparator is required') + } + + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false } - postJson(requestUrl, obj, additionalHeaders = {}) { - return __awaiter(this, void 0, void 0, function* () { - const data = JSON.stringify(obj, null, 2); - additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); - additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson); - const res = yield this.post(requestUrl, data, additionalHeaders); - return this._processResponse(res, this.requestOptions); - }); + } + + var rangeTmp + + if (this.operator === '') { + if (this.value === '') { + return true } - putJson(requestUrl, obj, additionalHeaders = {}) { - return __awaiter(this, void 0, void 0, function* () { - const data = JSON.stringify(obj, null, 2); - additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); - additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson); - const res = yield this.put(requestUrl, data, additionalHeaders); - return this._processResponse(res, this.requestOptions); - }); + rangeTmp = new Range(comp.value, options) + return satisfies(this.value, rangeTmp, options) + } else if (comp.operator === '') { + if (comp.value === '') { + return true } - patchJson(requestUrl, obj, additionalHeaders = {}) { - return __awaiter(this, void 0, void 0, function* () { - const data = JSON.stringify(obj, null, 2); - additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); - additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson); - const res = yield this.patch(requestUrl, data, additionalHeaders); - return this._processResponse(res, this.requestOptions); - }); + rangeTmp = new Range(this.value, options) + return satisfies(comp.semver, rangeTmp, options) + } + + var sameDirectionIncreasing = + (this.operator === '>=' || this.operator === '>') && + (comp.operator === '>=' || comp.operator === '>') + var sameDirectionDecreasing = + (this.operator === '<=' || this.operator === '<') && + (comp.operator === '<=' || comp.operator === '<') + var sameSemVer = this.semver.version === comp.semver.version + var differentDirectionsInclusive = + (this.operator === '>=' || this.operator === '<=') && + (comp.operator === '>=' || comp.operator === '<=') + var oppositeDirectionsLessThan = + cmp(this.semver, '<', comp.semver, options) && + ((this.operator === '>=' || this.operator === '>') && + (comp.operator === '<=' || comp.operator === '<')) + var oppositeDirectionsGreaterThan = + cmp(this.semver, '>', comp.semver, options) && + ((this.operator === '<=' || this.operator === '<') && + (comp.operator === '>=' || comp.operator === '>')) + + return sameDirectionIncreasing || sameDirectionDecreasing || + (sameSemVer && differentDirectionsInclusive) || + oppositeDirectionsLessThan || oppositeDirectionsGreaterThan +} + +exports.Range = Range +function Range (range, options) { + if (!options || typeof options !== 'object') { + options = { + loose: !!options, + includePrerelease: false } - /** - * Makes a raw http request. - * All other methods such as get, post, patch, and request ultimately call this. - * Prefer get, del, post and patch - */ - request(verb, requestUrl, data, headers) { - return __awaiter(this, void 0, void 0, function* () { - if (this._disposed) { - throw new Error('Client has already been disposed.'); - } - const parsedUrl = new URL(requestUrl); - let info = this._prepareRequest(verb, parsedUrl, headers); - // Only perform retries on reads since writes may not be idempotent. - const maxTries = this._allowRetries && RetryableHttpVerbs.includes(verb) - ? this._maxRetries + 1 - : 1; - let numTries = 0; - let response; - do { - response = yield this.requestRaw(info, data); - // Check if it's an authentication challenge - if (response && - response.message && - response.message.statusCode === HttpCodes.Unauthorized) { - let authenticationHandler; - for (const handler of this.handlers) { - if (handler.canHandleAuthentication(response)) { - authenticationHandler = handler; - break; - } - } - if (authenticationHandler) { - return authenticationHandler.handleAuthentication(this, info, data); - } - else { - // We have received an unauthorized response but have no handlers to handle it. - // Let the response return to the caller. - return response; - } - } - let redirectsRemaining = this._maxRedirects; - while (response.message.statusCode && - HttpRedirectCodes.includes(response.message.statusCode) && - this._allowRedirects && - redirectsRemaining > 0) { - const redirectUrl = response.message.headers['location']; - if (!redirectUrl) { - // if there's no location to redirect to, we won't - break; - } - const parsedRedirectUrl = new URL(redirectUrl); - if (parsedUrl.protocol === 'https:' && - parsedUrl.protocol !== parsedRedirectUrl.protocol && - !this._allowRedirectDowngrade) { - throw new Error('Redirect from HTTPS to HTTP protocol. This downgrade is not allowed for security reasons. If you want to allow this behavior, set the allowRedirectDowngrade option to true.'); - } - // we need to finish reading the response before reassigning response - // which will leak the open socket. - yield response.readBody(); - // strip authorization header if redirected to a different hostname - if (parsedRedirectUrl.hostname !== parsedUrl.hostname) { - for (const header in headers) { - // header names are case insensitive - if (header.toLowerCase() === 'authorization') { - delete headers[header]; - } - } - } - // let's make the request with the new redirectUrl - info = this._prepareRequest(verb, parsedRedirectUrl, headers); - response = yield this.requestRaw(info, data); - redirectsRemaining--; - } - if (!response.message.statusCode || - !HttpResponseRetryCodes.includes(response.message.statusCode)) { - // If not a retry code, return immediately instead of retrying - return response; - } - numTries += 1; - if (numTries < maxTries) { - yield response.readBody(); - yield this._performExponentialBackoff(numTries); - } - } while (numTries < maxTries); - return response; - }); - } - /** - * Needs to be called if keepAlive is set to true in request options. - */ - dispose() { - if (this._agent) { - this._agent.destroy(); - } - this._disposed = true; - } - /** - * Raw request. - * @param info - * @param data - */ - requestRaw(info, data) { - return __awaiter(this, void 0, void 0, function* () { - return new Promise((resolve, reject) => { - function callbackForResult(err, res) { - if (err) { - reject(err); - } - else if (!res) { - // If `err` is not passed, then `res` must be passed. - reject(new Error('Unknown error')); - } - else { - resolve(res); - } - } - this.requestRawWithCallback(info, data, callbackForResult); - }); - }); - } - /** - * Raw request with callback. - * @param info - * @param data - * @param onResult - */ - requestRawWithCallback(info, data, onResult) { - if (typeof data === 'string') { - if (!info.options.headers) { - info.options.headers = {}; - } - info.options.headers['Content-Length'] = Buffer.byteLength(data, 'utf8'); - } - let callbackCalled = false; - function handleResult(err, res) { - if (!callbackCalled) { - callbackCalled = true; - onResult(err, res); - } - } - const req = info.httpModule.request(info.options, (msg) => { - const res = new HttpClientResponse(msg); - handleResult(undefined, res); - }); - let socket; - req.on('socket', sock => { - socket = sock; - }); - // If we ever get disconnected, we want the socket to timeout eventually - req.setTimeout(this._socketTimeout || 3 * 60000, () => { - if (socket) { - socket.end(); - } - handleResult(new Error(`Request timeout: ${info.options.path}`)); - }); - req.on('error', function (err) { - // err has statusCode property - // res should have headers - handleResult(err); - }); - if (data && typeof data === 'string') { - req.write(data, 'utf8'); - } - if (data && typeof data !== 'string') { - data.on('close', function () { - req.end(); - }); - data.pipe(req); - } - else { - req.end(); - } - } - /** - * Gets an http agent. This function is useful when you need an http agent that handles - * routing through a proxy server - depending upon the url and proxy environment variables. - * @param serverUrl The server URL where the request will be sent. For example, https://api.github.com - */ - getAgent(serverUrl) { - const parsedUrl = new URL(serverUrl); - return this._getAgent(parsedUrl); - } - _prepareRequest(method, requestUrl, headers) { - const info = {}; - info.parsedUrl = requestUrl; - const usingSsl = info.parsedUrl.protocol === 'https:'; - info.httpModule = usingSsl ? https : http; - const defaultPort = usingSsl ? 443 : 80; - info.options = {}; - info.options.host = info.parsedUrl.hostname; - info.options.port = info.parsedUrl.port - ? parseInt(info.parsedUrl.port) - : defaultPort; - info.options.path = - (info.parsedUrl.pathname || '') + (info.parsedUrl.search || ''); - info.options.method = method; - info.options.headers = this._mergeHeaders(headers); - if (this.userAgent != null) { - info.options.headers['user-agent'] = this.userAgent; - } - info.options.agent = this._getAgent(info.parsedUrl); - // gives handlers an opportunity to participate - if (this.handlers) { - for (const handler of this.handlers) { - handler.prepareRequest(info.options); - } - } - return info; - } - _mergeHeaders(headers) { - if (this.requestOptions && this.requestOptions.headers) { - return Object.assign({}, lowercaseKeys(this.requestOptions.headers), lowercaseKeys(headers || {})); - } - return lowercaseKeys(headers || {}); - } - _getExistingOrDefaultHeader(additionalHeaders, header, _default) { - let clientHeader; - if (this.requestOptions && this.requestOptions.headers) { - clientHeader = lowercaseKeys(this.requestOptions.headers)[header]; - } - return additionalHeaders[header] || clientHeader || _default; - } - _getAgent(parsedUrl) { - let agent; - const proxyUrl = pm.getProxyUrl(parsedUrl); - const useProxy = proxyUrl && proxyUrl.hostname; - if (this._keepAlive && useProxy) { - agent = this._proxyAgent; - } - if (this._keepAlive && !useProxy) { - agent = this._agent; - } - // if agent is already assigned use that agent. - if (agent) { - return agent; - } - const usingSsl = parsedUrl.protocol === 'https:'; - let maxSockets = 100; - if (this.requestOptions) { - maxSockets = this.requestOptions.maxSockets || http.globalAgent.maxSockets; - } - // This is `useProxy` again, but we need to check `proxyURl` directly for TypeScripts's flow analysis. - if (proxyUrl && proxyUrl.hostname) { - const agentOptions = { - maxSockets, - keepAlive: this._keepAlive, - proxy: Object.assign(Object.assign({}, ((proxyUrl.username || proxyUrl.password) && { - proxyAuth: `${proxyUrl.username}:${proxyUrl.password}` - })), { host: proxyUrl.hostname, port: proxyUrl.port }) - }; - let tunnelAgent; - const overHttps = proxyUrl.protocol === 'https:'; - if (usingSsl) { - tunnelAgent = overHttps ? tunnel.httpsOverHttps : tunnel.httpsOverHttp; - } - else { - tunnelAgent = overHttps ? tunnel.httpOverHttps : tunnel.httpOverHttp; - } - agent = tunnelAgent(agentOptions); - this._proxyAgent = agent; - } - // if reusing agent across request and tunneling agent isn't assigned create a new agent - if (this._keepAlive && !agent) { - const options = { keepAlive: this._keepAlive, maxSockets }; - agent = usingSsl ? new https.Agent(options) : new http.Agent(options); - this._agent = agent; - } - // if not using private agent and tunnel agent isn't setup then use global agent - if (!agent) { - agent = usingSsl ? https.globalAgent : http.globalAgent; - } - if (usingSsl && this._ignoreSslError) { - // we don't want to set NODE_TLS_REJECT_UNAUTHORIZED=0 since that will affect request for entire process - // http.RequestOptions doesn't expose a way to modify RequestOptions.agent.options - // we have to cast it to any and change it directly - agent.options = Object.assign(agent.options || {}, { - rejectUnauthorized: false - }); - } - return agent; - } - _performExponentialBackoff(retryNumber) { - return __awaiter(this, void 0, void 0, function* () { - retryNumber = Math.min(ExponentialBackoffCeiling, retryNumber); - const ms = ExponentialBackoffTimeSlice * Math.pow(2, retryNumber); - return new Promise(resolve => setTimeout(() => resolve(), ms)); - }); - } - _processResponse(res, options) { - return __awaiter(this, void 0, void 0, function* () { - return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () { - const statusCode = res.message.statusCode || 0; - const response = { - statusCode, - result: null, - headers: {} - }; - // not found leads to null obj returned - if (statusCode === HttpCodes.NotFound) { - resolve(response); - } - // get the result from the body - function dateTimeDeserializer(key, value) { - if (typeof value === 'string') { - const a = new Date(value); - if (!isNaN(a.valueOf())) { - return a; - } - } - return value; - } - let obj; - let contents; - try { - contents = yield res.readBody(); - if (contents && contents.length > 0) { - if (options && options.deserializeDates) { - obj = JSON.parse(contents, dateTimeDeserializer); - } - else { - obj = JSON.parse(contents); - } - response.result = obj; - } - response.headers = res.message.headers; - } - catch (err) { - // Invalid resource (contents not json); leaving result obj null - } - // note that 3xx redirects are handled by the http layer. - if (statusCode > 299) { - let msg; - // if exception/error in body, attempt to get better error - if (obj && obj.message) { - msg = obj.message; - } - else if (contents && contents.length > 0) { - // it may be the case that the exception is in the body message as string - msg = contents; - } - else { - msg = `Failed request: (${statusCode})`; - } - const err = new HttpClientError(msg, statusCode); - err.result = response.result; - reject(err); - } - else { - resolve(response); - } - })); - }); - } -} -exports.HttpClient = HttpClient; -const lowercaseKeys = (obj) => Object.keys(obj).reduce((c, k) => ((c[k.toLowerCase()] = obj[k]), c), {}); -//# sourceMappingURL=index.js.map - -/***/ }), - -/***/ 4977: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; + } -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.checkBypass = exports.getProxyUrl = void 0; -function getProxyUrl(reqUrl) { - const usingSsl = reqUrl.protocol === 'https:'; - if (checkBypass(reqUrl)) { - return undefined; - } - const proxyVar = (() => { - if (usingSsl) { - return process.env['https_proxy'] || process.env['HTTPS_PROXY']; - } - else { - return process.env['http_proxy'] || process.env['HTTP_PROXY']; - } - })(); - if (proxyVar) { - return new URL(proxyVar); - } - else { - return undefined; - } -} -exports.getProxyUrl = getProxyUrl; -function checkBypass(reqUrl) { - if (!reqUrl.hostname) { - return false; - } - const noProxy = process.env['no_proxy'] || process.env['NO_PROXY'] || ''; - if (!noProxy) { - return false; - } - // Determine the request port - let reqPort; - if (reqUrl.port) { - reqPort = Number(reqUrl.port); - } - else if (reqUrl.protocol === 'http:') { - reqPort = 80; - } - else if (reqUrl.protocol === 'https:') { - reqPort = 443; - } - // Format the request hostname and hostname with port - const upperReqHosts = [reqUrl.hostname.toUpperCase()]; - if (typeof reqPort === 'number') { - upperReqHosts.push(`${upperReqHosts[0]}:${reqPort}`); - } - // Compare request host against noproxy - for (const upperNoProxyItem of noProxy - .split(',') - .map(x => x.trim().toUpperCase()) - .filter(x => x)) { - if (upperReqHosts.some(x => x === upperNoProxyItem)) { - return true; - } + if (range instanceof Range) { + if (range.loose === !!options.loose && + range.includePrerelease === !!options.includePrerelease) { + return range + } else { + return new Range(range.raw, options) } - return false; -} -exports.checkBypass = checkBypass; -//# sourceMappingURL=proxy.js.map - -/***/ }), - -/***/ 3771: -/***/ ((module, exports) => { + } -exports = module.exports = SemVer + if (range instanceof Comparator) { + return new Range(range.value, options) + } -var debug -/* istanbul ignore next */ -if (typeof process === 'object' && - process.env && - process.env.NODE_DEBUG && - /\bsemver\b/i.test(process.env.NODE_DEBUG)) { - debug = function () { - var args = Array.prototype.slice.call(arguments, 0) - args.unshift('SEMVER') - console.log.apply(console, args) + if (!(this instanceof Range)) { + return new Range(range, options) } -} else { - debug = function () {} -} -// Note: this is the semver.org version of the spec that it implements -// Not necessarily the package version of this code. -exports.SEMVER_SPEC_VERSION = '2.0.0' + this.options = options + this.loose = !!options.loose + this.includePrerelease = !!options.includePrerelease -var MAX_LENGTH = 256 -var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || - /* istanbul ignore next */ 9007199254740991 + // First reduce all whitespace as much as possible so we do not have to rely + // on potentially slow regexes like \s*. This is then stored and used for + // future error messages as well. + this.raw = range + .trim() + .split(/\s+/) + .join(' ') -// Max safe segment length for coercion. -var MAX_SAFE_COMPONENT_LENGTH = 16 + // First, split based on boolean or || + this.set = this.raw.split('||').map(function (range) { + return this.parseRange(range.trim()) + }, this).filter(function (c) { + // throw out any that are not relevant for whatever reason + return c.length + }) -// The actual regexps go on exports.re -var re = exports.re = [] -var src = exports.src = [] -var t = exports.tokens = {} -var R = 0 + if (!this.set.length) { + throw new TypeError('Invalid SemVer Range: ' + this.raw) + } -function tok (n) { - t[n] = R++ + this.format() } -// The following Regular Expressions can be used for tokenizing, -// validating, and parsing SemVer version strings. +Range.prototype.format = function () { + this.range = this.set.map(function (comps) { + return comps.join(' ').trim() + }).join('||').trim() + return this.range +} -// ## Numeric Identifier -// A single `0`, or a non-zero digit followed by zero or more digits. +Range.prototype.toString = function () { + return this.range +} -tok('NUMERICIDENTIFIER') -src[t.NUMERICIDENTIFIER] = '0|[1-9]\\d*' -tok('NUMERICIDENTIFIERLOOSE') -src[t.NUMERICIDENTIFIERLOOSE] = '[0-9]+' +Range.prototype.parseRange = function (range) { + var loose = this.options.loose + // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4` + var hr = loose ? safeRe[t.HYPHENRANGELOOSE] : safeRe[t.HYPHENRANGE] + range = range.replace(hr, hyphenReplace) + debug('hyphen replace', range) + // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5` + range = range.replace(safeRe[t.COMPARATORTRIM], comparatorTrimReplace) + debug('comparator trim', range, safeRe[t.COMPARATORTRIM]) -// ## Non-numeric Identifier -// Zero or more digits, followed by a letter or hyphen, and then zero or -// more letters, digits, or hyphens. + // `~ 1.2.3` => `~1.2.3` + range = range.replace(safeRe[t.TILDETRIM], tildeTrimReplace) -tok('NONNUMERICIDENTIFIER') -src[t.NONNUMERICIDENTIFIER] = '\\d*[a-zA-Z-][a-zA-Z0-9-]*' + // `^ 1.2.3` => `^1.2.3` + range = range.replace(safeRe[t.CARETTRIM], caretTrimReplace) -// ## Main Version -// Three dot-separated numeric identifiers. + // normalize spaces + range = range.split(/\s+/).join(' ') -tok('MAINVERSION') -src[t.MAINVERSION] = '(' + src[t.NUMERICIDENTIFIER] + ')\\.' + - '(' + src[t.NUMERICIDENTIFIER] + ')\\.' + - '(' + src[t.NUMERICIDENTIFIER] + ')' + // At this point, the range is completely trimmed and + // ready to be split into comparators. -tok('MAINVERSIONLOOSE') -src[t.MAINVERSIONLOOSE] = '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\.' + - '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\.' + - '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')' + var compRe = loose ? safeRe[t.COMPARATORLOOSE] : safeRe[t.COMPARATOR] + var set = range.split(' ').map(function (comp) { + return parseComparator(comp, this.options) + }, this).join(' ').split(/\s+/) + if (this.options.loose) { + // in loose mode, throw out any that are not valid comparators + set = set.filter(function (comp) { + return !!comp.match(compRe) + }) + } + set = set.map(function (comp) { + return new Comparator(comp, this.options) + }, this) -// ## Pre-release Version Identifier -// A numeric identifier, or a non-numeric identifier. + return set +} -tok('PRERELEASEIDENTIFIER') -src[t.PRERELEASEIDENTIFIER] = '(?:' + src[t.NUMERICIDENTIFIER] + - '|' + src[t.NONNUMERICIDENTIFIER] + ')' +Range.prototype.intersects = function (range, options) { + if (!(range instanceof Range)) { + throw new TypeError('a Range is required') + } -tok('PRERELEASEIDENTIFIERLOOSE') -src[t.PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[t.NUMERICIDENTIFIERLOOSE] + - '|' + src[t.NONNUMERICIDENTIFIER] + ')' + return this.set.some(function (thisComparators) { + return ( + isSatisfiable(thisComparators, options) && + range.set.some(function (rangeComparators) { + return ( + isSatisfiable(rangeComparators, options) && + thisComparators.every(function (thisComparator) { + return rangeComparators.every(function (rangeComparator) { + return thisComparator.intersects(rangeComparator, options) + }) + }) + ) + }) + ) + }) +} -// ## Pre-release Version -// Hyphen, followed by one or more dot-separated pre-release version -// identifiers. - -tok('PRERELEASE') -src[t.PRERELEASE] = '(?:-(' + src[t.PRERELEASEIDENTIFIER] + - '(?:\\.' + src[t.PRERELEASEIDENTIFIER] + ')*))' +// take a set of comparators and determine whether there +// exists a version which can satisfy it +function isSatisfiable (comparators, options) { + var result = true + var remainingComparators = comparators.slice() + var testComparator = remainingComparators.pop() -tok('PRERELEASELOOSE') -src[t.PRERELEASELOOSE] = '(?:-?(' + src[t.PRERELEASEIDENTIFIERLOOSE] + - '(?:\\.' + src[t.PRERELEASEIDENTIFIERLOOSE] + ')*))' + while (result && remainingComparators.length) { + result = remainingComparators.every(function (otherComparator) { + return testComparator.intersects(otherComparator, options) + }) -// ## Build Metadata Identifier -// Any combination of digits, letters, or hyphens. + testComparator = remainingComparators.pop() + } -tok('BUILDIDENTIFIER') -src[t.BUILDIDENTIFIER] = '[0-9A-Za-z-]+' + return result +} -// ## Build Metadata -// Plus sign, followed by one or more period-separated build metadata -// identifiers. +// Mostly just for testing and legacy API reasons +exports.toComparators = toComparators +function toComparators (range, options) { + return new Range(range, options).set.map(function (comp) { + return comp.map(function (c) { + return c.value + }).join(' ').trim().split(' ') + }) +} -tok('BUILD') -src[t.BUILD] = '(?:\\+(' + src[t.BUILDIDENTIFIER] + - '(?:\\.' + src[t.BUILDIDENTIFIER] + ')*))' +// comprised of xranges, tildes, stars, and gtlt's at this point. +// already replaced the hyphen ranges +// turn into a set of JUST comparators. +function parseComparator (comp, options) { + debug('comp', comp, options) + comp = replaceCarets(comp, options) + debug('caret', comp) + comp = replaceTildes(comp, options) + debug('tildes', comp) + comp = replaceXRanges(comp, options) + debug('xrange', comp) + comp = replaceStars(comp, options) + debug('stars', comp) + return comp +} -// ## Full Version String -// A main version, followed optionally by a pre-release version and -// build metadata. +function isX (id) { + return !id || id.toLowerCase() === 'x' || id === '*' +} -// Note that the only major, minor, patch, and pre-release sections of -// the version string are capturing groups. The build metadata is not a -// capturing group, because it should not ever be used in version -// comparison. +// ~, ~> --> * (any, kinda silly) +// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0 +// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0 +// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0 +// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0 +// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0 +function replaceTildes (comp, options) { + return comp.trim().split(/\s+/).map(function (comp) { + return replaceTilde(comp, options) + }).join(' ') +} -tok('FULL') -tok('FULLPLAIN') -src[t.FULLPLAIN] = 'v?' + src[t.MAINVERSION] + - src[t.PRERELEASE] + '?' + - src[t.BUILD] + '?' +function replaceTilde (comp, options) { + var r = options.loose ? safeRe[t.TILDELOOSE] : safeRe[t.TILDE] + return comp.replace(r, function (_, M, m, p, pr) { + debug('tilde', comp, _, M, m, p, pr) + var ret -src[t.FULL] = '^' + src[t.FULLPLAIN] + '$' + if (isX(M)) { + ret = '' + } else if (isX(m)) { + ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0' + } else if (isX(p)) { + // ~1.2 == >=1.2.0 <1.3.0 + ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0' + } else if (pr) { + debug('replaceTilde pr', pr) + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + M + '.' + (+m + 1) + '.0' + } else { + // ~1.2.3 == >=1.2.3 <1.3.0 + ret = '>=' + M + '.' + m + '.' + p + + ' <' + M + '.' + (+m + 1) + '.0' + } -// like full, but allows v1.2.3 and =1.2.3, which people do sometimes. -// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty -// common in the npm registry. -tok('LOOSEPLAIN') -src[t.LOOSEPLAIN] = '[v=\\s]*' + src[t.MAINVERSIONLOOSE] + - src[t.PRERELEASELOOSE] + '?' + - src[t.BUILD] + '?' + debug('tilde return', ret) + return ret + }) +} -tok('LOOSE') -src[t.LOOSE] = '^' + src[t.LOOSEPLAIN] + '$' +// ^ --> * (any, kinda silly) +// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0 +// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0 +// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0 +// ^1.2.3 --> >=1.2.3 <2.0.0 +// ^1.2.0 --> >=1.2.0 <2.0.0 +function replaceCarets (comp, options) { + return comp.trim().split(/\s+/).map(function (comp) { + return replaceCaret(comp, options) + }).join(' ') +} -tok('GTLT') -src[t.GTLT] = '((?:<|>)?=?)' +function replaceCaret (comp, options) { + debug('caret', comp, options) + var r = options.loose ? safeRe[t.CARETLOOSE] : safeRe[t.CARET] + return comp.replace(r, function (_, M, m, p, pr) { + debug('caret', comp, _, M, m, p, pr) + var ret -// Something like "2.*" or "1.2.x". -// Note that "x.x" is a valid xRange identifer, meaning "any version" -// Only the first item is strictly required. -tok('XRANGEIDENTIFIERLOOSE') -src[t.XRANGEIDENTIFIERLOOSE] = src[t.NUMERICIDENTIFIERLOOSE] + '|x|X|\\*' -tok('XRANGEIDENTIFIER') -src[t.XRANGEIDENTIFIER] = src[t.NUMERICIDENTIFIER] + '|x|X|\\*' + if (isX(M)) { + ret = '' + } else if (isX(m)) { + ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0' + } else if (isX(p)) { + if (M === '0') { + ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0' + } else { + ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0' + } + } else if (pr) { + debug('replaceCaret pr', pr) + if (M === '0') { + if (m === '0') { + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + M + '.' + m + '.' + (+p + 1) + } else { + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + M + '.' + (+m + 1) + '.0' + } + } else { + ret = '>=' + M + '.' + m + '.' + p + '-' + pr + + ' <' + (+M + 1) + '.0.0' + } + } else { + debug('no pr') + if (M === '0') { + if (m === '0') { + ret = '>=' + M + '.' + m + '.' + p + + ' <' + M + '.' + m + '.' + (+p + 1) + } else { + ret = '>=' + M + '.' + m + '.' + p + + ' <' + M + '.' + (+m + 1) + '.0' + } + } else { + ret = '>=' + M + '.' + m + '.' + p + + ' <' + (+M + 1) + '.0.0' + } + } -tok('XRANGEPLAIN') -src[t.XRANGEPLAIN] = '[v=\\s]*(' + src[t.XRANGEIDENTIFIER] + ')' + - '(?:\\.(' + src[t.XRANGEIDENTIFIER] + ')' + - '(?:\\.(' + src[t.XRANGEIDENTIFIER] + ')' + - '(?:' + src[t.PRERELEASE] + ')?' + - src[t.BUILD] + '?' + - ')?)?' + debug('caret return', ret) + return ret + }) +} -tok('XRANGEPLAINLOOSE') -src[t.XRANGEPLAINLOOSE] = '[v=\\s]*(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' + - '(?:\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' + - '(?:\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' + - '(?:' + src[t.PRERELEASELOOSE] + ')?' + - src[t.BUILD] + '?' + - ')?)?' +function replaceXRanges (comp, options) { + debug('replaceXRanges', comp, options) + return comp.split(/\s+/).map(function (comp) { + return replaceXRange(comp, options) + }).join(' ') +} -tok('XRANGE') -src[t.XRANGE] = '^' + src[t.GTLT] + '\\s*' + src[t.XRANGEPLAIN] + '$' -tok('XRANGELOOSE') -src[t.XRANGELOOSE] = '^' + src[t.GTLT] + '\\s*' + src[t.XRANGEPLAINLOOSE] + '$' +function replaceXRange (comp, options) { + comp = comp.trim() + var r = options.loose ? safeRe[t.XRANGELOOSE] : safeRe[t.XRANGE] + return comp.replace(r, function (ret, gtlt, M, m, p, pr) { + debug('xRange', comp, ret, gtlt, M, m, p, pr) + var xM = isX(M) + var xm = xM || isX(m) + var xp = xm || isX(p) + var anyX = xp -// Coercion. -// Extract anything that could conceivably be a part of a valid semver -tok('COERCE') -src[t.COERCE] = '(^|[^\\d])' + - '(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '})' + - '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' + - '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' + - '(?:$|[^\\d])' -tok('COERCERTL') -re[t.COERCERTL] = new RegExp(src[t.COERCE], 'g') + if (gtlt === '=' && anyX) { + gtlt = '' + } -// Tilde ranges. -// Meaning is "reasonably at or greater than" -tok('LONETILDE') -src[t.LONETILDE] = '(?:~>?)' + // if we're including prereleases in the match, then we need + // to fix this to -0, the lowest possible prerelease value + pr = options.includePrerelease ? '-0' : '' -tok('TILDETRIM') -src[t.TILDETRIM] = '(\\s*)' + src[t.LONETILDE] + '\\s+' -re[t.TILDETRIM] = new RegExp(src[t.TILDETRIM], 'g') -var tildeTrimReplace = '$1~' + if (xM) { + if (gtlt === '>' || gtlt === '<') { + // nothing is allowed + ret = '<0.0.0-0' + } else { + // nothing is forbidden + ret = '*' + } + } else if (gtlt && anyX) { + // we know patch is an x, because we have any x at all. + // replace X with 0 + if (xm) { + m = 0 + } + p = 0 -tok('TILDE') -src[t.TILDE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAIN] + '$' -tok('TILDELOOSE') -src[t.TILDELOOSE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAINLOOSE] + '$' + if (gtlt === '>') { + // >1 => >=2.0.0 + // >1.2 => >=1.3.0 + // >1.2.3 => >= 1.2.4 + gtlt = '>=' + if (xm) { + M = +M + 1 + m = 0 + p = 0 + } else { + m = +m + 1 + p = 0 + } + } else if (gtlt === '<=') { + // <=0.7.x is actually <0.8.0, since any 0.7.x should + // pass. Similarly, <=7.x is actually <8.0.0, etc. + gtlt = '<' + if (xm) { + M = +M + 1 + } else { + m = +m + 1 + } + } -// Caret ranges. -// Meaning is "at least and backwards compatible with" -tok('LONECARET') -src[t.LONECARET] = '(?:\\^)' + ret = gtlt + M + '.' + m + '.' + p + pr + } else if (xm) { + ret = '>=' + M + '.0.0' + pr + ' <' + (+M + 1) + '.0.0' + pr + } else if (xp) { + ret = '>=' + M + '.' + m + '.0' + pr + + ' <' + M + '.' + (+m + 1) + '.0' + pr + } -tok('CARETTRIM') -src[t.CARETTRIM] = '(\\s*)' + src[t.LONECARET] + '\\s+' -re[t.CARETTRIM] = new RegExp(src[t.CARETTRIM], 'g') -var caretTrimReplace = '$1^' + debug('xRange return', ret) -tok('CARET') -src[t.CARET] = '^' + src[t.LONECARET] + src[t.XRANGEPLAIN] + '$' -tok('CARETLOOSE') -src[t.CARETLOOSE] = '^' + src[t.LONECARET] + src[t.XRANGEPLAINLOOSE] + '$' + return ret + }) +} -// A simple gt/lt/eq thing, or just "" to indicate "any version" -tok('COMPARATORLOOSE') -src[t.COMPARATORLOOSE] = '^' + src[t.GTLT] + '\\s*(' + src[t.LOOSEPLAIN] + ')$|^$' -tok('COMPARATOR') -src[t.COMPARATOR] = '^' + src[t.GTLT] + '\\s*(' + src[t.FULLPLAIN] + ')$|^$' +// Because * is AND-ed with everything else in the comparator, +// and '' means "any version", just remove the *s entirely. +function replaceStars (comp, options) { + debug('replaceStars', comp, options) + // Looseness is ignored here. star is always as loose as it gets! + return comp.trim().replace(safeRe[t.STAR], '') +} -// An expression to strip any whitespace between the gtlt and the thing -// it modifies, so that `> 1.2.3` ==> `>1.2.3` -tok('COMPARATORTRIM') -src[t.COMPARATORTRIM] = '(\\s*)' + src[t.GTLT] + - '\\s*(' + src[t.LOOSEPLAIN] + '|' + src[t.XRANGEPLAIN] + ')' +// This function is passed to string.replace(re[t.HYPHENRANGE]) +// M, m, patch, prerelease, build +// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5 +// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do +// 1.2 - 3.4 => >=1.2.0 <3.5.0 +function hyphenReplace ($0, + from, fM, fm, fp, fpr, fb, + to, tM, tm, tp, tpr, tb) { + if (isX(fM)) { + from = '' + } else if (isX(fm)) { + from = '>=' + fM + '.0.0' + } else if (isX(fp)) { + from = '>=' + fM + '.' + fm + '.0' + } else { + from = '>=' + from + } -// this one has to use the /g flag -re[t.COMPARATORTRIM] = new RegExp(src[t.COMPARATORTRIM], 'g') -var comparatorTrimReplace = '$1$2$3' + if (isX(tM)) { + to = '' + } else if (isX(tm)) { + to = '<' + (+tM + 1) + '.0.0' + } else if (isX(tp)) { + to = '<' + tM + '.' + (+tm + 1) + '.0' + } else if (tpr) { + to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr + } else { + to = '<=' + to + } -// Something like `1.2.3 - 1.2.4` -// Note that these all use the loose form, because they'll be -// checked against either the strict or loose comparator form -// later. -tok('HYPHENRANGE') -src[t.HYPHENRANGE] = '^\\s*(' + src[t.XRANGEPLAIN] + ')' + - '\\s+-\\s+' + - '(' + src[t.XRANGEPLAIN] + ')' + - '\\s*$' + return (from + ' ' + to).trim() +} -tok('HYPHENRANGELOOSE') -src[t.HYPHENRANGELOOSE] = '^\\s*(' + src[t.XRANGEPLAINLOOSE] + ')' + - '\\s+-\\s+' + - '(' + src[t.XRANGEPLAINLOOSE] + ')' + - '\\s*$' +// if ANY of the sets match ALL of its comparators, then pass +Range.prototype.test = function (version) { + if (!version) { + return false + } -// Star ranges basically just allow anything at all. -tok('STAR') -src[t.STAR] = '(<|>)?=?\\s*\\*' + if (typeof version === 'string') { + try { + version = new SemVer(version, this.options) + } catch (er) { + return false + } + } -// Compile to actual regexp objects. -// All are flag-free, unless they were created above with a flag. -for (var i = 0; i < R; i++) { - debug(i, src[i]) - if (!re[i]) { - re[i] = new RegExp(src[i]) + for (var i = 0; i < this.set.length; i++) { + if (testSet(this.set[i], version, this.options)) { + return true + } } + return false } -exports.parse = parse -function parse (version, options) { - if (!options || typeof options !== 'object') { - options = { - loose: !!options, - includePrerelease: false +function testSet (set, version, options) { + for (var i = 0; i < set.length; i++) { + if (!set[i].test(version)) { + return false } } - if (version instanceof SemVer) { - return version - } + if (version.prerelease.length && !options.includePrerelease) { + // Find the set of versions that are allowed to have prereleases + // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0 + // That should allow `1.2.3-pr.2` to pass. + // However, `1.2.4-alpha.notready` should NOT be allowed, + // even though it's within the range set by the comparators. + for (i = 0; i < set.length; i++) { + debug(set[i].semver) + if (set[i].semver === ANY) { + continue + } - if (typeof version !== 'string') { - return null - } + if (set[i].semver.prerelease.length > 0) { + var allowed = set[i].semver + if (allowed.major === version.major && + allowed.minor === version.minor && + allowed.patch === version.patch) { + return true + } + } + } - if (version.length > MAX_LENGTH) { - return null + // Version has a -pre, but it's not one of the ones we like. + return false } - var r = options.loose ? re[t.LOOSE] : re[t.FULL] - if (!r.test(version)) { - return null + return true +} + +exports.satisfies = satisfies +function satisfies (version, range, options) { + try { + range = new Range(range, options) + } catch (er) { + return false } + return range.test(version) +} +exports.maxSatisfying = maxSatisfying +function maxSatisfying (versions, range, options) { + var max = null + var maxSV = null try { - return new SemVer(version, options) + var rangeObj = new Range(range, options) } catch (er) { return null } + versions.forEach(function (v) { + if (rangeObj.test(v)) { + // satisfies(v, range, options) + if (!max || maxSV.compare(v) === -1) { + // compare(max, v, true) + max = v + maxSV = new SemVer(max, options) + } + } + }) + return max } -exports.valid = valid -function valid (version, options) { - var v = parse(version, options) - return v ? v.version : null +exports.minSatisfying = minSatisfying +function minSatisfying (versions, range, options) { + var min = null + var minSV = null + try { + var rangeObj = new Range(range, options) + } catch (er) { + return null + } + versions.forEach(function (v) { + if (rangeObj.test(v)) { + // satisfies(v, range, options) + if (!min || minSV.compare(v) === 1) { + // compare(min, v, true) + min = v + minSV = new SemVer(min, options) + } + } + }) + return min } -exports.clean = clean -function clean (version, options) { - var s = parse(version.trim().replace(/^[=v]+/, ''), options) - return s ? s.version : null -} +exports.minVersion = minVersion +function minVersion (range, loose) { + range = new Range(range, loose) -exports.SemVer = SemVer + var minver = new SemVer('0.0.0') + if (range.test(minver)) { + return minver + } -function SemVer (version, options) { - if (!options || typeof options !== 'object') { - options = { - loose: !!options, - includePrerelease: false - } - } - if (version instanceof SemVer) { - if (version.loose === options.loose) { - return version - } else { - version = version.version - } - } else if (typeof version !== 'string') { - throw new TypeError('Invalid Version: ' + version) + minver = new SemVer('0.0.0-0') + if (range.test(minver)) { + return minver } - if (version.length > MAX_LENGTH) { - throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters') - } + minver = null + for (var i = 0; i < range.set.length; ++i) { + var comparators = range.set[i] - if (!(this instanceof SemVer)) { - return new SemVer(version, options) + comparators.forEach(function (comparator) { + // Clone to avoid manipulating the comparator's semver object. + var compver = new SemVer(comparator.semver.version) + switch (comparator.operator) { + case '>': + if (compver.prerelease.length === 0) { + compver.patch++ + } else { + compver.prerelease.push(0) + } + compver.raw = compver.format() + /* fallthrough */ + case '': + case '>=': + if (!minver || gt(minver, compver)) { + minver = compver + } + break + case '<': + case '<=': + /* Ignore maximum versions */ + break + /* istanbul ignore next */ + default: + throw new Error('Unexpected operation: ' + comparator.operator) + } + }) } - debug('SemVer', version, options) - this.options = options - this.loose = !!options.loose + if (minver && range.test(minver)) { + return minver + } - var m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL]) + return null +} - if (!m) { - throw new TypeError('Invalid Version: ' + version) +exports.validRange = validRange +function validRange (range, options) { + try { + // Return '*' instead of '' so that truthiness works. + // This will throw if it's invalid anyway + return new Range(range, options).range || '*' + } catch (er) { + return null } +} - this.raw = version +// Determine if version is less than all the versions possible in the range +exports.ltr = ltr +function ltr (version, range, options) { + return outside(version, range, '<', options) +} - // these are actually numbers - this.major = +m[1] - this.minor = +m[2] - this.patch = +m[3] +// Determine if version is greater than all the versions possible in the range. +exports.gtr = gtr +function gtr (version, range, options) { + return outside(version, range, '>', options) +} - if (this.major > MAX_SAFE_INTEGER || this.major < 0) { - throw new TypeError('Invalid major version') - } +exports.outside = outside +function outside (version, range, hilo, options) { + version = new SemVer(version, options) + range = new Range(range, options) - if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) { - throw new TypeError('Invalid minor version') + var gtfn, ltefn, ltfn, comp, ecomp + switch (hilo) { + case '>': + gtfn = gt + ltefn = lte + ltfn = lt + comp = '>' + ecomp = '>=' + break + case '<': + gtfn = lt + ltefn = gte + ltfn = gt + comp = '<' + ecomp = '<=' + break + default: + throw new TypeError('Must provide a hilo val of "<" or ">"') } - if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) { - throw new TypeError('Invalid patch version') + // If it satisifes the range it is not outside + if (satisfies(version, range, options)) { + return false } - // numberify any prerelease numeric ids - if (!m[4]) { - this.prerelease = [] - } else { - this.prerelease = m[4].split('.').map(function (id) { - if (/^[0-9]+$/.test(id)) { - var num = +id - if (num >= 0 && num < MAX_SAFE_INTEGER) { - return num - } + // From now on, variable terms are as if we're in "gtr" mode. + // but note that everything is flipped for the "ltr" function. + + for (var i = 0; i < range.set.length; ++i) { + var comparators = range.set[i] + + var high = null + var low = null + + comparators.forEach(function (comparator) { + if (comparator.semver === ANY) { + comparator = new Comparator('>=0.0.0') + } + high = high || comparator + low = low || comparator + if (gtfn(comparator.semver, high.semver, options)) { + high = comparator + } else if (ltfn(comparator.semver, low.semver, options)) { + low = comparator } - return id }) - } - this.build = m[5] ? m[5].split('.') : [] - this.format() -} + // If the edge version comparator has a operator then our version + // isn't outside it + if (high.operator === comp || high.operator === ecomp) { + return false + } -SemVer.prototype.format = function () { - this.version = this.major + '.' + this.minor + '.' + this.patch - if (this.prerelease.length) { - this.version += '-' + this.prerelease.join('.') + // If the lowest version comparator has an operator and our version + // is less than it then it isn't higher than the range + if ((!low.operator || low.operator === comp) && + ltefn(version, low.semver)) { + return false + } else if (low.operator === ecomp && ltfn(version, low.semver)) { + return false + } } - return this.version + return true } -SemVer.prototype.toString = function () { - return this.version +exports.prerelease = prerelease +function prerelease (version, options) { + var parsed = parse(version, options) + return (parsed && parsed.prerelease.length) ? parsed.prerelease : null } -SemVer.prototype.compare = function (other) { - debug('SemVer.compare', this.version, this.options, other) - if (!(other instanceof SemVer)) { - other = new SemVer(other, this.options) - } - - return this.compareMain(other) || this.comparePre(other) +exports.intersects = intersects +function intersects (r1, r2, options) { + r1 = new Range(r1, options) + r2 = new Range(r2, options) + return r1.intersects(r2) } -SemVer.prototype.compareMain = function (other) { - if (!(other instanceof SemVer)) { - other = new SemVer(other, this.options) +exports.coerce = coerce +function coerce (version, options) { + if (version instanceof SemVer) { + return version } - return compareIdentifiers(this.major, other.major) || - compareIdentifiers(this.minor, other.minor) || - compareIdentifiers(this.patch, other.patch) -} - -SemVer.prototype.comparePre = function (other) { - if (!(other instanceof SemVer)) { - other = new SemVer(other, this.options) + if (typeof version === 'number') { + version = String(version) } - // NOT having a prerelease is > having one - if (this.prerelease.length && !other.prerelease.length) { - return -1 - } else if (!this.prerelease.length && other.prerelease.length) { - return 1 - } else if (!this.prerelease.length && !other.prerelease.length) { - return 0 + if (typeof version !== 'string') { + return null } - var i = 0 - do { - var a = this.prerelease[i] - var b = other.prerelease[i] - debug('prerelease compare', i, a, b) - if (a === undefined && b === undefined) { - return 0 - } else if (b === undefined) { - return 1 - } else if (a === undefined) { - return -1 - } else if (a === b) { - continue - } else { - return compareIdentifiers(a, b) + options = options || {} + + var match = null + if (!options.rtl) { + match = version.match(safeRe[t.COERCE]) + } else { + // Find the right-most coercible string that does not share + // a terminus with a more left-ward coercible string. + // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4' + // + // Walk through the string checking with a /g regexp + // Manually set the index so as to pick up overlapping matches. + // Stop when we get a match that ends at the string end, since no + // coercible string can be more right-ward without the same terminus. + var next + while ((next = safeRe[t.COERCERTL].exec(version)) && + (!match || match.index + match[0].length !== version.length) + ) { + if (!match || + next.index + next[0].length !== match.index + match[0].length) { + match = next + } + safeRe[t.COERCERTL].lastIndex = next.index + next[1].length + next[2].length } - } while (++i) -} + // leave it in a clean state + safeRe[t.COERCERTL].lastIndex = -1 + } -SemVer.prototype.compareBuild = function (other) { - if (!(other instanceof SemVer)) { - other = new SemVer(other, this.options) + if (match === null) { + return null } - var i = 0 - do { - var a = this.build[i] - var b = other.build[i] - debug('prerelease compare', i, a, b) - if (a === undefined && b === undefined) { - return 0 - } else if (b === undefined) { - return 1 - } else if (a === undefined) { - return -1 - } else if (a === b) { - continue - } else { - return compareIdentifiers(a, b) - } - } while (++i) + return parse(match[2] + + '.' + (match[3] || '0') + + '.' + (match[4] || '0'), options) } -// preminor will bump the version up to the next minor release, and immediately -// down to pre-release. premajor and prepatch work the same way. -SemVer.prototype.inc = function (release, identifier) { - switch (release) { - case 'premajor': - this.prerelease.length = 0 - this.patch = 0 - this.minor = 0 - this.major++ - this.inc('pre', identifier) - break - case 'preminor': - this.prerelease.length = 0 - this.patch = 0 - this.minor++ - this.inc('pre', identifier) - break - case 'prepatch': - // If this is already a prerelease, it will bump to the next version - // drop any prereleases that might already exist, since they are not - // relevant at this point. - this.prerelease.length = 0 - this.inc('patch', identifier) - this.inc('pre', identifier) - break - // If the input is a non-prerelease version, this acts the same as - // prepatch. - case 'prerelease': - if (this.prerelease.length === 0) { - this.inc('patch', identifier) - } - this.inc('pre', identifier) - break - case 'major': - // If this is a pre-major version, bump up to the same major version. - // Otherwise increment major. - // 1.0.0-5 bumps to 1.0.0 - // 1.1.0 bumps to 2.0.0 - if (this.minor !== 0 || - this.patch !== 0 || - this.prerelease.length === 0) { - this.major++ - } - this.minor = 0 - this.patch = 0 - this.prerelease = [] - break - case 'minor': - // If this is a pre-minor version, bump up to the same minor version. - // Otherwise increment minor. - // 1.2.0-5 bumps to 1.2.0 - // 1.2.1 bumps to 1.3.0 - if (this.patch !== 0 || this.prerelease.length === 0) { - this.minor++ - } - this.patch = 0 - this.prerelease = [] - break - case 'patch': - // If this is not a pre-release version, it will increment the patch. - // If it is a pre-release it will bump up to the same patch version. - // 1.2.0-5 patches to 1.2.0 - // 1.2.0 patches to 1.2.1 - if (this.prerelease.length === 0) { - this.patch++ - } - this.prerelease = [] - break - // This probably shouldn't be used publicly. - // 1.0.0 "pre" would become 1.0.0-0 which is the wrong direction. - case 'pre': - if (this.prerelease.length === 0) { - this.prerelease = [0] - } else { - var i = this.prerelease.length - while (--i >= 0) { - if (typeof this.prerelease[i] === 'number') { - this.prerelease[i]++ - i = -2 - } - } - if (i === -1) { - // didn't increment anything - this.prerelease.push(0) - } - } - if (identifier) { - // 1.2.0-beta.1 bumps to 1.2.0-beta.2, - // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0 - if (this.prerelease[0] === identifier) { - if (isNaN(this.prerelease[1])) { - this.prerelease = [identifier, 0] - } - } else { - this.prerelease = [identifier, 0] - } - } - break +/***/ }), - default: - throw new Error('invalid increment argument: ' + release) - } - this.format() - this.raw = this.version - return this -} +/***/ 87351: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { -exports.inc = inc -function inc (version, release, loose, identifier) { - if (typeof (loose) === 'string') { - identifier = loose - loose = undefined - } +"use strict"; - try { - return new SemVer(version, loose).inc(release, identifier).version - } catch (er) { - return null - } +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.issueCommand = issueCommand; +exports.issue = issue; +const os = __importStar(__nccwpck_require__(22037)); +const utils_1 = __nccwpck_require__(5278); +/** + * Issues a command to the GitHub Actions runner + * + * @param command - The command name to issue + * @param properties - Additional properties for the command (key-value pairs) + * @param message - The message to include with the command + * @remarks + * This function outputs a specially formatted string to stdout that the Actions + * runner interprets as a command. These commands can control workflow behavior, + * set outputs, create annotations, mask values, and more. + * + * Command Format: + * ::name key=value,key=value::message + * + * @example + * ```typescript + * // Issue a warning annotation + * issueCommand('warning', {}, 'This is a warning message'); + * // Output: ::warning::This is a warning message + * + * // Set an environment variable + * issueCommand('set-env', { name: 'MY_VAR' }, 'some value'); + * // Output: ::set-env name=MY_VAR::some value + * + * // Add a secret mask + * issueCommand('add-mask', {}, 'secretValue123'); + * // Output: ::add-mask::secretValue123 + * ``` + * + * @internal + * This is an internal utility function that powers the public API functions + * such as setSecret, warning, error, and exportVariable. + */ +function issueCommand(command, properties, message) { + const cmd = new Command(command, properties, message); + process.stdout.write(cmd.toString() + os.EOL); } - -exports.diff = diff -function diff (version1, version2) { - if (eq(version1, version2)) { - return null - } else { - var v1 = parse(version1) - var v2 = parse(version2) - var prefix = '' - if (v1.prerelease.length || v2.prerelease.length) { - prefix = 'pre' - var defaultResult = 'prerelease' +function issue(name, message = '') { + issueCommand(name, {}, message); +} +const CMD_STRING = '::'; +class Command { + constructor(command, properties, message) { + if (!command) { + command = 'missing.command'; + } + this.command = command; + this.properties = properties; + this.message = message; } - for (var key in v1) { - if (key === 'major' || key === 'minor' || key === 'patch') { - if (v1[key] !== v2[key]) { - return prefix + key + toString() { + let cmdStr = CMD_STRING + this.command; + if (this.properties && Object.keys(this.properties).length > 0) { + cmdStr += ' '; + let first = true; + for (const key in this.properties) { + if (this.properties.hasOwnProperty(key)) { + const val = this.properties[key]; + if (val) { + if (first) { + first = false; + } + else { + cmdStr += ','; + } + cmdStr += `${key}=${escapeProperty(val)}`; + } + } + } } - } + cmdStr += `${CMD_STRING}${escapeData(this.message)}`; + return cmdStr; } - return defaultResult // may be undefined - } } +function escapeData(s) { + return (0, utils_1.toCommandValue)(s) + .replace(/%/g, '%25') + .replace(/\r/g, '%0D') + .replace(/\n/g, '%0A'); +} +function escapeProperty(s) { + return (0, utils_1.toCommandValue)(s) + .replace(/%/g, '%25') + .replace(/\r/g, '%0D') + .replace(/\n/g, '%0A') + .replace(/:/g, '%3A') + .replace(/,/g, '%2C'); +} +//# sourceMappingURL=command.js.map -exports.compareIdentifiers = compareIdentifiers - -var numeric = /^[0-9]+$/ -function compareIdentifiers (a, b) { - var anum = numeric.test(a) - var bnum = numeric.test(b) +/***/ }), - if (anum && bnum) { - a = +a - b = +b - } +/***/ 42186: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - return a === b ? 0 - : (anum && !bnum) ? -1 - : (bnum && !anum) ? 1 - : a < b ? -1 - : 1 -} +"use strict"; -exports.rcompareIdentifiers = rcompareIdentifiers -function rcompareIdentifiers (a, b) { - return compareIdentifiers(b, a) +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.platform = exports.toPlatformPath = exports.toWin32Path = exports.toPosixPath = exports.markdownSummary = exports.summary = exports.ExitCode = void 0; +exports.exportVariable = exportVariable; +exports.setSecret = setSecret; +exports.addPath = addPath; +exports.getInput = getInput; +exports.getMultilineInput = getMultilineInput; +exports.getBooleanInput = getBooleanInput; +exports.setOutput = setOutput; +exports.setCommandEcho = setCommandEcho; +exports.setFailed = setFailed; +exports.isDebug = isDebug; +exports.debug = debug; +exports.error = error; +exports.warning = warning; +exports.notice = notice; +exports.info = info; +exports.startGroup = startGroup; +exports.endGroup = endGroup; +exports.group = group; +exports.saveState = saveState; +exports.getState = getState; +exports.getIDToken = getIDToken; +const command_1 = __nccwpck_require__(87351); +const file_command_1 = __nccwpck_require__(717); +const utils_1 = __nccwpck_require__(5278); +const os = __importStar(__nccwpck_require__(22037)); +const path = __importStar(__nccwpck_require__(71017)); +const oidc_utils_1 = __nccwpck_require__(98041); +/** + * The code to exit an action + */ +var ExitCode; +(function (ExitCode) { + /** + * A code indicating that the action was successful + */ + ExitCode[ExitCode["Success"] = 0] = "Success"; + /** + * A code indicating that the action was a failure + */ + ExitCode[ExitCode["Failure"] = 1] = "Failure"; +})(ExitCode || (exports.ExitCode = ExitCode = {})); +//----------------------------------------------------------------------- +// Variables +//----------------------------------------------------------------------- +/** + * Sets env variable for this action and future actions in the job + * @param name the name of the variable to set + * @param val the value of the variable. Non-string values will be converted to a string via JSON.stringify + */ +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function exportVariable(name, val) { + const convertedVal = (0, utils_1.toCommandValue)(val); + process.env[name] = convertedVal; + const filePath = process.env['GITHUB_ENV'] || ''; + if (filePath) { + return (0, file_command_1.issueFileCommand)('ENV', (0, file_command_1.prepareKeyValueMessage)(name, val)); + } + (0, command_1.issueCommand)('set-env', { name }, convertedVal); } - -exports.major = major -function major (a, loose) { - return new SemVer(a, loose).major +/** + * Registers a secret which will get masked from logs + * + * @param secret - Value of the secret to be masked + * @remarks + * This function instructs the Actions runner to mask the specified value in any + * logs produced during the workflow run. Once registered, the secret value will + * be replaced with asterisks (***) whenever it appears in console output, logs, + * or error messages. + * + * This is useful for protecting sensitive information such as: + * - API keys + * - Access tokens + * - Authentication credentials + * - URL parameters containing signatures (SAS tokens) + * + * Note that masking only affects future logs; any previous appearances of the + * secret in logs before calling this function will remain unmasked. + * + * @example + * ```typescript + * // Register an API token as a secret + * const apiToken = "abc123xyz456"; + * setSecret(apiToken); + * + * // Now any logs containing this value will show *** instead + * console.log(`Using token: ${apiToken}`); // Outputs: "Using token: ***" + * ``` + */ +function setSecret(secret) { + (0, command_1.issueCommand)('add-mask', {}, secret); } - -exports.minor = minor -function minor (a, loose) { - return new SemVer(a, loose).minor +/** + * Prepends inputPath to the PATH (for this action and future actions) + * @param inputPath + */ +function addPath(inputPath) { + const filePath = process.env['GITHUB_PATH'] || ''; + if (filePath) { + (0, file_command_1.issueFileCommand)('PATH', inputPath); + } + else { + (0, command_1.issueCommand)('add-path', {}, inputPath); + } + process.env['PATH'] = `${inputPath}${path.delimiter}${process.env['PATH']}`; } - -exports.patch = patch -function patch (a, loose) { - return new SemVer(a, loose).patch +/** + * Gets the value of an input. + * Unless trimWhitespace is set to false in InputOptions, the value is also trimmed. + * Returns an empty string if the value is not defined. + * + * @param name name of the input to get + * @param options optional. See InputOptions. + * @returns string + */ +function getInput(name, options) { + const val = process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`] || ''; + if (options && options.required && !val) { + throw new Error(`Input required and not supplied: ${name}`); + } + if (options && options.trimWhitespace === false) { + return val; + } + return val.trim(); } - -exports.compare = compare -function compare (a, b, loose) { - return new SemVer(a, loose).compare(new SemVer(b, loose)) +/** + * Gets the values of an multiline input. Each value is also trimmed. + * + * @param name name of the input to get + * @param options optional. See InputOptions. + * @returns string[] + * + */ +function getMultilineInput(name, options) { + const inputs = getInput(name, options) + .split('\n') + .filter(x => x !== ''); + if (options && options.trimWhitespace === false) { + return inputs; + } + return inputs.map(input => input.trim()); } - -exports.compareLoose = compareLoose -function compareLoose (a, b) { - return compare(a, b, true) +/** + * Gets the input value of the boolean type in the YAML 1.2 "core schema" specification. + * Support boolean input list: `true | True | TRUE | false | False | FALSE` . + * The return value is also in boolean type. + * ref: https://yaml.org/spec/1.2/spec.html#id2804923 + * + * @param name name of the input to get + * @param options optional. See InputOptions. + * @returns boolean + */ +function getBooleanInput(name, options) { + const trueValue = ['true', 'True', 'TRUE']; + const falseValue = ['false', 'False', 'FALSE']; + const val = getInput(name, options); + if (trueValue.includes(val)) + return true; + if (falseValue.includes(val)) + return false; + throw new TypeError(`Input does not meet YAML 1.2 "Core Schema" specification: ${name}\n` + + `Support boolean input list: \`true | True | TRUE | false | False | FALSE\``); } - -exports.compareBuild = compareBuild -function compareBuild (a, b, loose) { - var versionA = new SemVer(a, loose) - var versionB = new SemVer(b, loose) - return versionA.compare(versionB) || versionA.compareBuild(versionB) +/** + * Sets the value of an output. + * + * @param name name of the output to set + * @param value value to store. Non-string values will be converted to a string via JSON.stringify + */ +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function setOutput(name, value) { + const filePath = process.env['GITHUB_OUTPUT'] || ''; + if (filePath) { + return (0, file_command_1.issueFileCommand)('OUTPUT', (0, file_command_1.prepareKeyValueMessage)(name, value)); + } + process.stdout.write(os.EOL); + (0, command_1.issueCommand)('set-output', { name }, (0, utils_1.toCommandValue)(value)); } - -exports.rcompare = rcompare -function rcompare (a, b, loose) { - return compare(b, a, loose) +/** + * Enables or disables the echoing of commands into stdout for the rest of the step. + * Echoing is disabled by default if ACTIONS_STEP_DEBUG is not set. + * + */ +function setCommandEcho(enabled) { + (0, command_1.issue)('echo', enabled ? 'on' : 'off'); } - -exports.sort = sort -function sort (list, loose) { - return list.sort(function (a, b) { - return exports.compareBuild(a, b, loose) - }) +//----------------------------------------------------------------------- +// Results +//----------------------------------------------------------------------- +/** + * Sets the action status to failed. + * When the action exits it will be with an exit code of 1 + * @param message add error issue message + */ +function setFailed(message) { + process.exitCode = ExitCode.Failure; + error(message); } - -exports.rsort = rsort -function rsort (list, loose) { - return list.sort(function (a, b) { - return exports.compareBuild(b, a, loose) - }) +//----------------------------------------------------------------------- +// Logging Commands +//----------------------------------------------------------------------- +/** + * Gets whether Actions Step Debug is on or not + */ +function isDebug() { + return process.env['RUNNER_DEBUG'] === '1'; } - -exports.gt = gt -function gt (a, b, loose) { - return compare(a, b, loose) > 0 +/** + * Writes debug message to user log + * @param message debug message + */ +function debug(message) { + (0, command_1.issueCommand)('debug', {}, message); } - -exports.lt = lt -function lt (a, b, loose) { - return compare(a, b, loose) < 0 +/** + * Adds an error issue + * @param message error issue message. Errors will be converted to string via toString() + * @param properties optional properties to add to the annotation. + */ +function error(message, properties = {}) { + (0, command_1.issueCommand)('error', (0, utils_1.toCommandProperties)(properties), message instanceof Error ? message.toString() : message); } - -exports.eq = eq -function eq (a, b, loose) { - return compare(a, b, loose) === 0 +/** + * Adds a warning issue + * @param message warning issue message. Errors will be converted to string via toString() + * @param properties optional properties to add to the annotation. + */ +function warning(message, properties = {}) { + (0, command_1.issueCommand)('warning', (0, utils_1.toCommandProperties)(properties), message instanceof Error ? message.toString() : message); } - -exports.neq = neq -function neq (a, b, loose) { - return compare(a, b, loose) !== 0 +/** + * Adds a notice issue + * @param message notice issue message. Errors will be converted to string via toString() + * @param properties optional properties to add to the annotation. + */ +function notice(message, properties = {}) { + (0, command_1.issueCommand)('notice', (0, utils_1.toCommandProperties)(properties), message instanceof Error ? message.toString() : message); } - -exports.gte = gte -function gte (a, b, loose) { - return compare(a, b, loose) >= 0 +/** + * Writes info to log with console.log. + * @param message info message + */ +function info(message) { + process.stdout.write(message + os.EOL); } - -exports.lte = lte -function lte (a, b, loose) { - return compare(a, b, loose) <= 0 +/** + * Begin an output group. + * + * Output until the next `groupEnd` will be foldable in this group + * + * @param name The name of the output group + */ +function startGroup(name) { + (0, command_1.issue)('group', name); } +/** + * End an output group. + */ +function endGroup() { + (0, command_1.issue)('endgroup'); +} +/** + * Wrap an asynchronous function call in a group. + * + * Returns the same type as the function itself. + * + * @param name The name of the group + * @param fn The function to wrap in the group + */ +function group(name, fn) { + return __awaiter(this, void 0, void 0, function* () { + startGroup(name); + let result; + try { + result = yield fn(); + } + finally { + endGroup(); + } + return result; + }); +} +//----------------------------------------------------------------------- +// Wrapper action state +//----------------------------------------------------------------------- +/** + * Saves state for current action, the state can only be retrieved by this action's post job execution. + * + * @param name name of the state to store + * @param value value to store. Non-string values will be converted to a string via JSON.stringify + */ +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function saveState(name, value) { + const filePath = process.env['GITHUB_STATE'] || ''; + if (filePath) { + return (0, file_command_1.issueFileCommand)('STATE', (0, file_command_1.prepareKeyValueMessage)(name, value)); + } + (0, command_1.issueCommand)('save-state', { name }, (0, utils_1.toCommandValue)(value)); +} +/** + * Gets the value of an state set by this action's main execution. + * + * @param name name of the state to get + * @returns string + */ +function getState(name) { + return process.env[`STATE_${name}`] || ''; +} +function getIDToken(aud) { + return __awaiter(this, void 0, void 0, function* () { + return yield oidc_utils_1.OidcClient.getIDToken(aud); + }); +} +/** + * Summary exports + */ +var summary_1 = __nccwpck_require__(81327); +Object.defineProperty(exports, "summary", ({ enumerable: true, get: function () { return summary_1.summary; } })); +/** + * @deprecated use core.summary + */ +var summary_2 = __nccwpck_require__(81327); +Object.defineProperty(exports, "markdownSummary", ({ enumerable: true, get: function () { return summary_2.markdownSummary; } })); +/** + * Path exports + */ +var path_utils_1 = __nccwpck_require__(2981); +Object.defineProperty(exports, "toPosixPath", ({ enumerable: true, get: function () { return path_utils_1.toPosixPath; } })); +Object.defineProperty(exports, "toWin32Path", ({ enumerable: true, get: function () { return path_utils_1.toWin32Path; } })); +Object.defineProperty(exports, "toPlatformPath", ({ enumerable: true, get: function () { return path_utils_1.toPlatformPath; } })); +/** + * Platform utilities exports + */ +exports.platform = __importStar(__nccwpck_require__(85243)); +//# sourceMappingURL=core.js.map -exports.cmp = cmp -function cmp (a, op, b, loose) { - switch (op) { - case '===': - if (typeof a === 'object') - a = a.version - if (typeof b === 'object') - b = b.version - return a === b - - case '!==': - if (typeof a === 'object') - a = a.version - if (typeof b === 'object') - b = b.version - return a !== b - - case '': - case '=': - case '==': - return eq(a, b, loose) - - case '!=': - return neq(a, b, loose) - - case '>': - return gt(a, b, loose) - - case '>=': - return gte(a, b, loose) +/***/ }), - case '<': - return lt(a, b, loose) +/***/ 717: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - case '<=': - return lte(a, b, loose) +"use strict"; - default: - throw new TypeError('Invalid operator: ' + op) - } +// For internal use, subject to change. +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.issueFileCommand = issueFileCommand; +exports.prepareKeyValueMessage = prepareKeyValueMessage; +// We use any as a valid input type +/* eslint-disable @typescript-eslint/no-explicit-any */ +const crypto = __importStar(__nccwpck_require__(6113)); +const fs = __importStar(__nccwpck_require__(57147)); +const os = __importStar(__nccwpck_require__(22037)); +const utils_1 = __nccwpck_require__(5278); +function issueFileCommand(command, message) { + const filePath = process.env[`GITHUB_${command}`]; + if (!filePath) { + throw new Error(`Unable to find environment variable for file command ${command}`); + } + if (!fs.existsSync(filePath)) { + throw new Error(`Missing file at path: ${filePath}`); + } + fs.appendFileSync(filePath, `${(0, utils_1.toCommandValue)(message)}${os.EOL}`, { + encoding: 'utf8' + }); } - -exports.Comparator = Comparator -function Comparator (comp, options) { - if (!options || typeof options !== 'object') { - options = { - loose: !!options, - includePrerelease: false +function prepareKeyValueMessage(key, value) { + const delimiter = `ghadelimiter_${crypto.randomUUID()}`; + const convertedValue = (0, utils_1.toCommandValue)(value); + // These should realistically never happen, but just in case someone finds a + // way to exploit uuid generation let's not allow keys or values that contain + // the delimiter. + if (key.includes(delimiter)) { + throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`); } - } - - if (comp instanceof Comparator) { - if (comp.loose === !!options.loose) { - return comp - } else { - comp = comp.value + if (convertedValue.includes(delimiter)) { + throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`); } - } + return `${key}<<${delimiter}${os.EOL}${convertedValue}${os.EOL}${delimiter}`; +} +//# sourceMappingURL=file-command.js.map - if (!(this instanceof Comparator)) { - return new Comparator(comp, options) - } +/***/ }), - debug('comparator', comp, options) - this.options = options - this.loose = !!options.loose - this.parse(comp) +/***/ 98041: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - if (this.semver === ANY) { - this.value = '' - } else { - this.value = this.operator + this.semver.version - } +"use strict"; - debug('comp', this) +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.OidcClient = void 0; +const http_client_1 = __nccwpck_require__(96255); +const auth_1 = __nccwpck_require__(35526); +const core_1 = __nccwpck_require__(42186); +class OidcClient { + static createHttpClient(allowRetry = true, maxRetry = 10) { + const requestOptions = { + allowRetries: allowRetry, + maxRetries: maxRetry + }; + return new http_client_1.HttpClient('actions/oidc-client', [new auth_1.BearerCredentialHandler(OidcClient.getRequestToken())], requestOptions); + } + static getRequestToken() { + const token = process.env['ACTIONS_ID_TOKEN_REQUEST_TOKEN']; + if (!token) { + throw new Error('Unable to get ACTIONS_ID_TOKEN_REQUEST_TOKEN env variable'); + } + return token; + } + static getIDTokenUrl() { + const runtimeUrl = process.env['ACTIONS_ID_TOKEN_REQUEST_URL']; + if (!runtimeUrl) { + throw new Error('Unable to get ACTIONS_ID_TOKEN_REQUEST_URL env variable'); + } + return runtimeUrl; + } + static getCall(id_token_url) { + return __awaiter(this, void 0, void 0, function* () { + var _a; + const httpclient = OidcClient.createHttpClient(); + const res = yield httpclient + .getJson(id_token_url) + .catch(error => { + throw new Error(`Failed to get ID Token. \n + Error Code : ${error.statusCode}\n + Error Message: ${error.message}`); + }); + const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value; + if (!id_token) { + throw new Error('Response json body do not have ID Token field'); + } + return id_token; + }); + } + static getIDToken(audience) { + return __awaiter(this, void 0, void 0, function* () { + try { + // New ID Token is requested from action service + let id_token_url = OidcClient.getIDTokenUrl(); + if (audience) { + const encodedAudience = encodeURIComponent(audience); + id_token_url = `${id_token_url}&audience=${encodedAudience}`; + } + (0, core_1.debug)(`ID token url is ${id_token_url}`); + const id_token = yield OidcClient.getCall(id_token_url); + (0, core_1.setSecret)(id_token); + return id_token; + } + catch (error) { + throw new Error(`Error message: ${error.message}`); + } + }); + } } +exports.OidcClient = OidcClient; +//# sourceMappingURL=oidc-utils.js.map -var ANY = {} -Comparator.prototype.parse = function (comp) { - var r = this.options.loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR] - var m = comp.match(r) +/***/ }), - if (!m) { - throw new TypeError('Invalid comparator: ' + comp) - } +/***/ 2981: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - this.operator = m[1] !== undefined ? m[1] : '' - if (this.operator === '=') { - this.operator = '' - } +"use strict"; - // if it literally is just '>' or '' then allow anything. - if (!m[2]) { - this.semver = ANY - } else { - this.semver = new SemVer(m[2], this.options.loose) - } +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.toPosixPath = toPosixPath; +exports.toWin32Path = toWin32Path; +exports.toPlatformPath = toPlatformPath; +const path = __importStar(__nccwpck_require__(71017)); +/** + * toPosixPath converts the given path to the posix form. On Windows, \\ will be + * replaced with /. + * + * @param pth. Path to transform. + * @return string Posix path. + */ +function toPosixPath(pth) { + return pth.replace(/[\\]/g, '/'); } - -Comparator.prototype.toString = function () { - return this.value +/** + * toWin32Path converts the given path to the win32 form. On Linux, / will be + * replaced with \\. + * + * @param pth. Path to transform. + * @return string Win32 path. + */ +function toWin32Path(pth) { + return pth.replace(/[/]/g, '\\'); +} +/** + * toPlatformPath converts the given path to a platform-specific path. It does + * this by replacing instances of / and \ with the platform-specific path + * separator. + * + * @param pth The path to platformize. + * @return string The platform-specific path. + */ +function toPlatformPath(pth) { + return pth.replace(/[/\\]/g, path.sep); } +//# sourceMappingURL=path-utils.js.map -Comparator.prototype.test = function (version) { - debug('Comparator.test', version, this.options.loose) +/***/ }), - if (this.semver === ANY || version === ANY) { - return true - } +/***/ 85243: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - if (typeof version === 'string') { - try { - version = new SemVer(version, this.options) - } catch (er) { - return false - } - } +"use strict"; - return cmp(version, this.operator, this.semver, this.options) +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.isLinux = exports.isMacOS = exports.isWindows = exports.arch = exports.platform = void 0; +exports.getDetails = getDetails; +const os_1 = __importDefault(__nccwpck_require__(22037)); +const exec = __importStar(__nccwpck_require__(71514)); +const getWindowsInfo = () => __awaiter(void 0, void 0, void 0, function* () { + const { stdout: version } = yield exec.getExecOutput('powershell -command "(Get-CimInstance -ClassName Win32_OperatingSystem).Version"', undefined, { + silent: true + }); + const { stdout: name } = yield exec.getExecOutput('powershell -command "(Get-CimInstance -ClassName Win32_OperatingSystem).Caption"', undefined, { + silent: true + }); + return { + name: name.trim(), + version: version.trim() + }; +}); +const getMacOsInfo = () => __awaiter(void 0, void 0, void 0, function* () { + var _a, _b, _c, _d; + const { stdout } = yield exec.getExecOutput('sw_vers', undefined, { + silent: true + }); + const version = (_b = (_a = stdout.match(/ProductVersion:\s*(.+)/)) === null || _a === void 0 ? void 0 : _a[1]) !== null && _b !== void 0 ? _b : ''; + const name = (_d = (_c = stdout.match(/ProductName:\s*(.+)/)) === null || _c === void 0 ? void 0 : _c[1]) !== null && _d !== void 0 ? _d : ''; + return { + name, + version + }; +}); +const getLinuxInfo = () => __awaiter(void 0, void 0, void 0, function* () { + const { stdout } = yield exec.getExecOutput('lsb_release', ['-i', '-r', '-s'], { + silent: true + }); + const [name, version] = stdout.trim().split('\n'); + return { + name, + version + }; +}); +exports.platform = os_1.default.platform(); +exports.arch = os_1.default.arch(); +exports.isWindows = exports.platform === 'win32'; +exports.isMacOS = exports.platform === 'darwin'; +exports.isLinux = exports.platform === 'linux'; +function getDetails() { + return __awaiter(this, void 0, void 0, function* () { + return Object.assign(Object.assign({}, (yield (exports.isWindows + ? getWindowsInfo() + : exports.isMacOS + ? getMacOsInfo() + : getLinuxInfo()))), { platform: exports.platform, + arch: exports.arch, + isWindows: exports.isWindows, + isMacOS: exports.isMacOS, + isLinux: exports.isLinux }); + }); } +//# sourceMappingURL=platform.js.map -Comparator.prototype.intersects = function (comp, options) { - if (!(comp instanceof Comparator)) { - throw new TypeError('a Comparator is required') - } +/***/ }), - if (!options || typeof options !== 'object') { - options = { - loose: !!options, - includePrerelease: false - } - } +/***/ 81327: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - var rangeTmp +"use strict"; - if (this.operator === '') { - if (this.value === '') { - return true +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.summary = exports.markdownSummary = exports.SUMMARY_DOCS_URL = exports.SUMMARY_ENV_VAR = void 0; +const os_1 = __nccwpck_require__(22037); +const fs_1 = __nccwpck_require__(57147); +const { access, appendFile, writeFile } = fs_1.promises; +exports.SUMMARY_ENV_VAR = 'GITHUB_STEP_SUMMARY'; +exports.SUMMARY_DOCS_URL = 'https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#adding-a-job-summary'; +class Summary { + constructor() { + this._buffer = ''; } - rangeTmp = new Range(comp.value, options) - return satisfies(this.value, rangeTmp, options) - } else if (comp.operator === '') { - if (comp.value === '') { - return true + /** + * Finds the summary file path from the environment, rejects if env var is not found or file does not exist + * Also checks r/w permissions. + * + * @returns step summary file path + */ + filePath() { + return __awaiter(this, void 0, void 0, function* () { + if (this._filePath) { + return this._filePath; + } + const pathFromEnv = process.env[exports.SUMMARY_ENV_VAR]; + if (!pathFromEnv) { + throw new Error(`Unable to find environment variable for $${exports.SUMMARY_ENV_VAR}. Check if your runtime environment supports job summaries.`); + } + try { + yield access(pathFromEnv, fs_1.constants.R_OK | fs_1.constants.W_OK); + } + catch (_a) { + throw new Error(`Unable to access summary file: '${pathFromEnv}'. Check if the file has correct read/write permissions.`); + } + this._filePath = pathFromEnv; + return this._filePath; + }); } - rangeTmp = new Range(this.value, options) - return satisfies(comp.semver, rangeTmp, options) - } - - var sameDirectionIncreasing = - (this.operator === '>=' || this.operator === '>') && - (comp.operator === '>=' || comp.operator === '>') - var sameDirectionDecreasing = - (this.operator === '<=' || this.operator === '<') && - (comp.operator === '<=' || comp.operator === '<') - var sameSemVer = this.semver.version === comp.semver.version - var differentDirectionsInclusive = - (this.operator === '>=' || this.operator === '<=') && - (comp.operator === '>=' || comp.operator === '<=') - var oppositeDirectionsLessThan = - cmp(this.semver, '<', comp.semver, options) && - ((this.operator === '>=' || this.operator === '>') && - (comp.operator === '<=' || comp.operator === '<')) - var oppositeDirectionsGreaterThan = - cmp(this.semver, '>', comp.semver, options) && - ((this.operator === '<=' || this.operator === '<') && - (comp.operator === '>=' || comp.operator === '>')) - - return sameDirectionIncreasing || sameDirectionDecreasing || - (sameSemVer && differentDirectionsInclusive) || - oppositeDirectionsLessThan || oppositeDirectionsGreaterThan -} - -exports.Range = Range -function Range (range, options) { - if (!options || typeof options !== 'object') { - options = { - loose: !!options, - includePrerelease: false + /** + * Wraps content in an HTML tag, adding any HTML attributes + * + * @param {string} tag HTML tag to wrap + * @param {string | null} content content within the tag + * @param {[attribute: string]: string} attrs key-value list of HTML attributes to add + * + * @returns {string} content wrapped in HTML element + */ + wrap(tag, content, attrs = {}) { + const htmlAttrs = Object.entries(attrs) + .map(([key, value]) => ` ${key}="${value}"`) + .join(''); + if (!content) { + return `<${tag}${htmlAttrs}>`; + } + return `<${tag}${htmlAttrs}>${content}`; } - } - - if (range instanceof Range) { - if (range.loose === !!options.loose && - range.includePrerelease === !!options.includePrerelease) { - return range - } else { - return new Range(range.raw, options) + /** + * Writes text in the buffer to the summary buffer file and empties buffer. Will append by default. + * + * @param {SummaryWriteOptions} [options] (optional) options for write operation + * + * @returns {Promise} summary instance + */ + write(options) { + return __awaiter(this, void 0, void 0, function* () { + const overwrite = !!(options === null || options === void 0 ? void 0 : options.overwrite); + const filePath = yield this.filePath(); + const writeFunc = overwrite ? writeFile : appendFile; + yield writeFunc(filePath, this._buffer, { encoding: 'utf8' }); + return this.emptyBuffer(); + }); + } + /** + * Clears the summary buffer and wipes the summary file + * + * @returns {Summary} summary instance + */ + clear() { + return __awaiter(this, void 0, void 0, function* () { + return this.emptyBuffer().write({ overwrite: true }); + }); + } + /** + * Returns the current summary buffer as a string + * + * @returns {string} string of summary buffer + */ + stringify() { + return this._buffer; + } + /** + * If the summary buffer is empty + * + * @returns {boolen} true if the buffer is empty + */ + isEmptyBuffer() { + return this._buffer.length === 0; + } + /** + * Resets the summary buffer without writing to summary file + * + * @returns {Summary} summary instance + */ + emptyBuffer() { + this._buffer = ''; + return this; + } + /** + * Adds raw text to the summary buffer + * + * @param {string} text content to add + * @param {boolean} [addEOL=false] (optional) append an EOL to the raw text (default: false) + * + * @returns {Summary} summary instance + */ + addRaw(text, addEOL = false) { + this._buffer += text; + return addEOL ? this.addEOL() : this; + } + /** + * Adds the operating system-specific end-of-line marker to the buffer + * + * @returns {Summary} summary instance + */ + addEOL() { + return this.addRaw(os_1.EOL); + } + /** + * Adds an HTML codeblock to the summary buffer + * + * @param {string} code content to render within fenced code block + * @param {string} lang (optional) language to syntax highlight code + * + * @returns {Summary} summary instance + */ + addCodeBlock(code, lang) { + const attrs = Object.assign({}, (lang && { lang })); + const element = this.wrap('pre', this.wrap('code', code), attrs); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML list to the summary buffer + * + * @param {string[]} items list of items to render + * @param {boolean} [ordered=false] (optional) if the rendered list should be ordered or not (default: false) + * + * @returns {Summary} summary instance + */ + addList(items, ordered = false) { + const tag = ordered ? 'ol' : 'ul'; + const listItems = items.map(item => this.wrap('li', item)).join(''); + const element = this.wrap(tag, listItems); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML table to the summary buffer + * + * @param {SummaryTableCell[]} rows table rows + * + * @returns {Summary} summary instance + */ + addTable(rows) { + const tableBody = rows + .map(row => { + const cells = row + .map(cell => { + if (typeof cell === 'string') { + return this.wrap('td', cell); + } + const { header, data, colspan, rowspan } = cell; + const tag = header ? 'th' : 'td'; + const attrs = Object.assign(Object.assign({}, (colspan && { colspan })), (rowspan && { rowspan })); + return this.wrap(tag, data, attrs); + }) + .join(''); + return this.wrap('tr', cells); + }) + .join(''); + const element = this.wrap('table', tableBody); + return this.addRaw(element).addEOL(); + } + /** + * Adds a collapsable HTML details element to the summary buffer + * + * @param {string} label text for the closed state + * @param {string} content collapsable content + * + * @returns {Summary} summary instance + */ + addDetails(label, content) { + const element = this.wrap('details', this.wrap('summary', label) + content); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML image tag to the summary buffer + * + * @param {string} src path to the image you to embed + * @param {string} alt text description of the image + * @param {SummaryImageOptions} options (optional) addition image attributes + * + * @returns {Summary} summary instance + */ + addImage(src, alt, options) { + const { width, height } = options || {}; + const attrs = Object.assign(Object.assign({}, (width && { width })), (height && { height })); + const element = this.wrap('img', null, Object.assign({ src, alt }, attrs)); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML section heading element + * + * @param {string} text heading text + * @param {number | string} [level=1] (optional) the heading level, default: 1 + * + * @returns {Summary} summary instance + */ + addHeading(text, level) { + const tag = `h${level}`; + const allowedTag = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'].includes(tag) + ? tag + : 'h1'; + const element = this.wrap(allowedTag, text); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML thematic break (
) to the summary buffer + * + * @returns {Summary} summary instance + */ + addSeparator() { + const element = this.wrap('hr', null); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML line break (
) to the summary buffer + * + * @returns {Summary} summary instance + */ + addBreak() { + const element = this.wrap('br', null); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML blockquote to the summary buffer + * + * @param {string} text quote text + * @param {string} cite (optional) citation url + * + * @returns {Summary} summary instance + */ + addQuote(text, cite) { + const attrs = Object.assign({}, (cite && { cite })); + const element = this.wrap('blockquote', text, attrs); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML anchor tag to the summary buffer + * + * @param {string} text link text/content + * @param {string} href hyperlink + * + * @returns {Summary} summary instance + */ + addLink(text, href) { + const element = this.wrap('a', text, { href }); + return this.addRaw(element).addEOL(); } - } - - if (range instanceof Comparator) { - return new Range(range.value, options) - } - - if (!(this instanceof Range)) { - return new Range(range, options) - } - - this.options = options - this.loose = !!options.loose - this.includePrerelease = !!options.includePrerelease - - // First, split based on boolean or || - this.raw = range - this.set = range.split(/\s*\|\|\s*/).map(function (range) { - return this.parseRange(range.trim()) - }, this).filter(function (c) { - // throw out any that are not relevant for whatever reason - return c.length - }) - - if (!this.set.length) { - throw new TypeError('Invalid SemVer Range: ' + range) - } - - this.format() -} - -Range.prototype.format = function () { - this.range = this.set.map(function (comps) { - return comps.join(' ').trim() - }).join('||').trim() - return this.range -} - -Range.prototype.toString = function () { - return this.range } +const _summary = new Summary(); +/** + * @deprecated use `core.summary` + */ +exports.markdownSummary = _summary; +exports.summary = _summary; +//# sourceMappingURL=summary.js.map -Range.prototype.parseRange = function (range) { - var loose = this.options.loose - range = range.trim() - // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4` - var hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE] - range = range.replace(hr, hyphenReplace) - debug('hyphen replace', range) - // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5` - range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace) - debug('comparator trim', range, re[t.COMPARATORTRIM]) - - // `~ 1.2.3` => `~1.2.3` - range = range.replace(re[t.TILDETRIM], tildeTrimReplace) - - // `^ 1.2.3` => `^1.2.3` - range = range.replace(re[t.CARETTRIM], caretTrimReplace) - - // normalize spaces - range = range.split(/\s+/).join(' ') +/***/ }), - // At this point, the range is completely trimmed and - // ready to be split into comparators. +/***/ 5278: +/***/ ((__unused_webpack_module, exports) => { - var compRe = loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR] - var set = range.split(' ').map(function (comp) { - return parseComparator(comp, this.options) - }, this).join(' ').split(/\s+/) - if (this.options.loose) { - // in loose mode, throw out any that are not valid comparators - set = set.filter(function (comp) { - return !!comp.match(compRe) - }) - } - set = set.map(function (comp) { - return new Comparator(comp, this.options) - }, this) +"use strict"; - return set +// We use any as a valid input type +/* eslint-disable @typescript-eslint/no-explicit-any */ +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.toCommandValue = toCommandValue; +exports.toCommandProperties = toCommandProperties; +/** + * Sanitizes an input into a string so it can be passed into issueCommand safely + * @param input input to sanitize into a string + */ +function toCommandValue(input) { + if (input === null || input === undefined) { + return ''; + } + else if (typeof input === 'string' || input instanceof String) { + return input; + } + return JSON.stringify(input); } - -Range.prototype.intersects = function (range, options) { - if (!(range instanceof Range)) { - throw new TypeError('a Range is required') - } - - return this.set.some(function (thisComparators) { - return ( - isSatisfiable(thisComparators, options) && - range.set.some(function (rangeComparators) { - return ( - isSatisfiable(rangeComparators, options) && - thisComparators.every(function (thisComparator) { - return rangeComparators.every(function (rangeComparator) { - return thisComparator.intersects(rangeComparator, options) - }) - }) - ) - }) - ) - }) +/** + * + * @param annotationProperties + * @returns The command properties to send with the actual annotation command + * See IssueCommandProperties: https://github.com/actions/runner/blob/main/src/Runner.Worker/ActionCommandManager.cs#L646 + */ +function toCommandProperties(annotationProperties) { + if (!Object.keys(annotationProperties).length) { + return {}; + } + return { + title: annotationProperties.title, + file: annotationProperties.file, + line: annotationProperties.startLine, + endLine: annotationProperties.endLine, + col: annotationProperties.startColumn, + endColumn: annotationProperties.endColumn + }; } +//# sourceMappingURL=utils.js.map -// take a set of comparators and determine whether there -// exists a version which can satisfy it -function isSatisfiable (comparators, options) { - var result = true - var remainingComparators = comparators.slice() - var testComparator = remainingComparators.pop() - - while (result && remainingComparators.length) { - result = remainingComparators.every(function (otherComparator) { - return testComparator.intersects(otherComparator, options) - }) +/***/ }), - testComparator = remainingComparators.pop() - } +/***/ 71514: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - return result -} +"use strict"; -// Mostly just for testing and legacy API reasons -exports.toComparators = toComparators -function toComparators (range, options) { - return new Range(range, options).set.map(function (comp) { - return comp.map(function (c) { - return c.value - }).join(' ').trim().split(' ') - }) +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.exec = exec; +exports.getExecOutput = getExecOutput; +const string_decoder_1 = __nccwpck_require__(71576); +const tr = __importStar(__nccwpck_require__(88159)); +/** + * Exec a command. + * Output will be streamed to the live console. + * Returns promise with return code + * + * @param commandLine command to execute (can include additional args). Must be correctly escaped. + * @param args optional arguments for tool. Escaping is handled by the lib. + * @param options optional exec options. See ExecOptions + * @returns Promise exit code + */ +function exec(commandLine, args, options) { + return __awaiter(this, void 0, void 0, function* () { + const commandArgs = tr.argStringToArray(commandLine); + if (commandArgs.length === 0) { + throw new Error(`Parameter 'commandLine' cannot be null or empty.`); + } + // Path to tool to execute should be first arg + const toolPath = commandArgs[0]; + args = commandArgs.slice(1).concat(args || []); + const runner = new tr.ToolRunner(toolPath, args, options); + return runner.exec(); + }); } - -// comprised of xranges, tildes, stars, and gtlt's at this point. -// already replaced the hyphen ranges -// turn into a set of JUST comparators. -function parseComparator (comp, options) { - debug('comp', comp, options) - comp = replaceCarets(comp, options) - debug('caret', comp) - comp = replaceTildes(comp, options) - debug('tildes', comp) - comp = replaceXRanges(comp, options) - debug('xrange', comp) - comp = replaceStars(comp, options) - debug('stars', comp) - return comp +/** + * Exec a command and get the output. + * Output will be streamed to the live console. + * Returns promise with the exit code and collected stdout and stderr + * + * @param commandLine command to execute (can include additional args). Must be correctly escaped. + * @param args optional arguments for tool. Escaping is handled by the lib. + * @param options optional exec options. See ExecOptions + * @returns Promise exit code, stdout, and stderr + */ +function getExecOutput(commandLine, args, options) { + return __awaiter(this, void 0, void 0, function* () { + var _a, _b; + let stdout = ''; + let stderr = ''; + //Using string decoder covers the case where a mult-byte character is split + const stdoutDecoder = new string_decoder_1.StringDecoder('utf8'); + const stderrDecoder = new string_decoder_1.StringDecoder('utf8'); + const originalStdoutListener = (_a = options === null || options === void 0 ? void 0 : options.listeners) === null || _a === void 0 ? void 0 : _a.stdout; + const originalStdErrListener = (_b = options === null || options === void 0 ? void 0 : options.listeners) === null || _b === void 0 ? void 0 : _b.stderr; + const stdErrListener = (data) => { + stderr += stderrDecoder.write(data); + if (originalStdErrListener) { + originalStdErrListener(data); + } + }; + const stdOutListener = (data) => { + stdout += stdoutDecoder.write(data); + if (originalStdoutListener) { + originalStdoutListener(data); + } + }; + const listeners = Object.assign(Object.assign({}, options === null || options === void 0 ? void 0 : options.listeners), { stdout: stdOutListener, stderr: stdErrListener }); + const exitCode = yield exec(commandLine, args, Object.assign(Object.assign({}, options), { listeners })); + //flush any remaining characters + stdout += stdoutDecoder.end(); + stderr += stderrDecoder.end(); + return { + exitCode, + stdout, + stderr + }; + }); } +//# sourceMappingURL=exec.js.map -function isX (id) { - return !id || id.toLowerCase() === 'x' || id === '*' -} +/***/ }), -// ~, ~> --> * (any, kinda silly) -// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0 -// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0 -// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0 -// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0 -// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0 -function replaceTildes (comp, options) { - return comp.trim().split(/\s+/).map(function (comp) { - return replaceTilde(comp, options) - }).join(' ') -} +/***/ 88159: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { -function replaceTilde (comp, options) { - var r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE] - return comp.replace(r, function (_, M, m, p, pr) { - debug('tilde', comp, _, M, m, p, pr) - var ret +"use strict"; - if (isX(M)) { - ret = '' - } else if (isX(m)) { - ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0' - } else if (isX(p)) { - // ~1.2 == >=1.2.0 <1.3.0 - ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0' - } else if (pr) { - debug('replaceTilde pr', pr) - ret = '>=' + M + '.' + m + '.' + p + '-' + pr + - ' <' + M + '.' + (+m + 1) + '.0' - } else { - // ~1.2.3 == >=1.2.3 <1.3.0 - ret = '>=' + M + '.' + m + '.' + p + - ' <' + M + '.' + (+m + 1) + '.0' +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; } - - debug('tilde return', ret) - return ret - }) -} - -// ^ --> * (any, kinda silly) -// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0 -// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0 -// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0 -// ^1.2.3 --> >=1.2.3 <2.0.0 -// ^1.2.0 --> >=1.2.0 <2.0.0 -function replaceCarets (comp, options) { - return comp.trim().split(/\s+/).map(function (comp) { - return replaceCaret(comp, options) - }).join(' ') -} - -function replaceCaret (comp, options) { - debug('caret', comp, options) - var r = options.loose ? re[t.CARETLOOSE] : re[t.CARET] - return comp.replace(r, function (_, M, m, p, pr) { - debug('caret', comp, _, M, m, p, pr) - var ret - - if (isX(M)) { - ret = '' - } else if (isX(m)) { - ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0' - } else if (isX(p)) { - if (M === '0') { - ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0' - } else { - ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0' - } - } else if (pr) { - debug('replaceCaret pr', pr) - if (M === '0') { - if (m === '0') { - ret = '>=' + M + '.' + m + '.' + p + '-' + pr + - ' <' + M + '.' + m + '.' + (+p + 1) - } else { - ret = '>=' + M + '.' + m + '.' + p + '-' + pr + - ' <' + M + '.' + (+m + 1) + '.0' - } - } else { - ret = '>=' + M + '.' + m + '.' + p + '-' + pr + - ' <' + (+M + 1) + '.0.0' - } - } else { - debug('no pr') - if (M === '0') { - if (m === '0') { - ret = '>=' + M + '.' + m + '.' + p + - ' <' + M + '.' + m + '.' + (+p + 1) - } else { - ret = '>=' + M + '.' + m + '.' + p + - ' <' + M + '.' + (+m + 1) + '.0' + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.ToolRunner = void 0; +exports.argStringToArray = argStringToArray; +const os = __importStar(__nccwpck_require__(22037)); +const events = __importStar(__nccwpck_require__(82361)); +const child = __importStar(__nccwpck_require__(32081)); +const path = __importStar(__nccwpck_require__(71017)); +const io = __importStar(__nccwpck_require__(47351)); +const ioUtil = __importStar(__nccwpck_require__(81962)); +const timers_1 = __nccwpck_require__(39512); +/* eslint-disable @typescript-eslint/unbound-method */ +const IS_WINDOWS = process.platform === 'win32'; +/* + * Class for running command line tools. Handles quoting and arg parsing in a platform agnostic way. + */ +class ToolRunner extends events.EventEmitter { + constructor(toolPath, args, options) { + super(); + if (!toolPath) { + throw new Error("Parameter 'toolPath' cannot be null or empty."); } - } else { - ret = '>=' + M + '.' + m + '.' + p + - ' <' + (+M + 1) + '.0.0' - } + this.toolPath = toolPath; + this.args = args || []; + this.options = options || {}; } - - debug('caret return', ret) - return ret - }) -} - -function replaceXRanges (comp, options) { - debug('replaceXRanges', comp, options) - return comp.split(/\s+/).map(function (comp) { - return replaceXRange(comp, options) - }).join(' ') -} - -function replaceXRange (comp, options) { - comp = comp.trim() - var r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE] - return comp.replace(r, function (ret, gtlt, M, m, p, pr) { - debug('xRange', comp, ret, gtlt, M, m, p, pr) - var xM = isX(M) - var xm = xM || isX(m) - var xp = xm || isX(p) - var anyX = xp - - if (gtlt === '=' && anyX) { - gtlt = '' + _debug(message) { + if (this.options.listeners && this.options.listeners.debug) { + this.options.listeners.debug(message); + } } - - // if we're including prereleases in the match, then we need - // to fix this to -0, the lowest possible prerelease value - pr = options.includePrerelease ? '-0' : '' - - if (xM) { - if (gtlt === '>' || gtlt === '<') { - // nothing is allowed - ret = '<0.0.0-0' - } else { - // nothing is forbidden - ret = '*' - } - } else if (gtlt && anyX) { - // we know patch is an x, because we have any x at all. - // replace X with 0 - if (xm) { - m = 0 - } - p = 0 - - if (gtlt === '>') { - // >1 => >=2.0.0 - // >1.2 => >=1.3.0 - // >1.2.3 => >= 1.2.4 - gtlt = '>=' - if (xm) { - M = +M + 1 - m = 0 - p = 0 - } else { - m = +m + 1 - p = 0 + _getCommandString(options, noPrefix) { + const toolPath = this._getSpawnFileName(); + const args = this._getSpawnArgs(options); + let cmd = noPrefix ? '' : '[command]'; // omit prefix when piped to a second tool + if (IS_WINDOWS) { + // Windows + cmd file + if (this._isCmdFile()) { + cmd += toolPath; + for (const a of args) { + cmd += ` ${a}`; + } + } + // Windows + verbatim + else if (options.windowsVerbatimArguments) { + cmd += `"${toolPath}"`; + for (const a of args) { + cmd += ` ${a}`; + } + } + // Windows (regular) + else { + cmd += this._windowsQuoteCmdArg(toolPath); + for (const a of args) { + cmd += ` ${this._windowsQuoteCmdArg(a)}`; + } + } } - } else if (gtlt === '<=') { - // <=0.7.x is actually <0.8.0, since any 0.7.x should - // pass. Similarly, <=7.x is actually <8.0.0, etc. - gtlt = '<' - if (xm) { - M = +M + 1 - } else { - m = +m + 1 + else { + // OSX/Linux - this can likely be improved with some form of quoting. + // creating processes on Unix is fundamentally different than Windows. + // on Unix, execvp() takes an arg array. + cmd += toolPath; + for (const a of args) { + cmd += ` ${a}`; + } } - } - - ret = gtlt + M + '.' + m + '.' + p + pr - } else if (xm) { - ret = '>=' + M + '.0.0' + pr + ' <' + (+M + 1) + '.0.0' + pr - } else if (xp) { - ret = '>=' + M + '.' + m + '.0' + pr + - ' <' + M + '.' + (+m + 1) + '.0' + pr - } - - debug('xRange return', ret) - - return ret - }) -} - -// Because * is AND-ed with everything else in the comparator, -// and '' means "any version", just remove the *s entirely. -function replaceStars (comp, options) { - debug('replaceStars', comp, options) - // Looseness is ignored here. star is always as loose as it gets! - return comp.trim().replace(re[t.STAR], '') -} - -// This function is passed to string.replace(re[t.HYPHENRANGE]) -// M, m, patch, prerelease, build -// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5 -// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do -// 1.2 - 3.4 => >=1.2.0 <3.5.0 -function hyphenReplace ($0, - from, fM, fm, fp, fpr, fb, - to, tM, tm, tp, tpr, tb) { - if (isX(fM)) { - from = '' - } else if (isX(fm)) { - from = '>=' + fM + '.0.0' - } else if (isX(fp)) { - from = '>=' + fM + '.' + fm + '.0' - } else { - from = '>=' + from - } - - if (isX(tM)) { - to = '' - } else if (isX(tm)) { - to = '<' + (+tM + 1) + '.0.0' - } else if (isX(tp)) { - to = '<' + tM + '.' + (+tm + 1) + '.0' - } else if (tpr) { - to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr - } else { - to = '<=' + to - } - - return (from + ' ' + to).trim() -} - -// if ANY of the sets match ALL of its comparators, then pass -Range.prototype.test = function (version) { - if (!version) { - return false - } - - if (typeof version === 'string') { - try { - version = new SemVer(version, this.options) - } catch (er) { - return false + return cmd; } - } - - for (var i = 0; i < this.set.length; i++) { - if (testSet(this.set[i], version, this.options)) { - return true + _processLineBuffer(data, strBuffer, onLine) { + try { + let s = strBuffer + data.toString(); + let n = s.indexOf(os.EOL); + while (n > -1) { + const line = s.substring(0, n); + onLine(line); + // the rest of the string ... + s = s.substring(n + os.EOL.length); + n = s.indexOf(os.EOL); + } + return s; + } + catch (err) { + // streaming lines to console is best effort. Don't fail a build. + this._debug(`error processing line. Failed with error ${err}`); + return ''; + } } - } - return false -} - -function testSet (set, version, options) { - for (var i = 0; i < set.length; i++) { - if (!set[i].test(version)) { - return false + _getSpawnFileName() { + if (IS_WINDOWS) { + if (this._isCmdFile()) { + return process.env['COMSPEC'] || 'cmd.exe'; + } + } + return this.toolPath; } - } - - if (version.prerelease.length && !options.includePrerelease) { - // Find the set of versions that are allowed to have prereleases - // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0 - // That should allow `1.2.3-pr.2` to pass. - // However, `1.2.4-alpha.notready` should NOT be allowed, - // even though it's within the range set by the comparators. - for (i = 0; i < set.length; i++) { - debug(set[i].semver) - if (set[i].semver === ANY) { - continue - } - - if (set[i].semver.prerelease.length > 0) { - var allowed = set[i].semver - if (allowed.major === version.major && - allowed.minor === version.minor && - allowed.patch === version.patch) { - return true + _getSpawnArgs(options) { + if (IS_WINDOWS) { + if (this._isCmdFile()) { + let argline = `/D /S /C "${this._windowsQuoteCmdArg(this.toolPath)}`; + for (const a of this.args) { + argline += ' '; + argline += options.windowsVerbatimArguments + ? a + : this._windowsQuoteCmdArg(a); + } + argline += '"'; + return [argline]; + } } - } + return this.args; } - - // Version has a -pre, but it's not one of the ones we like. - return false - } - - return true -} - -exports.satisfies = satisfies -function satisfies (version, range, options) { - try { - range = new Range(range, options) - } catch (er) { - return false - } - return range.test(version) -} - -exports.maxSatisfying = maxSatisfying -function maxSatisfying (versions, range, options) { - var max = null - var maxSV = null - try { - var rangeObj = new Range(range, options) - } catch (er) { - return null - } - versions.forEach(function (v) { - if (rangeObj.test(v)) { - // satisfies(v, range, options) - if (!max || maxSV.compare(v) === -1) { - // compare(max, v, true) - max = v - maxSV = new SemVer(max, options) - } + _endsWith(str, end) { + return str.endsWith(end); } - }) - return max -} - -exports.minSatisfying = minSatisfying -function minSatisfying (versions, range, options) { - var min = null - var minSV = null - try { - var rangeObj = new Range(range, options) - } catch (er) { - return null - } - versions.forEach(function (v) { - if (rangeObj.test(v)) { - // satisfies(v, range, options) - if (!min || minSV.compare(v) === 1) { - // compare(min, v, true) - min = v - minSV = new SemVer(min, options) - } + _isCmdFile() { + const upperToolPath = this.toolPath.toUpperCase(); + return (this._endsWith(upperToolPath, '.CMD') || + this._endsWith(upperToolPath, '.BAT')); } - }) - return min -} - -exports.minVersion = minVersion -function minVersion (range, loose) { - range = new Range(range, loose) - - var minver = new SemVer('0.0.0') - if (range.test(minver)) { - return minver - } - - minver = new SemVer('0.0.0-0') - if (range.test(minver)) { - return minver - } - - minver = null - for (var i = 0; i < range.set.length; ++i) { - var comparators = range.set[i] - - comparators.forEach(function (comparator) { - // Clone to avoid manipulating the comparator's semver object. - var compver = new SemVer(comparator.semver.version) - switch (comparator.operator) { - case '>': - if (compver.prerelease.length === 0) { - compver.patch++ - } else { - compver.prerelease.push(0) - } - compver.raw = compver.format() - /* fallthrough */ - case '': - case '>=': - if (!minver || gt(minver, compver)) { - minver = compver - } - break - case '<': - case '<=': - /* Ignore maximum versions */ - break - /* istanbul ignore next */ - default: - throw new Error('Unexpected operation: ' + comparator.operator) - } - }) - } - - if (minver && range.test(minver)) { - return minver - } - - return null -} - -exports.validRange = validRange -function validRange (range, options) { - try { - // Return '*' instead of '' so that truthiness works. - // This will throw if it's invalid anyway - return new Range(range, options).range || '*' - } catch (er) { - return null - } -} - -// Determine if version is less than all the versions possible in the range -exports.ltr = ltr -function ltr (version, range, options) { - return outside(version, range, '<', options) -} - -// Determine if version is greater than all the versions possible in the range. -exports.gtr = gtr -function gtr (version, range, options) { - return outside(version, range, '>', options) -} - -exports.outside = outside -function outside (version, range, hilo, options) { - version = new SemVer(version, options) - range = new Range(range, options) - - var gtfn, ltefn, ltfn, comp, ecomp - switch (hilo) { - case '>': - gtfn = gt - ltefn = lte - ltfn = lt - comp = '>' - ecomp = '>=' - break - case '<': - gtfn = lt - ltefn = gte - ltfn = gt - comp = '<' - ecomp = '<=' - break - default: - throw new TypeError('Must provide a hilo val of "<" or ">"') - } - - // If it satisifes the range it is not outside - if (satisfies(version, range, options)) { - return false - } - - // From now on, variable terms are as if we're in "gtr" mode. - // but note that everything is flipped for the "ltr" function. - - for (var i = 0; i < range.set.length; ++i) { - var comparators = range.set[i] - - var high = null - var low = null - - comparators.forEach(function (comparator) { - if (comparator.semver === ANY) { - comparator = new Comparator('>=0.0.0') - } - high = high || comparator - low = low || comparator - if (gtfn(comparator.semver, high.semver, options)) { - high = comparator - } else if (ltfn(comparator.semver, low.semver, options)) { - low = comparator - } - }) - - // If the edge version comparator has a operator then our version - // isn't outside it - if (high.operator === comp || high.operator === ecomp) { - return false + _windowsQuoteCmdArg(arg) { + // for .exe, apply the normal quoting rules that libuv applies + if (!this._isCmdFile()) { + return this._uvQuoteCmdArg(arg); + } + // otherwise apply quoting rules specific to the cmd.exe command line parser. + // the libuv rules are generic and are not designed specifically for cmd.exe + // command line parser. + // + // for a detailed description of the cmd.exe command line parser, refer to + // http://stackoverflow.com/questions/4094699/how-does-the-windows-command-interpreter-cmd-exe-parse-scripts/7970912#7970912 + // need quotes for empty arg + if (!arg) { + return '""'; + } + // determine whether the arg needs to be quoted + const cmdSpecialChars = [ + ' ', + '\t', + '&', + '(', + ')', + '[', + ']', + '{', + '}', + '^', + '=', + ';', + '!', + "'", + '+', + ',', + '`', + '~', + '|', + '<', + '>', + '"' + ]; + let needsQuotes = false; + for (const char of arg) { + if (cmdSpecialChars.some(x => x === char)) { + needsQuotes = true; + break; + } + } + // short-circuit if quotes not needed + if (!needsQuotes) { + return arg; + } + // the following quoting rules are very similar to the rules that by libuv applies. + // + // 1) wrap the string in quotes + // + // 2) double-up quotes - i.e. " => "" + // + // this is different from the libuv quoting rules. libuv replaces " with \", which unfortunately + // doesn't work well with a cmd.exe command line. + // + // note, replacing " with "" also works well if the arg is passed to a downstream .NET console app. + // for example, the command line: + // foo.exe "myarg:""my val""" + // is parsed by a .NET console app into an arg array: + // [ "myarg:\"my val\"" ] + // which is the same end result when applying libuv quoting rules. although the actual + // command line from libuv quoting rules would look like: + // foo.exe "myarg:\"my val\"" + // + // 3) double-up slashes that precede a quote, + // e.g. hello \world => "hello \world" + // hello\"world => "hello\\""world" + // hello\\"world => "hello\\\\""world" + // hello world\ => "hello world\\" + // + // technically this is not required for a cmd.exe command line, or the batch argument parser. + // the reasons for including this as a .cmd quoting rule are: + // + // a) this is optimized for the scenario where the argument is passed from the .cmd file to an + // external program. many programs (e.g. .NET console apps) rely on the slash-doubling rule. + // + // b) it's what we've been doing previously (by deferring to node default behavior) and we + // haven't heard any complaints about that aspect. + // + // note, a weakness of the quoting rules chosen here, is that % is not escaped. in fact, % cannot be + // escaped when used on the command line directly - even though within a .cmd file % can be escaped + // by using %%. + // + // the saving grace is, on the command line, %var% is left as-is if var is not defined. this contrasts + // the line parsing rules within a .cmd file, where if var is not defined it is replaced with nothing. + // + // one option that was explored was replacing % with ^% - i.e. %var% => ^%var^%. this hack would + // often work, since it is unlikely that var^ would exist, and the ^ character is removed when the + // variable is used. the problem, however, is that ^ is not removed when %* is used to pass the args + // to an external program. + // + // an unexplored potential solution for the % escaping problem, is to create a wrapper .cmd file. + // % can be escaped within a .cmd file. + let reverse = '"'; + let quoteHit = true; + for (let i = arg.length; i > 0; i--) { + // walk the string in reverse + reverse += arg[i - 1]; + if (quoteHit && arg[i - 1] === '\\') { + reverse += '\\'; // double the slash + } + else if (arg[i - 1] === '"') { + quoteHit = true; + reverse += '"'; // double the quote + } + else { + quoteHit = false; + } + } + reverse += '"'; + return reverse.split('').reverse().join(''); } - - // If the lowest version comparator has an operator and our version - // is less than it then it isn't higher than the range - if ((!low.operator || low.operator === comp) && - ltefn(version, low.semver)) { - return false - } else if (low.operator === ecomp && ltfn(version, low.semver)) { - return false + _uvQuoteCmdArg(arg) { + // Tool runner wraps child_process.spawn() and needs to apply the same quoting as + // Node in certain cases where the undocumented spawn option windowsVerbatimArguments + // is used. + // + // Since this function is a port of quote_cmd_arg from Node 4.x (technically, lib UV, + // see https://github.com/nodejs/node/blob/v4.x/deps/uv/src/win/process.c for details), + // pasting copyright notice from Node within this function: + // + // Copyright Joyent, Inc. and other Node contributors. All rights reserved. + // + // 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. + if (!arg) { + // Need double quotation for empty argument + return '""'; + } + if (!arg.includes(' ') && !arg.includes('\t') && !arg.includes('"')) { + // No quotation needed + return arg; + } + if (!arg.includes('"') && !arg.includes('\\')) { + // No embedded double quotes or backslashes, so I can just wrap + // quote marks around the whole thing. + return `"${arg}"`; + } + // Expected input/output: + // input : hello"world + // output: "hello\"world" + // input : hello""world + // output: "hello\"\"world" + // input : hello\world + // output: hello\world + // input : hello\\world + // output: hello\\world + // input : hello\"world + // output: "hello\\\"world" + // input : hello\\"world + // output: "hello\\\\\"world" + // input : hello world\ + // output: "hello world\\" - note the comment in libuv actually reads "hello world\" + // but it appears the comment is wrong, it should be "hello world\\" + let reverse = '"'; + let quoteHit = true; + for (let i = arg.length; i > 0; i--) { + // walk the string in reverse + reverse += arg[i - 1]; + if (quoteHit && arg[i - 1] === '\\') { + reverse += '\\'; + } + else if (arg[i - 1] === '"') { + quoteHit = true; + reverse += '\\'; + } + else { + quoteHit = false; + } + } + reverse += '"'; + return reverse.split('').reverse().join(''); } - } - return true -} - -exports.prerelease = prerelease -function prerelease (version, options) { - var parsed = parse(version, options) - return (parsed && parsed.prerelease.length) ? parsed.prerelease : null -} - -exports.intersects = intersects -function intersects (r1, r2, options) { - r1 = new Range(r1, options) - r2 = new Range(r2, options) - return r1.intersects(r2) -} - -exports.coerce = coerce -function coerce (version, options) { - if (version instanceof SemVer) { - return version - } - - if (typeof version === 'number') { - version = String(version) - } - - if (typeof version !== 'string') { - return null - } - - options = options || {} - - var match = null - if (!options.rtl) { - match = version.match(re[t.COERCE]) - } else { - // Find the right-most coercible string that does not share - // a terminus with a more left-ward coercible string. - // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4' - // - // Walk through the string checking with a /g regexp - // Manually set the index so as to pick up overlapping matches. - // Stop when we get a match that ends at the string end, since no - // coercible string can be more right-ward without the same terminus. - var next - while ((next = re[t.COERCERTL].exec(version)) && - (!match || match.index + match[0].length !== version.length) - ) { - if (!match || - next.index + next[0].length !== match.index + match[0].length) { - match = next - } - re[t.COERCERTL].lastIndex = next.index + next[1].length + next[2].length + _cloneExecOptions(options) { + options = options || {}; + const result = { + cwd: options.cwd || process.cwd(), + env: options.env || process.env, + silent: options.silent || false, + windowsVerbatimArguments: options.windowsVerbatimArguments || false, + failOnStdErr: options.failOnStdErr || false, + ignoreReturnCode: options.ignoreReturnCode || false, + delay: options.delay || 10000 + }; + result.outStream = options.outStream || process.stdout; + result.errStream = options.errStream || process.stderr; + return result; } - // leave it in a clean state - re[t.COERCERTL].lastIndex = -1 - } - - if (match === null) { - return null - } - - return parse(match[2] + - '.' + (match[3] || '0') + - '.' + (match[4] || '0'), options) -} - - -/***/ }), - -/***/ 7351: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - -"use strict"; - -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -const os = __importStar(__nccwpck_require__(2037)); -const utils_1 = __nccwpck_require__(5278); -/** - * Commands - * - * Command Format: - * ::name key=value,key=value::message - * - * Examples: - * ::warning::This is the message - * ::set-env name=MY_VAR::some value - */ -function issueCommand(command, properties, message) { - const cmd = new Command(command, properties, message); - process.stdout.write(cmd.toString() + os.EOL); -} -exports.issueCommand = issueCommand; -function issue(name, message = '') { - issueCommand(name, {}, message); -} -exports.issue = issue; -const CMD_STRING = '::'; -class Command { - constructor(command, properties, message) { - if (!command) { - command = 'missing.command'; + _getSpawnOptions(options, toolPath) { + options = options || {}; + const result = {}; + result.cwd = options.cwd; + result.env = options.env; + result['windowsVerbatimArguments'] = + options.windowsVerbatimArguments || this._isCmdFile(); + if (options.windowsVerbatimArguments) { + result.argv0 = `"${toolPath}"`; } - this.command = command; - this.properties = properties; - this.message = message; + return result; } - toString() { - let cmdStr = CMD_STRING + this.command; - if (this.properties && Object.keys(this.properties).length > 0) { - cmdStr += ' '; - let first = true; - for (const key in this.properties) { - if (this.properties.hasOwnProperty(key)) { - const val = this.properties[key]; - if (val) { - if (first) { - first = false; + /** + * Exec a tool. + * Output will be streamed to the live console. + * Returns promise with return code + * + * @param tool path to tool to exec + * @param options optional exec options. See ExecOptions + * @returns number + */ + exec() { + return __awaiter(this, void 0, void 0, function* () { + // root the tool path if it is unrooted and contains relative pathing + if (!ioUtil.isRooted(this.toolPath) && + (this.toolPath.includes('/') || + (IS_WINDOWS && this.toolPath.includes('\\')))) { + // prefer options.cwd if it is specified, however options.cwd may also need to be rooted + this.toolPath = path.resolve(process.cwd(), this.options.cwd || process.cwd(), this.toolPath); + } + // if the tool is only a file name, then resolve it from the PATH + // otherwise verify it exists (add extension on Windows if necessary) + this.toolPath = yield io.which(this.toolPath, true); + return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () { + this._debug(`exec tool: ${this.toolPath}`); + this._debug('arguments:'); + for (const arg of this.args) { + this._debug(` ${arg}`); + } + const optionsNonNull = this._cloneExecOptions(this.options); + if (!optionsNonNull.silent && optionsNonNull.outStream) { + optionsNonNull.outStream.write(this._getCommandString(optionsNonNull) + os.EOL); + } + const state = new ExecState(optionsNonNull, this.toolPath); + state.on('debug', (message) => { + this._debug(message); + }); + if (this.options.cwd && !(yield ioUtil.exists(this.options.cwd))) { + return reject(new Error(`The cwd: ${this.options.cwd} does not exist!`)); + } + const fileName = this._getSpawnFileName(); + const cp = child.spawn(fileName, this._getSpawnArgs(optionsNonNull), this._getSpawnOptions(this.options, fileName)); + let stdbuffer = ''; + if (cp.stdout) { + cp.stdout.on('data', (data) => { + if (this.options.listeners && this.options.listeners.stdout) { + this.options.listeners.stdout(data); } - else { - cmdStr += ','; + if (!optionsNonNull.silent && optionsNonNull.outStream) { + optionsNonNull.outStream.write(data); } - cmdStr += `${key}=${escapeProperty(val)}`; + stdbuffer = this._processLineBuffer(data, stdbuffer, (line) => { + if (this.options.listeners && this.options.listeners.stdline) { + this.options.listeners.stdline(line); + } + }); + }); + } + let errbuffer = ''; + if (cp.stderr) { + cp.stderr.on('data', (data) => { + state.processStderr = true; + if (this.options.listeners && this.options.listeners.stderr) { + this.options.listeners.stderr(data); + } + if (!optionsNonNull.silent && + optionsNonNull.errStream && + optionsNonNull.outStream) { + const s = optionsNonNull.failOnStdErr + ? optionsNonNull.errStream + : optionsNonNull.outStream; + s.write(data); + } + errbuffer = this._processLineBuffer(data, errbuffer, (line) => { + if (this.options.listeners && this.options.listeners.errline) { + this.options.listeners.errline(line); + } + }); + }); + } + cp.on('error', (err) => { + state.processError = err.message; + state.processExited = true; + state.processClosed = true; + state.CheckComplete(); + }); + cp.on('exit', (code) => { + state.processExitCode = code; + state.processExited = true; + this._debug(`Exit code ${code} received from tool '${this.toolPath}'`); + state.CheckComplete(); + }); + cp.on('close', (code) => { + state.processExitCode = code; + state.processExited = true; + state.processClosed = true; + this._debug(`STDIO streams have closed for tool '${this.toolPath}'`); + state.CheckComplete(); + }); + state.on('done', (error, exitCode) => { + if (stdbuffer.length > 0) { + this.emit('stdline', stdbuffer); + } + if (errbuffer.length > 0) { + this.emit('errline', errbuffer); + } + cp.removeAllListeners(); + if (error) { + reject(error); + } + else { + resolve(exitCode); + } + }); + if (this.options.input) { + if (!cp.stdin) { + throw new Error('child process missing stdin'); } + cp.stdin.end(this.options.input); } - } - } - cmdStr += `${CMD_STRING}${escapeData(this.message)}`; - return cmdStr; + })); + }); } } -function escapeData(s) { - return utils_1.toCommandValue(s) - .replace(/%/g, '%25') - .replace(/\r/g, '%0D') - .replace(/\n/g, '%0A'); -} -function escapeProperty(s) { - return utils_1.toCommandValue(s) - .replace(/%/g, '%25') - .replace(/\r/g, '%0D') - .replace(/\n/g, '%0A') - .replace(/:/g, '%3A') - .replace(/,/g, '%2C'); -} -//# sourceMappingURL=command.js.map - -/***/ }), - -/***/ 2186: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - -"use strict"; - -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -const command_1 = __nccwpck_require__(7351); -const file_command_1 = __nccwpck_require__(717); -const utils_1 = __nccwpck_require__(5278); -const os = __importStar(__nccwpck_require__(2037)); -const path = __importStar(__nccwpck_require__(1017)); -/** - * The code to exit an action - */ -var ExitCode; -(function (ExitCode) { - /** - * A code indicating that the action was successful - */ - ExitCode[ExitCode["Success"] = 0] = "Success"; - /** - * A code indicating that the action was a failure - */ - ExitCode[ExitCode["Failure"] = 1] = "Failure"; -})(ExitCode = exports.ExitCode || (exports.ExitCode = {})); -//----------------------------------------------------------------------- -// Variables -//----------------------------------------------------------------------- +exports.ToolRunner = ToolRunner; /** - * Sets env variable for this action and future actions in the job - * @param name the name of the variable to set - * @param val the value of the variable. Non-string values will be converted to a string via JSON.stringify + * Convert an arg string to an array of args. Handles escaping + * + * @param argString string of arguments + * @returns string[] array of arguments */ -// eslint-disable-next-line @typescript-eslint/no-explicit-any -function exportVariable(name, val) { - const convertedVal = utils_1.toCommandValue(val); - process.env[name] = convertedVal; - const filePath = process.env['GITHUB_ENV'] || ''; - if (filePath) { - const delimiter = '_GitHubActionsFileCommandDelimeter_'; - const commandValue = `${name}<<${delimiter}${os.EOL}${convertedVal}${os.EOL}${delimiter}`; - file_command_1.issueCommand('ENV', commandValue); - } - else { - command_1.issueCommand('set-env', { name }, convertedVal); +function argStringToArray(argString) { + const args = []; + let inQuotes = false; + let escaped = false; + let arg = ''; + function append(c) { + // we only escape double quotes. + if (escaped && c !== '"') { + arg += '\\'; + } + arg += c; + escaped = false; } -} -exports.exportVariable = exportVariable; -/** - * Registers a secret which will get masked from logs - * @param secret value of the secret - */ -function setSecret(secret) { - command_1.issueCommand('add-mask', {}, secret); -} -exports.setSecret = setSecret; -/** - * Prepends inputPath to the PATH (for this action and future actions) - * @param inputPath - */ -function addPath(inputPath) { - const filePath = process.env['GITHUB_PATH'] || ''; - if (filePath) { - file_command_1.issueCommand('PATH', inputPath); + for (let i = 0; i < argString.length; i++) { + const c = argString.charAt(i); + if (c === '"') { + if (!escaped) { + inQuotes = !inQuotes; + } + else { + append(c); + } + continue; + } + if (c === '\\' && escaped) { + append(c); + continue; + } + if (c === '\\' && inQuotes) { + escaped = true; + continue; + } + if (c === ' ' && !inQuotes) { + if (arg.length > 0) { + args.push(arg); + arg = ''; + } + continue; + } + append(c); } - else { - command_1.issueCommand('add-path', {}, inputPath); + if (arg.length > 0) { + args.push(arg.trim()); } - process.env['PATH'] = `${inputPath}${path.delimiter}${process.env['PATH']}`; + return args; } -exports.addPath = addPath; -/** - * Gets the value of an input. The value is also trimmed. - * - * @param name name of the input to get - * @param options optional. See InputOptions. - * @returns string - */ -function getInput(name, options) { - const val = process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`] || ''; - if (options && options.required && !val) { - throw new Error(`Input required and not supplied: ${name}`); +class ExecState extends events.EventEmitter { + constructor(options, toolPath) { + super(); + this.processClosed = false; // tracks whether the process has exited and stdio is closed + this.processError = ''; + this.processExitCode = 0; + this.processExited = false; // tracks whether the process has exited + this.processStderr = false; // tracks whether stderr was written to + this.delay = 10000; // 10 seconds + this.done = false; + this.timeout = null; + if (!toolPath) { + throw new Error('toolPath must not be empty'); + } + this.options = options; + this.toolPath = toolPath; + if (options.delay) { + this.delay = options.delay; + } } - return val.trim(); -} -exports.getInput = getInput; -/** - * Sets the value of an output. - * - * @param name name of the output to set - * @param value value to store. Non-string values will be converted to a string via JSON.stringify - */ -// eslint-disable-next-line @typescript-eslint/no-explicit-any -function setOutput(name, value) { - command_1.issueCommand('set-output', { name }, value); -} -exports.setOutput = setOutput; -/** - * Enables or disables the echoing of commands into stdout for the rest of the step. - * Echoing is disabled by default if ACTIONS_STEP_DEBUG is not set. - * - */ -function setCommandEcho(enabled) { - command_1.issue('echo', enabled ? 'on' : 'off'); -} -exports.setCommandEcho = setCommandEcho; -//----------------------------------------------------------------------- -// Results -//----------------------------------------------------------------------- -/** - * Sets the action status to failed. - * When the action exits it will be with an exit code of 1 - * @param message add error issue message - */ -function setFailed(message) { - process.exitCode = ExitCode.Failure; - error(message); -} -exports.setFailed = setFailed; -//----------------------------------------------------------------------- -// Logging Commands -//----------------------------------------------------------------------- -/** - * Gets whether Actions Step Debug is on or not - */ -function isDebug() { - return process.env['RUNNER_DEBUG'] === '1'; -} -exports.isDebug = isDebug; -/** - * Writes debug message to user log - * @param message debug message - */ -function debug(message) { - command_1.issueCommand('debug', {}, message); -} -exports.debug = debug; -/** - * Adds an error issue - * @param message error issue message. Errors will be converted to string via toString() - */ -function error(message) { - command_1.issue('error', message instanceof Error ? message.toString() : message); -} -exports.error = error; -/** - * Adds an warning issue - * @param message warning issue message. Errors will be converted to string via toString() - */ -function warning(message) { - command_1.issue('warning', message instanceof Error ? message.toString() : message); -} -exports.warning = warning; -/** - * Writes info to log with console.log. - * @param message info message - */ -function info(message) { - process.stdout.write(message + os.EOL); -} -exports.info = info; -/** - * Begin an output group. - * - * Output until the next `groupEnd` will be foldable in this group - * - * @param name The name of the output group - */ -function startGroup(name) { - command_1.issue('group', name); -} -exports.startGroup = startGroup; -/** - * End an output group. - */ -function endGroup() { - command_1.issue('endgroup'); -} -exports.endGroup = endGroup; -/** - * Wrap an asynchronous function call in a group. - * - * Returns the same type as the function itself. - * - * @param name The name of the group - * @param fn The function to wrap in the group - */ -function group(name, fn) { - return __awaiter(this, void 0, void 0, function* () { - startGroup(name); - let result; - try { - result = yield fn(); + CheckComplete() { + if (this.done) { + return; } - finally { - endGroup(); + if (this.processClosed) { + this._setResult(); + } + else if (this.processExited) { + this.timeout = (0, timers_1.setTimeout)(ExecState.HandleTimeout, this.delay, this); } - return result; - }); -} -exports.group = group; -//----------------------------------------------------------------------- -// Wrapper action state -//----------------------------------------------------------------------- -/** - * Saves state for current action, the state can only be retrieved by this action's post job execution. - * - * @param name name of the state to store - * @param value value to store. Non-string values will be converted to a string via JSON.stringify - */ -// eslint-disable-next-line @typescript-eslint/no-explicit-any -function saveState(name, value) { - command_1.issueCommand('save-state', { name }, value); -} -exports.saveState = saveState; -/** - * Gets the value of an state set by this action's main execution. - * - * @param name name of the state to get - * @returns string - */ -function getState(name) { - return process.env[`STATE_${name}`] || ''; -} -exports.getState = getState; -//# sourceMappingURL=core.js.map - -/***/ }), - -/***/ 717: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - -"use strict"; - -// For internal use, subject to change. -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -// We use any as a valid input type -/* eslint-disable @typescript-eslint/no-explicit-any */ -const fs = __importStar(__nccwpck_require__(7147)); -const os = __importStar(__nccwpck_require__(2037)); -const utils_1 = __nccwpck_require__(5278); -function issueCommand(command, message) { - const filePath = process.env[`GITHUB_${command}`]; - if (!filePath) { - throw new Error(`Unable to find environment variable for file command ${command}`); } - if (!fs.existsSync(filePath)) { - throw new Error(`Missing file at path: ${filePath}`); + _debug(message) { + this.emit('debug', message); } - fs.appendFileSync(filePath, `${utils_1.toCommandValue(message)}${os.EOL}`, { - encoding: 'utf8' - }); -} -exports.issueCommand = issueCommand; -//# sourceMappingURL=file-command.js.map - -/***/ }), - -/***/ 5278: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - -// We use any as a valid input type -/* eslint-disable @typescript-eslint/no-explicit-any */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -/** - * Sanitizes an input into a string so it can be passed into issueCommand safely - * @param input input to sanitize into a string - */ -function toCommandValue(input) { - if (input === null || input === undefined) { - return ''; + _setResult() { + // determine whether there is an error + let error; + if (this.processExited) { + if (this.processError) { + error = new Error(`There was an error when attempting to execute the process '${this.toolPath}'. This may indicate the process failed to start. Error: ${this.processError}`); + } + else if (this.processExitCode !== 0 && !this.options.ignoreReturnCode) { + error = new Error(`The process '${this.toolPath}' failed with exit code ${this.processExitCode}`); + } + else if (this.processStderr && this.options.failOnStdErr) { + error = new Error(`The process '${this.toolPath}' failed because one or more lines were written to the STDERR stream`); + } + } + // clear the timeout + if (this.timeout) { + clearTimeout(this.timeout); + this.timeout = null; + } + this.done = true; + this.emit('done', error, this.processExitCode); } - else if (typeof input === 'string' || input instanceof String) { - return input; + static HandleTimeout(state) { + if (state.done) { + return; + } + if (!state.processClosed && state.processExited) { + const message = `The STDIO streams did not close within ${state.delay / 1000} seconds of the exit event from process '${state.toolPath}'. This may indicate a child process inherited the STDIO streams and has not yet exited.`; + state._debug(message); + } + state._setResult(); } - return JSON.stringify(input); } -exports.toCommandValue = toCommandValue; -//# sourceMappingURL=utils.js.map +//# sourceMappingURL=toolrunner.js.map /***/ }), -/***/ 1514: +/***/ 28090: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -5099,48 +6898,162 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; -}; Object.defineProperty(exports, "__esModule", ({ value: true })); -const tr = __importStar(__nccwpck_require__(8159)); +exports.create = create; +exports.hashFiles = hashFiles; +const internal_globber_1 = __nccwpck_require__(28298); +const internal_hash_files_1 = __nccwpck_require__(2448); /** - * Exec a command. - * Output will be streamed to the live console. - * Returns promise with return code + * Constructs a globber * - * @param commandLine command to execute (can include additional args). Must be correctly escaped. - * @param args optional arguments for tool. Escaping is handled by the lib. - * @param options optional exec options. See ExecOptions - * @returns Promise exit code + * @param patterns Patterns separated by newlines + * @param options Glob options */ -function exec(commandLine, args, options) { +function create(patterns, options) { return __awaiter(this, void 0, void 0, function* () { - const commandArgs = tr.argStringToArray(commandLine); - if (commandArgs.length === 0) { - throw new Error(`Parameter 'commandLine' cannot be null or empty.`); + return yield internal_globber_1.DefaultGlobber.create(patterns, options); + }); +} +/** + * Computes the sha256 hash of a glob + * + * @param patterns Patterns separated by newlines + * @param currentWorkspace Workspace used when matching files + * @param options Glob options + * @param verbose Enables verbose logging + */ +function hashFiles(patterns_1) { + return __awaiter(this, arguments, void 0, function* (patterns, currentWorkspace = '', options, verbose = false) { + let followSymbolicLinks = true; + if (options && typeof options.followSymbolicLinks === 'boolean') { + followSymbolicLinks = options.followSymbolicLinks; } - // Path to tool to execute should be first arg - const toolPath = commandArgs[0]; - args = commandArgs.slice(1).concat(args || []); - const runner = new tr.ToolRunner(toolPath, args, options); - return runner.exec(); + const globber = yield create(patterns, { followSymbolicLinks }); + return (0, internal_hash_files_1.hashFiles)(globber, currentWorkspace, verbose); }); } -exports.exec = exec; -//# sourceMappingURL=exec.js.map +//# sourceMappingURL=glob.js.map + +/***/ }), + +/***/ 51026: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getOptions = getOptions; +const core = __importStar(__nccwpck_require__(42186)); +/** + * Returns a copy with defaults filled in. + */ +function getOptions(copy) { + const result = { + followSymbolicLinks: true, + implicitDescendants: true, + matchDirectories: true, + omitBrokenSymbolicLinks: true, + excludeHiddenFiles: false + }; + if (copy) { + if (typeof copy.followSymbolicLinks === 'boolean') { + result.followSymbolicLinks = copy.followSymbolicLinks; + core.debug(`followSymbolicLinks '${result.followSymbolicLinks}'`); + } + if (typeof copy.implicitDescendants === 'boolean') { + result.implicitDescendants = copy.implicitDescendants; + core.debug(`implicitDescendants '${result.implicitDescendants}'`); + } + if (typeof copy.matchDirectories === 'boolean') { + result.matchDirectories = copy.matchDirectories; + core.debug(`matchDirectories '${result.matchDirectories}'`); + } + if (typeof copy.omitBrokenSymbolicLinks === 'boolean') { + result.omitBrokenSymbolicLinks = copy.omitBrokenSymbolicLinks; + core.debug(`omitBrokenSymbolicLinks '${result.omitBrokenSymbolicLinks}'`); + } + if (typeof copy.excludeHiddenFiles === 'boolean') { + result.excludeHiddenFiles = copy.excludeHiddenFiles; + core.debug(`excludeHiddenFiles '${result.excludeHiddenFiles}'`); + } + } + return result; +} +//# sourceMappingURL=internal-glob-options-helper.js.map /***/ }), -/***/ 8159: +/***/ 28298: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { @@ -5150,928 +7063,196 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; +var __asyncValues = (this && this.__asyncValues) || function (o) { + if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); + var m = o[Symbol.asyncIterator], i; + return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i); + function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } + function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } +}; +var __await = (this && this.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); } +var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _arguments, generator) { + if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); + var g = generator.apply(thisArg, _arguments || []), i, q = []; + return i = Object.create((typeof AsyncIterator === "function" ? AsyncIterator : Object).prototype), verb("next"), verb("throw"), verb("return", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i; + function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; } + function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } } + function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } + function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } + function fulfill(value) { resume("next", value); } + function reject(value) { resume("throw", value); } + function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } }; Object.defineProperty(exports, "__esModule", ({ value: true })); -const os = __importStar(__nccwpck_require__(2037)); -const events = __importStar(__nccwpck_require__(2361)); -const child = __importStar(__nccwpck_require__(2081)); -const path = __importStar(__nccwpck_require__(1017)); -const io = __importStar(__nccwpck_require__(7436)); -const ioUtil = __importStar(__nccwpck_require__(1962)); -/* eslint-disable @typescript-eslint/unbound-method */ +exports.DefaultGlobber = void 0; +const core = __importStar(__nccwpck_require__(42186)); +const fs = __importStar(__nccwpck_require__(57147)); +const globOptionsHelper = __importStar(__nccwpck_require__(51026)); +const path = __importStar(__nccwpck_require__(71017)); +const patternHelper = __importStar(__nccwpck_require__(29005)); +const internal_match_kind_1 = __nccwpck_require__(81063); +const internal_pattern_1 = __nccwpck_require__(64536); +const internal_search_state_1 = __nccwpck_require__(89117); const IS_WINDOWS = process.platform === 'win32'; -/* - * Class for running command line tools. Handles quoting and arg parsing in a platform agnostic way. - */ -class ToolRunner extends events.EventEmitter { - constructor(toolPath, args, options) { - super(); - if (!toolPath) { - throw new Error("Parameter 'toolPath' cannot be null or empty."); - } - this.toolPath = toolPath; - this.args = args || []; - this.options = options || {}; +class DefaultGlobber { + constructor(options) { + this.patterns = []; + this.searchPaths = []; + this.options = globOptionsHelper.getOptions(options); } - _debug(message) { - if (this.options.listeners && this.options.listeners.debug) { - this.options.listeners.debug(message); - } + getSearchPaths() { + // Return a copy + return this.searchPaths.slice(); } - _getCommandString(options, noPrefix) { - const toolPath = this._getSpawnFileName(); - const args = this._getSpawnArgs(options); - let cmd = noPrefix ? '' : '[command]'; // omit prefix when piped to a second tool - if (IS_WINDOWS) { - // Windows + cmd file - if (this._isCmdFile()) { - cmd += toolPath; - for (const a of args) { - cmd += ` ${a}`; - } - } - // Windows + verbatim - else if (options.windowsVerbatimArguments) { - cmd += `"${toolPath}"`; - for (const a of args) { - cmd += ` ${a}`; + glob() { + return __awaiter(this, void 0, void 0, function* () { + var _a, e_1, _b, _c; + const result = []; + try { + for (var _d = true, _e = __asyncValues(this.globGenerator()), _f; _f = yield _e.next(), _a = _f.done, !_a; _d = true) { + _c = _f.value; + _d = false; + const itemPath = _c; + result.push(itemPath); } } - // Windows (regular) - else { - cmd += this._windowsQuoteCmdArg(toolPath); - for (const a of args) { - cmd += ` ${this._windowsQuoteCmdArg(a)}`; + catch (e_1_1) { e_1 = { error: e_1_1 }; } + finally { + try { + if (!_d && !_a && (_b = _e.return)) yield _b.call(_e); } + finally { if (e_1) throw e_1.error; } } - } - else { - // OSX/Linux - this can likely be improved with some form of quoting. - // creating processes on Unix is fundamentally different than Windows. - // on Unix, execvp() takes an arg array. - cmd += toolPath; - for (const a of args) { - cmd += ` ${a}`; - } - } - return cmd; - } - _processLineBuffer(data, strBuffer, onLine) { - try { - let s = strBuffer + data.toString(); - let n = s.indexOf(os.EOL); - while (n > -1) { - const line = s.substring(0, n); - onLine(line); - // the rest of the string ... - s = s.substring(n + os.EOL.length); - n = s.indexOf(os.EOL); - } - strBuffer = s; - } - catch (err) { - // streaming lines to console is best effort. Don't fail a build. - this._debug(`error processing line. Failed with error ${err}`); - } - } - _getSpawnFileName() { - if (IS_WINDOWS) { - if (this._isCmdFile()) { - return process.env['COMSPEC'] || 'cmd.exe'; - } - } - return this.toolPath; + return result; + }); } - _getSpawnArgs(options) { - if (IS_WINDOWS) { - if (this._isCmdFile()) { - let argline = `/D /S /C "${this._windowsQuoteCmdArg(this.toolPath)}`; - for (const a of this.args) { - argline += ' '; - argline += options.windowsVerbatimArguments - ? a - : this._windowsQuoteCmdArg(a); + globGenerator() { + return __asyncGenerator(this, arguments, function* globGenerator_1() { + // Fill in defaults options + const options = globOptionsHelper.getOptions(this.options); + // Implicit descendants? + const patterns = []; + for (const pattern of this.patterns) { + patterns.push(pattern); + if (options.implicitDescendants && + (pattern.trailingSeparator || + pattern.segments[pattern.segments.length - 1] !== '**')) { + patterns.push(new internal_pattern_1.Pattern(pattern.negate, true, pattern.segments.concat('**'))); } - argline += '"'; - return [argline]; - } - } - return this.args; - } - _endsWith(str, end) { - return str.endsWith(end); - } - _isCmdFile() { - const upperToolPath = this.toolPath.toUpperCase(); - return (this._endsWith(upperToolPath, '.CMD') || - this._endsWith(upperToolPath, '.BAT')); - } - _windowsQuoteCmdArg(arg) { - // for .exe, apply the normal quoting rules that libuv applies - if (!this._isCmdFile()) { - return this._uvQuoteCmdArg(arg); - } - // otherwise apply quoting rules specific to the cmd.exe command line parser. - // the libuv rules are generic and are not designed specifically for cmd.exe - // command line parser. - // - // for a detailed description of the cmd.exe command line parser, refer to - // http://stackoverflow.com/questions/4094699/how-does-the-windows-command-interpreter-cmd-exe-parse-scripts/7970912#7970912 - // need quotes for empty arg - if (!arg) { - return '""'; - } - // determine whether the arg needs to be quoted - const cmdSpecialChars = [ - ' ', - '\t', - '&', - '(', - ')', - '[', - ']', - '{', - '}', - '^', - '=', - ';', - '!', - "'", - '+', - ',', - '`', - '~', - '|', - '<', - '>', - '"' - ]; - let needsQuotes = false; - for (const char of arg) { - if (cmdSpecialChars.some(x => x === char)) { - needsQuotes = true; - break; - } - } - // short-circuit if quotes not needed - if (!needsQuotes) { - return arg; - } - // the following quoting rules are very similar to the rules that by libuv applies. - // - // 1) wrap the string in quotes - // - // 2) double-up quotes - i.e. " => "" - // - // this is different from the libuv quoting rules. libuv replaces " with \", which unfortunately - // doesn't work well with a cmd.exe command line. - // - // note, replacing " with "" also works well if the arg is passed to a downstream .NET console app. - // for example, the command line: - // foo.exe "myarg:""my val""" - // is parsed by a .NET console app into an arg array: - // [ "myarg:\"my val\"" ] - // which is the same end result when applying libuv quoting rules. although the actual - // command line from libuv quoting rules would look like: - // foo.exe "myarg:\"my val\"" - // - // 3) double-up slashes that precede a quote, - // e.g. hello \world => "hello \world" - // hello\"world => "hello\\""world" - // hello\\"world => "hello\\\\""world" - // hello world\ => "hello world\\" - // - // technically this is not required for a cmd.exe command line, or the batch argument parser. - // the reasons for including this as a .cmd quoting rule are: - // - // a) this is optimized for the scenario where the argument is passed from the .cmd file to an - // external program. many programs (e.g. .NET console apps) rely on the slash-doubling rule. - // - // b) it's what we've been doing previously (by deferring to node default behavior) and we - // haven't heard any complaints about that aspect. - // - // note, a weakness of the quoting rules chosen here, is that % is not escaped. in fact, % cannot be - // escaped when used on the command line directly - even though within a .cmd file % can be escaped - // by using %%. - // - // the saving grace is, on the command line, %var% is left as-is if var is not defined. this contrasts - // the line parsing rules within a .cmd file, where if var is not defined it is replaced with nothing. - // - // one option that was explored was replacing % with ^% - i.e. %var% => ^%var^%. this hack would - // often work, since it is unlikely that var^ would exist, and the ^ character is removed when the - // variable is used. the problem, however, is that ^ is not removed when %* is used to pass the args - // to an external program. - // - // an unexplored potential solution for the % escaping problem, is to create a wrapper .cmd file. - // % can be escaped within a .cmd file. - let reverse = '"'; - let quoteHit = true; - for (let i = arg.length; i > 0; i--) { - // walk the string in reverse - reverse += arg[i - 1]; - if (quoteHit && arg[i - 1] === '\\') { - reverse += '\\'; // double the slash - } - else if (arg[i - 1] === '"') { - quoteHit = true; - reverse += '"'; // double the quote - } - else { - quoteHit = false; - } - } - reverse += '"'; - return reverse - .split('') - .reverse() - .join(''); - } - _uvQuoteCmdArg(arg) { - // Tool runner wraps child_process.spawn() and needs to apply the same quoting as - // Node in certain cases where the undocumented spawn option windowsVerbatimArguments - // is used. - // - // Since this function is a port of quote_cmd_arg from Node 4.x (technically, lib UV, - // see https://github.com/nodejs/node/blob/v4.x/deps/uv/src/win/process.c for details), - // pasting copyright notice from Node within this function: - // - // Copyright Joyent, Inc. and other Node contributors. All rights reserved. - // - // 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. - if (!arg) { - // Need double quotation for empty argument - return '""'; - } - if (!arg.includes(' ') && !arg.includes('\t') && !arg.includes('"')) { - // No quotation needed - return arg; - } - if (!arg.includes('"') && !arg.includes('\\')) { - // No embedded double quotes or backslashes, so I can just wrap - // quote marks around the whole thing. - return `"${arg}"`; - } - // Expected input/output: - // input : hello"world - // output: "hello\"world" - // input : hello""world - // output: "hello\"\"world" - // input : hello\world - // output: hello\world - // input : hello\\world - // output: hello\\world - // input : hello\"world - // output: "hello\\\"world" - // input : hello\\"world - // output: "hello\\\\\"world" - // input : hello world\ - // output: "hello world\\" - note the comment in libuv actually reads "hello world\" - // but it appears the comment is wrong, it should be "hello world\\" - let reverse = '"'; - let quoteHit = true; - for (let i = arg.length; i > 0; i--) { - // walk the string in reverse - reverse += arg[i - 1]; - if (quoteHit && arg[i - 1] === '\\') { - reverse += '\\'; } - else if (arg[i - 1] === '"') { - quoteHit = true; - reverse += '\\'; + // Push the search paths + const stack = []; + for (const searchPath of patternHelper.getSearchPaths(patterns)) { + core.debug(`Search path '${searchPath}'`); + // Exists? + try { + // Intentionally using lstat. Detection for broken symlink + // will be performed later (if following symlinks). + yield __await(fs.promises.lstat(searchPath)); + } + catch (err) { + if (err.code === 'ENOENT') { + continue; + } + throw err; + } + stack.unshift(new internal_search_state_1.SearchState(searchPath, 1)); } - else { - quoteHit = false; + // Search + const traversalChain = []; // used to detect cycles + while (stack.length) { + // Pop + const item = stack.pop(); + // Match? + const match = patternHelper.match(patterns, item.path); + const partialMatch = !!match || patternHelper.partialMatch(patterns, item.path); + if (!match && !partialMatch) { + continue; + } + // Stat + const stats = yield __await(DefaultGlobber.stat(item, options, traversalChain) + // Broken symlink, or symlink cycle detected, or no longer exists + ); + // Broken symlink, or symlink cycle detected, or no longer exists + if (!stats) { + continue; + } + // Hidden file or directory? + if (options.excludeHiddenFiles && path.basename(item.path).match(/^\./)) { + continue; + } + // Directory + if (stats.isDirectory()) { + // Matched + if (match & internal_match_kind_1.MatchKind.Directory && options.matchDirectories) { + yield yield __await(item.path); + } + // Descend? + else if (!partialMatch) { + continue; + } + // Push the child items in reverse + const childLevel = item.level + 1; + const childItems = (yield __await(fs.promises.readdir(item.path))).map(x => new internal_search_state_1.SearchState(path.join(item.path, x), childLevel)); + stack.push(...childItems.reverse()); + } + // File + else if (match & internal_match_kind_1.MatchKind.File) { + yield yield __await(item.path); + } } - } - reverse += '"'; - return reverse - .split('') - .reverse() - .join(''); - } - _cloneExecOptions(options) { - options = options || {}; - const result = { - cwd: options.cwd || process.cwd(), - env: options.env || process.env, - silent: options.silent || false, - windowsVerbatimArguments: options.windowsVerbatimArguments || false, - failOnStdErr: options.failOnStdErr || false, - ignoreReturnCode: options.ignoreReturnCode || false, - delay: options.delay || 10000 - }; - result.outStream = options.outStream || process.stdout; - result.errStream = options.errStream || process.stderr; - return result; - } - _getSpawnOptions(options, toolPath) { - options = options || {}; - const result = {}; - result.cwd = options.cwd; - result.env = options.env; - result['windowsVerbatimArguments'] = - options.windowsVerbatimArguments || this._isCmdFile(); - if (options.windowsVerbatimArguments) { - result.argv0 = `"${toolPath}"`; - } - return result; + }); } /** - * Exec a tool. - * Output will be streamed to the live console. - * Returns promise with return code - * - * @param tool path to tool to exec - * @param options optional exec options. See ExecOptions - * @returns number + * Constructs a DefaultGlobber */ - exec() { + static create(patterns, options) { return __awaiter(this, void 0, void 0, function* () { - // root the tool path if it is unrooted and contains relative pathing - if (!ioUtil.isRooted(this.toolPath) && - (this.toolPath.includes('/') || - (IS_WINDOWS && this.toolPath.includes('\\')))) { - // prefer options.cwd if it is specified, however options.cwd may also need to be rooted - this.toolPath = path.resolve(process.cwd(), this.options.cwd || process.cwd(), this.toolPath); + const result = new DefaultGlobber(options); + if (IS_WINDOWS) { + patterns = patterns.replace(/\r\n/g, '\n'); + patterns = patterns.replace(/\r/g, '\n'); } - // if the tool is only a file name, then resolve it from the PATH - // otherwise verify it exists (add extension on Windows if necessary) - this.toolPath = yield io.which(this.toolPath, true); - return new Promise((resolve, reject) => { - this._debug(`exec tool: ${this.toolPath}`); - this._debug('arguments:'); - for (const arg of this.args) { - this._debug(` ${arg}`); + const lines = patterns.split('\n').map(x => x.trim()); + for (const line of lines) { + // Empty or comment + if (!line || line.startsWith('#')) { + continue; } - const optionsNonNull = this._cloneExecOptions(this.options); - if (!optionsNonNull.silent && optionsNonNull.outStream) { - optionsNonNull.outStream.write(this._getCommandString(optionsNonNull) + os.EOL); + // Pattern + else { + result.patterns.push(new internal_pattern_1.Pattern(line)); } - const state = new ExecState(optionsNonNull, this.toolPath); - state.on('debug', (message) => { - this._debug(message); - }); - const fileName = this._getSpawnFileName(); - const cp = child.spawn(fileName, this._getSpawnArgs(optionsNonNull), this._getSpawnOptions(this.options, fileName)); - const stdbuffer = ''; - if (cp.stdout) { - cp.stdout.on('data', (data) => { - if (this.options.listeners && this.options.listeners.stdout) { - this.options.listeners.stdout(data); - } - if (!optionsNonNull.silent && optionsNonNull.outStream) { - optionsNonNull.outStream.write(data); - } - this._processLineBuffer(data, stdbuffer, (line) => { - if (this.options.listeners && this.options.listeners.stdline) { - this.options.listeners.stdline(line); - } - }); - }); + } + result.searchPaths.push(...patternHelper.getSearchPaths(result.patterns)); + return result; + }); + } + static stat(item, options, traversalChain) { + return __awaiter(this, void 0, void 0, function* () { + // Note: + // `stat` returns info about the target of a symlink (or symlink chain) + // `lstat` returns info about a symlink itself + let stats; + if (options.followSymbolicLinks) { + try { + // Use `stat` (following symlinks) + stats = yield fs.promises.stat(item.path); } - const errbuffer = ''; - if (cp.stderr) { - cp.stderr.on('data', (data) => { - state.processStderr = true; - if (this.options.listeners && this.options.listeners.stderr) { - this.options.listeners.stderr(data); - } - if (!optionsNonNull.silent && - optionsNonNull.errStream && - optionsNonNull.outStream) { - const s = optionsNonNull.failOnStdErr - ? optionsNonNull.errStream - : optionsNonNull.outStream; - s.write(data); + catch (err) { + if (err.code === 'ENOENT') { + if (options.omitBrokenSymbolicLinks) { + core.debug(`Broken symlink '${item.path}'`); + return undefined; } - this._processLineBuffer(data, errbuffer, (line) => { - if (this.options.listeners && this.options.listeners.errline) { - this.options.listeners.errline(line); - } - }); - }); - } - cp.on('error', (err) => { - state.processError = err.message; - state.processExited = true; - state.processClosed = true; - state.CheckComplete(); - }); - cp.on('exit', (code) => { - state.processExitCode = code; - state.processExited = true; - this._debug(`Exit code ${code} received from tool '${this.toolPath}'`); - state.CheckComplete(); - }); - cp.on('close', (code) => { - state.processExitCode = code; - state.processExited = true; - state.processClosed = true; - this._debug(`STDIO streams have closed for tool '${this.toolPath}'`); - state.CheckComplete(); - }); - state.on('done', (error, exitCode) => { - if (stdbuffer.length > 0) { - this.emit('stdline', stdbuffer); - } - if (errbuffer.length > 0) { - this.emit('errline', errbuffer); - } - cp.removeAllListeners(); - if (error) { - reject(error); - } - else { - resolve(exitCode); - } - }); - if (this.options.input) { - if (!cp.stdin) { - throw new Error('child process missing stdin'); + throw new Error(`No information found for the path '${item.path}'. This may indicate a broken symbolic link.`); } - cp.stdin.end(this.options.input); + throw err; } - }); - }); - } -} -exports.ToolRunner = ToolRunner; -/** - * Convert an arg string to an array of args. Handles escaping - * - * @param argString string of arguments - * @returns string[] array of arguments - */ -function argStringToArray(argString) { - const args = []; - let inQuotes = false; - let escaped = false; - let arg = ''; - function append(c) { - // we only escape double quotes. - if (escaped && c !== '"') { - arg += '\\'; - } - arg += c; - escaped = false; - } - for (let i = 0; i < argString.length; i++) { - const c = argString.charAt(i); - if (c === '"') { - if (!escaped) { - inQuotes = !inQuotes; } else { - append(c); - } - continue; - } - if (c === '\\' && escaped) { - append(c); - continue; - } - if (c === '\\' && inQuotes) { - escaped = true; - continue; - } - if (c === ' ' && !inQuotes) { - if (arg.length > 0) { - args.push(arg); - arg = ''; - } - continue; - } - append(c); - } - if (arg.length > 0) { - args.push(arg.trim()); - } - return args; -} -exports.argStringToArray = argStringToArray; -class ExecState extends events.EventEmitter { - constructor(options, toolPath) { - super(); - this.processClosed = false; // tracks whether the process has exited and stdio is closed - this.processError = ''; - this.processExitCode = 0; - this.processExited = false; // tracks whether the process has exited - this.processStderr = false; // tracks whether stderr was written to - this.delay = 10000; // 10 seconds - this.done = false; - this.timeout = null; - if (!toolPath) { - throw new Error('toolPath must not be empty'); - } - this.options = options; - this.toolPath = toolPath; - if (options.delay) { - this.delay = options.delay; - } - } - CheckComplete() { - if (this.done) { - return; - } - if (this.processClosed) { - this._setResult(); - } - else if (this.processExited) { - this.timeout = setTimeout(ExecState.HandleTimeout, this.delay, this); - } - } - _debug(message) { - this.emit('debug', message); - } - _setResult() { - // determine whether there is an error - let error; - if (this.processExited) { - if (this.processError) { - error = new Error(`There was an error when attempting to execute the process '${this.toolPath}'. This may indicate the process failed to start. Error: ${this.processError}`); - } - else if (this.processExitCode !== 0 && !this.options.ignoreReturnCode) { - error = new Error(`The process '${this.toolPath}' failed with exit code ${this.processExitCode}`); - } - else if (this.processStderr && this.options.failOnStdErr) { - error = new Error(`The process '${this.toolPath}' failed because one or more lines were written to the STDERR stream`); - } - } - // clear the timeout - if (this.timeout) { - clearTimeout(this.timeout); - this.timeout = null; - } - this.done = true; - this.emit('done', error, this.processExitCode); - } - static HandleTimeout(state) { - if (state.done) { - return; - } - if (!state.processClosed && state.processExited) { - const message = `The STDIO streams did not close within ${state.delay / - 1000} seconds of the exit event from process '${state.toolPath}'. This may indicate a child process inherited the STDIO streams and has not yet exited.`; - state._debug(message); - } - state._setResult(); - } -} -//# sourceMappingURL=toolrunner.js.map - -/***/ }), - -/***/ 8090: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - -"use strict"; - -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.hashFiles = exports.create = void 0; -const internal_globber_1 = __nccwpck_require__(8298); -const internal_hash_files_1 = __nccwpck_require__(2448); -/** - * Constructs a globber - * - * @param patterns Patterns separated by newlines - * @param options Glob options - */ -function create(patterns, options) { - return __awaiter(this, void 0, void 0, function* () { - return yield internal_globber_1.DefaultGlobber.create(patterns, options); - }); -} -exports.create = create; -/** - * Computes the sha256 hash of a glob - * - * @param patterns Patterns separated by newlines - * @param options Glob options - */ -function hashFiles(patterns, options) { - return __awaiter(this, void 0, void 0, function* () { - let followSymbolicLinks = true; - if (options && typeof options.followSymbolicLinks === 'boolean') { - followSymbolicLinks = options.followSymbolicLinks; - } - const globber = yield create(patterns, { followSymbolicLinks }); - return internal_hash_files_1.hashFiles(globber); - }); -} -exports.hashFiles = hashFiles; -//# sourceMappingURL=glob.js.map - -/***/ }), - -/***/ 1026: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - -"use strict"; - -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.getOptions = void 0; -const core = __importStar(__nccwpck_require__(2186)); -/** - * Returns a copy with defaults filled in. - */ -function getOptions(copy) { - const result = { - followSymbolicLinks: true, - implicitDescendants: true, - matchDirectories: true, - omitBrokenSymbolicLinks: true - }; - if (copy) { - if (typeof copy.followSymbolicLinks === 'boolean') { - result.followSymbolicLinks = copy.followSymbolicLinks; - core.debug(`followSymbolicLinks '${result.followSymbolicLinks}'`); - } - if (typeof copy.implicitDescendants === 'boolean') { - result.implicitDescendants = copy.implicitDescendants; - core.debug(`implicitDescendants '${result.implicitDescendants}'`); - } - if (typeof copy.matchDirectories === 'boolean') { - result.matchDirectories = copy.matchDirectories; - core.debug(`matchDirectories '${result.matchDirectories}'`); - } - if (typeof copy.omitBrokenSymbolicLinks === 'boolean') { - result.omitBrokenSymbolicLinks = copy.omitBrokenSymbolicLinks; - core.debug(`omitBrokenSymbolicLinks '${result.omitBrokenSymbolicLinks}'`); - } - } - return result; -} -exports.getOptions = getOptions; -//# sourceMappingURL=internal-glob-options-helper.js.map - -/***/ }), - -/***/ 8298: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - -"use strict"; - -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -var __asyncValues = (this && this.__asyncValues) || function (o) { - if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); - var m = o[Symbol.asyncIterator], i; - return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i); - function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } - function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } -}; -var __await = (this && this.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); } -var __asyncGenerator = (this && this.__asyncGenerator) || function (thisArg, _arguments, generator) { - if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); - var g = generator.apply(thisArg, _arguments || []), i, q = []; - return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i; - function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } - function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } - function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } - function fulfill(value) { resume("next", value); } - function reject(value) { resume("throw", value); } - function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.DefaultGlobber = void 0; -const core = __importStar(__nccwpck_require__(2186)); -const fs = __importStar(__nccwpck_require__(7147)); -const globOptionsHelper = __importStar(__nccwpck_require__(1026)); -const path = __importStar(__nccwpck_require__(1017)); -const patternHelper = __importStar(__nccwpck_require__(9005)); -const internal_match_kind_1 = __nccwpck_require__(1063); -const internal_pattern_1 = __nccwpck_require__(4536); -const internal_search_state_1 = __nccwpck_require__(9117); -const IS_WINDOWS = process.platform === 'win32'; -class DefaultGlobber { - constructor(options) { - this.patterns = []; - this.searchPaths = []; - this.options = globOptionsHelper.getOptions(options); - } - getSearchPaths() { - // Return a copy - return this.searchPaths.slice(); - } - glob() { - var e_1, _a; - return __awaiter(this, void 0, void 0, function* () { - const result = []; - try { - for (var _b = __asyncValues(this.globGenerator()), _c; _c = yield _b.next(), !_c.done;) { - const itemPath = _c.value; - result.push(itemPath); - } - } - catch (e_1_1) { e_1 = { error: e_1_1 }; } - finally { - try { - if (_c && !_c.done && (_a = _b.return)) yield _a.call(_b); - } - finally { if (e_1) throw e_1.error; } - } - return result; - }); - } - globGenerator() { - return __asyncGenerator(this, arguments, function* globGenerator_1() { - // Fill in defaults options - const options = globOptionsHelper.getOptions(this.options); - // Implicit descendants? - const patterns = []; - for (const pattern of this.patterns) { - patterns.push(pattern); - if (options.implicitDescendants && - (pattern.trailingSeparator || - pattern.segments[pattern.segments.length - 1] !== '**')) { - patterns.push(new internal_pattern_1.Pattern(pattern.negate, true, pattern.segments.concat('**'))); - } - } - // Push the search paths - const stack = []; - for (const searchPath of patternHelper.getSearchPaths(patterns)) { - core.debug(`Search path '${searchPath}'`); - // Exists? - try { - // Intentionally using lstat. Detection for broken symlink - // will be performed later (if following symlinks). - yield __await(fs.promises.lstat(searchPath)); - } - catch (err) { - if (err.code === 'ENOENT') { - continue; - } - throw err; - } - stack.unshift(new internal_search_state_1.SearchState(searchPath, 1)); - } - // Search - const traversalChain = []; // used to detect cycles - while (stack.length) { - // Pop - const item = stack.pop(); - // Match? - const match = patternHelper.match(patterns, item.path); - const partialMatch = !!match || patternHelper.partialMatch(patterns, item.path); - if (!match && !partialMatch) { - continue; - } - // Stat - const stats = yield __await(DefaultGlobber.stat(item, options, traversalChain) - // Broken symlink, or symlink cycle detected, or no longer exists - ); - // Broken symlink, or symlink cycle detected, or no longer exists - if (!stats) { - continue; - } - // Directory - if (stats.isDirectory()) { - // Matched - if (match & internal_match_kind_1.MatchKind.Directory && options.matchDirectories) { - yield yield __await(item.path); - } - // Descend? - else if (!partialMatch) { - continue; - } - // Push the child items in reverse - const childLevel = item.level + 1; - const childItems = (yield __await(fs.promises.readdir(item.path))).map(x => new internal_search_state_1.SearchState(path.join(item.path, x), childLevel)); - stack.push(...childItems.reverse()); - } - // File - else if (match & internal_match_kind_1.MatchKind.File) { - yield yield __await(item.path); - } - } - }); - } - /** - * Constructs a DefaultGlobber - */ - static create(patterns, options) { - return __awaiter(this, void 0, void 0, function* () { - const result = new DefaultGlobber(options); - if (IS_WINDOWS) { - patterns = patterns.replace(/\r\n/g, '\n'); - patterns = patterns.replace(/\r/g, '\n'); - } - const lines = patterns.split('\n').map(x => x.trim()); - for (const line of lines) { - // Empty or comment - if (!line || line.startsWith('#')) { - continue; - } - // Pattern - else { - result.patterns.push(new internal_pattern_1.Pattern(line)); - } - } - result.searchPaths.push(...patternHelper.getSearchPaths(result.patterns)); - return result; - }); - } - static stat(item, options, traversalChain) { - return __awaiter(this, void 0, void 0, function* () { - // Note: - // `stat` returns info about the target of a symlink (or symlink chain) - // `lstat` returns info about a symlink itself - let stats; - if (options.followSymbolicLinks) { - try { - // Use `stat` (following symlinks) - stats = yield fs.promises.stat(item.path); - } - catch (err) { - if (err.code === 'ENOENT') { - if (options.omitBrokenSymbolicLinks) { - core.debug(`Broken symlink '${item.path}'`); - return undefined; - } - throw new Error(`No information found for the path '${item.path}'. This may indicate a broken symbolic link.`); - } - throw err; - } - } - else { - // Use `lstat` (not following symlinks) - stats = yield fs.promises.lstat(item.path); + // Use `lstat` (not following symlinks) + stats = yield fs.promises.lstat(item.path); } // Note, isDirectory() returns false for the lstat of a symlink if (stats.isDirectory() && options.followSymbolicLinks) { @@ -6105,7 +7286,11 @@ exports.DefaultGlobber = DefaultGlobber; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; @@ -6115,13 +7300,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? ( }) : function(o, v) { o["default"] = v; }); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { @@ -6139,31 +7334,36 @@ var __asyncValues = (this && this.__asyncValues) || function (o) { function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } }; Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.hashFiles = void 0; +exports.hashFiles = hashFiles; const crypto = __importStar(__nccwpck_require__(6113)); -const core = __importStar(__nccwpck_require__(2186)); -const fs = __importStar(__nccwpck_require__(7147)); -const stream = __importStar(__nccwpck_require__(2781)); -const util = __importStar(__nccwpck_require__(3837)); -const path = __importStar(__nccwpck_require__(1017)); -function hashFiles(globber) { - var e_1, _a; - var _b; - return __awaiter(this, void 0, void 0, function* () { +const core = __importStar(__nccwpck_require__(42186)); +const fs = __importStar(__nccwpck_require__(57147)); +const stream = __importStar(__nccwpck_require__(12781)); +const util = __importStar(__nccwpck_require__(73837)); +const path = __importStar(__nccwpck_require__(71017)); +function hashFiles(globber_1, currentWorkspace_1) { + return __awaiter(this, arguments, void 0, function* (globber, currentWorkspace, verbose = false) { + var _a, e_1, _b, _c; + var _d; + const writeDelegate = verbose ? core.info : core.debug; let hasMatch = false; - const githubWorkspace = (_b = process.env['GITHUB_WORKSPACE']) !== null && _b !== void 0 ? _b : process.cwd(); + const githubWorkspace = currentWorkspace + ? currentWorkspace + : ((_d = process.env['GITHUB_WORKSPACE']) !== null && _d !== void 0 ? _d : process.cwd()); const result = crypto.createHash('sha256'); let count = 0; try { - for (var _c = __asyncValues(globber.globGenerator()), _d; _d = yield _c.next(), !_d.done;) { - const file = _d.value; - core.debug(file); + for (var _e = true, _f = __asyncValues(globber.globGenerator()), _g; _g = yield _f.next(), _a = _g.done, !_a; _e = true) { + _c = _g.value; + _e = false; + const file = _c; + writeDelegate(file); if (!file.startsWith(`${githubWorkspace}${path.sep}`)) { - core.debug(`Ignore '${file}' since it is not under GITHUB_WORKSPACE.`); + writeDelegate(`Ignore '${file}' since it is not under GITHUB_WORKSPACE.`); continue; } if (fs.statSync(file).isDirectory()) { - core.debug(`Skip directory '${file}'.`); + writeDelegate(`Skip directory '${file}'.`); continue; } const hash = crypto.createHash('sha256'); @@ -6179,27 +7379,26 @@ function hashFiles(globber) { catch (e_1_1) { e_1 = { error: e_1_1 }; } finally { try { - if (_d && !_d.done && (_a = _c.return)) yield _a.call(_c); + if (!_e && !_a && (_b = _f.return)) yield _b.call(_f); } finally { if (e_1) throw e_1.error; } } result.end(); if (hasMatch) { - core.debug(`Found ${count} files to hash.`); + writeDelegate(`Found ${count} files to hash.`); return result.digest('hex'); } else { - core.debug(`No matches found for glob`); + writeDelegate(`No matches found for glob`); return ''; } }); } -exports.hashFiles = hashFiles; //# sourceMappingURL=internal-hash-files.js.map /***/ }), -/***/ 1063: +/***/ 81063: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -6219,7 +7418,7 @@ var MatchKind; MatchKind[MatchKind["File"] = 2] = "File"; /** Matched */ MatchKind[MatchKind["All"] = 3] = "All"; -})(MatchKind = exports.MatchKind || (exports.MatchKind = {})); +})(MatchKind || (exports.MatchKind = MatchKind = {})); //# sourceMappingURL=internal-match-kind.js.map /***/ }), @@ -6231,7 +7430,11 @@ var MatchKind; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; @@ -6241,20 +7444,35 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? ( }) : function(o, v) { o["default"] = v; }); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.safeTrimTrailingSeparator = exports.normalizeSeparators = exports.hasRoot = exports.hasAbsoluteRoot = exports.ensureAbsoluteRoot = exports.dirname = void 0; -const path = __importStar(__nccwpck_require__(1017)); -const assert_1 = __importDefault(__nccwpck_require__(9491)); +exports.dirname = dirname; +exports.ensureAbsoluteRoot = ensureAbsoluteRoot; +exports.hasAbsoluteRoot = hasAbsoluteRoot; +exports.hasRoot = hasRoot; +exports.normalizeSeparators = normalizeSeparators; +exports.safeTrimTrailingSeparator = safeTrimTrailingSeparator; +const path = __importStar(__nccwpck_require__(71017)); +const assert_1 = __importDefault(__nccwpck_require__(39491)); const IS_WINDOWS = process.platform === 'win32'; /** * Similar to path.dirname except normalizes the path separators and slightly better handling for Windows UNC paths. @@ -6288,14 +7506,13 @@ function dirname(p) { } return result; } -exports.dirname = dirname; /** * Roots the path if not already rooted. On Windows, relative roots like `\` * or `C:` are expanded based on the current working directory. */ function ensureAbsoluteRoot(root, itemPath) { - assert_1.default(root, `ensureAbsoluteRoot parameter 'root' must not be empty`); - assert_1.default(itemPath, `ensureAbsoluteRoot parameter 'itemPath' must not be empty`); + (0, assert_1.default)(root, `ensureAbsoluteRoot parameter 'root' must not be empty`); + (0, assert_1.default)(itemPath, `ensureAbsoluteRoot parameter 'itemPath' must not be empty`); // Already rooted if (hasAbsoluteRoot(itemPath)) { return itemPath; @@ -6305,7 +7522,7 @@ function ensureAbsoluteRoot(root, itemPath) { // Check for itemPath like C: or C:foo if (itemPath.match(/^[A-Z]:[^\\/]|^[A-Z]:$/i)) { let cwd = process.cwd(); - assert_1.default(cwd.match(/^[A-Z]:\\/i), `Expected current directory to start with an absolute drive root. Actual '${cwd}'`); + (0, assert_1.default)(cwd.match(/^[A-Z]:\\/i), `Expected current directory to start with an absolute drive root. Actual '${cwd}'`); // Drive letter matches cwd? Expand to cwd if (itemPath[0].toUpperCase() === cwd[0].toUpperCase()) { // Drive only, e.g. C: @@ -6330,11 +7547,11 @@ function ensureAbsoluteRoot(root, itemPath) { // Check for itemPath like \ or \foo else if (normalizeSeparators(itemPath).match(/^\\$|^\\[^\\]/)) { const cwd = process.cwd(); - assert_1.default(cwd.match(/^[A-Z]:\\/i), `Expected current directory to start with an absolute drive root. Actual '${cwd}'`); + (0, assert_1.default)(cwd.match(/^[A-Z]:\\/i), `Expected current directory to start with an absolute drive root. Actual '${cwd}'`); return `${cwd[0]}:\\${itemPath.substr(1)}`; } } - assert_1.default(hasAbsoluteRoot(root), `ensureAbsoluteRoot parameter 'root' must have an absolute root`); + (0, assert_1.default)(hasAbsoluteRoot(root), `ensureAbsoluteRoot parameter 'root' must have an absolute root`); // Otherwise ensure root ends with a separator if (root.endsWith('/') || (IS_WINDOWS && root.endsWith('\\'))) { // Intentionally empty @@ -6345,13 +7562,12 @@ function ensureAbsoluteRoot(root, itemPath) { } return root + itemPath; } -exports.ensureAbsoluteRoot = ensureAbsoluteRoot; /** * On Linux/macOS, true if path starts with `/`. On Windows, true for paths like: * `\\hello\share` and `C:\hello` (and using alternate separator). */ function hasAbsoluteRoot(itemPath) { - assert_1.default(itemPath, `hasAbsoluteRoot parameter 'itemPath' must not be empty`); + (0, assert_1.default)(itemPath, `hasAbsoluteRoot parameter 'itemPath' must not be empty`); // Normalize separators itemPath = normalizeSeparators(itemPath); // Windows @@ -6362,13 +7578,12 @@ function hasAbsoluteRoot(itemPath) { // E.g. /hello return itemPath.startsWith('/'); } -exports.hasAbsoluteRoot = hasAbsoluteRoot; /** * On Linux/macOS, true if path starts with `/`. On Windows, true for paths like: * `\`, `\hello`, `\\hello\share`, `C:`, and `C:\hello` (and using alternate separator). */ function hasRoot(itemPath) { - assert_1.default(itemPath, `isRooted parameter 'itemPath' must not be empty`); + (0, assert_1.default)(itemPath, `isRooted parameter 'itemPath' must not be empty`); // Normalize separators itemPath = normalizeSeparators(itemPath); // Windows @@ -6380,7 +7595,6 @@ function hasRoot(itemPath) { // E.g. /hello return itemPath.startsWith('/'); } -exports.hasRoot = hasRoot; /** * Removes redundant slashes and converts `/` to `\` on Windows */ @@ -6397,7 +7611,6 @@ function normalizeSeparators(p) { // Remove redundant slashes return p.replace(/\/\/+/g, '/'); } -exports.normalizeSeparators = normalizeSeparators; /** * Normalizes the path separators and trims the trailing separator (when safe). * For example, `/foo/ => /foo` but `/ => /` @@ -6424,19 +7637,22 @@ function safeTrimTrailingSeparator(p) { // Otherwise trim trailing slash return p.substr(0, p.length - 1); } -exports.safeTrimTrailingSeparator = safeTrimTrailingSeparator; //# sourceMappingURL=internal-path-helper.js.map /***/ }), -/***/ 6836: +/***/ 96836: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; @@ -6446,21 +7662,31 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? ( }) : function(o, v) { o["default"] = v; }); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.Path = void 0; -const path = __importStar(__nccwpck_require__(1017)); +const path = __importStar(__nccwpck_require__(71017)); const pathHelper = __importStar(__nccwpck_require__(1849)); -const assert_1 = __importDefault(__nccwpck_require__(9491)); +const assert_1 = __importDefault(__nccwpck_require__(39491)); const IS_WINDOWS = process.platform === 'win32'; /** * Helper class for parsing paths into segments @@ -6474,7 +7700,7 @@ class Path { this.segments = []; // String if (typeof itemPath === 'string') { - assert_1.default(itemPath, `Parameter 'itemPath' must not be empty`); + (0, assert_1.default)(itemPath, `Parameter 'itemPath' must not be empty`); // Normalize slashes and trim unnecessary trailing slash itemPath = pathHelper.safeTrimTrailingSeparator(itemPath); // Not rooted @@ -6501,24 +7727,24 @@ class Path { // Array else { // Must not be empty - assert_1.default(itemPath.length > 0, `Parameter 'itemPath' must not be an empty array`); + (0, assert_1.default)(itemPath.length > 0, `Parameter 'itemPath' must not be an empty array`); // Each segment for (let i = 0; i < itemPath.length; i++) { let segment = itemPath[i]; // Must not be empty - assert_1.default(segment, `Parameter 'itemPath' must not contain any empty segments`); + (0, assert_1.default)(segment, `Parameter 'itemPath' must not contain any empty segments`); // Normalize slashes segment = pathHelper.normalizeSeparators(itemPath[i]); // Root segment if (i === 0 && pathHelper.hasRoot(segment)) { segment = pathHelper.safeTrimTrailingSeparator(segment); - assert_1.default(segment === pathHelper.dirname(segment), `Parameter 'itemPath' root segment contains information for multiple segments`); + (0, assert_1.default)(segment === pathHelper.dirname(segment), `Parameter 'itemPath' root segment contains information for multiple segments`); this.segments.push(segment); } // All other segments else { // Must not contain slash - assert_1.default(!segment.includes(path.sep), `Parameter 'itemPath' contains unexpected path separators`); + (0, assert_1.default)(!segment.includes(path.sep), `Parameter 'itemPath' contains unexpected path separators`); this.segments.push(segment); } } @@ -6549,14 +7775,18 @@ exports.Path = Path; /***/ }), -/***/ 9005: +/***/ 29005: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; @@ -6566,17 +7796,29 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? ( }) : function(o, v) { o["default"] = v; }); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.partialMatch = exports.match = exports.getSearchPaths = void 0; +exports.getSearchPaths = getSearchPaths; +exports.match = match; +exports.partialMatch = partialMatch; const pathHelper = __importStar(__nccwpck_require__(1849)); -const internal_match_kind_1 = __nccwpck_require__(1063); +const internal_match_kind_1 = __nccwpck_require__(81063); const IS_WINDOWS = process.platform === 'win32'; /** * Given an array of patterns, returns an array of paths to search. @@ -6622,7 +7864,6 @@ function getSearchPaths(patterns) { } return result; } -exports.getSearchPaths = getSearchPaths; /** * Matches the patterns against the path */ @@ -6638,26 +7879,28 @@ function match(patterns, itemPath) { } return result; } -exports.match = match; /** * Checks whether to descend further into the directory */ function partialMatch(patterns, itemPath) { return patterns.some(x => !x.negate && x.partialMatch(itemPath)); } -exports.partialMatch = partialMatch; //# sourceMappingURL=internal-pattern-helper.js.map /***/ }), -/***/ 4536: +/***/ 64536: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; @@ -6667,25 +7910,35 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? ( }) : function(o, v) { o["default"] = v; }); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.Pattern = void 0; -const os = __importStar(__nccwpck_require__(2037)); -const path = __importStar(__nccwpck_require__(1017)); +const os = __importStar(__nccwpck_require__(22037)); +const path = __importStar(__nccwpck_require__(71017)); const pathHelper = __importStar(__nccwpck_require__(1849)); -const assert_1 = __importDefault(__nccwpck_require__(9491)); -const minimatch_1 = __nccwpck_require__(3973); -const internal_match_kind_1 = __nccwpck_require__(1063); -const internal_path_1 = __nccwpck_require__(6836); +const assert_1 = __importDefault(__nccwpck_require__(39491)); +const minimatch_1 = __nccwpck_require__(83973); +const internal_match_kind_1 = __nccwpck_require__(81063); +const internal_path_1 = __nccwpck_require__(96836); const IS_WINDOWS = process.platform === 'win32'; class Pattern { constructor(patternOrNegate, isImplicitPattern = false, segments, homedir) { @@ -6702,9 +7955,9 @@ class Pattern { else { // Convert to pattern segments = segments || []; - assert_1.default(segments.length, `Parameter 'segments' must not empty`); + (0, assert_1.default)(segments.length, `Parameter 'segments' must not empty`); const root = Pattern.getLiteral(segments[0]); - assert_1.default(root && pathHelper.hasAbsoluteRoot(root), `Parameter 'segments' first element must be a root path`); + (0, assert_1.default)(root && pathHelper.hasAbsoluteRoot(root), `Parameter 'segments' first element must be a root path`); pattern = new internal_path_1.Path(segments).toString().trim(); if (patternOrNegate) { pattern = `!${pattern}`; @@ -6798,13 +8051,13 @@ class Pattern { */ static fixupPattern(pattern, homedir) { // Empty - assert_1.default(pattern, 'pattern cannot be empty'); + (0, assert_1.default)(pattern, 'pattern cannot be empty'); // Must not contain `.` segment, unless first segment // Must not contain `..` segment const literalSegments = new internal_path_1.Path(pattern).segments.map(x => Pattern.getLiteral(x)); - assert_1.default(literalSegments.every((x, i) => (x !== '.' || i === 0) && x !== '..'), `Invalid pattern '${pattern}'. Relative pathing '.' and '..' is not allowed.`); + (0, assert_1.default)(literalSegments.every((x, i) => (x !== '.' || i === 0) && x !== '..'), `Invalid pattern '${pattern}'. Relative pathing '.' and '..' is not allowed.`); // Must not contain globs in root, e.g. Windows UNC path \\foo\b*r - assert_1.default(!pathHelper.hasRoot(pattern) || literalSegments[0], `Invalid pattern '${pattern}'. Root segment must not contain globs.`); + (0, assert_1.default)(!pathHelper.hasRoot(pattern) || literalSegments[0], `Invalid pattern '${pattern}'. Root segment must not contain globs.`); // Normalize slashes pattern = pathHelper.normalizeSeparators(pattern); // Replace leading `.` segment @@ -6814,8 +8067,8 @@ class Pattern { // Replace leading `~` segment else if (pattern === '~' || pattern.startsWith(`~${path.sep}`)) { homedir = homedir || os.homedir(); - assert_1.default(homedir, 'Unable to determine HOME directory'); - assert_1.default(pathHelper.hasAbsoluteRoot(homedir), `Expected HOME directory to be a rooted path. Actual '${homedir}'`); + (0, assert_1.default)(homedir, 'Unable to determine HOME directory'); + (0, assert_1.default)(pathHelper.hasAbsoluteRoot(homedir), `Expected HOME directory to be a rooted path. Actual '${homedir}'`); pattern = Pattern.globEscape(homedir) + pattern.substr(1); } // Replace relative drive root, e.g. pattern is C: or C:foo @@ -6912,7 +8165,7 @@ exports.Pattern = Pattern; /***/ }), -/***/ 9117: +/***/ 89117: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -6930,64 +8183,198 @@ exports.SearchState = SearchState; /***/ }), -/***/ 9925: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +/***/ 35526: +/***/ (function(__unused_webpack_module, exports) { "use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; Object.defineProperty(exports, "__esModule", ({ value: true })); -const http = __nccwpck_require__(3685); -const https = __nccwpck_require__(5687); -const pm = __nccwpck_require__(6443); -let tunnel; -var HttpCodes; -(function (HttpCodes) { - HttpCodes[HttpCodes["OK"] = 200] = "OK"; - HttpCodes[HttpCodes["MultipleChoices"] = 300] = "MultipleChoices"; - HttpCodes[HttpCodes["MovedPermanently"] = 301] = "MovedPermanently"; - HttpCodes[HttpCodes["ResourceMoved"] = 302] = "ResourceMoved"; - HttpCodes[HttpCodes["SeeOther"] = 303] = "SeeOther"; - HttpCodes[HttpCodes["NotModified"] = 304] = "NotModified"; - HttpCodes[HttpCodes["UseProxy"] = 305] = "UseProxy"; - HttpCodes[HttpCodes["SwitchProxy"] = 306] = "SwitchProxy"; - HttpCodes[HttpCodes["TemporaryRedirect"] = 307] = "TemporaryRedirect"; - HttpCodes[HttpCodes["PermanentRedirect"] = 308] = "PermanentRedirect"; - HttpCodes[HttpCodes["BadRequest"] = 400] = "BadRequest"; - HttpCodes[HttpCodes["Unauthorized"] = 401] = "Unauthorized"; - HttpCodes[HttpCodes["PaymentRequired"] = 402] = "PaymentRequired"; - HttpCodes[HttpCodes["Forbidden"] = 403] = "Forbidden"; - HttpCodes[HttpCodes["NotFound"] = 404] = "NotFound"; - HttpCodes[HttpCodes["MethodNotAllowed"] = 405] = "MethodNotAllowed"; - HttpCodes[HttpCodes["NotAcceptable"] = 406] = "NotAcceptable"; - HttpCodes[HttpCodes["ProxyAuthenticationRequired"] = 407] = "ProxyAuthenticationRequired"; - HttpCodes[HttpCodes["RequestTimeout"] = 408] = "RequestTimeout"; - HttpCodes[HttpCodes["Conflict"] = 409] = "Conflict"; - HttpCodes[HttpCodes["Gone"] = 410] = "Gone"; - HttpCodes[HttpCodes["TooManyRequests"] = 429] = "TooManyRequests"; - HttpCodes[HttpCodes["InternalServerError"] = 500] = "InternalServerError"; - HttpCodes[HttpCodes["NotImplemented"] = 501] = "NotImplemented"; - HttpCodes[HttpCodes["BadGateway"] = 502] = "BadGateway"; - HttpCodes[HttpCodes["ServiceUnavailable"] = 503] = "ServiceUnavailable"; - HttpCodes[HttpCodes["GatewayTimeout"] = 504] = "GatewayTimeout"; -})(HttpCodes = exports.HttpCodes || (exports.HttpCodes = {})); -var Headers; +exports.PersonalAccessTokenCredentialHandler = exports.BearerCredentialHandler = exports.BasicCredentialHandler = void 0; +class BasicCredentialHandler { + constructor(username, password) { + this.username = username; + this.password = password; + } + prepareRequest(options) { + if (!options.headers) { + throw Error('The request has no headers'); + } + options.headers['Authorization'] = `Basic ${Buffer.from(`${this.username}:${this.password}`).toString('base64')}`; + } + // This handler cannot handle 401 + canHandleAuthentication() { + return false; + } + handleAuthentication() { + return __awaiter(this, void 0, void 0, function* () { + throw new Error('not implemented'); + }); + } +} +exports.BasicCredentialHandler = BasicCredentialHandler; +class BearerCredentialHandler { + constructor(token) { + this.token = token; + } + // currently implements pre-authorization + // TODO: support preAuth = false where it hooks on 401 + prepareRequest(options) { + if (!options.headers) { + throw Error('The request has no headers'); + } + options.headers['Authorization'] = `Bearer ${this.token}`; + } + // This handler cannot handle 401 + canHandleAuthentication() { + return false; + } + handleAuthentication() { + return __awaiter(this, void 0, void 0, function* () { + throw new Error('not implemented'); + }); + } +} +exports.BearerCredentialHandler = BearerCredentialHandler; +class PersonalAccessTokenCredentialHandler { + constructor(token) { + this.token = token; + } + // currently implements pre-authorization + // TODO: support preAuth = false where it hooks on 401 + prepareRequest(options) { + if (!options.headers) { + throw Error('The request has no headers'); + } + options.headers['Authorization'] = `Basic ${Buffer.from(`PAT:${this.token}`).toString('base64')}`; + } + // This handler cannot handle 401 + canHandleAuthentication() { + return false; + } + handleAuthentication() { + return __awaiter(this, void 0, void 0, function* () { + throw new Error('not implemented'); + }); + } +} +exports.PersonalAccessTokenCredentialHandler = PersonalAccessTokenCredentialHandler; +//# sourceMappingURL=auth.js.map + +/***/ }), + +/***/ 96255: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +/* eslint-disable @typescript-eslint/no-explicit-any */ +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.HttpClient = exports.HttpClientResponse = exports.HttpClientError = exports.MediaTypes = exports.Headers = exports.HttpCodes = void 0; +exports.getProxyUrl = getProxyUrl; +exports.isHttps = isHttps; +const http = __importStar(__nccwpck_require__(13685)); +const https = __importStar(__nccwpck_require__(95687)); +const pm = __importStar(__nccwpck_require__(19835)); +const tunnel = __importStar(__nccwpck_require__(74294)); +const undici_1 = __nccwpck_require__(41773); +var HttpCodes; +(function (HttpCodes) { + HttpCodes[HttpCodes["OK"] = 200] = "OK"; + HttpCodes[HttpCodes["MultipleChoices"] = 300] = "MultipleChoices"; + HttpCodes[HttpCodes["MovedPermanently"] = 301] = "MovedPermanently"; + HttpCodes[HttpCodes["ResourceMoved"] = 302] = "ResourceMoved"; + HttpCodes[HttpCodes["SeeOther"] = 303] = "SeeOther"; + HttpCodes[HttpCodes["NotModified"] = 304] = "NotModified"; + HttpCodes[HttpCodes["UseProxy"] = 305] = "UseProxy"; + HttpCodes[HttpCodes["SwitchProxy"] = 306] = "SwitchProxy"; + HttpCodes[HttpCodes["TemporaryRedirect"] = 307] = "TemporaryRedirect"; + HttpCodes[HttpCodes["PermanentRedirect"] = 308] = "PermanentRedirect"; + HttpCodes[HttpCodes["BadRequest"] = 400] = "BadRequest"; + HttpCodes[HttpCodes["Unauthorized"] = 401] = "Unauthorized"; + HttpCodes[HttpCodes["PaymentRequired"] = 402] = "PaymentRequired"; + HttpCodes[HttpCodes["Forbidden"] = 403] = "Forbidden"; + HttpCodes[HttpCodes["NotFound"] = 404] = "NotFound"; + HttpCodes[HttpCodes["MethodNotAllowed"] = 405] = "MethodNotAllowed"; + HttpCodes[HttpCodes["NotAcceptable"] = 406] = "NotAcceptable"; + HttpCodes[HttpCodes["ProxyAuthenticationRequired"] = 407] = "ProxyAuthenticationRequired"; + HttpCodes[HttpCodes["RequestTimeout"] = 408] = "RequestTimeout"; + HttpCodes[HttpCodes["Conflict"] = 409] = "Conflict"; + HttpCodes[HttpCodes["Gone"] = 410] = "Gone"; + HttpCodes[HttpCodes["TooManyRequests"] = 429] = "TooManyRequests"; + HttpCodes[HttpCodes["InternalServerError"] = 500] = "InternalServerError"; + HttpCodes[HttpCodes["NotImplemented"] = 501] = "NotImplemented"; + HttpCodes[HttpCodes["BadGateway"] = 502] = "BadGateway"; + HttpCodes[HttpCodes["ServiceUnavailable"] = 503] = "ServiceUnavailable"; + HttpCodes[HttpCodes["GatewayTimeout"] = 504] = "GatewayTimeout"; +})(HttpCodes || (exports.HttpCodes = HttpCodes = {})); +var Headers; (function (Headers) { Headers["Accept"] = "accept"; Headers["ContentType"] = "content-type"; -})(Headers = exports.Headers || (exports.Headers = {})); +})(Headers || (exports.Headers = Headers = {})); var MediaTypes; (function (MediaTypes) { MediaTypes["ApplicationJson"] = "application/json"; -})(MediaTypes = exports.MediaTypes || (exports.MediaTypes = {})); +})(MediaTypes || (exports.MediaTypes = MediaTypes = {})); /** * Returns the proxy URL, depending upon the supplied url and proxy environment variables. * @param serverUrl The server URL where the request will be sent. For example, https://api.github.com */ function getProxyUrl(serverUrl) { - let proxyUrl = pm.getProxyUrl(new URL(serverUrl)); + const proxyUrl = pm.getProxyUrl(new URL(serverUrl)); return proxyUrl ? proxyUrl.href : ''; } -exports.getProxyUrl = getProxyUrl; const HttpRedirectCodes = [ HttpCodes.MovedPermanently, HttpCodes.ResourceMoved, @@ -7017,23 +8404,37 @@ class HttpClientResponse { this.message = message; } readBody() { - return new Promise(async (resolve, reject) => { - let output = Buffer.alloc(0); - this.message.on('data', (chunk) => { - output = Buffer.concat([output, chunk]); - }); - this.message.on('end', () => { - resolve(output.toString()); - }); + return __awaiter(this, void 0, void 0, function* () { + return new Promise((resolve) => __awaiter(this, void 0, void 0, function* () { + let output = Buffer.alloc(0); + this.message.on('data', (chunk) => { + output = Buffer.concat([output, chunk]); + }); + this.message.on('end', () => { + resolve(output.toString()); + }); + })); + }); + } + readBodyBuffer() { + return __awaiter(this, void 0, void 0, function* () { + return new Promise((resolve) => __awaiter(this, void 0, void 0, function* () { + const chunks = []; + this.message.on('data', (chunk) => { + chunks.push(chunk); + }); + this.message.on('end', () => { + resolve(Buffer.concat(chunks)); + }); + })); }); } } exports.HttpClientResponse = HttpClientResponse; function isHttps(requestUrl) { - let parsedUrl = new URL(requestUrl); + const parsedUrl = new URL(requestUrl); return parsedUrl.protocol === 'https:'; } -exports.isHttps = isHttps; class HttpClient { constructor(userAgent, handlers, requestOptions) { this._ignoreSslError = false; @@ -7044,7 +8445,7 @@ class HttpClient { this._maxRetries = 1; this._keepAlive = false; this._disposed = false; - this.userAgent = userAgent; + this.userAgent = this._getUserAgentWithOrchestrationId(userAgent); this.handlers = handlers || []; this.requestOptions = requestOptions; if (requestOptions) { @@ -7073,141 +8474,172 @@ class HttpClient { } } options(requestUrl, additionalHeaders) { - return this.request('OPTIONS', requestUrl, null, additionalHeaders || {}); + return __awaiter(this, void 0, void 0, function* () { + return this.request('OPTIONS', requestUrl, null, additionalHeaders || {}); + }); } get(requestUrl, additionalHeaders) { - return this.request('GET', requestUrl, null, additionalHeaders || {}); + return __awaiter(this, void 0, void 0, function* () { + return this.request('GET', requestUrl, null, additionalHeaders || {}); + }); } del(requestUrl, additionalHeaders) { - return this.request('DELETE', requestUrl, null, additionalHeaders || {}); + return __awaiter(this, void 0, void 0, function* () { + return this.request('DELETE', requestUrl, null, additionalHeaders || {}); + }); } post(requestUrl, data, additionalHeaders) { - return this.request('POST', requestUrl, data, additionalHeaders || {}); + return __awaiter(this, void 0, void 0, function* () { + return this.request('POST', requestUrl, data, additionalHeaders || {}); + }); } patch(requestUrl, data, additionalHeaders) { - return this.request('PATCH', requestUrl, data, additionalHeaders || {}); + return __awaiter(this, void 0, void 0, function* () { + return this.request('PATCH', requestUrl, data, additionalHeaders || {}); + }); } put(requestUrl, data, additionalHeaders) { - return this.request('PUT', requestUrl, data, additionalHeaders || {}); + return __awaiter(this, void 0, void 0, function* () { + return this.request('PUT', requestUrl, data, additionalHeaders || {}); + }); } head(requestUrl, additionalHeaders) { - return this.request('HEAD', requestUrl, null, additionalHeaders || {}); + return __awaiter(this, void 0, void 0, function* () { + return this.request('HEAD', requestUrl, null, additionalHeaders || {}); + }); } sendStream(verb, requestUrl, stream, additionalHeaders) { - return this.request(verb, requestUrl, stream, additionalHeaders); + return __awaiter(this, void 0, void 0, function* () { + return this.request(verb, requestUrl, stream, additionalHeaders); + }); } /** * Gets a typed object from an endpoint * Be aware that not found returns a null. Other errors (4xx, 5xx) reject the promise */ - async getJson(requestUrl, additionalHeaders = {}) { - additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); - let res = await this.get(requestUrl, additionalHeaders); - return this._processResponse(res, this.requestOptions); - } - async postJson(requestUrl, obj, additionalHeaders = {}) { - let data = JSON.stringify(obj, null, 2); - additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); - additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson); - let res = await this.post(requestUrl, data, additionalHeaders); - return this._processResponse(res, this.requestOptions); - } - async putJson(requestUrl, obj, additionalHeaders = {}) { - let data = JSON.stringify(obj, null, 2); - additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); - additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson); - let res = await this.put(requestUrl, data, additionalHeaders); - return this._processResponse(res, this.requestOptions); - } - async patchJson(requestUrl, obj, additionalHeaders = {}) { - let data = JSON.stringify(obj, null, 2); - additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); - additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson); - let res = await this.patch(requestUrl, data, additionalHeaders); - return this._processResponse(res, this.requestOptions); + getJson(requestUrl_1) { + return __awaiter(this, arguments, void 0, function* (requestUrl, additionalHeaders = {}) { + additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); + const res = yield this.get(requestUrl, additionalHeaders); + return this._processResponse(res, this.requestOptions); + }); + } + postJson(requestUrl_1, obj_1) { + return __awaiter(this, arguments, void 0, function* (requestUrl, obj, additionalHeaders = {}) { + const data = JSON.stringify(obj, null, 2); + additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); + additionalHeaders[Headers.ContentType] = + this._getExistingOrDefaultContentTypeHeader(additionalHeaders, MediaTypes.ApplicationJson); + const res = yield this.post(requestUrl, data, additionalHeaders); + return this._processResponse(res, this.requestOptions); + }); + } + putJson(requestUrl_1, obj_1) { + return __awaiter(this, arguments, void 0, function* (requestUrl, obj, additionalHeaders = {}) { + const data = JSON.stringify(obj, null, 2); + additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); + additionalHeaders[Headers.ContentType] = + this._getExistingOrDefaultContentTypeHeader(additionalHeaders, MediaTypes.ApplicationJson); + const res = yield this.put(requestUrl, data, additionalHeaders); + return this._processResponse(res, this.requestOptions); + }); + } + patchJson(requestUrl_1, obj_1) { + return __awaiter(this, arguments, void 0, function* (requestUrl, obj, additionalHeaders = {}) { + const data = JSON.stringify(obj, null, 2); + additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); + additionalHeaders[Headers.ContentType] = + this._getExistingOrDefaultContentTypeHeader(additionalHeaders, MediaTypes.ApplicationJson); + const res = yield this.patch(requestUrl, data, additionalHeaders); + return this._processResponse(res, this.requestOptions); + }); } /** * Makes a raw http request. * All other methods such as get, post, patch, and request ultimately call this. * Prefer get, del, post and patch */ - async request(verb, requestUrl, data, headers) { - if (this._disposed) { - throw new Error('Client has already been disposed.'); - } - let parsedUrl = new URL(requestUrl); - let info = this._prepareRequest(verb, parsedUrl, headers); - // Only perform retries on reads since writes may not be idempotent. - let maxTries = this._allowRetries && RetryableHttpVerbs.indexOf(verb) != -1 - ? this._maxRetries + 1 - : 1; - let numTries = 0; - let response; - while (numTries < maxTries) { - response = await this.requestRaw(info, data); - // Check if it's an authentication challenge - if (response && - response.message && - response.message.statusCode === HttpCodes.Unauthorized) { - let authenticationHandler; - for (let i = 0; i < this.handlers.length; i++) { - if (this.handlers[i].canHandleAuthentication(response)) { - authenticationHandler = this.handlers[i]; - break; + request(verb, requestUrl, data, headers) { + return __awaiter(this, void 0, void 0, function* () { + if (this._disposed) { + throw new Error('Client has already been disposed.'); + } + const parsedUrl = new URL(requestUrl); + let info = this._prepareRequest(verb, parsedUrl, headers); + // Only perform retries on reads since writes may not be idempotent. + const maxTries = this._allowRetries && RetryableHttpVerbs.includes(verb) + ? this._maxRetries + 1 + : 1; + let numTries = 0; + let response; + do { + response = yield this.requestRaw(info, data); + // Check if it's an authentication challenge + if (response && + response.message && + response.message.statusCode === HttpCodes.Unauthorized) { + let authenticationHandler; + for (const handler of this.handlers) { + if (handler.canHandleAuthentication(response)) { + authenticationHandler = handler; + break; + } + } + if (authenticationHandler) { + return authenticationHandler.handleAuthentication(this, info, data); + } + else { + // We have received an unauthorized response but have no handlers to handle it. + // Let the response return to the caller. + return response; } } - if (authenticationHandler) { - return authenticationHandler.handleAuthentication(this, info, data); + let redirectsRemaining = this._maxRedirects; + while (response.message.statusCode && + HttpRedirectCodes.includes(response.message.statusCode) && + this._allowRedirects && + redirectsRemaining > 0) { + const redirectUrl = response.message.headers['location']; + if (!redirectUrl) { + // if there's no location to redirect to, we won't + break; + } + const parsedRedirectUrl = new URL(redirectUrl); + if (parsedUrl.protocol === 'https:' && + parsedUrl.protocol !== parsedRedirectUrl.protocol && + !this._allowRedirectDowngrade) { + throw new Error('Redirect from HTTPS to HTTP protocol. This downgrade is not allowed for security reasons. If you want to allow this behavior, set the allowRedirectDowngrade option to true.'); + } + // we need to finish reading the response before reassigning response + // which will leak the open socket. + yield response.readBody(); + // strip authorization header if redirected to a different hostname + if (parsedRedirectUrl.hostname !== parsedUrl.hostname) { + for (const header in headers) { + // header names are case insensitive + if (header.toLowerCase() === 'authorization') { + delete headers[header]; + } + } + } + // let's make the request with the new redirectUrl + info = this._prepareRequest(verb, parsedRedirectUrl, headers); + response = yield this.requestRaw(info, data); + redirectsRemaining--; } - else { - // We have received an unauthorized response but have no handlers to handle it. - // Let the response return to the caller. + if (!response.message.statusCode || + !HttpResponseRetryCodes.includes(response.message.statusCode)) { + // If not a retry code, return immediately instead of retrying return response; } - } - let redirectsRemaining = this._maxRedirects; - while (HttpRedirectCodes.indexOf(response.message.statusCode) != -1 && - this._allowRedirects && - redirectsRemaining > 0) { - const redirectUrl = response.message.headers['location']; - if (!redirectUrl) { - // if there's no location to redirect to, we won't - break; - } - let parsedRedirectUrl = new URL(redirectUrl); - if (parsedUrl.protocol == 'https:' && - parsedUrl.protocol != parsedRedirectUrl.protocol && - !this._allowRedirectDowngrade) { - throw new Error('Redirect from HTTPS to HTTP protocol. This downgrade is not allowed for security reasons. If you want to allow this behavior, set the allowRedirectDowngrade option to true.'); - } - // we need to finish reading the response before reassigning response - // which will leak the open socket. - await response.readBody(); - // strip authorization header if redirected to a different hostname - if (parsedRedirectUrl.hostname !== parsedUrl.hostname) { - for (let header in headers) { - // header names are case insensitive - if (header.toLowerCase() === 'authorization') { - delete headers[header]; - } - } + numTries += 1; + if (numTries < maxTries) { + yield response.readBody(); + yield this._performExponentialBackoff(numTries); } - // let's make the request with the new redirectUrl - info = this._prepareRequest(verb, parsedRedirectUrl, headers); - response = await this.requestRaw(info, data); - redirectsRemaining--; - } - if (HttpResponseRetryCodes.indexOf(response.message.statusCode) == -1) { - // If not a retry code, return immediately instead of retrying - return response; - } - numTries += 1; - if (numTries < maxTries) { - await response.readBody(); - await this._performExponentialBackoff(numTries); - } - } - return response; + } while (numTries < maxTries); + return response; + }); } /** * Needs to be called if keepAlive is set to true in request options. @@ -7224,14 +8656,22 @@ class HttpClient { * @param data */ requestRaw(info, data) { - return new Promise((resolve, reject) => { - let callbackForResult = function (err, res) { - if (err) { - reject(err); + return __awaiter(this, void 0, void 0, function* () { + return new Promise((resolve, reject) => { + function callbackForResult(err, res) { + if (err) { + reject(err); + } + else if (!res) { + // If `err` is not passed, then `res` must be passed. + reject(new Error('Unknown error')); + } + else { + resolve(res); + } } - resolve(res); - }; - this.requestRawWithCallback(info, data, callbackForResult); + this.requestRawWithCallback(info, data, callbackForResult); + }); }); } /** @@ -7241,21 +8681,24 @@ class HttpClient { * @param onResult */ requestRawWithCallback(info, data, onResult) { - let socket; if (typeof data === 'string') { + if (!info.options.headers) { + info.options.headers = {}; + } info.options.headers['Content-Length'] = Buffer.byteLength(data, 'utf8'); } let callbackCalled = false; - let handleResult = (err, res) => { + function handleResult(err, res) { if (!callbackCalled) { callbackCalled = true; onResult(err, res); } - }; - let req = info.httpModule.request(info.options, (msg) => { - let res = new HttpClientResponse(msg); - handleResult(null, res); + } + const req = info.httpModule.request(info.options, (msg) => { + const res = new HttpClientResponse(msg); + handleResult(undefined, res); }); + let socket; req.on('socket', sock => { socket = sock; }); @@ -7264,12 +8707,12 @@ class HttpClient { if (socket) { socket.end(); } - handleResult(new Error('Request timeout: ' + info.options.path), null); + handleResult(new Error(`Request timeout: ${info.options.path}`)); }); req.on('error', function (err) { // err has statusCode property // res should have headers - handleResult(err, null); + handleResult(err); }); if (data && typeof data === 'string') { req.write(data, 'utf8'); @@ -7290,9 +8733,18 @@ class HttpClient { * @param serverUrl The server URL where the request will be sent. For example, https://api.github.com */ getAgent(serverUrl) { - let parsedUrl = new URL(serverUrl); + const parsedUrl = new URL(serverUrl); return this._getAgent(parsedUrl); } + getAgentDispatcher(serverUrl) { + const parsedUrl = new URL(serverUrl); + const proxyUrl = pm.getProxyUrl(parsedUrl); + const useProxy = proxyUrl && proxyUrl.hostname; + if (!useProxy) { + return; + } + return this._getProxyAgentDispatcher(parsedUrl, proxyUrl); + } _prepareRequest(method, requestUrl, headers) { const info = {}; info.parsedUrl = requestUrl; @@ -7314,61 +8766,113 @@ class HttpClient { info.options.agent = this._getAgent(info.parsedUrl); // gives handlers an opportunity to participate if (this.handlers) { - this.handlers.forEach(handler => { + for (const handler of this.handlers) { handler.prepareRequest(info.options); - }); + } } return info; } _mergeHeaders(headers) { - const lowercaseKeys = obj => Object.keys(obj).reduce((c, k) => ((c[k.toLowerCase()] = obj[k]), c), {}); if (this.requestOptions && this.requestOptions.headers) { - return Object.assign({}, lowercaseKeys(this.requestOptions.headers), lowercaseKeys(headers)); + return Object.assign({}, lowercaseKeys(this.requestOptions.headers), lowercaseKeys(headers || {})); } return lowercaseKeys(headers || {}); } + /** + * Gets an existing header value or returns a default. + * Handles converting number header values to strings since HTTP headers must be strings. + * Note: This returns string | string[] since some headers can have multiple values. + * For headers that must always be a single string (like Content-Type), use the + * specialized _getExistingOrDefaultContentTypeHeader method instead. + */ _getExistingOrDefaultHeader(additionalHeaders, header, _default) { - const lowercaseKeys = obj => Object.keys(obj).reduce((c, k) => ((c[k.toLowerCase()] = obj[k]), c), {}); let clientHeader; if (this.requestOptions && this.requestOptions.headers) { - clientHeader = lowercaseKeys(this.requestOptions.headers)[header]; + const headerValue = lowercaseKeys(this.requestOptions.headers)[header]; + if (headerValue) { + clientHeader = + typeof headerValue === 'number' ? headerValue.toString() : headerValue; + } + } + const additionalValue = additionalHeaders[header]; + if (additionalValue !== undefined) { + return typeof additionalValue === 'number' + ? additionalValue.toString() + : additionalValue; + } + if (clientHeader !== undefined) { + return clientHeader; + } + return _default; + } + /** + * Specialized version of _getExistingOrDefaultHeader for Content-Type header. + * Always returns a single string (not an array) since Content-Type should be a single value. + * Converts arrays to comma-separated strings and numbers to strings to ensure type safety. + * This was split from _getExistingOrDefaultHeader to provide stricter typing for callers + * that assign the result to places expecting a string (e.g., additionalHeaders[Headers.ContentType]). + */ + _getExistingOrDefaultContentTypeHeader(additionalHeaders, _default) { + let clientHeader; + if (this.requestOptions && this.requestOptions.headers) { + const headerValue = lowercaseKeys(this.requestOptions.headers)[Headers.ContentType]; + if (headerValue) { + if (typeof headerValue === 'number') { + clientHeader = String(headerValue); + } + else if (Array.isArray(headerValue)) { + clientHeader = headerValue.join(', '); + } + else { + clientHeader = headerValue; + } + } + } + const additionalValue = additionalHeaders[Headers.ContentType]; + // Return the first non-undefined value, converting numbers or arrays to strings if necessary + if (additionalValue !== undefined) { + if (typeof additionalValue === 'number') { + return String(additionalValue); + } + else if (Array.isArray(additionalValue)) { + return additionalValue.join(', '); + } + else { + return additionalValue; + } + } + if (clientHeader !== undefined) { + return clientHeader; } - return additionalHeaders[header] || clientHeader || _default; + return _default; } _getAgent(parsedUrl) { let agent; - let proxyUrl = pm.getProxyUrl(parsedUrl); - let useProxy = proxyUrl && proxyUrl.hostname; + const proxyUrl = pm.getProxyUrl(parsedUrl); + const useProxy = proxyUrl && proxyUrl.hostname; if (this._keepAlive && useProxy) { agent = this._proxyAgent; } - if (this._keepAlive && !useProxy) { + if (!useProxy) { agent = this._agent; } // if agent is already assigned use that agent. - if (!!agent) { + if (agent) { return agent; } const usingSsl = parsedUrl.protocol === 'https:'; let maxSockets = 100; - if (!!this.requestOptions) { + if (this.requestOptions) { maxSockets = this.requestOptions.maxSockets || http.globalAgent.maxSockets; } - if (useProxy) { - // If using proxy, need tunnel - if (!tunnel) { - tunnel = __nccwpck_require__(4294); - } + // This is `useProxy` again, but we need to check `proxyURl` directly for TypeScripts's flow analysis. + if (proxyUrl && proxyUrl.hostname) { const agentOptions = { - maxSockets: maxSockets, + maxSockets, keepAlive: this._keepAlive, - proxy: { - ...((proxyUrl.username || proxyUrl.password) && { - proxyAuth: `${proxyUrl.username}:${proxyUrl.password}` - }), - host: proxyUrl.hostname, - port: proxyUrl.port - } + proxy: Object.assign(Object.assign({}, ((proxyUrl.username || proxyUrl.password) && { + proxyAuth: `${proxyUrl.username}:${proxyUrl.password}` + })), { host: proxyUrl.hostname, port: proxyUrl.port }) }; let tunnelAgent; const overHttps = proxyUrl.protocol === 'https:'; @@ -7381,16 +8885,12 @@ class HttpClient { agent = tunnelAgent(agentOptions); this._proxyAgent = agent; } - // if reusing agent across request and tunneling agent isn't assigned create a new agent - if (this._keepAlive && !agent) { - const options = { keepAlive: this._keepAlive, maxSockets: maxSockets }; + // if tunneling agent isn't assigned create a new agent + if (!agent) { + const options = { keepAlive: this._keepAlive, maxSockets }; agent = usingSsl ? new https.Agent(options) : new http.Agent(options); this._agent = agent; } - // if not using private agent and tunnel agent isn't setup then use global agent - if (!agent) { - agent = usingSsl ? https.globalAgent : http.globalAgent; - } if (usingSsl && this._ignoreSslError) { // we don't want to set NODE_TLS_REJECT_UNAUTHORIZED=0 since that will affect request for entire process // http.RequestOptions doesn't expose a way to modify RequestOptions.agent.options @@ -7401,110 +8901,163 @@ class HttpClient { } return agent; } - _performExponentialBackoff(retryNumber) { - retryNumber = Math.min(ExponentialBackoffCeiling, retryNumber); - const ms = ExponentialBackoffTimeSlice * Math.pow(2, retryNumber); - return new Promise(resolve => setTimeout(() => resolve(), ms)); + _getProxyAgentDispatcher(parsedUrl, proxyUrl) { + let proxyAgent; + if (this._keepAlive) { + proxyAgent = this._proxyAgentDispatcher; + } + // if agent is already assigned use that agent. + if (proxyAgent) { + return proxyAgent; + } + const usingSsl = parsedUrl.protocol === 'https:'; + proxyAgent = new undici_1.ProxyAgent(Object.assign({ uri: proxyUrl.href, pipelining: !this._keepAlive ? 0 : 1 }, ((proxyUrl.username || proxyUrl.password) && { + token: `Basic ${Buffer.from(`${proxyUrl.username}:${proxyUrl.password}`).toString('base64')}` + }))); + this._proxyAgentDispatcher = proxyAgent; + if (usingSsl && this._ignoreSslError) { + // we don't want to set NODE_TLS_REJECT_UNAUTHORIZED=0 since that will affect request for entire process + // http.RequestOptions doesn't expose a way to modify RequestOptions.agent.options + // we have to cast it to any and change it directly + proxyAgent.options = Object.assign(proxyAgent.options.requestTls || {}, { + rejectUnauthorized: false + }); + } + return proxyAgent; } - static dateTimeDeserializer(key, value) { - if (typeof value === 'string') { - let a = new Date(value); - if (!isNaN(a.valueOf())) { - return a; - } + _getUserAgentWithOrchestrationId(userAgent) { + const baseUserAgent = userAgent || 'actions/http-client'; + const orchId = process.env['ACTIONS_ORCHESTRATION_ID']; + if (orchId) { + // Sanitize the orchestration ID to ensure it contains only valid characters + // Valid characters: 0-9, a-z, _, -, . + const sanitizedId = orchId.replace(/[^a-z0-9_.-]/gi, '_'); + return `${baseUserAgent} actions_orchestration_id/${sanitizedId}`; } - return value; + return baseUserAgent; } - async _processResponse(res, options) { - return new Promise(async (resolve, reject) => { - const statusCode = res.message.statusCode; - const response = { - statusCode: statusCode, - result: null, - headers: {} - }; - // not found leads to null obj returned - if (statusCode == HttpCodes.NotFound) { - resolve(response); - } - let obj; - let contents; - // get the result from the body - try { - contents = await res.readBody(); - if (contents && contents.length > 0) { - if (options && options.deserializeDates) { - obj = JSON.parse(contents, HttpClient.dateTimeDeserializer); + _performExponentialBackoff(retryNumber) { + return __awaiter(this, void 0, void 0, function* () { + retryNumber = Math.min(ExponentialBackoffCeiling, retryNumber); + const ms = ExponentialBackoffTimeSlice * Math.pow(2, retryNumber); + return new Promise(resolve => setTimeout(() => resolve(), ms)); + }); + } + _processResponse(res, options) { + return __awaiter(this, void 0, void 0, function* () { + return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () { + const statusCode = res.message.statusCode || 0; + const response = { + statusCode, + result: null, + headers: {} + }; + // not found leads to null obj returned + if (statusCode === HttpCodes.NotFound) { + resolve(response); + } + // get the result from the body + function dateTimeDeserializer(key, value) { + if (typeof value === 'string') { + const a = new Date(value); + if (!isNaN(a.valueOf())) { + return a; + } } - else { - obj = JSON.parse(contents); + return value; + } + let obj; + let contents; + try { + contents = yield res.readBody(); + if (contents && contents.length > 0) { + if (options && options.deserializeDates) { + obj = JSON.parse(contents, dateTimeDeserializer); + } + else { + obj = JSON.parse(contents); + } + response.result = obj; } - response.result = obj; + response.headers = res.message.headers; } - response.headers = res.message.headers; - } - catch (err) { - // Invalid resource (contents not json); leaving result obj null - } - // note that 3xx redirects are handled by the http layer. - if (statusCode > 299) { - let msg; - // if exception/error in body, attempt to get better error - if (obj && obj.message) { - msg = obj.message; + catch (err) { + // Invalid resource (contents not json); leaving result obj null } - else if (contents && contents.length > 0) { - // it may be the case that the exception is in the body message as string - msg = contents; + // note that 3xx redirects are handled by the http layer. + if (statusCode > 299) { + let msg; + // if exception/error in body, attempt to get better error + if (obj && obj.message) { + msg = obj.message; + } + else if (contents && contents.length > 0) { + // it may be the case that the exception is in the body message as string + msg = contents; + } + else { + msg = `Failed request: (${statusCode})`; + } + const err = new HttpClientError(msg, statusCode); + err.result = response.result; + reject(err); } else { - msg = 'Failed request: (' + statusCode + ')'; + resolve(response); } - let err = new HttpClientError(msg, statusCode); - err.result = response.result; - reject(err); - } - else { - resolve(response); - } + })); }); } } exports.HttpClient = HttpClient; - +const lowercaseKeys = (obj) => Object.keys(obj).reduce((c, k) => ((c[k.toLowerCase()] = obj[k]), c), {}); +//# sourceMappingURL=index.js.map /***/ }), -/***/ 6443: +/***/ 19835: /***/ ((__unused_webpack_module, exports) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getProxyUrl = getProxyUrl; +exports.checkBypass = checkBypass; function getProxyUrl(reqUrl) { - let usingSsl = reqUrl.protocol === 'https:'; - let proxyUrl; + const usingSsl = reqUrl.protocol === 'https:'; if (checkBypass(reqUrl)) { - return proxyUrl; + return undefined; } - let proxyVar; - if (usingSsl) { - proxyVar = process.env['https_proxy'] || process.env['HTTPS_PROXY']; + const proxyVar = (() => { + if (usingSsl) { + return process.env['https_proxy'] || process.env['HTTPS_PROXY']; + } + else { + return process.env['http_proxy'] || process.env['HTTP_PROXY']; + } + })(); + if (proxyVar) { + try { + return new DecodedURL(proxyVar); + } + catch (_a) { + if (!proxyVar.startsWith('http://') && !proxyVar.startsWith('https://')) + return new DecodedURL(`http://${proxyVar}`); + } } else { - proxyVar = process.env['http_proxy'] || process.env['HTTP_PROXY']; - } - if (proxyVar) { - proxyUrl = new URL(proxyVar); + return undefined; } - return proxyUrl; } -exports.getProxyUrl = getProxyUrl; function checkBypass(reqUrl) { if (!reqUrl.hostname) { return false; } - let noProxy = process.env['no_proxy'] || process.env['NO_PROXY'] || ''; + const reqHost = reqUrl.hostname; + if (isLoopbackAddress(reqHost)) { + return true; + } + const noProxy = process.env['no_proxy'] || process.env['NO_PROXY'] || ''; if (!noProxy) { return false; } @@ -7520,51 +9073,141 @@ function checkBypass(reqUrl) { reqPort = 443; } // Format the request hostname and hostname with port - let upperReqHosts = [reqUrl.hostname.toUpperCase()]; + const upperReqHosts = [reqUrl.hostname.toUpperCase()]; if (typeof reqPort === 'number') { upperReqHosts.push(`${upperReqHosts[0]}:${reqPort}`); } // Compare request host against noproxy - for (let upperNoProxyItem of noProxy + for (const upperNoProxyItem of noProxy .split(',') .map(x => x.trim().toUpperCase()) .filter(x => x)) { - if (upperReqHosts.some(x => x === upperNoProxyItem)) { + if (upperNoProxyItem === '*' || + upperReqHosts.some(x => x === upperNoProxyItem || + x.endsWith(`.${upperNoProxyItem}`) || + (upperNoProxyItem.startsWith('.') && + x.endsWith(`${upperNoProxyItem}`)))) { return true; } } return false; } -exports.checkBypass = checkBypass; - +function isLoopbackAddress(host) { + const hostLower = host.toLowerCase(); + return (hostLower === 'localhost' || + hostLower.startsWith('127.') || + hostLower.startsWith('[::1]') || + hostLower.startsWith('[0:0:0:0:0:0:0:1]')); +} +class DecodedURL extends URL { + constructor(url, base) { + super(url, base); + this._decodedUsername = decodeURIComponent(super.username); + this._decodedPassword = decodeURIComponent(super.password); + } + get username() { + return this._decodedUsername; + } + get password() { + return this._decodedPassword; + } +} +//# sourceMappingURL=proxy.js.map /***/ }), -/***/ 1962: +/***/ 81962: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; var _a; Object.defineProperty(exports, "__esModule", ({ value: true })); -const assert_1 = __nccwpck_require__(9491); -const fs = __nccwpck_require__(7147); -const path = __nccwpck_require__(1017); -_a = fs.promises, exports.chmod = _a.chmod, exports.copyFile = _a.copyFile, exports.lstat = _a.lstat, exports.mkdir = _a.mkdir, exports.readdir = _a.readdir, exports.readlink = _a.readlink, exports.rename = _a.rename, exports.rmdir = _a.rmdir, exports.stat = _a.stat, exports.symlink = _a.symlink, exports.unlink = _a.unlink; +exports.READONLY = exports.UV_FS_O_EXLOCK = exports.IS_WINDOWS = exports.unlink = exports.symlink = exports.stat = exports.rmdir = exports.rm = exports.rename = exports.readdir = exports.open = exports.mkdir = exports.lstat = exports.copyFile = exports.chmod = void 0; +exports.readlink = readlink; +exports.exists = exists; +exports.isDirectory = isDirectory; +exports.isRooted = isRooted; +exports.tryGetExecutablePath = tryGetExecutablePath; +exports.getCmdPath = getCmdPath; +const fs = __importStar(__nccwpck_require__(57147)); +const path = __importStar(__nccwpck_require__(71017)); +_a = fs.promises +// export const {open} = 'fs' +, exports.chmod = _a.chmod, exports.copyFile = _a.copyFile, exports.lstat = _a.lstat, exports.mkdir = _a.mkdir, exports.open = _a.open, exports.readdir = _a.readdir, exports.rename = _a.rename, exports.rm = _a.rm, exports.rmdir = _a.rmdir, exports.stat = _a.stat, exports.symlink = _a.symlink, exports.unlink = _a.unlink; +// export const {open} = 'fs' exports.IS_WINDOWS = process.platform === 'win32'; +/** + * Custom implementation of readlink to ensure Windows junctions + * maintain trailing backslash for backward compatibility with Node.js < 24 + * + * In Node.js 20, Windows junctions (directory symlinks) always returned paths + * with trailing backslashes. Node.js 24 removed this behavior, which breaks + * code that relied on this format for path operations. + * + * This implementation restores the Node 20 behavior by adding a trailing + * backslash to all junction results on Windows. + */ +function readlink(fsPath) { + return __awaiter(this, void 0, void 0, function* () { + const result = yield fs.promises.readlink(fsPath); + // On Windows, restore Node 20 behavior: add trailing backslash to all results + // since junctions on Windows are always directory links + if (exports.IS_WINDOWS && !result.endsWith('\\')) { + return `${result}\\`; + } + return result; + }); +} +// See https://github.com/nodejs/node/blob/d0153aee367422d0858105abec186da4dff0a0c5/deps/uv/include/uv/win.h#L691 +exports.UV_FS_O_EXLOCK = 0x10000000; +exports.READONLY = fs.constants.O_RDONLY; function exists(fsPath) { return __awaiter(this, void 0, void 0, function* () { try { - yield exports.stat(fsPath); + yield (0, exports.stat)(fsPath); } catch (err) { if (err.code === 'ENOENT') { @@ -7575,14 +9218,12 @@ function exists(fsPath) { return true; }); } -exports.exists = exists; -function isDirectory(fsPath, useStat = false) { - return __awaiter(this, void 0, void 0, function* () { - const stats = useStat ? yield exports.stat(fsPath) : yield exports.lstat(fsPath); +function isDirectory(fsPath_1) { + return __awaiter(this, arguments, void 0, function* (fsPath, useStat = false) { + const stats = useStat ? yield (0, exports.stat)(fsPath) : yield (0, exports.lstat)(fsPath); return stats.isDirectory(); }); } -exports.isDirectory = isDirectory; /** * On OSX/Linux, true if path starts with '/'. On Windows, true for paths like: * \, \hello, \\hello\share, C:, and C:\hello (and corresponding alternate separator cases). @@ -7598,50 +9239,6 @@ function isRooted(p) { } return p.startsWith('/'); } -exports.isRooted = isRooted; -/** - * Recursively create a directory at `fsPath`. - * - * This implementation is optimistic, meaning it attempts to create the full - * path first, and backs up the path stack from there. - * - * @param fsPath The path to create - * @param maxDepth The maximum recursion depth - * @param depth The current recursion depth - */ -function mkdirP(fsPath, maxDepth = 1000, depth = 1) { - return __awaiter(this, void 0, void 0, function* () { - assert_1.ok(fsPath, 'a path argument must be provided'); - fsPath = path.resolve(fsPath); - if (depth >= maxDepth) - return exports.mkdir(fsPath); - try { - yield exports.mkdir(fsPath); - return; - } - catch (err) { - switch (err.code) { - case 'ENOENT': { - yield mkdirP(path.dirname(fsPath), maxDepth, depth + 1); - yield exports.mkdir(fsPath); - return; - } - default: { - let stats; - try { - stats = yield exports.stat(fsPath); - } - catch (err2) { - throw err; - } - if (!stats.isDirectory()) - throw err; - } - } - } - }); -} -exports.mkdirP = mkdirP; /** * Best effort attempt to determine whether a file exists and is executable. * @param filePath file path to check @@ -7653,7 +9250,7 @@ function tryGetExecutablePath(filePath, extensions) { let stats = undefined; try { // test file exists - stats = yield exports.stat(filePath); + stats = yield (0, exports.stat)(filePath); } catch (err) { if (err.code !== 'ENOENT') { @@ -7681,7 +9278,7 @@ function tryGetExecutablePath(filePath, extensions) { filePath = originalFilePath + extension; stats = undefined; try { - stats = yield exports.stat(filePath); + stats = yield (0, exports.stat)(filePath); } catch (err) { if (err.code !== 'ENOENT') { @@ -7695,7 +9292,7 @@ function tryGetExecutablePath(filePath, extensions) { try { const directory = path.dirname(filePath); const upperName = path.basename(filePath).toUpperCase(); - for (const actualName of yield exports.readdir(directory)) { + for (const actualName of yield (0, exports.readdir)(directory)) { if (upperName === actualName.toUpperCase()) { filePath = path.join(directory, actualName); break; @@ -7718,7 +9315,6 @@ function tryGetExecutablePath(filePath, extensions) { return ''; }); } -exports.tryGetExecutablePath = tryGetExecutablePath; function normalizeSeparators(p) { p = p || ''; if (exports.IS_WINDOWS) { @@ -7735,18 +9331,60 @@ function normalizeSeparators(p) { // 256 128 64 32 16 8 4 2 1 function isUnixExecutable(stats) { return ((stats.mode & 1) > 0 || - ((stats.mode & 8) > 0 && stats.gid === process.getgid()) || - ((stats.mode & 64) > 0 && stats.uid === process.getuid())); + ((stats.mode & 8) > 0 && + process.getgid !== undefined && + stats.gid === process.getgid()) || + ((stats.mode & 64) > 0 && + process.getuid !== undefined && + stats.uid === process.getuid())); +} +// Get the path of cmd.exe in windows +function getCmdPath() { + var _a; + return (_a = process.env['COMSPEC']) !== null && _a !== void 0 ? _a : `cmd.exe`; } //# sourceMappingURL=io-util.js.map /***/ }), -/***/ 7436: +/***/ 47351: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { @@ -7757,11 +9395,15 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }); }; Object.defineProperty(exports, "__esModule", ({ value: true })); -const childProcess = __nccwpck_require__(2081); -const path = __nccwpck_require__(1017); -const util_1 = __nccwpck_require__(3837); -const ioUtil = __nccwpck_require__(1962); -const exec = util_1.promisify(childProcess.exec); +exports.cp = cp; +exports.mv = mv; +exports.rmRF = rmRF; +exports.mkdirP = mkdirP; +exports.which = which; +exports.findInPath = findInPath; +const assert_1 = __nccwpck_require__(39491); +const path = __importStar(__nccwpck_require__(71017)); +const ioUtil = __importStar(__nccwpck_require__(81962)); /** * Copies a file or folder. * Based off of shelljs - https://github.com/shelljs/shelljs/blob/9237f66c52e5daa40458f94f9565e18e8132f5a6/src/cp.js @@ -7770,16 +9412,16 @@ const exec = util_1.promisify(childProcess.exec); * @param dest destination path * @param options optional. See CopyOptions. */ -function cp(source, dest, options = {}) { - return __awaiter(this, void 0, void 0, function* () { - const { force, recursive } = readCopyOptions(options); +function cp(source_1, dest_1) { + return __awaiter(this, arguments, void 0, function* (source, dest, options = {}) { + const { force, recursive, copySourceDirectory } = readCopyOptions(options); const destStat = (yield ioUtil.exists(dest)) ? yield ioUtil.stat(dest) : null; // Dest is an existing file, but not forcing if (destStat && destStat.isFile() && !force) { return; } // If dest is an existing directory, should copy inside. - const newDest = destStat && destStat.isDirectory() + const newDest = destStat && destStat.isDirectory() && copySourceDirectory ? path.join(dest, path.basename(source)) : dest; if (!(yield ioUtil.exists(source))) { @@ -7803,7 +9445,6 @@ function cp(source, dest, options = {}) { } }); } -exports.cp = cp; /** * Moves a path. * @@ -7811,8 +9452,8 @@ exports.cp = cp; * @param dest destination path * @param options optional. See MoveOptions. */ -function mv(source, dest, options = {}) { - return __awaiter(this, void 0, void 0, function* () { +function mv(source_1, dest_1) { + return __awaiter(this, arguments, void 0, function* (source, dest, options = {}) { if (yield ioUtil.exists(dest)) { let destExists = true; if (yield ioUtil.isDirectory(dest)) { @@ -7833,7 +9474,6 @@ function mv(source, dest, options = {}) { yield ioUtil.rename(source, dest); }); } -exports.mv = mv; /** * Remove a path recursively with force * @@ -7842,55 +9482,26 @@ exports.mv = mv; function rmRF(inputPath) { return __awaiter(this, void 0, void 0, function* () { if (ioUtil.IS_WINDOWS) { - // Node doesn't provide a delete operation, only an unlink function. This means that if the file is being used by another - // program (e.g. antivirus), it won't be deleted. To address this, we shell out the work to rd/del. - try { - if (yield ioUtil.isDirectory(inputPath, true)) { - yield exec(`rd /s /q "${inputPath}"`); - } - else { - yield exec(`del /f /a "${inputPath}"`); - } - } - catch (err) { - // if you try to delete a file that doesn't exist, desired result is achieved - // other errors are valid - if (err.code !== 'ENOENT') - throw err; - } - // Shelling out fails to remove a symlink folder with missing source, this unlink catches that - try { - yield ioUtil.unlink(inputPath); - } - catch (err) { - // if you try to delete a file that doesn't exist, desired result is achieved - // other errors are valid - if (err.code !== 'ENOENT') - throw err; + // Check for invalid characters + // https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file + if (/[*"<>|]/.test(inputPath)) { + throw new Error('File path must not contain `*`, `"`, `<`, `>` or `|` on Windows'); } } - else { - let isDir = false; - try { - isDir = yield ioUtil.isDirectory(inputPath); - } - catch (err) { - // if you try to delete a file that doesn't exist, desired result is achieved - // other errors are valid - if (err.code !== 'ENOENT') - throw err; - return; - } - if (isDir) { - yield exec(`rm -rf "${inputPath}"`); - } - else { - yield ioUtil.unlink(inputPath); - } + try { + // note if path does not exist, error is silent + yield ioUtil.rm(inputPath, { + force: true, + maxRetries: 3, + recursive: true, + retryDelay: 300 + }); + } + catch (err) { + throw new Error(`File was unable to be removed ${err}`); } }); } -exports.rmRF = rmRF; /** * Make a directory. Creates the full path with folders in between * Will throw if it fails @@ -7900,10 +9511,10 @@ exports.rmRF = rmRF; */ function mkdirP(fsPath) { return __awaiter(this, void 0, void 0, function* () { - yield ioUtil.mkdirP(fsPath); + (0, assert_1.ok)(fsPath, 'a path argument must be provided'); + yield ioUtil.mkdir(fsPath, { recursive: true }); }); } -exports.mkdirP = mkdirP; /** * Returns path of a tool had the tool actually been invoked. Resolves via paths. * If you check and the tool does not exist, it will throw. @@ -7928,62 +9539,78 @@ function which(tool, check) { throw new Error(`Unable to locate executable file: ${tool}. Please verify either the file path exists or the file can be found within a directory specified by the PATH environment variable. Also check the file mode to verify the file is executable.`); } } + return result; } - try { - // build the list of extensions to try - const extensions = []; - if (ioUtil.IS_WINDOWS && process.env.PATHEXT) { - for (const extension of process.env.PATHEXT.split(path.delimiter)) { - if (extension) { - extensions.push(extension); - } - } - } - // if it's rooted, return it if exists. otherwise return empty. - if (ioUtil.isRooted(tool)) { - const filePath = yield ioUtil.tryGetExecutablePath(tool, extensions); - if (filePath) { - return filePath; + const matches = yield findInPath(tool); + if (matches && matches.length > 0) { + return matches[0]; + } + return ''; + }); +} +/** + * Returns a list of all occurrences of the given tool on the system path. + * + * @returns Promise the paths of the tool + */ +function findInPath(tool) { + return __awaiter(this, void 0, void 0, function* () { + if (!tool) { + throw new Error("parameter 'tool' is required"); + } + // build the list of extensions to try + const extensions = []; + if (ioUtil.IS_WINDOWS && process.env['PATHEXT']) { + for (const extension of process.env['PATHEXT'].split(path.delimiter)) { + if (extension) { + extensions.push(extension); } - return ''; } - // if any path separators, return empty - if (tool.includes('/') || (ioUtil.IS_WINDOWS && tool.includes('\\'))) { - return ''; - } - // build the list of directories - // - // Note, technically "where" checks the current directory on Windows. From a toolkit perspective, - // it feels like we should not do this. Checking the current directory seems like more of a use - // case of a shell, and the which() function exposed by the toolkit should strive for consistency - // across platforms. - const directories = []; - if (process.env.PATH) { - for (const p of process.env.PATH.split(path.delimiter)) { - if (p) { - directories.push(p); - } - } + } + // if it's rooted, return it if exists. otherwise return empty. + if (ioUtil.isRooted(tool)) { + const filePath = yield ioUtil.tryGetExecutablePath(tool, extensions); + if (filePath) { + return [filePath]; } - // return the first match - for (const directory of directories) { - const filePath = yield ioUtil.tryGetExecutablePath(directory + path.sep + tool, extensions); - if (filePath) { - return filePath; + return []; + } + // if any path separators, return empty + if (tool.includes(path.sep)) { + return []; + } + // build the list of directories + // + // Note, technically "where" checks the current directory on Windows. From a toolkit perspective, + // it feels like we should not do this. Checking the current directory seems like more of a use + // case of a shell, and the which() function exposed by the toolkit should strive for consistency + // across platforms. + const directories = []; + if (process.env.PATH) { + for (const p of process.env.PATH.split(path.delimiter)) { + if (p) { + directories.push(p); } } - return ''; } - catch (err) { - throw new Error(`which failed with message ${err.message}`); + // find all matches + const matches = []; + for (const directory of directories) { + const filePath = yield ioUtil.tryGetExecutablePath(path.join(directory, tool), extensions); + if (filePath) { + matches.push(filePath); + } } + return matches; }); } -exports.which = which; function readCopyOptions(options) { const force = options.force == null ? true : options.force; const recursive = Boolean(options.recursive); - return { force, recursive }; + const copySourceDirectory = options.copySourceDirectory == null + ? true + : Boolean(options.copySourceDirectory); + return { force, recursive, copySourceDirectory }; } function cpDirRecursive(sourceDir, destDir, currentDepth, force) { return __awaiter(this, void 0, void 0, function* () { @@ -8039,11 +9666,44 @@ function copyFile(srcFile, destFile, force) { /***/ }), -/***/ 2473: +/***/ 32473: /***/ (function(module, exports, __nccwpck_require__) { "use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { @@ -8053,21 +9713,17 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; -}; Object.defineProperty(exports, "__esModule", ({ value: true })); -const semver = __importStar(__nccwpck_require__(562)); -const core_1 = __nccwpck_require__(2186); +exports._findMatch = _findMatch; +exports._getOsVersion = _getOsVersion; +exports._readLinuxVersionFile = _readLinuxVersionFile; +const semver = __importStar(__nccwpck_require__(70562)); +const core_1 = __nccwpck_require__(42186); // needs to be require for core node modules to be mocked /* eslint @typescript-eslint/no-require-imports: 0 */ -const os = __nccwpck_require__(2037); -const cp = __nccwpck_require__(2081); -const fs = __nccwpck_require__(7147); +const os = __nccwpck_require__(22037); +const cp = __nccwpck_require__(32081); +const fs = __nccwpck_require__(57147); function _findMatch(versionSpec, stable, candidates, archFilter) { return __awaiter(this, void 0, void 0, function* () { const platFilter = os.platform(); @@ -8076,11 +9732,11 @@ function _findMatch(versionSpec, stable, candidates, archFilter) { let file; for (const candidate of candidates) { const version = candidate.version; - core_1.debug(`check ${version} satisfies ${versionSpec}`); + (0, core_1.debug)(`check ${version} satisfies ${versionSpec}`); if (semver.satisfies(version, versionSpec) && (!stable || candidate.stable === stable)) { file = candidate.files.find(item => { - core_1.debug(`${item.arch}===${archFilter} && ${item.platform}===${platFilter}`); + (0, core_1.debug)(`${item.arch}===${archFilter} && ${item.platform}===${platFilter}`); let chk = item.arch === archFilter && item.platform === platFilter; if (chk && item.platform_version) { const osVersion = module.exports._getOsVersion(); @@ -8094,7 +9750,7 @@ function _findMatch(versionSpec, stable, candidates, archFilter) { return chk; }); if (file) { - core_1.debug(`matched ${candidate.version}`); + (0, core_1.debug)(`matched ${candidate.version}`); match = candidate; break; } @@ -8108,7 +9764,6 @@ function _findMatch(versionSpec, stable, candidates, archFilter) { return result; }); } -exports._findMatch = _findMatch; function _getOsVersion() { // TODO: add windows and other linux, arm variants // right now filtering on version is only an ubuntu and macos scenario for tools we build for hosted (python) @@ -8129,8 +9784,10 @@ function _getOsVersion() { const lines = lsbContents.split('\n'); for (const line of lines) { const parts = line.split('='); - if (parts.length === 2 && parts[0].trim() === 'DISTRIB_RELEASE') { - version = parts[1].trim(); + if (parts.length === 2 && + (parts[0].trim() === 'VERSION_ID' || + parts[0].trim() === 'DISTRIB_RELEASE')) { + version = parts[1].trim().replace(/^"/, '').replace(/"$/, ''); break; } } @@ -8138,25 +9795,60 @@ function _getOsVersion() { } return version; } -exports._getOsVersion = _getOsVersion; function _readLinuxVersionFile() { - const lsbFile = '/etc/lsb-release'; + const lsbReleaseFile = '/etc/lsb-release'; + const osReleaseFile = '/etc/os-release'; let contents = ''; - if (fs.existsSync(lsbFile)) { - contents = fs.readFileSync(lsbFile).toString(); + if (fs.existsSync(lsbReleaseFile)) { + contents = fs.readFileSync(lsbReleaseFile).toString(); + } + else if (fs.existsSync(osReleaseFile)) { + contents = fs.readFileSync(osReleaseFile).toString(); } return contents; } -exports._readLinuxVersionFile = _readLinuxVersionFile; //# sourceMappingURL=manifest.js.map /***/ }), -/***/ 8279: +/***/ 38279: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { @@ -8166,15 +9858,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; -}; Object.defineProperty(exports, "__esModule", ({ value: true })); -const core = __importStar(__nccwpck_require__(2186)); +exports.RetryHelper = void 0; +const core = __importStar(__nccwpck_require__(42186)); /** * Internal class for retries */ @@ -8229,11 +9915,44 @@ exports.RetryHelper = RetryHelper; /***/ }), -/***/ 7784: +/***/ 27784: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { @@ -8243,31 +9962,35 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; -}; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; Object.defineProperty(exports, "__esModule", ({ value: true })); -const core = __importStar(__nccwpck_require__(2186)); -const io = __importStar(__nccwpck_require__(7436)); -const fs = __importStar(__nccwpck_require__(7147)); -const mm = __importStar(__nccwpck_require__(2473)); -const os = __importStar(__nccwpck_require__(2037)); -const path = __importStar(__nccwpck_require__(1017)); -const httpm = __importStar(__nccwpck_require__(9925)); -const semver = __importStar(__nccwpck_require__(562)); -const stream = __importStar(__nccwpck_require__(2781)); -const util = __importStar(__nccwpck_require__(3837)); -const v4_1 = __importDefault(__nccwpck_require__(824)); -const exec_1 = __nccwpck_require__(1514); -const assert_1 = __nccwpck_require__(9491); -const retry_helper_1 = __nccwpck_require__(8279); +exports.HTTPError = void 0; +exports.downloadTool = downloadTool; +exports.extract7z = extract7z; +exports.extractTar = extractTar; +exports.extractXar = extractXar; +exports.extractZip = extractZip; +exports.cacheDir = cacheDir; +exports.cacheFile = cacheFile; +exports.find = find; +exports.findAllVersions = findAllVersions; +exports.getManifestFromRepo = getManifestFromRepo; +exports.findFromManifest = findFromManifest; +exports.isExplicitVersion = isExplicitVersion; +exports.evaluateVersions = evaluateVersions; +const core = __importStar(__nccwpck_require__(42186)); +const io = __importStar(__nccwpck_require__(47351)); +const crypto = __importStar(__nccwpck_require__(6113)); +const fs = __importStar(__nccwpck_require__(57147)); +const mm = __importStar(__nccwpck_require__(32473)); +const os = __importStar(__nccwpck_require__(22037)); +const path = __importStar(__nccwpck_require__(71017)); +const httpm = __importStar(__nccwpck_require__(96255)); +const semver = __importStar(__nccwpck_require__(70562)); +const stream = __importStar(__nccwpck_require__(12781)); +const util = __importStar(__nccwpck_require__(73837)); +const assert_1 = __nccwpck_require__(39491); +const exec_1 = __nccwpck_require__(71514); +const retry_helper_1 = __nccwpck_require__(38279); class HTTPError extends Error { constructor(httpStatusCode) { super(`Unexpected HTTP response: ${httpStatusCode}`); @@ -8285,11 +10008,12 @@ const userAgent = 'actions/tool-cache'; * @param url url of tool to download * @param dest path to download tool * @param auth authorization header + * @param headers other headers * @returns path to downloaded tool */ -function downloadTool(url, dest, auth) { +function downloadTool(url, dest, auth, headers) { return __awaiter(this, void 0, void 0, function* () { - dest = dest || path.join(_getTempDirectory(), v4_1.default()); + dest = dest || path.join(_getTempDirectory(), crypto.randomUUID()); yield io.mkdirP(path.dirname(dest)); core.debug(`Downloading ${url}`); core.debug(`Destination ${dest}`); @@ -8298,7 +10022,7 @@ function downloadTool(url, dest, auth) { const maxSeconds = _getGlobal('TEST_DOWNLOAD_TOOL_RETRY_MAX_SECONDS', 20); const retryHelper = new retry_helper_1.RetryHelper(maxAttempts, minSeconds, maxSeconds); return yield retryHelper.execute(() => __awaiter(this, void 0, void 0, function* () { - return yield downloadToolAttempt(url, dest || '', auth); + return yield downloadToolAttempt(url, dest || '', auth, headers); }), (err) => { if (err instanceof HTTPError && err.httpStatusCode) { // Don't retry anything less than 500, except 408 Request Timeout and 429 Too Many Requests @@ -8313,8 +10037,7 @@ function downloadTool(url, dest, auth) { }); }); } -exports.downloadTool = downloadTool; -function downloadToolAttempt(url, dest, auth) { +function downloadToolAttempt(url, dest, auth, headers) { return __awaiter(this, void 0, void 0, function* () { if (fs.existsSync(dest)) { throw new Error(`Destination file path ${dest} already exists`); @@ -8323,12 +10046,12 @@ function downloadToolAttempt(url, dest, auth) { const http = new httpm.HttpClient(userAgent, [], { allowRetries: false }); - let headers; if (auth) { core.debug('set auth'); - headers = { - authorization: auth - }; + if (headers === undefined) { + headers = {}; + } + headers.authorization = auth; } const response = yield http.get(url, headers); if (response.message.statusCode !== 200) { @@ -8378,8 +10101,8 @@ function downloadToolAttempt(url, dest, auth) { */ function extract7z(file, dest, _7zPath) { return __awaiter(this, void 0, void 0, function* () { - assert_1.ok(IS_WINDOWS, 'extract7z() not supported on current OS'); - assert_1.ok(file, 'parameter "file" is required'); + (0, assert_1.ok)(IS_WINDOWS, 'extract7z() not supported on current OS'); + (0, assert_1.ok)(file, 'parameter "file" is required'); dest = yield _createExtractFolder(dest); const originalCwd = process.cwd(); process.chdir(dest); @@ -8387,16 +10110,16 @@ function extract7z(file, dest, _7zPath) { try { const logLevel = core.isDebug() ? '-bb1' : '-bb0'; const args = [ - 'x', - logLevel, - '-bd', - '-sccUTF-8', + 'x', // eXtract files with full paths + logLevel, // -bb[0-3] : set output log level + '-bd', // disable progress indicator + '-sccUTF-8', // set charset for for console input/output file ]; const options = { silent: true }; - yield exec_1.exec(`"${_7zPath}"`, args, options); + yield (0, exec_1.exec)(`"${_7zPath}"`, args, options); } finally { process.chdir(originalCwd); @@ -8425,7 +10148,7 @@ function extract7z(file, dest, _7zPath) { }; try { const powershellPath = yield io.which('powershell', true); - yield exec_1.exec(`"${powershellPath}"`, args, options); + yield (0, exec_1.exec)(`"${powershellPath}"`, args, options); } finally { process.chdir(originalCwd); @@ -8434,7 +10157,6 @@ function extract7z(file, dest, _7zPath) { return dest; }); } -exports.extract7z = extract7z; /** * Extract a compressed tar archive * @@ -8443,8 +10165,8 @@ exports.extract7z = extract7z; * @param flags flags for the tar command to use for extraction. Defaults to 'xz' (extracting gzipped tars). Optional. * @returns path to the destination directory */ -function extractTar(file, dest, flags = 'xz') { - return __awaiter(this, void 0, void 0, function* () { +function extractTar(file_1, dest_1) { + return __awaiter(this, arguments, void 0, function* (file, dest, flags = 'xz') { if (!file) { throw new Error("parameter 'file' is required"); } @@ -8453,7 +10175,7 @@ function extractTar(file, dest, flags = 'xz') { // Determine whether GNU tar core.debug('Checking tar --version'); let versionOutput = ''; - yield exec_1.exec('tar --version', [], { + yield (0, exec_1.exec)('tar --version', [], { ignoreReturnCode: true, silent: true, listeners: { @@ -8486,13 +10208,13 @@ function extractTar(file, dest, flags = 'xz') { if (isGnuTar) { // Suppress warnings when using GNU tar to extract archives created by BSD tar args.push('--warning=no-unknown-keyword'); + args.push('--overwrite'); } args.push('-C', destArg, '-f', fileArg); - yield exec_1.exec(`tar`, args); + yield (0, exec_1.exec)(`tar`, args); return dest; }); } -exports.extractTar = extractTar; /** * Extract a xar compatible archive * @@ -8501,10 +10223,10 @@ exports.extractTar = extractTar; * @param flags flags for the xar. Optional. * @returns path to the destination directory */ -function extractXar(file, dest, flags = []) { - return __awaiter(this, void 0, void 0, function* () { - assert_1.ok(IS_MAC, 'extractXar() not supported on current OS'); - assert_1.ok(file, 'parameter "file" is required'); +function extractXar(file_1, dest_1) { + return __awaiter(this, arguments, void 0, function* (file, dest, flags = []) { + (0, assert_1.ok)(IS_MAC, 'extractXar() not supported on current OS'); + (0, assert_1.ok)(file, 'parameter "file" is required'); dest = yield _createExtractFolder(dest); let args; if (flags instanceof Array) { @@ -8518,11 +10240,10 @@ function extractXar(file, dest, flags = []) { args.push('-v'); } const xarPath = yield io.which('xar', true); - yield exec_1.exec(`"${xarPath}"`, _unique(args)); + yield (0, exec_1.exec)(`"${xarPath}"`, _unique(args)); return dest; }); } -exports.extractXar = extractXar; /** * Extract a zip * @@ -8545,26 +10266,55 @@ function extractZip(file, dest) { return dest; }); } -exports.extractZip = extractZip; function extractZipWin(file, dest) { return __awaiter(this, void 0, void 0, function* () { // build the powershell command const escapedFile = file.replace(/'/g, "''").replace(/"|\n|\r/g, ''); // double-up single quotes, remove double quotes and newlines const escapedDest = dest.replace(/'/g, "''").replace(/"|\n|\r/g, ''); - const command = `$ErrorActionPreference = 'Stop' ; try { Add-Type -AssemblyName System.IO.Compression.FileSystem } catch { } ; [System.IO.Compression.ZipFile]::ExtractToDirectory('${escapedFile}', '${escapedDest}')`; - // run powershell - const powershellPath = yield io.which('powershell', true); - const args = [ - '-NoLogo', - '-Sta', - '-NoProfile', - '-NonInteractive', - '-ExecutionPolicy', - 'Unrestricted', - '-Command', - command - ]; - yield exec_1.exec(`"${powershellPath}"`, args); + const pwshPath = yield io.which('pwsh', false); + //To match the file overwrite behavior on nix systems, we use the overwrite = true flag for ExtractToDirectory + //and the -Force flag for Expand-Archive as a fallback + if (pwshPath) { + //attempt to use pwsh with ExtractToDirectory, if this fails attempt Expand-Archive + const pwshCommand = [ + `$ErrorActionPreference = 'Stop' ;`, + `try { Add-Type -AssemblyName System.IO.Compression.ZipFile } catch { } ;`, + `try { [System.IO.Compression.ZipFile]::ExtractToDirectory('${escapedFile}', '${escapedDest}', $true) }`, + `catch { if (($_.Exception.GetType().FullName -eq 'System.Management.Automation.MethodException') -or ($_.Exception.GetType().FullName -eq 'System.Management.Automation.RuntimeException') ){ Expand-Archive -LiteralPath '${escapedFile}' -DestinationPath '${escapedDest}' -Force } else { throw $_ } } ;` + ].join(' '); + const args = [ + '-NoLogo', + '-NoProfile', + '-NonInteractive', + '-ExecutionPolicy', + 'Unrestricted', + '-Command', + pwshCommand + ]; + core.debug(`Using pwsh at path: ${pwshPath}`); + yield (0, exec_1.exec)(`"${pwshPath}"`, args); + } + else { + const powershellCommand = [ + `$ErrorActionPreference = 'Stop' ;`, + `try { Add-Type -AssemblyName System.IO.Compression.FileSystem } catch { } ;`, + `if ((Get-Command -Name Expand-Archive -Module Microsoft.PowerShell.Archive -ErrorAction Ignore)) { Expand-Archive -LiteralPath '${escapedFile}' -DestinationPath '${escapedDest}' -Force }`, + `else {[System.IO.Compression.ZipFile]::ExtractToDirectory('${escapedFile}', '${escapedDest}', $true) }` + ].join(' '); + const args = [ + '-NoLogo', + '-Sta', + '-NoProfile', + '-NonInteractive', + '-ExecutionPolicy', + 'Unrestricted', + '-Command', + powershellCommand + ]; + const powershellPath = yield io.which('powershell', true); + core.debug(`Using powershell at path: ${powershellPath}`); + yield (0, exec_1.exec)(`"${powershellPath}"`, args); + } }); } function extractZipNix(file, dest) { @@ -8574,7 +10324,8 @@ function extractZipNix(file, dest) { if (!core.isDebug()) { args.unshift('-q'); } - yield exec_1.exec(`"${unzipPath}"`, args, { cwd: dest }); + args.unshift('-o'); //overwrite with -o, otherwise a prompt is shown which freezes the run + yield (0, exec_1.exec)(`"${unzipPath}"`, args, { cwd: dest }); }); } /** @@ -8607,7 +10358,6 @@ function cacheDir(sourceDir, tool, version, arch) { return destPath; }); } -exports.cacheDir = cacheDir; /** * Caches a downloaded file (GUID) and installs it * into the tool cache with a given targetName @@ -8639,7 +10389,6 @@ function cacheFile(sourceFile, targetFile, tool, version, arch) { return destFolder; }); } -exports.cacheFile = cacheFile; /** * Finds the path to a tool version in the local installed tool cache * @@ -8656,9 +10405,9 @@ function find(toolName, versionSpec, arch) { } arch = arch || os.arch(); // attempt to resolve an explicit version - if (!_isExplicitVersion(versionSpec)) { + if (!isExplicitVersion(versionSpec)) { const localVersions = findAllVersions(toolName, arch); - const match = _evaluateVersions(localVersions, versionSpec); + const match = evaluateVersions(localVersions, versionSpec); versionSpec = match; } // check for the explicit version in the cache @@ -8677,7 +10426,6 @@ function find(toolName, versionSpec, arch) { } return toolPath; } -exports.find = find; /** * Finds the paths to all versions of a tool that are installed in the local tool cache * @@ -8691,7 +10439,7 @@ function findAllVersions(toolName, arch) { if (fs.existsSync(toolPath)) { const children = fs.readdirSync(toolPath); for (const child of children) { - if (_isExplicitVersion(child)) { + if (isExplicitVersion(child)) { const fullPath = path.join(toolPath, child, arch || ''); if (fs.existsSync(fullPath) && fs.existsSync(`${fullPath}.complete`)) { versions.push(child); @@ -8701,9 +10449,8 @@ function findAllVersions(toolName, arch) { } return versions; } -exports.findAllVersions = findAllVersions; -function getManifestFromRepo(owner, repo, auth, branch = 'master') { - return __awaiter(this, void 0, void 0, function* () { +function getManifestFromRepo(owner_1, repo_1, auth_1) { + return __awaiter(this, arguments, void 0, function* (owner, repo, auth, branch = 'master') { let releases = []; const treeUrl = `https://api.github.com/repos/${owner}/${repo}/git/trees/${branch}`; const http = new httpm.HttpClient('tool-cache'); @@ -8738,20 +10485,18 @@ function getManifestFromRepo(owner, repo, auth, branch = 'master') { return releases; }); } -exports.getManifestFromRepo = getManifestFromRepo; -function findFromManifest(versionSpec, stable, manifest, archFilter = os.arch()) { - return __awaiter(this, void 0, void 0, function* () { +function findFromManifest(versionSpec_1, stable_1, manifest_1) { + return __awaiter(this, arguments, void 0, function* (versionSpec, stable, manifest, archFilter = os.arch()) { // wrap the internal impl const match = yield mm._findMatch(versionSpec, stable, manifest, archFilter); return match; }); } -exports.findFromManifest = findFromManifest; function _createExtractFolder(dest) { return __awaiter(this, void 0, void 0, function* () { if (!dest) { // create a temp dir - dest = path.join(_getTempDirectory(), v4_1.default()); + dest = path.join(_getTempDirectory(), crypto.randomUUID()); } yield io.mkdirP(dest); return dest; @@ -8774,14 +10519,25 @@ function _completeToolPath(tool, version, arch) { fs.writeFileSync(markerPath, ''); core.debug('finished caching tool'); } -function _isExplicitVersion(versionSpec) { +/** + * Check if version string is explicit + * + * @param versionSpec version string to check + */ +function isExplicitVersion(versionSpec) { const c = semver.clean(versionSpec) || ''; core.debug(`isExplicit: ${c}`); const valid = semver.valid(c) != null; core.debug(`explicit? ${valid}`); return valid; } -function _evaluateVersions(versions, versionSpec) { +/** + * Get the highest satisfiying semantic version in `versions` which satisfies `versionSpec` + * + * @param versions array of versions to evaluate + * @param versionSpec semantic version spec to satisfy + */ +function evaluateVersions(versions, versionSpec) { let version = ''; core.debug(`evaluating ${versions.length} versions`); versions = versions.sort((a, b) => { @@ -8811,7 +10567,7 @@ function _evaluateVersions(versions, versionSpec) { */ function _getCacheDirectory() { const cacheDirectory = process.env['RUNNER_TOOL_CACHE'] || ''; - assert_1.ok(cacheDirectory, 'Expected RUNNER_TOOL_CACHE to be defined'); + (0, assert_1.ok)(cacheDirectory, 'Expected RUNNER_TOOL_CACHE to be defined'); return cacheDirectory; } /** @@ -8819,7 +10575,7 @@ function _getCacheDirectory() { */ function _getTempDirectory() { const tempDirectory = process.env['RUNNER_TEMP'] || ''; - assert_1.ok(tempDirectory, 'Expected RUNNER_TEMP to be defined'); + (0, assert_1.ok)(tempDirectory, 'Expected RUNNER_TEMP to be defined'); return tempDirectory; } /** @@ -8842,7 +10598,7 @@ function _unique(values) { /***/ }), -/***/ 562: +/***/ 70562: /***/ ((module, exports) => { exports = module.exports = SemVer @@ -8873,8 +10629,11 @@ var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || // Max safe segment length for coercion. var MAX_SAFE_COMPONENT_LENGTH = 16 +var MAX_SAFE_BUILD_LENGTH = MAX_LENGTH - 6 + // The actual regexps go on exports.re var re = exports.re = [] +var safeRe = exports.safeRe = [] var src = exports.src = [] var t = exports.tokens = {} var R = 0 @@ -8883,6 +10642,31 @@ function tok (n) { t[n] = R++ } +var LETTERDASHNUMBER = '[a-zA-Z0-9-]' + +// Replace some greedy regex tokens to prevent regex dos issues. These regex are +// used internally via the safeRe object since all inputs in this library get +// normalized first to trim and collapse all extra whitespace. The original +// regexes are exported for userland consumption and lower level usage. A +// future breaking change could export the safer regex only with a note that +// all input should have extra whitespace removed. +var safeRegexReplacements = [ + ['\\s', 1], + ['\\d', MAX_LENGTH], + [LETTERDASHNUMBER, MAX_SAFE_BUILD_LENGTH], +] + +function makeSafeRe (value) { + for (var i = 0; i < safeRegexReplacements.length; i++) { + var token = safeRegexReplacements[i][0] + var max = safeRegexReplacements[i][1] + value = value + .split(token + '*').join(token + '{0,' + max + '}') + .split(token + '+').join(token + '{1,' + max + '}') + } + return value +} + // The following Regular Expressions can be used for tokenizing, // validating, and parsing SemVer version strings. @@ -8892,14 +10676,14 @@ function tok (n) { tok('NUMERICIDENTIFIER') src[t.NUMERICIDENTIFIER] = '0|[1-9]\\d*' tok('NUMERICIDENTIFIERLOOSE') -src[t.NUMERICIDENTIFIERLOOSE] = '[0-9]+' +src[t.NUMERICIDENTIFIERLOOSE] = '\\d+' // ## Non-numeric Identifier // Zero or more digits, followed by a letter or hyphen, and then zero or // more letters, digits, or hyphens. tok('NONNUMERICIDENTIFIER') -src[t.NONNUMERICIDENTIFIER] = '\\d*[a-zA-Z-][a-zA-Z0-9-]*' +src[t.NONNUMERICIDENTIFIER] = '\\d*[a-zA-Z-]' + LETTERDASHNUMBER + '*' // ## Main Version // Three dot-separated numeric identifiers. @@ -8941,7 +10725,7 @@ src[t.PRERELEASELOOSE] = '(?:-?(' + src[t.PRERELEASEIDENTIFIERLOOSE] + // Any combination of digits, letters, or hyphens. tok('BUILDIDENTIFIER') -src[t.BUILDIDENTIFIER] = '[0-9A-Za-z-]+' +src[t.BUILDIDENTIFIER] = LETTERDASHNUMBER + '+' // ## Build Metadata // Plus sign, followed by one or more period-separated build metadata @@ -9021,6 +10805,7 @@ src[t.COERCE] = '(^|[^\\d])' + '(?:$|[^\\d])' tok('COERCERTL') re[t.COERCERTL] = new RegExp(src[t.COERCE], 'g') +safeRe[t.COERCERTL] = new RegExp(makeSafeRe(src[t.COERCE]), 'g') // Tilde ranges. // Meaning is "reasonably at or greater than" @@ -9030,6 +10815,7 @@ src[t.LONETILDE] = '(?:~>?)' tok('TILDETRIM') src[t.TILDETRIM] = '(\\s*)' + src[t.LONETILDE] + '\\s+' re[t.TILDETRIM] = new RegExp(src[t.TILDETRIM], 'g') +safeRe[t.TILDETRIM] = new RegExp(makeSafeRe(src[t.TILDETRIM]), 'g') var tildeTrimReplace = '$1~' tok('TILDE') @@ -9045,6 +10831,7 @@ src[t.LONECARET] = '(?:\\^)' tok('CARETTRIM') src[t.CARETTRIM] = '(\\s*)' + src[t.LONECARET] + '\\s+' re[t.CARETTRIM] = new RegExp(src[t.CARETTRIM], 'g') +safeRe[t.CARETTRIM] = new RegExp(makeSafeRe(src[t.CARETTRIM]), 'g') var caretTrimReplace = '$1^' tok('CARET') @@ -9066,6 +10853,7 @@ src[t.COMPARATORTRIM] = '(\\s*)' + src[t.GTLT] + // this one has to use the /g flag re[t.COMPARATORTRIM] = new RegExp(src[t.COMPARATORTRIM], 'g') +safeRe[t.COMPARATORTRIM] = new RegExp(makeSafeRe(src[t.COMPARATORTRIM]), 'g') var comparatorTrimReplace = '$1$2$3' // Something like `1.2.3 - 1.2.4` @@ -9094,6 +10882,14 @@ for (var i = 0; i < R; i++) { debug(i, src[i]) if (!re[i]) { re[i] = new RegExp(src[i]) + + // Replace all greedy whitespace to prevent regex dos issues. These regex are + // used internally via the safeRe object since all inputs in this library get + // normalized first to trim and collapse all extra whitespace. The original + // regexes are exported for userland consumption and lower level usage. A + // future breaking change could export the safer regex only with a note that + // all input should have extra whitespace removed. + safeRe[i] = new RegExp(makeSafeRe(src[i])) } } @@ -9118,7 +10914,7 @@ function parse (version, options) { return null } - var r = options.loose ? re[t.LOOSE] : re[t.FULL] + var r = options.loose ? safeRe[t.LOOSE] : safeRe[t.FULL] if (!r.test(version)) { return null } @@ -9173,7 +10969,7 @@ function SemVer (version, options) { this.options = options this.loose = !!options.loose - var m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL]) + var m = version.trim().match(options.loose ? safeRe[t.LOOSE] : safeRe[t.FULL]) if (!m) { throw new TypeError('Invalid Version: ' + version) @@ -9618,6 +11414,7 @@ function Comparator (comp, options) { return new Comparator(comp, options) } + comp = comp.trim().split(/\s+/).join(' ') debug('comparator', comp, options) this.options = options this.loose = !!options.loose @@ -9634,7 +11431,7 @@ function Comparator (comp, options) { var ANY = {} Comparator.prototype.parse = function (comp) { - var r = this.options.loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR] + var r = this.options.loose ? safeRe[t.COMPARATORLOOSE] : safeRe[t.COMPARATOR] var m = comp.match(r) if (!m) { @@ -9758,9 +11555,16 @@ function Range (range, options) { this.loose = !!options.loose this.includePrerelease = !!options.includePrerelease - // First, split based on boolean or || + // First reduce all whitespace as much as possible so we do not have to rely + // on potentially slow regexes like \s*. This is then stored and used for + // future error messages as well. this.raw = range - this.set = range.split(/\s*\|\|\s*/).map(function (range) { + .trim() + .split(/\s+/) + .join(' ') + + // First, split based on boolean or || + this.set = this.raw.split('||').map(function (range) { return this.parseRange(range.trim()) }, this).filter(function (c) { // throw out any that are not relevant for whatever reason @@ -9768,7 +11572,7 @@ function Range (range, options) { }) if (!this.set.length) { - throw new TypeError('Invalid SemVer Range: ' + range) + throw new TypeError('Invalid SemVer Range: ' + this.raw) } this.format() @@ -9787,20 +11591,19 @@ Range.prototype.toString = function () { Range.prototype.parseRange = function (range) { var loose = this.options.loose - range = range.trim() // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4` - var hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE] + var hr = loose ? safeRe[t.HYPHENRANGELOOSE] : safeRe[t.HYPHENRANGE] range = range.replace(hr, hyphenReplace) debug('hyphen replace', range) // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5` - range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace) - debug('comparator trim', range, re[t.COMPARATORTRIM]) + range = range.replace(safeRe[t.COMPARATORTRIM], comparatorTrimReplace) + debug('comparator trim', range, safeRe[t.COMPARATORTRIM]) // `~ 1.2.3` => `~1.2.3` - range = range.replace(re[t.TILDETRIM], tildeTrimReplace) + range = range.replace(safeRe[t.TILDETRIM], tildeTrimReplace) // `^ 1.2.3` => `^1.2.3` - range = range.replace(re[t.CARETTRIM], caretTrimReplace) + range = range.replace(safeRe[t.CARETTRIM], caretTrimReplace) // normalize spaces range = range.split(/\s+/).join(' ') @@ -9808,7 +11611,7 @@ Range.prototype.parseRange = function (range) { // At this point, the range is completely trimmed and // ready to be split into comparators. - var compRe = loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR] + var compRe = loose ? safeRe[t.COMPARATORLOOSE] : safeRe[t.COMPARATOR] var set = range.split(' ').map(function (comp) { return parseComparator(comp, this.options) }, this).join(' ').split(/\s+/) @@ -9908,7 +11711,7 @@ function replaceTildes (comp, options) { } function replaceTilde (comp, options) { - var r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE] + var r = options.loose ? safeRe[t.TILDELOOSE] : safeRe[t.TILDE] return comp.replace(r, function (_, M, m, p, pr) { debug('tilde', comp, _, M, m, p, pr) var ret @@ -9949,7 +11752,7 @@ function replaceCarets (comp, options) { function replaceCaret (comp, options) { debug('caret', comp, options) - var r = options.loose ? re[t.CARETLOOSE] : re[t.CARET] + var r = options.loose ? safeRe[t.CARETLOOSE] : safeRe[t.CARET] return comp.replace(r, function (_, M, m, p, pr) { debug('caret', comp, _, M, m, p, pr) var ret @@ -10008,7 +11811,7 @@ function replaceXRanges (comp, options) { function replaceXRange (comp, options) { comp = comp.trim() - var r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE] + var r = options.loose ? safeRe[t.XRANGELOOSE] : safeRe[t.XRANGE] return comp.replace(r, function (ret, gtlt, M, m, p, pr) { debug('xRange', comp, ret, gtlt, M, m, p, pr) var xM = isX(M) @@ -10083,7 +11886,7 @@ function replaceXRange (comp, options) { function replaceStars (comp, options) { debug('replaceStars', comp, options) // Looseness is ignored here. star is always as loose as it gets! - return comp.trim().replace(re[t.STAR], '') + return comp.trim().replace(safeRe[t.STAR], '') } // This function is passed to string.replace(re[t.HYPHENRANGE]) @@ -10409,7 +12212,7 @@ function coerce (version, options) { var match = null if (!options.rtl) { - match = version.match(re[t.COERCE]) + match = version.match(safeRe[t.COERCE]) } else { // Find the right-most coercible string that does not share // a terminus with a more left-ward coercible string. @@ -10420,17 +12223,17 @@ function coerce (version, options) { // Stop when we get a match that ends at the string end, since no // coercible string can be more right-ward without the same terminus. var next - while ((next = re[t.COERCERTL].exec(version)) && + while ((next = safeRe[t.COERCERTL].exec(version)) && (!match || match.index + match[0].length !== version.length) ) { if (!match || next.index + next[0].length !== match.index + match[0].length) { match = next } - re[t.COERCERTL].lastIndex = next.index + next[1].length + next[2].length + safeRe[t.COERCERTL].lastIndex = next.index + next[1].length + next[2].length } // leave it in a clean state - re[t.COERCERTL].lastIndex = -1 + safeRe[t.COERCERTL].lastIndex = -1 } if (match === null) { @@ -10445,20 +12248,19 @@ function coerce (version, options) { /***/ }), -/***/ 2557: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +/***/ 52557: +/***/ ((__unused_webpack_module, exports) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); -var tslib = __nccwpck_require__(9268); - // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -var listenersMap = new WeakMap(); -var abortedMap = new WeakMap(); +/// +const listenersMap = new WeakMap(); +const abortedMap = new WeakMap(); /** * An aborter instance implements AbortSignal interface, can abort HTTP requests. * @@ -10472,8 +12274,8 @@ var abortedMap = new WeakMap(); * await doAsyncWork(AbortSignal.none); * ``` */ -var AbortSignal = /** @class */ (function () { - function AbortSignal() { +class AbortSignal { + constructor() { /** * onabort event listener. */ @@ -10481,74 +12283,65 @@ var AbortSignal = /** @class */ (function () { listenersMap.set(this, []); abortedMap.set(this, false); } - Object.defineProperty(AbortSignal.prototype, "aborted", { - /** - * Status of whether aborted or not. - * - * @readonly - */ - get: function () { - if (!abortedMap.has(this)) { - throw new TypeError("Expected `this` to be an instance of AbortSignal."); - } - return abortedMap.get(this); - }, - enumerable: false, - configurable: true - }); - Object.defineProperty(AbortSignal, "none", { - /** - * Creates a new AbortSignal instance that will never be aborted. - * - * @readonly - */ - get: function () { - return new AbortSignal(); - }, - enumerable: false, - configurable: true - }); + /** + * Status of whether aborted or not. + * + * @readonly + */ + get aborted() { + if (!abortedMap.has(this)) { + throw new TypeError("Expected `this` to be an instance of AbortSignal."); + } + return abortedMap.get(this); + } + /** + * Creates a new AbortSignal instance that will never be aborted. + * + * @readonly + */ + static get none() { + return new AbortSignal(); + } /** * Added new "abort" event listener, only support "abort" event. * * @param _type - Only support "abort" event * @param listener - The listener to be added */ - AbortSignal.prototype.addEventListener = function ( + addEventListener( // tslint:disable-next-line:variable-name _type, listener) { if (!listenersMap.has(this)) { throw new TypeError("Expected `this` to be an instance of AbortSignal."); } - var listeners = listenersMap.get(this); + const listeners = listenersMap.get(this); listeners.push(listener); - }; + } /** * Remove "abort" event listener, only support "abort" event. * * @param _type - Only support "abort" event * @param listener - The listener to be removed */ - AbortSignal.prototype.removeEventListener = function ( + removeEventListener( // tslint:disable-next-line:variable-name _type, listener) { if (!listenersMap.has(this)) { throw new TypeError("Expected `this` to be an instance of AbortSignal."); } - var listeners = listenersMap.get(this); - var index = listeners.indexOf(listener); + const listeners = listenersMap.get(this); + const index = listeners.indexOf(listener); if (index > -1) { listeners.splice(index, 1); } - }; + } /** * Dispatches a synthetic event to the AbortSignal. */ - AbortSignal.prototype.dispatchEvent = function (_event) { + dispatchEvent(_event) { throw new Error("This is a stub dispatchEvent implementation that should not be used. It only exists for type-checking purposes."); - }; - return AbortSignal; -}()); + } +} /** * Helper to trigger an abort event immediately, the onabort and all abort event listeners will be triggered. * Will try to trigger abort event for all linked AbortSignal nodes. @@ -10566,12 +12359,12 @@ function abortSignal(signal) { if (signal.onabort) { signal.onabort.call(signal); } - var listeners = listenersMap.get(signal); + const listeners = listenersMap.get(signal); if (listeners) { // Create a copy of listeners so mutations to the array // (e.g. via removeListener calls) don't affect the listeners // we invoke. - listeners.slice().forEach(function (listener) { + listeners.slice().forEach((listener) => { listener.call(signal, { type: "abort" }); }); } @@ -10597,15 +12390,12 @@ function abortSignal(signal) { * } * ``` */ -var AbortError = /** @class */ (function (_super) { - tslib.__extends(AbortError, _super); - function AbortError(message) { - var _this = _super.call(this, message) || this; - _this.name = "AbortError"; - return _this; +class AbortError extends Error { + constructor(message) { + super(message); + this.name = "AbortError"; } - return AbortError; -}(Error)); +} /** * An AbortController provides an AbortSignal and the associated controls to signal * that an asynchronous operation should be aborted. @@ -10640,10 +12430,9 @@ var AbortError = /** @class */ (function (_super) { * await doAsyncWork(aborter.withTimeout(25 * 1000)); * ``` */ -var AbortController = /** @class */ (function () { +class AbortController { // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types - function AbortController(parentSignals) { - var _this = this; + constructor(parentSignals) { this._signal = new AbortSignal(); if (!parentSignals) { return; @@ -10653,8 +12442,7 @@ var AbortController = /** @class */ (function () { // eslint-disable-next-line prefer-rest-params parentSignals = arguments; } - for (var _i = 0, parentSignals_1 = parentSignals; _i < parentSignals_1.length; _i++) { - var parentSignal = parentSignals_1[_i]; + for (const parentSignal of parentSignals) { // if the parent signal has already had abort() called, // then call abort on this signal as well. if (parentSignal.aborted) { @@ -10662,47 +12450,42 @@ var AbortController = /** @class */ (function () { } else { // when the parent signal aborts, this signal should as well. - parentSignal.addEventListener("abort", function () { - _this.abort(); + parentSignal.addEventListener("abort", () => { + this.abort(); }); } } } - Object.defineProperty(AbortController.prototype, "signal", { - /** - * The AbortSignal associated with this controller that will signal aborted - * when the abort method is called on this controller. - * - * @readonly - */ - get: function () { - return this._signal; - }, - enumerable: false, - configurable: true - }); + /** + * The AbortSignal associated with this controller that will signal aborted + * when the abort method is called on this controller. + * + * @readonly + */ + get signal() { + return this._signal; + } /** * Signal that any operations passed this controller's associated abort signal * to cancel any remaining work and throw an `AbortError`. */ - AbortController.prototype.abort = function () { + abort() { abortSignal(this._signal); - }; + } /** * Creates a new AbortSignal instance that will abort after the provided ms. * @param ms - Elapsed time in milliseconds to trigger an abort. */ - AbortController.timeout = function (ms) { - var signal = new AbortSignal(); - var timer = setTimeout(abortSignal, ms, signal); + static timeout(ms) { + const signal = new AbortSignal(); + const timer = setTimeout(abortSignal, ms, signal); // Prevent the active Timer from keeping the Node.js event loop active. if (typeof timer.unref === "function") { timer.unref(); } return signal; - }; - return AbortController; -}()); + } +} exports.AbortController = AbortController; exports.AbortError = AbortError; @@ -10712,56114 +12495,81005 @@ exports.AbortSignal = AbortSignal; /***/ }), -/***/ 9268: -/***/ ((module) => { - -/*! ***************************************************************************** -Copyright (c) Microsoft Corporation. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. -***************************************************************************** */ -/* global global, define, System, Reflect, Promise */ -var __extends; -var __assign; -var __rest; -var __decorate; -var __param; -var __metadata; -var __awaiter; -var __generator; -var __exportStar; -var __values; -var __read; -var __spread; -var __spreadArrays; -var __spreadArray; -var __await; -var __asyncGenerator; -var __asyncDelegator; -var __asyncValues; -var __makeTemplateObject; -var __importStar; -var __importDefault; -var __classPrivateFieldGet; -var __classPrivateFieldSet; -var __createBinding; -(function (factory) { - var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {}; - if (typeof define === "function" && define.amd) { - define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); }); - } - else if ( true && typeof module.exports === "object") { - factory(createExporter(root, createExporter(module.exports))); - } - else { - factory(createExporter(root)); - } - function createExporter(exports, previous) { - if (exports !== root) { - if (typeof Object.create === "function") { - Object.defineProperty(exports, "__esModule", { value: true }); - } - else { - exports.__esModule = true; - } - } - return function (id, v) { return exports[id] = previous ? previous(id, v) : v; }; - } -}) -(function (exporter) { - var extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - - __extends = function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); - }; - - __assign = Object.assign || function (t) { - for (var s, i = 1, n = arguments.length; i < n; i++) { - s = arguments[i]; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; - } - return t; - }; - - __rest = function (s, e) { - var t = {}; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) - t[p] = s[p]; - if (s != null && typeof Object.getOwnPropertySymbols === "function") - for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { - if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) - t[p[i]] = s[p[i]]; - } - return t; - }; - - __decorate = function (decorators, target, key, desc) { - var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; - if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); - else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; - return c > 3 && r && Object.defineProperty(target, key, r), r; - }; - - __param = function (paramIndex, decorator) { - return function (target, key) { decorator(target, key, paramIndex); } - }; - - __metadata = function (metadataKey, metadataValue) { - if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue); - }; - - __awaiter = function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); - }; - - __generator = function (thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; - } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; - } - }; - - __exportStar = function(m, o) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p); - }; - - __createBinding = Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); - }) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; - }); - - __values = function (o) { - var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; - if (m) return m.call(o); - if (o && typeof o.length === "number") return { - next: function () { - if (o && i >= o.length) o = void 0; - return { value: o && o[i++], done: !o }; - } - }; - throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); - }; - - __read = function (o, n) { - var m = typeof Symbol === "function" && o[Symbol.iterator]; - if (!m) return o; - var i = m.call(o), r, ar = [], e; - try { - while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); - } - catch (error) { e = { error: error }; } - finally { - try { - if (r && !r.done && (m = i["return"])) m.call(i); - } - finally { if (e) throw e.error; } - } - return ar; - }; - - /** @deprecated */ - __spread = function () { - for (var ar = [], i = 0; i < arguments.length; i++) - ar = ar.concat(__read(arguments[i])); - return ar; - }; - - /** @deprecated */ - __spreadArrays = function () { - for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; - for (var r = Array(s), k = 0, i = 0; i < il; i++) - for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) - r[k] = a[j]; - return r; - }; - - __spreadArray = function (to, from, pack) { - if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { - if (ar || !(i in from)) { - if (!ar) ar = Array.prototype.slice.call(from, 0, i); - ar[i] = from[i]; - } - } - return to.concat(ar || Array.prototype.slice.call(from)); - }; - - __await = function (v) { - return this instanceof __await ? (this.v = v, this) : new __await(v); - }; - - __asyncGenerator = function (thisArg, _arguments, generator) { - if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); - var g = generator.apply(thisArg, _arguments || []), i, q = []; - return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i; - function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } - function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } - function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } - function fulfill(value) { resume("next", value); } - function reject(value) { resume("throw", value); } - function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } - }; - - __asyncDelegator = function (o) { - var i, p; - return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i; - function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; } - }; - - __asyncValues = function (o) { - if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); - var m = o[Symbol.asyncIterator], i; - return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i); - function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } - function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } - }; - - __makeTemplateObject = function (cooked, raw) { - if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; } - return cooked; - }; - - var __setModuleDefault = Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); - }) : function(o, v) { - o["default"] = v; - }; - - __importStar = function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; - }; - - __importDefault = function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; - }; - - __classPrivateFieldGet = function (receiver, state, kind, f) { - if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); - if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); - return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); - }; - - __classPrivateFieldSet = function (receiver, state, value, kind, f) { - if (kind === "m") throw new TypeError("Private method is not writable"); - if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); - if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); - return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value; - }; - - exporter("__extends", __extends); - exporter("__assign", __assign); - exporter("__rest", __rest); - exporter("__decorate", __decorate); - exporter("__param", __param); - exporter("__metadata", __metadata); - exporter("__awaiter", __awaiter); - exporter("__generator", __generator); - exporter("__exportStar", __exportStar); - exporter("__createBinding", __createBinding); - exporter("__values", __values); - exporter("__read", __read); - exporter("__spread", __spread); - exporter("__spreadArrays", __spreadArrays); - exporter("__spreadArray", __spreadArray); - exporter("__await", __await); - exporter("__asyncGenerator", __asyncGenerator); - exporter("__asyncDelegator", __asyncDelegator); - exporter("__asyncValues", __asyncValues); - exporter("__makeTemplateObject", __makeTemplateObject); - exporter("__importStar", __importStar); - exporter("__importDefault", __importDefault); - exporter("__classPrivateFieldGet", __classPrivateFieldGet); - exporter("__classPrivateFieldSet", __classPrivateFieldSet); -}); - - -/***/ }), - -/***/ 2356: -/***/ (() => { +/***/ 29912: +/***/ (function(__unused_webpack_module, exports) { "use strict"; -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -if (typeof Symbol === undefined || !Symbol.asyncIterator) { - Symbol.asyncIterator = Symbol.for("Symbol.asyncIterator"); +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.ClientStreamingCall = void 0; +/** + * A client streaming RPC call. This means that the clients sends 0, 1, or + * more messages to the server, and the server replies with exactly one + * message. + */ +class ClientStreamingCall { + constructor(method, requestHeaders, request, headers, response, status, trailers) { + this.method = method; + this.requestHeaders = requestHeaders; + this.requests = request; + this.headers = headers; + this.response = response; + this.status = status; + this.trailers = trailers; + } + /** + * Instead of awaiting the response status and trailers, you can + * just as well await this call itself to receive the server outcome. + * Note that it may still be valid to send more request messages. + */ + then(onfulfilled, onrejected) { + return this.promiseFinished().then(value => onfulfilled ? Promise.resolve(onfulfilled(value)) : value, reason => onrejected ? Promise.resolve(onrejected(reason)) : Promise.reject(reason)); + } + promiseFinished() { + return __awaiter(this, void 0, void 0, function* () { + let [headers, response, status, trailers] = yield Promise.all([this.headers, this.response, this.status, this.trailers]); + return { + method: this.method, + requestHeaders: this.requestHeaders, + headers, + response, + status, + trailers + }; + }); + } } -//# sourceMappingURL=index.js.map +exports.ClientStreamingCall = ClientStreamingCall; + /***/ }), -/***/ 9645: +/***/ 85702: /***/ ((__unused_webpack_module, exports) => { "use strict"; - Object.defineProperty(exports, "__esModule", ({ value: true })); - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. +exports.Deferred = exports.DeferredState = void 0; +var DeferredState; +(function (DeferredState) { + DeferredState[DeferredState["PENDING"] = 0] = "PENDING"; + DeferredState[DeferredState["REJECTED"] = 1] = "REJECTED"; + DeferredState[DeferredState["RESOLVED"] = 2] = "RESOLVED"; +})(DeferredState = exports.DeferredState || (exports.DeferredState = {})); /** - * A static-key-based credential that supports updating - * the underlying key value. + * A deferred promise. This is a "controller" for a promise, which lets you + * pass a promise around and reject or resolve it from the outside. + * + * Warning: This class is to be used with care. Using it can make code very + * difficult to read. It is intended for use in library code that exposes + * promises, not for regular business logic. */ -class AzureKeyCredential { +class Deferred { + /** + * @param preventUnhandledRejectionWarning - prevents the warning + * "Unhandled Promise rejection" by adding a noop rejection handler. + * Working with calls returned from the runtime-rpc package in an + * async function usually means awaiting one call property after + * the other. This means that the "status" is not being awaited when + * an earlier await for the "headers" is rejected. This causes the + * "unhandled promise reject" warning. A more correct behaviour for + * calls might be to become aware whether at least one of the + * promises is handled and swallow the rejection warning for the + * others. + */ + constructor(preventUnhandledRejectionWarning = true) { + this._state = DeferredState.PENDING; + this._promise = new Promise((resolve, reject) => { + this._resolve = resolve; + this._reject = reject; + }); + if (preventUnhandledRejectionWarning) { + this._promise.catch(_ => { }); + } + } /** - * Create an instance of an AzureKeyCredential for use - * with a service client. - * - * @param key - The initial value of the key to use in authentication + * Get the current state of the promise. */ - constructor(key) { - if (!key) { - throw new Error("key must be a non-empty string"); - } - this._key = key; + get state() { + return this._state; } /** - * The value of the key to be used in authentication + * Get the deferred promise. */ - get key() { - return this._key; + get promise() { + return this._promise; } /** - * Change the value of the key. - * - * Updates will take effect upon the next request after - * updating the key value. - * - * @param newKey - The new key value to be used + * Resolve the promise. Throws if the promise is already resolved or rejected. */ - update(newKey) { - this._key = newKey; + resolve(value) { + if (this.state !== DeferredState.PENDING) + throw new Error(`cannot resolve ${DeferredState[this.state].toLowerCase()}`); + this._resolve(value); + this._state = DeferredState.RESOLVED; + } + /** + * Reject the promise. Throws if the promise is already resolved or rejected. + */ + reject(reason) { + if (this.state !== DeferredState.PENDING) + throw new Error(`cannot reject ${DeferredState[this.state].toLowerCase()}`); + this._reject(reason); + this._state = DeferredState.REJECTED; + } + /** + * Resolve the promise. Ignore if not pending. + */ + resolvePending(val) { + if (this._state === DeferredState.PENDING) + this.resolve(val); + } + /** + * Reject the promise. Ignore if not pending. + */ + rejectPending(reason) { + if (this._state === DeferredState.PENDING) + this.reject(reason); } } +exports.Deferred = Deferred; -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. + +/***/ }), + +/***/ 17042: +/***/ (function(__unused_webpack_module, exports) { + +"use strict"; + +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.DuplexStreamingCall = void 0; /** - * Helper TypeGuard that checks if something is defined or not. - * @param thing - Anything - * @internal + * A duplex streaming RPC call. This means that the clients sends an + * arbitrary amount of messages to the server, while at the same time, + * the server sends an arbitrary amount of messages to the client. */ -function isDefined(thing) { - return typeof thing !== "undefined" && thing !== null; +class DuplexStreamingCall { + constructor(method, requestHeaders, request, headers, response, status, trailers) { + this.method = method; + this.requestHeaders = requestHeaders; + this.requests = request; + this.headers = headers; + this.responses = response; + this.status = status; + this.trailers = trailers; + } + /** + * Instead of awaiting the response status and trailers, you can + * just as well await this call itself to receive the server outcome. + * Note that it may still be valid to send more request messages. + */ + then(onfulfilled, onrejected) { + return this.promiseFinished().then(value => onfulfilled ? Promise.resolve(onfulfilled(value)) : value, reason => onrejected ? Promise.resolve(onrejected(reason)) : Promise.reject(reason)); + } + promiseFinished() { + return __awaiter(this, void 0, void 0, function* () { + let [headers, status, trailers] = yield Promise.all([this.headers, this.status, this.trailers]); + return { + method: this.method, + requestHeaders: this.requestHeaders, + headers, + status, + trailers, + }; + }); + } } +exports.DuplexStreamingCall = DuplexStreamingCall; + + +/***/ }), + +/***/ 60012: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Public API of the rpc runtime. +// Note: we do not use `export * from ...` to help tree shakers, +// webpack verbose output hints that this should be useful +Object.defineProperty(exports, "__esModule", ({ value: true })); +var service_type_1 = __nccwpck_require__(14107); +Object.defineProperty(exports, "ServiceType", ({ enumerable: true, get: function () { return service_type_1.ServiceType; } })); +var reflection_info_1 = __nccwpck_require__(44331); +Object.defineProperty(exports, "readMethodOptions", ({ enumerable: true, get: function () { return reflection_info_1.readMethodOptions; } })); +Object.defineProperty(exports, "readMethodOption", ({ enumerable: true, get: function () { return reflection_info_1.readMethodOption; } })); +Object.defineProperty(exports, "readServiceOption", ({ enumerable: true, get: function () { return reflection_info_1.readServiceOption; } })); +var rpc_error_1 = __nccwpck_require__(63159); +Object.defineProperty(exports, "RpcError", ({ enumerable: true, get: function () { return rpc_error_1.RpcError; } })); +var rpc_options_1 = __nccwpck_require__(67386); +Object.defineProperty(exports, "mergeRpcOptions", ({ enumerable: true, get: function () { return rpc_options_1.mergeRpcOptions; } })); +var rpc_output_stream_1 = __nccwpck_require__(76637); +Object.defineProperty(exports, "RpcOutputStreamController", ({ enumerable: true, get: function () { return rpc_output_stream_1.RpcOutputStreamController; } })); +var test_transport_1 = __nccwpck_require__(87008); +Object.defineProperty(exports, "TestTransport", ({ enumerable: true, get: function () { return test_transport_1.TestTransport; } })); +var deferred_1 = __nccwpck_require__(85702); +Object.defineProperty(exports, "Deferred", ({ enumerable: true, get: function () { return deferred_1.Deferred; } })); +Object.defineProperty(exports, "DeferredState", ({ enumerable: true, get: function () { return deferred_1.DeferredState; } })); +var duplex_streaming_call_1 = __nccwpck_require__(17042); +Object.defineProperty(exports, "DuplexStreamingCall", ({ enumerable: true, get: function () { return duplex_streaming_call_1.DuplexStreamingCall; } })); +var client_streaming_call_1 = __nccwpck_require__(29912); +Object.defineProperty(exports, "ClientStreamingCall", ({ enumerable: true, get: function () { return client_streaming_call_1.ClientStreamingCall; } })); +var server_streaming_call_1 = __nccwpck_require__(30066); +Object.defineProperty(exports, "ServerStreamingCall", ({ enumerable: true, get: function () { return server_streaming_call_1.ServerStreamingCall; } })); +var unary_call_1 = __nccwpck_require__(84175); +Object.defineProperty(exports, "UnaryCall", ({ enumerable: true, get: function () { return unary_call_1.UnaryCall; } })); +var rpc_interceptor_1 = __nccwpck_require__(51680); +Object.defineProperty(exports, "stackIntercept", ({ enumerable: true, get: function () { return rpc_interceptor_1.stackIntercept; } })); +Object.defineProperty(exports, "stackDuplexStreamingInterceptors", ({ enumerable: true, get: function () { return rpc_interceptor_1.stackDuplexStreamingInterceptors; } })); +Object.defineProperty(exports, "stackClientStreamingInterceptors", ({ enumerable: true, get: function () { return rpc_interceptor_1.stackClientStreamingInterceptors; } })); +Object.defineProperty(exports, "stackServerStreamingInterceptors", ({ enumerable: true, get: function () { return rpc_interceptor_1.stackServerStreamingInterceptors; } })); +Object.defineProperty(exports, "stackUnaryInterceptors", ({ enumerable: true, get: function () { return rpc_interceptor_1.stackUnaryInterceptors; } })); +var server_call_context_1 = __nccwpck_require__(25320); +Object.defineProperty(exports, "ServerCallContextController", ({ enumerable: true, get: function () { return server_call_context_1.ServerCallContextController; } })); + + +/***/ }), + +/***/ 44331: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.readServiceOption = exports.readMethodOption = exports.readMethodOptions = exports.normalizeMethodInfo = void 0; +const runtime_1 = __nccwpck_require__(4061); /** - * Helper TypeGuard that checks if the input is an object with the specified properties. - * Note: The properties may be inherited. - * @param thing - Anything. - * @param properties - The name of the properties that should appear in the object. - * @internal + * Turns PartialMethodInfo into MethodInfo. */ -function isObjectWithProperties(thing, properties) { - if (!isDefined(thing) || typeof thing !== "object") { - return false; +function normalizeMethodInfo(method, service) { + var _a, _b, _c; + let m = method; + m.service = service; + m.localName = (_a = m.localName) !== null && _a !== void 0 ? _a : runtime_1.lowerCamelCase(m.name); + // noinspection PointlessBooleanExpressionJS + m.serverStreaming = !!m.serverStreaming; + // noinspection PointlessBooleanExpressionJS + m.clientStreaming = !!m.clientStreaming; + m.options = (_b = m.options) !== null && _b !== void 0 ? _b : {}; + m.idempotency = (_c = m.idempotency) !== null && _c !== void 0 ? _c : undefined; + return m; +} +exports.normalizeMethodInfo = normalizeMethodInfo; +/** + * Read custom method options from a generated service client. + * + * @deprecated use readMethodOption() + */ +function readMethodOptions(service, methodName, extensionName, extensionType) { + var _a; + const options = (_a = service.methods.find((m, i) => m.localName === methodName || i === methodName)) === null || _a === void 0 ? void 0 : _a.options; + return options && options[extensionName] ? extensionType.fromJson(options[extensionName]) : undefined; +} +exports.readMethodOptions = readMethodOptions; +function readMethodOption(service, methodName, extensionName, extensionType) { + var _a; + const options = (_a = service.methods.find((m, i) => m.localName === methodName || i === methodName)) === null || _a === void 0 ? void 0 : _a.options; + if (!options) { + return undefined; } - for (const property of properties) { - if (!objectHasProperty(thing, property)) { - return false; - } + const optionVal = options[extensionName]; + if (optionVal === undefined) { + return optionVal; } - return true; + return extensionType ? extensionType.fromJson(optionVal) : optionVal; +} +exports.readMethodOption = readMethodOption; +function readServiceOption(service, extensionName, extensionType) { + const options = service.options; + if (!options) { + return undefined; + } + const optionVal = options[extensionName]; + if (optionVal === undefined) { + return optionVal; + } + return extensionType ? extensionType.fromJson(optionVal) : optionVal; } +exports.readServiceOption = readServiceOption; + + +/***/ }), + +/***/ 63159: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.RpcError = void 0; /** - * Helper TypeGuard that checks if the input is an object with the specified property. - * Note: The property may be inherited. - * @param thing - Any object. - * @param property - The name of the property that should appear in the object. - * @internal + * An error that occurred while calling a RPC method. */ -function objectHasProperty(thing, property) { - return typeof thing === "object" && property in thing; +class RpcError extends Error { + constructor(message, code = 'UNKNOWN', meta) { + super(message); + this.name = 'RpcError'; + // see https://www.typescriptlang.org/docs/handbook/release-notes/typescript-2-2.html#example + Object.setPrototypeOf(this, new.target.prototype); + this.code = code; + this.meta = meta !== null && meta !== void 0 ? meta : {}; + } + toString() { + const l = [this.name + ': ' + this.message]; + if (this.code) { + l.push(''); + l.push('Code: ' + this.code); + } + if (this.serviceName && this.methodName) { + l.push('Method: ' + this.serviceName + '/' + this.methodName); + } + let m = Object.entries(this.meta); + if (m.length) { + l.push(''); + l.push('Meta:'); + for (let [k, v] of m) { + l.push(` ${k}: ${v}`); + } + } + return l.join('\n'); + } } +exports.RpcError = RpcError; -// Copyright (c) Microsoft Corporation. + +/***/ }), + +/***/ 51680: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.stackDuplexStreamingInterceptors = exports.stackClientStreamingInterceptors = exports.stackServerStreamingInterceptors = exports.stackUnaryInterceptors = exports.stackIntercept = void 0; +const runtime_1 = __nccwpck_require__(4061); /** - * A static name/key-based credential that supports updating - * the underlying name and key values. + * Creates a "stack" of of all interceptors specified in the given `RpcOptions`. + * Used by generated client implementations. + * @internal */ -class AzureNamedKeyCredential { - /** - * Create an instance of an AzureNamedKeyCredential for use - * with a service client. - * - * @param name - The initial value of the name to use in authentication. - * @param key - The initial value of the key to use in authentication. - */ - constructor(name, key) { - if (!name || !key) { - throw new TypeError("name and key must be non-empty strings"); +function stackIntercept(kind, transport, method, options, input) { + var _a, _b, _c, _d; + if (kind == "unary") { + let tail = (mtd, inp, opt) => transport.unary(mtd, inp, opt); + for (const curr of ((_a = options.interceptors) !== null && _a !== void 0 ? _a : []).filter(i => i.interceptUnary).reverse()) { + const next = tail; + tail = (mtd, inp, opt) => curr.interceptUnary(next, mtd, inp, opt); } - this._name = name; - this._key = key; + return tail(method, input, options); } - /** - * The value of the key to be used in authentication. - */ - get key() { - return this._key; + if (kind == "serverStreaming") { + let tail = (mtd, inp, opt) => transport.serverStreaming(mtd, inp, opt); + for (const curr of ((_b = options.interceptors) !== null && _b !== void 0 ? _b : []).filter(i => i.interceptServerStreaming).reverse()) { + const next = tail; + tail = (mtd, inp, opt) => curr.interceptServerStreaming(next, mtd, inp, opt); + } + return tail(method, input, options); } - /** - * The value of the name to be used in authentication. - */ - get name() { - return this._name; + if (kind == "clientStreaming") { + let tail = (mtd, opt) => transport.clientStreaming(mtd, opt); + for (const curr of ((_c = options.interceptors) !== null && _c !== void 0 ? _c : []).filter(i => i.interceptClientStreaming).reverse()) { + const next = tail; + tail = (mtd, opt) => curr.interceptClientStreaming(next, mtd, opt); + } + return tail(method, options); } - /** - * Change the value of the key. - * - * Updates will take effect upon the next request after - * updating the key value. - * - * @param newName - The new name value to be used. - * @param newKey - The new key value to be used. - */ - update(newName, newKey) { - if (!newName || !newKey) { - throw new TypeError("newName and newKey must be non-empty strings"); + if (kind == "duplex") { + let tail = (mtd, opt) => transport.duplex(mtd, opt); + for (const curr of ((_d = options.interceptors) !== null && _d !== void 0 ? _d : []).filter(i => i.interceptDuplex).reverse()) { + const next = tail; + tail = (mtd, opt) => curr.interceptDuplex(next, mtd, opt); } - this._name = newName; - this._key = newKey; + return tail(method, options); } + runtime_1.assertNever(kind); } +exports.stackIntercept = stackIntercept; /** - * Tests an object to determine whether it implements NamedKeyCredential. - * - * @param credential - The assumed NamedKeyCredential to be tested. + * @deprecated replaced by `stackIntercept()`, still here to support older generated code */ -function isNamedKeyCredential(credential) { - return (isObjectWithProperties(credential, ["name", "key"]) && - typeof credential.key === "string" && - typeof credential.name === "string"); +function stackUnaryInterceptors(transport, method, input, options) { + return stackIntercept("unary", transport, method, options, input); } - -// Copyright (c) Microsoft Corporation. +exports.stackUnaryInterceptors = stackUnaryInterceptors; /** - * A static-signature-based credential that supports updating - * the underlying signature value. + * @deprecated replaced by `stackIntercept()`, still here to support older generated code */ -class AzureSASCredential { - /** - * Create an instance of an AzureSASCredential for use - * with a service client. - * - * @param signature - The initial value of the shared access signature to use in authentication - */ - constructor(signature) { - if (!signature) { - throw new Error("shared access signature must be a non-empty string"); - } - this._signature = signature; - } - /** - * The value of the shared access signature to be used in authentication - */ - get signature() { - return this._signature; - } - /** - * Change the value of the signature. - * - * Updates will take effect upon the next request after - * updating the signature value. - * - * @param newSignature - The new shared access signature value to be used - */ - update(newSignature) { - if (!newSignature) { - throw new Error("shared access signature must be a non-empty string"); - } - this._signature = newSignature; - } +function stackServerStreamingInterceptors(transport, method, input, options) { + return stackIntercept("serverStreaming", transport, method, options, input); } +exports.stackServerStreamingInterceptors = stackServerStreamingInterceptors; /** - * Tests an object to determine whether it implements SASCredential. - * - * @param credential - The assumed SASCredential to be tested. + * @deprecated replaced by `stackIntercept()`, still here to support older generated code */ -function isSASCredential(credential) { - return (isObjectWithProperties(credential, ["signature"]) && typeof credential.signature === "string"); +function stackClientStreamingInterceptors(transport, method, options) { + return stackIntercept("clientStreaming", transport, method, options); } - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. +exports.stackClientStreamingInterceptors = stackClientStreamingInterceptors; /** - * Tests an object to determine whether it implements TokenCredential. - * - * @param credential - The assumed TokenCredential to be tested. + * @deprecated replaced by `stackIntercept()`, still here to support older generated code */ -function isTokenCredential(credential) { - // Check for an object with a 'getToken' function and possibly with - // a 'signRequest' function. We do this check to make sure that - // a ServiceClientCredentials implementor (like TokenClientCredentials - // in ms-rest-nodeauth) doesn't get mistaken for a TokenCredential if - // it doesn't actually implement TokenCredential also. - const castCredential = credential; - return (castCredential && - typeof castCredential.getToken === "function" && - (castCredential.signRequest === undefined || castCredential.getToken.length > 0)); +function stackDuplexStreamingInterceptors(transport, method, options) { + return stackIntercept("duplex", transport, method, options); } - -exports.AzureKeyCredential = AzureKeyCredential; -exports.AzureNamedKeyCredential = AzureNamedKeyCredential; -exports.AzureSASCredential = AzureSASCredential; -exports.isNamedKeyCredential = isNamedKeyCredential; -exports.isSASCredential = isSASCredential; -exports.isTokenCredential = isTokenCredential; -//# sourceMappingURL=index.js.map +exports.stackDuplexStreamingInterceptors = stackDuplexStreamingInterceptors; /***/ }), -/***/ 4607: +/***/ 67386: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; - Object.defineProperty(exports, "__esModule", ({ value: true })); - -var uuid = __nccwpck_require__(3415); -var util = __nccwpck_require__(3837); -var tslib = __nccwpck_require__(2107); -var xml2js = __nccwpck_require__(6189); -var abortController = __nccwpck_require__(2557); -var logger$1 = __nccwpck_require__(3233); -var coreAuth = __nccwpck_require__(9645); -var os = __nccwpck_require__(2037); -var http = __nccwpck_require__(3685); -var https = __nccwpck_require__(5687); -var tough = __nccwpck_require__(8165); -var tunnel = __nccwpck_require__(4294); -var stream = __nccwpck_require__(2781); -var FormData = __nccwpck_require__(6279); -var node_fetch = __nccwpck_require__(467); -var coreTracing = __nccwpck_require__(4175); -var url = __nccwpck_require__(7310); -__nccwpck_require__(2356); - -function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } - -function _interopNamespace(e) { - if (e && e.__esModule) return e; - var n = Object.create(null); - if (e) { - Object.keys(e).forEach(function (k) { - if (k !== 'default') { - var d = Object.getOwnPropertyDescriptor(e, k); - Object.defineProperty(n, k, d.get ? d : { - enumerable: true, - get: function () { return e[k]; } - }); - } - }); - } - n["default"] = e; - return Object.freeze(n); -} - -var xml2js__namespace = /*#__PURE__*/_interopNamespace(xml2js); -var os__namespace = /*#__PURE__*/_interopNamespace(os); -var http__namespace = /*#__PURE__*/_interopNamespace(http); -var https__namespace = /*#__PURE__*/_interopNamespace(https); -var tough__namespace = /*#__PURE__*/_interopNamespace(tough); -var tunnel__namespace = /*#__PURE__*/_interopNamespace(tunnel); -var FormData__default = /*#__PURE__*/_interopDefaultLegacy(FormData); -var node_fetch__default = /*#__PURE__*/_interopDefaultLegacy(node_fetch); - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. +exports.mergeRpcOptions = void 0; +const runtime_1 = __nccwpck_require__(4061); /** - * A collection of HttpHeaders that can be sent with a HTTP request. + * Merges custom RPC options with defaults. Returns a new instance and keeps + * the "defaults" and the "options" unmodified. + * + * Merges `RpcMetadata` "meta", overwriting values from "defaults" with + * values from "options". Does not append values to existing entries. + * + * Merges "jsonOptions", including "jsonOptions.typeRegistry", by creating + * a new array that contains types from "options.jsonOptions.typeRegistry" + * first, then types from "defaults.jsonOptions.typeRegistry". + * + * Merges "binaryOptions". + * + * Merges "interceptors" by creating a new array that contains interceptors + * from "defaults" first, then interceptors from "options". + * + * Works with objects that extend `RpcOptions`, but only if the added + * properties are of type Date, primitive like string, boolean, or Array + * of primitives. If you have other property types, you have to merge them + * yourself. */ -function getHeaderKey(headerName) { - return headerName.toLowerCase(); -} -function isHttpHeadersLike(object) { - if (object && typeof object === "object") { - const castObject = object; - if (typeof castObject.rawHeaders === "function" && - typeof castObject.clone === "function" && - typeof castObject.get === "function" && - typeof castObject.set === "function" && - typeof castObject.contains === "function" && - typeof castObject.remove === "function" && - typeof castObject.headersArray === "function" && - typeof castObject.headerValues === "function" && - typeof castObject.headerNames === "function" && - typeof castObject.toJson === "function") { - return true; +function mergeRpcOptions(defaults, options) { + if (!options) + return defaults; + let o = {}; + copy(defaults, o); + copy(options, o); + for (let key of Object.keys(options)) { + let val = options[key]; + switch (key) { + case "jsonOptions": + o.jsonOptions = runtime_1.mergeJsonOptions(defaults.jsonOptions, o.jsonOptions); + break; + case "binaryOptions": + o.binaryOptions = runtime_1.mergeBinaryOptions(defaults.binaryOptions, o.binaryOptions); + break; + case "meta": + o.meta = {}; + copy(defaults.meta, o.meta); + copy(options.meta, o.meta); + break; + case "interceptors": + o.interceptors = defaults.interceptors ? defaults.interceptors.concat(val) : val.concat(); + break; } } - return false; + return o; +} +exports.mergeRpcOptions = mergeRpcOptions; +function copy(a, into) { + if (!a) + return; + let c = into; + for (let [k, v] of Object.entries(a)) { + if (v instanceof Date) + c[k] = new Date(v.getTime()); + else if (Array.isArray(v)) + c[k] = v.concat(); + else + c[k] = v; + } } + + +/***/ }), + +/***/ 76637: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.RpcOutputStreamController = void 0; +const deferred_1 = __nccwpck_require__(85702); +const runtime_1 = __nccwpck_require__(4061); /** - * A collection of HTTP header key/value pairs. + * A `RpcOutputStream` that you control. */ -class HttpHeaders { - constructor(rawHeaders) { - this._headersMap = {}; - if (rawHeaders) { - for (const headerName in rawHeaders) { - this.set(headerName, rawHeaders[headerName]); - } - } +class RpcOutputStreamController { + constructor() { + this._lis = { + nxt: [], + msg: [], + err: [], + cmp: [], + }; + this._closed = false; + // --- RpcOutputStream async iterator API + // iterator state. + // is undefined when no iterator has been acquired yet. + this._itState = { q: [] }; + } + // --- RpcOutputStream callback API + onNext(callback) { + return this.addLis(callback, this._lis.nxt); + } + onMessage(callback) { + return this.addLis(callback, this._lis.msg); + } + onError(callback) { + return this.addLis(callback, this._lis.err); + } + onComplete(callback) { + return this.addLis(callback, this._lis.cmp); + } + addLis(callback, list) { + list.push(callback); + return () => { + let i = list.indexOf(callback); + if (i >= 0) + list.splice(i, 1); + }; } + // remove all listeners + clearLis() { + for (let l of Object.values(this._lis)) + l.splice(0, l.length); + } + // --- Controller API /** - * Set a header in this collection with the provided name and value. The name is - * case-insensitive. - * @param headerName - The name of the header to set. This value is case-insensitive. - * @param headerValue - The value of the header to set. + * Is this stream already closed by a completion or error? */ - set(headerName, headerValue) { - this._headersMap[getHeaderKey(headerName)] = { - name: headerName, - value: headerValue.toString(), - }; + get closed() { + return this._closed !== false; } /** - * Get the header value for the provided header name, or undefined if no header exists in this - * collection with the provided name. - * @param headerName - The name of the header. + * Emit message, close with error, or close successfully, but only one + * at a time. + * Can be used to wrap a stream by using the other stream's `onNext`. */ - get(headerName) { - const header = this._headersMap[getHeaderKey(headerName)]; - return !header ? undefined : header.value; + notifyNext(message, error, complete) { + runtime_1.assert((message ? 1 : 0) + (error ? 1 : 0) + (complete ? 1 : 0) <= 1, 'only one emission at a time'); + if (message) + this.notifyMessage(message); + if (error) + this.notifyError(error); + if (complete) + this.notifyComplete(); } /** - * Get whether or not this header collection contains a header entry for the provided header name. + * Emits a new message. Throws if stream is closed. + * + * Triggers onNext and onMessage callbacks. */ - contains(headerName) { - return !!this._headersMap[getHeaderKey(headerName)]; + notifyMessage(message) { + runtime_1.assert(!this.closed, 'stream is closed'); + this.pushIt({ value: message, done: false }); + this._lis.msg.forEach(l => l(message)); + this._lis.nxt.forEach(l => l(message, undefined, false)); } /** - * Remove the header with the provided headerName. Return whether or not the header existed and - * was removed. - * @param headerName - The name of the header to remove. + * Closes the stream with an error. Throws if stream is closed. + * + * Triggers onNext and onError callbacks. */ - remove(headerName) { - const result = this.contains(headerName); - delete this._headersMap[getHeaderKey(headerName)]; - return result; + notifyError(error) { + runtime_1.assert(!this.closed, 'stream is closed'); + this._closed = error; + this.pushIt(error); + this._lis.err.forEach(l => l(error)); + this._lis.nxt.forEach(l => l(undefined, error, false)); + this.clearLis(); } /** - * Get the headers that are contained this collection as an object. + * Closes the stream successfully. Throws if stream is closed. + * + * Triggers onNext and onComplete callbacks. */ - rawHeaders() { - return this.toJson({ preserveCase: true }); + notifyComplete() { + runtime_1.assert(!this.closed, 'stream is closed'); + this._closed = true; + this.pushIt({ value: null, done: true }); + this._lis.cmp.forEach(l => l()); + this._lis.nxt.forEach(l => l(undefined, undefined, true)); + this.clearLis(); } /** - * Get the headers that are contained in this collection as an array. + * Creates an async iterator (that can be used with `for await {...}`) + * to consume the stream. + * + * Some things to note: + * - If an error occurs, the `for await` will throw it. + * - If an error occurred before the `for await` was started, `for await` + * will re-throw it. + * - If the stream is already complete, the `for await` will be empty. + * - If your `for await` consumes slower than the stream produces, + * for example because you are relaying messages in a slow operation, + * messages are queued. + */ + [Symbol.asyncIterator]() { + // if we are closed, we are definitely not receiving any more messages. + // but we can't let the iterator get stuck. we want to either: + // a) finish the new iterator immediately, because we are completed + // b) reject the new iterator, because we errored + if (this._closed === true) + this.pushIt({ value: null, done: true }); + else if (this._closed !== false) + this.pushIt(this._closed); + // the async iterator + return { + next: () => { + let state = this._itState; + runtime_1.assert(state, "bad state"); // if we don't have a state here, code is broken + // there should be no pending result. + // did the consumer call next() before we resolved our previous result promise? + runtime_1.assert(!state.p, "iterator contract broken"); + // did we produce faster than the iterator consumed? + // return the oldest result from the queue. + let first = state.q.shift(); + if (first) + return ("value" in first) ? Promise.resolve(first) : Promise.reject(first); + // we have no result ATM, but we promise one. + // as soon as we have a result, we must resolve promise. + state.p = new deferred_1.Deferred(); + return state.p.promise; + }, + }; + } + // "push" a new iterator result. + // this either resolves a pending promise, or enqueues the result. + pushIt(result) { + let state = this._itState; + // is the consumer waiting for us? + if (state.p) { + // yes, consumer is waiting for this promise. + const p = state.p; + runtime_1.assert(p.state == deferred_1.DeferredState.PENDING, "iterator contract broken"); + // resolve the promise + ("value" in result) ? p.resolve(result) : p.reject(result); + // must cleanup, otherwise iterator.next() would pick it up again. + delete state.p; + } + else { + // we are producing faster than the iterator consumes. + // push result onto queue. + state.q.push(result); + } + } +} +exports.RpcOutputStreamController = RpcOutputStreamController; + + +/***/ }), + +/***/ 25320: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.ServerCallContextController = void 0; +class ServerCallContextController { + constructor(method, headers, deadline, sendResponseHeadersFn, defaultStatus = { code: 'OK', detail: '' }) { + this._cancelled = false; + this._listeners = []; + this.method = method; + this.headers = headers; + this.deadline = deadline; + this.trailers = {}; + this._sendRH = sendResponseHeadersFn; + this.status = defaultStatus; + } + /** + * Set the call cancelled. + * + * Invokes all callbacks registered with onCancel() and + * sets `cancelled = true`. */ - headersArray() { - const headers = []; - for (const headerKey in this._headersMap) { - headers.push(this._headersMap[headerKey]); + notifyCancelled() { + if (!this._cancelled) { + this._cancelled = true; + for (let l of this._listeners) { + l(); + } } - return headers; } /** - * Get the header names that are contained in this collection. + * Send response headers. */ - headerNames() { - const headerNames = []; - const headers = this.headersArray(); - for (let i = 0; i < headers.length; ++i) { - headerNames.push(headers[i].name); - } - return headerNames; + sendResponseHeaders(data) { + this._sendRH(data); } /** - * Get the header values that are contained in this collection. + * Is the call cancelled? + * + * When the client closes the connection before the server + * is done, the call is cancelled. + * + * If you want to cancel a request on the server, throw a + * RpcError with the CANCELLED status code. */ - headerValues() { - const headerValues = []; - const headers = this.headersArray(); - for (let i = 0; i < headers.length; ++i) { - headerValues.push(headers[i].value); - } - return headerValues; + get cancelled() { + return this._cancelled; } /** - * Get the JSON object representation of this HTTP header collection. + * Add a callback for cancellation. */ - toJson(options = {}) { - const result = {}; - if (options.preserveCase) { - for (const headerKey in this._headersMap) { - const header = this._headersMap[headerKey]; - result[header.name] = header.value; - } - } - else { - for (const headerKey in this._headersMap) { - const header = this._headersMap[headerKey]; - result[getHeaderKey(header.name)] = header.value; - } - } - return result; + onCancel(callback) { + const l = this._listeners; + l.push(callback); + return () => { + let i = l.indexOf(callback); + if (i >= 0) + l.splice(i, 1); + }; } - /** - * Get the string representation of this HTTP header collection. - */ - toString() { - return JSON.stringify(this.toJson({ preserveCase: true })); +} +exports.ServerCallContextController = ServerCallContextController; + + +/***/ }), + +/***/ 30066: +/***/ (function(__unused_webpack_module, exports) { + +"use strict"; + +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.ServerStreamingCall = void 0; +/** + * A server streaming RPC call. The client provides exactly one input message + * but the server may respond with 0, 1, or more messages. + */ +class ServerStreamingCall { + constructor(method, requestHeaders, request, headers, response, status, trailers) { + this.method = method; + this.requestHeaders = requestHeaders; + this.request = request; + this.headers = headers; + this.responses = response; + this.status = status; + this.trailers = trailers; } /** - * Create a deep clone/copy of this HttpHeaders collection. + * Instead of awaiting the response status and trailers, you can + * just as well await this call itself to receive the server outcome. + * You should first setup some listeners to the `request` to + * see the actual messages the server replied with. */ - clone() { - const resultPreservingCasing = {}; - for (const headerKey in this._headersMap) { - const header = this._headersMap[headerKey]; - resultPreservingCasing[header.name] = header.value; - } - return new HttpHeaders(resultPreservingCasing); + then(onfulfilled, onrejected) { + return this.promiseFinished().then(value => onfulfilled ? Promise.resolve(onfulfilled(value)) : value, reason => onrejected ? Promise.resolve(onrejected(reason)) : Promise.reject(reason)); + } + promiseFinished() { + return __awaiter(this, void 0, void 0, function* () { + let [headers, status, trailers] = yield Promise.all([this.headers, this.status, this.trailers]); + return { + method: this.method, + requestHeaders: this.requestHeaders, + request: this.request, + headers, + status, + trailers, + }; + }); } } +exports.ServerStreamingCall = ServerStreamingCall; -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -/** - * Encodes a string in base64 format. - * @param value - The string to encode - */ -function encodeString(value) { - return Buffer.from(value).toString("base64"); -} -/** - * Encodes a byte array in base64 format. - * @param value - The Uint8Aray to encode - */ -function encodeByteArray(value) { - // Buffer.from accepts | -- the TypeScript definition is off here - // https://nodejs.org/api/buffer.html#buffer_class_method_buffer_from_arraybuffer_byteoffset_length - const bufferValue = value instanceof Buffer ? value : Buffer.from(value.buffer); - return bufferValue.toString("base64"); -} -/** - * Decodes a base64 string into a byte array. - * @param value - The base64 string to decode - */ -function decodeString(value) { - return Buffer.from(value, "base64"); + +/***/ }), + +/***/ 14107: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.ServiceType = void 0; +const reflection_info_1 = __nccwpck_require__(44331); +class ServiceType { + constructor(typeName, methods, options) { + this.typeName = typeName; + this.methods = methods.map(i => reflection_info_1.normalizeMethodInfo(i, this)); + this.options = options !== null && options !== void 0 ? options : {}; + } } +exports.ServiceType = ServiceType; -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. + +/***/ }), + +/***/ 87008: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.TestTransport = void 0; +const rpc_error_1 = __nccwpck_require__(63159); +const runtime_1 = __nccwpck_require__(4061); +const rpc_output_stream_1 = __nccwpck_require__(76637); +const rpc_options_1 = __nccwpck_require__(67386); +const unary_call_1 = __nccwpck_require__(84175); +const server_streaming_call_1 = __nccwpck_require__(30066); +const client_streaming_call_1 = __nccwpck_require__(29912); +const duplex_streaming_call_1 = __nccwpck_require__(17042); /** - * A set of constants used internally when processing requests. + * Transport for testing. */ -const Constants = { - /** - * The core-http version - */ - coreHttpVersion: "2.2.4", - /** - * Specifies HTTP. - */ - HTTP: "http:", - /** - * Specifies HTTPS. - */ - HTTPS: "https:", - /** - * Specifies HTTP Proxy. - */ - HTTP_PROXY: "HTTP_PROXY", +class TestTransport { /** - * Specifies HTTPS Proxy. + * Initialize with mock data. Omitted fields have default value. */ - HTTPS_PROXY: "HTTPS_PROXY", + constructor(data) { + /** + * Suppress warning / error about uncaught rejections of + * "status" and "trailers". + */ + this.suppressUncaughtRejections = true; + this.headerDelay = 10; + this.responseDelay = 50; + this.betweenResponseDelay = 10; + this.afterResponseDelay = 10; + this.data = data !== null && data !== void 0 ? data : {}; + } /** - * Specifies NO Proxy. + * Sent message(s) during the last operation. */ - NO_PROXY: "NO_PROXY", + get sentMessages() { + if (this.lastInput instanceof TestInputStream) { + return this.lastInput.sent; + } + else if (typeof this.lastInput == "object") { + return [this.lastInput.single]; + } + return []; + } /** - * Specifies ALL Proxy. + * Sending message(s) completed? */ - ALL_PROXY: "ALL_PROXY", - HttpConstants: { - /** - * Http Verbs - */ - HttpVerbs: { - PUT: "PUT", - GET: "GET", - DELETE: "DELETE", - POST: "POST", - MERGE: "MERGE", - HEAD: "HEAD", - PATCH: "PATCH", - }, - StatusCodes: { - TooManyRequests: 429, - ServiceUnavailable: 503, - }, - }, + get sendComplete() { + if (this.lastInput instanceof TestInputStream) { + return this.lastInput.completed; + } + else if (typeof this.lastInput == "object") { + return true; + } + return false; + } + // Creates a promise for response headers from the mock data. + promiseHeaders() { + var _a; + const headers = (_a = this.data.headers) !== null && _a !== void 0 ? _a : TestTransport.defaultHeaders; + return headers instanceof rpc_error_1.RpcError + ? Promise.reject(headers) + : Promise.resolve(headers); + } + // Creates a promise for a single, valid, message from the mock data. + promiseSingleResponse(method) { + if (this.data.response instanceof rpc_error_1.RpcError) { + return Promise.reject(this.data.response); + } + let r; + if (Array.isArray(this.data.response)) { + runtime_1.assert(this.data.response.length > 0); + r = this.data.response[0]; + } + else if (this.data.response !== undefined) { + r = this.data.response; + } + else { + r = method.O.create(); + } + runtime_1.assert(method.O.is(r)); + return Promise.resolve(r); + } /** - * Defines constants for use with HTTP headers. + * Pushes response messages from the mock data to the output stream. + * If an error response, status or trailers are mocked, the stream is + * closed with the respective error. + * Otherwise, stream is completed successfully. + * + * The returned promise resolves when the stream is closed. It should + * not reject. If it does, code is broken. */ - HeaderConstants: { - /** - * The Authorization header. - */ - AUTHORIZATION: "authorization", - AUTHORIZATION_SCHEME: "Bearer", - /** - * The Retry-After response-header field can be used with a 503 (Service - * Unavailable) or 349 (Too Many Requests) responses to indicate how long - * the service is expected to be unavailable to the requesting client. - */ - RETRY_AFTER: "Retry-After", - /** - * The UserAgent header. - */ - USER_AGENT: "User-Agent", - }, + streamResponses(method, stream, abort) { + return __awaiter(this, void 0, void 0, function* () { + // normalize "data.response" into an array of valid output messages + const messages = []; + if (this.data.response === undefined) { + messages.push(method.O.create()); + } + else if (Array.isArray(this.data.response)) { + for (let msg of this.data.response) { + runtime_1.assert(method.O.is(msg)); + messages.push(msg); + } + } + else if (!(this.data.response instanceof rpc_error_1.RpcError)) { + runtime_1.assert(method.O.is(this.data.response)); + messages.push(this.data.response); + } + // start the stream with an initial delay. + // if the request is cancelled, notify() error and exit. + try { + yield delay(this.responseDelay, abort)(undefined); + } + catch (error) { + stream.notifyError(error); + return; + } + // if error response was mocked, notify() error (stream is now closed with error) and exit. + if (this.data.response instanceof rpc_error_1.RpcError) { + stream.notifyError(this.data.response); + return; + } + // regular response messages were mocked. notify() them. + for (let msg of messages) { + stream.notifyMessage(msg); + // add a short delay between responses + // if the request is cancelled, notify() error and exit. + try { + yield delay(this.betweenResponseDelay, abort)(undefined); + } + catch (error) { + stream.notifyError(error); + return; + } + } + // error status was mocked, notify() error (stream is now closed with error) and exit. + if (this.data.status instanceof rpc_error_1.RpcError) { + stream.notifyError(this.data.status); + return; + } + // error trailers were mocked, notify() error (stream is now closed with error) and exit. + if (this.data.trailers instanceof rpc_error_1.RpcError) { + stream.notifyError(this.data.trailers); + return; + } + // stream completed successfully + stream.notifyComplete(); + }); + } + // Creates a promise for response status from the mock data. + promiseStatus() { + var _a; + const status = (_a = this.data.status) !== null && _a !== void 0 ? _a : TestTransport.defaultStatus; + return status instanceof rpc_error_1.RpcError + ? Promise.reject(status) + : Promise.resolve(status); + } + // Creates a promise for response trailers from the mock data. + promiseTrailers() { + var _a; + const trailers = (_a = this.data.trailers) !== null && _a !== void 0 ? _a : TestTransport.defaultTrailers; + return trailers instanceof rpc_error_1.RpcError + ? Promise.reject(trailers) + : Promise.resolve(trailers); + } + maybeSuppressUncaught(...promise) { + if (this.suppressUncaughtRejections) { + for (let p of promise) { + p.catch(() => { + }); + } + } + } + mergeOptions(options) { + return rpc_options_1.mergeRpcOptions({}, options); + } + unary(method, input, options) { + var _a; + const requestHeaders = (_a = options.meta) !== null && _a !== void 0 ? _a : {}, headersPromise = this.promiseHeaders() + .then(delay(this.headerDelay, options.abort)), responsePromise = headersPromise + .catch(_ => { + }) + .then(delay(this.responseDelay, options.abort)) + .then(_ => this.promiseSingleResponse(method)), statusPromise = responsePromise + .catch(_ => { + }) + .then(delay(this.afterResponseDelay, options.abort)) + .then(_ => this.promiseStatus()), trailersPromise = responsePromise + .catch(_ => { + }) + .then(delay(this.afterResponseDelay, options.abort)) + .then(_ => this.promiseTrailers()); + this.maybeSuppressUncaught(statusPromise, trailersPromise); + this.lastInput = { single: input }; + return new unary_call_1.UnaryCall(method, requestHeaders, input, headersPromise, responsePromise, statusPromise, trailersPromise); + } + serverStreaming(method, input, options) { + var _a; + const requestHeaders = (_a = options.meta) !== null && _a !== void 0 ? _a : {}, headersPromise = this.promiseHeaders() + .then(delay(this.headerDelay, options.abort)), outputStream = new rpc_output_stream_1.RpcOutputStreamController(), responseStreamClosedPromise = headersPromise + .then(delay(this.responseDelay, options.abort)) + .catch(() => { + }) + .then(() => this.streamResponses(method, outputStream, options.abort)) + .then(delay(this.afterResponseDelay, options.abort)), statusPromise = responseStreamClosedPromise + .then(() => this.promiseStatus()), trailersPromise = responseStreamClosedPromise + .then(() => this.promiseTrailers()); + this.maybeSuppressUncaught(statusPromise, trailersPromise); + this.lastInput = { single: input }; + return new server_streaming_call_1.ServerStreamingCall(method, requestHeaders, input, headersPromise, outputStream, statusPromise, trailersPromise); + } + clientStreaming(method, options) { + var _a; + const requestHeaders = (_a = options.meta) !== null && _a !== void 0 ? _a : {}, headersPromise = this.promiseHeaders() + .then(delay(this.headerDelay, options.abort)), responsePromise = headersPromise + .catch(_ => { + }) + .then(delay(this.responseDelay, options.abort)) + .then(_ => this.promiseSingleResponse(method)), statusPromise = responsePromise + .catch(_ => { + }) + .then(delay(this.afterResponseDelay, options.abort)) + .then(_ => this.promiseStatus()), trailersPromise = responsePromise + .catch(_ => { + }) + .then(delay(this.afterResponseDelay, options.abort)) + .then(_ => this.promiseTrailers()); + this.maybeSuppressUncaught(statusPromise, trailersPromise); + this.lastInput = new TestInputStream(this.data, options.abort); + return new client_streaming_call_1.ClientStreamingCall(method, requestHeaders, this.lastInput, headersPromise, responsePromise, statusPromise, trailersPromise); + } + duplex(method, options) { + var _a; + const requestHeaders = (_a = options.meta) !== null && _a !== void 0 ? _a : {}, headersPromise = this.promiseHeaders() + .then(delay(this.headerDelay, options.abort)), outputStream = new rpc_output_stream_1.RpcOutputStreamController(), responseStreamClosedPromise = headersPromise + .then(delay(this.responseDelay, options.abort)) + .catch(() => { + }) + .then(() => this.streamResponses(method, outputStream, options.abort)) + .then(delay(this.afterResponseDelay, options.abort)), statusPromise = responseStreamClosedPromise + .then(() => this.promiseStatus()), trailersPromise = responseStreamClosedPromise + .then(() => this.promiseTrailers()); + this.maybeSuppressUncaught(statusPromise, trailersPromise); + this.lastInput = new TestInputStream(this.data, options.abort); + return new duplex_streaming_call_1.DuplexStreamingCall(method, requestHeaders, this.lastInput, headersPromise, outputStream, statusPromise, trailersPromise); + } +} +exports.TestTransport = TestTransport; +TestTransport.defaultHeaders = { + responseHeader: "test" }; - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -/** - * Default key used to access the XML attributes. - */ -const XML_ATTRKEY = "$"; -/** - * Default key used to access the XML value content. - */ -const XML_CHARKEY = "_"; - -// Copyright (c) Microsoft Corporation. -const validUuidRegex = /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/i; -/** - * A constant that indicates whether the environment is node.js or browser based. - */ -const isNode = typeof process !== "undefined" && - !!process.version && - !!process.versions && - !!process.versions.node; -/** - * Encodes an URI. - * - * @param uri - The URI to be encoded. - * @returns The encoded URI. - */ -function encodeUri(uri) { - return encodeURIComponent(uri) - .replace(/!/g, "%21") - .replace(/"/g, "%27") - .replace(/\(/g, "%28") - .replace(/\)/g, "%29") - .replace(/\*/g, "%2A"); +TestTransport.defaultStatus = { + code: "OK", detail: "all good" +}; +TestTransport.defaultTrailers = { + responseTrailer: "test" +}; +function delay(ms, abort) { + return (v) => new Promise((resolve, reject) => { + if (abort === null || abort === void 0 ? void 0 : abort.aborted) { + reject(new rpc_error_1.RpcError("user cancel", "CANCELLED")); + } + else { + const id = setTimeout(() => resolve(v), ms); + if (abort) { + abort.addEventListener("abort", ev => { + clearTimeout(id); + reject(new rpc_error_1.RpcError("user cancel", "CANCELLED")); + }); + } + } + }); } -/** - * Returns a stripped version of the Http Response which only contains body, - * headers and the status. - * - * @param response - The Http Response - * @returns The stripped version of Http Response. - */ -function stripResponse(response) { - const strippedResponse = {}; - strippedResponse.body = response.bodyAsText; - strippedResponse.headers = response.headers; - strippedResponse.status = response.status; - return strippedResponse; +class TestInputStream { + constructor(data, abort) { + this._completed = false; + this._sent = []; + this.data = data; + this.abort = abort; + } + get sent() { + return this._sent; + } + get completed() { + return this._completed; + } + send(message) { + if (this.data.inputMessage instanceof rpc_error_1.RpcError) { + return Promise.reject(this.data.inputMessage); + } + const delayMs = this.data.inputMessage === undefined + ? 10 + : this.data.inputMessage; + return Promise.resolve(undefined) + .then(() => { + this._sent.push(message); + }) + .then(delay(delayMs, this.abort)); + } + complete() { + if (this.data.inputComplete instanceof rpc_error_1.RpcError) { + return Promise.reject(this.data.inputComplete); + } + const delayMs = this.data.inputComplete === undefined + ? 10 + : this.data.inputComplete; + return Promise.resolve(undefined) + .then(() => { + this._completed = true; + }) + .then(delay(delayMs, this.abort)); + } } + + +/***/ }), + +/***/ 84175: +/***/ (function(__unused_webpack_module, exports) { + +"use strict"; + +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.UnaryCall = void 0; /** - * Returns a stripped version of the Http Request that does not contain the - * Authorization header. - * - * @param request - The Http Request object - * @returns The stripped version of Http Request. + * A unary RPC call. Unary means there is exactly one input message and + * exactly one output message unless an error occurred. */ -function stripRequest(request) { - const strippedRequest = request.clone(); - if (strippedRequest.headers) { - strippedRequest.headers.remove("authorization"); +class UnaryCall { + constructor(method, requestHeaders, request, headers, response, status, trailers) { + this.method = method; + this.requestHeaders = requestHeaders; + this.request = request; + this.headers = headers; + this.response = response; + this.status = status; + this.trailers = trailers; + } + /** + * If you are only interested in the final outcome of this call, + * you can await it to receive a `FinishedUnaryCall`. + */ + then(onfulfilled, onrejected) { + return this.promiseFinished().then(value => onfulfilled ? Promise.resolve(onfulfilled(value)) : value, reason => onrejected ? Promise.resolve(onrejected(reason)) : Promise.reject(reason)); + } + promiseFinished() { + return __awaiter(this, void 0, void 0, function* () { + let [headers, response, status, trailers] = yield Promise.all([this.headers, this.response, this.status, this.trailers]); + return { + method: this.method, + requestHeaders: this.requestHeaders, + request: this.request, + headers, + response, + status, + trailers + }; + }); } - return strippedRequest; } +exports.UnaryCall = UnaryCall; + + +/***/ }), + +/***/ 54253: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.assertFloat32 = exports.assertUInt32 = exports.assertInt32 = exports.assertNever = exports.assert = void 0; /** - * Validates the given uuid as a string - * - * @param uuid - The uuid as a string that needs to be validated - * @returns True if the uuid is valid; false otherwise. + * assert that condition is true or throw error (with message) */ -function isValidUuid(uuid) { - return validUuidRegex.test(uuid); +function assert(condition, msg) { + if (!condition) { + throw new Error(msg); + } } +exports.assert = assert; /** - * Generated UUID - * - * @returns RFC4122 v4 UUID. + * assert that value cannot exist = type `never`. throw runtime error if it does. */ -function generateUuid() { - return uuid.v4(); +function assertNever(value, msg) { + throw new Error(msg !== null && msg !== void 0 ? msg : 'Unexpected object: ' + value); +} +exports.assertNever = assertNever; +const FLOAT32_MAX = 3.4028234663852886e+38, FLOAT32_MIN = -3.4028234663852886e+38, UINT32_MAX = 0xFFFFFFFF, INT32_MAX = 0X7FFFFFFF, INT32_MIN = -0X80000000; +function assertInt32(arg) { + if (typeof arg !== "number") + throw new Error('invalid int 32: ' + typeof arg); + if (!Number.isInteger(arg) || arg > INT32_MAX || arg < INT32_MIN) + throw new Error('invalid int 32: ' + arg); +} +exports.assertInt32 = assertInt32; +function assertUInt32(arg) { + if (typeof arg !== "number") + throw new Error('invalid uint 32: ' + typeof arg); + if (!Number.isInteger(arg) || arg > UINT32_MAX || arg < 0) + throw new Error('invalid uint 32: ' + arg); +} +exports.assertUInt32 = assertUInt32; +function assertFloat32(arg) { + if (typeof arg !== "number") + throw new Error('invalid float 32: ' + typeof arg); + if (!Number.isFinite(arg)) + return; + if (arg > FLOAT32_MAX || arg < FLOAT32_MIN) + throw new Error('invalid float 32: ' + arg); } +exports.assertFloat32 = assertFloat32; + + +/***/ }), + +/***/ 20196: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.base64encode = exports.base64decode = void 0; +// lookup table from base64 character to byte +let encTable = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'.split(''); +// lookup table from base64 character *code* to byte because lookup by number is fast +let decTable = []; +for (let i = 0; i < encTable.length; i++) + decTable[encTable[i].charCodeAt(0)] = i; +// support base64url variants +decTable["-".charCodeAt(0)] = encTable.indexOf("+"); +decTable["_".charCodeAt(0)] = encTable.indexOf("/"); /** - * Executes an array of promises sequentially. Inspiration of this method is here: - * https://pouchdb.com/2015/05/18/we-have-a-problem-with-promises.html. An awesome blog on promises! + * Decodes a base64 string to a byte array. * - * @param promiseFactories - An array of promise factories(A function that return a promise) - * @param kickstart - Input to the first promise that is used to kickstart the promise chain. - * If not provided then the promise chain starts with undefined. - * @returns A chain of resolved or rejected promises - */ -function executePromisesSequentially(promiseFactories, kickstart) { - let result = Promise.resolve(kickstart); - promiseFactories.forEach((promiseFactory) => { - result = result.then(promiseFactory); - }); - return result; -} -/** - * Converts a Promise to a callback. - * @param promise - The Promise to be converted to a callback - * @returns A function that takes the callback `(cb: Function) => void` - * @deprecated generated code should instead depend on responseToBody + * - ignores white-space, including line breaks and tabs + * - allows inner padding (can decode concatenated base64 strings) + * - does not require padding + * - understands base64url encoding: + * "-" instead of "+", + * "_" instead of "/", + * no padding */ -// eslint-disable-next-line @typescript-eslint/ban-types -function promiseToCallback(promise) { - if (typeof promise.then !== "function") { - throw new Error("The provided input is not a Promise."); +function base64decode(base64Str) { + // estimate byte size, not accounting for inner padding and whitespace + let es = base64Str.length * 3 / 4; + // if (es % 3 !== 0) + // throw new Error('invalid base64 string'); + if (base64Str[base64Str.length - 2] == '=') + es -= 2; + else if (base64Str[base64Str.length - 1] == '=') + es -= 1; + let bytes = new Uint8Array(es), bytePos = 0, // position in byte array + groupPos = 0, // position in base64 group + b, // current byte + p = 0 // previous byte + ; + for (let i = 0; i < base64Str.length; i++) { + b = decTable[base64Str.charCodeAt(i)]; + if (b === undefined) { + // noinspection FallThroughInSwitchStatementJS + switch (base64Str[i]) { + case '=': + groupPos = 0; // reset state when padding found + case '\n': + case '\r': + case '\t': + case ' ': + continue; // skip white-space, and padding + default: + throw Error(`invalid base64 string.`); + } + } + switch (groupPos) { + case 0: + p = b; + groupPos = 1; + break; + case 1: + bytes[bytePos++] = p << 2 | (b & 48) >> 4; + p = b; + groupPos = 2; + break; + case 2: + bytes[bytePos++] = (p & 15) << 4 | (b & 60) >> 2; + p = b; + groupPos = 3; + break; + case 3: + bytes[bytePos++] = (p & 3) << 6 | b; + groupPos = 0; + break; + } } - // eslint-disable-next-line @typescript-eslint/ban-types - return (cb) => { - promise - .then((data) => { - // eslint-disable-next-line promise/no-callback-in-promise - return cb(undefined, data); - }) - .catch((err) => { - // eslint-disable-next-line promise/no-callback-in-promise - cb(err); - }); - }; + if (groupPos == 1) + throw Error(`invalid base64 string.`); + return bytes.subarray(0, bytePos); } +exports.base64decode = base64decode; /** - * Converts a Promise to a service callback. - * @param promise - The Promise of HttpOperationResponse to be converted to a service callback - * @returns A function that takes the service callback (cb: ServiceCallback): void + * Encodes a byte array to a base64 string. + * Adds padding at the end. + * Does not insert newlines. */ -function promiseToServiceCallback(promise) { - if (typeof promise.then !== "function") { - throw new Error("The provided input is not a Promise."); - } - return (cb) => { - promise - .then((data) => { - return process.nextTick(cb, undefined, data.parsedBody, data.request, data); - }) - .catch((err) => { - process.nextTick(cb, err); - }); - }; -} -function prepareXMLRootList(obj, elementName, xmlNamespaceKey, xmlNamespace) { - if (!Array.isArray(obj)) { - obj = [obj]; +function base64encode(bytes) { + let base64 = '', groupPos = 0, // position in base64 group + b, // current byte + p = 0; // carry over from previous byte + for (let i = 0; i < bytes.length; i++) { + b = bytes[i]; + switch (groupPos) { + case 0: + base64 += encTable[b >> 2]; + p = (b & 3) << 4; + groupPos = 1; + break; + case 1: + base64 += encTable[p | b >> 4]; + p = (b & 15) << 2; + groupPos = 2; + break; + case 2: + base64 += encTable[p | b >> 6]; + base64 += encTable[b & 63]; + groupPos = 0; + break; + } } - if (!xmlNamespaceKey || !xmlNamespace) { - return { [elementName]: obj }; + // padding required? + if (groupPos) { + base64 += encTable[p]; + base64 += '='; + if (groupPos == 1) + base64 += '='; } - const result = { [elementName]: obj }; - result[XML_ATTRKEY] = { [xmlNamespaceKey]: xmlNamespace }; - return result; + return base64; } +exports.base64encode = base64encode; + + +/***/ }), + +/***/ 84921: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.WireType = exports.mergeBinaryOptions = exports.UnknownFieldHandler = void 0; /** - * Applies the properties on the prototype of sourceCtors to the prototype of targetCtor - * @param targetCtor - The target object on which the properties need to be applied. - * @param sourceCtors - An array of source objects from which the properties need to be taken. + * This handler implements the default behaviour for unknown fields. + * When reading data, unknown fields are stored on the message, in a + * symbol property. + * When writing data, the symbol property is queried and unknown fields + * are serialized into the output again. */ -function applyMixins(targetCtorParam, sourceCtors) { - const castTargetCtorParam = targetCtorParam; - sourceCtors.forEach((sourceCtor) => { - Object.getOwnPropertyNames(sourceCtor.prototype).forEach((name) => { - castTargetCtorParam.prototype[name] = sourceCtor.prototype[name]; - }); - }); -} -const validateISODuration = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/; +var UnknownFieldHandler; +(function (UnknownFieldHandler) { + /** + * The symbol used to store unknown fields for a message. + * The property must conform to `UnknownFieldContainer`. + */ + UnknownFieldHandler.symbol = Symbol.for("protobuf-ts/unknown"); + /** + * Store an unknown field during binary read directly on the message. + * This method is compatible with `BinaryReadOptions.readUnknownField`. + */ + UnknownFieldHandler.onRead = (typeName, message, fieldNo, wireType, data) => { + let container = is(message) ? message[UnknownFieldHandler.symbol] : message[UnknownFieldHandler.symbol] = []; + container.push({ no: fieldNo, wireType, data }); + }; + /** + * Write unknown fields stored for the message to the writer. + * This method is compatible with `BinaryWriteOptions.writeUnknownFields`. + */ + UnknownFieldHandler.onWrite = (typeName, message, writer) => { + for (let { no, wireType, data } of UnknownFieldHandler.list(message)) + writer.tag(no, wireType).raw(data); + }; + /** + * List unknown fields stored for the message. + * Note that there may be multiples fields with the same number. + */ + UnknownFieldHandler.list = (message, fieldNo) => { + if (is(message)) { + let all = message[UnknownFieldHandler.symbol]; + return fieldNo ? all.filter(uf => uf.no == fieldNo) : all; + } + return []; + }; + /** + * Returns the last unknown field by field number. + */ + UnknownFieldHandler.last = (message, fieldNo) => UnknownFieldHandler.list(message, fieldNo).slice(-1)[0]; + const is = (message) => message && Array.isArray(message[UnknownFieldHandler.symbol]); +})(UnknownFieldHandler = exports.UnknownFieldHandler || (exports.UnknownFieldHandler = {})); /** - * Indicates whether the given string is in ISO 8601 format. - * @param value - The value to be validated for ISO 8601 duration format. - * @returns `true` if valid, `false` otherwise. + * Merges binary write or read options. Later values override earlier values. */ -function isDuration(value) { - return validateISODuration.test(value); +function mergeBinaryOptions(a, b) { + return Object.assign(Object.assign({}, a), b); } +exports.mergeBinaryOptions = mergeBinaryOptions; /** - * Replace all of the instances of searchValue in value with the provided replaceValue. - * @param value - The value to search and replace in. - * @param searchValue - The value to search for in the value argument. - * @param replaceValue - The value to replace searchValue with in the value argument. - * @returns The value where each instance of searchValue was replaced with replacedValue. + * Protobuf binary format wire types. + * + * A wire type provides just enough information to find the length of the + * following value. + * + * See https://developers.google.com/protocol-buffers/docs/encoding#structure */ -function replaceAll(value, searchValue, replaceValue) { - return !value || !searchValue ? value : value.split(searchValue).join(replaceValue || ""); -} +var WireType; +(function (WireType) { + /** + * Used for int32, int64, uint32, uint64, sint32, sint64, bool, enum + */ + WireType[WireType["Varint"] = 0] = "Varint"; + /** + * Used for fixed64, sfixed64, double. + * Always 8 bytes with little-endian byte order. + */ + WireType[WireType["Bit64"] = 1] = "Bit64"; + /** + * Used for string, bytes, embedded messages, packed repeated fields + * + * Only repeated numeric types (types which use the varint, 32-bit, + * or 64-bit wire types) can be packed. In proto3, such fields are + * packed by default. + */ + WireType[WireType["LengthDelimited"] = 2] = "LengthDelimited"; + /** + * Used for groups + * @deprecated + */ + WireType[WireType["StartGroup"] = 3] = "StartGroup"; + /** + * Used for groups + * @deprecated + */ + WireType[WireType["EndGroup"] = 4] = "EndGroup"; + /** + * Used for fixed32, sfixed32, float. + * Always 4 bytes with little-endian byte order. + */ + WireType[WireType["Bit32"] = 5] = "Bit32"; +})(WireType = exports.WireType || (exports.WireType = {})); + + +/***/ }), + +/***/ 65210: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.BinaryReader = exports.binaryReadOptions = void 0; +const binary_format_contract_1 = __nccwpck_require__(84921); +const pb_long_1 = __nccwpck_require__(47777); +const goog_varint_1 = __nccwpck_require__(30433); +const defaultsRead = { + readUnknownField: true, + readerFactory: bytes => new BinaryReader(bytes), +}; /** - * Determines whether the given entity is a basic/primitive type - * (string, number, boolean, null, undefined). - * @param value - Any entity - * @returns true is it is primitive type, false otherwise. + * Make options for reading binary data form partial options. */ -function isPrimitiveType(value) { - return (typeof value !== "object" && typeof value !== "function") || value === null; +function binaryReadOptions(options) { + return options ? Object.assign(Object.assign({}, defaultsRead), options) : defaultsRead; } -function getEnvironmentValue(name) { - if (process.env[name]) { - return process.env[name]; +exports.binaryReadOptions = binaryReadOptions; +class BinaryReader { + constructor(buf, textDecoder) { + this.varint64 = goog_varint_1.varint64read; // dirty cast for `this` + /** + * Read a `uint32` field, an unsigned 32 bit varint. + */ + this.uint32 = goog_varint_1.varint32read; // dirty cast for `this` and access to protected `buf` + this.buf = buf; + this.len = buf.length; + this.pos = 0; + this.view = new DataView(buf.buffer, buf.byteOffset, buf.byteLength); + this.textDecoder = textDecoder !== null && textDecoder !== void 0 ? textDecoder : new TextDecoder("utf-8", { + fatal: true, + ignoreBOM: true, + }); } - else if (process.env[name.toLowerCase()]) { - return process.env[name.toLowerCase()]; + /** + * Reads a tag - field number and wire type. + */ + tag() { + let tag = this.uint32(), fieldNo = tag >>> 3, wireType = tag & 7; + if (fieldNo <= 0 || wireType < 0 || wireType > 5) + throw new Error("illegal tag: field no " + fieldNo + " wire type " + wireType); + return [fieldNo, wireType]; + } + /** + * Skip one element on the wire and return the skipped data. + * Supports WireType.StartGroup since v2.0.0-alpha.23. + */ + skip(wireType) { + let start = this.pos; + // noinspection FallThroughInSwitchStatementJS + switch (wireType) { + case binary_format_contract_1.WireType.Varint: + while (this.buf[this.pos++] & 0x80) { + // ignore + } + break; + case binary_format_contract_1.WireType.Bit64: + this.pos += 4; + case binary_format_contract_1.WireType.Bit32: + this.pos += 4; + break; + case binary_format_contract_1.WireType.LengthDelimited: + let len = this.uint32(); + this.pos += len; + break; + case binary_format_contract_1.WireType.StartGroup: + // From descriptor.proto: Group type is deprecated, not supported in proto3. + // But we must still be able to parse and treat as unknown. + let t; + while ((t = this.tag()[1]) !== binary_format_contract_1.WireType.EndGroup) { + this.skip(t); + } + break; + default: + throw new Error("cant skip wire type " + wireType); + } + this.assertBounds(); + return this.buf.subarray(start, this.pos); + } + /** + * Throws error if position in byte array is out of range. + */ + assertBounds() { + if (this.pos > this.len) + throw new RangeError("premature EOF"); + } + /** + * Read a `int32` field, a signed 32 bit varint. + */ + int32() { + return this.uint32() | 0; + } + /** + * Read a `sint32` field, a signed, zigzag-encoded 32-bit varint. + */ + sint32() { + let zze = this.uint32(); + // decode zigzag + return (zze >>> 1) ^ -(zze & 1); + } + /** + * Read a `int64` field, a signed 64-bit varint. + */ + int64() { + return new pb_long_1.PbLong(...this.varint64()); + } + /** + * Read a `uint64` field, an unsigned 64-bit varint. + */ + uint64() { + return new pb_long_1.PbULong(...this.varint64()); + } + /** + * Read a `sint64` field, a signed, zig-zag-encoded 64-bit varint. + */ + sint64() { + let [lo, hi] = this.varint64(); + // decode zig zag + let s = -(lo & 1); + lo = ((lo >>> 1 | (hi & 1) << 31) ^ s); + hi = (hi >>> 1 ^ s); + return new pb_long_1.PbLong(lo, hi); + } + /** + * Read a `bool` field, a variant. + */ + bool() { + let [lo, hi] = this.varint64(); + return lo !== 0 || hi !== 0; + } + /** + * Read a `fixed32` field, an unsigned, fixed-length 32-bit integer. + */ + fixed32() { + return this.view.getUint32((this.pos += 4) - 4, true); + } + /** + * Read a `sfixed32` field, a signed, fixed-length 32-bit integer. + */ + sfixed32() { + return this.view.getInt32((this.pos += 4) - 4, true); + } + /** + * Read a `fixed64` field, an unsigned, fixed-length 64 bit integer. + */ + fixed64() { + return new pb_long_1.PbULong(this.sfixed32(), this.sfixed32()); + } + /** + * Read a `fixed64` field, a signed, fixed-length 64-bit integer. + */ + sfixed64() { + return new pb_long_1.PbLong(this.sfixed32(), this.sfixed32()); + } + /** + * Read a `float` field, 32-bit floating point number. + */ + float() { + return this.view.getFloat32((this.pos += 4) - 4, true); + } + /** + * Read a `double` field, a 64-bit floating point number. + */ + double() { + return this.view.getFloat64((this.pos += 8) - 8, true); + } + /** + * Read a `bytes` field, length-delimited arbitrary data. + */ + bytes() { + let len = this.uint32(); + let start = this.pos; + this.pos += len; + this.assertBounds(); + return this.buf.subarray(start, start + len); + } + /** + * Read a `string` field, length-delimited data converted to UTF-8 text. + */ + string() { + return this.textDecoder.decode(this.bytes()); } - return undefined; -} -/** - * @internal - * @returns true when input is an object type that is not null, Array, RegExp, or Date. - */ -function isObject(input) { - return (typeof input === "object" && - input !== null && - !Array.isArray(input) && - !(input instanceof RegExp) && - !(input instanceof Date)); } +exports.BinaryReader = BinaryReader; -// Copyright (c) Microsoft Corporation. -// This file contains utility code to serialize and deserialize network operations according to `OperationSpec` objects generated by AutoRest.TypeScript from OpenAPI specifications. + +/***/ }), + +/***/ 44354: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.BinaryWriter = exports.binaryWriteOptions = void 0; +const pb_long_1 = __nccwpck_require__(47777); +const goog_varint_1 = __nccwpck_require__(30433); +const assert_1 = __nccwpck_require__(54253); +const defaultsWrite = { + writeUnknownFields: true, + writerFactory: () => new BinaryWriter(), +}; /** - * Used to map raw response objects to final shapes. - * Helps packing and unpacking Dates and other encoded types that are not intrinsic to JSON. - * Also allows pulling values from headers, as well as inserting default values and constants. + * Make options for writing binary data form partial options. */ -class Serializer { - constructor( +function binaryWriteOptions(options) { + return options ? Object.assign(Object.assign({}, defaultsWrite), options) : defaultsWrite; +} +exports.binaryWriteOptions = binaryWriteOptions; +class BinaryWriter { + constructor(textEncoder) { + /** + * Previous fork states. + */ + this.stack = []; + this.textEncoder = textEncoder !== null && textEncoder !== void 0 ? textEncoder : new TextEncoder(); + this.chunks = []; + this.buf = []; + } /** - * The provided model mapper. + * Return all bytes written and reset this writer. */ - modelMappers = {}, + finish() { + this.chunks.push(new Uint8Array(this.buf)); // flush the buffer + let len = 0; + for (let i = 0; i < this.chunks.length; i++) + len += this.chunks[i].length; + let bytes = new Uint8Array(len); + let offset = 0; + for (let i = 0; i < this.chunks.length; i++) { + bytes.set(this.chunks[i], offset); + offset += this.chunks[i].length; + } + this.chunks = []; + return bytes; + } /** - * Whether the contents are XML or not. + * Start a new fork for length-delimited data like a message + * or a packed repeated field. + * + * Must be joined later with `join()`. */ - isXML) { - this.modelMappers = modelMappers; - this.isXML = isXML; + fork() { + this.stack.push({ chunks: this.chunks, buf: this.buf }); + this.chunks = []; + this.buf = []; + return this; } /** - * Validates constraints, if any. This function will throw if the provided value does not respect those constraints. - * @param mapper - The definition of data models. - * @param value - The value. - * @param objectName - Name of the object. Used in the error messages. + * Join the last fork. Write its length and bytes, then + * return to the previous state. */ - validateConstraints(mapper, value, objectName) { - const failValidation = (constraintName, constraintValue) => { - throw new Error(`"${objectName}" with value "${value}" should satisfy the constraint "${constraintName}": ${constraintValue}.`); - }; - if (mapper.constraints && value != undefined) { - const valueAsNumber = value; - const { ExclusiveMaximum, ExclusiveMinimum, InclusiveMaximum, InclusiveMinimum, MaxItems, MaxLength, MinItems, MinLength, MultipleOf, Pattern, UniqueItems, } = mapper.constraints; - if (ExclusiveMaximum != undefined && valueAsNumber >= ExclusiveMaximum) { - failValidation("ExclusiveMaximum", ExclusiveMaximum); - } - if (ExclusiveMinimum != undefined && valueAsNumber <= ExclusiveMinimum) { - failValidation("ExclusiveMinimum", ExclusiveMinimum); - } - if (InclusiveMaximum != undefined && valueAsNumber > InclusiveMaximum) { - failValidation("InclusiveMaximum", InclusiveMaximum); - } - if (InclusiveMinimum != undefined && valueAsNumber < InclusiveMinimum) { - failValidation("InclusiveMinimum", InclusiveMinimum); - } - const valueAsArray = value; - if (MaxItems != undefined && valueAsArray.length > MaxItems) { - failValidation("MaxItems", MaxItems); - } - if (MaxLength != undefined && valueAsArray.length > MaxLength) { - failValidation("MaxLength", MaxLength); - } - if (MinItems != undefined && valueAsArray.length < MinItems) { - failValidation("MinItems", MinItems); - } - if (MinLength != undefined && valueAsArray.length < MinLength) { - failValidation("MinLength", MinLength); - } - if (MultipleOf != undefined && valueAsNumber % MultipleOf !== 0) { - failValidation("MultipleOf", MultipleOf); - } - if (Pattern) { - const pattern = typeof Pattern === "string" ? new RegExp(Pattern) : Pattern; - if (typeof value !== "string" || value.match(pattern) === null) { - failValidation("Pattern", Pattern); - } - } - if (UniqueItems && - valueAsArray.some((item, i, ar) => ar.indexOf(item) !== i)) { - failValidation("UniqueItems", UniqueItems); - } - } + join() { + // get chunk of fork + let chunk = this.finish(); + // restore previous state + let prev = this.stack.pop(); + if (!prev) + throw new Error('invalid state, fork stack empty'); + this.chunks = prev.chunks; + this.buf = prev.buf; + // write length of chunk as varint + this.uint32(chunk.byteLength); + return this.raw(chunk); } /** - * Serialize the given object based on its metadata defined in the mapper. + * Writes a tag (field number and wire type). * - * @param mapper - The mapper which defines the metadata of the serializable object. - * @param object - A valid Javascript object to be serialized. - * @param objectName - Name of the serialized object. - * @param options - additional options to deserialization. - * @returns A valid serialized Javascript object. + * Equivalent to `uint32( (fieldNo << 3 | type) >>> 0 )`. + * + * Generated code should compute the tag ahead of time and call `uint32()`. */ - serialize(mapper, object, objectName, options = {}) { - var _a, _b, _c; - const updatedOptions = { - rootName: (_a = options.rootName) !== null && _a !== void 0 ? _a : "", - includeRoot: (_b = options.includeRoot) !== null && _b !== void 0 ? _b : false, - xmlCharKey: (_c = options.xmlCharKey) !== null && _c !== void 0 ? _c : XML_CHARKEY, - }; - let payload = {}; - const mapperType = mapper.type.name; - if (!objectName) { - objectName = mapper.serializedName; - } - if (mapperType.match(/^Sequence$/i) !== null) { - payload = []; - } - if (mapper.isConstant) { - object = mapper.defaultValue; - } - // This table of allowed values should help explain - // the mapper.required and mapper.nullable properties. - // X means "neither undefined or null are allowed". - // || required - // || true | false - // nullable || ========================== - // true || null | undefined/null - // false || X | undefined - // undefined || X | undefined/null - const { required, nullable } = mapper; - if (required && nullable && object === undefined) { - throw new Error(`${objectName} cannot be undefined.`); - } - if (required && !nullable && object == undefined) { - throw new Error(`${objectName} cannot be null or undefined.`); - } - if (!required && nullable === false && object === null) { - throw new Error(`${objectName} cannot be null.`); - } - if (object == undefined) { - payload = object; - } - else { - // Validate Constraints if any - this.validateConstraints(mapper, object, objectName); - if (mapperType.match(/^any$/i) !== null) { - payload = object; - } - else if (mapperType.match(/^(Number|String|Boolean|Object|Stream|Uuid)$/i) !== null) { - payload = serializeBasicTypes(mapperType, objectName, object); - } - else if (mapperType.match(/^Enum$/i) !== null) { - const enumMapper = mapper; - payload = serializeEnumType(objectName, enumMapper.type.allowedValues, object); - } - else if (mapperType.match(/^(Date|DateTime|TimeSpan|DateTimeRfc1123|UnixTime)$/i) !== null) { - payload = serializeDateTypes(mapperType, object, objectName); - } - else if (mapperType.match(/^ByteArray$/i) !== null) { - payload = serializeByteArrayType(objectName, object); - } - else if (mapperType.match(/^Base64Url$/i) !== null) { - payload = serializeBase64UrlType(objectName, object); - } - else if (mapperType.match(/^Sequence$/i) !== null) { - payload = serializeSequenceType(this, mapper, object, objectName, Boolean(this.isXML), updatedOptions); - } - else if (mapperType.match(/^Dictionary$/i) !== null) { - payload = serializeDictionaryType(this, mapper, object, objectName, Boolean(this.isXML), updatedOptions); - } - else if (mapperType.match(/^Composite$/i) !== null) { - payload = serializeCompositeType(this, mapper, object, objectName, Boolean(this.isXML), updatedOptions); - } - } - return payload; + tag(fieldNo, type) { + return this.uint32((fieldNo << 3 | type) >>> 0); } /** - * Deserialize the given object based on its metadata defined in the mapper. - * - * @param mapper - The mapper which defines the metadata of the serializable object. - * @param responseBody - A valid Javascript entity to be deserialized. - * @param objectName - Name of the deserialized object. - * @param options - Controls behavior of XML parser and builder. - * @returns A valid deserialized Javascript object. + * Write a chunk of raw bytes. */ - deserialize(mapper, responseBody, objectName, options = {}) { - var _a, _b, _c; - const updatedOptions = { - rootName: (_a = options.rootName) !== null && _a !== void 0 ? _a : "", - includeRoot: (_b = options.includeRoot) !== null && _b !== void 0 ? _b : false, - xmlCharKey: (_c = options.xmlCharKey) !== null && _c !== void 0 ? _c : XML_CHARKEY, - }; - if (responseBody == undefined) { - if (this.isXML && mapper.type.name === "Sequence" && !mapper.xmlIsWrapped) { - // Edge case for empty XML non-wrapped lists. xml2js can't distinguish - // between the list being empty versus being missing, - // so let's do the more user-friendly thing and return an empty list. - responseBody = []; - } - // specifically check for undefined as default value can be a falsey value `0, "", false, null` - if (mapper.defaultValue !== undefined) { - responseBody = mapper.defaultValue; - } - return responseBody; - } - let payload; - const mapperType = mapper.type.name; - if (!objectName) { - objectName = mapper.serializedName; - } - if (mapperType.match(/^Composite$/i) !== null) { - payload = deserializeCompositeType(this, mapper, responseBody, objectName, updatedOptions); - } - else { - if (this.isXML) { - const xmlCharKey = updatedOptions.xmlCharKey; - const castResponseBody = responseBody; - /** - * If the mapper specifies this as a non-composite type value but the responseBody contains - * both header ("$" i.e., XML_ATTRKEY) and body ("#" i.e., XML_CHARKEY) properties, - * then just reduce the responseBody value to the body ("#" i.e., XML_CHARKEY) property. - */ - if (castResponseBody[XML_ATTRKEY] != undefined && - castResponseBody[xmlCharKey] != undefined) { - responseBody = castResponseBody[xmlCharKey]; - } - } - if (mapperType.match(/^Number$/i) !== null) { - payload = parseFloat(responseBody); - if (isNaN(payload)) { - payload = responseBody; - } - } - else if (mapperType.match(/^Boolean$/i) !== null) { - if (responseBody === "true") { - payload = true; - } - else if (responseBody === "false") { - payload = false; - } - else { - payload = responseBody; - } - } - else if (mapperType.match(/^(String|Enum|Object|Stream|Uuid|TimeSpan|any)$/i) !== null) { - payload = responseBody; - } - else if (mapperType.match(/^(Date|DateTime|DateTimeRfc1123)$/i) !== null) { - payload = new Date(responseBody); - } - else if (mapperType.match(/^UnixTime$/i) !== null) { - payload = unixTimeToDate(responseBody); - } - else if (mapperType.match(/^ByteArray$/i) !== null) { - payload = decodeString(responseBody); - } - else if (mapperType.match(/^Base64Url$/i) !== null) { - payload = base64UrlToByteArray(responseBody); - } - else if (mapperType.match(/^Sequence$/i) !== null) { - payload = deserializeSequenceType(this, mapper, responseBody, objectName, updatedOptions); - } - else if (mapperType.match(/^Dictionary$/i) !== null) { - payload = deserializeDictionaryType(this, mapper, responseBody, objectName, updatedOptions); - } + raw(chunk) { + if (this.buf.length) { + this.chunks.push(new Uint8Array(this.buf)); + this.buf = []; } - if (mapper.isConstant) { - payload = mapper.defaultValue; + this.chunks.push(chunk); + return this; + } + /** + * Write a `uint32` value, an unsigned 32 bit varint. + */ + uint32(value) { + assert_1.assertUInt32(value); + // write value as varint 32, inlined for speed + while (value > 0x7f) { + this.buf.push((value & 0x7f) | 0x80); + value = value >>> 7; } - return payload; + this.buf.push(value); + return this; } -} -function trimEnd(str, ch) { - let len = str.length; - while (len - 1 >= 0 && str[len - 1] === ch) { - --len; + /** + * Write a `int32` value, a signed 32 bit varint. + */ + int32(value) { + assert_1.assertInt32(value); + goog_varint_1.varint32write(value, this.buf); + return this; } - return str.substr(0, len); -} -function bufferToBase64Url(buffer) { - if (!buffer) { - return undefined; + /** + * Write a `bool` value, a variant. + */ + bool(value) { + this.buf.push(value ? 1 : 0); + return this; } - if (!(buffer instanceof Uint8Array)) { - throw new Error(`Please provide an input of type Uint8Array for converting to Base64Url.`); + /** + * Write a `bytes` value, length-delimited arbitrary data. + */ + bytes(value) { + this.uint32(value.byteLength); // write length of chunk as varint + return this.raw(value); } - // Uint8Array to Base64. - const str = encodeByteArray(buffer); - // Base64 to Base64Url. - return trimEnd(str, "=").replace(/\+/g, "-").replace(/\//g, "_"); -} -function base64UrlToByteArray(str) { - if (!str) { - return undefined; + /** + * Write a `string` value, length-delimited data converted to UTF-8 text. + */ + string(value) { + let chunk = this.textEncoder.encode(value); + this.uint32(chunk.byteLength); // write length of chunk as varint + return this.raw(chunk); } - if (str && typeof str.valueOf() !== "string") { - throw new Error("Please provide an input of type string for converting to Uint8Array"); + /** + * Write a `float` value, 32-bit floating point number. + */ + float(value) { + assert_1.assertFloat32(value); + let chunk = new Uint8Array(4); + new DataView(chunk.buffer).setFloat32(0, value, true); + return this.raw(chunk); } - // Base64Url to Base64. - str = str.replace(/-/g, "+").replace(/_/g, "/"); - // Base64 to Uint8Array. - return decodeString(str); -} -function splitSerializeName(prop) { - const classes = []; - let partialclass = ""; - if (prop) { - const subwords = prop.split("."); - for (const item of subwords) { - if (item.charAt(item.length - 1) === "\\") { - partialclass += item.substr(0, item.length - 1) + "."; - } - else { - partialclass += item; - classes.push(partialclass); - partialclass = ""; - } - } + /** + * Write a `double` value, a 64-bit floating point number. + */ + double(value) { + let chunk = new Uint8Array(8); + new DataView(chunk.buffer).setFloat64(0, value, true); + return this.raw(chunk); } - return classes; -} -function dateToUnixTime(d) { - if (!d) { - return undefined; + /** + * Write a `fixed32` value, an unsigned, fixed-length 32-bit integer. + */ + fixed32(value) { + assert_1.assertUInt32(value); + let chunk = new Uint8Array(4); + new DataView(chunk.buffer).setUint32(0, value, true); + return this.raw(chunk); } - if (typeof d.valueOf() === "string") { - d = new Date(d); + /** + * Write a `sfixed32` value, a signed, fixed-length 32-bit integer. + */ + sfixed32(value) { + assert_1.assertInt32(value); + let chunk = new Uint8Array(4); + new DataView(chunk.buffer).setInt32(0, value, true); + return this.raw(chunk); } - return Math.floor(d.getTime() / 1000); -} -function unixTimeToDate(n) { - if (!n) { - return undefined; + /** + * Write a `sint32` value, a signed, zigzag-encoded 32-bit varint. + */ + sint32(value) { + assert_1.assertInt32(value); + // zigzag encode + value = ((value << 1) ^ (value >> 31)) >>> 0; + goog_varint_1.varint32write(value, this.buf); + return this; } - return new Date(n * 1000); -} -function serializeBasicTypes(typeName, objectName, value) { - if (value !== null && value !== undefined) { - if (typeName.match(/^Number$/i) !== null) { - if (typeof value !== "number") { - throw new Error(`${objectName} with value ${value} must be of type number.`); - } - } - else if (typeName.match(/^String$/i) !== null) { - if (typeof value.valueOf() !== "string") { - throw new Error(`${objectName} with value "${value}" must be of type string.`); - } - } - else if (typeName.match(/^Uuid$/i) !== null) { - if (!(typeof value.valueOf() === "string" && isValidUuid(value))) { - throw new Error(`${objectName} with value "${value}" must be of type string and a valid uuid.`); - } - } - else if (typeName.match(/^Boolean$/i) !== null) { - if (typeof value !== "boolean") { - throw new Error(`${objectName} with value ${value} must be of type boolean.`); - } - } - else if (typeName.match(/^Stream$/i) !== null) { - const objectType = typeof value; - if (objectType !== "string" && - objectType !== "function" && - !(value instanceof ArrayBuffer) && - !ArrayBuffer.isView(value) && - !((typeof Blob === "function" || typeof Blob === "object") && value instanceof Blob)) { - throw new Error(`${objectName} must be a string, Blob, ArrayBuffer, ArrayBufferView, or a function returning NodeJS.ReadableStream.`); - } - } + /** + * Write a `fixed64` value, a signed, fixed-length 64-bit integer. + */ + sfixed64(value) { + let chunk = new Uint8Array(8); + let view = new DataView(chunk.buffer); + let long = pb_long_1.PbLong.from(value); + view.setInt32(0, long.lo, true); + view.setInt32(4, long.hi, true); + return this.raw(chunk); } - return value; -} -function serializeEnumType(objectName, allowedValues, value) { - if (!allowedValues) { - throw new Error(`Please provide a set of allowedValues to validate ${objectName} as an Enum Type.`); + /** + * Write a `fixed64` value, an unsigned, fixed-length 64 bit integer. + */ + fixed64(value) { + let chunk = new Uint8Array(8); + let view = new DataView(chunk.buffer); + let long = pb_long_1.PbULong.from(value); + view.setInt32(0, long.lo, true); + view.setInt32(4, long.hi, true); + return this.raw(chunk); } - const isPresent = allowedValues.some((item) => { - if (typeof item.valueOf() === "string") { - return item.toLowerCase() === value.toLowerCase(); - } - return item === value; - }); - if (!isPresent) { - throw new Error(`${value} is not a valid value for ${objectName}. The valid values are: ${JSON.stringify(allowedValues)}.`); + /** + * Write a `int64` value, a signed 64-bit varint. + */ + int64(value) { + let long = pb_long_1.PbLong.from(value); + goog_varint_1.varint64write(long.lo, long.hi, this.buf); + return this; } - return value; -} -function serializeByteArrayType(objectName, value) { - let returnValue = ""; - if (value != undefined) { - if (!(value instanceof Uint8Array)) { - throw new Error(`${objectName} must be of type Uint8Array.`); - } - returnValue = encodeByteArray(value); + /** + * Write a `sint64` value, a signed, zig-zag-encoded 64-bit varint. + */ + sint64(value) { + let long = pb_long_1.PbLong.from(value), + // zigzag encode + sign = long.hi >> 31, lo = (long.lo << 1) ^ sign, hi = ((long.hi << 1) | (long.lo >>> 31)) ^ sign; + goog_varint_1.varint64write(lo, hi, this.buf); + return this; } - return returnValue; -} -function serializeBase64UrlType(objectName, value) { - let returnValue = ""; - if (value != undefined) { - if (!(value instanceof Uint8Array)) { - throw new Error(`${objectName} must be of type Uint8Array.`); - } - returnValue = bufferToBase64Url(value) || ""; + /** + * Write a `uint64` value, an unsigned 64-bit varint. + */ + uint64(value) { + let long = pb_long_1.PbULong.from(value); + goog_varint_1.varint64write(long.lo, long.hi, this.buf); + return this; } - return returnValue; } -function serializeDateTypes(typeName, value, objectName) { - if (value != undefined) { - if (typeName.match(/^Date$/i) !== null) { - if (!(value instanceof Date || - (typeof value.valueOf() === "string" && !isNaN(Date.parse(value))))) { - throw new Error(`${objectName} must be an instanceof Date or a string in ISO8601 format.`); - } - value = - value instanceof Date - ? value.toISOString().substring(0, 10) - : new Date(value).toISOString().substring(0, 10); - } - else if (typeName.match(/^DateTime$/i) !== null) { - if (!(value instanceof Date || - (typeof value.valueOf() === "string" && !isNaN(Date.parse(value))))) { - throw new Error(`${objectName} must be an instanceof Date or a string in ISO8601 format.`); - } - value = value instanceof Date ? value.toISOString() : new Date(value).toISOString(); - } - else if (typeName.match(/^DateTimeRfc1123$/i) !== null) { - if (!(value instanceof Date || - (typeof value.valueOf() === "string" && !isNaN(Date.parse(value))))) { - throw new Error(`${objectName} must be an instanceof Date or a string in RFC-1123 format.`); - } - value = value instanceof Date ? value.toUTCString() : new Date(value).toUTCString(); - } - else if (typeName.match(/^UnixTime$/i) !== null) { - if (!(value instanceof Date || - (typeof value.valueOf() === "string" && !isNaN(Date.parse(value))))) { - throw new Error(`${objectName} must be an instanceof Date or a string in RFC-1123/ISO8601 format ` + - `for it to be serialized in UnixTime/Epoch format.`); - } - value = dateToUnixTime(value); +exports.BinaryWriter = BinaryWriter; + + +/***/ }), + +/***/ 20085: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.listEnumNumbers = exports.listEnumNames = exports.listEnumValues = exports.isEnumObject = void 0; +/** + * Is this a lookup object generated by Typescript, for a Typescript enum + * generated by protobuf-ts? + * + * - No `const enum` (enum must not be inlined, we need reverse mapping). + * - No string enum (we need int32 for protobuf). + * - Must have a value for 0 (otherwise, we would need to support custom default values). + */ +function isEnumObject(arg) { + if (typeof arg != 'object' || arg === null) { + return false; + } + if (!arg.hasOwnProperty(0)) { + return false; + } + for (let k of Object.keys(arg)) { + let num = parseInt(k); + if (!Number.isNaN(num)) { + // is there a name for the number? + let nam = arg[num]; + if (nam === undefined) + return false; + // does the name resolve back to the number? + if (arg[nam] !== num) + return false; } - else if (typeName.match(/^TimeSpan$/i) !== null) { - if (!isDuration(value)) { - throw new Error(`${objectName} must be a string in ISO 8601 format. Instead was "${value}".`); - } + else { + // is there a number for the name? + let num = arg[k]; + if (num === undefined) + return false; + // is it a string enum? + if (typeof num !== 'number') + return false; + // do we know the number? + if (arg[num] === undefined) + return false; } } - return value; + return true; } -function serializeSequenceType(serializer, mapper, object, objectName, isXml, options) { - if (!Array.isArray(object)) { - throw new Error(`${objectName} must be of type Array.`); +exports.isEnumObject = isEnumObject; +/** + * Lists all values of a Typescript enum, as an array of objects with a "name" + * property and a "number" property. + * + * Note that it is possible that a number appears more than once, because it is + * possible to have aliases in an enum. + * + * Throws if the enum does not adhere to the rules of enums generated by + * protobuf-ts. See `isEnumObject()`. + */ +function listEnumValues(enumObject) { + if (!isEnumObject(enumObject)) + throw new Error("not a typescript enum object"); + let values = []; + for (let [name, number] of Object.entries(enumObject)) + if (typeof number == "number") + values.push({ name, number }); + return values; +} +exports.listEnumValues = listEnumValues; +/** + * Lists the names of a Typescript enum. + * + * Throws if the enum does not adhere to the rules of enums generated by + * protobuf-ts. See `isEnumObject()`. + */ +function listEnumNames(enumObject) { + return listEnumValues(enumObject).map(val => val.name); +} +exports.listEnumNames = listEnumNames; +/** + * Lists the numbers of a Typescript enum. + * + * Throws if the enum does not adhere to the rules of enums generated by + * protobuf-ts. See `isEnumObject()`. + */ +function listEnumNumbers(enumObject) { + return listEnumValues(enumObject) + .map(val => val.number) + .filter((num, index, arr) => arr.indexOf(num) == index); +} +exports.listEnumNumbers = listEnumNumbers; + + +/***/ }), + +/***/ 30433: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +// Copyright 2008 Google Inc. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Code generated by the Protocol Buffer compiler is owned by the owner +// of the input file used when generating it. This code is not +// standalone and requires a support library to be linked with it. This +// support library is itself covered by the above license. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.varint32read = exports.varint32write = exports.int64toString = exports.int64fromString = exports.varint64write = exports.varint64read = void 0; +/** + * Read a 64 bit varint as two JS numbers. + * + * Returns tuple: + * [0]: low bits + * [0]: high bits + * + * Copyright 2008 Google Inc. All rights reserved. + * + * See https://github.com/protocolbuffers/protobuf/blob/8a71927d74a4ce34efe2d8769fda198f52d20d12/js/experimental/runtime/kernel/buffer_decoder.js#L175 + */ +function varint64read() { + let lowBits = 0; + let highBits = 0; + for (let shift = 0; shift < 28; shift += 7) { + let b = this.buf[this.pos++]; + lowBits |= (b & 0x7F) << shift; + if ((b & 0x80) == 0) { + this.assertBounds(); + return [lowBits, highBits]; + } + } + let middleByte = this.buf[this.pos++]; + // last four bits of the first 32 bit number + lowBits |= (middleByte & 0x0F) << 28; + // 3 upper bits are part of the next 32 bit number + highBits = (middleByte & 0x70) >> 4; + if ((middleByte & 0x80) == 0) { + this.assertBounds(); + return [lowBits, highBits]; + } + for (let shift = 3; shift <= 31; shift += 7) { + let b = this.buf[this.pos++]; + highBits |= (b & 0x7F) << shift; + if ((b & 0x80) == 0) { + this.assertBounds(); + return [lowBits, highBits]; + } + } + throw new Error('invalid varint'); +} +exports.varint64read = varint64read; +/** + * Write a 64 bit varint, given as two JS numbers, to the given bytes array. + * + * Copyright 2008 Google Inc. All rights reserved. + * + * See https://github.com/protocolbuffers/protobuf/blob/8a71927d74a4ce34efe2d8769fda198f52d20d12/js/experimental/runtime/kernel/writer.js#L344 + */ +function varint64write(lo, hi, bytes) { + for (let i = 0; i < 28; i = i + 7) { + const shift = lo >>> i; + const hasNext = !((shift >>> 7) == 0 && hi == 0); + const byte = (hasNext ? shift | 0x80 : shift) & 0xFF; + bytes.push(byte); + if (!hasNext) { + return; + } } - const elementType = mapper.type.element; - if (!elementType || typeof elementType !== "object") { - throw new Error(`element" metadata for an Array must be defined in the ` + - `mapper and it must of type "object" in ${objectName}.`); + const splitBits = ((lo >>> 28) & 0x0F) | ((hi & 0x07) << 4); + const hasMoreBits = !((hi >> 3) == 0); + bytes.push((hasMoreBits ? splitBits | 0x80 : splitBits) & 0xFF); + if (!hasMoreBits) { + return; } - const tempArray = []; - for (let i = 0; i < object.length; i++) { - const serializedValue = serializer.serialize(elementType, object[i], objectName, options); - if (isXml && elementType.xmlNamespace) { - const xmlnsKey = elementType.xmlNamespacePrefix - ? `xmlns:${elementType.xmlNamespacePrefix}` - : "xmlns"; - if (elementType.type.name === "Composite") { - tempArray[i] = Object.assign({}, serializedValue); - tempArray[i][XML_ATTRKEY] = { [xmlnsKey]: elementType.xmlNamespace }; - } - else { - tempArray[i] = {}; - tempArray[i][options.xmlCharKey] = serializedValue; - tempArray[i][XML_ATTRKEY] = { [xmlnsKey]: elementType.xmlNamespace }; - } + for (let i = 3; i < 31; i = i + 7) { + const shift = hi >>> i; + const hasNext = !((shift >>> 7) == 0); + const byte = (hasNext ? shift | 0x80 : shift) & 0xFF; + bytes.push(byte); + if (!hasNext) { + return; } - else { - tempArray[i] = serializedValue; + } + bytes.push((hi >>> 31) & 0x01); +} +exports.varint64write = varint64write; +// constants for binary math +const TWO_PWR_32_DBL = (1 << 16) * (1 << 16); +/** + * Parse decimal string of 64 bit integer value as two JS numbers. + * + * Returns tuple: + * [0]: minus sign? + * [1]: low bits + * [2]: high bits + * + * Copyright 2008 Google Inc. + */ +function int64fromString(dec) { + // Check for minus sign. + let minus = dec[0] == '-'; + if (minus) + dec = dec.slice(1); + // Work 6 decimal digits at a time, acting like we're converting base 1e6 + // digits to binary. This is safe to do with floating point math because + // Number.isSafeInteger(ALL_32_BITS * 1e6) == true. + const base = 1e6; + let lowBits = 0; + let highBits = 0; + function add1e6digit(begin, end) { + // Note: Number('') is 0. + const digit1e6 = Number(dec.slice(begin, end)); + highBits *= base; + lowBits = lowBits * base + digit1e6; + // Carry bits from lowBits to highBits + if (lowBits >= TWO_PWR_32_DBL) { + highBits = highBits + ((lowBits / TWO_PWR_32_DBL) | 0); + lowBits = lowBits % TWO_PWR_32_DBL; + } + } + add1e6digit(-24, -18); + add1e6digit(-18, -12); + add1e6digit(-12, -6); + add1e6digit(-6); + return [minus, lowBits, highBits]; +} +exports.int64fromString = int64fromString; +/** + * Format 64 bit integer value (as two JS numbers) to decimal string. + * + * Copyright 2008 Google Inc. + */ +function int64toString(bitsLow, bitsHigh) { + // Skip the expensive conversion if the number is small enough to use the + // built-in conversions. + if ((bitsHigh >>> 0) <= 0x1FFFFF) { + return '' + (TWO_PWR_32_DBL * bitsHigh + (bitsLow >>> 0)); + } + // What this code is doing is essentially converting the input number from + // base-2 to base-1e7, which allows us to represent the 64-bit range with + // only 3 (very large) digits. Those digits are then trivial to convert to + // a base-10 string. + // The magic numbers used here are - + // 2^24 = 16777216 = (1,6777216) in base-1e7. + // 2^48 = 281474976710656 = (2,8147497,6710656) in base-1e7. + // Split 32:32 representation into 16:24:24 representation so our + // intermediate digits don't overflow. + let low = bitsLow & 0xFFFFFF; + let mid = (((bitsLow >>> 24) | (bitsHigh << 8)) >>> 0) & 0xFFFFFF; + let high = (bitsHigh >> 16) & 0xFFFF; + // Assemble our three base-1e7 digits, ignoring carries. The maximum + // value in a digit at this step is representable as a 48-bit integer, which + // can be stored in a 64-bit floating point number. + let digitA = low + (mid * 6777216) + (high * 6710656); + let digitB = mid + (high * 8147497); + let digitC = (high * 2); + // Apply carries from A to B and from B to C. + let base = 10000000; + if (digitA >= base) { + digitB += Math.floor(digitA / base); + digitA %= base; + } + if (digitB >= base) { + digitC += Math.floor(digitB / base); + digitB %= base; + } + // Convert base-1e7 digits to base-10, with optional leading zeroes. + function decimalFrom1e7(digit1e7, needLeadingZeros) { + let partial = digit1e7 ? String(digit1e7) : ''; + if (needLeadingZeros) { + return '0000000'.slice(partial.length) + partial; + } + return partial; + } + return decimalFrom1e7(digitC, /*needLeadingZeros=*/ 0) + + decimalFrom1e7(digitB, /*needLeadingZeros=*/ digitC) + + // If the final 1e7 digit didn't need leading zeros, we would have + // returned via the trivial code path at the top. + decimalFrom1e7(digitA, /*needLeadingZeros=*/ 1); +} +exports.int64toString = int64toString; +/** + * Write a 32 bit varint, signed or unsigned. Same as `varint64write(0, value, bytes)` + * + * Copyright 2008 Google Inc. All rights reserved. + * + * See https://github.com/protocolbuffers/protobuf/blob/1b18833f4f2a2f681f4e4a25cdf3b0a43115ec26/js/binary/encoder.js#L144 + */ +function varint32write(value, bytes) { + if (value >= 0) { + // write value as varint 32 + while (value > 0x7f) { + bytes.push((value & 0x7f) | 0x80); + value = value >>> 7; } + bytes.push(value); + } + else { + for (let i = 0; i < 9; i++) { + bytes.push(value & 127 | 128); + value = value >> 7; + } + bytes.push(1); } - return tempArray; } -function serializeDictionaryType(serializer, mapper, object, objectName, isXml, options) { - if (typeof object !== "object") { - throw new Error(`${objectName} must be of type object.`); +exports.varint32write = varint32write; +/** + * Read an unsigned 32 bit varint. + * + * See https://github.com/protocolbuffers/protobuf/blob/8a71927d74a4ce34efe2d8769fda198f52d20d12/js/experimental/runtime/kernel/buffer_decoder.js#L220 + */ +function varint32read() { + let b = this.buf[this.pos++]; + let result = b & 0x7F; + if ((b & 0x80) == 0) { + this.assertBounds(); + return result; } - const valueType = mapper.type.value; - if (!valueType || typeof valueType !== "object") { - throw new Error(`"value" metadata for a Dictionary must be defined in the ` + - `mapper and it must of type "object" in ${objectName}.`); + b = this.buf[this.pos++]; + result |= (b & 0x7F) << 7; + if ((b & 0x80) == 0) { + this.assertBounds(); + return result; } - const tempDictionary = {}; - for (const key of Object.keys(object)) { - const serializedValue = serializer.serialize(valueType, object[key], objectName, options); - // If the element needs an XML namespace we need to add it within the $ property - tempDictionary[key] = getXmlObjectValue(valueType, serializedValue, isXml, options); + b = this.buf[this.pos++]; + result |= (b & 0x7F) << 14; + if ((b & 0x80) == 0) { + this.assertBounds(); + return result; } - // Add the namespace to the root element if needed - if (isXml && mapper.xmlNamespace) { - const xmlnsKey = mapper.xmlNamespacePrefix ? `xmlns:${mapper.xmlNamespacePrefix}` : "xmlns"; - const result = tempDictionary; - result[XML_ATTRKEY] = { [xmlnsKey]: mapper.xmlNamespace }; + b = this.buf[this.pos++]; + result |= (b & 0x7F) << 21; + if ((b & 0x80) == 0) { + this.assertBounds(); return result; } - return tempDictionary; + // Extract only last 4 bits + b = this.buf[this.pos++]; + result |= (b & 0x0F) << 28; + for (let readBytes = 5; ((b & 0x80) !== 0) && readBytes < 10; readBytes++) + b = this.buf[this.pos++]; + if ((b & 0x80) != 0) + throw new Error('invalid varint'); + this.assertBounds(); + // Result can have 32 bits, convert it to unsigned + return result >>> 0; +} +exports.varint32read = varint32read; + + +/***/ }), + +/***/ 4061: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Public API of the protobuf-ts runtime. +// Note: we do not use `export * from ...` to help tree shakers, +// webpack verbose output hints that this should be useful +Object.defineProperty(exports, "__esModule", ({ value: true })); +// Convenience JSON typings and corresponding type guards +var json_typings_1 = __nccwpck_require__(70661); +Object.defineProperty(exports, "typeofJsonValue", ({ enumerable: true, get: function () { return json_typings_1.typeofJsonValue; } })); +Object.defineProperty(exports, "isJsonObject", ({ enumerable: true, get: function () { return json_typings_1.isJsonObject; } })); +// Base 64 encoding +var base64_1 = __nccwpck_require__(20196); +Object.defineProperty(exports, "base64decode", ({ enumerable: true, get: function () { return base64_1.base64decode; } })); +Object.defineProperty(exports, "base64encode", ({ enumerable: true, get: function () { return base64_1.base64encode; } })); +// UTF8 encoding +var protobufjs_utf8_1 = __nccwpck_require__(95290); +Object.defineProperty(exports, "utf8read", ({ enumerable: true, get: function () { return protobufjs_utf8_1.utf8read; } })); +// Binary format contracts, options for reading and writing, for example +var binary_format_contract_1 = __nccwpck_require__(84921); +Object.defineProperty(exports, "WireType", ({ enumerable: true, get: function () { return binary_format_contract_1.WireType; } })); +Object.defineProperty(exports, "mergeBinaryOptions", ({ enumerable: true, get: function () { return binary_format_contract_1.mergeBinaryOptions; } })); +Object.defineProperty(exports, "UnknownFieldHandler", ({ enumerable: true, get: function () { return binary_format_contract_1.UnknownFieldHandler; } })); +// Standard IBinaryReader implementation +var binary_reader_1 = __nccwpck_require__(65210); +Object.defineProperty(exports, "BinaryReader", ({ enumerable: true, get: function () { return binary_reader_1.BinaryReader; } })); +Object.defineProperty(exports, "binaryReadOptions", ({ enumerable: true, get: function () { return binary_reader_1.binaryReadOptions; } })); +// Standard IBinaryWriter implementation +var binary_writer_1 = __nccwpck_require__(44354); +Object.defineProperty(exports, "BinaryWriter", ({ enumerable: true, get: function () { return binary_writer_1.BinaryWriter; } })); +Object.defineProperty(exports, "binaryWriteOptions", ({ enumerable: true, get: function () { return binary_writer_1.binaryWriteOptions; } })); +// Int64 and UInt64 implementations required for the binary format +var pb_long_1 = __nccwpck_require__(47777); +Object.defineProperty(exports, "PbLong", ({ enumerable: true, get: function () { return pb_long_1.PbLong; } })); +Object.defineProperty(exports, "PbULong", ({ enumerable: true, get: function () { return pb_long_1.PbULong; } })); +// JSON format contracts, options for reading and writing, for example +var json_format_contract_1 = __nccwpck_require__(48139); +Object.defineProperty(exports, "jsonReadOptions", ({ enumerable: true, get: function () { return json_format_contract_1.jsonReadOptions; } })); +Object.defineProperty(exports, "jsonWriteOptions", ({ enumerable: true, get: function () { return json_format_contract_1.jsonWriteOptions; } })); +Object.defineProperty(exports, "mergeJsonOptions", ({ enumerable: true, get: function () { return json_format_contract_1.mergeJsonOptions; } })); +// Message type contract +var message_type_contract_1 = __nccwpck_require__(1682); +Object.defineProperty(exports, "MESSAGE_TYPE", ({ enumerable: true, get: function () { return message_type_contract_1.MESSAGE_TYPE; } })); +// Message type implementation via reflection +var message_type_1 = __nccwpck_require__(63664); +Object.defineProperty(exports, "MessageType", ({ enumerable: true, get: function () { return message_type_1.MessageType; } })); +// Reflection info, generated by the plugin, exposed to the user, used by reflection ops +var reflection_info_1 = __nccwpck_require__(21370); +Object.defineProperty(exports, "ScalarType", ({ enumerable: true, get: function () { return reflection_info_1.ScalarType; } })); +Object.defineProperty(exports, "LongType", ({ enumerable: true, get: function () { return reflection_info_1.LongType; } })); +Object.defineProperty(exports, "RepeatType", ({ enumerable: true, get: function () { return reflection_info_1.RepeatType; } })); +Object.defineProperty(exports, "normalizeFieldInfo", ({ enumerable: true, get: function () { return reflection_info_1.normalizeFieldInfo; } })); +Object.defineProperty(exports, "readFieldOptions", ({ enumerable: true, get: function () { return reflection_info_1.readFieldOptions; } })); +Object.defineProperty(exports, "readFieldOption", ({ enumerable: true, get: function () { return reflection_info_1.readFieldOption; } })); +Object.defineProperty(exports, "readMessageOption", ({ enumerable: true, get: function () { return reflection_info_1.readMessageOption; } })); +// Message operations via reflection +var reflection_type_check_1 = __nccwpck_require__(20903); +Object.defineProperty(exports, "ReflectionTypeCheck", ({ enumerable: true, get: function () { return reflection_type_check_1.ReflectionTypeCheck; } })); +var reflection_create_1 = __nccwpck_require__(60390); +Object.defineProperty(exports, "reflectionCreate", ({ enumerable: true, get: function () { return reflection_create_1.reflectionCreate; } })); +var reflection_scalar_default_1 = __nccwpck_require__(74863); +Object.defineProperty(exports, "reflectionScalarDefault", ({ enumerable: true, get: function () { return reflection_scalar_default_1.reflectionScalarDefault; } })); +var reflection_merge_partial_1 = __nccwpck_require__(7869); +Object.defineProperty(exports, "reflectionMergePartial", ({ enumerable: true, get: function () { return reflection_merge_partial_1.reflectionMergePartial; } })); +var reflection_equals_1 = __nccwpck_require__(39473); +Object.defineProperty(exports, "reflectionEquals", ({ enumerable: true, get: function () { return reflection_equals_1.reflectionEquals; } })); +var reflection_binary_reader_1 = __nccwpck_require__(91593); +Object.defineProperty(exports, "ReflectionBinaryReader", ({ enumerable: true, get: function () { return reflection_binary_reader_1.ReflectionBinaryReader; } })); +var reflection_binary_writer_1 = __nccwpck_require__(57170); +Object.defineProperty(exports, "ReflectionBinaryWriter", ({ enumerable: true, get: function () { return reflection_binary_writer_1.ReflectionBinaryWriter; } })); +var reflection_json_reader_1 = __nccwpck_require__(229); +Object.defineProperty(exports, "ReflectionJsonReader", ({ enumerable: true, get: function () { return reflection_json_reader_1.ReflectionJsonReader; } })); +var reflection_json_writer_1 = __nccwpck_require__(68980); +Object.defineProperty(exports, "ReflectionJsonWriter", ({ enumerable: true, get: function () { return reflection_json_writer_1.ReflectionJsonWriter; } })); +var reflection_contains_message_type_1 = __nccwpck_require__(67317); +Object.defineProperty(exports, "containsMessageType", ({ enumerable: true, get: function () { return reflection_contains_message_type_1.containsMessageType; } })); +// Oneof helpers +var oneof_1 = __nccwpck_require__(78531); +Object.defineProperty(exports, "isOneofGroup", ({ enumerable: true, get: function () { return oneof_1.isOneofGroup; } })); +Object.defineProperty(exports, "setOneofValue", ({ enumerable: true, get: function () { return oneof_1.setOneofValue; } })); +Object.defineProperty(exports, "getOneofValue", ({ enumerable: true, get: function () { return oneof_1.getOneofValue; } })); +Object.defineProperty(exports, "clearOneofValue", ({ enumerable: true, get: function () { return oneof_1.clearOneofValue; } })); +Object.defineProperty(exports, "getSelectedOneofValue", ({ enumerable: true, get: function () { return oneof_1.getSelectedOneofValue; } })); +// Enum object type guard and reflection util, may be interesting to the user. +var enum_object_1 = __nccwpck_require__(20085); +Object.defineProperty(exports, "listEnumValues", ({ enumerable: true, get: function () { return enum_object_1.listEnumValues; } })); +Object.defineProperty(exports, "listEnumNames", ({ enumerable: true, get: function () { return enum_object_1.listEnumNames; } })); +Object.defineProperty(exports, "listEnumNumbers", ({ enumerable: true, get: function () { return enum_object_1.listEnumNumbers; } })); +Object.defineProperty(exports, "isEnumObject", ({ enumerable: true, get: function () { return enum_object_1.isEnumObject; } })); +// lowerCamelCase() is exported for plugin, rpc-runtime and other rpc packages +var lower_camel_case_1 = __nccwpck_require__(34772); +Object.defineProperty(exports, "lowerCamelCase", ({ enumerable: true, get: function () { return lower_camel_case_1.lowerCamelCase; } })); +// assertion functions are exported for plugin, may also be useful to user +var assert_1 = __nccwpck_require__(54253); +Object.defineProperty(exports, "assert", ({ enumerable: true, get: function () { return assert_1.assert; } })); +Object.defineProperty(exports, "assertNever", ({ enumerable: true, get: function () { return assert_1.assertNever; } })); +Object.defineProperty(exports, "assertInt32", ({ enumerable: true, get: function () { return assert_1.assertInt32; } })); +Object.defineProperty(exports, "assertUInt32", ({ enumerable: true, get: function () { return assert_1.assertUInt32; } })); +Object.defineProperty(exports, "assertFloat32", ({ enumerable: true, get: function () { return assert_1.assertFloat32; } })); + + +/***/ }), + +/***/ 48139: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.mergeJsonOptions = exports.jsonWriteOptions = exports.jsonReadOptions = void 0; +const defaultsWrite = { + emitDefaultValues: false, + enumAsInteger: false, + useProtoFieldName: false, + prettySpaces: 0, +}, defaultsRead = { + ignoreUnknownFields: false, +}; +/** + * Make options for reading JSON data from partial options. + */ +function jsonReadOptions(options) { + return options ? Object.assign(Object.assign({}, defaultsRead), options) : defaultsRead; } +exports.jsonReadOptions = jsonReadOptions; /** - * Resolves the additionalProperties property from a referenced mapper. - * @param serializer - The serializer containing the entire set of mappers. - * @param mapper - The composite mapper to resolve. - * @param objectName - Name of the object being serialized. + * Make options for writing JSON data from partial options. */ -function resolveAdditionalProperties(serializer, mapper, objectName) { - const additionalProperties = mapper.type.additionalProperties; - if (!additionalProperties && mapper.type.className) { - const modelMapper = resolveReferencedMapper(serializer, mapper, objectName); - return modelMapper === null || modelMapper === void 0 ? void 0 : modelMapper.type.additionalProperties; - } - return additionalProperties; +function jsonWriteOptions(options) { + return options ? Object.assign(Object.assign({}, defaultsWrite), options) : defaultsWrite; } +exports.jsonWriteOptions = jsonWriteOptions; /** - * Finds the mapper referenced by `className`. - * @param serializer - The serializer containing the entire set of mappers - * @param mapper - The composite mapper to resolve - * @param objectName - Name of the object being serialized + * Merges JSON write or read options. Later values override earlier values. Type registries are merged. */ -function resolveReferencedMapper(serializer, mapper, objectName) { - const className = mapper.type.className; - if (!className) { - throw new Error(`Class name for model "${objectName}" is not provided in the mapper "${JSON.stringify(mapper, undefined, 2)}".`); +function mergeJsonOptions(a, b) { + var _a, _b; + let c = Object.assign(Object.assign({}, a), b); + c.typeRegistry = [...((_a = a === null || a === void 0 ? void 0 : a.typeRegistry) !== null && _a !== void 0 ? _a : []), ...((_b = b === null || b === void 0 ? void 0 : b.typeRegistry) !== null && _b !== void 0 ? _b : [])]; + return c; +} +exports.mergeJsonOptions = mergeJsonOptions; + + +/***/ }), + +/***/ 70661: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.isJsonObject = exports.typeofJsonValue = void 0; +/** + * Get the type of a JSON value. + * Distinguishes between array, null and object. + */ +function typeofJsonValue(value) { + let t = typeof value; + if (t == "object") { + if (Array.isArray(value)) + return "array"; + if (value === null) + return "null"; } - return serializer.modelMappers[className]; + return t; } +exports.typeofJsonValue = typeofJsonValue; /** - * Resolves a composite mapper's modelProperties. - * @param serializer - The serializer containing the entire set of mappers - * @param mapper - The composite mapper to resolve + * Is this a JSON object (instead of an array or null)? */ -function resolveModelProperties(serializer, mapper, objectName) { - let modelProps = mapper.type.modelProperties; - if (!modelProps) { - const modelMapper = resolveReferencedMapper(serializer, mapper, objectName); - if (!modelMapper) { - throw new Error(`mapper() cannot be null or undefined for model "${mapper.type.className}".`); +function isJsonObject(value) { + return value !== null && typeof value == "object" && !Array.isArray(value); +} +exports.isJsonObject = isJsonObject; + + +/***/ }), + +/***/ 34772: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.lowerCamelCase = void 0; +/** + * Converts snake_case to lowerCamelCase. + * + * Should behave like protoc: + * https://github.com/protocolbuffers/protobuf/blob/e8ae137c96444ea313485ed1118c5e43b2099cf1/src/google/protobuf/compiler/java/java_helpers.cc#L118 + */ +function lowerCamelCase(snakeCase) { + let capNext = false; + const sb = []; + for (let i = 0; i < snakeCase.length; i++) { + let next = snakeCase.charAt(i); + if (next == '_') { + capNext = true; } - modelProps = modelMapper === null || modelMapper === void 0 ? void 0 : modelMapper.type.modelProperties; - if (!modelProps) { - throw new Error(`modelProperties cannot be null or undefined in the ` + - `mapper "${JSON.stringify(modelMapper)}" of type "${mapper.type.className}" for object "${objectName}".`); + else if (/\d/.test(next)) { + sb.push(next); + capNext = true; + } + else if (capNext) { + sb.push(next.toUpperCase()); + capNext = false; + } + else if (i == 0) { + sb.push(next.toLowerCase()); + } + else { + sb.push(next); } } - return modelProps; + return sb.join(''); } -function serializeCompositeType(serializer, mapper, object, objectName, isXml, options) { - if (getPolymorphicDiscriminatorRecursively(serializer, mapper)) { - mapper = getPolymorphicMapper(serializer, mapper, object, "clientName"); - } - if (object != undefined) { - const payload = {}; - const modelProps = resolveModelProperties(serializer, mapper, objectName); - for (const key of Object.keys(modelProps)) { - const propertyMapper = modelProps[key]; - if (propertyMapper.readOnly) { - continue; - } - let propName; - let parentObject = payload; - if (serializer.isXML) { - if (propertyMapper.xmlIsWrapped) { - propName = propertyMapper.xmlName; - } - else { - propName = propertyMapper.xmlElementName || propertyMapper.xmlName; - } - } - else { - const paths = splitSerializeName(propertyMapper.serializedName); - propName = paths.pop(); - for (const pathName of paths) { - const childObject = parentObject[pathName]; - if (childObject == undefined && - (object[key] != undefined || propertyMapper.defaultValue !== undefined)) { - parentObject[pathName] = {}; - } - parentObject = parentObject[pathName]; - } - } - if (parentObject != undefined) { - if (isXml && mapper.xmlNamespace) { - const xmlnsKey = mapper.xmlNamespacePrefix - ? `xmlns:${mapper.xmlNamespacePrefix}` - : "xmlns"; - parentObject[XML_ATTRKEY] = Object.assign(Object.assign({}, parentObject[XML_ATTRKEY]), { [xmlnsKey]: mapper.xmlNamespace }); - } - const propertyObjectName = propertyMapper.serializedName !== "" - ? objectName + "." + propertyMapper.serializedName - : objectName; - let toSerialize = object[key]; - const polymorphicDiscriminator = getPolymorphicDiscriminatorRecursively(serializer, mapper); - if (polymorphicDiscriminator && - polymorphicDiscriminator.clientName === key && - toSerialize == undefined) { - toSerialize = mapper.serializedName; - } - const serializedValue = serializer.serialize(propertyMapper, toSerialize, propertyObjectName, options); - if (serializedValue !== undefined && propName != undefined) { - const value = getXmlObjectValue(propertyMapper, serializedValue, isXml, options); - if (isXml && propertyMapper.xmlIsAttribute) { - // XML_ATTRKEY, i.e., $ is the key attributes are kept under in xml2js. - // This keeps things simple while preventing name collision - // with names in user documents. - parentObject[XML_ATTRKEY] = parentObject[XML_ATTRKEY] || {}; - parentObject[XML_ATTRKEY][propName] = serializedValue; - } - else if (isXml && propertyMapper.xmlIsWrapped) { - parentObject[propName] = { [propertyMapper.xmlElementName]: value }; - } - else { - parentObject[propName] = value; - } - } - } - } - const additionalPropertiesMapper = resolveAdditionalProperties(serializer, mapper, objectName); - if (additionalPropertiesMapper) { - const propNames = Object.keys(modelProps); - for (const clientPropName in object) { - const isAdditionalProperty = propNames.every((pn) => pn !== clientPropName); - if (isAdditionalProperty) { - payload[clientPropName] = serializer.serialize(additionalPropertiesMapper, object[clientPropName], objectName + '["' + clientPropName + '"]', options); - } - } - } - return payload; - } - return object; -} -function getXmlObjectValue(propertyMapper, serializedValue, isXml, options) { - if (!isXml || !propertyMapper.xmlNamespace) { - return serializedValue; - } - const xmlnsKey = propertyMapper.xmlNamespacePrefix - ? `xmlns:${propertyMapper.xmlNamespacePrefix}` - : "xmlns"; - const xmlNamespace = { [xmlnsKey]: propertyMapper.xmlNamespace }; - if (["Composite"].includes(propertyMapper.type.name)) { - if (serializedValue[XML_ATTRKEY]) { - return serializedValue; - } - else { - const result = Object.assign({}, serializedValue); - result[XML_ATTRKEY] = xmlNamespace; - return result; - } - } - const result = {}; - result[options.xmlCharKey] = serializedValue; - result[XML_ATTRKEY] = xmlNamespace; - return result; -} -function isSpecialXmlProperty(propertyName, options) { - return [XML_ATTRKEY, options.xmlCharKey].includes(propertyName); -} -function deserializeCompositeType(serializer, mapper, responseBody, objectName, options) { - var _a; - if (getPolymorphicDiscriminatorRecursively(serializer, mapper)) { - mapper = getPolymorphicMapper(serializer, mapper, responseBody, "serializedName"); - } - const modelProps = resolveModelProperties(serializer, mapper, objectName); - let instance = {}; - const handledPropertyNames = []; - for (const key of Object.keys(modelProps)) { - const propertyMapper = modelProps[key]; - const paths = splitSerializeName(modelProps[key].serializedName); - handledPropertyNames.push(paths[0]); - const { serializedName, xmlName, xmlElementName } = propertyMapper; - let propertyObjectName = objectName; - if (serializedName !== "" && serializedName !== undefined) { - propertyObjectName = objectName + "." + serializedName; - } - const headerCollectionPrefix = propertyMapper.headerCollectionPrefix; - if (headerCollectionPrefix) { - const dictionary = {}; - for (const headerKey of Object.keys(responseBody)) { - if (headerKey.startsWith(headerCollectionPrefix)) { - dictionary[headerKey.substring(headerCollectionPrefix.length)] = serializer.deserialize(propertyMapper.type.value, responseBody[headerKey], propertyObjectName, options); - } - handledPropertyNames.push(headerKey); - } - instance[key] = dictionary; - } - else if (serializer.isXML) { - if (propertyMapper.xmlIsAttribute && responseBody[XML_ATTRKEY]) { - instance[key] = serializer.deserialize(propertyMapper, responseBody[XML_ATTRKEY][xmlName], propertyObjectName, options); - } - else { - const propertyName = xmlElementName || xmlName || serializedName; - if (propertyMapper.xmlIsWrapped) { - /* a list of wrapped by - For the xml example below - - ... - ... - - the responseBody has - { - Cors: { - CorsRule: [{...}, {...}] - } - } - xmlName is "Cors" and xmlElementName is"CorsRule". - */ - const wrapped = responseBody[xmlName]; - const elementList = (_a = wrapped === null || wrapped === void 0 ? void 0 : wrapped[xmlElementName]) !== null && _a !== void 0 ? _a : []; - instance[key] = serializer.deserialize(propertyMapper, elementList, propertyObjectName, options); - } - else { - const property = responseBody[propertyName]; - instance[key] = serializer.deserialize(propertyMapper, property, propertyObjectName, options); - } - } - } - else { - // deserialize the property if it is present in the provided responseBody instance - let propertyInstance; - let res = responseBody; - // traversing the object step by step. - for (const item of paths) { - if (!res) - break; - res = res[item]; - } - propertyInstance = res; - const polymorphicDiscriminator = mapper.type.polymorphicDiscriminator; - // checking that the model property name (key)(ex: "fishtype") and the - // clientName of the polymorphicDiscriminator {metadata} (ex: "fishtype") - // instead of the serializedName of the polymorphicDiscriminator (ex: "fish.type") - // is a better approach. The generator is not consistent with escaping '\.' in the - // serializedName of the property (ex: "fish\.type") that is marked as polymorphic discriminator - // and the serializedName of the metadata polymorphicDiscriminator (ex: "fish.type"). However, - // the clientName transformation of the polymorphicDiscriminator (ex: "fishtype") and - // the transformation of model property name (ex: "fishtype") is done consistently. - // Hence, it is a safer bet to rely on the clientName of the polymorphicDiscriminator. - if (polymorphicDiscriminator && - key === polymorphicDiscriminator.clientName && - propertyInstance == undefined) { - propertyInstance = mapper.serializedName; - } - let serializedValue; - // paging - if (Array.isArray(responseBody[key]) && modelProps[key].serializedName === "") { - propertyInstance = responseBody[key]; - const arrayInstance = serializer.deserialize(propertyMapper, propertyInstance, propertyObjectName, options); - // Copy over any properties that have already been added into the instance, where they do - // not exist on the newly de-serialized array - for (const [k, v] of Object.entries(instance)) { - if (!Object.prototype.hasOwnProperty.call(arrayInstance, k)) { - arrayInstance[k] = v; - } - } - instance = arrayInstance; - } - else if (propertyInstance !== undefined || propertyMapper.defaultValue !== undefined) { - serializedValue = serializer.deserialize(propertyMapper, propertyInstance, propertyObjectName, options); - instance[key] = serializedValue; - } - } - } - const additionalPropertiesMapper = mapper.type.additionalProperties; - if (additionalPropertiesMapper) { - const isAdditionalProperty = (responsePropName) => { - for (const clientPropName in modelProps) { - const paths = splitSerializeName(modelProps[clientPropName].serializedName); - if (paths[0] === responsePropName) { - return false; - } - } - return true; - }; - for (const responsePropName in responseBody) { - if (isAdditionalProperty(responsePropName)) { - instance[responsePropName] = serializer.deserialize(additionalPropertiesMapper, responseBody[responsePropName], objectName + '["' + responsePropName + '"]', options); - } - } - } - else if (responseBody) { - for (const key of Object.keys(responseBody)) { - if (instance[key] === undefined && - !handledPropertyNames.includes(key) && - !isSpecialXmlProperty(key, options)) { - instance[key] = responseBody[key]; - } - } - } - return instance; -} -function deserializeDictionaryType(serializer, mapper, responseBody, objectName, options) { - const value = mapper.type.value; - if (!value || typeof value !== "object") { - throw new Error(`"value" metadata for a Dictionary must be defined in the ` + - `mapper and it must of type "object" in ${objectName}`); - } - if (responseBody) { - const tempDictionary = {}; - for (const key of Object.keys(responseBody)) { - tempDictionary[key] = serializer.deserialize(value, responseBody[key], objectName, options); - } - return tempDictionary; - } - return responseBody; -} -function deserializeSequenceType(serializer, mapper, responseBody, objectName, options) { - const element = mapper.type.element; - if (!element || typeof element !== "object") { - throw new Error(`element" metadata for an Array must be defined in the ` + - `mapper and it must of type "object" in ${objectName}`); - } - if (responseBody) { - if (!Array.isArray(responseBody)) { - // xml2js will interpret a single element array as just the element, so force it to be an array - responseBody = [responseBody]; - } - const tempArray = []; - for (let i = 0; i < responseBody.length; i++) { - tempArray[i] = serializer.deserialize(element, responseBody[i], `${objectName}[${i}]`, options); - } - return tempArray; - } - return responseBody; -} -function getPolymorphicMapper(serializer, mapper, object, polymorphicPropertyName) { - const polymorphicDiscriminator = getPolymorphicDiscriminatorRecursively(serializer, mapper); - if (polymorphicDiscriminator) { - const discriminatorName = polymorphicDiscriminator[polymorphicPropertyName]; - if (discriminatorName != undefined) { - const discriminatorValue = object[discriminatorName]; - if (discriminatorValue != undefined) { - const typeName = mapper.type.uberParent || mapper.type.className; - const indexDiscriminator = discriminatorValue === typeName - ? discriminatorValue - : typeName + "." + discriminatorValue; - const polymorphicMapper = serializer.modelMappers.discriminators[indexDiscriminator]; - if (polymorphicMapper) { - mapper = polymorphicMapper; - } - } - } - } - return mapper; -} -function getPolymorphicDiscriminatorRecursively(serializer, mapper) { - return (mapper.type.polymorphicDiscriminator || - getPolymorphicDiscriminatorSafely(serializer, mapper.type.uberParent) || - getPolymorphicDiscriminatorSafely(serializer, mapper.type.className)); -} -function getPolymorphicDiscriminatorSafely(serializer, typeName) { - return (typeName && - serializer.modelMappers[typeName] && - serializer.modelMappers[typeName].type.polymorphicDiscriminator); -} -/** - * Utility function that serializes an object that might contain binary information into a plain object, array or a string. - */ -function serializeObject(toSerialize) { - const castToSerialize = toSerialize; - if (toSerialize == undefined) - return undefined; - if (toSerialize instanceof Uint8Array) { - toSerialize = encodeByteArray(toSerialize); - return toSerialize; - } - else if (toSerialize instanceof Date) { - return toSerialize.toISOString(); - } - else if (Array.isArray(toSerialize)) { - const array = []; - for (let i = 0; i < toSerialize.length; i++) { - array.push(serializeObject(toSerialize[i])); - } - return array; - } - else if (typeof toSerialize === "object") { - const dictionary = {}; - for (const property in toSerialize) { - dictionary[property] = serializeObject(castToSerialize[property]); - } - return dictionary; - } - return toSerialize; -} -/** - * Utility function to create a K:V from a list of strings - */ -function strEnum(o) { - const result = {}; - for (const key of o) { - result[key] = key; - } - return result; -} -/** - * String enum containing the string types of property mappers. - */ -// eslint-disable-next-line @typescript-eslint/no-redeclare -const MapperType = strEnum([ - "Base64Url", - "Boolean", - "ByteArray", - "Composite", - "Date", - "DateTime", - "DateTimeRfc1123", - "Dictionary", - "Enum", - "Number", - "Object", - "Sequence", - "String", - "Stream", - "TimeSpan", - "UnixTime", -]); +exports.lowerCamelCase = lowerCamelCase; -// Copyright (c) Microsoft Corporation. -function isWebResourceLike(object) { - if (object && typeof object === "object") { - const castObject = object; - if (typeof castObject.url === "string" && - typeof castObject.method === "string" && - typeof castObject.headers === "object" && - isHttpHeadersLike(castObject.headers) && - typeof castObject.validateRequestProperties === "function" && - typeof castObject.prepare === "function" && - typeof castObject.clone === "function") { - return true; - } - } - return false; -} + +/***/ }), + +/***/ 1682: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.MESSAGE_TYPE = void 0; /** - * Creates a new WebResource object. + * The symbol used as a key on message objects to store the message type. * - * This class provides an abstraction over a REST call by being library / implementation agnostic and wrapping the necessary - * properties to initiate a request. - */ -class WebResource { - constructor(url, method, body, query, headers, streamResponseBody, withCredentials, abortSignal, timeout, onUploadProgress, onDownloadProgress, proxySettings, keepAlive, decompressResponse, streamResponseStatusCodes) { - this.streamResponseBody = streamResponseBody; - this.streamResponseStatusCodes = streamResponseStatusCodes; - this.url = url || ""; - this.method = method || "GET"; - this.headers = isHttpHeadersLike(headers) ? headers : new HttpHeaders(headers); - this.body = body; - this.query = query; - this.formData = undefined; - this.withCredentials = withCredentials || false; - this.abortSignal = abortSignal; - this.timeout = timeout || 0; - this.onUploadProgress = onUploadProgress; - this.onDownloadProgress = onDownloadProgress; - this.proxySettings = proxySettings; - this.keepAlive = keepAlive; - this.decompressResponse = decompressResponse; - this.requestId = this.headers.get("x-ms-client-request-id") || generateUuid(); - } - /** - * Validates that the required properties such as method, url, headers["Content-Type"], - * headers["accept-language"] are defined. It will throw an error if one of the above - * mentioned properties are not defined. - */ - validateRequestProperties() { - if (!this.method) { - throw new Error("WebResource.method is required."); - } - if (!this.url) { - throw new Error("WebResource.url is required."); - } - } - /** - * Prepares the request. - * @param options - Options to provide for preparing the request. - * @returns Returns the prepared WebResource (HTTP Request) object that needs to be given to the request pipeline. - */ - prepare(options) { - if (!options) { - throw new Error("options object is required"); - } - if (options.method === undefined || - options.method === null || - typeof options.method.valueOf() !== "string") { - throw new Error("options.method must be a string."); - } - if (options.url && options.pathTemplate) { - throw new Error("options.url and options.pathTemplate are mutually exclusive. Please provide exactly one of them."); - } - if ((options.pathTemplate === undefined || - options.pathTemplate === null || - typeof options.pathTemplate.valueOf() !== "string") && - (options.url === undefined || - options.url === null || - typeof options.url.valueOf() !== "string")) { - throw new Error("Please provide exactly one of options.pathTemplate or options.url."); - } - // set the url if it is provided. - if (options.url) { - if (typeof options.url !== "string") { - throw new Error('options.url must be of type "string".'); - } - this.url = options.url; - } - // set the method - if (options.method) { - const validMethods = ["GET", "PUT", "HEAD", "DELETE", "OPTIONS", "POST", "PATCH", "TRACE"]; - if (validMethods.indexOf(options.method.toUpperCase()) === -1) { - throw new Error('The provided method "' + - options.method + - '" is invalid. Supported HTTP methods are: ' + - JSON.stringify(validMethods)); - } - } - this.method = options.method.toUpperCase(); - // construct the url if path template is provided - if (options.pathTemplate) { - const { pathTemplate, pathParameters } = options; - if (typeof pathTemplate !== "string") { - throw new Error('options.pathTemplate must be of type "string".'); - } - if (!options.baseUrl) { - options.baseUrl = "https://management.azure.com"; - } - const baseUrl = options.baseUrl; - let url = baseUrl + - (baseUrl.endsWith("/") ? "" : "/") + - (pathTemplate.startsWith("/") ? pathTemplate.slice(1) : pathTemplate); - const segments = url.match(/({[\w-]*\s*[\w-]*})/gi); - if (segments && segments.length) { - if (!pathParameters) { - throw new Error(`pathTemplate: ${pathTemplate} has been provided. Hence, options.pathParameters must also be provided.`); - } - segments.forEach(function (item) { - const pathParamName = item.slice(1, -1); - const pathParam = pathParameters[pathParamName]; - if (pathParam === null || - pathParam === undefined || - !(typeof pathParam === "string" || typeof pathParam === "object")) { - const stringifiedPathParameters = JSON.stringify(pathParameters, undefined, 2); - throw new Error(`pathTemplate: ${pathTemplate} contains the path parameter ${pathParamName}` + - ` however, it is not present in parameters: ${stringifiedPathParameters}.` + - `The value of the path parameter can either be a "string" of the form { ${pathParamName}: "some sample value" } or ` + - `it can be an "object" of the form { "${pathParamName}": { value: "some sample value", skipUrlEncoding: true } }.`); - } - if (typeof pathParam.valueOf() === "string") { - url = url.replace(item, encodeURIComponent(pathParam)); - } - if (typeof pathParam.valueOf() === "object") { - if (!pathParam.value) { - throw new Error(`options.pathParameters[${pathParamName}] is of type "object" but it does not contain a "value" property.`); - } - if (pathParam.skipUrlEncoding) { - url = url.replace(item, pathParam.value); - } - else { - url = url.replace(item, encodeURIComponent(pathParam.value)); - } - } - }); - } - this.url = url; - } - // append query parameters to the url if they are provided. They can be provided with pathTemplate or url option. - if (options.queryParameters) { - const queryParameters = options.queryParameters; - if (typeof queryParameters !== "object") { - throw new Error(`options.queryParameters must be of type object. It should be a JSON object ` + - `of "query-parameter-name" as the key and the "query-parameter-value" as the value. ` + - `The "query-parameter-value" may be fo type "string" or an "object" of the form { value: "query-parameter-value", skipUrlEncoding: true }.`); - } - // append question mark if it is not present in the url - if (this.url && this.url.indexOf("?") === -1) { - this.url += "?"; - } - // construct queryString - const queryParams = []; - // We need to populate this.query as a dictionary if the request is being used for Sway's validateRequest(). - this.query = {}; - for (const queryParamName in queryParameters) { - const queryParam = queryParameters[queryParamName]; - if (queryParam) { - if (typeof queryParam === "string") { - queryParams.push(queryParamName + "=" + encodeURIComponent(queryParam)); - this.query[queryParamName] = encodeURIComponent(queryParam); - } - else if (typeof queryParam === "object") { - if (!queryParam.value) { - throw new Error(`options.queryParameters[${queryParamName}] is of type "object" but it does not contain a "value" property.`); - } - if (queryParam.skipUrlEncoding) { - queryParams.push(queryParamName + "=" + queryParam.value); - this.query[queryParamName] = queryParam.value; - } - else { - queryParams.push(queryParamName + "=" + encodeURIComponent(queryParam.value)); - this.query[queryParamName] = encodeURIComponent(queryParam.value); - } - } - } - } // end-of-for - // append the queryString - this.url += queryParams.join("&"); - } - // add headers to the request if they are provided - if (options.headers) { - const headers = options.headers; - for (const headerName of Object.keys(options.headers)) { - this.headers.set(headerName, headers[headerName]); - } - } - // ensure accept-language is set correctly - if (!this.headers.get("accept-language")) { - this.headers.set("accept-language", "en-US"); - } - // ensure the request-id is set correctly - if (!this.headers.get("x-ms-client-request-id") && !options.disableClientRequestId) { - this.headers.set("x-ms-client-request-id", this.requestId); - } - // default - if (!this.headers.get("Content-Type")) { - this.headers.set("Content-Type", "application/json; charset=utf-8"); - } - // set the request body. request.js automatically sets the Content-Length request header, so we need not set it explicitly - this.body = options.body; - if (options.body !== undefined && options.body !== null) { - // body as a stream special case. set the body as-is and check for some special request headers specific to sending a stream. - if (options.bodyIsStream) { - if (!this.headers.get("Transfer-Encoding")) { - this.headers.set("Transfer-Encoding", "chunked"); - } - if (this.headers.get("Content-Type") !== "application/octet-stream") { - this.headers.set("Content-Type", "application/octet-stream"); - } - } - else { - if (options.serializationMapper) { - this.body = new Serializer(options.mappers).serialize(options.serializationMapper, options.body, "requestBody"); - } - if (!options.disableJsonStringifyOnBody) { - this.body = JSON.stringify(options.body); - } - } - } - if (options.spanOptions) { - this.spanOptions = options.spanOptions; - } - if (options.tracingContext) { - this.tracingContext = options.tracingContext; - } - this.abortSignal = options.abortSignal; - this.onDownloadProgress = options.onDownloadProgress; - this.onUploadProgress = options.onUploadProgress; - return this; - } - /** - * Clone this WebResource HTTP request object. - * @returns The clone of this WebResource HTTP request object. - */ - clone() { - const result = new WebResource(this.url, this.method, this.body, this.query, this.headers && this.headers.clone(), this.streamResponseBody, this.withCredentials, this.abortSignal, this.timeout, this.onUploadProgress, this.onDownloadProgress, this.proxySettings, this.keepAlive, this.decompressResponse, this.streamResponseStatusCodes); - if (this.formData) { - result.formData = this.formData; - } - if (this.operationSpec) { - result.operationSpec = this.operationSpec; - } - if (this.shouldDeserialize) { - result.shouldDeserialize = this.shouldDeserialize; - } - if (this.operationResponseGetter) { - result.operationResponseGetter = this.operationResponseGetter; - } - return result; - } -} + * Note that this is an experimental feature - it is here to stay, but + * implementation details may change without notice. + */ +exports.MESSAGE_TYPE = Symbol.for("protobuf-ts/message-type"); -// Copyright (c) Microsoft Corporation. + +/***/ }), + +/***/ 63664: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.MessageType = void 0; +const message_type_contract_1 = __nccwpck_require__(1682); +const reflection_info_1 = __nccwpck_require__(21370); +const reflection_type_check_1 = __nccwpck_require__(20903); +const reflection_json_reader_1 = __nccwpck_require__(229); +const reflection_json_writer_1 = __nccwpck_require__(68980); +const reflection_binary_reader_1 = __nccwpck_require__(91593); +const reflection_binary_writer_1 = __nccwpck_require__(57170); +const reflection_create_1 = __nccwpck_require__(60390); +const reflection_merge_partial_1 = __nccwpck_require__(7869); +const json_typings_1 = __nccwpck_require__(70661); +const json_format_contract_1 = __nccwpck_require__(48139); +const reflection_equals_1 = __nccwpck_require__(39473); +const binary_writer_1 = __nccwpck_require__(44354); +const binary_reader_1 = __nccwpck_require__(65210); +const baseDescriptors = Object.getOwnPropertyDescriptors(Object.getPrototypeOf({})); +const messageTypeDescriptor = baseDescriptors[message_type_contract_1.MESSAGE_TYPE] = {}; /** - * A class that handles the query portion of a URLBuilder. + * This standard message type provides reflection-based + * operations to work with a message. */ -class URLQuery { - constructor() { - this._rawQuery = {}; +class MessageType { + constructor(name, fields, options) { + this.defaultCheckDepth = 16; + this.typeName = name; + this.fields = fields.map(reflection_info_1.normalizeFieldInfo); + this.options = options !== null && options !== void 0 ? options : {}; + messageTypeDescriptor.value = this; + this.messagePrototype = Object.create(null, baseDescriptors); + this.refTypeCheck = new reflection_type_check_1.ReflectionTypeCheck(this); + this.refJsonReader = new reflection_json_reader_1.ReflectionJsonReader(this); + this.refJsonWriter = new reflection_json_writer_1.ReflectionJsonWriter(this); + this.refBinReader = new reflection_binary_reader_1.ReflectionBinaryReader(this); + this.refBinWriter = new reflection_binary_writer_1.ReflectionBinaryWriter(this); + } + create(value) { + let message = reflection_create_1.reflectionCreate(this); + if (value !== undefined) { + reflection_merge_partial_1.reflectionMergePartial(this, message, value); + } + return message; + } + /** + * Clone the message. + * + * Unknown fields are discarded. + */ + clone(message) { + let copy = this.create(); + reflection_merge_partial_1.reflectionMergePartial(this, copy, message); + return copy; } /** - * Get whether or not there any query parameters in this URLQuery. + * Determines whether two message of the same type have the same field values. + * Checks for deep equality, traversing repeated fields, oneof groups, maps + * and messages recursively. + * Will also return true if both messages are `undefined`. */ - any() { - return Object.keys(this._rawQuery).length > 0; + equals(a, b) { + return reflection_equals_1.reflectionEquals(this, a, b); } /** - * Get the keys of the query string. + * Is the given value assignable to our message type + * and contains no [excess properties](https://www.typescriptlang.org/docs/handbook/interfaces.html#excess-property-checks)? */ - keys() { - return Object.keys(this._rawQuery); + is(arg, depth = this.defaultCheckDepth) { + return this.refTypeCheck.is(arg, depth, false); } /** - * Set a query parameter with the provided name and value. If the parameterValue is undefined or - * empty, then this will attempt to remove an existing query parameter with the provided - * parameterName. + * Is the given value assignable to our message type, + * regardless of [excess properties](https://www.typescriptlang.org/docs/handbook/interfaces.html#excess-property-checks)? */ - set(parameterName, parameterValue) { - const caseParameterValue = parameterValue; - if (parameterName) { - if (caseParameterValue !== undefined && caseParameterValue !== null) { - const newValue = Array.isArray(caseParameterValue) - ? caseParameterValue - : caseParameterValue.toString(); - this._rawQuery[parameterName] = newValue; - } - else { - delete this._rawQuery[parameterName]; - } - } + isAssignable(arg, depth = this.defaultCheckDepth) { + return this.refTypeCheck.is(arg, depth, true); } /** - * Get the value of the query parameter with the provided name. If no parameter exists with the - * provided parameter name, then undefined will be returned. + * Copy partial data into the target message. */ - get(parameterName) { - return parameterName ? this._rawQuery[parameterName] : undefined; + mergePartial(target, source) { + reflection_merge_partial_1.reflectionMergePartial(this, target, source); } /** - * Get the string representation of this query. The return value will not start with a "?". + * Create a new message from binary format. */ - toString() { - let result = ""; - for (const parameterName in this._rawQuery) { - if (result) { - result += "&"; - } - const parameterValue = this._rawQuery[parameterName]; - if (Array.isArray(parameterValue)) { - const parameterStrings = []; - for (const parameterValueElement of parameterValue) { - parameterStrings.push(`${parameterName}=${parameterValueElement}`); - } - result += parameterStrings.join("&"); - } - else { - result += `${parameterName}=${parameterValue}`; - } - } - return result; + fromBinary(data, options) { + let opt = binary_reader_1.binaryReadOptions(options); + return this.internalBinaryRead(opt.readerFactory(data), data.byteLength, opt); } /** - * Parse a URLQuery from the provided text. - */ - static parse(text) { - const result = new URLQuery(); - if (text) { - if (text.startsWith("?")) { - text = text.substring(1); - } - let currentState = "ParameterName"; - let parameterName = ""; - let parameterValue = ""; - for (let i = 0; i < text.length; ++i) { - const currentCharacter = text[i]; - switch (currentState) { - case "ParameterName": - switch (currentCharacter) { - case "=": - currentState = "ParameterValue"; - break; - case "&": - parameterName = ""; - parameterValue = ""; - break; - default: - parameterName += currentCharacter; - break; - } - break; - case "ParameterValue": - switch (currentCharacter) { - case "&": - result.set(parameterName, parameterValue); - parameterName = ""; - parameterValue = ""; - currentState = "ParameterName"; - break; - default: - parameterValue += currentCharacter; - break; - } - break; - default: - throw new Error("Unrecognized URLQuery parse state: " + currentState); - } - } - if (currentState === "ParameterValue") { - result.set(parameterName, parameterValue); - } - } - return result; + * Read a new message from a JSON value. + */ + fromJson(json, options) { + return this.internalJsonRead(json, json_format_contract_1.jsonReadOptions(options)); } -} -/** - * A class that handles creating, modifying, and parsing URLs. - */ -class URLBuilder { /** - * Set the scheme/protocol for this URL. If the provided scheme contains other parts of a URL - * (such as a host, port, path, or query), those parts will be added to this URL as well. + * Read a new message from a JSON string. + * This is equivalent to `T.fromJson(JSON.parse(json))`. */ - setScheme(scheme) { - if (!scheme) { - this._scheme = undefined; - } - else { - this.set(scheme, "SCHEME"); - } + fromJsonString(json, options) { + let value = JSON.parse(json); + return this.fromJson(value, options); } /** - * Get the scheme that has been set in this URL. + * Write the message to canonical JSON value. */ - getScheme() { - return this._scheme; + toJson(message, options) { + return this.internalJsonWrite(message, json_format_contract_1.jsonWriteOptions(options)); } /** - * Set the host for this URL. If the provided host contains other parts of a URL (such as a - * port, path, or query), those parts will be added to this URL as well. + * Convert the message to canonical JSON string. + * This is equivalent to `JSON.stringify(T.toJson(t))` */ - setHost(host) { - if (!host) { - this._host = undefined; - } - else { - this.set(host, "SCHEME_OR_HOST"); - } + toJsonString(message, options) { + var _a; + let value = this.toJson(message, options); + return JSON.stringify(value, null, (_a = options === null || options === void 0 ? void 0 : options.prettySpaces) !== null && _a !== void 0 ? _a : 0); } /** - * Get the host that has been set in this URL. + * Write the message to binary format. */ - getHost() { - return this._host; + toBinary(message, options) { + let opt = binary_writer_1.binaryWriteOptions(options); + return this.internalBinaryWrite(message, opt.writerFactory(), opt).finish(); } /** - * Set the port for this URL. If the provided port contains other parts of a URL (such as a - * path or query), those parts will be added to this URL as well. + * This is an internal method. If you just want to read a message from + * JSON, use `fromJson()` or `fromJsonString()`. + * + * Reads JSON value and merges the fields into the target + * according to protobuf rules. If the target is omitted, + * a new instance is created first. */ - setPort(port) { - if (port === undefined || port === null || port === "") { - this._port = undefined; - } - else { - this.set(port.toString(), "PORT"); + internalJsonRead(json, options, target) { + if (json !== null && typeof json == "object" && !Array.isArray(json)) { + let message = target !== null && target !== void 0 ? target : this.create(); + this.refJsonReader.read(json, message, options); + return message; } + throw new Error(`Unable to parse message ${this.typeName} from JSON ${json_typings_1.typeofJsonValue(json)}.`); } /** - * Get the port that has been set in this URL. + * This is an internal method. If you just want to write a message + * to JSON, use `toJson()` or `toJsonString(). + * + * Writes JSON value and returns it. */ - getPort() { - return this._port; + internalJsonWrite(message, options) { + return this.refJsonWriter.write(message, options); } /** - * Set the path for this URL. If the provided path contains a query, then it will be added to - * this URL as well. + * This is an internal method. If you just want to write a message + * in binary format, use `toBinary()`. + * + * Serializes the message in binary format and appends it to the given + * writer. Returns passed writer. */ - setPath(path) { - if (!path) { - this._path = undefined; - } - else { - const schemeIndex = path.indexOf("://"); - if (schemeIndex !== -1) { - const schemeStart = path.lastIndexOf("/", schemeIndex); - // Make sure to only grab the URL part of the path before setting the state back to SCHEME - // this will handle cases such as "/a/b/c/https://microsoft.com" => "https://microsoft.com" - this.set(schemeStart === -1 ? path : path.substr(schemeStart + 1), "SCHEME"); - } - else { - this.set(path, "PATH"); - } - } + internalBinaryWrite(message, writer, options) { + this.refBinWriter.write(message, writer, options); + return writer; } /** - * Append the provided path to this URL's existing path. If the provided path contains a query, - * then it will be added to this URL as well. + * This is an internal method. If you just want to read a message from + * binary data, use `fromBinary()`. + * + * Reads data from binary format and merges the fields into + * the target according to protobuf rules. If the target is + * omitted, a new instance is created first. */ - appendPath(path) { - if (path) { - let currentPath = this.getPath(); - if (currentPath) { - if (!currentPath.endsWith("/")) { - currentPath += "/"; - } - if (path.startsWith("/")) { - path = path.substring(1); - } - path = currentPath + path; - } - this.set(path, "PATH"); - } + internalBinaryRead(reader, length, options, target) { + let message = target !== null && target !== void 0 ? target : this.create(); + this.refBinReader.read(reader, message, options, length); + return message; } - /** - * Get the path that has been set in this URL. - */ - getPath() { - return this._path; +} +exports.MessageType = MessageType; + + +/***/ }), + +/***/ 78531: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getSelectedOneofValue = exports.clearOneofValue = exports.setUnknownOneofValue = exports.setOneofValue = exports.getOneofValue = exports.isOneofGroup = void 0; +/** + * Is the given value a valid oneof group? + * + * We represent protobuf `oneof` as algebraic data types (ADT) in generated + * code. But when working with messages of unknown type, the ADT does not + * help us. + * + * This type guard checks if the given object adheres to the ADT rules, which + * are as follows: + * + * 1) Must be an object. + * + * 2) Must have a "oneofKind" discriminator property. + * + * 3) If "oneofKind" is `undefined`, no member field is selected. The object + * must not have any other properties. + * + * 4) If "oneofKind" is a `string`, the member field with this name is + * selected. + * + * 5) If a member field is selected, the object must have a second property + * with this name. The property must not be `undefined`. + * + * 6) No extra properties are allowed. The object has either one property + * (no selection) or two properties (selection). + * + */ +function isOneofGroup(any) { + if (typeof any != 'object' || any === null || !any.hasOwnProperty('oneofKind')) { + return false; } - /** - * Set the query in this URL. + switch (typeof any.oneofKind) { + case "string": + if (any[any.oneofKind] === undefined) + return false; + return Object.keys(any).length == 2; + case "undefined": + return Object.keys(any).length == 1; + default: + return false; + } +} +exports.isOneofGroup = isOneofGroup; +/** + * Returns the value of the given field in a oneof group. + */ +function getOneofValue(oneof, kind) { + return oneof[kind]; +} +exports.getOneofValue = getOneofValue; +function setOneofValue(oneof, kind, value) { + if (oneof.oneofKind !== undefined) { + delete oneof[oneof.oneofKind]; + } + oneof.oneofKind = kind; + if (value !== undefined) { + oneof[kind] = value; + } +} +exports.setOneofValue = setOneofValue; +function setUnknownOneofValue(oneof, kind, value) { + if (oneof.oneofKind !== undefined) { + delete oneof[oneof.oneofKind]; + } + oneof.oneofKind = kind; + if (value !== undefined && kind !== undefined) { + oneof[kind] = value; + } +} +exports.setUnknownOneofValue = setUnknownOneofValue; +/** + * Removes the selected field in a oneof group. + * + * Note that the recommended way to modify a oneof group is to set + * a new object: + * + * ```ts + * message.result = { oneofKind: undefined }; + * ``` + */ +function clearOneofValue(oneof) { + if (oneof.oneofKind !== undefined) { + delete oneof[oneof.oneofKind]; + } + oneof.oneofKind = undefined; +} +exports.clearOneofValue = clearOneofValue; +/** + * Returns the selected value of the given oneof group. + * + * Not that the recommended way to access a oneof group is to check + * the "oneofKind" property and let TypeScript narrow down the union + * type for you: + * + * ```ts + * if (message.result.oneofKind === "error") { + * message.result.error; // string + * } + * ``` + * + * In the rare case you just need the value, and do not care about + * which protobuf field is selected, you can use this function + * for convenience. + */ +function getSelectedOneofValue(oneof) { + if (oneof.oneofKind === undefined) { + return undefined; + } + return oneof[oneof.oneofKind]; +} +exports.getSelectedOneofValue = getSelectedOneofValue; + + +/***/ }), + +/***/ 47777: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.PbLong = exports.PbULong = exports.detectBi = void 0; +const goog_varint_1 = __nccwpck_require__(30433); +let BI; +function detectBi() { + const dv = new DataView(new ArrayBuffer(8)); + const ok = globalThis.BigInt !== undefined + && typeof dv.getBigInt64 === "function" + && typeof dv.getBigUint64 === "function" + && typeof dv.setBigInt64 === "function" + && typeof dv.setBigUint64 === "function"; + BI = ok ? { + MIN: BigInt("-9223372036854775808"), + MAX: BigInt("9223372036854775807"), + UMIN: BigInt("0"), + UMAX: BigInt("18446744073709551615"), + C: BigInt, + V: dv, + } : undefined; +} +exports.detectBi = detectBi; +detectBi(); +function assertBi(bi) { + if (!bi) + throw new Error("BigInt unavailable, see https://github.com/timostamm/protobuf-ts/blob/v1.0.8/MANUAL.md#bigint-support"); +} +// used to validate from(string) input (when bigint is unavailable) +const RE_DECIMAL_STR = /^-?[0-9]+$/; +// constants for binary math +const TWO_PWR_32_DBL = 0x100000000; +const HALF_2_PWR_32 = 0x080000000; +// base class for PbLong and PbULong provides shared code +class SharedPbLong { + /** + * Create a new instance with the given bits. + */ + constructor(lo, hi) { + this.lo = lo | 0; + this.hi = hi | 0; + } + /** + * Is this instance equal to 0? + */ + isZero() { + return this.lo == 0 && this.hi == 0; + } + /** + * Convert to a native number. + */ + toNumber() { + let result = this.hi * TWO_PWR_32_DBL + (this.lo >>> 0); + if (!Number.isSafeInteger(result)) + throw new Error("cannot convert to safe number"); + return result; + } +} +/** + * 64-bit unsigned integer as two 32-bit values. + * Converts between `string`, `number` and `bigint` representations. + */ +class PbULong extends SharedPbLong { + /** + * Create instance from a `string`, `number` or `bigint`. + */ + static from(value) { + if (BI) + // noinspection FallThroughInSwitchStatementJS + switch (typeof value) { + case "string": + if (value == "0") + return this.ZERO; + if (value == "") + throw new Error('string is no integer'); + value = BI.C(value); + case "number": + if (value === 0) + return this.ZERO; + value = BI.C(value); + case "bigint": + if (!value) + return this.ZERO; + if (value < BI.UMIN) + throw new Error('signed value for ulong'); + if (value > BI.UMAX) + throw new Error('ulong too large'); + BI.V.setBigUint64(0, value, true); + return new PbULong(BI.V.getInt32(0, true), BI.V.getInt32(4, true)); + } + else + switch (typeof value) { + case "string": + if (value == "0") + return this.ZERO; + value = value.trim(); + if (!RE_DECIMAL_STR.test(value)) + throw new Error('string is no integer'); + let [minus, lo, hi] = goog_varint_1.int64fromString(value); + if (minus) + throw new Error('signed value for ulong'); + return new PbULong(lo, hi); + case "number": + if (value == 0) + return this.ZERO; + if (!Number.isSafeInteger(value)) + throw new Error('number is no integer'); + if (value < 0) + throw new Error('signed value for ulong'); + return new PbULong(value, value / TWO_PWR_32_DBL); + } + throw new Error('unknown value ' + typeof value); + } + /** + * Convert to decimal string. */ - setQuery(query) { - if (!query) { - this._query = undefined; - } - else { - this._query = URLQuery.parse(query); - } + toString() { + return BI ? this.toBigInt().toString() : goog_varint_1.int64toString(this.lo, this.hi); } /** - * Set a query parameter with the provided name and value in this URL's query. If the provided - * query parameter value is undefined or empty, then the query parameter will be removed if it - * existed. + * Convert to native bigint. */ - setQueryParameter(queryParameterName, queryParameterValue) { - if (queryParameterName) { - if (!this._query) { - this._query = new URLQuery(); + toBigInt() { + assertBi(BI); + BI.V.setInt32(0, this.lo, true); + BI.V.setInt32(4, this.hi, true); + return BI.V.getBigUint64(0, true); + } +} +exports.PbULong = PbULong; +/** + * ulong 0 singleton. + */ +PbULong.ZERO = new PbULong(0, 0); +/** + * 64-bit signed integer as two 32-bit values. + * Converts between `string`, `number` and `bigint` representations. + */ +class PbLong extends SharedPbLong { + /** + * Create instance from a `string`, `number` or `bigint`. + */ + static from(value) { + if (BI) + // noinspection FallThroughInSwitchStatementJS + switch (typeof value) { + case "string": + if (value == "0") + return this.ZERO; + if (value == "") + throw new Error('string is no integer'); + value = BI.C(value); + case "number": + if (value === 0) + return this.ZERO; + value = BI.C(value); + case "bigint": + if (!value) + return this.ZERO; + if (value < BI.MIN) + throw new Error('signed long too small'); + if (value > BI.MAX) + throw new Error('signed long too large'); + BI.V.setBigInt64(0, value, true); + return new PbLong(BI.V.getInt32(0, true), BI.V.getInt32(4, true)); + } + else + switch (typeof value) { + case "string": + if (value == "0") + return this.ZERO; + value = value.trim(); + if (!RE_DECIMAL_STR.test(value)) + throw new Error('string is no integer'); + let [minus, lo, hi] = goog_varint_1.int64fromString(value); + if (minus) { + if (hi > HALF_2_PWR_32 || (hi == HALF_2_PWR_32 && lo != 0)) + throw new Error('signed long too small'); + } + else if (hi >= HALF_2_PWR_32) + throw new Error('signed long too large'); + let pbl = new PbLong(lo, hi); + return minus ? pbl.negate() : pbl; + case "number": + if (value == 0) + return this.ZERO; + if (!Number.isSafeInteger(value)) + throw new Error('number is no integer'); + return value > 0 + ? new PbLong(value, value / TWO_PWR_32_DBL) + : new PbLong(-value, -value / TWO_PWR_32_DBL).negate(); } - this._query.set(queryParameterName, queryParameterValue); - } + throw new Error('unknown value ' + typeof value); } /** - * Get the value of the query parameter with the provided query parameter name. If no query - * parameter exists with the provided name, then undefined will be returned. + * Do we have a minus sign? */ - getQueryParameterValue(queryParameterName) { - return this._query ? this._query.get(queryParameterName) : undefined; + isNegative() { + return (this.hi & HALF_2_PWR_32) !== 0; } /** - * Get the query in this URL. + * Negate two's complement. + * Invert all the bits and add one to the result. */ - getQuery() { - return this._query ? this._query.toString() : undefined; + negate() { + let hi = ~this.hi, lo = this.lo; + if (lo) + lo = ~lo + 1; + else + hi += 1; + return new PbLong(lo, hi); } /** - * Set the parts of this URL by parsing the provided text using the provided startState. + * Convert to decimal string. */ - set(text, startState) { - const tokenizer = new URLTokenizer(text, startState); - while (tokenizer.next()) { - const token = tokenizer.current(); - let tokenPath; - if (token) { - switch (token.type) { - case "SCHEME": - this._scheme = token.text || undefined; - break; - case "HOST": - this._host = token.text || undefined; - break; - case "PORT": - this._port = token.text || undefined; - break; - case "PATH": - tokenPath = token.text || undefined; - if (!this._path || this._path === "/" || tokenPath !== "/") { - this._path = tokenPath; + toString() { + if (BI) + return this.toBigInt().toString(); + if (this.isNegative()) { + let n = this.negate(); + return '-' + goog_varint_1.int64toString(n.lo, n.hi); + } + return goog_varint_1.int64toString(this.lo, this.hi); + } + /** + * Convert to native bigint. + */ + toBigInt() { + assertBi(BI); + BI.V.setInt32(0, this.lo, true); + BI.V.setInt32(4, this.hi, true); + return BI.V.getBigInt64(0, true); + } +} +exports.PbLong = PbLong; +/** + * long 0 singleton. + */ +PbLong.ZERO = new PbLong(0, 0); + + +/***/ }), + +/***/ 95290: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +// Copyright (c) 2016, Daniel Wirtz All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above copyright +// notice, this list of conditions and the following disclaimer in the +// documentation and/or other materials provided with the distribution. +// * Neither the name of its author, nor the names of its contributors +// may be used to endorse or promote products derived from this software +// without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.utf8read = void 0; +const fromCharCodes = (chunk) => String.fromCharCode.apply(String, chunk); +/** + * @deprecated This function will no longer be exported with the next major + * release, since protobuf-ts has switch to TextDecoder API. If you need this + * function, please migrate to @protobufjs/utf8. For context, see + * https://github.com/timostamm/protobuf-ts/issues/184 + * + * Reads UTF8 bytes as a string. + * + * See [protobufjs / utf8](https://github.com/protobufjs/protobuf.js/blob/9893e35b854621cce64af4bf6be2cff4fb892796/lib/utf8/index.js#L40) + * + * Copyright (c) 2016, Daniel Wirtz + */ +function utf8read(bytes) { + if (bytes.length < 1) + return ""; + let pos = 0, // position in bytes + parts = [], chunk = [], i = 0, // char offset + t; // temporary + let len = bytes.length; + while (pos < len) { + t = bytes[pos++]; + if (t < 128) + chunk[i++] = t; + else if (t > 191 && t < 224) + chunk[i++] = (t & 31) << 6 | bytes[pos++] & 63; + else if (t > 239 && t < 365) { + t = ((t & 7) << 18 | (bytes[pos++] & 63) << 12 | (bytes[pos++] & 63) << 6 | bytes[pos++] & 63) - 0x10000; + chunk[i++] = 0xD800 + (t >> 10); + chunk[i++] = 0xDC00 + (t & 1023); + } + else + chunk[i++] = (t & 15) << 12 | (bytes[pos++] & 63) << 6 | bytes[pos++] & 63; + if (i > 8191) { + parts.push(fromCharCodes(chunk)); + i = 0; + } + } + if (parts.length) { + if (i) + parts.push(fromCharCodes(chunk.slice(0, i))); + return parts.join(""); + } + return fromCharCodes(chunk.slice(0, i)); +} +exports.utf8read = utf8read; + + +/***/ }), + +/***/ 91593: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.ReflectionBinaryReader = void 0; +const binary_format_contract_1 = __nccwpck_require__(84921); +const reflection_info_1 = __nccwpck_require__(21370); +const reflection_long_convert_1 = __nccwpck_require__(24612); +const reflection_scalar_default_1 = __nccwpck_require__(74863); +/** + * Reads proto3 messages in binary format using reflection information. + * + * https://developers.google.com/protocol-buffers/docs/encoding + */ +class ReflectionBinaryReader { + constructor(info) { + this.info = info; + } + prepare() { + var _a; + if (!this.fieldNoToField) { + const fieldsInput = (_a = this.info.fields) !== null && _a !== void 0 ? _a : []; + this.fieldNoToField = new Map(fieldsInput.map(field => [field.no, field])); + } + } + /** + * Reads a message from binary format into the target message. + * + * Repeated fields are appended. Map entries are added, overwriting + * existing keys. + * + * If a message field is already present, it will be merged with the + * new data. + */ + read(reader, message, options, length) { + this.prepare(); + const end = length === undefined ? reader.len : reader.pos + length; + while (reader.pos < end) { + // read the tag and find the field + const [fieldNo, wireType] = reader.tag(), field = this.fieldNoToField.get(fieldNo); + if (!field) { + let u = options.readUnknownField; + if (u == "throw") + throw new Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.info.typeName}`); + let d = reader.skip(wireType); + if (u !== false) + (u === true ? binary_format_contract_1.UnknownFieldHandler.onRead : u)(this.info.typeName, message, fieldNo, wireType, d); + continue; + } + // target object for the field we are reading + let target = message, repeated = field.repeat, localName = field.localName; + // if field is member of oneof ADT, use ADT as target + if (field.oneof) { + target = target[field.oneof]; + // if other oneof member selected, set new ADT + if (target.oneofKind !== localName) + target = message[field.oneof] = { + oneofKind: localName + }; + } + // we have handled oneof above, we just have read the value into `target[localName]` + switch (field.kind) { + case "scalar": + case "enum": + let T = field.kind == "enum" ? reflection_info_1.ScalarType.INT32 : field.T; + let L = field.kind == "scalar" ? field.L : undefined; + if (repeated) { + let arr = target[localName]; // safe to assume presence of array, oneof cannot contain repeated values + if (wireType == binary_format_contract_1.WireType.LengthDelimited && T != reflection_info_1.ScalarType.STRING && T != reflection_info_1.ScalarType.BYTES) { + let e = reader.uint32() + reader.pos; + while (reader.pos < e) + arr.push(this.scalar(reader, T, L)); } - break; - case "QUERY": - this._query = URLQuery.parse(token.text); - break; - default: - throw new Error(`Unrecognized URLTokenType: ${token.type}`); - } + else + arr.push(this.scalar(reader, T, L)); + } + else + target[localName] = this.scalar(reader, T, L); + break; + case "message": + if (repeated) { + let arr = target[localName]; // safe to assume presence of array, oneof cannot contain repeated values + let msg = field.T().internalBinaryRead(reader, reader.uint32(), options); + arr.push(msg); + } + else + target[localName] = field.T().internalBinaryRead(reader, reader.uint32(), options, target[localName]); + break; + case "map": + let [mapKey, mapVal] = this.mapEntry(field, reader, options); + // safe to assume presence of map object, oneof cannot contain repeated values + target[localName][mapKey] = mapVal; + break; } } } /** - * Serializes the URL as a string. - * @returns the URL as a string. + * Read a map field, expecting key field = 1, value field = 2 */ - toString() { - let result = ""; - if (this._scheme) { - result += `${this._scheme}://`; + mapEntry(field, reader, options) { + let length = reader.uint32(); + let end = reader.pos + length; + let key = undefined; // javascript only allows number or string for object properties + let val = undefined; + while (reader.pos < end) { + let [fieldNo, wireType] = reader.tag(); + switch (fieldNo) { + case 1: + if (field.K == reflection_info_1.ScalarType.BOOL) + key = reader.bool().toString(); + else + // long types are read as string, number types are okay as number + key = this.scalar(reader, field.K, reflection_info_1.LongType.STRING); + break; + case 2: + switch (field.V.kind) { + case "scalar": + val = this.scalar(reader, field.V.T, field.V.L); + break; + case "enum": + val = reader.int32(); + break; + case "message": + val = field.V.T().internalBinaryRead(reader, reader.uint32(), options); + break; + } + break; + default: + throw new Error(`Unknown field ${fieldNo} (wire type ${wireType}) in map entry for ${this.info.typeName}#${field.name}`); + } } - if (this._host) { - result += this._host; + if (key === undefined) { + let keyRaw = reflection_scalar_default_1.reflectionScalarDefault(field.K); + key = field.K == reflection_info_1.ScalarType.BOOL ? keyRaw.toString() : keyRaw; } - if (this._port) { - result += `:${this._port}`; + if (val === undefined) + switch (field.V.kind) { + case "scalar": + val = reflection_scalar_default_1.reflectionScalarDefault(field.V.T, field.V.L); + break; + case "enum": + val = 0; + break; + case "message": + val = field.V.T().create(); + break; + } + return [key, val]; + } + scalar(reader, type, longType) { + switch (type) { + case reflection_info_1.ScalarType.INT32: + return reader.int32(); + case reflection_info_1.ScalarType.STRING: + return reader.string(); + case reflection_info_1.ScalarType.BOOL: + return reader.bool(); + case reflection_info_1.ScalarType.DOUBLE: + return reader.double(); + case reflection_info_1.ScalarType.FLOAT: + return reader.float(); + case reflection_info_1.ScalarType.INT64: + return reflection_long_convert_1.reflectionLongConvert(reader.int64(), longType); + case reflection_info_1.ScalarType.UINT64: + return reflection_long_convert_1.reflectionLongConvert(reader.uint64(), longType); + case reflection_info_1.ScalarType.FIXED64: + return reflection_long_convert_1.reflectionLongConvert(reader.fixed64(), longType); + case reflection_info_1.ScalarType.FIXED32: + return reader.fixed32(); + case reflection_info_1.ScalarType.BYTES: + return reader.bytes(); + case reflection_info_1.ScalarType.UINT32: + return reader.uint32(); + case reflection_info_1.ScalarType.SFIXED32: + return reader.sfixed32(); + case reflection_info_1.ScalarType.SFIXED64: + return reflection_long_convert_1.reflectionLongConvert(reader.sfixed64(), longType); + case reflection_info_1.ScalarType.SINT32: + return reader.sint32(); + case reflection_info_1.ScalarType.SINT64: + return reflection_long_convert_1.reflectionLongConvert(reader.sint64(), longType); + } + } +} +exports.ReflectionBinaryReader = ReflectionBinaryReader; + + +/***/ }), + +/***/ 57170: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.ReflectionBinaryWriter = void 0; +const binary_format_contract_1 = __nccwpck_require__(84921); +const reflection_info_1 = __nccwpck_require__(21370); +const assert_1 = __nccwpck_require__(54253); +const pb_long_1 = __nccwpck_require__(47777); +/** + * Writes proto3 messages in binary format using reflection information. + * + * https://developers.google.com/protocol-buffers/docs/encoding + */ +class ReflectionBinaryWriter { + constructor(info) { + this.info = info; + } + prepare() { + if (!this.fields) { + const fieldsInput = this.info.fields ? this.info.fields.concat() : []; + this.fields = fieldsInput.sort((a, b) => a.no - b.no); } - if (this._path) { - if (!this._path.startsWith("/")) { - result += "/"; + } + /** + * Writes the message to binary format. + */ + write(message, writer, options) { + this.prepare(); + for (const field of this.fields) { + let value, // this will be our field value, whether it is member of a oneof or not + emitDefault, // whether we emit the default value (only true for oneof members) + repeated = field.repeat, localName = field.localName; + // handle oneof ADT + if (field.oneof) { + const group = message[field.oneof]; + if (group.oneofKind !== localName) + continue; // if field is not selected, skip + value = group[localName]; + emitDefault = true; + } + else { + value = message[localName]; + emitDefault = false; + } + // we have handled oneof above. we just have to honor `emitDefault`. + switch (field.kind) { + case "scalar": + case "enum": + let T = field.kind == "enum" ? reflection_info_1.ScalarType.INT32 : field.T; + if (repeated) { + assert_1.assert(Array.isArray(value)); + if (repeated == reflection_info_1.RepeatType.PACKED) + this.packed(writer, T, field.no, value); + else + for (const item of value) + this.scalar(writer, T, field.no, item, true); + } + else if (value === undefined) + assert_1.assert(field.opt); + else + this.scalar(writer, T, field.no, value, emitDefault || field.opt); + break; + case "message": + if (repeated) { + assert_1.assert(Array.isArray(value)); + for (const item of value) + this.message(writer, options, field.T(), field.no, item); + } + else { + this.message(writer, options, field.T(), field.no, value); + } + break; + case "map": + assert_1.assert(typeof value == 'object' && value !== null); + for (const [key, val] of Object.entries(value)) + this.mapEntry(writer, options, field, key, val); + break; } - result += this._path; } - if (this._query && this._query.any()) { - result += `?${this._query.toString()}`; + let u = options.writeUnknownFields; + if (u !== false) + (u === true ? binary_format_contract_1.UnknownFieldHandler.onWrite : u)(this.info.typeName, message, writer); + } + mapEntry(writer, options, field, key, value) { + writer.tag(field.no, binary_format_contract_1.WireType.LengthDelimited); + writer.fork(); + // javascript only allows number or string for object properties + // we convert from our representation to the protobuf type + let keyValue = key; + switch (field.K) { + case reflection_info_1.ScalarType.INT32: + case reflection_info_1.ScalarType.FIXED32: + case reflection_info_1.ScalarType.UINT32: + case reflection_info_1.ScalarType.SFIXED32: + case reflection_info_1.ScalarType.SINT32: + keyValue = Number.parseInt(key); + break; + case reflection_info_1.ScalarType.BOOL: + assert_1.assert(key == 'true' || key == 'false'); + keyValue = key == 'true'; + break; } - return result; + // write key, expecting key field number = 1 + this.scalar(writer, field.K, 1, keyValue, true); + // write value, expecting value field number = 2 + switch (field.V.kind) { + case 'scalar': + this.scalar(writer, field.V.T, 2, value, true); + break; + case 'enum': + this.scalar(writer, reflection_info_1.ScalarType.INT32, 2, value, true); + break; + case 'message': + this.message(writer, options, field.V.T(), 2, value); + break; + } + writer.join(); + } + message(writer, options, handler, fieldNo, value) { + if (value === undefined) + return; + handler.internalBinaryWrite(value, writer.tag(fieldNo, binary_format_contract_1.WireType.LengthDelimited).fork(), options); + writer.join(); } /** - * If the provided searchValue is found in this URLBuilder, then replace it with the provided - * replaceValue. + * Write a single scalar value. */ - replaceAll(searchValue, replaceValue) { - if (searchValue) { - this.setScheme(replaceAll(this.getScheme(), searchValue, replaceValue)); - this.setHost(replaceAll(this.getHost(), searchValue, replaceValue)); - this.setPort(replaceAll(this.getPort(), searchValue, replaceValue)); - this.setPath(replaceAll(this.getPath(), searchValue, replaceValue)); - this.setQuery(replaceAll(this.getQuery(), searchValue, replaceValue)); + scalar(writer, type, fieldNo, value, emitDefault) { + let [wireType, method, isDefault] = this.scalarInfo(type, value); + if (!isDefault || emitDefault) { + writer.tag(fieldNo, wireType); + writer[method](value); } } /** - * Parses a given string URL into a new {@link URLBuilder}. + * Write an array of scalar values in packed format. */ - static parse(text) { - const result = new URLBuilder(); - result.set(text, "SCHEME_OR_HOST"); - return result; - } -} -class URLToken { - constructor(text, type) { - this.text = text; - this.type = type; - } - static scheme(text) { - return new URLToken(text, "SCHEME"); - } - static host(text) { - return new URLToken(text, "HOST"); - } - static port(text) { - return new URLToken(text, "PORT"); - } - static path(text) { - return new URLToken(text, "PATH"); - } - static query(text) { - return new URLToken(text, "QUERY"); + packed(writer, type, fieldNo, value) { + if (!value.length) + return; + assert_1.assert(type !== reflection_info_1.ScalarType.BYTES && type !== reflection_info_1.ScalarType.STRING); + // write tag + writer.tag(fieldNo, binary_format_contract_1.WireType.LengthDelimited); + // begin length-delimited + writer.fork(); + // write values without tags + let [, method,] = this.scalarInfo(type); + for (let i = 0; i < value.length; i++) + writer[method](value[i]); + // end length delimited + writer.join(); + } + /** + * Get information for writing a scalar value. + * + * Returns tuple: + * [0]: appropriate WireType + * [1]: name of the appropriate method of IBinaryWriter + * [2]: whether the given value is a default value + * + * If argument `value` is omitted, [2] is always false. + */ + scalarInfo(type, value) { + let t = binary_format_contract_1.WireType.Varint; + let m; + let i = value === undefined; + let d = value === 0; + switch (type) { + case reflection_info_1.ScalarType.INT32: + m = "int32"; + break; + case reflection_info_1.ScalarType.STRING: + d = i || !value.length; + t = binary_format_contract_1.WireType.LengthDelimited; + m = "string"; + break; + case reflection_info_1.ScalarType.BOOL: + d = value === false; + m = "bool"; + break; + case reflection_info_1.ScalarType.UINT32: + m = "uint32"; + break; + case reflection_info_1.ScalarType.DOUBLE: + t = binary_format_contract_1.WireType.Bit64; + m = "double"; + break; + case reflection_info_1.ScalarType.FLOAT: + t = binary_format_contract_1.WireType.Bit32; + m = "float"; + break; + case reflection_info_1.ScalarType.INT64: + d = i || pb_long_1.PbLong.from(value).isZero(); + m = "int64"; + break; + case reflection_info_1.ScalarType.UINT64: + d = i || pb_long_1.PbULong.from(value).isZero(); + m = "uint64"; + break; + case reflection_info_1.ScalarType.FIXED64: + d = i || pb_long_1.PbULong.from(value).isZero(); + t = binary_format_contract_1.WireType.Bit64; + m = "fixed64"; + break; + case reflection_info_1.ScalarType.BYTES: + d = i || !value.byteLength; + t = binary_format_contract_1.WireType.LengthDelimited; + m = "bytes"; + break; + case reflection_info_1.ScalarType.FIXED32: + t = binary_format_contract_1.WireType.Bit32; + m = "fixed32"; + break; + case reflection_info_1.ScalarType.SFIXED32: + t = binary_format_contract_1.WireType.Bit32; + m = "sfixed32"; + break; + case reflection_info_1.ScalarType.SFIXED64: + d = i || pb_long_1.PbLong.from(value).isZero(); + t = binary_format_contract_1.WireType.Bit64; + m = "sfixed64"; + break; + case reflection_info_1.ScalarType.SINT32: + m = "sint32"; + break; + case reflection_info_1.ScalarType.SINT64: + d = i || pb_long_1.PbLong.from(value).isZero(); + m = "sint64"; + break; + } + return [t, m, i || d]; } } +exports.ReflectionBinaryWriter = ReflectionBinaryWriter; + + +/***/ }), + +/***/ 67317: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.containsMessageType = void 0; +const message_type_contract_1 = __nccwpck_require__(1682); /** - * Get whether or not the provided character (single character string) is an alphanumeric (letter or - * digit) character. + * Check if the provided object is a proto message. + * + * Note that this is an experimental feature - it is here to stay, but + * implementation details may change without notice. */ -function isAlphaNumericCharacter(character) { - const characterCode = character.charCodeAt(0); - return ((48 /* '0' */ <= characterCode && characterCode <= 57) /* '9' */ || - (65 /* 'A' */ <= characterCode && characterCode <= 90) /* 'Z' */ || - (97 /* 'a' */ <= characterCode && characterCode <= 122) /* 'z' */); +function containsMessageType(msg) { + return msg[message_type_contract_1.MESSAGE_TYPE] != null; } +exports.containsMessageType = containsMessageType; + + +/***/ }), + +/***/ 60390: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.reflectionCreate = void 0; +const reflection_scalar_default_1 = __nccwpck_require__(74863); +const message_type_contract_1 = __nccwpck_require__(1682); /** - * A class that tokenizes URL strings. + * Creates an instance of the generic message, using the field + * information. */ -class URLTokenizer { - constructor(_text, state) { - this._text = _text; - this._textLength = _text ? _text.length : 0; - this._currentState = state !== undefined && state !== null ? state : "SCHEME_OR_HOST"; - this._currentIndex = 0; - } - /** - * Get the current URLToken this URLTokenizer is pointing at, or undefined if the URLTokenizer - * hasn't started or has finished tokenizing. - */ - current() { - return this._currentToken; - } - /** - * Advance to the next URLToken and return whether or not a URLToken was found. - */ - next() { - if (!hasCurrentCharacter(this)) { - this._currentToken = undefined; - } - else { - switch (this._currentState) { - case "SCHEME": - nextScheme(this); - break; - case "SCHEME_OR_HOST": - nextSchemeOrHost(this); - break; - case "HOST": - nextHost(this); - break; - case "PORT": - nextPort(this); +function reflectionCreate(type) { + /** + * This ternary can be removed in the next major version. + * The `Object.create()` code path utilizes a new `messagePrototype` + * property on the `IMessageType` which has this same `MESSAGE_TYPE` + * non-enumerable property on it. Doing it this way means that we only + * pay the cost of `Object.defineProperty()` once per `IMessageType` + * class of once per "instance". The falsy code path is only provided + * for backwards compatibility in cases where the runtime library is + * updated without also updating the generated code. + */ + const msg = type.messagePrototype + ? Object.create(type.messagePrototype) + : Object.defineProperty({}, message_type_contract_1.MESSAGE_TYPE, { value: type }); + for (let field of type.fields) { + let name = field.localName; + if (field.opt) + continue; + if (field.oneof) + msg[field.oneof] = { oneofKind: undefined }; + else if (field.repeat) + msg[name] = []; + else + switch (field.kind) { + case "scalar": + msg[name] = reflection_scalar_default_1.reflectionScalarDefault(field.T, field.L); break; - case "PATH": - nextPath(this); + case "enum": + // we require 0 to be default value for all enums + msg[name] = 0; break; - case "QUERY": - nextQuery(this); + case "map": + msg[name] = {}; break; - default: - throw new Error(`Unrecognized URLTokenizerState: ${this._currentState}`); } - } - return !!this._currentToken; } + return msg; } +exports.reflectionCreate = reflectionCreate; + + +/***/ }), + +/***/ 39473: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.reflectionEquals = void 0; +const reflection_info_1 = __nccwpck_require__(21370); /** - * Read the remaining characters from this Tokenizer's character stream. + * Determines whether two message of the same type have the same field values. + * Checks for deep equality, traversing repeated fields, oneof groups, maps + * and messages recursively. + * Will also return true if both messages are `undefined`. */ -function readRemaining(tokenizer) { - let result = ""; - if (tokenizer._currentIndex < tokenizer._textLength) { - result = tokenizer._text.substring(tokenizer._currentIndex); - tokenizer._currentIndex = tokenizer._textLength; +function reflectionEquals(info, a, b) { + if (a === b) + return true; + if (!a || !b) + return false; + for (let field of info.fields) { + let localName = field.localName; + let val_a = field.oneof ? a[field.oneof][localName] : a[localName]; + let val_b = field.oneof ? b[field.oneof][localName] : b[localName]; + switch (field.kind) { + case "enum": + case "scalar": + let t = field.kind == "enum" ? reflection_info_1.ScalarType.INT32 : field.T; + if (!(field.repeat + ? repeatedPrimitiveEq(t, val_a, val_b) + : primitiveEq(t, val_a, val_b))) + return false; + break; + case "map": + if (!(field.V.kind == "message" + ? repeatedMsgEq(field.V.T(), objectValues(val_a), objectValues(val_b)) + : repeatedPrimitiveEq(field.V.kind == "enum" ? reflection_info_1.ScalarType.INT32 : field.V.T, objectValues(val_a), objectValues(val_b)))) + return false; + break; + case "message": + let T = field.T(); + if (!(field.repeat + ? repeatedMsgEq(T, val_a, val_b) + : T.equals(val_a, val_b))) + return false; + break; + } } - return result; + return true; } -/** - * Whether or not this URLTokenizer has a current character. - */ -function hasCurrentCharacter(tokenizer) { - return tokenizer._currentIndex < tokenizer._textLength; +exports.reflectionEquals = reflectionEquals; +const objectValues = Object.values; +function primitiveEq(type, a, b) { + if (a === b) + return true; + if (type !== reflection_info_1.ScalarType.BYTES) + return false; + let ba = a; + let bb = b; + if (ba.length !== bb.length) + return false; + for (let i = 0; i < ba.length; i++) + if (ba[i] != bb[i]) + return false; + return true; } -/** - * Get the character in the text string at the current index. - */ -function getCurrentCharacter(tokenizer) { - return tokenizer._text[tokenizer._currentIndex]; +function repeatedPrimitiveEq(type, a, b) { + if (a.length !== b.length) + return false; + for (let i = 0; i < a.length; i++) + if (!primitiveEq(type, a[i], b[i])) + return false; + return true; +} +function repeatedMsgEq(type, a, b) { + if (a.length !== b.length) + return false; + for (let i = 0; i < a.length; i++) + if (!type.equals(a[i], b[i])) + return false; + return true; } + + +/***/ }), + +/***/ 21370: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.readMessageOption = exports.readFieldOption = exports.readFieldOptions = exports.normalizeFieldInfo = exports.RepeatType = exports.LongType = exports.ScalarType = void 0; +const lower_camel_case_1 = __nccwpck_require__(34772); /** - * Advance to the character in text that is "step" characters ahead. If no step value is provided, - * then step will default to 1. + * Scalar value types. This is a subset of field types declared by protobuf + * enum google.protobuf.FieldDescriptorProto.Type The types GROUP and MESSAGE + * are omitted, but the numerical values are identical. */ -function nextCharacter(tokenizer, step) { - if (hasCurrentCharacter(tokenizer)) { - if (!step) { - step = 1; - } - tokenizer._currentIndex += step; - } -} +var ScalarType; +(function (ScalarType) { + // 0 is reserved for errors. + // Order is weird for historical reasons. + ScalarType[ScalarType["DOUBLE"] = 1] = "DOUBLE"; + ScalarType[ScalarType["FLOAT"] = 2] = "FLOAT"; + // Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if + // negative values are likely. + ScalarType[ScalarType["INT64"] = 3] = "INT64"; + ScalarType[ScalarType["UINT64"] = 4] = "UINT64"; + // Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if + // negative values are likely. + ScalarType[ScalarType["INT32"] = 5] = "INT32"; + ScalarType[ScalarType["FIXED64"] = 6] = "FIXED64"; + ScalarType[ScalarType["FIXED32"] = 7] = "FIXED32"; + ScalarType[ScalarType["BOOL"] = 8] = "BOOL"; + ScalarType[ScalarType["STRING"] = 9] = "STRING"; + // Tag-delimited aggregate. + // Group type is deprecated and not supported in proto3. However, Proto3 + // implementations should still be able to parse the group wire format and + // treat group fields as unknown fields. + // TYPE_GROUP = 10, + // TYPE_MESSAGE = 11, // Length-delimited aggregate. + // New in version 2. + ScalarType[ScalarType["BYTES"] = 12] = "BYTES"; + ScalarType[ScalarType["UINT32"] = 13] = "UINT32"; + // TYPE_ENUM = 14, + ScalarType[ScalarType["SFIXED32"] = 15] = "SFIXED32"; + ScalarType[ScalarType["SFIXED64"] = 16] = "SFIXED64"; + ScalarType[ScalarType["SINT32"] = 17] = "SINT32"; + ScalarType[ScalarType["SINT64"] = 18] = "SINT64"; +})(ScalarType = exports.ScalarType || (exports.ScalarType = {})); /** - * Starting with the current character, peek "charactersToPeek" number of characters ahead in this - * Tokenizer's stream of characters. + * JavaScript representation of 64 bit integral types. Equivalent to the + * field option "jstype". + * + * By default, protobuf-ts represents 64 bit types as `bigint`. + * + * You can change the default behaviour by enabling the plugin parameter + * `long_type_string`, which will represent 64 bit types as `string`. + * + * Alternatively, you can change the behaviour for individual fields + * with the field option "jstype": + * + * ```protobuf + * uint64 my_field = 1 [jstype = JS_STRING]; + * uint64 other_field = 2 [jstype = JS_NUMBER]; + * ``` */ -function peekCharacters(tokenizer, charactersToPeek) { - let endIndex = tokenizer._currentIndex + charactersToPeek; - if (tokenizer._textLength < endIndex) { - endIndex = tokenizer._textLength; - } - return tokenizer._text.substring(tokenizer._currentIndex, endIndex); -} +var LongType; +(function (LongType) { + /** + * Use JavaScript `bigint`. + * + * Field option `[jstype = JS_NORMAL]`. + */ + LongType[LongType["BIGINT"] = 0] = "BIGINT"; + /** + * Use JavaScript `string`. + * + * Field option `[jstype = JS_STRING]`. + */ + LongType[LongType["STRING"] = 1] = "STRING"; + /** + * Use JavaScript `number`. + * + * Large values will loose precision. + * + * Field option `[jstype = JS_NUMBER]`. + */ + LongType[LongType["NUMBER"] = 2] = "NUMBER"; +})(LongType = exports.LongType || (exports.LongType = {})); /** - * Read characters from this Tokenizer until the end of the stream or until the provided condition - * is false when provided the current character. + * Protobuf 2.1.0 introduced packed repeated fields. + * Setting the field option `[packed = true]` enables packing. + * + * In proto3, all repeated fields are packed by default. + * Setting the field option `[packed = false]` disables packing. + * + * Packed repeated fields are encoded with a single tag, + * then a length-delimiter, then the element values. + * + * Unpacked repeated fields are encoded with a tag and + * value for each element. + * + * `bytes` and `string` cannot be packed. */ -function readWhile(tokenizer, condition) { - let result = ""; - while (hasCurrentCharacter(tokenizer)) { - const currentCharacter = getCurrentCharacter(tokenizer); - if (!condition(currentCharacter)) { - break; - } - else { - result += currentCharacter; - nextCharacter(tokenizer); - } - } - return result; -} +var RepeatType; +(function (RepeatType) { + /** + * The field is not repeated. + */ + RepeatType[RepeatType["NO"] = 0] = "NO"; + /** + * The field is repeated and should be packed. + * Invalid for `bytes` and `string`, they cannot be packed. + */ + RepeatType[RepeatType["PACKED"] = 1] = "PACKED"; + /** + * The field is repeated but should not be packed. + * The only valid repeat type for repeated `bytes` and `string`. + */ + RepeatType[RepeatType["UNPACKED"] = 2] = "UNPACKED"; +})(RepeatType = exports.RepeatType || (exports.RepeatType = {})); /** - * Read characters from this Tokenizer until a non-alphanumeric character or the end of the - * character stream is reached. + * Turns PartialFieldInfo into FieldInfo. */ -function readWhileLetterOrDigit(tokenizer) { - return readWhile(tokenizer, (character) => isAlphaNumericCharacter(character)); -} +function normalizeFieldInfo(field) { + var _a, _b, _c, _d; + field.localName = (_a = field.localName) !== null && _a !== void 0 ? _a : lower_camel_case_1.lowerCamelCase(field.name); + field.jsonName = (_b = field.jsonName) !== null && _b !== void 0 ? _b : lower_camel_case_1.lowerCamelCase(field.name); + field.repeat = (_c = field.repeat) !== null && _c !== void 0 ? _c : RepeatType.NO; + field.opt = (_d = field.opt) !== null && _d !== void 0 ? _d : (field.repeat ? false : field.oneof ? false : field.kind == "message"); + return field; +} +exports.normalizeFieldInfo = normalizeFieldInfo; /** - * Read characters from this Tokenizer until one of the provided terminating characters is read or - * the end of the character stream is reached. + * Read custom field options from a generated message type. + * + * @deprecated use readFieldOption() */ -function readUntilCharacter(tokenizer, ...terminatingCharacters) { - return readWhile(tokenizer, (character) => terminatingCharacters.indexOf(character) === -1); -} -function nextScheme(tokenizer) { - const scheme = readWhileLetterOrDigit(tokenizer); - tokenizer._currentToken = URLToken.scheme(scheme); - if (!hasCurrentCharacter(tokenizer)) { - tokenizer._currentState = "DONE"; - } - else { - tokenizer._currentState = "HOST"; - } -} -function nextSchemeOrHost(tokenizer) { - const schemeOrHost = readUntilCharacter(tokenizer, ":", "/", "?"); - if (!hasCurrentCharacter(tokenizer)) { - tokenizer._currentToken = URLToken.host(schemeOrHost); - tokenizer._currentState = "DONE"; - } - else if (getCurrentCharacter(tokenizer) === ":") { - if (peekCharacters(tokenizer, 3) === "://") { - tokenizer._currentToken = URLToken.scheme(schemeOrHost); - tokenizer._currentState = "HOST"; - } - else { - tokenizer._currentToken = URLToken.host(schemeOrHost); - tokenizer._currentState = "PORT"; - } - } - else { - tokenizer._currentToken = URLToken.host(schemeOrHost); - if (getCurrentCharacter(tokenizer) === "/") { - tokenizer._currentState = "PATH"; - } - else { - tokenizer._currentState = "QUERY"; - } - } -} -function nextHost(tokenizer) { - if (peekCharacters(tokenizer, 3) === "://") { - nextCharacter(tokenizer, 3); - } - const host = readUntilCharacter(tokenizer, ":", "/", "?"); - tokenizer._currentToken = URLToken.host(host); - if (!hasCurrentCharacter(tokenizer)) { - tokenizer._currentState = "DONE"; - } - else if (getCurrentCharacter(tokenizer) === ":") { - tokenizer._currentState = "PORT"; - } - else if (getCurrentCharacter(tokenizer) === "/") { - tokenizer._currentState = "PATH"; - } - else { - tokenizer._currentState = "QUERY"; - } -} -function nextPort(tokenizer) { - if (getCurrentCharacter(tokenizer) === ":") { - nextCharacter(tokenizer); - } - const port = readUntilCharacter(tokenizer, "/", "?"); - tokenizer._currentToken = URLToken.port(port); - if (!hasCurrentCharacter(tokenizer)) { - tokenizer._currentState = "DONE"; - } - else if (getCurrentCharacter(tokenizer) === "/") { - tokenizer._currentState = "PATH"; - } - else { - tokenizer._currentState = "QUERY"; - } +function readFieldOptions(messageType, fieldName, extensionName, extensionType) { + var _a; + const options = (_a = messageType.fields.find((m, i) => m.localName == fieldName || i == fieldName)) === null || _a === void 0 ? void 0 : _a.options; + return options && options[extensionName] ? extensionType.fromJson(options[extensionName]) : undefined; } -function nextPath(tokenizer) { - const path = readUntilCharacter(tokenizer, "?"); - tokenizer._currentToken = URLToken.path(path); - if (!hasCurrentCharacter(tokenizer)) { - tokenizer._currentState = "DONE"; +exports.readFieldOptions = readFieldOptions; +function readFieldOption(messageType, fieldName, extensionName, extensionType) { + var _a; + const options = (_a = messageType.fields.find((m, i) => m.localName == fieldName || i == fieldName)) === null || _a === void 0 ? void 0 : _a.options; + if (!options) { + return undefined; } - else { - tokenizer._currentState = "QUERY"; + const optionVal = options[extensionName]; + if (optionVal === undefined) { + return optionVal; } + return extensionType ? extensionType.fromJson(optionVal) : optionVal; } -function nextQuery(tokenizer) { - if (getCurrentCharacter(tokenizer) === "?") { - nextCharacter(tokenizer); +exports.readFieldOption = readFieldOption; +function readMessageOption(messageType, extensionName, extensionType) { + const options = messageType.options; + const optionVal = options[extensionName]; + if (optionVal === undefined) { + return optionVal; } - const query = readRemaining(tokenizer); - tokenizer._currentToken = URLToken.query(query); - tokenizer._currentState = "DONE"; + return extensionType ? extensionType.fromJson(optionVal) : optionVal; } +exports.readMessageOption = readMessageOption; -// Copyright (c) Microsoft Corporation. -function createProxyAgent(requestUrl, proxySettings, headers) { - const host = URLBuilder.parse(proxySettings.host).getHost(); - if (!host) { - throw new Error("Expecting a non-empty host in proxy settings."); - } - if (!isValidPort(proxySettings.port)) { - throw new Error("Expecting a valid port number in the range of [0, 65535] in proxy settings."); - } - const tunnelOptions = { - proxy: { - host: host, - port: proxySettings.port, - headers: (headers && headers.rawHeaders()) || {}, - }, - }; - if (proxySettings.username && proxySettings.password) { - tunnelOptions.proxy.proxyAuth = `${proxySettings.username}:${proxySettings.password}`; - } - else if (proxySettings.username) { - tunnelOptions.proxy.proxyAuth = `${proxySettings.username}`; - } - const isRequestHttps = isUrlHttps(requestUrl); - const isProxyHttps = isUrlHttps(proxySettings.host); - const proxyAgent = { - isHttps: isRequestHttps, - agent: createTunnel(isRequestHttps, isProxyHttps, tunnelOptions), - }; - return proxyAgent; -} -function isUrlHttps(url) { - const urlScheme = URLBuilder.parse(url).getScheme() || ""; - return urlScheme.toLowerCase() === "https"; -} -function createTunnel(isRequestHttps, isProxyHttps, tunnelOptions) { - if (isRequestHttps && isProxyHttps) { - return tunnel__namespace.httpsOverHttps(tunnelOptions); - } - else if (isRequestHttps && !isProxyHttps) { - return tunnel__namespace.httpsOverHttp(tunnelOptions); - } - else if (!isRequestHttps && isProxyHttps) { - return tunnel__namespace.httpOverHttps(tunnelOptions); - } - else { - return tunnel__namespace.httpOverHttp(tunnelOptions); - } -} -function isValidPort(port) { - // any port in 0-65535 range is valid (RFC 793) even though almost all implementations - // will reserve 0 for a specific purpose, and a range of numbers for ephemeral ports - return 0 <= port && port <= 65535; -} -// Copyright (c) Microsoft Corporation. -const RedactedString = "REDACTED"; -const defaultAllowedHeaderNames = [ - "x-ms-client-request-id", - "x-ms-return-client-request-id", - "x-ms-useragent", - "x-ms-correlation-request-id", - "x-ms-request-id", - "client-request-id", - "ms-cv", - "return-client-request-id", - "traceparent", - "Access-Control-Allow-Credentials", - "Access-Control-Allow-Headers", - "Access-Control-Allow-Methods", - "Access-Control-Allow-Origin", - "Access-Control-Expose-Headers", - "Access-Control-Max-Age", - "Access-Control-Request-Headers", - "Access-Control-Request-Method", - "Origin", - "Accept", - "Accept-Encoding", - "Cache-Control", - "Connection", - "Content-Length", - "Content-Type", - "Date", - "ETag", - "Expires", - "If-Match", - "If-Modified-Since", - "If-None-Match", - "If-Unmodified-Since", - "Last-Modified", - "Pragma", - "Request-Id", - "Retry-After", - "Server", - "Transfer-Encoding", - "User-Agent", -]; -const defaultAllowedQueryParameters = ["api-version"]; -class Sanitizer { - constructor({ allowedHeaderNames = [], allowedQueryParameters = [] } = {}) { - allowedHeaderNames = Array.isArray(allowedHeaderNames) - ? defaultAllowedHeaderNames.concat(allowedHeaderNames) - : defaultAllowedHeaderNames; - allowedQueryParameters = Array.isArray(allowedQueryParameters) - ? defaultAllowedQueryParameters.concat(allowedQueryParameters) - : defaultAllowedQueryParameters; - this.allowedHeaderNames = new Set(allowedHeaderNames.map((n) => n.toLowerCase())); - this.allowedQueryParameters = new Set(allowedQueryParameters.map((p) => p.toLowerCase())); +/***/ }), + +/***/ 229: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.ReflectionJsonReader = void 0; +const json_typings_1 = __nccwpck_require__(70661); +const base64_1 = __nccwpck_require__(20196); +const reflection_info_1 = __nccwpck_require__(21370); +const pb_long_1 = __nccwpck_require__(47777); +const assert_1 = __nccwpck_require__(54253); +const reflection_long_convert_1 = __nccwpck_require__(24612); +/** + * Reads proto3 messages in canonical JSON format using reflection information. + * + * https://developers.google.com/protocol-buffers/docs/proto3#json + */ +class ReflectionJsonReader { + constructor(info) { + this.info = info; } - sanitize(obj) { - const seen = new Set(); - return JSON.stringify(obj, (key, value) => { - // Ensure Errors include their interesting non-enumerable members - if (value instanceof Error) { - return Object.assign(Object.assign({}, value), { name: value.name, message: value.message }); - } - if (key === "_headersMap") { - return this.sanitizeHeaders(value); - } - else if (key === "url") { - return this.sanitizeUrl(value); - } - else if (key === "query") { - return this.sanitizeQuery(value); + prepare() { + var _a; + if (this.fMap === undefined) { + this.fMap = {}; + const fieldsInput = (_a = this.info.fields) !== null && _a !== void 0 ? _a : []; + for (const field of fieldsInput) { + this.fMap[field.name] = field; + this.fMap[field.jsonName] = field; + this.fMap[field.localName] = field; } - else if (key === "body") { - // Don't log the request body - return undefined; + } + } + // Cannot parse JSON for #. + assert(condition, fieldName, jsonValue) { + if (!condition) { + let what = json_typings_1.typeofJsonValue(jsonValue); + if (what == "number" || what == "boolean") + what = jsonValue.toString(); + throw new Error(`Cannot parse JSON ${what} for ${this.info.typeName}#${fieldName}`); + } + } + /** + * Reads a message from canonical JSON format into the target message. + * + * Repeated fields are appended. Map entries are added, overwriting + * existing keys. + * + * If a message field is already present, it will be merged with the + * new data. + */ + read(input, message, options) { + this.prepare(); + const oneofsHandled = []; + for (const [jsonKey, jsonValue] of Object.entries(input)) { + const field = this.fMap[jsonKey]; + if (!field) { + if (!options.ignoreUnknownFields) + throw new Error(`Found unknown field while reading ${this.info.typeName} from JSON format. JSON key: ${jsonKey}`); + continue; } - else if (key === "response") { - // Don't log response again - return undefined; + const localName = field.localName; + // handle oneof ADT + let target; // this will be the target for the field value, whether it is member of a oneof or not + if (field.oneof) { + if (jsonValue === null && (field.kind !== 'enum' || field.T()[0] !== 'google.protobuf.NullValue')) { + continue; + } + // since json objects are unordered by specification, it is not possible to take the last of multiple oneofs + if (oneofsHandled.includes(field.oneof)) + throw new Error(`Multiple members of the oneof group "${field.oneof}" of ${this.info.typeName} are present in JSON.`); + oneofsHandled.push(field.oneof); + target = message[field.oneof] = { + oneofKind: localName + }; } - else if (key === "operationSpec") { - // When using sendOperationRequest, the request carries a massive - // field with the autorest spec. No need to log it. - return undefined; + else { + target = message; } - else if (Array.isArray(value) || isObject(value)) { - if (seen.has(value)) { - return "[Circular]"; + // we have handled oneof above. we just have read the value into `target`. + if (field.kind == 'map') { + if (jsonValue === null) { + continue; + } + // check input + this.assert(json_typings_1.isJsonObject(jsonValue), field.name, jsonValue); + // our target to put map entries into + const fieldObj = target[localName]; + // read entries + for (const [jsonObjKey, jsonObjValue] of Object.entries(jsonValue)) { + this.assert(jsonObjValue !== null, field.name + " map value", null); + // read value + let val; + switch (field.V.kind) { + case "message": + val = field.V.T().internalJsonRead(jsonObjValue, options); + break; + case "enum": + val = this.enum(field.V.T(), jsonObjValue, field.name, options.ignoreUnknownFields); + if (val === false) + continue; + break; + case "scalar": + val = this.scalar(jsonObjValue, field.V.T, field.V.L, field.name); + break; + } + this.assert(val !== undefined, field.name + " map value", jsonObjValue); + // read key + let key = jsonObjKey; + if (field.K == reflection_info_1.ScalarType.BOOL) + key = key == "true" ? true : key == "false" ? false : key; + key = this.scalar(key, field.K, reflection_info_1.LongType.STRING, field.name).toString(); + fieldObj[key] = val; } - seen.add(value); } - return value; - }, 2); - } - sanitizeHeaders(value) { - return this.sanitizeObject(value, this.allowedHeaderNames, (v, k) => v[k].value); - } - sanitizeQuery(value) { - return this.sanitizeObject(value, this.allowedQueryParameters, (v, k) => v[k]); - } - sanitizeObject(value, allowedKeys, accessor) { - if (typeof value !== "object" || value === null) { - return value; - } - const sanitized = {}; - for (const k of Object.keys(value)) { - if (allowedKeys.has(k.toLowerCase())) { - sanitized[k] = accessor(value, k); + else if (field.repeat) { + if (jsonValue === null) + continue; + // check input + this.assert(Array.isArray(jsonValue), field.name, jsonValue); + // our target to put array entries into + const fieldArr = target[localName]; + // read array entries + for (const jsonItem of jsonValue) { + this.assert(jsonItem !== null, field.name, null); + let val; + switch (field.kind) { + case "message": + val = field.T().internalJsonRead(jsonItem, options); + break; + case "enum": + val = this.enum(field.T(), jsonItem, field.name, options.ignoreUnknownFields); + if (val === false) + continue; + break; + case "scalar": + val = this.scalar(jsonItem, field.T, field.L, field.name); + break; + } + this.assert(val !== undefined, field.name, jsonValue); + fieldArr.push(val); + } } else { - sanitized[k] = RedactedString; + switch (field.kind) { + case "message": + if (jsonValue === null && field.T().typeName != 'google.protobuf.Value') { + this.assert(field.oneof === undefined, field.name + " (oneof member)", null); + continue; + } + target[localName] = field.T().internalJsonRead(jsonValue, options, target[localName]); + break; + case "enum": + if (jsonValue === null) + continue; + let val = this.enum(field.T(), jsonValue, field.name, options.ignoreUnknownFields); + if (val === false) + continue; + target[localName] = val; + break; + case "scalar": + if (jsonValue === null) + continue; + target[localName] = this.scalar(jsonValue, field.T, field.L, field.name); + break; + } } } - return sanitized; } - sanitizeUrl(value) { - if (typeof value !== "string" || value === null) { - return value; - } - const urlBuilder = URLBuilder.parse(value); - const queryString = urlBuilder.getQuery(); - if (!queryString) { - return value; + /** + * Returns `false` for unrecognized string representations. + * + * google.protobuf.NullValue accepts only JSON `null` (or the old `"NULL_VALUE"`). + */ + enum(type, json, fieldName, ignoreUnknownFields) { + if (type[0] == 'google.protobuf.NullValue') + assert_1.assert(json === null || json === "NULL_VALUE", `Unable to parse field ${this.info.typeName}#${fieldName}, enum ${type[0]} only accepts null.`); + if (json === null) + // we require 0 to be default value for all enums + return 0; + switch (typeof json) { + case "number": + assert_1.assert(Number.isInteger(json), `Unable to parse field ${this.info.typeName}#${fieldName}, enum can only be integral number, got ${json}.`); + return json; + case "string": + let localEnumName = json; + if (type[2] && json.substring(0, type[2].length) === type[2]) + // lookup without the shared prefix + localEnumName = json.substring(type[2].length); + let enumNumber = type[1][localEnumName]; + if (typeof enumNumber === 'undefined' && ignoreUnknownFields) { + return false; + } + assert_1.assert(typeof enumNumber == "number", `Unable to parse field ${this.info.typeName}#${fieldName}, enum ${type[0]} has no value for "${json}".`); + return enumNumber; } - const query = URLQuery.parse(queryString); - for (const k of query.keys()) { - if (!this.allowedQueryParameters.has(k.toLowerCase())) { - query.set(k, RedactedString); + assert_1.assert(false, `Unable to parse field ${this.info.typeName}#${fieldName}, cannot parse enum value from ${typeof json}".`); + } + scalar(json, type, longType, fieldName) { + let e; + try { + switch (type) { + // float, double: JSON value will be a number or one of the special string values "NaN", "Infinity", and "-Infinity". + // Either numbers or strings are accepted. Exponent notation is also accepted. + case reflection_info_1.ScalarType.DOUBLE: + case reflection_info_1.ScalarType.FLOAT: + if (json === null) + return .0; + if (json === "NaN") + return Number.NaN; + if (json === "Infinity") + return Number.POSITIVE_INFINITY; + if (json === "-Infinity") + return Number.NEGATIVE_INFINITY; + if (json === "") { + e = "empty string"; + break; + } + if (typeof json == "string" && json.trim().length !== json.length) { + e = "extra whitespace"; + break; + } + if (typeof json != "string" && typeof json != "number") { + break; + } + let float = Number(json); + if (Number.isNaN(float)) { + e = "not a number"; + break; + } + if (!Number.isFinite(float)) { + // infinity and -infinity are handled by string representation above, so this is an error + e = "too large or small"; + break; + } + if (type == reflection_info_1.ScalarType.FLOAT) + assert_1.assertFloat32(float); + return float; + // int32, fixed32, uint32: JSON value will be a decimal number. Either numbers or strings are accepted. + case reflection_info_1.ScalarType.INT32: + case reflection_info_1.ScalarType.FIXED32: + case reflection_info_1.ScalarType.SFIXED32: + case reflection_info_1.ScalarType.SINT32: + case reflection_info_1.ScalarType.UINT32: + if (json === null) + return 0; + let int32; + if (typeof json == "number") + int32 = json; + else if (json === "") + e = "empty string"; + else if (typeof json == "string") { + if (json.trim().length !== json.length) + e = "extra whitespace"; + else + int32 = Number(json); + } + if (int32 === undefined) + break; + if (type == reflection_info_1.ScalarType.UINT32) + assert_1.assertUInt32(int32); + else + assert_1.assertInt32(int32); + return int32; + // int64, fixed64, uint64: JSON value will be a decimal string. Either numbers or strings are accepted. + case reflection_info_1.ScalarType.INT64: + case reflection_info_1.ScalarType.SFIXED64: + case reflection_info_1.ScalarType.SINT64: + if (json === null) + return reflection_long_convert_1.reflectionLongConvert(pb_long_1.PbLong.ZERO, longType); + if (typeof json != "number" && typeof json != "string") + break; + return reflection_long_convert_1.reflectionLongConvert(pb_long_1.PbLong.from(json), longType); + case reflection_info_1.ScalarType.FIXED64: + case reflection_info_1.ScalarType.UINT64: + if (json === null) + return reflection_long_convert_1.reflectionLongConvert(pb_long_1.PbULong.ZERO, longType); + if (typeof json != "number" && typeof json != "string") + break; + return reflection_long_convert_1.reflectionLongConvert(pb_long_1.PbULong.from(json), longType); + // bool: + case reflection_info_1.ScalarType.BOOL: + if (json === null) + return false; + if (typeof json !== "boolean") + break; + return json; + // string: + case reflection_info_1.ScalarType.STRING: + if (json === null) + return ""; + if (typeof json !== "string") { + e = "extra whitespace"; + break; + } + try { + encodeURIComponent(json); + } + catch (e) { + e = "invalid UTF8"; + break; + } + return json; + // bytes: JSON value will be the data encoded as a string using standard base64 encoding with paddings. + // Either standard or URL-safe base64 encoding with/without paddings are accepted. + case reflection_info_1.ScalarType.BYTES: + if (json === null || json === "") + return new Uint8Array(0); + if (typeof json !== 'string') + break; + return base64_1.base64decode(json); } } - urlBuilder.setQuery(query.toString()); - return urlBuilder.toString(); + catch (error) { + e = error.message; + } + this.assert(false, fieldName + (e ? " - " + e : ""), json); } } +exports.ReflectionJsonReader = ReflectionJsonReader; -// Copyright (c) Microsoft Corporation. -const custom = util.inspect.custom; -// Copyright (c) Microsoft Corporation. -const errorSanitizer = new Sanitizer(); +/***/ }), + +/***/ 68980: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.ReflectionJsonWriter = void 0; +const base64_1 = __nccwpck_require__(20196); +const pb_long_1 = __nccwpck_require__(47777); +const reflection_info_1 = __nccwpck_require__(21370); +const assert_1 = __nccwpck_require__(54253); /** - * An error resulting from an HTTP request to a service endpoint. + * Writes proto3 messages in canonical JSON format using reflection + * information. + * + * https://developers.google.com/protocol-buffers/docs/proto3#json */ -class RestError extends Error { - constructor(message, code, statusCode, request, response) { - super(message); - this.name = "RestError"; - this.code = code; - this.statusCode = statusCode; - this.request = request; - this.response = response; - Object.setPrototypeOf(this, RestError.prototype); +class ReflectionJsonWriter { + constructor(info) { + var _a; + this.fields = (_a = info.fields) !== null && _a !== void 0 ? _a : []; } /** - * Logging method for util.inspect in Node + * Converts the message to a JSON object, based on the field descriptors. */ - [custom]() { - return `RestError: ${this.message} \n ${errorSanitizer.sanitize(this)}`; + write(message, options) { + const json = {}, source = message; + for (const field of this.fields) { + // field is not part of a oneof, simply write as is + if (!field.oneof) { + let jsonValue = this.field(field, source[field.localName], options); + if (jsonValue !== undefined) + json[options.useProtoFieldName ? field.name : field.jsonName] = jsonValue; + continue; + } + // field is part of a oneof + const group = source[field.oneof]; + if (group.oneofKind !== field.localName) + continue; // not selected, skip + const opt = field.kind == 'scalar' || field.kind == 'enum' + ? Object.assign(Object.assign({}, options), { emitDefaultValues: true }) : options; + let jsonValue = this.field(field, group[field.localName], opt); + assert_1.assert(jsonValue !== undefined); + json[options.useProtoFieldName ? field.name : field.jsonName] = jsonValue; + } + return json; + } + field(field, value, options) { + let jsonValue = undefined; + if (field.kind == 'map') { + assert_1.assert(typeof value == "object" && value !== null); + const jsonObj = {}; + switch (field.V.kind) { + case "scalar": + for (const [entryKey, entryValue] of Object.entries(value)) { + const val = this.scalar(field.V.T, entryValue, field.name, false, true); + assert_1.assert(val !== undefined); + jsonObj[entryKey.toString()] = val; // JSON standard allows only (double quoted) string as property key + } + break; + case "message": + const messageType = field.V.T(); + for (const [entryKey, entryValue] of Object.entries(value)) { + const val = this.message(messageType, entryValue, field.name, options); + assert_1.assert(val !== undefined); + jsonObj[entryKey.toString()] = val; // JSON standard allows only (double quoted) string as property key + } + break; + case "enum": + const enumInfo = field.V.T(); + for (const [entryKey, entryValue] of Object.entries(value)) { + assert_1.assert(entryValue === undefined || typeof entryValue == 'number'); + const val = this.enum(enumInfo, entryValue, field.name, false, true, options.enumAsInteger); + assert_1.assert(val !== undefined); + jsonObj[entryKey.toString()] = val; // JSON standard allows only (double quoted) string as property key + } + break; + } + if (options.emitDefaultValues || Object.keys(jsonObj).length > 0) + jsonValue = jsonObj; + } + else if (field.repeat) { + assert_1.assert(Array.isArray(value)); + const jsonArr = []; + switch (field.kind) { + case "scalar": + for (let i = 0; i < value.length; i++) { + const val = this.scalar(field.T, value[i], field.name, field.opt, true); + assert_1.assert(val !== undefined); + jsonArr.push(val); + } + break; + case "enum": + const enumInfo = field.T(); + for (let i = 0; i < value.length; i++) { + assert_1.assert(value[i] === undefined || typeof value[i] == 'number'); + const val = this.enum(enumInfo, value[i], field.name, field.opt, true, options.enumAsInteger); + assert_1.assert(val !== undefined); + jsonArr.push(val); + } + break; + case "message": + const messageType = field.T(); + for (let i = 0; i < value.length; i++) { + const val = this.message(messageType, value[i], field.name, options); + assert_1.assert(val !== undefined); + jsonArr.push(val); + } + break; + } + // add converted array to json output + if (options.emitDefaultValues || jsonArr.length > 0 || options.emitDefaultValues) + jsonValue = jsonArr; + } + else { + switch (field.kind) { + case "scalar": + jsonValue = this.scalar(field.T, value, field.name, field.opt, options.emitDefaultValues); + break; + case "enum": + jsonValue = this.enum(field.T(), value, field.name, field.opt, options.emitDefaultValues, options.enumAsInteger); + break; + case "message": + jsonValue = this.message(field.T(), value, field.name, options); + break; + } + } + return jsonValue; } -} -/** - * A constant string to identify errors that may arise when making an HTTP request that indicates an issue with the transport layer (e.g. the hostname of the URL cannot be resolved via DNS.) - */ -RestError.REQUEST_SEND_ERROR = "REQUEST_SEND_ERROR"; -/** - * A constant string to identify errors that may arise from parsing an incoming HTTP response. Usually indicates a malformed HTTP body, such as an encoded JSON payload that is incomplete. - */ -RestError.PARSE_ERROR = "PARSE_ERROR"; + /** + * Returns `null` as the default for google.protobuf.NullValue. + */ + enum(type, value, fieldName, optional, emitDefaultValues, enumAsInteger) { + if (type[0] == 'google.protobuf.NullValue') + return !emitDefaultValues && !optional ? undefined : null; + if (value === undefined) { + assert_1.assert(optional); + return undefined; + } + if (value === 0 && !emitDefaultValues && !optional) + // we require 0 to be default value for all enums + return undefined; + assert_1.assert(typeof value == 'number'); + assert_1.assert(Number.isInteger(value)); + if (enumAsInteger || !type[1].hasOwnProperty(value)) + // if we don't now the enum value, just return the number + return value; + if (type[2]) + // restore the dropped prefix + return type[2] + type[1][value]; + return type[1][value]; + } + message(type, value, fieldName, options) { + if (value === undefined) + return options.emitDefaultValues ? null : undefined; + return type.internalJsonWrite(value, options); + } + scalar(type, value, fieldName, optional, emitDefaultValues) { + if (value === undefined) { + assert_1.assert(optional); + return undefined; + } + const ed = emitDefaultValues || optional; + // noinspection FallThroughInSwitchStatementJS + switch (type) { + // int32, fixed32, uint32: JSON value will be a decimal number. Either numbers or strings are accepted. + case reflection_info_1.ScalarType.INT32: + case reflection_info_1.ScalarType.SFIXED32: + case reflection_info_1.ScalarType.SINT32: + if (value === 0) + return ed ? 0 : undefined; + assert_1.assertInt32(value); + return value; + case reflection_info_1.ScalarType.FIXED32: + case reflection_info_1.ScalarType.UINT32: + if (value === 0) + return ed ? 0 : undefined; + assert_1.assertUInt32(value); + return value; + // float, double: JSON value will be a number or one of the special string values "NaN", "Infinity", and "-Infinity". + // Either numbers or strings are accepted. Exponent notation is also accepted. + case reflection_info_1.ScalarType.FLOAT: + assert_1.assertFloat32(value); + case reflection_info_1.ScalarType.DOUBLE: + if (value === 0) + return ed ? 0 : undefined; + assert_1.assert(typeof value == 'number'); + if (Number.isNaN(value)) + return 'NaN'; + if (value === Number.POSITIVE_INFINITY) + return 'Infinity'; + if (value === Number.NEGATIVE_INFINITY) + return '-Infinity'; + return value; + // string: + case reflection_info_1.ScalarType.STRING: + if (value === "") + return ed ? '' : undefined; + assert_1.assert(typeof value == 'string'); + return value; + // bool: + case reflection_info_1.ScalarType.BOOL: + if (value === false) + return ed ? false : undefined; + assert_1.assert(typeof value == 'boolean'); + return value; + // JSON value will be a decimal string. Either numbers or strings are accepted. + case reflection_info_1.ScalarType.UINT64: + case reflection_info_1.ScalarType.FIXED64: + assert_1.assert(typeof value == 'number' || typeof value == 'string' || typeof value == 'bigint'); + let ulong = pb_long_1.PbULong.from(value); + if (ulong.isZero() && !ed) + return undefined; + return ulong.toString(); + // JSON value will be a decimal string. Either numbers or strings are accepted. + case reflection_info_1.ScalarType.INT64: + case reflection_info_1.ScalarType.SFIXED64: + case reflection_info_1.ScalarType.SINT64: + assert_1.assert(typeof value == 'number' || typeof value == 'string' || typeof value == 'bigint'); + let long = pb_long_1.PbLong.from(value); + if (long.isZero() && !ed) + return undefined; + return long.toString(); + // bytes: JSON value will be the data encoded as a string using standard base64 encoding with paddings. + // Either standard or URL-safe base64 encoding with/without paddings are accepted. + case reflection_info_1.ScalarType.BYTES: + assert_1.assert(value instanceof Uint8Array); + if (!value.byteLength) + return ed ? "" : undefined; + return base64_1.base64encode(value); + } + } +} +exports.ReflectionJsonWriter = ReflectionJsonWriter; -// Copyright (c) Microsoft Corporation. -const logger = logger$1.createClientLogger("core-http"); -// Copyright (c) Microsoft Corporation. -function getCachedAgent(isHttps, agentCache) { - return isHttps ? agentCache.httpsAgent : agentCache.httpAgent; -} -class ReportTransform extends stream.Transform { - constructor(progressCallback) { - super(); - this.progressCallback = progressCallback; - this.loadedBytes = 0; - } - _transform(chunk, _encoding, callback) { - this.push(chunk); - this.loadedBytes += chunk.length; - this.progressCallback({ loadedBytes: this.loadedBytes }); - callback(undefined); +/***/ }), + +/***/ 24612: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.reflectionLongConvert = void 0; +const reflection_info_1 = __nccwpck_require__(21370); +/** + * Utility method to convert a PbLong or PbUlong to a JavaScript + * representation during runtime. + * + * Works with generated field information, `undefined` is equivalent + * to `STRING`. + */ +function reflectionLongConvert(long, type) { + switch (type) { + case reflection_info_1.LongType.BIGINT: + return long.toBigInt(); + case reflection_info_1.LongType.NUMBER: + return long.toNumber(); + default: + // case undefined: + // case LongType.STRING: + return long.toString(); } } -function isReadableStream(body) { - return body && typeof body.pipe === "function"; -} -function isStreamComplete(stream, aborter) { - return new Promise((resolve) => { - stream.once("close", () => { - aborter === null || aborter === void 0 ? void 0 : aborter.abort(); - resolve(); - }); - stream.once("end", resolve); - stream.once("error", resolve); - }); -} +exports.reflectionLongConvert = reflectionLongConvert; + + +/***/ }), + +/***/ 7869: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.reflectionMergePartial = void 0; /** - * Transforms a set of headers into the key/value pair defined by {@link HttpHeadersLike} + * Copy partial data into the target message. + * + * If a singular scalar or enum field is present in the source, it + * replaces the field in the target. + * + * If a singular message field is present in the source, it is merged + * with the target field by calling mergePartial() of the responsible + * message type. + * + * If a repeated field is present in the source, its values replace + * all values in the target array, removing extraneous values. + * Repeated message fields are copied, not merged. + * + * If a map field is present in the source, entries are added to the + * target map, replacing entries with the same key. Entries that only + * exist in the target remain. Entries with message values are copied, + * not merged. + * + * Note that this function differs from protobuf merge semantics, + * which appends repeated fields. */ -function parseHeaders(headers) { - const httpHeaders = new HttpHeaders(); - headers.forEach((value, key) => { - httpHeaders.set(key, value); - }); - return httpHeaders; +function reflectionMergePartial(info, target, source) { + let fieldValue, // the field value we are working with + input = source, output; // where we want our field value to go + for (let field of info.fields) { + let name = field.localName; + if (field.oneof) { + const group = input[field.oneof]; // this is the oneof`s group in the source + if ((group === null || group === void 0 ? void 0 : group.oneofKind) == undefined) { // the user is free to omit + continue; // we skip this field, and all other members too + } + fieldValue = group[name]; // our value comes from the the oneof group of the source + output = target[field.oneof]; // and our output is the oneof group of the target + output.oneofKind = group.oneofKind; // always update discriminator + if (fieldValue == undefined) { + delete output[name]; // remove any existing value + continue; // skip further work on field + } + } + else { + fieldValue = input[name]; // we are using the source directly + output = target; // we want our field value to go directly into the target + if (fieldValue == undefined) { + continue; // skip further work on field, existing value is used as is + } + } + if (field.repeat) + output[name].length = fieldValue.length; // resize target array to match source array + // now we just work with `fieldValue` and `output` to merge the value + switch (field.kind) { + case "scalar": + case "enum": + if (field.repeat) + for (let i = 0; i < fieldValue.length; i++) + output[name][i] = fieldValue[i]; // not a reference type + else + output[name] = fieldValue; // not a reference type + break; + case "message": + let T = field.T(); + if (field.repeat) + for (let i = 0; i < fieldValue.length; i++) + output[name][i] = T.create(fieldValue[i]); + else if (output[name] === undefined) + output[name] = T.create(fieldValue); // nothing to merge with + else + T.mergePartial(output[name], fieldValue); + break; + case "map": + // Map and repeated fields are simply overwritten, not appended or merged + switch (field.V.kind) { + case "scalar": + case "enum": + Object.assign(output[name], fieldValue); // elements are not reference types + break; + case "message": + let T = field.V.T(); + for (let k of Object.keys(fieldValue)) + output[name][k] = T.create(fieldValue[k]); + break; + } + break; + } + } } +exports.reflectionMergePartial = reflectionMergePartial; + + +/***/ }), + +/***/ 74863: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.reflectionScalarDefault = void 0; +const reflection_info_1 = __nccwpck_require__(21370); +const reflection_long_convert_1 = __nccwpck_require__(24612); +const pb_long_1 = __nccwpck_require__(47777); /** - * An HTTP client that uses `node-fetch`. + * Creates the default value for a scalar type. */ -class NodeFetchHttpClient { - constructor() { - // a mapping of proxy settings string `${host}:${port}:${username}:${password}` to agent - this.proxyAgentMap = new Map(); - this.keepAliveAgents = {}; - this.cookieJar = new tough__namespace.CookieJar(undefined, { looseMode: true }); +function reflectionScalarDefault(type, longType = reflection_info_1.LongType.STRING) { + switch (type) { + case reflection_info_1.ScalarType.BOOL: + return false; + case reflection_info_1.ScalarType.UINT64: + case reflection_info_1.ScalarType.FIXED64: + return reflection_long_convert_1.reflectionLongConvert(pb_long_1.PbULong.ZERO, longType); + case reflection_info_1.ScalarType.INT64: + case reflection_info_1.ScalarType.SFIXED64: + case reflection_info_1.ScalarType.SINT64: + return reflection_long_convert_1.reflectionLongConvert(pb_long_1.PbLong.ZERO, longType); + case reflection_info_1.ScalarType.DOUBLE: + case reflection_info_1.ScalarType.FLOAT: + return 0.0; + case reflection_info_1.ScalarType.BYTES: + return new Uint8Array(0); + case reflection_info_1.ScalarType.STRING: + return ""; + default: + // case ScalarType.INT32: + // case ScalarType.UINT32: + // case ScalarType.SINT32: + // case ScalarType.FIXED32: + // case ScalarType.SFIXED32: + return 0; } - /** - * Provides minimum viable error handling and the logic that executes the abstract methods. - * @param httpRequest - Object representing the outgoing HTTP request. - * @returns An object representing the incoming HTTP response. - */ - async sendRequest(httpRequest) { +} +exports.reflectionScalarDefault = reflectionScalarDefault; + + +/***/ }), + +/***/ 20903: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.ReflectionTypeCheck = void 0; +const reflection_info_1 = __nccwpck_require__(21370); +const oneof_1 = __nccwpck_require__(78531); +// noinspection JSMethodCanBeStatic +class ReflectionTypeCheck { + constructor(info) { var _a; - if (!httpRequest && typeof httpRequest !== "object") { - throw new Error("'httpRequest' (WebResourceLike) cannot be null or undefined and must be of type object."); - } - const abortController$1 = new abortController.AbortController(); - let abortListener; - if (httpRequest.abortSignal) { - if (httpRequest.abortSignal.aborted) { - throw new abortController.AbortError("The operation was aborted."); - } - abortListener = (event) => { - if (event.type === "abort") { - abortController$1.abort(); - } - }; - httpRequest.abortSignal.addEventListener("abort", abortListener); - } - if (httpRequest.timeout) { - setTimeout(() => { - abortController$1.abort(); - }, httpRequest.timeout); - } - if (httpRequest.formData) { - const formData = httpRequest.formData; - const requestForm = new FormData__default["default"](); - const appendFormValue = (key, value) => { - // value function probably returns a stream so we can provide a fresh stream on each retry - if (typeof value === "function") { - value = value(); - } - if (value && - Object.prototype.hasOwnProperty.call(value, "value") && - Object.prototype.hasOwnProperty.call(value, "options")) { - requestForm.append(key, value.value, value.options); - } - else { - requestForm.append(key, value); - } - }; - for (const formKey of Object.keys(formData)) { - const formValue = formData[formKey]; - if (Array.isArray(formValue)) { - for (let j = 0; j < formValue.length; j++) { - appendFormValue(formKey, formValue[j]); - } - } - else { - appendFormValue(formKey, formValue); + this.fields = (_a = info.fields) !== null && _a !== void 0 ? _a : []; + } + prepare() { + if (this.data) + return; + const req = [], known = [], oneofs = []; + for (let field of this.fields) { + if (field.oneof) { + if (!oneofs.includes(field.oneof)) { + oneofs.push(field.oneof); + req.push(field.oneof); + known.push(field.oneof); } } - httpRequest.body = requestForm; - httpRequest.formData = undefined; - const contentType = httpRequest.headers.get("Content-Type"); - if (contentType && contentType.indexOf("multipart/form-data") !== -1) { - if (typeof requestForm.getBoundary === "function") { - httpRequest.headers.set("Content-Type", `multipart/form-data; boundary=${requestForm.getBoundary()}`); - } - else { - // browser will automatically apply a suitable content-type header - httpRequest.headers.remove("Content-Type"); + else { + known.push(field.localName); + switch (field.kind) { + case "scalar": + case "enum": + if (!field.opt || field.repeat) + req.push(field.localName); + break; + case "message": + if (field.repeat) + req.push(field.localName); + break; + case "map": + req.push(field.localName); + break; } } } - let body = httpRequest.body - ? typeof httpRequest.body === "function" - ? httpRequest.body() - : httpRequest.body - : undefined; - if (httpRequest.onUploadProgress && httpRequest.body) { - const onUploadProgress = httpRequest.onUploadProgress; - const uploadReportStream = new ReportTransform(onUploadProgress); - if (isReadableStream(body)) { - body.pipe(uploadReportStream); - } - else { - uploadReportStream.end(body); - } - body = uploadReportStream; + this.data = { req, known, oneofs: Object.values(oneofs) }; + } + /** + * Is the argument a valid message as specified by the + * reflection information? + * + * Checks all field types recursively. The `depth` + * specifies how deep into the structure the check will be. + * + * With a depth of 0, only the presence of fields + * is checked. + * + * With a depth of 1 or more, the field types are checked. + * + * With a depth of 2 or more, the members of map, repeated + * and message fields are checked. + * + * Message fields will be checked recursively with depth - 1. + * + * The number of map entries / repeated values being checked + * is < depth. + */ + is(message, depth, allowExcessProperties = false) { + if (depth < 0) + return true; + if (message === null || message === undefined || typeof message != 'object') + return false; + this.prepare(); + let keys = Object.keys(message), data = this.data; + // if a required field is missing in arg, this cannot be a T + if (keys.length < data.req.length || data.req.some(n => !keys.includes(n))) + return false; + if (!allowExcessProperties) { + // if the arg contains a key we dont know, this is not a literal T + if (keys.some(k => !data.known.includes(k))) + return false; } - const platformSpecificRequestInit = await this.prepareRequest(httpRequest); - const requestInit = Object.assign({ body: body, headers: httpRequest.headers.rawHeaders(), method: httpRequest.method, signal: abortController$1.signal, redirect: "manual" }, platformSpecificRequestInit); - let operationResponse; - try { - const response = await this.fetch(httpRequest.url, requestInit); - const headers = parseHeaders(response.headers); - const streaming = ((_a = httpRequest.streamResponseStatusCodes) === null || _a === void 0 ? void 0 : _a.has(response.status)) || - httpRequest.streamResponseBody; - operationResponse = { - headers: headers, - request: httpRequest, - status: response.status, - readableStreamBody: streaming - ? response.body - : undefined, - bodyAsText: !streaming ? await response.text() : undefined, - }; - const onDownloadProgress = httpRequest.onDownloadProgress; - if (onDownloadProgress) { - const responseBody = response.body || undefined; - if (isReadableStream(responseBody)) { - const downloadReportStream = new ReportTransform(onDownloadProgress); - responseBody.pipe(downloadReportStream); - operationResponse.readableStreamBody = downloadReportStream; - } - else { - const length = parseInt(headers.get("Content-Length")) || undefined; - if (length) { - // Calling callback for non-stream response for consistency with browser - onDownloadProgress({ loadedBytes: length }); - } - } - } - await this.processRequest(operationResponse); - return operationResponse; + // "With a depth of 0, only the presence and absence of fields is checked." + // "With a depth of 1 or more, the field types are checked." + if (depth < 1) { + return true; } - catch (error) { - const fetchError = error; - if (fetchError.code === "ENOTFOUND") { - throw new RestError(fetchError.message, RestError.REQUEST_SEND_ERROR, undefined, httpRequest); - } - else if (fetchError.type === "aborted") { - throw new abortController.AbortError("The operation was aborted."); - } - throw fetchError; + // check oneof group + for (const name of data.oneofs) { + const group = message[name]; + if (!oneof_1.isOneofGroup(group)) + return false; + if (group.oneofKind === undefined) + continue; + const field = this.fields.find(f => f.localName === group.oneofKind); + if (!field) + return false; // we found no field, but have a kind, something is wrong + if (!this.field(group[group.oneofKind], field, allowExcessProperties, depth)) + return false; } - finally { - // clean up event listener - if (httpRequest.abortSignal && abortListener) { - let uploadStreamDone = Promise.resolve(); - if (isReadableStream(body)) { - uploadStreamDone = isStreamComplete(body); - } - let downloadStreamDone = Promise.resolve(); - if (isReadableStream(operationResponse === null || operationResponse === void 0 ? void 0 : operationResponse.readableStreamBody)) { - downloadStreamDone = isStreamComplete(operationResponse.readableStreamBody, abortController$1); + // check types + for (const field of this.fields) { + if (field.oneof !== undefined) + continue; + if (!this.field(message[field.localName], field, allowExcessProperties, depth)) + return false; + } + return true; + } + field(arg, field, allowExcessProperties, depth) { + let repeated = field.repeat; + switch (field.kind) { + case "scalar": + if (arg === undefined) + return field.opt; + if (repeated) + return this.scalars(arg, field.T, depth, field.L); + return this.scalar(arg, field.T, field.L); + case "enum": + if (arg === undefined) + return field.opt; + if (repeated) + return this.scalars(arg, reflection_info_1.ScalarType.INT32, depth); + return this.scalar(arg, reflection_info_1.ScalarType.INT32); + case "message": + if (arg === undefined) + return true; + if (repeated) + return this.messages(arg, field.T(), allowExcessProperties, depth); + return this.message(arg, field.T(), allowExcessProperties, depth); + case "map": + if (typeof arg != 'object' || arg === null) + return false; + if (depth < 2) + return true; + if (!this.mapKeys(arg, field.K, depth)) + return false; + switch (field.V.kind) { + case "scalar": + return this.scalars(Object.values(arg), field.V.T, depth, field.V.L); + case "enum": + return this.scalars(Object.values(arg), reflection_info_1.ScalarType.INT32, depth); + case "message": + return this.messages(Object.values(arg), field.V.T(), allowExcessProperties, depth); } - Promise.all([uploadStreamDone, downloadStreamDone]) - .then(() => { - var _a; - (_a = httpRequest.abortSignal) === null || _a === void 0 ? void 0 : _a.removeEventListener("abort", abortListener); - return; - }) - .catch((e) => { - logger.warning("Error when cleaning up abortListener on httpRequest", e); - }); - } + break; } + return true; } - getOrCreateAgent(httpRequest) { - var _a; - const isHttps = isUrlHttps(httpRequest.url); - // At the moment, proxy settings and keepAlive are mutually - // exclusive because the 'tunnel' library currently lacks the - // ability to create a proxy with keepAlive turned on. - if (httpRequest.proxySettings) { - const { host, port, username, password } = httpRequest.proxySettings; - const key = `${host}:${port}:${username}:${password}`; - const proxyAgents = (_a = this.proxyAgentMap.get(key)) !== null && _a !== void 0 ? _a : {}; - let agent = getCachedAgent(isHttps, proxyAgents); - if (agent) { - return agent; - } - const tunnel = createProxyAgent(httpRequest.url, httpRequest.proxySettings, httpRequest.headers); - agent = tunnel.agent; - if (tunnel.isHttps) { - proxyAgents.httpsAgent = tunnel.agent; - } - else { - proxyAgents.httpAgent = tunnel.agent; - } - this.proxyAgentMap.set(key, proxyAgents); - return agent; + message(arg, type, allowExcessProperties, depth) { + if (allowExcessProperties) { + return type.isAssignable(arg, depth); } - else if (httpRequest.keepAlive) { - let agent = getCachedAgent(isHttps, this.keepAliveAgents); - if (agent) { - return agent; - } - const agentOptions = { - keepAlive: httpRequest.keepAlive, - }; - if (isHttps) { - agent = this.keepAliveAgents.httpsAgent = new https__namespace.Agent(agentOptions); - } - else { - agent = this.keepAliveAgents.httpAgent = new http__namespace.Agent(agentOptions); - } - return agent; + return type.is(arg, depth); + } + messages(arg, type, allowExcessProperties, depth) { + if (!Array.isArray(arg)) + return false; + if (depth < 2) + return true; + if (allowExcessProperties) { + for (let i = 0; i < arg.length && i < depth; i++) + if (!type.isAssignable(arg[i], depth - 1)) + return false; } else { - return isHttps ? https__namespace.globalAgent : http__namespace.globalAgent; + for (let i = 0; i < arg.length && i < depth; i++) + if (!type.is(arg[i], depth - 1)) + return false; } + return true; } - /** - * Uses `node-fetch` to perform the request. - */ - // eslint-disable-next-line @azure/azure-sdk/ts-apisurface-standardized-verbs - async fetch(input, init) { - return node_fetch__default["default"](input, init); - } - /** - * Prepares a request based on the provided web resource. - */ - async prepareRequest(httpRequest) { - const requestInit = {}; - if (this.cookieJar && !httpRequest.headers.get("Cookie")) { - const cookieString = await new Promise((resolve, reject) => { - this.cookieJar.getCookieString(httpRequest.url, (err, cookie) => { - if (err) { - reject(err); - } - else { - resolve(cookie); - } - }); - }); - httpRequest.headers.set("Cookie", cookieString); + scalar(arg, type, longType) { + let argType = typeof arg; + switch (type) { + case reflection_info_1.ScalarType.UINT64: + case reflection_info_1.ScalarType.FIXED64: + case reflection_info_1.ScalarType.INT64: + case reflection_info_1.ScalarType.SFIXED64: + case reflection_info_1.ScalarType.SINT64: + switch (longType) { + case reflection_info_1.LongType.BIGINT: + return argType == "bigint"; + case reflection_info_1.LongType.NUMBER: + return argType == "number" && !isNaN(arg); + default: + return argType == "string"; + } + case reflection_info_1.ScalarType.BOOL: + return argType == 'boolean'; + case reflection_info_1.ScalarType.STRING: + return argType == 'string'; + case reflection_info_1.ScalarType.BYTES: + return arg instanceof Uint8Array; + case reflection_info_1.ScalarType.DOUBLE: + case reflection_info_1.ScalarType.FLOAT: + return argType == 'number' && !isNaN(arg); + default: + // case ScalarType.UINT32: + // case ScalarType.FIXED32: + // case ScalarType.INT32: + // case ScalarType.SINT32: + // case ScalarType.SFIXED32: + return argType == 'number' && Number.isInteger(arg); } - // Set the http(s) agent - requestInit.agent = this.getOrCreateAgent(httpRequest); - requestInit.compress = httpRequest.decompressResponse; - return requestInit; } - /** - * Process an HTTP response. Handles persisting a cookie for subsequent requests if the response has a "Set-Cookie" header. - */ - async processRequest(operationResponse) { - if (this.cookieJar) { - const setCookieHeader = operationResponse.headers.get("Set-Cookie"); - if (setCookieHeader !== undefined) { - await new Promise((resolve, reject) => { - this.cookieJar.setCookie(setCookieHeader, operationResponse.request.url, { ignoreError: true }, (err) => { - if (err) { - reject(err); - } - else { - resolve(); - } - }); - }); - } + scalars(arg, type, depth, longType) { + if (!Array.isArray(arg)) + return false; + if (depth < 2) + return true; + if (Array.isArray(arg)) + for (let i = 0; i < arg.length && i < depth; i++) + if (!this.scalar(arg[i], type, longType)) + return false; + return true; + } + mapKeys(map, type, depth) { + let keys = Object.keys(map); + switch (type) { + case reflection_info_1.ScalarType.INT32: + case reflection_info_1.ScalarType.FIXED32: + case reflection_info_1.ScalarType.SFIXED32: + case reflection_info_1.ScalarType.SINT32: + case reflection_info_1.ScalarType.UINT32: + return this.scalars(keys.slice(0, depth).map(k => parseInt(k)), type, depth); + case reflection_info_1.ScalarType.BOOL: + return this.scalars(keys.slice(0, depth).map(k => k == 'true' ? true : k == 'false' ? false : k), type, depth); + default: + return this.scalars(keys, type, depth, reflection_info_1.LongType.STRING); } } } +exports.ReflectionTypeCheck = ReflectionTypeCheck; -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -/** - * The different levels of logs that can be used with the HttpPipelineLogger. - */ -exports.HttpPipelineLogLevel = void 0; -(function (HttpPipelineLogLevel) { - /** - * A log level that indicates that no logs will be logged. - */ - HttpPipelineLogLevel[HttpPipelineLogLevel["OFF"] = 0] = "OFF"; - /** - * An error log. - */ - HttpPipelineLogLevel[HttpPipelineLogLevel["ERROR"] = 1] = "ERROR"; - /** - * A warning log. - */ - HttpPipelineLogLevel[HttpPipelineLogLevel["WARNING"] = 2] = "WARNING"; - /** - * An information log. - */ - HttpPipelineLogLevel[HttpPipelineLogLevel["INFO"] = 3] = "INFO"; -})(exports.HttpPipelineLogLevel || (exports.HttpPipelineLogLevel = {})); -// Copyright (c) Microsoft Corporation. -/** - * Converts an OperationOptions to a RequestOptionsBase - * - * @param opts - OperationOptions object to convert to RequestOptionsBase - */ -function operationOptionsToRequestOptionsBase(opts) { - var _a; - const { requestOptions, tracingOptions } = opts, additionalOptions = tslib.__rest(opts, ["requestOptions", "tracingOptions"]); - let result = additionalOptions; - if (requestOptions) { - result = Object.assign(Object.assign({}, result), requestOptions); - } - if (tracingOptions) { - result.tracingContext = tracingOptions.tracingContext; - // By passing spanOptions if they exist at runtime, we're backwards compatible with @azure/core-tracing@preview.13 and earlier. - result.spanOptions = (_a = tracingOptions) === null || _a === void 0 ? void 0 : _a.spanOptions; - } - return result; -} +/***/ }), -// Copyright (c) Microsoft Corporation. -/** - * The base class from which all request policies derive. - */ -class BaseRequestPolicy { - /** - * The main method to implement that manipulates a request/response. - */ - constructor( - /** - * The next policy in the pipeline. Each policy is responsible for executing the next one if the request is to continue through the pipeline. - */ - _nextPolicy, - /** - * The options that can be passed to a given request policy. - */ - _options) { - this._nextPolicy = _nextPolicy; - this._options = _options; - } - /** - * Get whether or not a log with the provided log level should be logged. - * @param logLevel - The log level of the log that will be logged. - * @returns Whether or not a log with the provided log level should be logged. - */ - shouldLog(logLevel) { - return this._options.shouldLog(logLevel); - } - /** - * Attempt to log the provided message to the provided logger. If no logger was provided or if - * the log level does not meat the logger's threshold, then nothing will be logged. - * @param logLevel - The log level of this log. - * @param message - The message of this log. - */ - log(logLevel, message) { - this._options.log(logLevel, message); - } -} -/** - * Optional properties that can be used when creating a RequestPolicy. - */ -class RequestPolicyOptions { - constructor(_logger) { - this._logger = _logger; - } - /** - * Get whether or not a log with the provided log level should be logged. - * @param logLevel - The log level of the log that will be logged. - * @returns Whether or not a log with the provided log level should be logged. - */ - shouldLog(logLevel) { - return (!!this._logger && - logLevel !== exports.HttpPipelineLogLevel.OFF && - logLevel <= this._logger.minimumLogLevel); - } - /** - * Attempt to log the provided message to the provided logger. If no logger was provided or if - * the log level does not meet the logger's threshold, then nothing will be logged. - * @param logLevel - The log level of this log. - * @param message - The message of this log. - */ - log(logLevel, message) { - if (this._logger && this.shouldLog(logLevel)) { - this._logger.log(logLevel, message); - } - } -} +/***/ 8348: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { -// Copyright (c) Microsoft Corporation. -// Note: The reason we re-define all of the xml2js default settings (version 2.0) here is because the default settings object exposed -// by the xm2js library is mutable. See https://github.com/Leonidas-from-XIV/node-xml2js/issues/536 -// By creating a new copy of the settings each time we instantiate the parser, -// we are safeguarding against the possibility of the default settings being mutated elsewhere unintentionally. -const xml2jsDefaultOptionsV2 = { - explicitCharkey: false, - trim: false, - normalize: false, - normalizeTags: false, - attrkey: XML_ATTRKEY, - explicitArray: true, - ignoreAttrs: false, - mergeAttrs: false, - explicitRoot: true, - validator: undefined, - xmlns: false, - explicitChildren: false, - preserveChildrenOrder: false, - childkey: "$$", - charsAsChildren: false, - includeWhiteChars: false, - async: false, - strict: true, - attrNameProcessors: undefined, - attrValueProcessors: undefined, - tagNameProcessors: undefined, - valueProcessors: undefined, - rootName: "root", - xmldec: { - version: "1.0", - encoding: "UTF-8", - standalone: true, - }, - doctype: undefined, - renderOpts: { - pretty: true, - indent: " ", - newline: "\n", - }, - headless: false, - chunkSize: 10000, - emptyTag: "", - cdata: false, -}; -// The xml2js settings for general XML parsing operations. -const xml2jsParserSettings = Object.assign({}, xml2jsDefaultOptionsV2); -xml2jsParserSettings.explicitArray = false; -// The xml2js settings for general XML building operations. -const xml2jsBuilderSettings = Object.assign({}, xml2jsDefaultOptionsV2); -xml2jsBuilderSettings.explicitArray = false; -xml2jsBuilderSettings.renderOpts = { - pretty: false, -}; -/** - * Converts given JSON object to XML string - * @param obj - JSON object to be converted into XML string - * @param opts - Options that govern the parsing of given JSON object - */ -function stringifyXML(obj, opts = {}) { - var _a; - xml2jsBuilderSettings.rootName = opts.rootName; - xml2jsBuilderSettings.charkey = (_a = opts.xmlCharKey) !== null && _a !== void 0 ? _a : XML_CHARKEY; - const builder = new xml2js__namespace.Builder(xml2jsBuilderSettings); - return builder.buildObject(obj); -} -/** - * Converts given XML string into JSON - * @param str - String containing the XML content to be parsed into JSON - * @param opts - Options that govern the parsing of given xml string - */ -function parseXML(str, opts = {}) { - var _a; - xml2jsParserSettings.explicitRoot = !!opts.includeRoot; - xml2jsParserSettings.charkey = (_a = opts.xmlCharKey) !== null && _a !== void 0 ? _a : XML_CHARKEY; - const xmlParser = new xml2js__namespace.Parser(xml2jsParserSettings); - return new Promise((resolve, reject) => { - if (!str) { - reject(new Error("Document is empty")); - } - else { - xmlParser.parseString(str, (err, res) => { - if (err) { - reject(err); - } - else { - resolve(res); - } - }); - } - }); -} +"use strict"; -// Copyright (c) Microsoft Corporation. -/** - * Create a new serialization RequestPolicyCreator that will serialized HTTP request bodies as they - * pass through the HTTP pipeline. - */ -function deserializationPolicy(deserializationContentTypes, parsingOptions) { - return { - create: (nextPolicy, options) => { - return new DeserializationPolicy(nextPolicy, options, deserializationContentTypes, parsingOptions); - }, - }; -} -const defaultJsonContentTypes = ["application/json", "text/json"]; -const defaultXmlContentTypes = ["application/xml", "application/atom+xml"]; -const DefaultDeserializationOptions = { - expectedContentTypes: { - json: defaultJsonContentTypes, - xml: defaultXmlContentTypes, - }, +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; }; -/** - * A RequestPolicy that will deserialize HTTP response bodies and headers as they pass through the - * HTTP pipeline. - */ -class DeserializationPolicy extends BaseRequestPolicy { - constructor(nextPolicy, requestPolicyOptions, deserializationContentTypes, parsingOptions = {}) { - var _a; - super(nextPolicy, requestPolicyOptions); - this.jsonContentTypes = - (deserializationContentTypes && deserializationContentTypes.json) || defaultJsonContentTypes; - this.xmlContentTypes = - (deserializationContentTypes && deserializationContentTypes.xml) || defaultXmlContentTypes; - this.xmlCharKey = (_a = parsingOptions.xmlCharKey) !== null && _a !== void 0 ? _a : XML_CHARKEY; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.req = exports.json = exports.toBuffer = void 0; +const http = __importStar(__nccwpck_require__(13685)); +const https = __importStar(__nccwpck_require__(95687)); +async function toBuffer(stream) { + let length = 0; + const chunks = []; + for await (const chunk of stream) { + length += chunk.length; + chunks.push(chunk); + } + return Buffer.concat(chunks, length); +} +exports.toBuffer = toBuffer; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +async function json(stream) { + const buf = await toBuffer(stream); + const str = buf.toString('utf8'); + try { + return JSON.parse(str); } - async sendRequest(request) { - return this._nextPolicy.sendRequest(request).then((response) => deserializeResponseBody(this.jsonContentTypes, this.xmlContentTypes, response, { - xmlCharKey: this.xmlCharKey, - })); + catch (_err) { + const err = _err; + err.message += ` (input: ${str})`; + throw err; } } -function getOperationResponse(parsedResponse) { - let result; - const request = parsedResponse.request; - const operationSpec = request.operationSpec; - if (operationSpec) { - const operationResponseGetter = request.operationResponseGetter; - if (!operationResponseGetter) { - result = operationSpec.responses[parsedResponse.status]; - } - else { - result = operationResponseGetter(operationSpec, parsedResponse); - } - } - return result; +exports.json = json; +function req(url, opts = {}) { + const href = typeof url === 'string' ? url : url.href; + const req = (href.startsWith('https:') ? https : http).request(url, opts); + const promise = new Promise((resolve, reject) => { + req + .once('response', resolve) + .once('error', reject) + .end(); + }); + req.then = promise.then.bind(promise); + return req; } -function shouldDeserializeResponse(parsedResponse) { - const shouldDeserialize = parsedResponse.request.shouldDeserialize; - let result; - if (shouldDeserialize === undefined) { - result = true; - } - else if (typeof shouldDeserialize === "boolean") { - result = shouldDeserialize; - } - else { - result = shouldDeserialize(parsedResponse); +exports.req = req; +//# sourceMappingURL=helpers.js.map + +/***/ }), + +/***/ 70694: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); return result; -} -/** - * Given a particular set of content types to parse as either JSON or XML, consumes the HTTP response to produce the result object defined by the request's {@link OperationSpec}. - * @param jsonContentTypes - Response content types to parse the body as JSON. - * @param xmlContentTypes - Response content types to parse the body as XML. - * @param response - HTTP Response from the pipeline. - * @param options - Options to the serializer, mostly for configuring the XML parser if needed. - * @returns A parsed {@link HttpOperationResponse} object that can be returned by the {@link ServiceClient}. - */ -function deserializeResponseBody(jsonContentTypes, xmlContentTypes, response, options = {}) { - var _a, _b, _c; - const updatedOptions = { - rootName: (_a = options.rootName) !== null && _a !== void 0 ? _a : "", - includeRoot: (_b = options.includeRoot) !== null && _b !== void 0 ? _b : false, - xmlCharKey: (_c = options.xmlCharKey) !== null && _c !== void 0 ? _c : XML_CHARKEY, - }; - return parse(jsonContentTypes, xmlContentTypes, response, updatedOptions).then((parsedResponse) => { - if (!shouldDeserializeResponse(parsedResponse)) { - return parsedResponse; - } - const operationSpec = parsedResponse.request.operationSpec; - if (!operationSpec || !operationSpec.responses) { - return parsedResponse; - } - const responseSpec = getOperationResponse(parsedResponse); - const { error, shouldReturnResponse } = handleErrorResponse(parsedResponse, operationSpec, responseSpec); - if (error) { - throw error; +}; +var __exportStar = (this && this.__exportStar) || function(m, exports) { + for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.Agent = void 0; +const net = __importStar(__nccwpck_require__(41808)); +const http = __importStar(__nccwpck_require__(13685)); +const https_1 = __nccwpck_require__(95687); +__exportStar(__nccwpck_require__(8348), exports); +const INTERNAL = Symbol('AgentBaseInternalState'); +class Agent extends http.Agent { + constructor(opts) { + super(opts); + this[INTERNAL] = {}; + } + /** + * Determine whether this is an `http` or `https` request. + */ + isSecureEndpoint(options) { + if (options) { + // First check the `secureEndpoint` property explicitly, since this + // means that a parent `Agent` is "passing through" to this instance. + // eslint-disable-next-line @typescript-eslint/no-explicit-any + if (typeof options.secureEndpoint === 'boolean') { + return options.secureEndpoint; + } + // If no explicit `secure` endpoint, check if `protocol` property is + // set. This will usually be the case since using a full string URL + // or `URL` instance should be the most common usage. + if (typeof options.protocol === 'string') { + return options.protocol === 'https:'; + } + } + // Finally, if no `protocol` property was set, then fall back to + // checking the stack trace of the current call stack, and try to + // detect the "https" module. + const { stack } = new Error(); + if (typeof stack !== 'string') + return false; + return stack + .split('\n') + .some((l) => l.indexOf('(https.js:') !== -1 || + l.indexOf('node:https:') !== -1); + } + // In order to support async signatures in `connect()` and Node's native + // connection pooling in `http.Agent`, the array of sockets for each origin + // has to be updated synchronously. This is so the length of the array is + // accurate when `addRequest()` is next called. We achieve this by creating a + // fake socket and adding it to `sockets[origin]` and incrementing + // `totalSocketCount`. + incrementSockets(name) { + // If `maxSockets` and `maxTotalSockets` are both Infinity then there is no + // need to create a fake socket because Node.js native connection pooling + // will never be invoked. + if (this.maxSockets === Infinity && this.maxTotalSockets === Infinity) { + return null; } - else if (shouldReturnResponse) { - return parsedResponse; + // All instances of `sockets` are expected TypeScript errors. The + // alternative is to add it as a private property of this class but that + // will break TypeScript subclassing. + if (!this.sockets[name]) { + // @ts-expect-error `sockets` is readonly in `@types/node` + this.sockets[name] = []; + } + const fakeSocket = new net.Socket({ writable: false }); + this.sockets[name].push(fakeSocket); + // @ts-expect-error `totalSocketCount` isn't defined in `@types/node` + this.totalSocketCount++; + return fakeSocket; + } + decrementSockets(name, socket) { + if (!this.sockets[name] || socket === null) { + return; } - // An operation response spec does exist for current status code, so - // use it to deserialize the response. - if (responseSpec) { - if (responseSpec.bodyMapper) { - let valueToDeserialize = parsedResponse.parsedBody; - if (operationSpec.isXML && responseSpec.bodyMapper.type.name === MapperType.Sequence) { - valueToDeserialize = - typeof valueToDeserialize === "object" - ? valueToDeserialize[responseSpec.bodyMapper.xmlElementName] - : []; - } + const sockets = this.sockets[name]; + const index = sockets.indexOf(socket); + if (index !== -1) { + sockets.splice(index, 1); + // @ts-expect-error `totalSocketCount` isn't defined in `@types/node` + this.totalSocketCount--; + if (sockets.length === 0) { + // @ts-expect-error `sockets` is readonly in `@types/node` + delete this.sockets[name]; + } + } + } + // In order to properly update the socket pool, we need to call `getName()` on + // the core `https.Agent` if it is a secureEndpoint. + getName(options) { + const secureEndpoint = this.isSecureEndpoint(options); + if (secureEndpoint) { + // @ts-expect-error `getName()` isn't defined in `@types/node` + return https_1.Agent.prototype.getName.call(this, options); + } + // @ts-expect-error `getName()` isn't defined in `@types/node` + return super.getName(options); + } + createSocket(req, options, cb) { + const connectOpts = { + ...options, + secureEndpoint: this.isSecureEndpoint(options), + }; + const name = this.getName(connectOpts); + const fakeSocket = this.incrementSockets(name); + Promise.resolve() + .then(() => this.connect(req, connectOpts)) + .then((socket) => { + this.decrementSockets(name, fakeSocket); + if (socket instanceof http.Agent) { try { - parsedResponse.parsedBody = operationSpec.serializer.deserialize(responseSpec.bodyMapper, valueToDeserialize, "operationRes.parsedBody", options); + // @ts-expect-error `addRequest()` isn't defined in `@types/node` + return socket.addRequest(req, connectOpts); } - catch (innerError) { - const restError = new RestError(`Error ${innerError} occurred in deserializing the responseBody - ${parsedResponse.bodyAsText}`, undefined, parsedResponse.status, parsedResponse.request, parsedResponse); - throw restError; + catch (err) { + return cb(err); } } - else if (operationSpec.httpMethod === "HEAD") { - // head methods never have a body, but we return a boolean to indicate presence/absence of the resource - parsedResponse.parsedBody = response.status >= 200 && response.status < 300; - } - if (responseSpec.headersMapper) { - parsedResponse.parsedHeaders = operationSpec.serializer.deserialize(responseSpec.headersMapper, parsedResponse.headers.rawHeaders(), "operationRes.parsedHeaders", options); - } - } - return parsedResponse; - }); -} -function isOperationSpecEmpty(operationSpec) { - const expectedStatusCodes = Object.keys(operationSpec.responses); - return (expectedStatusCodes.length === 0 || - (expectedStatusCodes.length === 1 && expectedStatusCodes[0] === "default")); -} -function handleErrorResponse(parsedResponse, operationSpec, responseSpec) { - var _a; - const isSuccessByStatus = 200 <= parsedResponse.status && parsedResponse.status < 300; - const isExpectedStatusCode = isOperationSpecEmpty(operationSpec) - ? isSuccessByStatus - : !!responseSpec; - if (isExpectedStatusCode) { - if (responseSpec) { - if (!responseSpec.isError) { - return { error: null, shouldReturnResponse: false }; - } - } - else { - return { error: null, shouldReturnResponse: false }; + this[INTERNAL].currentSocket = socket; + // @ts-expect-error `createSocket()` isn't defined in `@types/node` + super.createSocket(req, options, cb); + }, (err) => { + this.decrementSockets(name, fakeSocket); + cb(err); + }); + } + createConnection() { + const socket = this[INTERNAL].currentSocket; + this[INTERNAL].currentSocket = undefined; + if (!socket) { + throw new Error('No socket was returned in the `connect()` function'); } + return socket; } - const errorResponseSpec = responseSpec !== null && responseSpec !== void 0 ? responseSpec : operationSpec.responses.default; - const streaming = ((_a = parsedResponse.request.streamResponseStatusCodes) === null || _a === void 0 ? void 0 : _a.has(parsedResponse.status)) || - parsedResponse.request.streamResponseBody; - const initialErrorMessage = streaming - ? `Unexpected status code: ${parsedResponse.status}` - : parsedResponse.bodyAsText; - const error = new RestError(initialErrorMessage, undefined, parsedResponse.status, parsedResponse.request, parsedResponse); - // If the item failed but there's no error spec or default spec to deserialize the error, - // we should fail so we just throw the parsed response - if (!errorResponseSpec) { - throw error; + get defaultPort() { + return (this[INTERNAL].defaultPort ?? + (this.protocol === 'https:' ? 443 : 80)); } - const defaultBodyMapper = errorResponseSpec.bodyMapper; - const defaultHeadersMapper = errorResponseSpec.headersMapper; - try { - // If error response has a body, try to deserialize it using default body mapper. - // Then try to extract error code & message from it - if (parsedResponse.parsedBody) { - const parsedBody = parsedResponse.parsedBody; - let parsedError; - if (defaultBodyMapper) { - let valueToDeserialize = parsedBody; - if (operationSpec.isXML && defaultBodyMapper.type.name === MapperType.Sequence) { - valueToDeserialize = - typeof parsedBody === "object" ? parsedBody[defaultBodyMapper.xmlElementName] : []; - } - parsedError = operationSpec.serializer.deserialize(defaultBodyMapper, valueToDeserialize, "error.response.parsedBody"); - } - const internalError = parsedBody.error || parsedError || parsedBody; - error.code = internalError.code; - if (internalError.message) { - error.message = internalError.message; - } - if (defaultBodyMapper) { - error.response.parsedBody = parsedError; - } - } - // If error response has headers, try to deserialize it using default header mapper - if (parsedResponse.headers && defaultHeadersMapper) { - error.response.parsedHeaders = operationSpec.serializer.deserialize(defaultHeadersMapper, parsedResponse.headers.rawHeaders(), "operationRes.parsedHeaders"); + set defaultPort(v) { + if (this[INTERNAL]) { + this[INTERNAL].defaultPort = v; } } - catch (defaultError) { - error.message = `Error "${defaultError.message}" occurred in deserializing the responseBody - "${parsedResponse.bodyAsText}" for the default response.`; + get protocol() { + return (this[INTERNAL].protocol ?? + (this.isSecureEndpoint() ? 'https:' : 'http:')); } - return { error, shouldReturnResponse: false }; -} -function parse(jsonContentTypes, xmlContentTypes, operationResponse, opts) { - var _a; - const errorHandler = (err) => { - const msg = `Error "${err}" occurred while parsing the response body - ${operationResponse.bodyAsText}.`; - const errCode = err.code || RestError.PARSE_ERROR; - const e = new RestError(msg, errCode, operationResponse.status, operationResponse.request, operationResponse); - return Promise.reject(e); - }; - const streaming = ((_a = operationResponse.request.streamResponseStatusCodes) === null || _a === void 0 ? void 0 : _a.has(operationResponse.status)) || - operationResponse.request.streamResponseBody; - if (!streaming && operationResponse.bodyAsText) { - const text = operationResponse.bodyAsText; - const contentType = operationResponse.headers.get("Content-Type") || ""; - const contentComponents = !contentType - ? [] - : contentType.split(";").map((component) => component.toLowerCase()); - if (contentComponents.length === 0 || - contentComponents.some((component) => jsonContentTypes.indexOf(component) !== -1)) { - return new Promise((resolve) => { - operationResponse.parsedBody = JSON.parse(text); - resolve(operationResponse); - }).catch(errorHandler); - } - else if (contentComponents.some((component) => xmlContentTypes.indexOf(component) !== -1)) { - return parseXML(text, opts) - .then((body) => { - operationResponse.parsedBody = body; - return operationResponse; - }) - .catch(errorHandler); + set protocol(v) { + if (this[INTERNAL]) { + this[INTERNAL].protocol = v; } } - return Promise.resolve(operationResponse); } +exports.Agent = Agent; +//# sourceMappingURL=index.js.map -// Copyright (c) Microsoft Corporation. -/** - * By default, HTTP connections are maintained for future requests. - */ -const DefaultKeepAliveOptions = { - enable: true, -}; -/** - * Creates a policy that controls whether HTTP connections are maintained on future requests. - * @param keepAliveOptions - Keep alive options. By default, HTTP connections are maintained for future requests. - * @returns An instance of the {@link KeepAlivePolicy} - */ -function keepAlivePolicy(keepAliveOptions) { - return { - create: (nextPolicy, options) => { - return new KeepAlivePolicy(nextPolicy, options, keepAliveOptions || DefaultKeepAliveOptions); - }, - }; -} -/** - * KeepAlivePolicy is a policy used to control keep alive settings for every request. - */ -class KeepAlivePolicy extends BaseRequestPolicy { - /** - * Creates an instance of KeepAlivePolicy. - * - * @param nextPolicy - - * @param options - - * @param keepAliveOptions - - */ - constructor(nextPolicy, options, keepAliveOptions) { - super(nextPolicy, options); - this.keepAliveOptions = keepAliveOptions; - } - /** - * Sends out request. - * - * @param request - - * @returns - */ - async sendRequest(request) { - request.keepAlive = this.keepAliveOptions.enable; - return this._nextPolicy.sendRequest(request); - } +/***/ }), + +/***/ 9417: +/***/ ((module) => { + +"use strict"; + +module.exports = balanced; +function balanced(a, b, str) { + if (a instanceof RegExp) a = maybeMatch(a, str); + if (b instanceof RegExp) b = maybeMatch(b, str); + + var r = range(a, b, str); + + return r && { + start: r[0], + end: r[1], + pre: str.slice(0, r[0]), + body: str.slice(r[0] + a.length, r[1]), + post: str.slice(r[1] + b.length) + }; } -// Copyright (c) Microsoft Corporation. -/** - * Methods that are allowed to follow redirects 301 and 302 - */ -const allowedRedirect = ["GET", "HEAD"]; -const DefaultRedirectOptions = { - handleRedirects: true, - maxRetries: 20, -}; -/** - * Creates a redirect policy, which sends a repeats the request to a new destination if a response arrives with a "location" header, and a status code between 300 and 307. - * @param maximumRetries - Maximum number of redirects to follow. - * @returns An instance of the {@link RedirectPolicy} - */ -function redirectPolicy(maximumRetries = 20) { - return { - create: (nextPolicy, options) => { - return new RedirectPolicy(nextPolicy, options, maximumRetries); - }, - }; +function maybeMatch(reg, str) { + var m = str.match(reg); + return m ? m[0] : null; } -/** - * Resends the request to a new destination if a response arrives with a "location" header, and a status code between 300 and 307. - */ -class RedirectPolicy extends BaseRequestPolicy { - constructor(nextPolicy, options, maxRetries = 20) { - super(nextPolicy, options); - this.maxRetries = maxRetries; - } - sendRequest(request) { - return this._nextPolicy - .sendRequest(request) - .then((response) => handleRedirect(this, response, 0)); + +balanced.range = range; +function range(a, b, str) { + var begs, beg, left, right, result; + var ai = str.indexOf(a); + var bi = str.indexOf(b, ai + 1); + var i = ai; + + if (ai >= 0 && bi > 0) { + if(a===b) { + return [ai, bi]; } -} -function handleRedirect(policy, response, currentRetries) { - const { request, status } = response; - const locationHeader = response.headers.get("location"); - if (locationHeader && - (status === 300 || - (status === 301 && allowedRedirect.includes(request.method)) || - (status === 302 && allowedRedirect.includes(request.method)) || - (status === 303 && request.method === "POST") || - status === 307) && - (!policy.maxRetries || currentRetries < policy.maxRetries)) { - const builder = URLBuilder.parse(request.url); - builder.setPath(locationHeader); - request.url = builder.toString(); - // POST request with Status code 303 should be converted into a - // redirected GET request if the redirect url is present in the location header - if (status === 303) { - request.method = "GET"; - delete request.body; + begs = []; + left = str.length; + + while (i >= 0 && !result) { + if (i == ai) { + begs.push(i); + ai = str.indexOf(a, i + 1); + } else if (begs.length == 1) { + result = [ begs.pop(), bi ]; + } else { + beg = begs.pop(); + if (beg < left) { + left = beg; + right = bi; } - return policy._nextPolicy - .sendRequest(request) - .then((res) => handleRedirect(policy, res, currentRetries + 1)); + + bi = str.indexOf(b, i + 1); + } + + i = ai < bi && ai >= 0 ? ai : bi; + } + + if (begs.length) { + result = [ left, right ]; } - return Promise.resolve(response); + } + + return result; } -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -const DEFAULT_CLIENT_RETRY_COUNT = 3; -// intervals are in ms -const DEFAULT_CLIENT_RETRY_INTERVAL = 1000 * 30; -const DEFAULT_CLIENT_MAX_RETRY_INTERVAL = 1000 * 90; -const DEFAULT_CLIENT_MIN_RETRY_INTERVAL = 1000 * 3; -function isNumber(n) { - return typeof n === "number"; + +/***/ }), + +/***/ 33717: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +var concatMap = __nccwpck_require__(86891); +var balanced = __nccwpck_require__(9417); + +module.exports = expandTop; + +var escSlash = '\0SLASH'+Math.random()+'\0'; +var escOpen = '\0OPEN'+Math.random()+'\0'; +var escClose = '\0CLOSE'+Math.random()+'\0'; +var escComma = '\0COMMA'+Math.random()+'\0'; +var escPeriod = '\0PERIOD'+Math.random()+'\0'; + +function numeric(str) { + return parseInt(str, 10) == str + ? parseInt(str, 10) + : str.charCodeAt(0); } -/** - * @internal - * Determines if the operation should be retried. - * - * @param retryLimit - Specifies the max number of retries. - * @param predicate - Initial chekck on whether to retry based on given responses or errors - * @param retryData - The retry data. - * @returns True if the operation qualifies for a retry; false otherwise. - */ -function shouldRetry(retryLimit, predicate, retryData, response, error) { - if (!predicate(response, error)) { - return false; - } - return retryData.retryCount < retryLimit; + +function escapeBraces(str) { + return str.split('\\\\').join(escSlash) + .split('\\{').join(escOpen) + .split('\\}').join(escClose) + .split('\\,').join(escComma) + .split('\\.').join(escPeriod); } -/** - * @internal - * Updates the retry data for the next attempt. - * - * @param retryOptions - specifies retry interval, and its lower bound and upper bound. - * @param retryData - The retry data. - * @param err - The operation"s error, if any. - */ -function updateRetryData(retryOptions, retryData = { retryCount: 0, retryInterval: 0 }, err) { - if (err) { - if (retryData.error) { - err.innerError = retryData.error; - } - retryData.error = err; - } - // Adjust retry count - retryData.retryCount++; - // Adjust retry interval - let incrementDelta = Math.pow(2, retryData.retryCount - 1) - 1; - const boundedRandDelta = retryOptions.retryInterval * 0.8 + - Math.floor(Math.random() * (retryOptions.retryInterval * 0.4)); - incrementDelta *= boundedRandDelta; - retryData.retryInterval = Math.min(retryOptions.minRetryInterval + incrementDelta, retryOptions.maxRetryInterval); - return retryData; + +function unescapeBraces(str) { + return str.split(escSlash).join('\\') + .split(escOpen).join('{') + .split(escClose).join('}') + .split(escComma).join(',') + .split(escPeriod).join('.'); } -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -/** - * Helper TypeGuard that checks if the value is not null or undefined. - * @param thing - Anything - * @internal - */ -function isDefined(thing) { - return typeof thing !== "undefined" && thing !== null; + +// Basically just str.split(","), but handling cases +// where we have nested braced sections, which should be +// treated as individual members, like {a,{b,c},d} +function parseCommaParts(str) { + if (!str) + return ['']; + + var parts = []; + var m = balanced('{', '}', str); + + if (!m) + return str.split(','); + + var pre = m.pre; + var body = m.body; + var post = m.post; + var p = pre.split(','); + + p[p.length-1] += '{' + body + '}'; + var postParts = parseCommaParts(post); + if (post.length) { + p[p.length-1] += postParts.shift(); + p.push.apply(p, postParts); + } + + parts.push.apply(parts, p); + + return parts; } -// Copyright (c) Microsoft Corporation. -const StandardAbortMessage$1 = "The operation was aborted."; -/** - * A wrapper for setTimeout that resolves a promise after delayInMs milliseconds. - * @param delayInMs - The number of milliseconds to be delayed. - * @param value - The value to be resolved with after a timeout of t milliseconds. - * @param options - The options for delay - currently abort options - * @param abortSignal - The abortSignal associated with containing operation. - * @param abortErrorMsg - The abort error message associated with containing operation. - * @returns - Resolved promise - */ -function delay(delayInMs, value, options) { - return new Promise((resolve, reject) => { - let timer = undefined; - let onAborted = undefined; - const rejectOnAbort = () => { - return reject(new abortController.AbortError((options === null || options === void 0 ? void 0 : options.abortErrorMsg) ? options === null || options === void 0 ? void 0 : options.abortErrorMsg : StandardAbortMessage$1)); - }; - const removeListeners = () => { - if ((options === null || options === void 0 ? void 0 : options.abortSignal) && onAborted) { - options.abortSignal.removeEventListener("abort", onAborted); - } - }; - onAborted = () => { - if (isDefined(timer)) { - clearTimeout(timer); - } - removeListeners(); - return rejectOnAbort(); - }; - if ((options === null || options === void 0 ? void 0 : options.abortSignal) && options.abortSignal.aborted) { - return rejectOnAbort(); - } - timer = setTimeout(() => { - removeListeners(); - resolve(value); - }, delayInMs); - if (options === null || options === void 0 ? void 0 : options.abortSignal) { - options.abortSignal.addEventListener("abort", onAborted); - } - }); +function expandTop(str) { + if (!str) + return []; + + // I don't know why Bash 4.3 does this, but it does. + // Anything starting with {} will have the first two bytes preserved + // but *only* at the top level, so {},a}b will not expand to anything, + // but a{},b}c will be expanded to [a}c,abc]. + // One could argue that this is a bug in Bash, but since the goal of + // this module is to match Bash's rules, we escape a leading {} + if (str.substr(0, 2) === '{}') { + str = '\\{\\}' + str.substr(2); + } + + return expand(escapeBraces(str), true).map(unescapeBraces); } -// Copyright (c) Microsoft Corporation. -/** - * Policy that retries the request as many times as configured for as long as the max retry time interval specified, each retry waiting longer to begin than the last time. - * @param retryCount - Maximum number of retries. - * @param retryInterval - Base time between retries. - * @param maxRetryInterval - Maximum time to wait between retries. - */ -function exponentialRetryPolicy(retryCount, retryInterval, maxRetryInterval) { - return { - create: (nextPolicy, options) => { - return new ExponentialRetryPolicy(nextPolicy, options, retryCount, retryInterval, maxRetryInterval); - }, - }; +function identity(e) { + return e; } -/** - * Describes the Retry Mode type. Currently supporting only Exponential. - */ -exports.RetryMode = void 0; -(function (RetryMode) { - /** - * Currently supported retry mode. - * Each time a retry happens, it will take exponentially more time than the last time. - */ - RetryMode[RetryMode["Exponential"] = 0] = "Exponential"; -})(exports.RetryMode || (exports.RetryMode = {})); -const DefaultRetryOptions = { - maxRetries: DEFAULT_CLIENT_RETRY_COUNT, - retryDelayInMs: DEFAULT_CLIENT_RETRY_INTERVAL, - maxRetryDelayInMs: DEFAULT_CLIENT_MAX_RETRY_INTERVAL, -}; -/** - * Instantiates a new "ExponentialRetryPolicyFilter" instance. - */ -class ExponentialRetryPolicy extends BaseRequestPolicy { - /** - * @param nextPolicy - The next RequestPolicy in the pipeline chain. - * @param options - The options for this RequestPolicy. - * @param retryCount - The client retry count. - * @param retryInterval - The client retry interval, in milliseconds. - * @param minRetryInterval - The minimum retry interval, in milliseconds. - * @param maxRetryInterval - The maximum retry interval, in milliseconds. - */ - constructor(nextPolicy, options, retryCount, retryInterval, maxRetryInterval) { - super(nextPolicy, options); - this.retryCount = isNumber(retryCount) ? retryCount : DEFAULT_CLIENT_RETRY_COUNT; - this.retryInterval = isNumber(retryInterval) ? retryInterval : DEFAULT_CLIENT_RETRY_INTERVAL; - this.maxRetryInterval = isNumber(maxRetryInterval) - ? maxRetryInterval - : DEFAULT_CLIENT_MAX_RETRY_INTERVAL; + +function embrace(str) { + return '{' + str + '}'; +} +function isPadded(el) { + return /^-?0\d/.test(el); +} + +function lte(i, y) { + return i <= y; +} +function gte(i, y) { + return i >= y; +} + +function expand(str, isTop) { + var expansions = []; + + var m = balanced('{', '}', str); + if (!m || /\$$/.test(m.pre)) return [str]; + + var isNumericSequence = /^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(m.body); + var isAlphaSequence = /^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(m.body); + var isSequence = isNumericSequence || isAlphaSequence; + var isOptions = m.body.indexOf(',') >= 0; + if (!isSequence && !isOptions) { + // {a},b} + if (m.post.match(/,(?!,).*\}/)) { + str = m.pre + '{' + m.body + escClose + m.post; + return expand(str); } - sendRequest(request) { - return this._nextPolicy - .sendRequest(request.clone()) - .then((response) => retry$1(this, request, response)) - .catch((error) => retry$1(this, request, error.response, undefined, error)); + return [str]; + } + + var n; + if (isSequence) { + n = m.body.split(/\.\./); + } else { + n = parseCommaParts(m.body); + if (n.length === 1) { + // x{{a,b}}y ==> x{a}y x{b}y + n = expand(n[0], false).map(embrace); + if (n.length === 1) { + var post = m.post.length + ? expand(m.post, false) + : ['']; + return post.map(function(p) { + return m.pre + n[0] + p; + }); + } } -} -async function retry$1(policy, request, response, retryData, requestError) { - function shouldPolicyRetry(responseParam) { - const statusCode = responseParam === null || responseParam === void 0 ? void 0 : responseParam.status; - if (statusCode === 503 && (response === null || response === void 0 ? void 0 : response.headers.get(Constants.HeaderConstants.RETRY_AFTER))) { - return false; - } - if (statusCode === undefined || - (statusCode < 500 && statusCode !== 408) || - statusCode === 501 || - statusCode === 505) { - return false; - } - return true; + } + + // at this point, n is the parts, and we know it's not a comma set + // with a single entry. + + // no need to expand pre, since it is guaranteed to be free of brace-sets + var pre = m.pre; + var post = m.post.length + ? expand(m.post, false) + : ['']; + + var N; + + if (isSequence) { + var x = numeric(n[0]); + var y = numeric(n[1]); + var width = Math.max(n[0].length, n[1].length) + var incr = n.length == 3 + ? Math.max(Math.abs(numeric(n[2])), 1) + : 1; + var test = lte; + var reverse = y < x; + if (reverse) { + incr *= -1; + test = gte; } - retryData = updateRetryData({ - retryInterval: policy.retryInterval, - minRetryInterval: 0, - maxRetryInterval: policy.maxRetryInterval, - }, retryData, requestError); - const isAborted = request.abortSignal && request.abortSignal.aborted; - if (!isAborted && shouldRetry(policy.retryCount, shouldPolicyRetry, retryData, response)) { - logger.info(`Retrying request in ${retryData.retryInterval}`); - try { - await delay(retryData.retryInterval); - const res = await policy._nextPolicy.sendRequest(request.clone()); - return retry$1(policy, request, res, retryData); - } - catch (err) { - return retry$1(policy, request, response, retryData, err); + var pad = n.some(isPadded); + + N = []; + + for (var i = x; test(i, y); i += incr) { + var c; + if (isAlphaSequence) { + c = String.fromCharCode(i); + if (c === '\\') + c = ''; + } else { + c = String(i); + if (pad) { + var need = width - c.length; + if (need > 0) { + var z = new Array(need + 1).join('0'); + if (i < 0) + c = '-' + z + c.slice(1); + else + c = z + c; + } } + } + N.push(c); } - else if (isAborted || requestError || !response) { - // If the operation failed in the end, return all errors instead of just the last one - const err = retryData.error || - new RestError("Failed to send the request.", RestError.REQUEST_SEND_ERROR, response && response.status, response && response.request, response); - throw err; - } - else { - return response; + } else { + N = concatMap(n, function(el) { return expand(el, false) }); + } + + for (var j = 0; j < N.length; j++) { + for (var k = 0; k < post.length; k++) { + var expansion = pre + N[j] + post[k]; + if (!isTop || isSequence || expansion) + expansions.push(expansion); } + } + + return expansions; } -// Copyright (c) Microsoft Corporation. + +/***/ }), + +/***/ 86891: +/***/ ((module) => { + +module.exports = function (xs, fn) { + var res = []; + for (var i = 0; i < xs.length; i++) { + var x = fn(xs[i], i); + if (isArray(x)) res.push.apply(res, x); + else res.push(x); + } + return res; +}; + +var isArray = Array.isArray || function (xs) { + return Object.prototype.toString.call(xs) === '[object Array]'; +}; + + +/***/ }), + +/***/ 28222: +/***/ ((module, exports, __nccwpck_require__) => { + +/* eslint-env browser */ + /** - * Creates a policy that logs information about the outgoing request and the incoming responses. - * @param loggingOptions - Logging options. - * @returns An instance of the {@link LogPolicy} + * This is the web browser implementation of `debug()`. */ -function logPolicy(loggingOptions = {}) { - return { - create: (nextPolicy, options) => { - return new LogPolicy(nextPolicy, options, loggingOptions); - }, - }; -} + +exports.formatArgs = formatArgs; +exports.save = save; +exports.load = load; +exports.useColors = useColors; +exports.storage = localstorage(); +exports.destroy = (() => { + let warned = false; + + return () => { + if (!warned) { + warned = true; + console.warn('Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.'); + } + }; +})(); + /** - * A policy that logs information about the outgoing request and the incoming responses. + * Colors. */ -class LogPolicy extends BaseRequestPolicy { - constructor(nextPolicy, options, { logger: logger$1 = logger.info, allowedHeaderNames = [], allowedQueryParameters = [], } = {}) { - super(nextPolicy, options); - this.logger = logger$1; - this.sanitizer = new Sanitizer({ allowedHeaderNames, allowedQueryParameters }); - } - /** - * Header names whose values will be logged when logging is enabled. Defaults to - * Date, traceparent, x-ms-client-request-id, and x-ms-request id. Any headers - * specified in this field will be added to that list. Any other values will - * be written to logs as "REDACTED". - * @deprecated Pass these into the constructor instead. - */ - get allowedHeaderNames() { - return this.sanitizer.allowedHeaderNames; - } - /** - * Header names whose values will be logged when logging is enabled. Defaults to - * Date, traceparent, x-ms-client-request-id, and x-ms-request id. Any headers - * specified in this field will be added to that list. Any other values will - * be written to logs as "REDACTED". - * @deprecated Pass these into the constructor instead. - */ - set allowedHeaderNames(allowedHeaderNames) { - this.sanitizer.allowedHeaderNames = allowedHeaderNames; - } - /** - * Query string names whose values will be logged when logging is enabled. By default no - * query string values are logged. - * @deprecated Pass these into the constructor instead. - */ - get allowedQueryParameters() { - return this.sanitizer.allowedQueryParameters; - } - /** - * Query string names whose values will be logged when logging is enabled. By default no - * query string values are logged. - * @deprecated Pass these into the constructor instead. - */ - set allowedQueryParameters(allowedQueryParameters) { - this.sanitizer.allowedQueryParameters = allowedQueryParameters; - } - sendRequest(request) { - if (!this.logger.enabled) - return this._nextPolicy.sendRequest(request); - this.logRequest(request); - return this._nextPolicy.sendRequest(request).then((response) => this.logResponse(response)); - } - logRequest(request) { - this.logger(`Request: ${this.sanitizer.sanitize(request)}`); - } - logResponse(response) { - this.logger(`Response status code: ${response.status}`); - this.logger(`Headers: ${this.sanitizer.sanitize(response.headers)}`); - return response; - } -} -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. +exports.colors = [ + '#0000CC', + '#0000FF', + '#0033CC', + '#0033FF', + '#0066CC', + '#0066FF', + '#0099CC', + '#0099FF', + '#00CC00', + '#00CC33', + '#00CC66', + '#00CC99', + '#00CCCC', + '#00CCFF', + '#3300CC', + '#3300FF', + '#3333CC', + '#3333FF', + '#3366CC', + '#3366FF', + '#3399CC', + '#3399FF', + '#33CC00', + '#33CC33', + '#33CC66', + '#33CC99', + '#33CCCC', + '#33CCFF', + '#6600CC', + '#6600FF', + '#6633CC', + '#6633FF', + '#66CC00', + '#66CC33', + '#9900CC', + '#9900FF', + '#9933CC', + '#9933FF', + '#99CC00', + '#99CC33', + '#CC0000', + '#CC0033', + '#CC0066', + '#CC0099', + '#CC00CC', + '#CC00FF', + '#CC3300', + '#CC3333', + '#CC3366', + '#CC3399', + '#CC33CC', + '#CC33FF', + '#CC6600', + '#CC6633', + '#CC9900', + '#CC9933', + '#CCCC00', + '#CCCC33', + '#FF0000', + '#FF0033', + '#FF0066', + '#FF0099', + '#FF00CC', + '#FF00FF', + '#FF3300', + '#FF3333', + '#FF3366', + '#FF3399', + '#FF33CC', + '#FF33FF', + '#FF6600', + '#FF6633', + '#FF9900', + '#FF9933', + '#FFCC00', + '#FFCC33' +]; + /** - * Get the path to this parameter's value as a dotted string (a.b.c). - * @param parameter - The parameter to get the path string for. - * @returns The path to this parameter's value as a dotted string. + * Currently only WebKit-based Web Inspectors, Firefox >= v31, + * and the Firebug extension (any Firefox version) are known + * to support "%c" CSS customizations. + * + * TODO: add a `localStorage` variable to explicitly enable/disable colors */ -function getPathStringFromParameter(parameter) { - return getPathStringFromParameterPath(parameter.parameterPath, parameter.mapper); -} -function getPathStringFromParameterPath(parameterPath, mapper) { - let result; - if (typeof parameterPath === "string") { - result = parameterPath; - } - else if (Array.isArray(parameterPath)) { - result = parameterPath.join("."); - } - else { - result = mapper.serializedName; - } - return result; + +// eslint-disable-next-line complexity +function useColors() { + // NB: In an Electron preload script, document will be defined but not fully + // initialized. Since we know we're in Chrome, we'll just detect this case + // explicitly + if (typeof window !== 'undefined' && window.process && (window.process.type === 'renderer' || window.process.__nwjs)) { + return true; + } + + // Internet Explorer and Edge do not support colors. + if (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) { + return false; + } + + // Is webkit? http://stackoverflow.com/a/16459606/376773 + // document is undefined in react-native: https://github.com/facebook/react-native/pull/1632 + return (typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance) || + // Is firebug? http://stackoverflow.com/a/398120/376773 + (typeof window !== 'undefined' && window.console && (window.console.firebug || (window.console.exception && window.console.table))) || + // Is firefox >= v31? + // https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages + (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && parseInt(RegExp.$1, 10) >= 31) || + // Double check webkit in userAgent just in case we are in a worker + (typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)); } -// Copyright (c) Microsoft Corporation. /** - * Gets the list of status codes for streaming responses. - * @internal + * Colorize log arguments if enabled. + * + * @api public */ -function getStreamResponseStatusCodes(operationSpec) { - const result = new Set(); - for (const statusCode in operationSpec.responses) { - const operationResponse = operationSpec.responses[statusCode]; - if (operationResponse.bodyMapper && - operationResponse.bodyMapper.type.name === MapperType.Stream) { - result.add(Number(statusCode)); - } - } - return result; -} -// Copyright (c) Microsoft Corporation. -function getDefaultUserAgentKey() { - return Constants.HeaderConstants.USER_AGENT; -} -function getPlatformSpecificData() { - const runtimeInfo = { - key: "Node", - value: process.version, - }; - const osInfo = { - key: "OS", - value: `(${os__namespace.arch()}-${os__namespace.type()}-${os__namespace.release()})`, - }; - return [runtimeInfo, osInfo]; -} +function formatArgs(args) { + args[0] = (this.useColors ? '%c' : '') + + this.namespace + + (this.useColors ? ' %c' : ' ') + + args[0] + + (this.useColors ? '%c ' : ' ') + + '+' + module.exports.humanize(this.diff); -// Copyright (c) Microsoft Corporation. -function getRuntimeInfo() { - const msRestRuntime = { - key: "core-http", - value: Constants.coreHttpVersion, - }; - return [msRestRuntime]; -} -function getUserAgentString(telemetryInfo, keySeparator = " ", valueSeparator = "/") { - return telemetryInfo - .map((info) => { - const value = info.value ? `${valueSeparator}${info.value}` : ""; - return `${info.key}${value}`; - }) - .join(keySeparator); + if (!this.useColors) { + return; + } + + const c = 'color: ' + this.color; + args.splice(1, 0, c, 'color: inherit'); + + // The final "%c" is somewhat tricky, because there could be other + // arguments passed either before or after the %c, so we need to + // figure out the correct index to insert the CSS into + let index = 0; + let lastC = 0; + args[0].replace(/%[a-zA-Z%]/g, match => { + if (match === '%%') { + return; + } + index++; + if (match === '%c') { + // We only are interested in the *last* %c + // (the user may have provided their own) + lastC = index; + } + }); + + args.splice(lastC, 0, c); } -const getDefaultUserAgentHeaderName = getDefaultUserAgentKey; + /** - * The default approach to generate user agents. - * Uses static information from this package, plus system information available from the runtime. + * Invokes `console.debug()` when available. + * No-op when `console.debug` is not a "function". + * If `console.debug` is not available, falls back + * to `console.log`. + * + * @api public */ -function getDefaultUserAgentValue() { - const runtimeInfo = getRuntimeInfo(); - const platformSpecificData = getPlatformSpecificData(); - const userAgent = getUserAgentString(runtimeInfo.concat(platformSpecificData)); - return userAgent; -} +exports.log = console.debug || console.log || (() => {}); + /** - * Returns a policy that adds the user agent header to outgoing requests based on the given {@link TelemetryInfo}. - * @param userAgentData - Telemetry information. - * @returns A new {@link UserAgentPolicy}. - */ -function userAgentPolicy(userAgentData) { - const key = !userAgentData || userAgentData.key === undefined || userAgentData.key === null - ? getDefaultUserAgentKey() - : userAgentData.key; - const value = !userAgentData || userAgentData.value === undefined || userAgentData.value === null - ? getDefaultUserAgentValue() - : userAgentData.value; - return { - create: (nextPolicy, options) => { - return new UserAgentPolicy(nextPolicy, options, key, value); - }, - }; -} -/** - * A policy that adds the user agent header to outgoing requests based on the given {@link TelemetryInfo}. + * Save `namespaces`. + * + * @param {String} namespaces + * @api private */ -class UserAgentPolicy extends BaseRequestPolicy { - constructor(_nextPolicy, _options, headerKey, headerValue) { - super(_nextPolicy, _options); - this._nextPolicy = _nextPolicy; - this._options = _options; - this.headerKey = headerKey; - this.headerValue = headerValue; - } - sendRequest(request) { - this.addUserAgentHeader(request); - return this._nextPolicy.sendRequest(request); - } - /** - * Adds the user agent header to the outgoing request. - */ - addUserAgentHeader(request) { - if (!request.headers) { - request.headers = new HttpHeaders(); - } - if (!request.headers.get(this.headerKey) && this.headerValue) { - request.headers.set(this.headerKey, this.headerValue); - } - } +function save(namespaces) { + try { + if (namespaces) { + exports.storage.setItem('debug', namespaces); + } else { + exports.storage.removeItem('debug'); + } + } catch (error) { + // Swallow + // XXX (@Qix-) should we be logging these? + } } -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. /** - * The format that will be used to join an array of values together for a query parameter value. + * Load `namespaces`. + * + * @return {String} returns the previously persisted debug modes + * @api private */ -exports.QueryCollectionFormat = void 0; -(function (QueryCollectionFormat) { - /** - * CSV: Each pair of segments joined by a single comma. - */ - QueryCollectionFormat["Csv"] = ","; - /** - * SSV: Each pair of segments joined by a single space character. - */ - QueryCollectionFormat["Ssv"] = " "; - /** - * TSV: Each pair of segments joined by a single tab character. - */ - QueryCollectionFormat["Tsv"] = "\t"; - /** - * Pipes: Each pair of segments joined by a single pipe character. - */ - QueryCollectionFormat["Pipes"] = "|"; - /** - * Denotes this is an array of values that should be passed to the server in multiple key/value pairs, e.g. `?queryParam=value1&queryParam=value2` - */ - QueryCollectionFormat["Multi"] = "Multi"; -})(exports.QueryCollectionFormat || (exports.QueryCollectionFormat = {})); +function load() { + let r; + try { + r = exports.storage.getItem('debug'); + } catch (error) { + // Swallow + // XXX (@Qix-) should we be logging these? + } -// Copyright (c) Microsoft Corporation. -// Default options for the cycler if none are provided -const DEFAULT_CYCLER_OPTIONS = { - forcedRefreshWindowInMs: 1000, - retryIntervalInMs: 3000, - refreshWindowInMs: 1000 * 60 * 2, // Start refreshing 2m before expiry -}; -/** - * Converts an an unreliable access token getter (which may resolve with null) - * into an AccessTokenGetter by retrying the unreliable getter in a regular - * interval. - * - * @param getAccessToken - a function that produces a promise of an access - * token that may fail by returning null - * @param retryIntervalInMs - the time (in milliseconds) to wait between retry - * attempts - * @param timeoutInMs - the timestamp after which the refresh attempt will fail, - * throwing an exception - * @returns - a promise that, if it resolves, will resolve with an access token - */ -async function beginRefresh(getAccessToken, retryIntervalInMs, timeoutInMs) { - // This wrapper handles exceptions gracefully as long as we haven't exceeded - // the timeout. - async function tryGetAccessToken() { - if (Date.now() < timeoutInMs) { - try { - return await getAccessToken(); - } - catch (_a) { - return null; - } - } - else { - const finalToken = await getAccessToken(); - // Timeout is up, so throw if it's still null - if (finalToken === null) { - throw new Error("Failed to refresh access token."); - } - return finalToken; - } - } - let token = await tryGetAccessToken(); - while (token === null) { - await delay(retryIntervalInMs); - token = await tryGetAccessToken(); - } - return token; + // If debug isn't set in LS, and we're in Electron, try to load $DEBUG + if (!r && typeof process !== 'undefined' && 'env' in process) { + r = process.env.DEBUG; + } + + return r; } + /** - * Creates a token cycler from a credential, scopes, and optional settings. - * - * A token cycler represents a way to reliably retrieve a valid access token - * from a TokenCredential. It will handle initializing the token, refreshing it - * when it nears expiration, and synchronizes refresh attempts to avoid - * concurrency hazards. + * Localstorage attempts to return the localstorage. * - * @param credential - the underlying TokenCredential that provides the access - * token - * @param scopes - the scopes to request authorization for - * @param tokenCyclerOptions - optionally override default settings for the cycler + * This is necessary because safari throws + * when a user disables cookies/localstorage + * and you attempt to access it. * - * @returns - a function that reliably produces a valid access token + * @return {LocalStorage} + * @api private */ -function createTokenCycler(credential, scopes, tokenCyclerOptions) { - let refreshWorker = null; - let token = null; - const options = Object.assign(Object.assign({}, DEFAULT_CYCLER_OPTIONS), tokenCyclerOptions); - /** - * This little holder defines several predicates that we use to construct - * the rules of refreshing the token. - */ - const cycler = { - /** - * Produces true if a refresh job is currently in progress. - */ - get isRefreshing() { - return refreshWorker !== null; - }, - /** - * Produces true if the cycler SHOULD refresh (we are within the refresh - * window and not already refreshing) - */ - get shouldRefresh() { - var _a; - return (!cycler.isRefreshing && - ((_a = token === null || token === void 0 ? void 0 : token.expiresOnTimestamp) !== null && _a !== void 0 ? _a : 0) - options.refreshWindowInMs < Date.now()); - }, - /** - * Produces true if the cycler MUST refresh (null or nearly-expired - * token). - */ - get mustRefresh() { - return (token === null || token.expiresOnTimestamp - options.forcedRefreshWindowInMs < Date.now()); - }, - }; - /** - * Starts a refresh job or returns the existing job if one is already - * running. - */ - function refresh(getTokenOptions) { - var _a; - if (!cycler.isRefreshing) { - // We bind `scopes` here to avoid passing it around a lot - const tryGetAccessToken = () => credential.getToken(scopes, getTokenOptions); - // Take advantage of promise chaining to insert an assignment to `token` - // before the refresh can be considered done. - refreshWorker = beginRefresh(tryGetAccessToken, options.retryIntervalInMs, - // If we don't have a token, then we should timeout immediately - (_a = token === null || token === void 0 ? void 0 : token.expiresOnTimestamp) !== null && _a !== void 0 ? _a : Date.now()) - .then((_token) => { - refreshWorker = null; - token = _token; - return token; - }) - .catch((reason) => { - // We also should reset the refresher if we enter a failed state. All - // existing awaiters will throw, but subsequent requests will start a - // new retry chain. - refreshWorker = null; - token = null; - throw reason; - }); - } - return refreshWorker; - } - return async (tokenOptions) => { - // - // Simple rules: - // - If we MUST refresh, then return the refresh task, blocking - // the pipeline until a token is available. - // - If we SHOULD refresh, then run refresh but don't return it - // (we can still use the cached token). - // - Return the token, since it's fine if we didn't return in - // step 1. - // - if (cycler.mustRefresh) - return refresh(tokenOptions); - if (cycler.shouldRefresh) { - refresh(tokenOptions); - } - return token; - }; -} -// #endregion -/** - * Creates a new factory for a RequestPolicy that applies a bearer token to - * the requests' `Authorization` headers. - * - * @param credential - The TokenCredential implementation that can supply the bearer token. - * @param scopes - The scopes for which the bearer token applies. - */ -function bearerTokenAuthenticationPolicy(credential, scopes) { - // This simple function encapsulates the entire process of reliably retrieving the token - const getToken = createTokenCycler(credential, scopes /* , options */); - class BearerTokenAuthenticationPolicy extends BaseRequestPolicy { - constructor(nextPolicy, options) { - super(nextPolicy, options); - } - async sendRequest(webResource) { - if (!webResource.url.toLowerCase().startsWith("https://")) { - throw new Error("Bearer token authentication is not permitted for non-TLS protected (non-https) URLs."); - } - const { token } = await getToken({ - abortSignal: webResource.abortSignal, - tracingOptions: { - tracingContext: webResource.tracingContext, - }, - }); - webResource.headers.set(Constants.HeaderConstants.AUTHORIZATION, `Bearer ${token}`); - return this._nextPolicy.sendRequest(webResource); - } - } - return { - create: (nextPolicy, options) => { - return new BearerTokenAuthenticationPolicy(nextPolicy, options); - }, - }; + +function localstorage() { + try { + // TVMLKit (Apple TV JS Runtime) does not have a window object, just localStorage in the global context + // The Browser also has localStorage in the global context. + return localStorage; + } catch (error) { + // Swallow + // XXX (@Qix-) should we be logging these? + } } -// Copyright (c) Microsoft Corporation. +module.exports = __nccwpck_require__(46243)(exports); + +const {formatters} = module.exports; + /** - * Returns a request policy factory that can be used to create an instance of - * {@link DisableResponseDecompressionPolicy}. + * Map %j to `JSON.stringify()`, since no Web Inspectors do that by default. */ -function disableResponseDecompressionPolicy() { - return { - create: (nextPolicy, options) => { - return new DisableResponseDecompressionPolicy(nextPolicy, options); - }, - }; -} + +formatters.j = function (v) { + try { + return JSON.stringify(v); + } catch (error) { + return '[UnexpectedJSONParseError]: ' + error.message; + } +}; + + +/***/ }), + +/***/ 46243: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + + /** - * A policy to disable response decompression according to Accept-Encoding header - * https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Encoding + * This is the common logic for both the Node.js and web browser + * implementations of `debug()`. */ -class DisableResponseDecompressionPolicy extends BaseRequestPolicy { - /** - * Creates an instance of DisableResponseDecompressionPolicy. - * - * @param nextPolicy - - * @param options - - */ - // The parent constructor is protected. - /* eslint-disable-next-line @typescript-eslint/no-useless-constructor */ - constructor(nextPolicy, options) { - super(nextPolicy, options); - } - /** - * Sends out request. - * - * @param request - - * @returns - */ - async sendRequest(request) { - request.decompressResponse = false; - return this._nextPolicy.sendRequest(request); - } + +function setup(env) { + createDebug.debug = createDebug; + createDebug.default = createDebug; + createDebug.coerce = coerce; + createDebug.disable = disable; + createDebug.enable = enable; + createDebug.enabled = enabled; + createDebug.humanize = __nccwpck_require__(80900); + createDebug.destroy = destroy; + + Object.keys(env).forEach(key => { + createDebug[key] = env[key]; + }); + + /** + * The currently active debug mode names, and names to skip. + */ + + createDebug.names = []; + createDebug.skips = []; + + /** + * Map of special "%n" handling functions, for the debug "format" argument. + * + * Valid key names are a single, lower or upper-case letter, i.e. "n" and "N". + */ + createDebug.formatters = {}; + + /** + * Selects a color for a debug namespace + * @param {String} namespace The namespace string for the debug instance to be colored + * @return {Number|String} An ANSI color code for the given namespace + * @api private + */ + function selectColor(namespace) { + let hash = 0; + + for (let i = 0; i < namespace.length; i++) { + hash = ((hash << 5) - hash) + namespace.charCodeAt(i); + hash |= 0; // Convert to 32bit integer + } + + return createDebug.colors[Math.abs(hash) % createDebug.colors.length]; + } + createDebug.selectColor = selectColor; + + /** + * Create a debugger with the given `namespace`. + * + * @param {String} namespace + * @return {Function} + * @api public + */ + function createDebug(namespace) { + let prevTime; + let enableOverride = null; + let namespacesCache; + let enabledCache; + + function debug(...args) { + // Disabled? + if (!debug.enabled) { + return; + } + + const self = debug; + + // Set `diff` timestamp + const curr = Number(new Date()); + const ms = curr - (prevTime || curr); + self.diff = ms; + self.prev = prevTime; + self.curr = curr; + prevTime = curr; + + args[0] = createDebug.coerce(args[0]); + + if (typeof args[0] !== 'string') { + // Anything else let's inspect with %O + args.unshift('%O'); + } + + // Apply any `formatters` transformations + let index = 0; + args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => { + // If we encounter an escaped % then don't increase the array index + if (match === '%%') { + return '%'; + } + index++; + const formatter = createDebug.formatters[format]; + if (typeof formatter === 'function') { + const val = args[index]; + match = formatter.call(self, val); + + // Now we need to remove `args[index]` since it's inlined in the `format` + args.splice(index, 1); + index--; + } + return match; + }); + + // Apply env-specific formatting (colors, etc.) + createDebug.formatArgs.call(self, args); + + const logFn = self.log || createDebug.log; + logFn.apply(self, args); + } + + debug.namespace = namespace; + debug.useColors = createDebug.useColors(); + debug.color = createDebug.selectColor(namespace); + debug.extend = extend; + debug.destroy = createDebug.destroy; // XXX Temporary. Will be removed in the next major release. + + Object.defineProperty(debug, 'enabled', { + enumerable: true, + configurable: false, + get: () => { + if (enableOverride !== null) { + return enableOverride; + } + if (namespacesCache !== createDebug.namespaces) { + namespacesCache = createDebug.namespaces; + enabledCache = createDebug.enabled(namespace); + } + + return enabledCache; + }, + set: v => { + enableOverride = v; + } + }); + + // Env-specific initialization logic for debug instances + if (typeof createDebug.init === 'function') { + createDebug.init(debug); + } + + return debug; + } + + function extend(namespace, delimiter) { + const newDebug = createDebug(this.namespace + (typeof delimiter === 'undefined' ? ':' : delimiter) + namespace); + newDebug.log = this.log; + return newDebug; + } + + /** + * Enables a debug mode by namespaces. This can include modes + * separated by a colon and wildcards. + * + * @param {String} namespaces + * @api public + */ + function enable(namespaces) { + createDebug.save(namespaces); + createDebug.namespaces = namespaces; + + createDebug.names = []; + createDebug.skips = []; + + let i; + const split = (typeof namespaces === 'string' ? namespaces : '').split(/[\s,]+/); + const len = split.length; + + for (i = 0; i < len; i++) { + if (!split[i]) { + // ignore empty strings + continue; + } + + namespaces = split[i].replace(/\*/g, '.*?'); + + if (namespaces[0] === '-') { + createDebug.skips.push(new RegExp('^' + namespaces.slice(1) + '$')); + } else { + createDebug.names.push(new RegExp('^' + namespaces + '$')); + } + } + } + + /** + * Disable debug output. + * + * @return {String} namespaces + * @api public + */ + function disable() { + const namespaces = [ + ...createDebug.names.map(toNamespace), + ...createDebug.skips.map(toNamespace).map(namespace => '-' + namespace) + ].join(','); + createDebug.enable(''); + return namespaces; + } + + /** + * Returns true if the given mode name is enabled, false otherwise. + * + * @param {String} name + * @return {Boolean} + * @api public + */ + function enabled(name) { + if (name[name.length - 1] === '*') { + return true; + } + + let i; + let len; + + for (i = 0, len = createDebug.skips.length; i < len; i++) { + if (createDebug.skips[i].test(name)) { + return false; + } + } + + for (i = 0, len = createDebug.names.length; i < len; i++) { + if (createDebug.names[i].test(name)) { + return true; + } + } + + return false; + } + + /** + * Convert regexp to namespace + * + * @param {RegExp} regxep + * @return {String} namespace + * @api private + */ + function toNamespace(regexp) { + return regexp.toString() + .substring(2, regexp.toString().length - 2) + .replace(/\.\*\?$/, '*'); + } + + /** + * Coerce `val`. + * + * @param {Mixed} val + * @return {Mixed} + * @api private + */ + function coerce(val) { + if (val instanceof Error) { + return val.stack || val.message; + } + return val; + } + + /** + * XXX DO NOT USE. This is a temporary stub function. + * XXX It WILL be removed in the next major release. + */ + function destroy() { + console.warn('Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.'); + } + + createDebug.enable(createDebug.load()); + + return createDebug; } -// Copyright (c) Microsoft Corporation. +module.exports = setup; + + +/***/ }), + +/***/ 38237: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + /** - * Creates a policy that assigns a unique request id to outgoing requests. - * @param requestIdHeaderName - The name of the header to use when assigning the unique id to the request. + * Detect Electron renderer / nwjs process, which is node, but we should + * treat as a browser. */ -function generateClientRequestIdPolicy(requestIdHeaderName = "x-ms-client-request-id") { - return { - create: (nextPolicy, options) => { - return new GenerateClientRequestIdPolicy(nextPolicy, options, requestIdHeaderName); - }, - }; -} -class GenerateClientRequestIdPolicy extends BaseRequestPolicy { - constructor(nextPolicy, options, _requestIdHeaderName) { - super(nextPolicy, options); - this._requestIdHeaderName = _requestIdHeaderName; - } - sendRequest(request) { - if (!request.headers.contains(this._requestIdHeaderName)) { - request.headers.set(this._requestIdHeaderName, request.requestId); - } - return this._nextPolicy.sendRequest(request); - } -} -// Copyright (c) Microsoft Corporation. -let cachedHttpClient; -function getCachedDefaultHttpClient() { - if (!cachedHttpClient) { - cachedHttpClient = new NodeFetchHttpClient(); - } - return cachedHttpClient; +if (typeof process === 'undefined' || process.type === 'renderer' || process.browser === true || process.__nwjs) { + module.exports = __nccwpck_require__(28222); +} else { + module.exports = __nccwpck_require__(35332); } -// Copyright (c) Microsoft Corporation. -function ndJsonPolicy() { - return { - create: (nextPolicy, options) => { - return new NdJsonPolicy(nextPolicy, options); - }, - }; -} + +/***/ }), + +/***/ 35332: +/***/ ((module, exports, __nccwpck_require__) => { + /** - * NdJsonPolicy that formats a JSON array as newline-delimited JSON + * Module dependencies. */ -class NdJsonPolicy extends BaseRequestPolicy { - /** - * Creates an instance of KeepAlivePolicy. - */ - constructor(nextPolicy, options) { - super(nextPolicy, options); - } - /** - * Sends a request. - */ - async sendRequest(request) { - // There currently isn't a good way to bypass the serializer - if (typeof request.body === "string" && request.body.startsWith("[")) { - const body = JSON.parse(request.body); - if (Array.isArray(body)) { - request.body = body.map((item) => JSON.stringify(item) + "\n").join(""); - } - } - return this._nextPolicy.sendRequest(request); - } -} -// Copyright (c) Microsoft Corporation. +const tty = __nccwpck_require__(76224); +const util = __nccwpck_require__(73837); + /** - * Stores the patterns specified in NO_PROXY environment variable. - * @internal + * This is the Node.js implementation of `debug()`. */ -const globalNoProxyList = []; -let noProxyListLoaded = false; -/** A cache of whether a host should bypass the proxy. */ -const globalBypassedMap = new Map(); -function loadEnvironmentProxyValue() { - if (!process) { - return undefined; - } - const httpsProxy = getEnvironmentValue(Constants.HTTPS_PROXY); - const allProxy = getEnvironmentValue(Constants.ALL_PROXY); - const httpProxy = getEnvironmentValue(Constants.HTTP_PROXY); - return httpsProxy || allProxy || httpProxy; -} + +exports.init = init; +exports.log = log; +exports.formatArgs = formatArgs; +exports.save = save; +exports.load = load; +exports.useColors = useColors; +exports.destroy = util.deprecate( + () => {}, + 'Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.' +); + /** - * Check whether the host of a given `uri` matches any pattern in the no proxy list. - * If there's a match, any request sent to the same host shouldn't have the proxy settings set. - * This implementation is a port of https://github.com/Azure/azure-sdk-for-net/blob/8cca811371159e527159c7eb65602477898683e2/sdk/core/Azure.Core/src/Pipeline/Internal/HttpEnvironmentProxy.cs#L210 + * Colors. */ -function isBypassed(uri, noProxyList, bypassedMap) { - if (noProxyList.length === 0) { - return false; - } - const host = URLBuilder.parse(uri).getHost(); - if (bypassedMap === null || bypassedMap === void 0 ? void 0 : bypassedMap.has(host)) { - return bypassedMap.get(host); - } - let isBypassedFlag = false; - for (const pattern of noProxyList) { - if (pattern[0] === ".") { - // This should match either domain it self or any subdomain or host - // .foo.com will match foo.com it self or *.foo.com - if (host.endsWith(pattern)) { - isBypassedFlag = true; - } - else { - if (host.length === pattern.length - 1 && host === pattern.slice(1)) { - isBypassedFlag = true; - } - } - } - else { - if (host === pattern) { - isBypassedFlag = true; - } - } - } - bypassedMap === null || bypassedMap === void 0 ? void 0 : bypassedMap.set(host, isBypassedFlag); - return isBypassedFlag; + +exports.colors = [6, 2, 3, 4, 5, 1]; + +try { + // Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json) + // eslint-disable-next-line import/no-extraneous-dependencies + const supportsColor = __nccwpck_require__(59318); + + if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) { + exports.colors = [ + 20, + 21, + 26, + 27, + 32, + 33, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 56, + 57, + 62, + 63, + 68, + 69, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 92, + 93, + 98, + 99, + 112, + 113, + 128, + 129, + 134, + 135, + 148, + 149, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 178, + 179, + 184, + 185, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 214, + 215, + 220, + 221 + ]; + } +} catch (error) { + // Swallow - we only care if `supports-color` is available; it doesn't have to be. } + /** - * @internal + * Build up the default `inspectOpts` object from the environment variables. + * + * $ DEBUG_COLORS=no DEBUG_DEPTH=10 DEBUG_SHOW_HIDDEN=enabled node script.js */ -function loadNoProxy() { - const noProxy = getEnvironmentValue(Constants.NO_PROXY); - noProxyListLoaded = true; - if (noProxy) { - return noProxy - .split(",") - .map((item) => item.trim()) - .filter((item) => item.length); - } - return []; -} + +exports.inspectOpts = Object.keys(process.env).filter(key => { + return /^debug_/i.test(key); +}).reduce((obj, key) => { + // Camel-case + const prop = key + .substring(6) + .toLowerCase() + .replace(/_([a-z])/g, (_, k) => { + return k.toUpperCase(); + }); + + // Coerce string value into JS value + let val = process.env[key]; + if (/^(yes|on|true|enabled)$/i.test(val)) { + val = true; + } else if (/^(no|off|false|disabled)$/i.test(val)) { + val = false; + } else if (val === 'null') { + val = null; + } else { + val = Number(val); + } + + obj[prop] = val; + return obj; +}, {}); + /** - * Converts a given URL of a proxy server into `ProxySettings` or attempts to retrieve `ProxySettings` from the current environment if one is not passed. - * @param proxyUrl - URL of the proxy - * @returns The default proxy settings, or undefined. + * Is stdout a TTY? Colored output is enabled when `true`. */ -function getDefaultProxySettings(proxyUrl) { - if (!proxyUrl) { - proxyUrl = loadEnvironmentProxyValue(); - if (!proxyUrl) { - return undefined; - } - } - const { username, password, urlWithoutAuth } = extractAuthFromUrl(proxyUrl); - const parsedUrl = URLBuilder.parse(urlWithoutAuth); - const schema = parsedUrl.getScheme() ? parsedUrl.getScheme() + "://" : ""; - return { - host: schema + parsedUrl.getHost(), - port: Number.parseInt(parsedUrl.getPort() || "80"), - username, - password, - }; + +function useColors() { + return 'colors' in exports.inspectOpts ? + Boolean(exports.inspectOpts.colors) : + tty.isatty(process.stderr.fd); } + /** - * A policy that allows one to apply proxy settings to all requests. - * If not passed static settings, they will be retrieved from the HTTPS_PROXY - * or HTTP_PROXY environment variables. - * @param proxySettings - ProxySettings to use on each request. - * @param options - additional settings, for example, custom NO_PROXY patterns + * Adds ANSI color escape codes if enabled. + * + * @api public */ -function proxyPolicy(proxySettings, options) { - if (!proxySettings) { - proxySettings = getDefaultProxySettings(); - } - if (!noProxyListLoaded) { - globalNoProxyList.push(...loadNoProxy()); - } - return { - create: (nextPolicy, requestPolicyOptions) => { - return new ProxyPolicy(nextPolicy, requestPolicyOptions, proxySettings, options === null || options === void 0 ? void 0 : options.customNoProxyList); - }, - }; -} -function extractAuthFromUrl(url) { - const atIndex = url.indexOf("@"); - if (atIndex === -1) { - return { urlWithoutAuth: url }; - } - const schemeIndex = url.indexOf("://"); - const authStart = schemeIndex !== -1 ? schemeIndex + 3 : 0; - const auth = url.substring(authStart, atIndex); - const colonIndex = auth.indexOf(":"); - const hasPassword = colonIndex !== -1; - const username = hasPassword ? auth.substring(0, colonIndex) : auth; - const password = hasPassword ? auth.substring(colonIndex + 1) : undefined; - const urlWithoutAuth = url.substring(0, authStart) + url.substring(atIndex + 1); - return { - username, - password, - urlWithoutAuth, - }; -} -class ProxyPolicy extends BaseRequestPolicy { - constructor(nextPolicy, options, proxySettings, customNoProxyList) { - super(nextPolicy, options); - this.proxySettings = proxySettings; - this.customNoProxyList = customNoProxyList; - } - sendRequest(request) { - var _a; - if (!request.proxySettings && - !isBypassed(request.url, (_a = this.customNoProxyList) !== null && _a !== void 0 ? _a : globalNoProxyList, this.customNoProxyList ? undefined : globalBypassedMap)) { - request.proxySettings = this.proxySettings; - } - return this._nextPolicy.sendRequest(request); - } -} -// Copyright (c) Microsoft Corporation. -function rpRegistrationPolicy(retryTimeout = 30) { - return { - create: (nextPolicy, options) => { - return new RPRegistrationPolicy(nextPolicy, options, retryTimeout); - }, - }; +function formatArgs(args) { + const {namespace: name, useColors} = this; + + if (useColors) { + const c = this.color; + const colorCode = '\u001B[3' + (c < 8 ? c : '8;5;' + c); + const prefix = ` ${colorCode};1m${name} \u001B[0m`; + + args[0] = prefix + args[0].split('\n').join('\n' + prefix); + args.push(colorCode + 'm+' + module.exports.humanize(this.diff) + '\u001B[0m'); + } else { + args[0] = getDate() + name + ' ' + args[0]; + } } -class RPRegistrationPolicy extends BaseRequestPolicy { - constructor(nextPolicy, options, _retryTimeout = 30) { - super(nextPolicy, options); - this._retryTimeout = _retryTimeout; - } - sendRequest(request) { - return this._nextPolicy - .sendRequest(request.clone()) - .then((response) => registerIfNeeded(this, request, response)); - } -} -function registerIfNeeded(policy, request, response) { - if (response.status === 409) { - const rpName = checkRPNotRegisteredError(response.bodyAsText); - if (rpName) { - const urlPrefix = extractSubscriptionUrl(request.url); - return (registerRP(policy, urlPrefix, rpName, request) - // Autoregistration of ${provider} failed for some reason. We will not return this error - // instead will return the initial response with 409 status code back to the user. - // do nothing here as we are returning the original response at the end of this method. - .catch(() => false) - .then((registrationStatus) => { - if (registrationStatus) { - // Retry the original request. We have to change the x-ms-client-request-id - // otherwise Azure endpoint will return the initial 409 (cached) response. - request.headers.set("x-ms-client-request-id", generateUuid()); - return policy._nextPolicy.sendRequest(request.clone()); - } - return response; - })); - } - } - return Promise.resolve(response); + +function getDate() { + if (exports.inspectOpts.hideDate) { + return ''; + } + return new Date().toISOString() + ' '; } + /** - * Reuses the headers of the original request and url (if specified). - * @param originalRequest - The original request - * @param reuseUrlToo - Should the url from the original request be reused as well. Default false. - * @returns A new request object with desired headers. + * Invokes `util.format()` with the specified arguments and writes to stderr. */ -function getRequestEssentials(originalRequest, reuseUrlToo = false) { - const reqOptions = originalRequest.clone(); - if (reuseUrlToo) { - reqOptions.url = originalRequest.url; - } - // We have to change the x-ms-client-request-id otherwise Azure endpoint - // will return the initial 409 (cached) response. - reqOptions.headers.set("x-ms-client-request-id", generateUuid()); - // Set content-type to application/json - reqOptions.headers.set("Content-Type", "application/json; charset=utf-8"); - return reqOptions; + +function log(...args) { + return process.stderr.write(util.format(...args) + '\n'); } + /** - * Validates the error code and message associated with 409 response status code. If it matches to that of - * RP not registered then it returns the name of the RP else returns undefined. - * @param body - The response body received after making the original request. - * @returns The name of the RP if condition is satisfied else undefined. + * Save `namespaces`. + * + * @param {String} namespaces + * @api private */ -function checkRPNotRegisteredError(body) { - let result, responseBody; - if (body) { - try { - responseBody = JSON.parse(body); - } - catch (err) { - // do nothing; - } - if (responseBody && - responseBody.error && - responseBody.error.message && - responseBody.error.code && - responseBody.error.code === "MissingSubscriptionRegistration") { - const matchRes = responseBody.error.message.match(/.*'(.*)'/i); - if (matchRes) { - result = matchRes.pop(); - } - } - } - return result; +function save(namespaces) { + if (namespaces) { + process.env.DEBUG = namespaces; + } else { + // If you set a process.env field to null or undefined, it gets cast to the + // string 'null' or 'undefined'. Just delete instead. + delete process.env.DEBUG; + } } + /** - * Extracts the first part of the URL, just after subscription: - * https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/ - * @param url - The original request url - * @returns The url prefix as explained above. + * Load `namespaces`. + * + * @return {String} returns the previously persisted debug modes + * @api private */ -function extractSubscriptionUrl(url) { - let result; - const matchRes = url.match(/.*\/subscriptions\/[a-f0-9-]+\//gi); - if (matchRes && matchRes[0]) { - result = matchRes[0]; - } - else { - throw new Error(`Unable to extract subscriptionId from the given url - ${url}.`); - } - return result; -} -/** - * Registers the given provider. - * @param policy - The RPRegistrationPolicy this function is being called against. - * @param urlPrefix - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/ - * @param provider - The provider name to be registered. - * @param originalRequest - The original request sent by the user that returned a 409 response - * with a message that the provider is not registered. - */ -async function registerRP(policy, urlPrefix, provider, originalRequest) { - const postUrl = `${urlPrefix}providers/${provider}/register?api-version=2016-02-01`; - const getUrl = `${urlPrefix}providers/${provider}?api-version=2016-02-01`; - const reqOptions = getRequestEssentials(originalRequest); - reqOptions.method = "POST"; - reqOptions.url = postUrl; - const response = await policy._nextPolicy.sendRequest(reqOptions); - if (response.status !== 200) { - throw new Error(`Autoregistration of ${provider} failed. Please try registering manually.`); - } - return getRegistrationStatus(policy, getUrl, originalRequest); -} -/** - * Polls the registration status of the provider that was registered. Polling happens at an interval of 30 seconds. - * Polling will happen till the registrationState property of the response body is "Registered". - * @param policy - The RPRegistrationPolicy this function is being called against. - * @param url - The request url for polling - * @param originalRequest - The original request sent by the user that returned a 409 response - * with a message that the provider is not registered. - * @returns True if RP Registration is successful. - */ -async function getRegistrationStatus(policy, url, originalRequest) { - const reqOptions = getRequestEssentials(originalRequest); - reqOptions.url = url; - reqOptions.method = "GET"; - const res = await policy._nextPolicy.sendRequest(reqOptions); - const obj = res.parsedBody; - if (res.parsedBody && obj.registrationState && obj.registrationState === "Registered") { - return true; - } - else { - await delay(policy._retryTimeout * 1000); - return getRegistrationStatus(policy, url, originalRequest); - } + +function load() { + return process.env.DEBUG; } -// Copyright (c) Microsoft Corporation. /** - * Creates a policy that signs outgoing requests by calling to the provided `authenticationProvider`'s `signRequest` method. - * @param authenticationProvider - The authentication provider. - * @returns An instance of the {@link SigningPolicy}. + * Init logic for `debug` instances. + * + * Create a new `inspectOpts` object in case `useColors` is set + * differently for a particular `debug` instance. */ -function signingPolicy(authenticationProvider) { - return { - create: (nextPolicy, options) => { - return new SigningPolicy(nextPolicy, options, authenticationProvider); - }, - }; + +function init(debug) { + debug.inspectOpts = {}; + + const keys = Object.keys(exports.inspectOpts); + for (let i = 0; i < keys.length; i++) { + debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]]; + } } + +module.exports = __nccwpck_require__(46243)(exports); + +const {formatters} = module.exports; + /** - * A policy that signs outgoing requests by calling to the provided `authenticationProvider`'s `signRequest` method. + * Map %o to `util.inspect()`, all on a single line. */ -class SigningPolicy extends BaseRequestPolicy { - constructor(nextPolicy, options, authenticationProvider) { - super(nextPolicy, options); - this.authenticationProvider = authenticationProvider; - } - signRequest(request) { - return this.authenticationProvider.signRequest(request); - } - sendRequest(request) { - return this.signRequest(request).then((nextRequest) => this._nextPolicy.sendRequest(nextRequest)); - } -} -// Copyright (c) Microsoft Corporation. +formatters.o = function (v) { + this.inspectOpts.colors = this.useColors; + return util.inspect(v, this.inspectOpts) + .split('\n') + .map(str => str.trim()) + .join(' '); +}; + /** - * A policy that retries when there's a system error, identified by the codes "ETIMEDOUT", "ESOCKETTIMEDOUT", "ECONNREFUSED", "ECONNRESET" or "ENOENT". - * @param retryCount - Maximum number of retries. - * @param retryInterval - The client retry interval, in milliseconds. - * @param minRetryInterval - The minimum retry interval, in milliseconds. - * @param maxRetryInterval - The maximum retry interval, in milliseconds. - * @returns An instance of the {@link SystemErrorRetryPolicy} + * Map %O to `util.inspect()`, allowing multiple lines if needed. */ -function systemErrorRetryPolicy(retryCount, retryInterval, minRetryInterval, maxRetryInterval) { - return { - create: (nextPolicy, options) => { - return new SystemErrorRetryPolicy(nextPolicy, options, retryCount, retryInterval, minRetryInterval, maxRetryInterval); - }, - }; -} -/** - * A policy that retries when there's a system error, identified by the codes "ETIMEDOUT", "ESOCKETTIMEDOUT", "ECONNREFUSED", "ECONNRESET" or "ENOENT". - * @param retryCount - The client retry count. - * @param retryInterval - The client retry interval, in milliseconds. - * @param minRetryInterval - The minimum retry interval, in milliseconds. - * @param maxRetryInterval - The maximum retry interval, in milliseconds. - */ -class SystemErrorRetryPolicy extends BaseRequestPolicy { - constructor(nextPolicy, options, retryCount, retryInterval, minRetryInterval, maxRetryInterval) { - super(nextPolicy, options); - this.retryCount = isNumber(retryCount) ? retryCount : DEFAULT_CLIENT_RETRY_COUNT; - this.retryInterval = isNumber(retryInterval) ? retryInterval : DEFAULT_CLIENT_RETRY_INTERVAL; - this.minRetryInterval = isNumber(minRetryInterval) - ? minRetryInterval - : DEFAULT_CLIENT_MIN_RETRY_INTERVAL; - this.maxRetryInterval = isNumber(maxRetryInterval) - ? maxRetryInterval - : DEFAULT_CLIENT_MAX_RETRY_INTERVAL; - } - sendRequest(request) { - return this._nextPolicy - .sendRequest(request.clone()) - .catch((error) => retry(this, request, error.response, error)); - } -} -async function retry(policy, request, operationResponse, err, retryData) { - retryData = updateRetryData(policy, retryData, err); - function shouldPolicyRetry(_response, error) { - if (error && - error.code && - (error.code === "ETIMEDOUT" || - error.code === "ESOCKETTIMEDOUT" || - error.code === "ECONNREFUSED" || - error.code === "ECONNRESET" || - error.code === "ENOENT")) { - return true; - } - return false; - } - if (shouldRetry(policy.retryCount, shouldPolicyRetry, retryData, operationResponse, err)) { - // If previous operation ended with an error and the policy allows a retry, do that - try { - await delay(retryData.retryInterval); - return policy._nextPolicy.sendRequest(request.clone()); - } - catch (nestedErr) { - return retry(policy, request, operationResponse, nestedErr, retryData); - } - } - else { - if (err) { - // If the operation failed in the end, return all errors instead of just the last one - return Promise.reject(retryData.error); - } - return operationResponse; - } -} -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -/** - * Maximum number of retries for the throttling retry policy - */ -const DEFAULT_CLIENT_MAX_RETRY_COUNT = 3; +formatters.O = function (v) { + this.inspectOpts.colors = this.useColors; + return util.inspect(v, this.inspectOpts); +}; -// Copyright (c) Microsoft Corporation. -const StatusCodes = Constants.HttpConstants.StatusCodes; -/** - * Creates a policy that re-sends the request if the response indicates the request failed because of throttling reasons. - * For example, if the response contains a `Retry-After` header, it will retry sending the request based on the value of that header. - * - * To learn more, please refer to - * https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-manager-request-limits, - * https://docs.microsoft.com/en-us/azure/azure-subscription-service-limits and - * https://docs.microsoft.com/en-us/azure/virtual-machines/troubleshooting/troubleshooting-throttling-errors - * @returns - */ -function throttlingRetryPolicy() { - return { - create: (nextPolicy, options) => { - return new ThrottlingRetryPolicy(nextPolicy, options); - }, - }; -} -const StandardAbortMessage = "The operation was aborted."; + +/***/ }), + +/***/ 31621: +/***/ ((module) => { + +"use strict"; + + +module.exports = (flag, argv = process.argv) => { + const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--'); + const position = argv.indexOf(prefix + flag); + const terminatorPosition = argv.indexOf('--'); + return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition); +}; + + +/***/ }), + +/***/ 23764: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.HttpProxyAgent = void 0; +const net = __importStar(__nccwpck_require__(41808)); +const tls = __importStar(__nccwpck_require__(24404)); +const debug_1 = __importDefault(__nccwpck_require__(38237)); +const events_1 = __nccwpck_require__(82361); +const agent_base_1 = __nccwpck_require__(70694); +const url_1 = __nccwpck_require__(57310); +const debug = (0, debug_1.default)('http-proxy-agent'); /** - * Creates a policy that re-sends the request if the response indicates the request failed because of throttling reasons. - * For example, if the response contains a `Retry-After` header, it will retry sending the request based on the value of that header. - * - * To learn more, please refer to - * https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-manager-request-limits, - * https://docs.microsoft.com/en-us/azure/azure-subscription-service-limits and - * https://docs.microsoft.com/en-us/azure/virtual-machines/troubleshooting/troubleshooting-throttling-errors + * The `HttpProxyAgent` implements an HTTP Agent subclass that connects + * to the specified "HTTP proxy server" in order to proxy HTTP requests. */ -class ThrottlingRetryPolicy extends BaseRequestPolicy { - constructor(nextPolicy, options, _handleResponse) { - super(nextPolicy, options); - this.numberOfRetries = 0; - this._handleResponse = _handleResponse || this._defaultResponseHandler; - } - async sendRequest(httpRequest) { - const response = await this._nextPolicy.sendRequest(httpRequest.clone()); - if (response.status !== StatusCodes.TooManyRequests && - response.status !== StatusCodes.ServiceUnavailable) { - return response; - } - else { - return this._handleResponse(httpRequest, response); - } - } - async _defaultResponseHandler(httpRequest, httpResponse) { - var _a; - const retryAfterHeader = httpResponse.headers.get(Constants.HeaderConstants.RETRY_AFTER); - if (retryAfterHeader) { - const delayInMs = ThrottlingRetryPolicy.parseRetryAfterHeader(retryAfterHeader); - if (delayInMs) { - this.numberOfRetries += 1; - await delay(delayInMs, undefined, { - abortSignal: httpRequest.abortSignal, - abortErrorMsg: StandardAbortMessage, - }); - if ((_a = httpRequest.abortSignal) === null || _a === void 0 ? void 0 : _a.aborted) { - throw new abortController.AbortError(StandardAbortMessage); - } - if (this.numberOfRetries < DEFAULT_CLIENT_MAX_RETRY_COUNT) { - return this.sendRequest(httpRequest); - } - else { - return this._nextPolicy.sendRequest(httpRequest); - } - } - } - return httpResponse; +class HttpProxyAgent extends agent_base_1.Agent { + constructor(proxy, opts) { + super(opts); + this.proxy = typeof proxy === 'string' ? new url_1.URL(proxy) : proxy; + this.proxyHeaders = opts?.headers ?? {}; + debug('Creating new HttpProxyAgent instance: %o', this.proxy.href); + // Trim off the brackets from IPv6 addresses + const host = (this.proxy.hostname || this.proxy.host).replace(/^\[|\]$/g, ''); + const port = this.proxy.port + ? parseInt(this.proxy.port, 10) + : this.proxy.protocol === 'https:' + ? 443 + : 80; + this.connectOpts = { + ...(opts ? omit(opts, 'headers') : null), + host, + port, + }; } - static parseRetryAfterHeader(headerValue) { - const retryAfterInSeconds = Number(headerValue); - if (Number.isNaN(retryAfterInSeconds)) { - return ThrottlingRetryPolicy.parseDateRetryAfterHeader(headerValue); + addRequest(req, opts) { + req._header = null; + this.setRequestProps(req, opts); + // @ts-expect-error `addRequest()` isn't defined in `@types/node` + super.addRequest(req, opts); + } + setRequestProps(req, opts) { + const { proxy } = this; + const protocol = opts.secureEndpoint ? 'https:' : 'http:'; + const hostname = req.getHeader('host') || 'localhost'; + const base = `${protocol}//${hostname}`; + const url = new url_1.URL(req.path, base); + if (opts.port !== 80) { + url.port = String(opts.port); + } + // Change the `http.ClientRequest` instance's "path" field + // to the absolute path of the URL that will be requested. + req.path = String(url); + // Inject the `Proxy-Authorization` header if necessary. + const headers = typeof this.proxyHeaders === 'function' + ? this.proxyHeaders() + : { ...this.proxyHeaders }; + if (proxy.username || proxy.password) { + const auth = `${decodeURIComponent(proxy.username)}:${decodeURIComponent(proxy.password)}`; + headers['Proxy-Authorization'] = `Basic ${Buffer.from(auth).toString('base64')}`; + } + if (!headers['Proxy-Connection']) { + headers['Proxy-Connection'] = this.keepAlive + ? 'Keep-Alive' + : 'close'; + } + for (const name of Object.keys(headers)) { + const value = headers[name]; + if (value) { + req.setHeader(name, value); + } + } + } + async connect(req, opts) { + req._header = null; + if (!req.path.includes('://')) { + this.setRequestProps(req, opts); + } + // At this point, the http ClientRequest's internal `_header` field + // might have already been set. If this is the case then we'll need + // to re-generate the string since we just changed the `req.path`. + let first; + let endOfHeaders; + debug('Regenerating stored HTTP header string for request'); + req._implicitHeader(); + if (req.outputData && req.outputData.length > 0) { + debug('Patching connection write() output buffer with updated header'); + first = req.outputData[0].data; + endOfHeaders = first.indexOf('\r\n\r\n') + 4; + req.outputData[0].data = + req._header + first.substring(endOfHeaders); + debug('Output buffer: %o', req.outputData[0].data); + } + // Create a socket connection to the proxy server. + let socket; + if (this.proxy.protocol === 'https:') { + debug('Creating `tls.Socket`: %o', this.connectOpts); + socket = tls.connect(this.connectOpts); } else { - return retryAfterInSeconds * 1000; + debug('Creating `net.Socket`: %o', this.connectOpts); + socket = net.connect(this.connectOpts); } + // Wait for the socket's `connect` event, so that this `callback()` + // function throws instead of the `http` request machinery. This is + // important for i.e. `PacProxyAgent` which determines a failed proxy + // connection via the `callback()` function throwing. + await (0, events_1.once)(socket, 'connect'); + return socket; } - static parseDateRetryAfterHeader(headerValue) { - try { - const now = Date.now(); - const date = Date.parse(headerValue); - const diff = date - now; - return Number.isNaN(diff) ? undefined : diff; - } - catch (error) { - return undefined; +} +HttpProxyAgent.protocols = ['http', 'https']; +exports.HttpProxyAgent = HttpProxyAgent; +function omit(obj, ...keys) { + const ret = {}; + let key; + for (key in obj) { + if (!keys.includes(key)) { + ret[key] = obj[key]; } } + return ret; } +//# sourceMappingURL=index.js.map -// Copyright (c) Microsoft Corporation. -const createSpan = coreTracing.createSpanFunction({ - packagePrefix: "", - namespace: "", -}); -/** - * Creates a policy that wraps outgoing requests with a tracing span. - * @param tracingOptions - Tracing options. - * @returns An instance of the {@link TracingPolicy} class. - */ -function tracingPolicy(tracingOptions = {}) { - return { - create(nextPolicy, options) { - return new TracingPolicy(nextPolicy, options, tracingOptions); - }, - }; -} -/** - * A policy that wraps outgoing requests with a tracing span. - */ -class TracingPolicy extends BaseRequestPolicy { - constructor(nextPolicy, options, tracingOptions) { - super(nextPolicy, options); - this.userAgent = tracingOptions.userAgent; - } - async sendRequest(request) { - if (!request.tracingContext) { - return this._nextPolicy.sendRequest(request); - } - const span = this.tryCreateSpan(request); - if (!span) { - return this._nextPolicy.sendRequest(request); - } - try { - const response = await this._nextPolicy.sendRequest(request); - this.tryProcessResponse(span, response); - return response; - } - catch (err) { - this.tryProcessError(span, err); - throw err; - } - } - tryCreateSpan(request) { - var _a; - try { - // Passing spanOptions as part of tracingOptions to maintain compatibility @azure/core-tracing@preview.13 and earlier. - // We can pass this as a separate parameter once we upgrade to the latest core-tracing. - const { span } = createSpan(`HTTP ${request.method}`, { - tracingOptions: { - spanOptions: Object.assign(Object.assign({}, request.spanOptions), { kind: coreTracing.SpanKind.CLIENT }), - tracingContext: request.tracingContext, - }, - }); - // If the span is not recording, don't do any more work. - if (!span.isRecording()) { - span.end(); - return undefined; - } - const namespaceFromContext = (_a = request.tracingContext) === null || _a === void 0 ? void 0 : _a.getValue(Symbol.for("az.namespace")); - if (typeof namespaceFromContext === "string") { - span.setAttribute("az.namespace", namespaceFromContext); - } - span.setAttributes({ - "http.method": request.method, - "http.url": request.url, - requestId: request.requestId, - }); - if (this.userAgent) { - span.setAttribute("http.user_agent", this.userAgent); - } - // set headers - const spanContext = span.spanContext(); - const traceParentHeader = coreTracing.getTraceParentHeader(spanContext); - if (traceParentHeader && coreTracing.isSpanContextValid(spanContext)) { - request.headers.set("traceparent", traceParentHeader); - const traceState = spanContext.traceState && spanContext.traceState.serialize(); - // if tracestate is set, traceparent MUST be set, so only set tracestate after traceparent - if (traceState) { - request.headers.set("tracestate", traceState); - } - } - return span; - } - catch (error) { - logger.warning(`Skipping creating a tracing span due to an error: ${error.message}`); - return undefined; - } - } - tryProcessError(span, err) { - try { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: err.message, - }); - if (err.statusCode) { - span.setAttribute("http.status_code", err.statusCode); - } - span.end(); - } - catch (error) { - logger.warning(`Skipping tracing span processing due to an error: ${error.message}`); - } +/***/ }), + +/***/ 77219: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; } - tryProcessResponse(span, response) { - try { - span.setAttribute("http.status_code", response.status); - const serviceRequestId = response.headers.get("x-ms-request-id"); - if (serviceRequestId) { - span.setAttribute("serviceRequestId", serviceRequestId); - } - span.setStatus({ - code: coreTracing.SpanStatusCode.OK, - }); - span.end(); - } - catch (error) { - logger.warning(`Skipping tracing span processing due to an error: ${error.message}`); - } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.HttpsProxyAgent = void 0; +const net = __importStar(__nccwpck_require__(41808)); +const tls = __importStar(__nccwpck_require__(24404)); +const assert_1 = __importDefault(__nccwpck_require__(39491)); +const debug_1 = __importDefault(__nccwpck_require__(38237)); +const agent_base_1 = __nccwpck_require__(70694); +const url_1 = __nccwpck_require__(57310); +const parse_proxy_response_1 = __nccwpck_require__(595); +const debug = (0, debug_1.default)('https-proxy-agent'); +const setServernameFromNonIpHost = (options) => { + if (options.servername === undefined && + options.host && + !net.isIP(options.host)) { + return { + ...options, + servername: options.host, + }; } -} - -// Copyright (c) Microsoft Corporation. + return options; +}; /** - * ServiceClient sends service requests and receives responses. + * The `HttpsProxyAgent` implements an HTTP Agent subclass that connects to + * the specified "HTTP(s) proxy server" in order to proxy HTTPS requests. + * + * Outgoing HTTP requests are first tunneled through the proxy server using the + * `CONNECT` HTTP request method to establish a connection to the proxy server, + * and then the proxy server connects to the destination target and issues the + * HTTP request from the proxy server. + * + * `https:` requests have their socket connection upgraded to TLS once + * the connection to the proxy server has been established. */ -class ServiceClient { - /** - * The ServiceClient constructor - * @param credentials - The credentials used for authentication with the service. - * @param options - The service client options that govern the behavior of the client. - */ - constructor(credentials, - /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options */ - options) { - if (!options) { - options = {}; - } - this._withCredentials = options.withCredentials || false; - this._httpClient = options.httpClient || getCachedDefaultHttpClient(); - this._requestPolicyOptions = new RequestPolicyOptions(options.httpPipelineLogger); - let requestPolicyFactories; - if (Array.isArray(options.requestPolicyFactories)) { - logger.info("ServiceClient: using custom request policies"); - requestPolicyFactories = options.requestPolicyFactories; - } - else { - let authPolicyFactory = undefined; - if (coreAuth.isTokenCredential(credentials)) { - logger.info("ServiceClient: creating bearer token authentication policy from provided credentials"); - // Create a wrapped RequestPolicyFactory here so that we can provide the - // correct scope to the BearerTokenAuthenticationPolicy at the first time - // one is requested. This is needed because generated ServiceClient - // implementations do not set baseUri until after ServiceClient's constructor - // is finished, leaving baseUri empty at the time when it is needed to - // build the correct scope name. - const wrappedPolicyFactory = () => { - let bearerTokenPolicyFactory = undefined; - // eslint-disable-next-line @typescript-eslint/no-this-alias - const serviceClient = this; - const serviceClientOptions = options; - return { - create(nextPolicy, createOptions) { - const credentialScopes = getCredentialScopes(serviceClientOptions, serviceClient.baseUri); - if (!credentialScopes) { - throw new Error(`When using credential, the ServiceClient must contain a baseUri or a credentialScopes in ServiceClientOptions. Unable to create a bearerTokenAuthenticationPolicy`); - } - if (bearerTokenPolicyFactory === undefined || bearerTokenPolicyFactory === null) { - bearerTokenPolicyFactory = bearerTokenAuthenticationPolicy(credentials, credentialScopes); - } - return bearerTokenPolicyFactory.create(nextPolicy, createOptions); - }, - }; - }; - authPolicyFactory = wrappedPolicyFactory(); - } - else if (credentials && typeof credentials.signRequest === "function") { - logger.info("ServiceClient: creating signing policy from provided credentials"); - authPolicyFactory = signingPolicy(credentials); - } - else if (credentials !== undefined && credentials !== null) { - throw new Error("The credentials argument must implement the TokenCredential interface"); - } - logger.info("ServiceClient: using default request policies"); - requestPolicyFactories = createDefaultRequestPolicyFactories(authPolicyFactory, options); - if (options.requestPolicyFactories) { - // options.requestPolicyFactories can also be a function that manipulates - // the default requestPolicyFactories array - const newRequestPolicyFactories = options.requestPolicyFactories(requestPolicyFactories); - if (newRequestPolicyFactories) { - requestPolicyFactories = newRequestPolicyFactories; - } - } - } - this._requestPolicyFactories = requestPolicyFactories; +class HttpsProxyAgent extends agent_base_1.Agent { + constructor(proxy, opts) { + super(opts); + this.options = { path: undefined }; + this.proxy = typeof proxy === 'string' ? new url_1.URL(proxy) : proxy; + this.proxyHeaders = opts?.headers ?? {}; + debug('Creating new HttpsProxyAgent instance: %o', this.proxy.href); + // Trim off the brackets from IPv6 addresses + const host = (this.proxy.hostname || this.proxy.host).replace(/^\[|\]$/g, ''); + const port = this.proxy.port + ? parseInt(this.proxy.port, 10) + : this.proxy.protocol === 'https:' + ? 443 + : 80; + this.connectOpts = { + // Attempt to negotiate http/1.1 for proxy servers that support http/2 + ALPNProtocols: ['http/1.1'], + ...(opts ? omit(opts, 'headers') : null), + host, + port, + }; } /** - * Send the provided httpRequest. + * Called when the node-core HTTP client library is creating a + * new HTTP request. */ - sendRequest(options) { - if (options === null || options === undefined || typeof options !== "object") { - throw new Error("options cannot be null or undefined and it must be of type object."); - } - let httpRequest; - try { - if (isWebResourceLike(options)) { - options.validateRequestProperties(); - httpRequest = options; - } - else { - httpRequest = new WebResource(); - httpRequest = httpRequest.prepare(options); - } + async connect(req, opts) { + const { proxy } = this; + if (!opts.host) { + throw new TypeError('No "host" provided'); } - catch (error) { - return Promise.reject(error); + // Create a socket connection to the proxy server. + let socket; + if (proxy.protocol === 'https:') { + debug('Creating `tls.Socket`: %o', this.connectOpts); + socket = tls.connect(setServernameFromNonIpHost(this.connectOpts)); } - let httpPipeline = this._httpClient; - if (this._requestPolicyFactories && this._requestPolicyFactories.length > 0) { - for (let i = this._requestPolicyFactories.length - 1; i >= 0; --i) { - httpPipeline = this._requestPolicyFactories[i].create(httpPipeline, this._requestPolicyOptions); + else { + debug('Creating `net.Socket`: %o', this.connectOpts); + socket = net.connect(this.connectOpts); + } + const headers = typeof this.proxyHeaders === 'function' + ? this.proxyHeaders() + : { ...this.proxyHeaders }; + const host = net.isIPv6(opts.host) ? `[${opts.host}]` : opts.host; + let payload = `CONNECT ${host}:${opts.port} HTTP/1.1\r\n`; + // Inject the `Proxy-Authorization` header if necessary. + if (proxy.username || proxy.password) { + const auth = `${decodeURIComponent(proxy.username)}:${decodeURIComponent(proxy.password)}`; + headers['Proxy-Authorization'] = `Basic ${Buffer.from(auth).toString('base64')}`; + } + headers.Host = `${host}:${opts.port}`; + if (!headers['Proxy-Connection']) { + headers['Proxy-Connection'] = this.keepAlive + ? 'Keep-Alive' + : 'close'; + } + for (const name of Object.keys(headers)) { + payload += `${name}: ${headers[name]}\r\n`; + } + const proxyResponsePromise = (0, parse_proxy_response_1.parseProxyResponse)(socket); + socket.write(`${payload}\r\n`); + const { connect, buffered } = await proxyResponsePromise; + req.emit('proxyConnect', connect); + this.emit('proxyConnect', connect, req); + if (connect.statusCode === 200) { + req.once('socket', resume); + if (opts.secureEndpoint) { + // The proxy is connecting to a TLS server, so upgrade + // this socket connection to a TLS connection. + debug('Upgrading socket connection to TLS'); + return tls.connect({ + ...omit(setServernameFromNonIpHost(opts), 'host', 'path', 'port'), + socket, + }); } + return socket; } - return httpPipeline.sendRequest(httpRequest); + // Some other status code that's not 200... need to re-play the HTTP + // header "data" events onto the socket once the HTTP machinery is + // attached so that the node core `http` can parse and handle the + // error status code. + // Close the original socket, and a new "fake" socket is returned + // instead, so that the proxy doesn't get the HTTP request + // written to it (which may contain `Authorization` headers or other + // sensitive data). + // + // See: https://hackerone.com/reports/541502 + socket.destroy(); + const fakeSocket = new net.Socket({ writable: false }); + fakeSocket.readable = true; + // Need to wait for the "socket" event to re-play the "data" events. + req.once('socket', (s) => { + debug('Replaying proxy buffer for failed request'); + (0, assert_1.default)(s.listenerCount('data') > 0); + // Replay the "buffered" Buffer onto the fake `socket`, since at + // this point the HTTP module machinery has been hooked up for + // the user. + s.push(buffered); + s.push(null); + }); + return fakeSocket; } - /** - * Send an HTTP request that is populated using the provided OperationSpec. - * @param operationArguments - The arguments that the HTTP request's templated values will be populated from. - * @param operationSpec - The OperationSpec to use to populate the httpRequest. - * @param callback - The callback to call when the response is received. - */ - async sendOperationRequest(operationArguments, operationSpec, callback) { - var _a; - if (typeof operationArguments.options === "function") { - callback = operationArguments.options; - operationArguments.options = undefined; - } - const serializerOptions = (_a = operationArguments.options) === null || _a === void 0 ? void 0 : _a.serializerOptions; - const httpRequest = new WebResource(); - let result; - try { - const baseUri = operationSpec.baseUrl || this.baseUri; - if (!baseUri) { - throw new Error("If operationSpec.baseUrl is not specified, then the ServiceClient must have a baseUri string property that contains the base URL to use."); - } - httpRequest.method = operationSpec.httpMethod; - httpRequest.operationSpec = operationSpec; - const requestUrl = URLBuilder.parse(baseUri); - if (operationSpec.path) { - requestUrl.appendPath(operationSpec.path); - } - if (operationSpec.urlParameters && operationSpec.urlParameters.length > 0) { - for (const urlParameter of operationSpec.urlParameters) { - let urlParameterValue = getOperationArgumentValueFromParameter(this, operationArguments, urlParameter, operationSpec.serializer); - urlParameterValue = operationSpec.serializer.serialize(urlParameter.mapper, urlParameterValue, getPathStringFromParameter(urlParameter), serializerOptions); - if (!urlParameter.skipEncoding) { - urlParameterValue = encodeURIComponent(urlParameterValue); - } - requestUrl.replaceAll(`{${urlParameter.mapper.serializedName || getPathStringFromParameter(urlParameter)}}`, urlParameterValue); - } - } - if (operationSpec.queryParameters && operationSpec.queryParameters.length > 0) { - for (const queryParameter of operationSpec.queryParameters) { - let queryParameterValue = getOperationArgumentValueFromParameter(this, operationArguments, queryParameter, operationSpec.serializer); - if (queryParameterValue !== undefined && queryParameterValue !== null) { - queryParameterValue = operationSpec.serializer.serialize(queryParameter.mapper, queryParameterValue, getPathStringFromParameter(queryParameter), serializerOptions); - if (queryParameter.collectionFormat !== undefined && - queryParameter.collectionFormat !== null) { - if (queryParameter.collectionFormat === exports.QueryCollectionFormat.Multi) { - if (queryParameterValue.length === 0) { - // The collection is empty, no need to try serializing the current queryParam - continue; - } - else { - for (const index in queryParameterValue) { - const item = queryParameterValue[index]; - queryParameterValue[index] = - item === undefined || item === null ? "" : item.toString(); - } - } - } - else if (queryParameter.collectionFormat === exports.QueryCollectionFormat.Ssv || - queryParameter.collectionFormat === exports.QueryCollectionFormat.Tsv) { - queryParameterValue = queryParameterValue.join(queryParameter.collectionFormat); - } - } - if (!queryParameter.skipEncoding) { - if (Array.isArray(queryParameterValue)) { - for (const index in queryParameterValue) { - if (queryParameterValue[index] !== undefined && - queryParameterValue[index] !== null) { - queryParameterValue[index] = encodeURIComponent(queryParameterValue[index]); - } - } - } - else { - queryParameterValue = encodeURIComponent(queryParameterValue); - } - } - if (queryParameter.collectionFormat !== undefined && - queryParameter.collectionFormat !== null && - queryParameter.collectionFormat !== exports.QueryCollectionFormat.Multi && - queryParameter.collectionFormat !== exports.QueryCollectionFormat.Ssv && - queryParameter.collectionFormat !== exports.QueryCollectionFormat.Tsv) { - queryParameterValue = queryParameterValue.join(queryParameter.collectionFormat); - } - requestUrl.setQueryParameter(queryParameter.mapper.serializedName || getPathStringFromParameter(queryParameter), queryParameterValue); - } - } - } - httpRequest.url = requestUrl.toString(); - const contentType = operationSpec.contentType || this.requestContentType; - if (contentType && operationSpec.requestBody) { - httpRequest.headers.set("Content-Type", contentType); - } - if (operationSpec.headerParameters) { - for (const headerParameter of operationSpec.headerParameters) { - let headerValue = getOperationArgumentValueFromParameter(this, operationArguments, headerParameter, operationSpec.serializer); - if (headerValue !== undefined && headerValue !== null) { - headerValue = operationSpec.serializer.serialize(headerParameter.mapper, headerValue, getPathStringFromParameter(headerParameter), serializerOptions); - const headerCollectionPrefix = headerParameter.mapper - .headerCollectionPrefix; - if (headerCollectionPrefix) { - for (const key of Object.keys(headerValue)) { - httpRequest.headers.set(headerCollectionPrefix + key, headerValue[key]); - } - } - else { - httpRequest.headers.set(headerParameter.mapper.serializedName || - getPathStringFromParameter(headerParameter), headerValue); - } - } - } - } - const options = operationArguments.options; - if (options) { - if (options.customHeaders) { - for (const customHeaderName in options.customHeaders) { - httpRequest.headers.set(customHeaderName, options.customHeaders[customHeaderName]); - } - } - if (options.abortSignal) { - httpRequest.abortSignal = options.abortSignal; - } - if (options.timeout) { - httpRequest.timeout = options.timeout; - } - if (options.onUploadProgress) { - httpRequest.onUploadProgress = options.onUploadProgress; - } - if (options.onDownloadProgress) { - httpRequest.onDownloadProgress = options.onDownloadProgress; - } - if (options.spanOptions) { - // By passing spanOptions if they exist at runtime, we're backwards compatible with @azure/core-tracing@preview.13 and earlier. - httpRequest.spanOptions = options.spanOptions; - } - if (options.tracingContext) { - httpRequest.tracingContext = options.tracingContext; - } - if (options.shouldDeserialize !== undefined && options.shouldDeserialize !== null) { - httpRequest.shouldDeserialize = options.shouldDeserialize; - } - } - httpRequest.withCredentials = this._withCredentials; - serializeRequestBody(this, httpRequest, operationArguments, operationSpec); - if (httpRequest.streamResponseStatusCodes === undefined) { - httpRequest.streamResponseStatusCodes = getStreamResponseStatusCodes(operationSpec); - } - let rawResponse; - let sendRequestError; - try { - rawResponse = await this.sendRequest(httpRequest); - } - catch (error) { - sendRequestError = error; - } - if (sendRequestError) { - if (sendRequestError.response) { - sendRequestError.details = flattenResponse(sendRequestError.response, operationSpec.responses[sendRequestError.statusCode] || - operationSpec.responses["default"]); - } - result = Promise.reject(sendRequestError); - } - else { - result = Promise.resolve(flattenResponse(rawResponse, operationSpec.responses[rawResponse.status])); - } - } - catch (error) { - result = Promise.reject(error); - } - const cb = callback; - if (cb) { - result - .then((res) => cb(null, res._response.parsedBody, res._response.request, res._response)) - .catch((err) => cb(err)); +} +HttpsProxyAgent.protocols = ['http', 'https']; +exports.HttpsProxyAgent = HttpsProxyAgent; +function resume(socket) { + socket.resume(); +} +function omit(obj, ...keys) { + const ret = {}; + let key; + for (key in obj) { + if (!keys.includes(key)) { + ret[key] = obj[key]; } - return result; } + return ret; } -function serializeRequestBody(serviceClient, httpRequest, operationArguments, operationSpec) { - var _a, _b, _c, _d, _e, _f; - const serializerOptions = (_b = (_a = operationArguments.options) === null || _a === void 0 ? void 0 : _a.serializerOptions) !== null && _b !== void 0 ? _b : {}; - const updatedOptions = { - rootName: (_c = serializerOptions.rootName) !== null && _c !== void 0 ? _c : "", - includeRoot: (_d = serializerOptions.includeRoot) !== null && _d !== void 0 ? _d : false, - xmlCharKey: (_e = serializerOptions.xmlCharKey) !== null && _e !== void 0 ? _e : XML_CHARKEY, - }; - const xmlCharKey = serializerOptions.xmlCharKey; - if (operationSpec.requestBody && operationSpec.requestBody.mapper) { - httpRequest.body = getOperationArgumentValueFromParameter(serviceClient, operationArguments, operationSpec.requestBody, operationSpec.serializer); - const bodyMapper = operationSpec.requestBody.mapper; - const { required, xmlName, xmlElementName, serializedName, xmlNamespace, xmlNamespacePrefix } = bodyMapper; - const typeName = bodyMapper.type.name; - try { - if ((httpRequest.body !== undefined && httpRequest.body !== null) || required) { - const requestBodyParameterPathString = getPathStringFromParameter(operationSpec.requestBody); - httpRequest.body = operationSpec.serializer.serialize(bodyMapper, httpRequest.body, requestBodyParameterPathString, updatedOptions); - const isStream = typeName === MapperType.Stream; - if (operationSpec.isXML) { - const xmlnsKey = xmlNamespacePrefix ? `xmlns:${xmlNamespacePrefix}` : "xmlns"; - const value = getXmlValueWithNamespace(xmlNamespace, xmlnsKey, typeName, httpRequest.body, updatedOptions); - if (typeName === MapperType.Sequence) { - httpRequest.body = stringifyXML(prepareXMLRootList(value, xmlElementName || xmlName || serializedName, xmlnsKey, xmlNamespace), { - rootName: xmlName || serializedName, - xmlCharKey, - }); - } - else if (!isStream) { - httpRequest.body = stringifyXML(value, { - rootName: xmlName || serializedName, - xmlCharKey, - }); - } - } - else if (typeName === MapperType.String && - (((_f = operationSpec.contentType) === null || _f === void 0 ? void 0 : _f.match("text/plain")) || operationSpec.mediaType === "text")) { - // the String serializer has validated that request body is a string - // so just send the string. - return; - } - else if (!isStream) { - httpRequest.body = JSON.stringify(httpRequest.body); - } - } +//# sourceMappingURL=index.js.map + +/***/ }), + +/***/ 595: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.parseProxyResponse = void 0; +const debug_1 = __importDefault(__nccwpck_require__(38237)); +const debug = (0, debug_1.default)('https-proxy-agent:parse-proxy-response'); +function parseProxyResponse(socket) { + return new Promise((resolve, reject) => { + // we need to buffer any HTTP traffic that happens with the proxy before we get + // the CONNECT response, so that if the response is anything other than an "200" + // response code, then we can re-play the "data" events on the socket once the + // HTTP parser is hooked up... + let buffersLength = 0; + const buffers = []; + function read() { + const b = socket.read(); + if (b) + ondata(b); + else + socket.once('readable', read); } - catch (error) { - throw new Error(`Error "${error.message}" occurred in serializing the payload - ${JSON.stringify(serializedName, undefined, " ")}.`); + function cleanup() { + socket.removeListener('end', onend); + socket.removeListener('error', onerror); + socket.removeListener('readable', read); } - } - else if (operationSpec.formDataParameters && operationSpec.formDataParameters.length > 0) { - httpRequest.formData = {}; - for (const formDataParameter of operationSpec.formDataParameters) { - const formDataParameterValue = getOperationArgumentValueFromParameter(serviceClient, operationArguments, formDataParameter, operationSpec.serializer); - if (formDataParameterValue !== undefined && formDataParameterValue !== null) { - const formDataParameterPropertyName = formDataParameter.mapper.serializedName || getPathStringFromParameter(formDataParameter); - httpRequest.formData[formDataParameterPropertyName] = operationSpec.serializer.serialize(formDataParameter.mapper, formDataParameterValue, getPathStringFromParameter(formDataParameter), updatedOptions); - } + function onend() { + cleanup(); + debug('onend'); + reject(new Error('Proxy connection ended before receiving CONNECT response')); } - } -} -/** - * Adds an xml namespace to the xml serialized object if needed, otherwise it just returns the value itself - */ -function getXmlValueWithNamespace(xmlNamespace, xmlnsKey, typeName, serializedValue, options) { - // Composite and Sequence schemas already got their root namespace set during serialization - // We just need to add xmlns to the other schema types - if (xmlNamespace && !["Composite", "Sequence", "Dictionary"].includes(typeName)) { - const result = {}; - result[options.xmlCharKey] = serializedValue; - result[XML_ATTRKEY] = { [xmlnsKey]: xmlNamespace }; - return result; - } - return serializedValue; -} -function getValueOrFunctionResult(value, defaultValueCreator) { - let result; - if (typeof value === "string") { - result = value; - } - else { - result = defaultValueCreator(); - if (typeof value === "function") { - result = value(result); + function onerror(err) { + cleanup(); + debug('onerror %o', err); + reject(err); } - } - return result; -} -function createDefaultRequestPolicyFactories(authPolicyFactory, options) { - const factories = []; - if (options.generateClientRequestIdHeader) { - factories.push(generateClientRequestIdPolicy(options.clientRequestIdHeaderName)); - } - if (authPolicyFactory) { - factories.push(authPolicyFactory); - } - const userAgentHeaderName = getValueOrFunctionResult(options.userAgentHeaderName, getDefaultUserAgentHeaderName); - const userAgentHeaderValue = getValueOrFunctionResult(options.userAgent, getDefaultUserAgentValue); - if (userAgentHeaderName && userAgentHeaderValue) { - factories.push(userAgentPolicy({ key: userAgentHeaderName, value: userAgentHeaderValue })); - } - factories.push(redirectPolicy()); - factories.push(rpRegistrationPolicy(options.rpRegistrationRetryTimeout)); - if (!options.noRetryPolicy) { - factories.push(exponentialRetryPolicy()); - factories.push(systemErrorRetryPolicy()); - factories.push(throttlingRetryPolicy()); - } - factories.push(deserializationPolicy(options.deserializationContentTypes)); - if (isNode) { - factories.push(proxyPolicy(options.proxySettings)); - } - factories.push(logPolicy({ logger: logger.info })); - return factories; -} -/** - * Creates an HTTP pipeline based on the given options. - * @param pipelineOptions - Defines options that are used to configure policies in the HTTP pipeline for an SDK client. - * @param authPolicyFactory - An optional authentication policy factory to use for signing requests. - * @returns A set of options that can be passed to create a new {@link ServiceClient}. - */ -function createPipelineFromOptions(pipelineOptions, authPolicyFactory) { - const requestPolicyFactories = []; - if (pipelineOptions.sendStreamingJson) { - requestPolicyFactories.push(ndJsonPolicy()); - } - let userAgentValue = undefined; - if (pipelineOptions.userAgentOptions && pipelineOptions.userAgentOptions.userAgentPrefix) { - const userAgentInfo = []; - userAgentInfo.push(pipelineOptions.userAgentOptions.userAgentPrefix); - // Add the default user agent value if it isn't already specified - // by the userAgentPrefix option. - const defaultUserAgentInfo = getDefaultUserAgentValue(); - if (userAgentInfo.indexOf(defaultUserAgentInfo) === -1) { - userAgentInfo.push(defaultUserAgentInfo); - } - userAgentValue = userAgentInfo.join(" "); - } - const keepAliveOptions = Object.assign(Object.assign({}, DefaultKeepAliveOptions), pipelineOptions.keepAliveOptions); - const retryOptions = Object.assign(Object.assign({}, DefaultRetryOptions), pipelineOptions.retryOptions); - const redirectOptions = Object.assign(Object.assign({}, DefaultRedirectOptions), pipelineOptions.redirectOptions); - if (isNode) { - requestPolicyFactories.push(proxyPolicy(pipelineOptions.proxyOptions)); - } - const deserializationOptions = Object.assign(Object.assign({}, DefaultDeserializationOptions), pipelineOptions.deserializationOptions); - const loggingOptions = Object.assign({}, pipelineOptions.loggingOptions); - requestPolicyFactories.push(tracingPolicy({ userAgent: userAgentValue }), keepAlivePolicy(keepAliveOptions), userAgentPolicy({ value: userAgentValue }), generateClientRequestIdPolicy(), deserializationPolicy(deserializationOptions.expectedContentTypes), throttlingRetryPolicy(), systemErrorRetryPolicy(), exponentialRetryPolicy(retryOptions.maxRetries, retryOptions.retryDelayInMs, retryOptions.maxRetryDelayInMs)); - if (redirectOptions.handleRedirects) { - requestPolicyFactories.push(redirectPolicy(redirectOptions.maxRetries)); - } - if (authPolicyFactory) { - requestPolicyFactories.push(authPolicyFactory); - } - requestPolicyFactories.push(logPolicy(loggingOptions)); - if (isNode && pipelineOptions.decompressResponse === false) { - requestPolicyFactories.push(disableResponseDecompressionPolicy()); - } - return { - httpClient: pipelineOptions.httpClient, - requestPolicyFactories, - }; -} -function getOperationArgumentValueFromParameter(serviceClient, operationArguments, parameter, serializer) { - return getOperationArgumentValueFromParameterPath(serviceClient, operationArguments, parameter.parameterPath, parameter.mapper, serializer); -} -function getOperationArgumentValueFromParameterPath(serviceClient, operationArguments, parameterPath, parameterMapper, serializer) { - var _a; - let value; - if (typeof parameterPath === "string") { - parameterPath = [parameterPath]; - } - const serializerOptions = (_a = operationArguments.options) === null || _a === void 0 ? void 0 : _a.serializerOptions; - if (Array.isArray(parameterPath)) { - if (parameterPath.length > 0) { - if (parameterMapper.isConstant) { - value = parameterMapper.defaultValue; + function ondata(b) { + buffers.push(b); + buffersLength += b.length; + const buffered = Buffer.concat(buffers, buffersLength); + const endOfHeaders = buffered.indexOf('\r\n\r\n'); + if (endOfHeaders === -1) { + // keep buffering + debug('have not received end of HTTP headers yet...'); + read(); + return; } - else { - let propertySearchResult = getPropertyFromParameterPath(operationArguments, parameterPath); - if (!propertySearchResult.propertyFound) { - propertySearchResult = getPropertyFromParameterPath(serviceClient, parameterPath); - } - let useDefaultValue = false; - if (!propertySearchResult.propertyFound) { - useDefaultValue = - parameterMapper.required || - (parameterPath[0] === "options" && parameterPath.length === 2); + const headerParts = buffered + .slice(0, endOfHeaders) + .toString('ascii') + .split('\r\n'); + const firstLine = headerParts.shift(); + if (!firstLine) { + socket.destroy(); + return reject(new Error('No header received from proxy CONNECT response')); + } + const firstLineParts = firstLine.split(' '); + const statusCode = +firstLineParts[1]; + const statusText = firstLineParts.slice(2).join(' '); + const headers = {}; + for (const header of headerParts) { + if (!header) + continue; + const firstColon = header.indexOf(':'); + if (firstColon === -1) { + socket.destroy(); + return reject(new Error(`Invalid header from proxy CONNECT response: "${header}"`)); } - value = useDefaultValue ? parameterMapper.defaultValue : propertySearchResult.propertyValue; - } - // Serialize just for validation purposes. - const parameterPathString = getPathStringFromParameterPath(parameterPath, parameterMapper); - serializer.serialize(parameterMapper, value, parameterPathString, serializerOptions); - } - } - else { - if (parameterMapper.required) { - value = {}; - } - for (const propertyName in parameterPath) { - const propertyMapper = parameterMapper.type.modelProperties[propertyName]; - const propertyPath = parameterPath[propertyName]; - const propertyValue = getOperationArgumentValueFromParameterPath(serviceClient, operationArguments, propertyPath, propertyMapper, serializer); - // Serialize just for validation purposes. - const propertyPathString = getPathStringFromParameterPath(propertyPath, propertyMapper); - serializer.serialize(propertyMapper, propertyValue, propertyPathString, serializerOptions); - if (propertyValue !== undefined && propertyValue !== null) { - if (!value) { - value = {}; + const key = header.slice(0, firstColon).toLowerCase(); + const value = header.slice(firstColon + 1).trimStart(); + const current = headers[key]; + if (typeof current === 'string') { + headers[key] = [current, value]; } - value[propertyName] = propertyValue; - } - } - } - return value; -} -function getPropertyFromParameterPath(parent, parameterPath) { - const result = { propertyFound: false }; - let i = 0; - for (; i < parameterPath.length; ++i) { - const parameterPathPart = parameterPath[i]; - // Make sure to check inherited properties too, so don't use hasOwnProperty(). - if (parent !== undefined && parent !== null && parameterPathPart in parent) { - parent = parent[parameterPathPart]; - } - else { - break; - } - } - if (i === parameterPath.length) { - result.propertyValue = parent; - result.propertyFound = true; - } - return result; -} -/** - * Parses an {@link HttpOperationResponse} into a normalized HTTP response object ({@link RestResponse}). - * @param _response - Wrapper object for http response. - * @param responseSpec - Mappers for how to parse the response properties. - * @returns - A normalized response object. - */ -function flattenResponse(_response, responseSpec) { - const parsedHeaders = _response.parsedHeaders; - const bodyMapper = responseSpec && responseSpec.bodyMapper; - const addOperationResponse = (obj) => { - return Object.defineProperty(obj, "_response", { - value: _response, - }); - }; - if (bodyMapper) { - const typeName = bodyMapper.type.name; - if (typeName === "Stream") { - return addOperationResponse(Object.assign(Object.assign({}, parsedHeaders), { blobBody: _response.blobBody, readableStreamBody: _response.readableStreamBody })); - } - const modelProperties = (typeName === "Composite" && bodyMapper.type.modelProperties) || {}; - const isPageableResponse = Object.keys(modelProperties).some((k) => modelProperties[k].serializedName === ""); - if (typeName === "Sequence" || isPageableResponse) { - const arrayResponse = [...(_response.parsedBody || [])]; - for (const key of Object.keys(modelProperties)) { - if (modelProperties[key].serializedName) { - arrayResponse[key] = _response.parsedBody[key]; + else if (Array.isArray(current)) { + current.push(value); } - } - if (parsedHeaders) { - for (const key of Object.keys(parsedHeaders)) { - arrayResponse[key] = parsedHeaders[key]; + else { + headers[key] = value; } } - addOperationResponse(arrayResponse); - return arrayResponse; - } - if (typeName === "Composite" || typeName === "Dictionary") { - return addOperationResponse(Object.assign(Object.assign({}, parsedHeaders), _response.parsedBody)); + debug('got proxy server response: %o %o', firstLine, headers); + cleanup(); + resolve({ + connect: { + statusCode, + statusText, + headers, + }, + buffered, + }); } - } - if (bodyMapper || - _response.request.method === "HEAD" || - isPrimitiveType(_response.parsedBody)) { - // primitive body types and HEAD booleans - return addOperationResponse(Object.assign(Object.assign({}, parsedHeaders), { body: _response.parsedBody })); - } - return addOperationResponse(Object.assign(Object.assign({}, parsedHeaders), _response.parsedBody)); -} -function getCredentialScopes(options, baseUri) { - if (options === null || options === void 0 ? void 0 : options.credentialScopes) { - const scopes = options.credentialScopes; - return Array.isArray(scopes) - ? scopes.map((scope) => new url.URL(scope).toString()) - : new url.URL(scopes).toString(); - } - if (baseUri) { - return `${baseUri}/.default`; - } - return undefined; + socket.on('error', onerror); + socket.on('end', onend); + read(); + }); } +exports.parseProxyResponse = parseProxyResponse; +//# sourceMappingURL=parse-proxy-response.js.map -// Copyright (c) Microsoft Corporation. -/** - * This function is only here for compatibility. Use createSpanFunction in core-tracing. - * - * @deprecated This function is only here for compatibility. Use createSpanFunction in core-tracing. - * @hidden +/***/ }), - * @param spanConfig - The name of the operation being performed. - * @param tracingOptions - The options for the underlying http request. - */ -function createSpanFunction(args) { - return coreTracing.createSpanFunction(args); -} +/***/ 83973: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -/** - * Defines the default token refresh buffer duration. - */ -const TokenRefreshBufferMs = 2 * 60 * 1000; // 2 Minutes -/** - * Provides an {@link AccessTokenCache} implementation which clears - * the cached {@link AccessToken}'s after the expiresOnTimestamp has - * passed. - * - * @deprecated No longer used in the bearer authorization policy. - */ -class ExpiringAccessTokenCache { - /** - * Constructs an instance of {@link ExpiringAccessTokenCache} with - * an optional expiration buffer time. - */ - constructor(tokenRefreshBufferMs = TokenRefreshBufferMs) { - this.cachedToken = undefined; - this.tokenRefreshBufferMs = tokenRefreshBufferMs; - } - /** - * Saves an access token into the internal in-memory cache. - * @param accessToken - Access token or undefined to clear the cache. - */ - setCachedToken(accessToken) { - this.cachedToken = accessToken; - } - /** - * Returns the cached access token, or `undefined` if one is not cached or the cached one is expiring soon. - */ - getCachedToken() { - if (this.cachedToken && - Date.now() + this.tokenRefreshBufferMs >= this.cachedToken.expiresOnTimestamp) { - this.cachedToken = undefined; - } - return this.cachedToken; - } -} +module.exports = minimatch +minimatch.Minimatch = Minimatch -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -/** - * Helps the core-http token authentication policies with requesting a new token if we're not currently waiting for a new token. - * - * @deprecated No longer used in the bearer authorization policy. - */ -class AccessTokenRefresher { - constructor(credential, scopes, requiredMillisecondsBeforeNewRefresh = 30000) { - this.credential = credential; - this.scopes = scopes; - this.requiredMillisecondsBeforeNewRefresh = requiredMillisecondsBeforeNewRefresh; - this.lastCalled = 0; - } - /** - * Returns true if the required milliseconds(defaulted to 30000) have been passed signifying - * that we are ready for a new refresh. - */ - isReady() { - // We're only ready for a new refresh if the required milliseconds have passed. - return (!this.lastCalled || Date.now() - this.lastCalled > this.requiredMillisecondsBeforeNewRefresh); - } - /** - * Stores the time in which it is called, - * then requests a new token, - * then sets this.promise to undefined, - * then returns the token. - */ - async getToken(options) { - this.lastCalled = Date.now(); - const token = await this.credential.getToken(this.scopes, options); - this.promise = undefined; - return token || undefined; - } - /** - * Requests a new token if we're not currently waiting for a new token. - * Returns null if the required time between each call hasn't been reached. - */ - refresh(options) { - if (!this.promise) { - this.promise = this.getToken(options); - } - return this.promise; - } +var path = (function () { try { return __nccwpck_require__(71017) } catch (e) {}}()) || { + sep: '/' } +minimatch.sep = path.sep -// Copyright (c) Microsoft Corporation. -const HeaderConstants = Constants.HeaderConstants; -const DEFAULT_AUTHORIZATION_SCHEME = "Basic"; -/** - * A simple {@link ServiceClientCredential} that authenticates with a username and a password. - */ -class BasicAuthenticationCredentials { - /** - * Creates a new BasicAuthenticationCredentials object. - * - * @param userName - User name. - * @param password - Password. - * @param authorizationScheme - The authorization scheme. - */ - constructor(userName, password, authorizationScheme = DEFAULT_AUTHORIZATION_SCHEME) { - /** - * Authorization scheme. Defaults to "Basic". - * More information about authorization schemes is available here: https://developer.mozilla.org/docs/Web/HTTP/Authentication#authentication_schemes - */ - this.authorizationScheme = DEFAULT_AUTHORIZATION_SCHEME; - if (userName === null || userName === undefined || typeof userName.valueOf() !== "string") { - throw new Error("userName cannot be null or undefined and must be of type string."); - } - if (password === null || password === undefined || typeof password.valueOf() !== "string") { - throw new Error("password cannot be null or undefined and must be of type string."); - } - this.userName = userName; - this.password = password; - this.authorizationScheme = authorizationScheme; - } - /** - * Signs a request with the Authentication header. - * - * @param webResource - The WebResourceLike to be signed. - * @returns The signed request object. - */ - signRequest(webResource) { - const credentials = `${this.userName}:${this.password}`; - const encodedCredentials = `${this.authorizationScheme} ${encodeString(credentials)}`; - if (!webResource.headers) - webResource.headers = new HttpHeaders(); - webResource.headers.set(HeaderConstants.AUTHORIZATION, encodedCredentials); - return Promise.resolve(webResource); - } +var GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {} +var expand = __nccwpck_require__(33717) + +var plTypes = { + '!': { open: '(?:(?!(?:', close: '))[^/]*?)'}, + '?': { open: '(?:', close: ')?' }, + '+': { open: '(?:', close: ')+' }, + '*': { open: '(?:', close: ')*' }, + '@': { open: '(?:', close: ')' } } -// Copyright (c) Microsoft Corporation. -/** - * Authenticates to a service using an API key. - */ -class ApiKeyCredentials { - /** - * @param options - Specifies the options to be provided for auth. Either header or query needs to be provided. - */ - constructor(options) { - if (!options || (options && !options.inHeader && !options.inQuery)) { - throw new Error(`options cannot be null or undefined. Either "inHeader" or "inQuery" property of the options object needs to be provided.`); - } - this.inHeader = options.inHeader; - this.inQuery = options.inQuery; - } - /** - * Signs a request with the values provided in the inHeader and inQuery parameter. - * - * @param webResource - The WebResourceLike to be signed. - * @returns The signed request object. - */ - signRequest(webResource) { - if (!webResource) { - return Promise.reject(new Error(`webResource cannot be null or undefined and must be of type "object".`)); - } - if (this.inHeader) { - if (!webResource.headers) { - webResource.headers = new HttpHeaders(); - } - for (const headerName in this.inHeader) { - webResource.headers.set(headerName, this.inHeader[headerName]); - } - } - if (this.inQuery) { - if (!webResource.url) { - return Promise.reject(new Error(`url cannot be null in the request object.`)); - } - if (webResource.url.indexOf("?") < 0) { - webResource.url += "?"; - } - for (const key in this.inQuery) { - if (!webResource.url.endsWith("?")) { - webResource.url += "&"; - } - webResource.url += `${key}=${this.inQuery[key]}`; - } - } - return Promise.resolve(webResource); - } -} - -// Copyright (c) Microsoft Corporation. -/** - * A {@link TopicCredentials} object used for Azure Event Grid. - */ -class TopicCredentials extends ApiKeyCredentials { - /** - * Creates a new EventGrid TopicCredentials object. - * - * @param topicKey - The EventGrid topic key - */ - constructor(topicKey) { - if (!topicKey || (topicKey && typeof topicKey !== "string")) { - throw new Error("topicKey cannot be null or undefined and must be of type string."); - } - const options = { - inHeader: { - "aeg-sas-key": topicKey, - }, - }; - super(options); - } -} - -Object.defineProperty(exports, "isTokenCredential", ({ - enumerable: true, - get: function () { return coreAuth.isTokenCredential; } -})); -exports.AccessTokenRefresher = AccessTokenRefresher; -exports.ApiKeyCredentials = ApiKeyCredentials; -exports.BaseRequestPolicy = BaseRequestPolicy; -exports.BasicAuthenticationCredentials = BasicAuthenticationCredentials; -exports.Constants = Constants; -exports.DefaultHttpClient = NodeFetchHttpClient; -exports.ExpiringAccessTokenCache = ExpiringAccessTokenCache; -exports.HttpHeaders = HttpHeaders; -exports.MapperType = MapperType; -exports.RequestPolicyOptions = RequestPolicyOptions; -exports.RestError = RestError; -exports.Serializer = Serializer; -exports.ServiceClient = ServiceClient; -exports.TopicCredentials = TopicCredentials; -exports.URLBuilder = URLBuilder; -exports.URLQuery = URLQuery; -exports.WebResource = WebResource; -exports.XML_ATTRKEY = XML_ATTRKEY; -exports.XML_CHARKEY = XML_CHARKEY; -exports.applyMixins = applyMixins; -exports.bearerTokenAuthenticationPolicy = bearerTokenAuthenticationPolicy; -exports.createPipelineFromOptions = createPipelineFromOptions; -exports.createSpanFunction = createSpanFunction; -exports.delay = delay; -exports.deserializationPolicy = deserializationPolicy; -exports.deserializeResponseBody = deserializeResponseBody; -exports.disableResponseDecompressionPolicy = disableResponseDecompressionPolicy; -exports.encodeUri = encodeUri; -exports.executePromisesSequentially = executePromisesSequentially; -exports.exponentialRetryPolicy = exponentialRetryPolicy; -exports.flattenResponse = flattenResponse; -exports.generateClientRequestIdPolicy = generateClientRequestIdPolicy; -exports.generateUuid = generateUuid; -exports.getDefaultProxySettings = getDefaultProxySettings; -exports.getDefaultUserAgentValue = getDefaultUserAgentValue; -exports.isDuration = isDuration; -exports.isNode = isNode; -exports.isValidUuid = isValidUuid; -exports.keepAlivePolicy = keepAlivePolicy; -exports.logPolicy = logPolicy; -exports.operationOptionsToRequestOptionsBase = operationOptionsToRequestOptionsBase; -exports.parseXML = parseXML; -exports.promiseToCallback = promiseToCallback; -exports.promiseToServiceCallback = promiseToServiceCallback; -exports.proxyPolicy = proxyPolicy; -exports.redirectPolicy = redirectPolicy; -exports.serializeObject = serializeObject; -exports.signingPolicy = signingPolicy; -exports.stringifyXML = stringifyXML; -exports.stripRequest = stripRequest; -exports.stripResponse = stripResponse; -exports.systemErrorRetryPolicy = systemErrorRetryPolicy; -exports.throttlingRetryPolicy = throttlingRetryPolicy; -exports.tracingPolicy = tracingPolicy; -exports.userAgentPolicy = userAgentPolicy; -//# sourceMappingURL=index.js.map - - -/***/ }), - -/***/ 6279: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { +// any single thing other than / +// don't need to escape / when using new RegExp() +var qmark = '[^/]' -var CombinedStream = __nccwpck_require__(5443); -var util = __nccwpck_require__(3837); -var path = __nccwpck_require__(1017); -var http = __nccwpck_require__(3685); -var https = __nccwpck_require__(5687); -var parseUrl = (__nccwpck_require__(7310).parse); -var fs = __nccwpck_require__(7147); -var Stream = (__nccwpck_require__(2781).Stream); -var mime = __nccwpck_require__(3583); -var asynckit = __nccwpck_require__(4812); -var populate = __nccwpck_require__(3971); +// * => any number of characters +var star = qmark + '*?' -// Public API -module.exports = FormData; +// ** when dots are allowed. Anything goes, except .. and . +// not (^ or / followed by one or two dots followed by $ or /), +// followed by anything, any number of times. +var twoStarDot = '(?:(?!(?:\\\/|^)(?:\\.{1,2})($|\\\/)).)*?' -// make it a Stream -util.inherits(FormData, CombinedStream); +// not a ^ or / followed by a dot, +// followed by anything, any number of times. +var twoStarNoDot = '(?:(?!(?:\\\/|^)\\.).)*?' -/** - * Create readable "multipart/form-data" streams. - * Can be used to submit forms - * and file uploads to other web applications. - * - * @constructor - * @param {Object} options - Properties to be added/overriden for FormData and CombinedStream - */ -function FormData(options) { - if (!(this instanceof FormData)) { - return new FormData(options); - } +// characters that need to be escaped in RegExp. +var reSpecials = charSet('().*{}+?[]^$\\!') - this._overheadLength = 0; - this._valueLength = 0; - this._valuesToMeasure = []; +// "abc" -> { a:true, b:true, c:true } +function charSet (s) { + return s.split('').reduce(function (set, c) { + set[c] = true + return set + }, {}) +} - CombinedStream.call(this); +// normalizes slashes. +var slashSplit = /\/+/ - options = options || {}; - for (var option in options) { - this[option] = options[option]; +minimatch.filter = filter +function filter (pattern, options) { + options = options || {} + return function (p, i, list) { + return minimatch(p, pattern, options) } } -FormData.LINE_BREAK = '\r\n'; -FormData.DEFAULT_CONTENT_TYPE = 'application/octet-stream'; - -FormData.prototype.append = function(field, value, options) { - - options = options || {}; +function ext (a, b) { + b = b || {} + var t = {} + Object.keys(a).forEach(function (k) { + t[k] = a[k] + }) + Object.keys(b).forEach(function (k) { + t[k] = b[k] + }) + return t +} - // allow filename as single option - if (typeof options == 'string') { - options = {filename: options}; +minimatch.defaults = function (def) { + if (!def || typeof def !== 'object' || !Object.keys(def).length) { + return minimatch } - var append = CombinedStream.prototype.append.bind(this); + var orig = minimatch - // all that streamy business can't handle numbers - if (typeof value == 'number') { - value = '' + value; + var m = function minimatch (p, pattern, options) { + return orig(p, pattern, ext(def, options)) } - // https://github.com/felixge/node-form-data/issues/38 - if (util.isArray(value)) { - // Please convert your array into string - // the way web server expects it - this._error(new Error('Arrays are not supported.')); - return; + m.Minimatch = function Minimatch (pattern, options) { + return new orig.Minimatch(pattern, ext(def, options)) } - - var header = this._multiPartHeader(field, value, options); - var footer = this._multiPartFooter(); - - append(header); - append(value); - append(footer); - - // pass along options.knownLength - this._trackLength(header, value, options); -}; - -FormData.prototype._trackLength = function(header, value, options) { - var valueLength = 0; - - // used w/ getLengthSync(), when length is known. - // e.g. for streaming directly from a remote server, - // w/ a known file a size, and not wanting to wait for - // incoming file to finish to get its size. - if (options.knownLength != null) { - valueLength += +options.knownLength; - } else if (Buffer.isBuffer(value)) { - valueLength = value.length; - } else if (typeof value === 'string') { - valueLength = Buffer.byteLength(value); + m.Minimatch.defaults = function defaults (options) { + return orig.defaults(ext(def, options)).Minimatch } - this._valueLength += valueLength; - - // @check why add CRLF? does this account for custom/multiple CRLFs? - this._overheadLength += - Buffer.byteLength(header) + - FormData.LINE_BREAK.length; - - // empty or either doesn't have path or not an http response or not a stream - if (!value || ( !value.path && !(value.readable && value.hasOwnProperty('httpVersion')) && !(value instanceof Stream))) { - return; + m.filter = function filter (pattern, options) { + return orig.filter(pattern, ext(def, options)) } - // no need to bother with the length - if (!options.knownLength) { - this._valuesToMeasure.push(value); + m.defaults = function defaults (options) { + return orig.defaults(ext(def, options)) } -}; - -FormData.prototype._lengthRetriever = function(value, callback) { - - if (value.hasOwnProperty('fd')) { - - // take read range into a account - // `end` = Infinity –> read file till the end - // - // TODO: Looks like there is bug in Node fs.createReadStream - // it doesn't respect `end` options without `start` options - // Fix it when node fixes it. - // https://github.com/joyent/node/issues/7819 - if (value.end != undefined && value.end != Infinity && value.start != undefined) { - - // when end specified - // no need to calculate range - // inclusive, starts with 0 - callback(null, value.end + 1 - (value.start ? value.start : 0)); - - // not that fast snoopy - } else { - // still need to fetch file size from fs - fs.stat(value.path, function(err, stat) { - - var fileSize; - - if (err) { - callback(err); - return; - } - - // update final size based on the range options - fileSize = stat.size - (value.start ? value.start : 0); - callback(null, fileSize); - }); - } - - // or http response - } else if (value.hasOwnProperty('httpVersion')) { - callback(null, +value.headers['content-length']); - // or request stream http://github.com/mikeal/request - } else if (value.hasOwnProperty('httpModule')) { - // wait till response come back - value.on('response', function(response) { - value.pause(); - callback(null, +response.headers['content-length']); - }); - value.resume(); + m.makeRe = function makeRe (pattern, options) { + return orig.makeRe(pattern, ext(def, options)) + } - // something else - } else { - callback('Unknown stream'); + m.braceExpand = function braceExpand (pattern, options) { + return orig.braceExpand(pattern, ext(def, options)) } -}; -FormData.prototype._multiPartHeader = function(field, value, options) { - // custom header specified (as string)? - // it becomes responsible for boundary - // (e.g. to handle extra CRLFs on .NET servers) - if (typeof options.header == 'string') { - return options.header; + m.match = function (list, pattern, options) { + return orig.match(list, pattern, ext(def, options)) } - var contentDisposition = this._getContentDisposition(value, options); - var contentType = this._getContentType(value, options); + return m +} - var contents = ''; - var headers = { - // add custom disposition as third element or keep it two elements if not - 'Content-Disposition': ['form-data', 'name="' + field + '"'].concat(contentDisposition || []), - // if no content type. allow it to be empty array - 'Content-Type': [].concat(contentType || []) - }; +Minimatch.defaults = function (def) { + return minimatch.defaults(def).Minimatch +} - // allow custom headers. - if (typeof options.header == 'object') { - populate(headers, options.header); - } +function minimatch (p, pattern, options) { + assertValidPattern(pattern) - var header; - for (var prop in headers) { - if (!headers.hasOwnProperty(prop)) continue; - header = headers[prop]; + if (!options) options = {} - // skip nullish headers. - if (header == null) { - continue; - } + // shortcut: comments match nothing. + if (!options.nocomment && pattern.charAt(0) === '#') { + return false + } - // convert all headers to arrays. - if (!Array.isArray(header)) { - header = [header]; - } + return new Minimatch(pattern, options).match(p) +} - // add non-empty headers. - if (header.length) { - contents += prop + ': ' + header.join('; ') + FormData.LINE_BREAK; - } +function Minimatch (pattern, options) { + if (!(this instanceof Minimatch)) { + return new Minimatch(pattern, options) } - return '--' + this.getBoundary() + FormData.LINE_BREAK + contents + FormData.LINE_BREAK; -}; + assertValidPattern(pattern) -FormData.prototype._getContentDisposition = function(value, options) { + if (!options) options = {} - var filename - , contentDisposition - ; + pattern = pattern.trim() - if (typeof options.filepath === 'string') { - // custom filepath for relative paths - filename = path.normalize(options.filepath).replace(/\\/g, '/'); - } else if (options.filename || value.name || value.path) { - // custom filename take precedence - // formidable and the browser add a name property - // fs- and request- streams have path property - filename = path.basename(options.filename || value.name || value.path); - } else if (value.readable && value.hasOwnProperty('httpVersion')) { - // or try http response - filename = path.basename(value.client._httpMessage.path || ''); + // windows support: need to use /, not \ + if (!options.allowWindowsEscape && path.sep !== '/') { + pattern = pattern.split(path.sep).join('/') } - if (filename) { - contentDisposition = 'filename="' + filename + '"'; - } + this.options = options + this.maxGlobstarRecursion = options.maxGlobstarRecursion !== undefined + ? options.maxGlobstarRecursion : 200 + this.set = [] + this.pattern = pattern + this.regexp = null + this.negate = false + this.comment = false + this.empty = false + this.partial = !!options.partial - return contentDisposition; -}; + // make the set of regexps etc. + this.make() +} -FormData.prototype._getContentType = function(value, options) { +Minimatch.prototype.debug = function () {} - // use custom content-type above all - var contentType = options.contentType; +Minimatch.prototype.make = make +function make () { + var pattern = this.pattern + var options = this.options - // or try `name` from formidable, browser - if (!contentType && value.name) { - contentType = mime.lookup(value.name); + // empty patterns and comments match nothing. + if (!options.nocomment && pattern.charAt(0) === '#') { + this.comment = true + return } - - // or try `path` from fs-, request- streams - if (!contentType && value.path) { - contentType = mime.lookup(value.path); + if (!pattern) { + this.empty = true + return } - // or if it's http-reponse - if (!contentType && value.readable && value.hasOwnProperty('httpVersion')) { - contentType = value.headers['content-type']; - } + // step 1: figure out negation, etc. + this.parseNegate() - // or guess it from the filepath or filename - if (!contentType && (options.filepath || options.filename)) { - contentType = mime.lookup(options.filepath || options.filename); - } + // step 2: expand braces + var set = this.globSet = this.braceExpand() - // fallback to the default content type if `value` is not simple value - if (!contentType && typeof value == 'object') { - contentType = FormData.DEFAULT_CONTENT_TYPE; - } + if (options.debug) this.debug = function debug() { console.error.apply(console, arguments) } - return contentType; -}; + this.debug(this.pattern, set) -FormData.prototype._multiPartFooter = function() { - return function(next) { - var footer = FormData.LINE_BREAK; + // step 3: now we have a set, so turn each one into a series of path-portion + // matching patterns. + // These will be regexps, except in the case of "**", which is + // set to the GLOBSTAR object for globstar behavior, + // and will not contain any / characters + set = this.globParts = set.map(function (s) { + return s.split(slashSplit) + }) - var lastPart = (this._streams.length === 0); - if (lastPart) { - footer += this._lastBoundary(); - } + this.debug(this.pattern, set) - next(footer); - }.bind(this); -}; + // glob --> regexps + set = set.map(function (s, si, set) { + return s.map(this.parse, this) + }, this) -FormData.prototype._lastBoundary = function() { - return '--' + this.getBoundary() + '--' + FormData.LINE_BREAK; -}; + this.debug(this.pattern, set) -FormData.prototype.getHeaders = function(userHeaders) { - var header; - var formHeaders = { - 'content-type': 'multipart/form-data; boundary=' + this.getBoundary() - }; + // filter out everything that didn't compile properly. + set = set.filter(function (s) { + return s.indexOf(false) === -1 + }) - for (header in userHeaders) { - if (userHeaders.hasOwnProperty(header)) { - formHeaders[header.toLowerCase()] = userHeaders[header]; - } - } + this.debug(this.pattern, set) - return formHeaders; -}; + this.set = set +} -FormData.prototype.setBoundary = function(boundary) { - this._boundary = boundary; -}; +Minimatch.prototype.parseNegate = parseNegate +function parseNegate () { + var pattern = this.pattern + var negate = false + var options = this.options + var negateOffset = 0 -FormData.prototype.getBoundary = function() { - if (!this._boundary) { - this._generateBoundary(); - } + if (options.nonegate) return - return this._boundary; -}; + for (var i = 0, l = pattern.length + ; i < l && pattern.charAt(i) === '!' + ; i++) { + negate = !negate + negateOffset++ + } -FormData.prototype.getBuffer = function() { - var dataBuffer = new Buffer.alloc( 0 ); - var boundary = this.getBoundary(); + if (negateOffset) this.pattern = pattern.substr(negateOffset) + this.negate = negate +} - // Create the form content. Add Line breaks to the end of data. - for (var i = 0, len = this._streams.length; i < len; i++) { - if (typeof this._streams[i] !== 'function') { +// Brace expansion: +// a{b,c}d -> abd acd +// a{b,}c -> abc ac +// a{0..3}d -> a0d a1d a2d a3d +// a{b,c{d,e}f}g -> abg acdfg acefg +// a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg +// +// Invalid sets are not expanded. +// a{2..}b -> a{2..}b +// a{b}c -> a{b}c +minimatch.braceExpand = function (pattern, options) { + return braceExpand(pattern, options) +} - // Add content to the buffer. - if(Buffer.isBuffer(this._streams[i])) { - dataBuffer = Buffer.concat( [dataBuffer, this._streams[i]]); - }else { - dataBuffer = Buffer.concat( [dataBuffer, Buffer.from(this._streams[i])]); - } +Minimatch.prototype.braceExpand = braceExpand - // Add break after content. - if (typeof this._streams[i] !== 'string' || this._streams[i].substring( 2, boundary.length + 2 ) !== boundary) { - dataBuffer = Buffer.concat( [dataBuffer, Buffer.from(FormData.LINE_BREAK)] ); - } +function braceExpand (pattern, options) { + if (!options) { + if (this instanceof Minimatch) { + options = this.options + } else { + options = {} } } - // Add the footer and return the Buffer object. - return Buffer.concat( [dataBuffer, Buffer.from(this._lastBoundary())] ); -}; + pattern = typeof pattern === 'undefined' + ? this.pattern : pattern -FormData.prototype._generateBoundary = function() { - // This generates a 50 character boundary similar to those used by Firefox. - // They are optimized for boyer-moore parsing. - var boundary = '--------------------------'; - for (var i = 0; i < 24; i++) { - boundary += Math.floor(Math.random() * 10).toString(16); - } + assertValidPattern(pattern) - this._boundary = boundary; -}; + // Thanks to Yeting Li for + // improving this regexp to avoid a ReDOS vulnerability. + if (options.nobrace || !/\{(?:(?!\{).)*\}/.test(pattern)) { + // shortcut. no need to expand. + return [pattern] + } -// Note: getLengthSync DOESN'T calculate streams length -// As workaround one can calculate file size manually -// and add it as knownLength option -FormData.prototype.getLengthSync = function() { - var knownLength = this._overheadLength + this._valueLength; + return expand(pattern) +} - // Don't get confused, there are 3 "internal" streams for each keyval pair - // so it basically checks if there is any value added to the form - if (this._streams.length) { - knownLength += this._lastBoundary().length; +var MAX_PATTERN_LENGTH = 1024 * 64 +var assertValidPattern = function (pattern) { + if (typeof pattern !== 'string') { + throw new TypeError('invalid pattern') } - // https://github.com/form-data/form-data/issues/40 - if (!this.hasKnownLength()) { - // Some async length retrievers are present - // therefore synchronous length calculation is false. - // Please use getLength(callback) to get proper length - this._error(new Error('Cannot calculate proper length in synchronous way.')); + if (pattern.length > MAX_PATTERN_LENGTH) { + throw new TypeError('pattern is too long') } +} - return knownLength; -}; +// parse a component of the expanded set. +// At this point, no pattern may contain "/" in it +// so we're going to return a 2d array, where each entry is the full +// pattern, split on '/', and then turned into a regular expression. +// A regexp is made at the end which joins each array with an +// escaped /, and another full one which joins each regexp with |. +// +// Following the lead of Bash 4.1, note that "**" only has special meaning +// when it is the *only* thing in a path portion. Otherwise, any series +// of * is equivalent to a single *. Globstar behavior is enabled by +// default, and can be disabled by setting options.noglobstar. +Minimatch.prototype.parse = parse +var SUBPARSE = {} +function parse (pattern, isSub) { + assertValidPattern(pattern) -// Public API to check if length of added values is known -// https://github.com/form-data/form-data/issues/196 -// https://github.com/form-data/form-data/issues/262 -FormData.prototype.hasKnownLength = function() { - var hasKnownLength = true; + var options = this.options - if (this._valuesToMeasure.length) { - hasKnownLength = false; + // shortcuts + if (pattern === '**') { + if (!options.noglobstar) + return GLOBSTAR + else + pattern = '*' } + if (pattern === '') return '' - return hasKnownLength; -}; - -FormData.prototype.getLength = function(cb) { - var knownLength = this._overheadLength + this._valueLength; + var re = '' + var hasMagic = !!options.nocase + var escaping = false + // ? => one single character + var patternListStack = [] + var negativeLists = [] + var stateChar + var inClass = false + var reClassStart = -1 + var classStart = -1 + // . and .. never match anything that doesn't start with ., + // even when options.dot is set. + var patternStart = pattern.charAt(0) === '.' ? '' // anything + // not (start or / followed by . or .. followed by / or end) + : options.dot ? '(?!(?:^|\\\/)\\.{1,2}(?:$|\\\/))' + : '(?!\\.)' + var self = this - if (this._streams.length) { - knownLength += this._lastBoundary().length; + function clearStateChar () { + if (stateChar) { + // we had some state-tracking character + // that wasn't consumed by this pass. + switch (stateChar) { + case '*': + re += star + hasMagic = true + break + case '?': + re += qmark + hasMagic = true + break + default: + re += '\\' + stateChar + break + } + self.debug('clearStateChar %j %j', stateChar, re) + stateChar = false + } } - if (!this._valuesToMeasure.length) { - process.nextTick(cb.bind(this, null, knownLength)); - return; - } + for (var i = 0, len = pattern.length, c + ; (i < len) && (c = pattern.charAt(i)) + ; i++) { + this.debug('%s\t%s %s %j', pattern, i, re, c) - asynckit.parallel(this._valuesToMeasure, this._lengthRetriever, function(err, values) { - if (err) { - cb(err); - return; + // skip over any that are escaped. + if (escaping && reSpecials[c]) { + re += '\\' + c + escaping = false + continue } - values.forEach(function(length) { - knownLength += length; - }); - - cb(null, knownLength); - }); -}; - -FormData.prototype.submit = function(params, cb) { - var request - , options - , defaults = {method: 'post'} - ; - - // parse provided url if it's string - // or treat it as options object - if (typeof params == 'string') { - - params = parseUrl(params); - options = populate({ - port: params.port, - path: params.pathname, - host: params.hostname, - protocol: params.protocol - }, defaults); - - // use custom params - } else { + switch (c) { + /* istanbul ignore next */ + case '/': { + // completely not allowed, even escaped. + // Should already be path-split by now. + return false + } - options = populate(params, defaults); - // if no port provided use default one - if (!options.port) { - options.port = options.protocol == 'https:' ? 443 : 80; - } - } + case '\\': + clearStateChar() + escaping = true + continue - // put that good code in getHeaders to some use - options.headers = this.getHeaders(params.headers); + // the various stateChar values + // for the "extglob" stuff. + case '?': + case '*': + case '+': + case '@': + case '!': + this.debug('%s\t%s %s %j <-- stateChar', pattern, i, re, c) - // https if specified, fallback to http in any other case - if (options.protocol == 'https:') { - request = https.request(options); - } else { - request = http.request(options); - } + // all of those are literals inside a class, except that + // the glob [!a] means [^a] in regexp + if (inClass) { + this.debug(' in class') + if (c === '!' && i === classStart + 1) c = '^' + re += c + continue + } - // get content length and fire away - this.getLength(function(err, length) { - if (err && err !== 'Unknown stream') { - this._error(err); - return; - } + // coalesce consecutive non-globstar * characters + if (c === '*' && stateChar === '*') continue - // add content length - if (length) { - request.setHeader('Content-Length', length); - } + // if we already have a stateChar, then it means + // that there was something like ** or +? in there. + // Handle the stateChar, then proceed with this one. + self.debug('call clearStateChar %j', stateChar) + clearStateChar() + stateChar = c + // if extglob is disabled, then +(asdf|foo) isn't a thing. + // just clear the statechar *now*, rather than even diving into + // the patternList stuff. + if (options.noext) clearStateChar() + continue - this.pipe(request); - if (cb) { - var onResponse; + case '(': + if (inClass) { + re += '(' + continue + } - var callback = function (error, responce) { - request.removeListener('error', callback); - request.removeListener('response', onResponse); + if (!stateChar) { + re += '\\(' + continue + } - return cb.call(this, error, responce); - }; + patternListStack.push({ + type: stateChar, + start: i - 1, + reStart: re.length, + open: plTypes[stateChar].open, + close: plTypes[stateChar].close + }) + // negation is (?:(?!js)[^/]*) + re += stateChar === '!' ? '(?:(?!(?:' : '(?:' + this.debug('plType %j %j', stateChar, re) + stateChar = false + continue - onResponse = callback.bind(this, null); + case ')': + if (inClass || !patternListStack.length) { + re += '\\)' + continue + } - request.on('error', callback); - request.on('response', onResponse); - } - }.bind(this)); + clearStateChar() + hasMagic = true + var pl = patternListStack.pop() + // negation is (?:(?!js)[^/]*) + // The others are (?:) + re += pl.close + if (pl.type === '!') { + negativeLists.push(pl) + } + pl.reEnd = re.length + continue - return request; -}; + case '|': + if (inClass || !patternListStack.length || escaping) { + re += '\\|' + escaping = false + continue + } -FormData.prototype._error = function(err) { - if (!this.error) { - this.error = err; - this.pause(); - this.emit('error', err); - } -}; + clearStateChar() + re += '|' + continue -FormData.prototype.toString = function () { - return '[object FormData]'; -}; + // these are mostly the same in regexp and glob + case '[': + // swallow any state-tracking char before the [ + clearStateChar() + if (inClass) { + re += '\\' + c + continue + } -/***/ }), + inClass = true + classStart = i + reClassStart = re.length + re += c + continue -/***/ 3971: -/***/ ((module) => { + case ']': + // a right bracket shall lose its special + // meaning and represent itself in + // a bracket expression if it occurs + // first in the list. -- POSIX.2 2.8.3.2 + if (i === classStart + 1 || !inClass) { + re += '\\' + c + escaping = false + continue + } -// populates missing values -module.exports = function(dst, src) { + // handle the case where we left a class open. + // "[z-a]" is valid, equivalent to "\[z-a\]" + // split where the last [ was, make sure we don't have + // an invalid re. if so, re-walk the contents of the + // would-be class to re-translate any characters that + // were passed through as-is + // TODO: It would probably be faster to determine this + // without a try/catch and a new RegExp, but it's tricky + // to do safely. For now, this is safe and works. + var cs = pattern.substring(classStart + 1, i) + try { + RegExp('[' + cs + ']') + } catch (er) { + // not a valid class! + var sp = this.parse(cs, SUBPARSE) + re = re.substr(0, reClassStart) + '\\[' + sp[0] + '\\]' + hasMagic = hasMagic || sp[1] + inClass = false + continue + } - Object.keys(src).forEach(function(prop) - { - dst[prop] = dst[prop] || src[prop]; - }); + // finish up the class. + hasMagic = true + inClass = false + re += c + continue - return dst; -}; + default: + // swallow any state char that wasn't consumed + clearStateChar() + if (escaping) { + // no need + escaping = false + } else if (reSpecials[c] + && !(c === '^' && inClass)) { + re += '\\' + } -/***/ }), + re += c -/***/ 8165: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + } // switch + } // for -"use strict"; -/*! - * Copyright (c) 2015, Salesforce.com, Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * 3. Neither the name of Salesforce.com nor the names of its contributors may - * be used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -const punycode = __nccwpck_require__(5477); -const urlParse = (__nccwpck_require__(7310).parse); -const util = __nccwpck_require__(3837); -const pubsuffix = __nccwpck_require__(8292); -const Store = (__nccwpck_require__(7707)/* .Store */ .y); -const MemoryCookieStore = (__nccwpck_require__(6738)/* .MemoryCookieStore */ .m); -const pathMatch = (__nccwpck_require__(807)/* .pathMatch */ .U); -const VERSION = __nccwpck_require__(8742); -const { fromCallback } = __nccwpck_require__(9046); - -// From RFC6265 S4.1.1 -// note that it excludes \x3B ";" -const COOKIE_OCTETS = /^[\x21\x23-\x2B\x2D-\x3A\x3C-\x5B\x5D-\x7E]+$/; - -const CONTROL_CHARS = /[\x00-\x1F]/; - -// From Chromium // '\r', '\n' and '\0' should be treated as a terminator in -// the "relaxed" mode, see: -// https://github.com/ChromiumWebApps/chromium/blob/b3d3b4da8bb94c1b2e061600df106d590fda3620/net/cookies/parsed_cookie.cc#L60 -const TERMINATORS = ["\n", "\r", "\0"]; - -// RFC6265 S4.1.1 defines path value as 'any CHAR except CTLs or ";"' -// Note ';' is \x3B -const PATH_VALUE = /[\x20-\x3A\x3C-\x7E]+/; - -// date-time parsing constants (RFC6265 S5.1.1) - -const DATE_DELIM = /[\x09\x20-\x2F\x3B-\x40\x5B-\x60\x7B-\x7E]/; - -const MONTH_TO_NUM = { - jan: 0, - feb: 1, - mar: 2, - apr: 3, - may: 4, - jun: 5, - jul: 6, - aug: 7, - sep: 8, - oct: 9, - nov: 10, - dec: 11 -}; - -const MAX_TIME = 2147483647000; // 31-bit max -const MIN_TIME = 0; // 31-bit min -const SAME_SITE_CONTEXT_VAL_ERR = - 'Invalid sameSiteContext option for getCookies(); expected one of "strict", "lax", or "none"'; - -function checkSameSiteContext(value) { - const context = String(value).toLowerCase(); - if (context === "none" || context === "lax" || context === "strict") { - return context; - } else { - return null; + // handle the case where we left a class open. + // "[abc" is valid, equivalent to "\[abc" + if (inClass) { + // split where the last [ was, and escape it + // this is a huge pita. We now have to re-walk + // the contents of the would-be class to re-translate + // any characters that were passed through as-is + cs = pattern.substr(classStart + 1) + sp = this.parse(cs, SUBPARSE) + re = re.substr(0, reClassStart) + '\\[' + sp[0] + hasMagic = hasMagic || sp[1] } -} -const PrefixSecurityEnum = Object.freeze({ - SILENT: "silent", - STRICT: "strict", - DISABLED: "unsafe-disabled" -}); + // handle the case where we had a +( thing at the *end* + // of the pattern. + // each pattern list stack adds 3 chars, and we need to go through + // and escape any | chars that were passed through as-is for the regexp. + // Go through and escape them, taking care not to double-escape any + // | chars that were already escaped. + for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) { + var tail = re.slice(pl.reStart + pl.open.length) + this.debug('setting tail', re, pl) + // maybe some even number of \, then maybe 1 \, followed by a | + tail = tail.replace(/((?:\\{2}){0,64})(\\?)\|/g, function (_, $1, $2) { + if (!$2) { + // the | isn't already escaped, so escape it. + $2 = '\\' + } -// Dumped from ip-regex@4.0.0, with the following changes: -// * all capturing groups converted to non-capturing -- "(?:)" -// * support for IPv6 Scoped Literal ("%eth1") removed -// * lowercase hexadecimal only -var IP_REGEX_LOWERCASE =/(?:^(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}$)|(?:^(?:(?:[a-f\d]{1,4}:){7}(?:[a-f\d]{1,4}|:)|(?:[a-f\d]{1,4}:){6}(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}|:[a-f\d]{1,4}|:)|(?:[a-f\d]{1,4}:){5}(?::(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}|(?::[a-f\d]{1,4}){1,2}|:)|(?:[a-f\d]{1,4}:){4}(?:(?::[a-f\d]{1,4}){0,1}:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}|(?::[a-f\d]{1,4}){1,3}|:)|(?:[a-f\d]{1,4}:){3}(?:(?::[a-f\d]{1,4}){0,2}:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}|(?::[a-f\d]{1,4}){1,4}|:)|(?:[a-f\d]{1,4}:){2}(?:(?::[a-f\d]{1,4}){0,3}:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}|(?::[a-f\d]{1,4}){1,5}|:)|(?:[a-f\d]{1,4}:){1}(?:(?::[a-f\d]{1,4}){0,4}:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}|(?::[a-f\d]{1,4}){1,6}|:)|(?::(?:(?::[a-f\d]{1,4}){0,5}:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]\d|\d)){3}|(?::[a-f\d]{1,4}){1,7}|:)))$)/; + // need to escape all those slashes *again*, without escaping the + // one that we need for escaping the | character. As it works out, + // escaping an even number of slashes can be done by simply repeating + // it exactly after itself. That's why this trick works. + // + // I am sorry that you have to see this. + return $1 + $1 + $2 + '|' + }) -/* - * Parses a Natural number (i.e., non-negative integer) with either the - * *DIGIT ( non-digit *OCTET ) - * or - * *DIGIT - * grammar (RFC6265 S5.1.1). - * - * The "trailingOK" boolean controls if the grammar accepts a - * "( non-digit *OCTET )" trailer. - */ -function parseDigits(token, minDigits, maxDigits, trailingOK) { - let count = 0; - while (count < token.length) { - const c = token.charCodeAt(count); - // "non-digit = %x00-2F / %x3A-FF" - if (c <= 0x2f || c >= 0x3a) { - break; - } - count++; + this.debug('tail=%j\n %s', tail, tail, pl, re) + var t = pl.type === '*' ? star + : pl.type === '?' ? qmark + : '\\' + pl.type + + hasMagic = true + re = re.slice(0, pl.reStart) + t + '\\(' + tail } - // constrain to a minimum and maximum number of digits. - if (count < minDigits || count > maxDigits) { - return null; + // handle trailing things that only matter at the very end. + clearStateChar() + if (escaping) { + // trailing \\ + re += '\\\\' } - if (!trailingOK && count != token.length) { - return null; + // only need to apply the nodot start if the re starts with + // something that could conceivably capture a dot + var addPatternStart = false + switch (re.charAt(0)) { + case '[': case '.': case '(': addPatternStart = true } - return parseInt(token.substr(0, count), 10); -} + // Hack to work around lack of negative lookbehind in JS + // A pattern like: *.!(x).!(y|z) needs to ensure that a name + // like 'a.xyz.yz' doesn't match. So, the first negative + // lookahead, has to look ALL the way ahead, to the end of + // the pattern. + for (var n = negativeLists.length - 1; n > -1; n--) { + var nl = negativeLists[n] -function parseTime(token) { - const parts = token.split(":"); - const result = [0, 0, 0]; + var nlBefore = re.slice(0, nl.reStart) + var nlFirst = re.slice(nl.reStart, nl.reEnd - 8) + var nlLast = re.slice(nl.reEnd - 8, nl.reEnd) + var nlAfter = re.slice(nl.reEnd) - /* RF6256 S5.1.1: - * time = hms-time ( non-digit *OCTET ) - * hms-time = time-field ":" time-field ":" time-field - * time-field = 1*2DIGIT - */ + nlLast += nlAfter - if (parts.length !== 3) { - return null; - } + // Handle nested stuff like *(*.js|!(*.json)), where open parens + // mean that we should *not* include the ) in the bit that is considered + // "after" the negated section. + var openParensBefore = nlBefore.split('(').length - 1 + var cleanAfter = nlAfter + for (i = 0; i < openParensBefore; i++) { + cleanAfter = cleanAfter.replace(/\)[+*?]?/, '') + } + nlAfter = cleanAfter - for (let i = 0; i < 3; i++) { - // "time-field" must be strictly "1*2DIGIT", HOWEVER, "hms-time" can be - // followed by "( non-digit *OCTET )" so therefore the last time-field can - // have a trailer - const trailingOK = i == 2; - const num = parseDigits(parts[i], 1, 2, trailingOK); - if (num === null) { - return null; + var dollar = '' + if (nlAfter === '' && isSub !== SUBPARSE) { + dollar = '$' } - result[i] = num; + var newRe = nlBefore + nlFirst + nlAfter + dollar + nlLast + re = newRe } - return result; -} + // if the re is not "" at this point, then we need to make sure + // it doesn't match against an empty path part. + // Otherwise a/* will match a/, which it should not. + if (re !== '' && hasMagic) { + re = '(?=.)' + re + } -function parseMonth(token) { - token = String(token) - .substr(0, 3) - .toLowerCase(); - const num = MONTH_TO_NUM[token]; - return num >= 0 ? num : null; -} + if (addPatternStart) { + re = patternStart + re + } -/* - * RFC6265 S5.1.1 date parser (see RFC for full grammar) - */ -function parseDate(str) { - if (!str) { - return; + // parsing just a piece of a larger pattern. + if (isSub === SUBPARSE) { + return [re, hasMagic] } - /* RFC6265 S5.1.1: - * 2. Process each date-token sequentially in the order the date-tokens - * appear in the cookie-date - */ - const tokens = str.split(DATE_DELIM); - if (!tokens) { - return; + // skip the regexp for non-magical patterns + // unescape anything in it, though, so that it'll be + // an exact match against a file etc. + if (!hasMagic) { + return globUnescape(pattern) } - let hour = null; - let minute = null; - let second = null; - let dayOfMonth = null; - let month = null; - let year = null; + var flags = options.nocase ? 'i' : '' + try { + var regExp = new RegExp('^' + re + '$', flags) + } catch (er) /* istanbul ignore next - should be impossible */ { + // If it was an invalid regular expression, then it can't match + // anything. This trick looks for a character after the end of + // the string, which is of course impossible, except in multi-line + // mode, but it's not a /m regex. + return new RegExp('$.') + } - for (let i = 0; i < tokens.length; i++) { - const token = tokens[i].trim(); - if (!token.length) { - continue; - } + regExp._glob = pattern + regExp._src = re - let result; + return regExp +} - /* 2.1. If the found-time flag is not set and the token matches the time - * production, set the found-time flag and set the hour- value, - * minute-value, and second-value to the numbers denoted by the digits in - * the date-token, respectively. Skip the remaining sub-steps and continue - * to the next date-token. - */ - if (second === null) { - result = parseTime(token); - if (result) { - hour = result[0]; - minute = result[1]; - second = result[2]; - continue; - } - } +minimatch.makeRe = function (pattern, options) { + return new Minimatch(pattern, options || {}).makeRe() +} - /* 2.2. If the found-day-of-month flag is not set and the date-token matches - * the day-of-month production, set the found-day-of- month flag and set - * the day-of-month-value to the number denoted by the date-token. Skip - * the remaining sub-steps and continue to the next date-token. - */ - if (dayOfMonth === null) { - // "day-of-month = 1*2DIGIT ( non-digit *OCTET )" - result = parseDigits(token, 1, 2, true); - if (result !== null) { - dayOfMonth = result; - continue; - } - } +Minimatch.prototype.makeRe = makeRe +function makeRe () { + if (this.regexp || this.regexp === false) return this.regexp - /* 2.3. If the found-month flag is not set and the date-token matches the - * month production, set the found-month flag and set the month-value to - * the month denoted by the date-token. Skip the remaining sub-steps and - * continue to the next date-token. - */ - if (month === null) { - result = parseMonth(token); - if (result !== null) { - month = result; - continue; - } - } + // at this point, this.set is a 2d array of partial + // pattern strings, or "**". + // + // It's better to use .match(). This function shouldn't + // be used, really, but it's pretty convenient sometimes, + // when you just want to work with a regex. + var set = this.set - /* 2.4. If the found-year flag is not set and the date-token matches the - * year production, set the found-year flag and set the year-value to the - * number denoted by the date-token. Skip the remaining sub-steps and - * continue to the next date-token. - */ - if (year === null) { - // "year = 2*4DIGIT ( non-digit *OCTET )" - result = parseDigits(token, 2, 4, true); - if (result !== null) { - year = result; - /* From S5.1.1: - * 3. If the year-value is greater than or equal to 70 and less - * than or equal to 99, increment the year-value by 1900. - * 4. If the year-value is greater than or equal to 0 and less - * than or equal to 69, increment the year-value by 2000. - */ - if (year >= 70 && year <= 99) { - year += 1900; - } else if (year >= 0 && year <= 69) { - year += 2000; - } - } - } + if (!set.length) { + this.regexp = false + return this.regexp } + var options = this.options - /* RFC 6265 S5.1.1 - * "5. Abort these steps and fail to parse the cookie-date if: - * * at least one of the found-day-of-month, found-month, found- - * year, or found-time flags is not set, - * * the day-of-month-value is less than 1 or greater than 31, - * * the year-value is less than 1601, - * * the hour-value is greater than 23, - * * the minute-value is greater than 59, or - * * the second-value is greater than 59. - * (Note that leap seconds cannot be represented in this syntax.)" - * - * So, in order as above: - */ - if ( - dayOfMonth === null || - month === null || - year === null || - second === null || - dayOfMonth < 1 || - dayOfMonth > 31 || - year < 1601 || - hour > 23 || - minute > 59 || - second > 59 - ) { - return; - } + var twoStar = options.noglobstar ? star + : options.dot ? twoStarDot + : twoStarNoDot + var flags = options.nocase ? 'i' : '' - return new Date(Date.UTC(year, month, dayOfMonth, hour, minute, second)); -} + var re = set.map(function (pattern) { + return pattern.map(function (p) { + return (p === GLOBSTAR) ? twoStar + : (typeof p === 'string') ? regExpEscape(p) + : p._src + }).join('\\\/') + }).join('|') -function formatDate(date) { - return date.toUTCString(); -} + // must match entire pattern + // ending in a * or ** will make it less strict. + re = '^(?:' + re + ')$' -// S5.1.2 Canonicalized Host Names -function canonicalDomain(str) { - if (str == null) { - return null; - } - str = str.trim().replace(/^\./, ""); // S4.1.2.3 & S5.2.3: ignore leading . + // can match anything, as long as it's not this. + if (this.negate) re = '^(?!' + re + ').*$' - // convert to IDN if any non-ASCII characters - if (punycode && /[^\u0001-\u007f]/.test(str)) { - str = punycode.toASCII(str); + try { + this.regexp = new RegExp(re, flags) + } catch (ex) /* istanbul ignore next - should be impossible */ { + this.regexp = false } - - return str.toLowerCase(); + return this.regexp } -// S5.1.3 Domain Matching -function domainMatch(str, domStr, canonicalize) { - if (str == null || domStr == null) { - return null; - } - if (canonicalize !== false) { - str = canonicalDomain(str); - domStr = canonicalDomain(domStr); +minimatch.match = function (list, pattern, options) { + options = options || {} + var mm = new Minimatch(pattern, options) + list = list.filter(function (f) { + return mm.match(f) + }) + if (mm.options.nonull && !list.length) { + list.push(pattern) } + return list +} - /* - * S5.1.3: - * "A string domain-matches a given domain string if at least one of the - * following conditions hold:" - * - * " o The domain string and the string are identical. (Note that both the - * domain string and the string will have been canonicalized to lower case at - * this point)" - */ - if (str == domStr) { - return true; - } +Minimatch.prototype.match = function match (f, partial) { + if (typeof partial === 'undefined') partial = this.partial + this.debug('match', f, this.pattern) + // short-circuit in the case of busted things. + // comments, etc. + if (this.comment) return false + if (this.empty) return f === '' - /* " o All of the following [three] conditions hold:" */ + if (f === '/' && partial) return true - /* "* The domain string is a suffix of the string" */ - const idx = str.indexOf(domStr); - if (idx <= 0) { - return false; // it's a non-match (-1) or prefix (0) - } + var options = this.options - // next, check it's a proper suffix - // e.g., "a.b.c".indexOf("b.c") === 2 - // 5 === 3+2 - if (str.length !== domStr.length + idx) { - return false; // it's not a suffix + // windows: need to use /, not \ + if (path.sep !== '/') { + f = f.split(path.sep).join('/') } - /* " * The last character of the string that is not included in the - * domain string is a %x2E (".") character." */ - if (str.substr(idx-1,1) !== '.') { - return false; // doesn't align on "." + // treat the test path as a set of pathparts. + f = f.split(slashSplit) + this.debug(this.pattern, 'split', f) + + // just ONE of the pattern sets in this.set needs to match + // in order for it to be valid. If negating, then just one + // match means that we have failed. + // Either way, return on the first hit. + + var set = this.set + this.debug(this.pattern, 'set', set) + + // Find the basename of the path by looking for the last non-empty segment + var filename + var i + for (i = f.length - 1; i >= 0; i--) { + filename = f[i] + if (filename) break } - /* " * The string is a host name (i.e., not an IP address)." */ - if (IP_REGEX_LOWERCASE.test(str)) { - return false; // it's an IP address + for (i = 0; i < set.length; i++) { + var pattern = set[i] + var file = f + if (options.matchBase && pattern.length === 1) { + file = [filename] + } + var hit = this.matchOne(file, pattern, partial) + if (hit) { + if (options.flipNegate) return true + return !this.negate + } } - return true; + // didn't get any hits. this is success if it's a negative + // pattern, failure otherwise. + if (options.flipNegate) return false + return this.negate } -// RFC6265 S5.1.4 Paths and Path-Match - -/* - * "The user agent MUST use an algorithm equivalent to the following algorithm - * to compute the default-path of a cookie:" - * - * Assumption: the path (and not query part or absolute uri) is passed in. - */ -function defaultPath(path) { - // "2. If the uri-path is empty or if the first character of the uri-path is not - // a %x2F ("/") character, output %x2F ("/") and skip the remaining steps. - if (!path || path.substr(0, 1) !== "/") { - return "/"; +// set partial to true to test if, for example, +// "/a/b" matches the start of "/*/b/*/d" +// Partial means, if you run out of file before you run +// out of pattern, then that's fine, as long as all +// the parts match. +Minimatch.prototype.matchOne = function (file, pattern, partial) { + if (pattern.indexOf(GLOBSTAR) !== -1) { + return this._matchGlobstar(file, pattern, partial, 0, 0) } + return this._matchOne(file, pattern, partial, 0, 0) +} + +Minimatch.prototype._matchGlobstar = function (file, pattern, partial, fileIndex, patternIndex) { + var i - // "3. If the uri-path contains no more than one %x2F ("/") character, output - // %x2F ("/") and skip the remaining step." - if (path === "/") { - return path; + // find first globstar from patternIndex + var firstgs = -1 + for (i = patternIndex; i < pattern.length; i++) { + if (pattern[i] === GLOBSTAR) { firstgs = i; break } } - const rightSlash = path.lastIndexOf("/"); - if (rightSlash === 0) { - return "/"; + // find last globstar + var lastgs = -1 + for (i = pattern.length - 1; i >= 0; i--) { + if (pattern[i] === GLOBSTAR) { lastgs = i; break } } - // "4. Output the characters of the uri-path from the first character up to, - // but not including, the right-most %x2F ("/")." - return path.slice(0, rightSlash); -} + var head = pattern.slice(patternIndex, firstgs) + var body = partial ? pattern.slice(firstgs + 1) : pattern.slice(firstgs + 1, lastgs) + var tail = partial ? [] : pattern.slice(lastgs + 1) -function trimTerminator(str) { - for (let t = 0; t < TERMINATORS.length; t++) { - const terminatorIdx = str.indexOf(TERMINATORS[t]); - if (terminatorIdx !== -1) { - str = str.substr(0, terminatorIdx); + // check the head + if (head.length) { + var fileHead = file.slice(fileIndex, fileIndex + head.length) + if (!this._matchOne(fileHead, head, partial, 0, 0)) { + return false } + fileIndex += head.length } - return str; -} - -function parseCookiePair(cookiePair, looseMode) { - cookiePair = trimTerminator(cookiePair); + // check the tail + var fileTailMatch = 0 + if (tail.length) { + if (tail.length + fileIndex > file.length) return false - let firstEq = cookiePair.indexOf("="); - if (looseMode) { - if (firstEq === 0) { - // '=' is immediately at start - cookiePair = cookiePair.substr(1); - firstEq = cookiePair.indexOf("="); // might still need to split on '=' + var tailStart = file.length - tail.length + if (this._matchOne(file, tail, partial, tailStart, 0)) { + fileTailMatch = tail.length + } else { + // affordance for stuff like a/**/* matching a/b/ + if (file[file.length - 1] !== '' || + fileIndex + tail.length === file.length) { + return false + } + tailStart-- + if (!this._matchOne(file, tail, partial, tailStart, 0)) { + return false + } + fileTailMatch = tail.length + 1 } - } else { - // non-loose mode - if (firstEq <= 0) { - // no '=' or is at start - return; // needs to have non-empty "cookie-name" + } + + // if body is empty (single ** between head and tail) + if (!body.length) { + var sawSome = !!fileTailMatch + for (i = fileIndex; i < file.length - fileTailMatch; i++) { + var f = String(file[i]) + sawSome = true + if (f === '.' || f === '..' || + (!this.options.dot && f.charAt(0) === '.')) { + return false + } } + return partial || sawSome } - let cookieName, cookieValue; - if (firstEq <= 0) { - cookieName = ""; - cookieValue = cookiePair.trim(); - } else { - cookieName = cookiePair.substr(0, firstEq).trim(); - cookieValue = cookiePair.substr(firstEq + 1).trim(); + // split body into segments at each GLOBSTAR + var bodySegments = [[[], 0]] + var currentBody = bodySegments[0] + var nonGsParts = 0 + var nonGsPartsSums = [0] + for (var bi = 0; bi < body.length; bi++) { + var b = body[bi] + if (b === GLOBSTAR) { + nonGsPartsSums.push(nonGsParts) + currentBody = [[], 0] + bodySegments.push(currentBody) + } else { + currentBody[0].push(b) + nonGsParts++ + } } - if (CONTROL_CHARS.test(cookieName) || CONTROL_CHARS.test(cookieValue)) { - return; + var idx = bodySegments.length - 1 + var fileLength = file.length - fileTailMatch + for (var si = 0; si < bodySegments.length; si++) { + bodySegments[si][1] = fileLength - + (nonGsPartsSums[idx--] + bodySegments[si][0].length) } - const c = new Cookie(); - c.key = cookieName; - c.value = cookieValue; - return c; + return !!this._matchGlobStarBodySections( + file, bodySegments, fileIndex, 0, partial, 0, !!fileTailMatch + ) } -function parse(str, options) { - if (!options || typeof options !== "object") { - options = {}; +// return false for "nope, not matching" +// return null for "not matching, cannot keep trying" +Minimatch.prototype._matchGlobStarBodySections = function ( + file, bodySegments, fileIndex, bodyIndex, partial, globStarDepth, sawTail +) { + var bs = bodySegments[bodyIndex] + if (!bs) { + // just make sure there are no bad dots + for (var i = fileIndex; i < file.length; i++) { + sawTail = true + var f = file[i] + if (f === '.' || f === '..' || + (!this.options.dot && f.charAt(0) === '.')) { + return false + } + } + return sawTail } - str = str.trim(); - // We use a regex to parse the "name-value-pair" part of S5.2 - const firstSemi = str.indexOf(";"); // S5.2 step 1 - const cookiePair = firstSemi === -1 ? str : str.substr(0, firstSemi); - const c = parseCookiePair(cookiePair, !!options.loose); - if (!c) { - return; + var body = bs[0] + var after = bs[1] + while (fileIndex <= after) { + var m = this._matchOne( + file.slice(0, fileIndex + body.length), + body, + partial, + fileIndex, + 0 + ) + // if limit exceeded, no match. intentional false negative, + // acceptable break in correctness for security. + if (m && globStarDepth < this.maxGlobstarRecursion) { + var sub = this._matchGlobStarBodySections( + file, bodySegments, + fileIndex + body.length, bodyIndex + 1, + partial, globStarDepth + 1, sawTail + ) + if (sub !== false) { + return sub + } + } + var f = file[fileIndex] + if (f === '.' || f === '..' || + (!this.options.dot && f.charAt(0) === '.')) { + return false + } + fileIndex++ } + return partial || null +} - if (firstSemi === -1) { - return c; - } +Minimatch.prototype._matchOne = function (file, pattern, partial, fileIndex, patternIndex) { + var fi, pi, fl, pl + for ( + fi = fileIndex, pi = patternIndex, fl = file.length, pl = pattern.length + ; (fi < fl) && (pi < pl) + ; fi++, pi++ + ) { + this.debug('matchOne loop') + var p = pattern[pi] + var f = file[fi] - // S5.2.3 "unparsed-attributes consist of the remainder of the set-cookie-string - // (including the %x3B (";") in question)." plus later on in the same section - // "discard the first ";" and trim". - const unparsed = str.slice(firstSemi + 1).trim(); + this.debug(pattern, p, f) - // "If the unparsed-attributes string is empty, skip the rest of these - // steps." - if (unparsed.length === 0) { - return c; - } + // should be impossible. + // some invalid regexp stuff in the set. + /* istanbul ignore if */ + if (p === false || p === GLOBSTAR) return false - /* - * S5.2 says that when looping over the items "[p]rocess the attribute-name - * and attribute-value according to the requirements in the following - * subsections" for every item. Plus, for many of the individual attributes - * in S5.3 it says to use the "attribute-value of the last attribute in the - * cookie-attribute-list". Therefore, in this implementation, we overwrite - * the previous value. - */ - const cookie_avs = unparsed.split(";"); - while (cookie_avs.length) { - const av = cookie_avs.shift().trim(); - if (av.length === 0) { - // happens if ";;" appears - continue; - } - const av_sep = av.indexOf("="); - let av_key, av_value; - - if (av_sep === -1) { - av_key = av; - av_value = null; + // something other than ** + // non-magic patterns just have to match exactly + // patterns with magic have been turned into regexps. + var hit + if (typeof p === 'string') { + hit = f === p + this.debug('string match', p, f, hit) } else { - av_key = av.substr(0, av_sep); - av_value = av.substr(av_sep + 1); + hit = f.match(p) + this.debug('pattern match', p, f, hit) } - av_key = av_key.trim().toLowerCase(); - - if (av_value) { - av_value = av_value.trim(); - } + if (!hit) return false + } - switch (av_key) { - case "expires": // S5.2.1 - if (av_value) { - const exp = parseDate(av_value); - // "If the attribute-value failed to parse as a cookie date, ignore the - // cookie-av." - if (exp) { - // over and underflow not realistically a concern: V8's getTime() seems to - // store something larger than a 32-bit time_t (even with 32-bit node) - c.expires = exp; - } - } - break; - - case "max-age": // S5.2.2 - if (av_value) { - // "If the first character of the attribute-value is not a DIGIT or a "-" - // character ...[or]... If the remainder of attribute-value contains a - // non-DIGIT character, ignore the cookie-av." - if (/^-?[0-9]+$/.test(av_value)) { - const delta = parseInt(av_value, 10); - // "If delta-seconds is less than or equal to zero (0), let expiry-time - // be the earliest representable date and time." - c.setMaxAge(delta); - } - } - break; - - case "domain": // S5.2.3 - // "If the attribute-value is empty, the behavior is undefined. However, - // the user agent SHOULD ignore the cookie-av entirely." - if (av_value) { - // S5.2.3 "Let cookie-domain be the attribute-value without the leading %x2E - // (".") character." - const domain = av_value.trim().replace(/^\./, ""); - if (domain) { - // "Convert the cookie-domain to lower case." - c.domain = domain.toLowerCase(); - } - } - break; + // now either we fell off the end of the pattern, or we're done. + if (fi === fl && pi === pl) { + // ran out of pattern and filename at the same time. + // an exact hit! + return true + } else if (fi === fl) { + // ran out of file, but still had pattern left. + // this is ok if we're doing the match as part of + // a glob fs traversal. + return partial + } else /* istanbul ignore else */ if (pi === pl) { + // ran out of pattern, still have file left. + // this is only acceptable if we're on the very last + // empty segment of a file with a trailing slash. + // a/* should match a/b/ + return (fi === fl - 1) && (file[fi] === '') + } - case "path": // S5.2.4 - /* - * "If the attribute-value is empty or if the first character of the - * attribute-value is not %x2F ("/"): - * Let cookie-path be the default-path. - * Otherwise: - * Let cookie-path be the attribute-value." - * - * We'll represent the default-path as null since it depends on the - * context of the parsing. - */ - c.path = av_value && av_value[0] === "/" ? av_value : null; - break; - - case "secure": // S5.2.5 - /* - * "If the attribute-name case-insensitively matches the string "Secure", - * the user agent MUST append an attribute to the cookie-attribute-list - * with an attribute-name of Secure and an empty attribute-value." - */ - c.secure = true; - break; - - case "httponly": // S5.2.6 -- effectively the same as 'secure' - c.httpOnly = true; - break; - - case "samesite": // RFC6265bis-02 S5.3.7 - const enforcement = av_value ? av_value.toLowerCase() : ""; - switch (enforcement) { - case "strict": - c.sameSite = "strict"; - break; - case "lax": - c.sameSite = "lax"; - break; - default: - // RFC6265bis-02 S5.3.7 step 1: - // "If cookie-av's attribute-value is not a case-insensitive match - // for "Strict" or "Lax", ignore the "cookie-av"." - // This effectively sets it to 'none' from the prototype. - break; - } - break; + // should be unreachable. + /* istanbul ignore next */ + throw new Error('wtf?') +} - default: - c.extensions = c.extensions || []; - c.extensions.push(av); - break; - } - } +// replace stuff like \* with * +function globUnescape (s) { + return s.replace(/\\(.)/g, '$1') +} - return c; +function regExpEscape (s) { + return s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&') } + +/***/ }), + +/***/ 80900: +/***/ ((module) => { + /** - * If the cookie-name begins with a case-sensitive match for the - * string "__Secure-", abort these steps and ignore the cookie - * entirely unless the cookie's secure-only-flag is true. - * @param cookie - * @returns boolean + * Helpers. */ -function isSecurePrefixConditionMet(cookie) { - return !cookie.key.startsWith("__Secure-") || cookie.secure; -} + +var s = 1000; +var m = s * 60; +var h = m * 60; +var d = h * 24; +var w = d * 7; +var y = d * 365.25; /** - * If the cookie-name begins with a case-sensitive match for the - * string "__Host-", abort these steps and ignore the cookie - * entirely unless the cookie meets all the following criteria: - * 1. The cookie's secure-only-flag is true. - * 2. The cookie's host-only-flag is true. - * 3. The cookie-attribute-list contains an attribute with an - * attribute-name of "Path", and the cookie's path is "/". - * @param cookie - * @returns boolean + * Parse or format the given `val`. + * + * Options: + * + * - `long` verbose formatting [false] + * + * @param {String|Number} val + * @param {Object} [options] + * @throws {Error} throw an error if val is not a non-empty string or a number + * @return {String|Number} + * @api public */ -function isHostPrefixConditionMet(cookie) { - return ( - !cookie.key.startsWith("__Host-") || - (cookie.secure && - cookie.hostOnly && - cookie.path != null && - cookie.path === "/") + +module.exports = function(val, options) { + options = options || {}; + var type = typeof val; + if (type === 'string' && val.length > 0) { + return parse(val); + } else if (type === 'number' && isFinite(val)) { + return options.long ? fmtLong(val) : fmtShort(val); + } + throw new Error( + 'val is not a non-empty string or a valid number. val=' + + JSON.stringify(val) ); -} +}; -// avoid the V8 deoptimization monster! -function jsonParse(str) { - let obj; - try { - obj = JSON.parse(str); - } catch (e) { - return e; - } - return obj; -} +/** + * Parse the given `str` and return milliseconds. + * + * @param {String} str + * @return {Number} + * @api private + */ -function fromJSON(str) { - if (!str) { - return null; +function parse(str) { + str = String(str); + if (str.length > 100) { + return; } - - let obj; - if (typeof str === "string") { - obj = jsonParse(str); - if (obj instanceof Error) { - return null; - } - } else { - // assume it's an Object - obj = str; + var match = /^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec( + str + ); + if (!match) { + return; } - - const c = new Cookie(); - for (let i = 0; i < Cookie.serializableProperties.length; i++) { - const prop = Cookie.serializableProperties[i]; - if (obj[prop] === undefined || obj[prop] === cookieDefaults[prop]) { - continue; // leave as prototype default - } - - if (prop === "expires" || prop === "creation" || prop === "lastAccessed") { - if (obj[prop] === null) { - c[prop] = null; - } else { - c[prop] = obj[prop] == "Infinity" ? "Infinity" : new Date(obj[prop]); - } - } else { - c[prop] = obj[prop]; - } + var n = parseFloat(match[1]); + var type = (match[2] || 'ms').toLowerCase(); + switch (type) { + case 'years': + case 'year': + case 'yrs': + case 'yr': + case 'y': + return n * y; + case 'weeks': + case 'week': + case 'w': + return n * w; + case 'days': + case 'day': + case 'd': + return n * d; + case 'hours': + case 'hour': + case 'hrs': + case 'hr': + case 'h': + return n * h; + case 'minutes': + case 'minute': + case 'mins': + case 'min': + case 'm': + return n * m; + case 'seconds': + case 'second': + case 'secs': + case 'sec': + case 's': + return n * s; + case 'milliseconds': + case 'millisecond': + case 'msecs': + case 'msec': + case 'ms': + return n; + default: + return undefined; } - - return c; } -/* Section 5.4 part 2: - * "* Cookies with longer paths are listed before cookies with - * shorter paths. +/** + * Short format for `ms`. * - * * Among cookies that have equal-length path fields, cookies with - * earlier creation-times are listed before cookies with later - * creation-times." + * @param {Number} ms + * @return {String} + * @api private */ -function cookieCompare(a, b) { - let cmp = 0; - - // descending for length: b CMP a - const aPathLen = a.path ? a.path.length : 0; - const bPathLen = b.path ? b.path.length : 0; - cmp = bPathLen - aPathLen; - if (cmp !== 0) { - return cmp; +function fmtShort(ms) { + var msAbs = Math.abs(ms); + if (msAbs >= d) { + return Math.round(ms / d) + 'd'; } - - // ascending for time: a CMP b - const aTime = a.creation ? a.creation.getTime() : MAX_TIME; - const bTime = b.creation ? b.creation.getTime() : MAX_TIME; - cmp = aTime - bTime; - if (cmp !== 0) { - return cmp; + if (msAbs >= h) { + return Math.round(ms / h) + 'h'; } - - // break ties for the same millisecond (precision of JavaScript's clock) - cmp = a.creationIndex - b.creationIndex; - - return cmp; + if (msAbs >= m) { + return Math.round(ms / m) + 'm'; + } + if (msAbs >= s) { + return Math.round(ms / s) + 's'; + } + return ms + 'ms'; } -// Gives the permutation of all possible pathMatch()es of a given path. The -// array is in longest-to-shortest order. Handy for indexing. -function permutePath(path) { - if (path === "/") { - return ["/"]; +/** + * Long format for `ms`. + * + * @param {Number} ms + * @return {String} + * @api private + */ + +function fmtLong(ms) { + var msAbs = Math.abs(ms); + if (msAbs >= d) { + return plural(ms, msAbs, d, 'day'); } - const permutations = [path]; - while (path.length > 1) { - const lindex = path.lastIndexOf("/"); - if (lindex === 0) { - break; - } - path = path.substr(0, lindex); - permutations.push(path); + if (msAbs >= h) { + return plural(ms, msAbs, h, 'hour'); } - permutations.push("/"); - return permutations; + if (msAbs >= m) { + return plural(ms, msAbs, m, 'minute'); + } + if (msAbs >= s) { + return plural(ms, msAbs, s, 'second'); + } + return ms + ' ms'; } -function getCookieContext(url) { - if (url instanceof Object) { - return url; - } - // NOTE: decodeURI will throw on malformed URIs (see GH-32). - // Therefore, we will just skip decoding for such URIs. - try { - url = decodeURI(url); - } catch (err) { - // Silently swallow error - } - - return urlParse(url); -} - -const cookieDefaults = { - // the order in which the RFC has them: - key: "", - value: "", - expires: "Infinity", - maxAge: null, - domain: null, - path: null, - secure: false, - httpOnly: false, - extensions: null, - // set by the CookieJar: - hostOnly: null, - pathIsDefault: null, - creation: null, - lastAccessed: null, - sameSite: "none" -}; +/** + * Pluralization helper. + */ -class Cookie { - constructor(options = {}) { - if (util.inspect.custom) { - this[util.inspect.custom] = this.inspect; - } +function plural(ms, msAbs, n, name) { + var isPlural = msAbs >= n * 1.5; + return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : ''); +} - Object.assign(this, cookieDefaults, options); - this.creation = this.creation || new Date(); - // used to break creation ties in cookieCompare(): - Object.defineProperty(this, "creationIndex", { - configurable: false, - enumerable: false, // important for assert.deepEqual checks - writable: true, - value: ++Cookie.cookiesCreated - }); - } +/***/ }), - inspect() { - const now = Date.now(); - const hostOnly = this.hostOnly != null ? this.hostOnly : "?"; - const createAge = this.creation - ? `${now - this.creation.getTime()}ms` - : "?"; - const accessAge = this.lastAccessed - ? `${now - this.lastAccessed.getTime()}ms` - : "?"; - return `Cookie="${this.toString()}; hostOnly=${hostOnly}; aAge=${accessAge}; cAge=${createAge}"`; - } +/***/ 91532: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - toJSON() { - const obj = {}; +const ANY = Symbol('SemVer ANY') +// hoisted class for cyclic dependency +class Comparator { + static get ANY () { + return ANY + } - for (const prop of Cookie.serializableProperties) { - if (this[prop] === cookieDefaults[prop]) { - continue; // leave as prototype default - } + constructor (comp, options) { + options = parseOptions(options) - if ( - prop === "expires" || - prop === "creation" || - prop === "lastAccessed" - ) { - if (this[prop] === null) { - obj[prop] = null; - } else { - obj[prop] = - this[prop] == "Infinity" // intentionally not === - ? "Infinity" - : this[prop].toISOString(); - } - } else if (prop === "maxAge") { - if (this[prop] !== null) { - // again, intentionally not === - obj[prop] = - this[prop] == Infinity || this[prop] == -Infinity - ? this[prop].toString() - : this[prop]; - } + if (comp instanceof Comparator) { + if (comp.loose === !!options.loose) { + return comp } else { - if (this[prop] !== cookieDefaults[prop]) { - obj[prop] = this[prop]; - } + comp = comp.value } } - return obj; - } + comp = comp.trim().split(/\s+/).join(' ') + debug('comparator', comp, options) + this.options = options + this.loose = !!options.loose + this.parse(comp) - clone() { - return fromJSON(this.toJSON()); + if (this.semver === ANY) { + this.value = '' + } else { + this.value = this.operator + this.semver.version + } + + debug('comp', this) } - validate() { - if (!COOKIE_OCTETS.test(this.value)) { - return false; - } - if ( - this.expires != Infinity && - !(this.expires instanceof Date) && - !parseDate(this.expires) - ) { - return false; - } - if (this.maxAge != null && this.maxAge <= 0) { - return false; // "Max-Age=" non-zero-digit *DIGIT - } - if (this.path != null && !PATH_VALUE.test(this.path)) { - return false; - } + parse (comp) { + const r = this.options.loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR] + const m = comp.match(r) - const cdomain = this.cdomain(); - if (cdomain) { - if (cdomain.match(/\.$/)) { - return false; // S4.1.2.3 suggests that this is bad. domainMatch() tests confirm this - } - const suffix = pubsuffix.getPublicSuffix(cdomain); - if (suffix == null) { - // it's a public suffix - return false; - } + if (!m) { + throw new TypeError(`Invalid comparator: ${comp}`) } - return true; - } - setExpires(exp) { - if (exp instanceof Date) { - this.expires = exp; - } else { - this.expires = parseDate(exp) || "Infinity"; + this.operator = m[1] !== undefined ? m[1] : '' + if (this.operator === '=') { + this.operator = '' } - } - setMaxAge(age) { - if (age === Infinity || age === -Infinity) { - this.maxAge = age.toString(); // so JSON.stringify() works + // if it literally is just '>' or '' then allow anything. + if (!m[2]) { + this.semver = ANY } else { - this.maxAge = age; + this.semver = new SemVer(m[2], this.options.loose) } } - cookieString() { - let val = this.value; - if (val == null) { - val = ""; - } - if (this.key === "") { - return val; - } - return `${this.key}=${val}`; + toString () { + return this.value } - // gives Set-Cookie header format - toString() { - let str = this.cookieString(); + test (version) { + debug('Comparator.test', version, this.options.loose) - if (this.expires != Infinity) { - if (this.expires instanceof Date) { - str += `; Expires=${formatDate(this.expires)}`; - } else { - str += `; Expires=${this.expires}`; - } + if (this.semver === ANY || version === ANY) { + return true } - if (this.maxAge != null && this.maxAge != Infinity) { - str += `; Max-Age=${this.maxAge}`; + if (typeof version === 'string') { + try { + version = new SemVer(version, this.options) + } catch (er) { + return false + } } - if (this.domain && !this.hostOnly) { - str += `; Domain=${this.domain}`; - } - if (this.path) { - str += `; Path=${this.path}`; - } + return cmp(version, this.operator, this.semver, this.options) + } - if (this.secure) { - str += "; Secure"; - } - if (this.httpOnly) { - str += "; HttpOnly"; + intersects (comp, options) { + if (!(comp instanceof Comparator)) { + throw new TypeError('a Comparator is required') } - if (this.sameSite && this.sameSite !== "none") { - const ssCanon = Cookie.sameSiteCanonical[this.sameSite.toLowerCase()]; - str += `; SameSite=${ssCanon ? ssCanon : this.sameSite}`; - } - if (this.extensions) { - this.extensions.forEach(ext => { - str += `; ${ext}`; - }); - } - - return str; - } - // TTL() partially replaces the "expiry-time" parts of S5.3 step 3 (setCookie() - // elsewhere) - // S5.3 says to give the "latest representable date" for which we use Infinity - // For "expired" we use 0 - TTL(now) { - /* RFC6265 S4.1.2.2 If a cookie has both the Max-Age and the Expires - * attribute, the Max-Age attribute has precedence and controls the - * expiration date of the cookie. - * (Concurs with S5.3 step 3) - */ - if (this.maxAge != null) { - return this.maxAge <= 0 ? 0 : this.maxAge * 1000; - } - - let expires = this.expires; - if (expires != Infinity) { - if (!(expires instanceof Date)) { - expires = parseDate(expires) || Infinity; + if (this.operator === '') { + if (this.value === '') { + return true } - - if (expires == Infinity) { - return Infinity; + return new Range(comp.value, options).test(this.value) + } else if (comp.operator === '') { + if (comp.value === '') { + return true } - - return expires.getTime() - (now || Date.now()); + return new Range(this.value, options).test(comp.semver) } - return Infinity; - } + options = parseOptions(options) - // expiryTime() replaces the "expiry-time" parts of S5.3 step 3 (setCookie() - // elsewhere) - expiryTime(now) { - if (this.maxAge != null) { - const relativeTo = now || this.creation || new Date(); - const age = this.maxAge <= 0 ? -Infinity : this.maxAge * 1000; - return relativeTo.getTime() + age; + // Special cases where nothing can possibly be lower + if (options.includePrerelease && + (this.value === '<0.0.0-0' || comp.value === '<0.0.0-0')) { + return false } - - if (this.expires == Infinity) { - return Infinity; + if (!options.includePrerelease && + (this.value.startsWith('<0.0.0') || comp.value.startsWith('<0.0.0'))) { + return false } - return this.expires.getTime(); - } - // expiryDate() replaces the "expiry-time" parts of S5.3 step 3 (setCookie() - // elsewhere), except it returns a Date - expiryDate(now) { - const millisec = this.expiryTime(now); - if (millisec == Infinity) { - return new Date(MAX_TIME); - } else if (millisec == -Infinity) { - return new Date(MIN_TIME); - } else { - return new Date(millisec); + // Same direction increasing (> or >=) + if (this.operator.startsWith('>') && comp.operator.startsWith('>')) { + return true } - } - - // This replaces the "persistent-flag" parts of S5.3 step 3 - isPersistent() { - return this.maxAge != null || this.expires != Infinity; - } - - // Mostly S5.1.2 and S5.2.3: - canonicalizedDomain() { - if (this.domain == null) { - return null; + // Same direction decreasing (< or <=) + if (this.operator.startsWith('<') && comp.operator.startsWith('<')) { + return true } - return canonicalDomain(this.domain); - } - - cdomain() { - return this.canonicalizedDomain(); - } -} - -Cookie.cookiesCreated = 0; -Cookie.parse = parse; -Cookie.fromJSON = fromJSON; -Cookie.serializableProperties = Object.keys(cookieDefaults); -Cookie.sameSiteLevel = { - strict: 3, - lax: 2, - none: 1 -}; - -Cookie.sameSiteCanonical = { - strict: "Strict", - lax: "Lax" -}; - -function getNormalizedPrefixSecurity(prefixSecurity) { - if (prefixSecurity != null) { - const normalizedPrefixSecurity = prefixSecurity.toLowerCase(); - /* The three supported options */ - switch (normalizedPrefixSecurity) { - case PrefixSecurityEnum.STRICT: - case PrefixSecurityEnum.SILENT: - case PrefixSecurityEnum.DISABLED: - return normalizedPrefixSecurity; - } - } - /* Default is SILENT */ - return PrefixSecurityEnum.SILENT; -} - -class CookieJar { - constructor(store, options = { rejectPublicSuffixes: true }) { - if (typeof options === "boolean") { - options = { rejectPublicSuffixes: options }; - } - this.rejectPublicSuffixes = options.rejectPublicSuffixes; - this.enableLooseMode = !!options.looseMode; - this.allowSpecialUseDomain = !!options.allowSpecialUseDomain; - this.store = store || new MemoryCookieStore(); - this.prefixSecurity = getNormalizedPrefixSecurity(options.prefixSecurity); - this._cloneSync = syncWrap("clone"); - this._importCookiesSync = syncWrap("_importCookies"); - this.getCookiesSync = syncWrap("getCookies"); - this.getCookieStringSync = syncWrap("getCookieString"); - this.getSetCookieStringsSync = syncWrap("getSetCookieStrings"); - this.removeAllCookiesSync = syncWrap("removeAllCookies"); - this.setCookieSync = syncWrap("setCookie"); - this.serializeSync = syncWrap("serialize"); - } - - setCookie(cookie, url, options, cb) { - let err; - const context = getCookieContext(url); - if (typeof options === "function") { - cb = options; - options = {}; - } - - const host = canonicalDomain(context.hostname); - const loose = options.loose || this.enableLooseMode; - - let sameSiteContext = null; - if (options.sameSiteContext) { - sameSiteContext = checkSameSiteContext(options.sameSiteContext); - if (!sameSiteContext) { - return cb(new Error(SAME_SITE_CONTEXT_VAL_ERR)); - } + // same SemVer and both sides are inclusive (<= or >=) + if ( + (this.semver.version === comp.semver.version) && + this.operator.includes('=') && comp.operator.includes('=')) { + return true } - - // S5.3 step 1 - if (typeof cookie === "string" || cookie instanceof String) { - cookie = Cookie.parse(cookie, { loose: loose }); - if (!cookie) { - err = new Error("Cookie failed to parse"); - return cb(options.ignoreError ? null : err); - } - } else if (!(cookie instanceof Cookie)) { - // If you're seeing this error, and are passing in a Cookie object, - // it *might* be a Cookie object from another loaded version of tough-cookie. - err = new Error( - "First argument to setCookie must be a Cookie object or string" - ); - return cb(options.ignoreError ? null : err); + // opposite directions less than + if (cmp(this.semver, '<', comp.semver, options) && + this.operator.startsWith('>') && comp.operator.startsWith('<')) { + return true } - - // S5.3 step 2 - const now = options.now || new Date(); // will assign later to save effort in the face of errors - - // S5.3 step 3: NOOP; persistent-flag and expiry-time is handled by getCookie() - - // S5.3 step 4: NOOP; domain is null by default - - // S5.3 step 5: public suffixes - if (this.rejectPublicSuffixes && cookie.domain) { - const suffix = pubsuffix.getPublicSuffix(cookie.cdomain()); - if (suffix == null) { - // e.g. "com" - err = new Error("Cookie has domain set to a public suffix"); - return cb(options.ignoreError ? null : err); - } + // opposite directions greater than + if (cmp(this.semver, '>', comp.semver, options) && + this.operator.startsWith('<') && comp.operator.startsWith('>')) { + return true } + return false + } +} - // S5.3 step 6: - if (cookie.domain) { - if (!domainMatch(host, cookie.cdomain(), false)) { - err = new Error( - `Cookie not in this host's domain. Cookie:${cookie.cdomain()} Request:${host}` - ); - return cb(options.ignoreError ? null : err); - } +module.exports = Comparator - if (cookie.hostOnly == null) { - // don't reset if already set - cookie.hostOnly = false; - } - } else { - cookie.hostOnly = true; - cookie.domain = host; - } - - //S5.2.4 If the attribute-value is empty or if the first character of the - //attribute-value is not %x2F ("/"): - //Let cookie-path be the default-path. - if (!cookie.path || cookie.path[0] !== "/") { - cookie.path = defaultPath(context.pathname); - cookie.pathIsDefault = true; - } - - // S5.3 step 8: NOOP; secure attribute - // S5.3 step 9: NOOP; httpOnly attribute - - // S5.3 step 10 - if (options.http === false && cookie.httpOnly) { - err = new Error("Cookie is HttpOnly and this isn't an HTTP API"); - return cb(options.ignoreError ? null : err); - } - - // 6252bis-02 S5.4 Step 13 & 14: - if (cookie.sameSite !== "none" && sameSiteContext) { - // "If the cookie's "same-site-flag" is not "None", and the cookie - // is being set from a context whose "site for cookies" is not an - // exact match for request-uri's host's registered domain, then - // abort these steps and ignore the newly created cookie entirely." - if (sameSiteContext === "none") { - err = new Error( - "Cookie is SameSite but this is a cross-origin request" - ); - return cb(options.ignoreError ? null : err); - } - } +const parseOptions = __nccwpck_require__(40785) +const { safeRe: re, t } = __nccwpck_require__(9523) +const cmp = __nccwpck_require__(75098) +const debug = __nccwpck_require__(50427) +const SemVer = __nccwpck_require__(48088) +const Range = __nccwpck_require__(9828) - /* 6265bis-02 S5.4 Steps 15 & 16 */ - const ignoreErrorForPrefixSecurity = - this.prefixSecurity === PrefixSecurityEnum.SILENT; - const prefixSecurityDisabled = - this.prefixSecurity === PrefixSecurityEnum.DISABLED; - /* If prefix checking is not disabled ...*/ - if (!prefixSecurityDisabled) { - let errorFound = false; - let errorMsg; - /* Check secure prefix condition */ - if (!isSecurePrefixConditionMet(cookie)) { - errorFound = true; - errorMsg = "Cookie has __Secure prefix but Secure attribute is not set"; - } else if (!isHostPrefixConditionMet(cookie)) { - /* Check host prefix condition */ - errorFound = true; - errorMsg = - "Cookie has __Host prefix but either Secure or HostOnly attribute is not set or Path is not '/'"; - } - if (errorFound) { - return cb( - options.ignoreError || ignoreErrorForPrefixSecurity - ? null - : new Error(errorMsg) - ); - } - } - const store = this.store; +/***/ }), - if (!store.updateCookie) { - store.updateCookie = function(oldCookie, newCookie, cb) { - this.putCookie(newCookie, cb); - }; - } +/***/ 9828: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - function withCookie(err, oldCookie) { - if (err) { - return cb(err); - } +const SPACE_CHARACTERS = /\s+/g - const next = function(err) { - if (err) { - return cb(err); - } else { - cb(null, cookie); - } - }; - - if (oldCookie) { - // S5.3 step 11 - "If the cookie store contains a cookie with the same name, - // domain, and path as the newly created cookie:" - if (options.http === false && oldCookie.httpOnly) { - // step 11.2 - err = new Error("old Cookie is HttpOnly and this isn't an HTTP API"); - return cb(options.ignoreError ? null : err); - } - cookie.creation = oldCookie.creation; // step 11.3 - cookie.creationIndex = oldCookie.creationIndex; // preserve tie-breaker - cookie.lastAccessed = now; - // Step 11.4 (delete cookie) is implied by just setting the new one: - store.updateCookie(oldCookie, cookie, next); // step 12 +// hoisted class for cyclic dependency +class Range { + constructor (range, options) { + options = parseOptions(options) + + if (range instanceof Range) { + if ( + range.loose === !!options.loose && + range.includePrerelease === !!options.includePrerelease + ) { + return range } else { - cookie.creation = cookie.lastAccessed = now; - store.putCookie(cookie, next); // step 12 + return new Range(range.raw, options) } } - store.findCookie(cookie.domain, cookie.path, cookie.key, withCookie); - } - - // RFC6365 S5.4 - getCookies(url, options, cb) { - const context = getCookieContext(url); - if (typeof options === "function") { - cb = options; - options = {}; + if (range instanceof Comparator) { + // just put it in the set and return + this.raw = range.value + this.set = [[range]] + this.formatted = undefined + return this } - const host = canonicalDomain(context.hostname); - const path = context.pathname || "/"; + this.options = options + this.loose = !!options.loose + this.includePrerelease = !!options.includePrerelease - let secure = options.secure; - if ( - secure == null && - context.protocol && - (context.protocol == "https:" || context.protocol == "wss:") - ) { - secure = true; - } + // First reduce all whitespace as much as possible so we do not have to rely + // on potentially slow regexes like \s*. This is then stored and used for + // future error messages as well. + this.raw = range.trim().replace(SPACE_CHARACTERS, ' ') - let sameSiteLevel = 0; - if (options.sameSiteContext) { - const sameSiteContext = checkSameSiteContext(options.sameSiteContext); - sameSiteLevel = Cookie.sameSiteLevel[sameSiteContext]; - if (!sameSiteLevel) { - return cb(new Error(SAME_SITE_CONTEXT_VAL_ERR)); - } - } + // First, split on || + this.set = this.raw + .split('||') + // map the range to a 2d array of comparators + .map(r => this.parseRange(r.trim())) + // throw out any comparator lists that are empty + // this generally means that it was not a valid range, which is allowed + // in loose mode, but will still throw if the WHOLE range is invalid. + .filter(c => c.length) - let http = options.http; - if (http == null) { - http = true; + if (!this.set.length) { + throw new TypeError(`Invalid SemVer Range: ${this.raw}`) } - const now = options.now || Date.now(); - const expireCheck = options.expire !== false; - const allPaths = !!options.allPaths; - const store = this.store; - - function matchingCookie(c) { - // "Either: - // The cookie's host-only-flag is true and the canonicalized - // request-host is identical to the cookie's domain. - // Or: - // The cookie's host-only-flag is false and the canonicalized - // request-host domain-matches the cookie's domain." - if (c.hostOnly) { - if (c.domain != host) { - return false; - } - } else { - if (!domainMatch(host, c.domain, false)) { - return false; - } - } - - // "The request-uri's path path-matches the cookie's path." - if (!allPaths && !pathMatch(path, c.path)) { - return false; - } - - // "If the cookie's secure-only-flag is true, then the request-uri's - // scheme must denote a "secure" protocol" - if (c.secure && !secure) { - return false; - } - - // "If the cookie's http-only-flag is true, then exclude the cookie if the - // cookie-string is being generated for a "non-HTTP" API" - if (c.httpOnly && !http) { - return false; - } - - // RFC6265bis-02 S5.3.7 - if (sameSiteLevel) { - const cookieLevel = Cookie.sameSiteLevel[c.sameSite || "none"]; - if (cookieLevel > sameSiteLevel) { - // only allow cookies at or below the request level - return false; + // if we have any that are not the null set, throw out null sets. + if (this.set.length > 1) { + // keep the first one, in case they're all null sets + const first = this.set[0] + this.set = this.set.filter(c => !isNullSet(c[0])) + if (this.set.length === 0) { + this.set = [first] + } else if (this.set.length > 1) { + // if we have any that are *, then the range is just * + for (const c of this.set) { + if (c.length === 1 && isAny(c[0])) { + this.set = [c] + break + } } } - - // deferred from S5.3 - // non-RFC: allow retention of expired cookies by choice - if (expireCheck && c.expiryTime() <= now) { - store.removeCookie(c.domain, c.path, c.key, () => {}); // result ignored - return false; - } - - return true; } - store.findCookies( - host, - allPaths ? null : path, - this.allowSpecialUseDomain, - (err, cookies) => { - if (err) { - return cb(err); - } - - cookies = cookies.filter(matchingCookie); + this.formatted = undefined + } - // sorting of S5.4 part 2 - if (options.sort !== false) { - cookies = cookies.sort(cookieCompare); + get range () { + if (this.formatted === undefined) { + this.formatted = '' + for (let i = 0; i < this.set.length; i++) { + if (i > 0) { + this.formatted += '||' } - - // S5.4 part 3 - const now = new Date(); - for (const cookie of cookies) { - cookie.lastAccessed = now; + const comps = this.set[i] + for (let k = 0; k < comps.length; k++) { + if (k > 0) { + this.formatted += ' ' + } + this.formatted += comps[k].toString().trim() } - // TODO persist lastAccessed - - cb(null, cookies); } - ); + } + return this.formatted } - getCookieString(...args) { - const cb = args.pop(); - const next = function(err, cookies) { - if (err) { - cb(err); - } else { - cb( - null, - cookies - .sort(cookieCompare) - .map(c => c.cookieString()) - .join("; ") - ); - } - }; - args.push(next); - this.getCookies.apply(this, args); + format () { + return this.range } - getSetCookieStrings(...args) { - const cb = args.pop(); - const next = function(err, cookies) { - if (err) { - cb(err); - } else { - cb( - null, - cookies.map(c => { - return c.toString(); - }) - ); - } - }; - args.push(next); - this.getCookies.apply(this, args); + toString () { + return this.range } - serialize(cb) { - let type = this.store.constructor.name; - if (type === "Object") { - type = null; + parseRange (range) { + // memoize range parsing for performance. + // this is a very hot path, and fully deterministic. + const memoOpts = + (this.options.includePrerelease && FLAG_INCLUDE_PRERELEASE) | + (this.options.loose && FLAG_LOOSE) + const memoKey = memoOpts + ':' + range + const cached = cache.get(memoKey) + if (cached) { + return cached } - // update README.md "Serialization Format" if you change this, please! - const serialized = { - // The version of tough-cookie that serialized this jar. Generally a good - // practice since future versions can make data import decisions based on - // known past behavior. When/if this matters, use `semver`. - version: `tough-cookie@${VERSION}`, - - // add the store type, to make humans happy: - storeType: type, - - // CookieJar configuration: - rejectPublicSuffixes: !!this.rejectPublicSuffixes, + const loose = this.options.loose + // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4` + const hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE] + range = range.replace(hr, hyphenReplace(this.options.includePrerelease)) + debug('hyphen replace', range) - // this gets filled from getAllCookies: - cookies: [] - }; + // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5` + range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace) + debug('comparator trim', range) - if ( - !( - this.store.getAllCookies && - typeof this.store.getAllCookies === "function" - ) - ) { - return cb( - new Error( - "store does not support getAllCookies and cannot be serialized" - ) - ); - } + // `~ 1.2.3` => `~1.2.3` + range = range.replace(re[t.TILDETRIM], tildeTrimReplace) + debug('tilde trim', range) - this.store.getAllCookies((err, cookies) => { - if (err) { - return cb(err); - } + // `^ 1.2.3` => `^1.2.3` + range = range.replace(re[t.CARETTRIM], caretTrimReplace) + debug('caret trim', range) - serialized.cookies = cookies.map(cookie => { - // convert to serialized 'raw' cookies - cookie = cookie instanceof Cookie ? cookie.toJSON() : cookie; + // At this point, the range is completely trimmed and + // ready to be split into comparators. - // Remove the index so new ones get assigned during deserialization - delete cookie.creationIndex; + let rangeList = range + .split(' ') + .map(comp => parseComparator(comp, this.options)) + .join(' ') + .split(/\s+/) + // >=0.0.0 is equivalent to * + .map(comp => replaceGTE0(comp, this.options)) - return cookie; - }); + if (loose) { + // in loose mode, throw out any that are not valid comparators + rangeList = rangeList.filter(comp => { + debug('loose invalid filter', comp, this.options) + return !!comp.match(re[t.COMPARATORLOOSE]) + }) + } + debug('range list', rangeList) - return cb(null, serialized); - }); - } + // if any comparators are the null set, then replace with JUST null set + // if more than one comparator, remove any * comparators + // also, don't include the same comparator more than once + const rangeMap = new Map() + const comparators = rangeList.map(comp => new Comparator(comp, this.options)) + for (const comp of comparators) { + if (isNullSet(comp)) { + return [comp] + } + rangeMap.set(comp.value, comp) + } + if (rangeMap.size > 1 && rangeMap.has('')) { + rangeMap.delete('') + } - toJSON() { - return this.serializeSync(); + const result = [...rangeMap.values()] + cache.set(memoKey, result) + return result } - // use the class method CookieJar.deserialize instead of calling this directly - _importCookies(serialized, cb) { - let cookies = serialized.cookies; - if (!cookies || !Array.isArray(cookies)) { - return cb(new Error("serialized jar has no cookies array")); + intersects (range, options) { + if (!(range instanceof Range)) { + throw new TypeError('a Range is required') } - cookies = cookies.slice(); // do not modify the original - const putNext = err => { - if (err) { - return cb(err); - } + return this.set.some((thisComparators) => { + return ( + isSatisfiable(thisComparators, options) && + range.set.some((rangeComparators) => { + return ( + isSatisfiable(rangeComparators, options) && + thisComparators.every((thisComparator) => { + return rangeComparators.every((rangeComparator) => { + return thisComparator.intersects(rangeComparator, options) + }) + }) + ) + }) + ) + }) + } - if (!cookies.length) { - return cb(err, this); - } + // if ANY of the sets match ALL of its comparators, then pass + test (version) { + if (!version) { + return false + } - let cookie; + if (typeof version === 'string') { try { - cookie = fromJSON(cookies.shift()); - } catch (e) { - return cb(e); - } - - if (cookie === null) { - return putNext(null); // skip this cookie + version = new SemVer(version, this.options) + } catch (er) { + return false } - - this.store.putCookie(cookie, putNext); - }; - - putNext(); - } - - clone(newStore, cb) { - if (arguments.length === 1) { - cb = newStore; - newStore = null; } - this.serialize((err, serialized) => { - if (err) { - return cb(err); + for (let i = 0; i < this.set.length; i++) { + if (testSet(this.set[i], version, this.options)) { + return true } - CookieJar.deserialize(serialized, newStore, cb); - }); - } - - cloneSync(newStore) { - if (arguments.length === 0) { - return this._cloneSync(); - } - if (!newStore.synchronous) { - throw new Error( - "CookieJar clone destination store is not synchronous; use async API instead." - ); } - return this._cloneSync(newStore); + return false } +} - removeAllCookies(cb) { - const store = this.store; - - // Check that the store implements its own removeAllCookies(). The default - // implementation in Store will immediately call the callback with a "not - // implemented" Error. - if ( - typeof store.removeAllCookies === "function" && - store.removeAllCookies !== Store.prototype.removeAllCookies - ) { - return store.removeAllCookies(cb); - } - - store.getAllCookies((err, cookies) => { - if (err) { - return cb(err); - } +module.exports = Range - if (cookies.length === 0) { - return cb(null); - } +const LRU = __nccwpck_require__(15339) +const cache = new LRU() - let completedCount = 0; - const removeErrors = []; +const parseOptions = __nccwpck_require__(40785) +const Comparator = __nccwpck_require__(91532) +const debug = __nccwpck_require__(50427) +const SemVer = __nccwpck_require__(48088) +const { + safeRe: re, + t, + comparatorTrimReplace, + tildeTrimReplace, + caretTrimReplace, +} = __nccwpck_require__(9523) +const { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = __nccwpck_require__(42293) - function removeCookieCb(removeErr) { - if (removeErr) { - removeErrors.push(removeErr); - } +const isNullSet = c => c.value === '<0.0.0-0' +const isAny = c => c.value === '' - completedCount++; +// take a set of comparators and determine whether there +// exists a version which can satisfy it +const isSatisfiable = (comparators, options) => { + let result = true + const remainingComparators = comparators.slice() + let testComparator = remainingComparators.pop() - if (completedCount === cookies.length) { - return cb(removeErrors.length ? removeErrors[0] : null); - } - } + while (result && remainingComparators.length) { + result = remainingComparators.every((otherComparator) => { + return testComparator.intersects(otherComparator, options) + }) - cookies.forEach(cookie => { - store.removeCookie( - cookie.domain, - cookie.path, - cookie.key, - removeCookieCb - ); - }); - }); + testComparator = remainingComparators.pop() } - static deserialize(strOrObj, store, cb) { - if (arguments.length !== 3) { - // store is optional - cb = store; - store = null; - } - - let serialized; - if (typeof strOrObj === "string") { - serialized = jsonParse(strOrObj); - if (serialized instanceof Error) { - return cb(serialized); - } - } else { - serialized = strOrObj; - } - - const jar = new CookieJar(store, serialized.rejectPublicSuffixes); - jar._importCookies(serialized, err => { - if (err) { - return cb(err); - } - cb(null, jar); - }); - } + return result +} - static deserializeSync(strOrObj, store) { - const serialized = - typeof strOrObj === "string" ? JSON.parse(strOrObj) : strOrObj; - const jar = new CookieJar(store, serialized.rejectPublicSuffixes); +// comprised of xranges, tildes, stars, and gtlt's at this point. +// already replaced the hyphen ranges +// turn into a set of JUST comparators. +const parseComparator = (comp, options) => { + debug('comp', comp, options) + comp = replaceCarets(comp, options) + debug('caret', comp) + comp = replaceTildes(comp, options) + debug('tildes', comp) + comp = replaceXRanges(comp, options) + debug('xrange', comp) + comp = replaceStars(comp, options) + debug('stars', comp) + return comp +} - // catch this mistake early: - if (!jar.store.synchronous) { - throw new Error( - "CookieJar store is not synchronous; use async API instead." - ); - } +const isX = id => !id || id.toLowerCase() === 'x' || id === '*' - jar._importCookiesSync(serialized); - return jar; - } +// ~, ~> --> * (any, kinda silly) +// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0-0 +// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0-0 +// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0-0 +// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0-0 +// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0-0 +// ~0.0.1 --> >=0.0.1 <0.1.0-0 +const replaceTildes = (comp, options) => { + return comp + .trim() + .split(/\s+/) + .map((c) => replaceTilde(c, options)) + .join(' ') } -CookieJar.fromJSON = CookieJar.deserializeSync; -[ - "_importCookies", - "clone", - "getCookies", - "getCookieString", - "getSetCookieStrings", - "removeAllCookies", - "serialize", - "setCookie" -].forEach(name => { - CookieJar.prototype[name] = fromCallback(CookieJar.prototype[name]); -}); -CookieJar.deserialize = fromCallback(CookieJar.deserialize); +const replaceTilde = (comp, options) => { + const r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE] + return comp.replace(r, (_, M, m, p, pr) => { + debug('tilde', comp, _, M, m, p, pr) + let ret -// Use a closure to provide a true imperative API for synchronous stores. -function syncWrap(method) { - return function(...args) { - if (!this.store.synchronous) { - throw new Error( - "CookieJar store is not synchronous; use async API instead." - ); + if (isX(M)) { + ret = '' + } else if (isX(m)) { + ret = `>=${M}.0.0 <${+M + 1}.0.0-0` + } else if (isX(p)) { + // ~1.2 == >=1.2.0 <1.3.0-0 + ret = `>=${M}.${m}.0 <${M}.${+m + 1}.0-0` + } else if (pr) { + debug('replaceTilde pr', pr) + ret = `>=${M}.${m}.${p}-${pr + } <${M}.${+m + 1}.0-0` + } else { + // ~1.2.3 == >=1.2.3 <1.3.0-0 + ret = `>=${M}.${m}.${p + } <${M}.${+m + 1}.0-0` } - let syncErr, syncResult; - this[method](...args, (err, result) => { - syncErr = err; - syncResult = result; - }); - - if (syncErr) { - throw syncErr; - } - return syncResult; - }; + debug('tilde return', ret) + return ret + }) } -exports.version = VERSION; -exports.CookieJar = CookieJar; -exports.Cookie = Cookie; -exports.Store = Store; -exports.MemoryCookieStore = MemoryCookieStore; -exports.parseDate = parseDate; -exports.formatDate = formatDate; -exports.parse = parse; -exports.fromJSON = fromJSON; -exports.domainMatch = domainMatch; -exports.defaultPath = defaultPath; -exports.pathMatch = pathMatch; -exports.getPublicSuffix = pubsuffix.getPublicSuffix; -exports.cookieCompare = cookieCompare; -exports.permuteDomain = __nccwpck_require__(5696).permuteDomain; -exports.permutePath = permutePath; -exports.canonicalDomain = canonicalDomain; -exports.PrefixSecurityEnum = PrefixSecurityEnum; - - -/***/ }), - -/***/ 6738: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - -"use strict"; -/*! - * Copyright (c) 2015, Salesforce.com, Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * 3. Neither the name of Salesforce.com nor the names of its contributors may - * be used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -const { fromCallback } = __nccwpck_require__(9046); -const Store = (__nccwpck_require__(7707)/* .Store */ .y); -const permuteDomain = (__nccwpck_require__(5696).permuteDomain); -const pathMatch = (__nccwpck_require__(807)/* .pathMatch */ .U); -const util = __nccwpck_require__(3837); - -class MemoryCookieStore extends Store { - constructor() { - super(); - this.synchronous = true; - this.idx = {}; - if (util.inspect.custom) { - this[util.inspect.custom] = this.inspect; - } - } - - inspect() { - return `{ idx: ${util.inspect(this.idx, false, 2)} }`; - } +// ^ --> * (any, kinda silly) +// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0-0 +// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0-0 +// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0-0 +// ^1.2.3 --> >=1.2.3 <2.0.0-0 +// ^1.2.0 --> >=1.2.0 <2.0.0-0 +// ^0.0.1 --> >=0.0.1 <0.0.2-0 +// ^0.1.0 --> >=0.1.0 <0.2.0-0 +const replaceCarets = (comp, options) => { + return comp + .trim() + .split(/\s+/) + .map((c) => replaceCaret(c, options)) + .join(' ') +} - findCookie(domain, path, key, cb) { - if (!this.idx[domain]) { - return cb(null, undefined); - } - if (!this.idx[domain][path]) { - return cb(null, undefined); - } - return cb(null, this.idx[domain][path][key] || null); - } - findCookies(domain, path, allowSpecialUseDomain, cb) { - const results = []; - if (typeof allowSpecialUseDomain === "function") { - cb = allowSpecialUseDomain; - allowSpecialUseDomain = false; - } - if (!domain) { - return cb(null, []); - } +const replaceCaret = (comp, options) => { + debug('caret', comp, options) + const r = options.loose ? re[t.CARETLOOSE] : re[t.CARET] + const z = options.includePrerelease ? '-0' : '' + return comp.replace(r, (_, M, m, p, pr) => { + debug('caret', comp, _, M, m, p, pr) + let ret - let pathMatcher; - if (!path) { - // null means "all paths" - pathMatcher = function matchAll(domainIndex) { - for (const curPath in domainIndex) { - const pathIndex = domainIndex[curPath]; - for (const key in pathIndex) { - results.push(pathIndex[key]); - } + if (isX(M)) { + ret = '' + } else if (isX(m)) { + ret = `>=${M}.0.0${z} <${+M + 1}.0.0-0` + } else if (isX(p)) { + if (M === '0') { + ret = `>=${M}.${m}.0${z} <${M}.${+m + 1}.0-0` + } else { + ret = `>=${M}.${m}.0${z} <${+M + 1}.0.0-0` + } + } else if (pr) { + debug('replaceCaret pr', pr) + if (M === '0') { + if (m === '0') { + ret = `>=${M}.${m}.${p}-${pr + } <${M}.${m}.${+p + 1}-0` + } else { + ret = `>=${M}.${m}.${p}-${pr + } <${M}.${+m + 1}.0-0` } - }; - } else { - pathMatcher = function matchRFC(domainIndex) { - //NOTE: we should use path-match algorithm from S5.1.4 here - //(see : https://github.com/ChromiumWebApps/chromium/blob/b3d3b4da8bb94c1b2e061600df106d590fda3620/net/cookies/canonical_cookie.cc#L299) - Object.keys(domainIndex).forEach(cookiePath => { - if (pathMatch(path, cookiePath)) { - const pathIndex = domainIndex[cookiePath]; - for (const key in pathIndex) { - results.push(pathIndex[key]); - } - } - }); - }; - } - - const domains = permuteDomain(domain, allowSpecialUseDomain) || [domain]; - const idx = this.idx; - domains.forEach(curDomain => { - const domainIndex = idx[curDomain]; - if (!domainIndex) { - return; + } else { + ret = `>=${M}.${m}.${p}-${pr + } <${+M + 1}.0.0-0` } - pathMatcher(domainIndex); - }); - - cb(null, results); - } - - putCookie(cookie, cb) { - if (!this.idx[cookie.domain]) { - this.idx[cookie.domain] = {}; - } - if (!this.idx[cookie.domain][cookie.path]) { - this.idx[cookie.domain][cookie.path] = {}; - } - this.idx[cookie.domain][cookie.path][cookie.key] = cookie; - cb(null); - } - updateCookie(oldCookie, newCookie, cb) { - // updateCookie() may avoid updating cookies that are identical. For example, - // lastAccessed may not be important to some stores and an equality - // comparison could exclude that field. - this.putCookie(newCookie, cb); - } - removeCookie(domain, path, key, cb) { - if ( - this.idx[domain] && - this.idx[domain][path] && - this.idx[domain][path][key] - ) { - delete this.idx[domain][path][key]; - } - cb(null); - } - removeCookies(domain, path, cb) { - if (this.idx[domain]) { - if (path) { - delete this.idx[domain][path]; + } else { + debug('no pr') + if (M === '0') { + if (m === '0') { + ret = `>=${M}.${m}.${p + }${z} <${M}.${m}.${+p + 1}-0` + } else { + ret = `>=${M}.${m}.${p + }${z} <${M}.${+m + 1}.0-0` + } } else { - delete this.idx[domain]; + ret = `>=${M}.${m}.${p + } <${+M + 1}.0.0-0` } } - return cb(null); - } - removeAllCookies(cb) { - this.idx = {}; - return cb(null); - } - getAllCookies(cb) { - const cookies = []; - const idx = this.idx; - - const domains = Object.keys(idx); - domains.forEach(domain => { - const paths = Object.keys(idx[domain]); - paths.forEach(path => { - const keys = Object.keys(idx[domain][path]); - keys.forEach(key => { - if (key !== null) { - cookies.push(idx[domain][path][key]); - } - }); - }); - }); - - // Sort by creationIndex so deserializing retains the creation order. - // When implementing your own store, this SHOULD retain the order too - cookies.sort((a, b) => { - return (a.creationIndex || 0) - (b.creationIndex || 0); - }); - cb(null, cookies); - } + debug('caret return', ret) + return ret + }) } -[ - "findCookie", - "findCookies", - "putCookie", - "updateCookie", - "removeCookie", - "removeCookies", - "removeAllCookies", - "getAllCookies" -].forEach(name => { - MemoryCookieStore[name] = fromCallback(MemoryCookieStore.prototype[name]); -}); - -exports.m = MemoryCookieStore; - - -/***/ }), - -/***/ 807: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; -/*! - * Copyright (c) 2015, Salesforce.com, Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * 3. Neither the name of Salesforce.com nor the names of its contributors may - * be used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -/* - * "A request-path path-matches a given cookie-path if at least one of the - * following conditions holds:" - */ -function pathMatch(reqPath, cookiePath) { - // "o The cookie-path and the request-path are identical." - if (cookiePath === reqPath) { - return true; - } - - const idx = reqPath.indexOf(cookiePath); - if (idx === 0) { - // "o The cookie-path is a prefix of the request-path, and the last - // character of the cookie-path is %x2F ("/")." - if (cookiePath.substr(-1) === "/") { - return true; - } - - // " o The cookie-path is a prefix of the request-path, and the first - // character of the request-path that is not included in the cookie- path - // is a %x2F ("/") character." - if (reqPath.substr(cookiePath.length, 1) === "/") { - return true; - } - } - - return false; +const replaceXRanges = (comp, options) => { + debug('replaceXRanges', comp, options) + return comp + .split(/\s+/) + .map((c) => replaceXRange(c, options)) + .join(' ') } -exports.U = pathMatch; - +const replaceXRange = (comp, options) => { + comp = comp.trim() + const r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE] + return comp.replace(r, (ret, gtlt, M, m, p, pr) => { + debug('xRange', comp, ret, gtlt, M, m, p, pr) + const xM = isX(M) + const xm = xM || isX(m) + const xp = xm || isX(p) + const anyX = xp -/***/ }), + if (gtlt === '=' && anyX) { + gtlt = '' + } -/***/ 5696: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - -"use strict"; -/*! - * Copyright (c) 2015, Salesforce.com, Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * 3. Neither the name of Salesforce.com nor the names of its contributors may - * be used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -const pubsuffix = __nccwpck_require__(8292); - -// Gives the permutation of all possible domainMatch()es of a given domain. The -// array is in shortest-to-longest order. Handy for indexing. -const SPECIAL_USE_DOMAINS = ["local"]; // RFC 6761 -function permuteDomain(domain, allowSpecialUseDomain) { - let pubSuf = null; - if (allowSpecialUseDomain) { - const domainParts = domain.split("."); - if (SPECIAL_USE_DOMAINS.includes(domainParts[domainParts.length - 1])) { - pubSuf = `${domainParts[domainParts.length - 2]}.${ - domainParts[domainParts.length - 1] - }`; - } else { - pubSuf = pubsuffix.getPublicSuffix(domain); - } - } else { - pubSuf = pubsuffix.getPublicSuffix(domain); - } - - if (!pubSuf) { - return null; - } - if (pubSuf == domain) { - return [domain]; - } - - const prefix = domain.slice(0, -(pubSuf.length + 1)); // ".example.com" - const parts = prefix.split(".").reverse(); - let cur = pubSuf; - const permutations = [cur]; - while (parts.length) { - cur = `${parts.shift()}.${cur}`; - permutations.push(cur); - } - return permutations; -} - -exports.permuteDomain = permuteDomain; + // if we're including prereleases in the match, then we need + // to fix this to -0, the lowest possible prerelease value + pr = options.includePrerelease ? '-0' : '' + if (xM) { + if (gtlt === '>' || gtlt === '<') { + // nothing is allowed + ret = '<0.0.0-0' + } else { + // nothing is forbidden + ret = '*' + } + } else if (gtlt && anyX) { + // we know patch is an x, because we have any x at all. + // replace X with 0 + if (xm) { + m = 0 + } + p = 0 -/***/ }), + if (gtlt === '>') { + // >1 => >=2.0.0 + // >1.2 => >=1.3.0 + gtlt = '>=' + if (xm) { + M = +M + 1 + m = 0 + p = 0 + } else { + m = +m + 1 + p = 0 + } + } else if (gtlt === '<=') { + // <=0.7.x is actually <0.8.0, since any 0.7.x should + // pass. Similarly, <=7.x is actually <8.0.0, etc. + gtlt = '<' + if (xm) { + M = +M + 1 + } else { + m = +m + 1 + } + } -/***/ 8292: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + if (gtlt === '<') { + pr = '-0' + } -"use strict"; -/*! - * Copyright (c) 2018, Salesforce.com, Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * 3. Neither the name of Salesforce.com nor the names of its contributors may - * be used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ + ret = `${gtlt + M}.${m}.${p}${pr}` + } else if (xm) { + ret = `>=${M}.0.0${pr} <${+M + 1}.0.0-0` + } else if (xp) { + ret = `>=${M}.${m}.0${pr + } <${M}.${+m + 1}.0-0` + } -const psl = __nccwpck_require__(9975); + debug('xRange return', ret) -function getPublicSuffix(domain) { - return psl.get(domain); + return ret + }) } -exports.getPublicSuffix = getPublicSuffix; - - -/***/ }), - -/***/ 7707: -/***/ ((__unused_webpack_module, exports) => { +// Because * is AND-ed with everything else in the comparator, +// and '' means "any version", just remove the *s entirely. +const replaceStars = (comp, options) => { + debug('replaceStars', comp, options) + // Looseness is ignored here. star is always as loose as it gets! + return comp + .trim() + .replace(re[t.STAR], '') +} -"use strict"; -/*! - * Copyright (c) 2015, Salesforce.com, Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * 3. Neither the name of Salesforce.com nor the names of its contributors may - * be used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -/*jshint unused:false */ - -class Store { - constructor() { - this.synchronous = false; - } +const replaceGTE0 = (comp, options) => { + debug('replaceGTE0', comp, options) + return comp + .trim() + .replace(re[options.includePrerelease ? t.GTE0PRE : t.GTE0], '') +} - findCookie(domain, path, key, cb) { - throw new Error("findCookie is not implemented"); +// This function is passed to string.replace(re[t.HYPHENRANGE]) +// M, m, patch, prerelease, build +// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5 +// 1.2.3 - 3.4 => >=1.2.0 <3.5.0-0 Any 3.4.x will do +// 1.2 - 3.4 => >=1.2.0 <3.5.0-0 +// TODO build? +const hyphenReplace = incPr => ($0, + from, fM, fm, fp, fpr, fb, + to, tM, tm, tp, tpr) => { + if (isX(fM)) { + from = '' + } else if (isX(fm)) { + from = `>=${fM}.0.0${incPr ? '-0' : ''}` + } else if (isX(fp)) { + from = `>=${fM}.${fm}.0${incPr ? '-0' : ''}` + } else if (fpr) { + from = `>=${from}` + } else { + from = `>=${from}${incPr ? '-0' : ''}` } - findCookies(domain, path, allowSpecialUseDomain, cb) { - throw new Error("findCookies is not implemented"); + if (isX(tM)) { + to = '' + } else if (isX(tm)) { + to = `<${+tM + 1}.0.0-0` + } else if (isX(tp)) { + to = `<${tM}.${+tm + 1}.0-0` + } else if (tpr) { + to = `<=${tM}.${tm}.${tp}-${tpr}` + } else if (incPr) { + to = `<${tM}.${tm}.${+tp + 1}-0` + } else { + to = `<=${to}` } - putCookie(cookie, cb) { - throw new Error("putCookie is not implemented"); - } + return `${from} ${to}`.trim() +} - updateCookie(oldCookie, newCookie, cb) { - // recommended default implementation: - // return this.putCookie(newCookie, cb); - throw new Error("updateCookie is not implemented"); +const testSet = (set, version, options) => { + for (let i = 0; i < set.length; i++) { + if (!set[i].test(version)) { + return false + } } - removeCookie(domain, path, key, cb) { - throw new Error("removeCookie is not implemented"); - } + if (version.prerelease.length && !options.includePrerelease) { + // Find the set of versions that are allowed to have prereleases + // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0 + // That should allow `1.2.3-pr.2` to pass. + // However, `1.2.4-alpha.notready` should NOT be allowed, + // even though it's within the range set by the comparators. + for (let i = 0; i < set.length; i++) { + debug(set[i].semver) + if (set[i].semver === Comparator.ANY) { + continue + } - removeCookies(domain, path, cb) { - throw new Error("removeCookies is not implemented"); - } + if (set[i].semver.prerelease.length > 0) { + const allowed = set[i].semver + if (allowed.major === version.major && + allowed.minor === version.minor && + allowed.patch === version.patch) { + return true + } + } + } - removeAllCookies(cb) { - throw new Error("removeAllCookies is not implemented"); + // Version has a -pre, but it's not one of the ones we like. + return false } - getAllCookies(cb) { - throw new Error( - "getAllCookies is not implemented (therefore jar cannot be serialized)" - ); - } + return true } -exports.y = Store; - /***/ }), -/***/ 8742: -/***/ ((module) => { +/***/ 48088: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -// generated by genversion -module.exports = '4.0.0' +const debug = __nccwpck_require__(50427) +const { MAX_LENGTH, MAX_SAFE_INTEGER } = __nccwpck_require__(42293) +const { safeRe: re, safeSrc: src, t } = __nccwpck_require__(9523) +const parseOptions = __nccwpck_require__(40785) +const { compareIdentifiers } = __nccwpck_require__(92463) +class SemVer { + constructor (version, options) { + options = parseOptions(options) -/***/ }), + if (version instanceof SemVer) { + if (version.loose === !!options.loose && + version.includePrerelease === !!options.includePrerelease) { + return version + } else { + version = version.version + } + } else if (typeof version !== 'string') { + throw new TypeError(`Invalid version. Must be a string. Got type "${typeof version}".`) + } -/***/ 2107: -/***/ ((module) => { + if (version.length > MAX_LENGTH) { + throw new TypeError( + `version is longer than ${MAX_LENGTH} characters` + ) + } -/*! ***************************************************************************** -Copyright (c) Microsoft Corporation. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. -***************************************************************************** */ -/* global global, define, System, Reflect, Promise */ -var __extends; -var __assign; -var __rest; -var __decorate; -var __param; -var __metadata; -var __awaiter; -var __generator; -var __exportStar; -var __values; -var __read; -var __spread; -var __spreadArrays; -var __spreadArray; -var __await; -var __asyncGenerator; -var __asyncDelegator; -var __asyncValues; -var __makeTemplateObject; -var __importStar; -var __importDefault; -var __classPrivateFieldGet; -var __classPrivateFieldSet; -var __createBinding; -(function (factory) { - var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {}; - if (typeof define === "function" && define.amd) { - define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); }); - } - else if ( true && typeof module.exports === "object") { - factory(createExporter(root, createExporter(module.exports))); - } - else { - factory(createExporter(root)); - } - function createExporter(exports, previous) { - if (exports !== root) { - if (typeof Object.create === "function") { - Object.defineProperty(exports, "__esModule", { value: true }); - } - else { - exports.__esModule = true; - } - } - return function (id, v) { return exports[id] = previous ? previous(id, v) : v; }; - } -}) -(function (exporter) { - var extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - - __extends = function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); - }; - - __assign = Object.assign || function (t) { - for (var s, i = 1, n = arguments.length; i < n; i++) { - s = arguments[i]; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; - } - return t; - }; - - __rest = function (s, e) { - var t = {}; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) - t[p] = s[p]; - if (s != null && typeof Object.getOwnPropertySymbols === "function") - for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { - if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) - t[p[i]] = s[p[i]]; - } - return t; - }; - - __decorate = function (decorators, target, key, desc) { - var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; - if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); - else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; - return c > 3 && r && Object.defineProperty(target, key, r), r; - }; - - __param = function (paramIndex, decorator) { - return function (target, key) { decorator(target, key, paramIndex); } - }; - - __metadata = function (metadataKey, metadataValue) { - if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue); - }; - - __awaiter = function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); - }; - - __generator = function (thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; - } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; - } - }; - - __exportStar = function(m, o) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p); - }; - - __createBinding = Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); - }) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; - }); - - __values = function (o) { - var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; - if (m) return m.call(o); - if (o && typeof o.length === "number") return { - next: function () { - if (o && i >= o.length) o = void 0; - return { value: o && o[i++], done: !o }; - } - }; - throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); - }; - - __read = function (o, n) { - var m = typeof Symbol === "function" && o[Symbol.iterator]; - if (!m) return o; - var i = m.call(o), r, ar = [], e; - try { - while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); - } - catch (error) { e = { error: error }; } - finally { - try { - if (r && !r.done && (m = i["return"])) m.call(i); - } - finally { if (e) throw e.error; } - } - return ar; - }; - - /** @deprecated */ - __spread = function () { - for (var ar = [], i = 0; i < arguments.length; i++) - ar = ar.concat(__read(arguments[i])); - return ar; - }; - - /** @deprecated */ - __spreadArrays = function () { - for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; - for (var r = Array(s), k = 0, i = 0; i < il; i++) - for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) - r[k] = a[j]; - return r; - }; - - __spreadArray = function (to, from, pack) { - if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { - if (ar || !(i in from)) { - if (!ar) ar = Array.prototype.slice.call(from, 0, i); - ar[i] = from[i]; - } - } - return to.concat(ar || Array.prototype.slice.call(from)); - }; - - __await = function (v) { - return this instanceof __await ? (this.v = v, this) : new __await(v); - }; - - __asyncGenerator = function (thisArg, _arguments, generator) { - if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); - var g = generator.apply(thisArg, _arguments || []), i, q = []; - return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i; - function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } - function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } - function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } - function fulfill(value) { resume("next", value); } - function reject(value) { resume("throw", value); } - function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } - }; - - __asyncDelegator = function (o) { - var i, p; - return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i; - function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; } - }; - - __asyncValues = function (o) { - if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); - var m = o[Symbol.asyncIterator], i; - return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i); - function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } - function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } - }; - - __makeTemplateObject = function (cooked, raw) { - if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; } - return cooked; - }; - - var __setModuleDefault = Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); - }) : function(o, v) { - o["default"] = v; - }; - - __importStar = function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; - }; - - __importDefault = function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; - }; - - __classPrivateFieldGet = function (receiver, state, kind, f) { - if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); - if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); - return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); - }; - - __classPrivateFieldSet = function (receiver, state, value, kind, f) { - if (kind === "m") throw new TypeError("Private method is not writable"); - if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); - if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); - return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value; - }; - - exporter("__extends", __extends); - exporter("__assign", __assign); - exporter("__rest", __rest); - exporter("__decorate", __decorate); - exporter("__param", __param); - exporter("__metadata", __metadata); - exporter("__awaiter", __awaiter); - exporter("__generator", __generator); - exporter("__exportStar", __exportStar); - exporter("__createBinding", __createBinding); - exporter("__values", __values); - exporter("__read", __read); - exporter("__spread", __spread); - exporter("__spreadArrays", __spreadArrays); - exporter("__spreadArray", __spreadArray); - exporter("__await", __await); - exporter("__asyncGenerator", __asyncGenerator); - exporter("__asyncDelegator", __asyncDelegator); - exporter("__asyncValues", __asyncValues); - exporter("__makeTemplateObject", __makeTemplateObject); - exporter("__importStar", __importStar); - exporter("__importDefault", __importDefault); - exporter("__classPrivateFieldGet", __classPrivateFieldGet); - exporter("__classPrivateFieldSet", __classPrivateFieldSet); -}); - - -/***/ }), - -/***/ 3415: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + debug('SemVer', version, options) + this.options = options + this.loose = !!options.loose + // this isn't actually relevant for versions, but keep it so that we + // don't run into trouble passing this.options around. + this.includePrerelease = !!options.includePrerelease -"use strict"; + const m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL]) + if (!m) { + throw new TypeError(`Invalid Version: ${version}`) + } -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -Object.defineProperty(exports, "v1", ({ - enumerable: true, - get: function () { - return _v.default; - } -})); -Object.defineProperty(exports, "v3", ({ - enumerable: true, - get: function () { - return _v2.default; - } -})); -Object.defineProperty(exports, "v4", ({ - enumerable: true, - get: function () { - return _v3.default; - } -})); -Object.defineProperty(exports, "v5", ({ - enumerable: true, - get: function () { - return _v4.default; - } -})); -Object.defineProperty(exports, "NIL", ({ - enumerable: true, - get: function () { - return _nil.default; - } -})); -Object.defineProperty(exports, "version", ({ - enumerable: true, - get: function () { - return _version.default; - } -})); -Object.defineProperty(exports, "validate", ({ - enumerable: true, - get: function () { - return _validate.default; - } -})); -Object.defineProperty(exports, "stringify", ({ - enumerable: true, - get: function () { - return _stringify.default; - } -})); -Object.defineProperty(exports, "parse", ({ - enumerable: true, - get: function () { - return _parse.default; - } -})); + this.raw = version -var _v = _interopRequireDefault(__nccwpck_require__(4757)); + // these are actually numbers + this.major = +m[1] + this.minor = +m[2] + this.patch = +m[3] -var _v2 = _interopRequireDefault(__nccwpck_require__(9982)); + if (this.major > MAX_SAFE_INTEGER || this.major < 0) { + throw new TypeError('Invalid major version') + } -var _v3 = _interopRequireDefault(__nccwpck_require__(5393)); + if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) { + throw new TypeError('Invalid minor version') + } -var _v4 = _interopRequireDefault(__nccwpck_require__(8788)); + if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) { + throw new TypeError('Invalid patch version') + } -var _nil = _interopRequireDefault(__nccwpck_require__(657)); + // numberify any prerelease numeric ids + if (!m[4]) { + this.prerelease = [] + } else { + this.prerelease = m[4].split('.').map((id) => { + if (/^[0-9]+$/.test(id)) { + const num = +id + if (num >= 0 && num < MAX_SAFE_INTEGER) { + return num + } + } + return id + }) + } -var _version = _interopRequireDefault(__nccwpck_require__(7909)); + this.build = m[5] ? m[5].split('.') : [] + this.format() + } -var _validate = _interopRequireDefault(__nccwpck_require__(4418)); + format () { + this.version = `${this.major}.${this.minor}.${this.patch}` + if (this.prerelease.length) { + this.version += `-${this.prerelease.join('.')}` + } + return this.version + } -var _stringify = _interopRequireDefault(__nccwpck_require__(4794)); + toString () { + return this.version + } -var _parse = _interopRequireDefault(__nccwpck_require__(7079)); + compare (other) { + debug('SemVer.compare', this.version, this.options, other) + if (!(other instanceof SemVer)) { + if (typeof other === 'string' && other === this.version) { + return 0 + } + other = new SemVer(other, this.options) + } -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + if (other.version === this.version) { + return 0 + } -/***/ }), + return this.compareMain(other) || this.comparePre(other) + } -/***/ 4153: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + compareMain (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } -"use strict"; + return ( + compareIdentifiers(this.major, other.major) || + compareIdentifiers(this.minor, other.minor) || + compareIdentifiers(this.patch, other.patch) + ) + } + comparePre (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -exports["default"] = void 0; + // NOT having a prerelease is > having one + if (this.prerelease.length && !other.prerelease.length) { + return -1 + } else if (!this.prerelease.length && other.prerelease.length) { + return 1 + } else if (!this.prerelease.length && !other.prerelease.length) { + return 0 + } -var _crypto = _interopRequireDefault(__nccwpck_require__(6113)); + let i = 0 + do { + const a = this.prerelease[i] + const b = other.prerelease[i] + debug('prerelease compare', i, a, b) + if (a === undefined && b === undefined) { + return 0 + } else if (b === undefined) { + return 1 + } else if (a === undefined) { + return -1 + } else if (a === b) { + continue + } else { + return compareIdentifiers(a, b) + } + } while (++i) + } -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + compareBuild (other) { + if (!(other instanceof SemVer)) { + other = new SemVer(other, this.options) + } -function md5(bytes) { - if (Array.isArray(bytes)) { - bytes = Buffer.from(bytes); - } else if (typeof bytes === 'string') { - bytes = Buffer.from(bytes, 'utf8'); + let i = 0 + do { + const a = this.build[i] + const b = other.build[i] + debug('build compare', i, a, b) + if (a === undefined && b === undefined) { + return 0 + } else if (b === undefined) { + return 1 + } else if (a === undefined) { + return -1 + } else if (a === b) { + continue + } else { + return compareIdentifiers(a, b) + } + } while (++i) } - return _crypto.default.createHash('md5').update(bytes).digest(); -} - -var _default = md5; -exports["default"] = _default; + // preminor will bump the version up to the next minor release, and immediately + // down to pre-release. premajor and prepatch work the same way. + inc (release, identifier, identifierBase) { + if (release.startsWith('pre')) { + if (!identifier && identifierBase === false) { + throw new Error('invalid increment argument: identifier is empty') + } + // Avoid an invalid semver results + if (identifier) { + const r = new RegExp(`^${this.options.loose ? src[t.PRERELEASELOOSE] : src[t.PRERELEASE]}$`) + const match = `-${identifier}`.match(r) + if (!match || match[1] !== identifier) { + throw new Error(`invalid identifier: ${identifier}`) + } + } + } -/***/ }), + switch (release) { + case 'premajor': + this.prerelease.length = 0 + this.patch = 0 + this.minor = 0 + this.major++ + this.inc('pre', identifier, identifierBase) + break + case 'preminor': + this.prerelease.length = 0 + this.patch = 0 + this.minor++ + this.inc('pre', identifier, identifierBase) + break + case 'prepatch': + // If this is already a prerelease, it will bump to the next version + // drop any prereleases that might already exist, since they are not + // relevant at this point. + this.prerelease.length = 0 + this.inc('patch', identifier, identifierBase) + this.inc('pre', identifier, identifierBase) + break + // If the input is a non-prerelease version, this acts the same as + // prepatch. + case 'prerelease': + if (this.prerelease.length === 0) { + this.inc('patch', identifier, identifierBase) + } + this.inc('pre', identifier, identifierBase) + break + case 'release': + if (this.prerelease.length === 0) { + throw new Error(`version ${this.raw} is not a prerelease`) + } + this.prerelease.length = 0 + break -/***/ 657: -/***/ ((__unused_webpack_module, exports) => { + case 'major': + // If this is a pre-major version, bump up to the same major version. + // Otherwise increment major. + // 1.0.0-5 bumps to 1.0.0 + // 1.1.0 bumps to 2.0.0 + if ( + this.minor !== 0 || + this.patch !== 0 || + this.prerelease.length === 0 + ) { + this.major++ + } + this.minor = 0 + this.patch = 0 + this.prerelease = [] + break + case 'minor': + // If this is a pre-minor version, bump up to the same minor version. + // Otherwise increment minor. + // 1.2.0-5 bumps to 1.2.0 + // 1.2.1 bumps to 1.3.0 + if (this.patch !== 0 || this.prerelease.length === 0) { + this.minor++ + } + this.patch = 0 + this.prerelease = [] + break + case 'patch': + // If this is not a pre-release version, it will increment the patch. + // If it is a pre-release it will bump up to the same patch version. + // 1.2.0-5 patches to 1.2.0 + // 1.2.0 patches to 1.2.1 + if (this.prerelease.length === 0) { + this.patch++ + } + this.prerelease = [] + break + // This probably shouldn't be used publicly. + // 1.0.0 'pre' would become 1.0.0-0 which is the wrong direction. + case 'pre': { + const base = Number(identifierBase) ? 1 : 0 -"use strict"; + if (this.prerelease.length === 0) { + this.prerelease = [base] + } else { + let i = this.prerelease.length + while (--i >= 0) { + if (typeof this.prerelease[i] === 'number') { + this.prerelease[i]++ + i = -2 + } + } + if (i === -1) { + // didn't increment anything + if (identifier === this.prerelease.join('.') && identifierBase === false) { + throw new Error('invalid increment argument: identifier already exists') + } + this.prerelease.push(base) + } + } + if (identifier) { + // 1.2.0-beta.1 bumps to 1.2.0-beta.2, + // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0 + let prerelease = [identifier, base] + if (identifierBase === false) { + prerelease = [identifier] + } + if (compareIdentifiers(this.prerelease[0], identifier) === 0) { + if (isNaN(this.prerelease[1])) { + this.prerelease = prerelease + } + } else { + this.prerelease = prerelease + } + } + break + } + default: + throw new Error(`invalid increment argument: ${release}`) + } + this.raw = this.format() + if (this.build.length) { + this.raw += `+${this.build.join('.')}` + } + return this + } +} +module.exports = SemVer -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -exports["default"] = void 0; -var _default = '00000000-0000-0000-0000-000000000000'; -exports["default"] = _default; /***/ }), -/***/ 7079: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +/***/ 48848: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -"use strict"; +const parse = __nccwpck_require__(75925) +const clean = (version, options) => { + const s = parse(version.trim().replace(/^[=v]+/, ''), options) + return s ? s.version : null +} +module.exports = clean -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -exports["default"] = void 0; +/***/ }), -var _validate = _interopRequireDefault(__nccwpck_require__(4418)); +/***/ 75098: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } +const eq = __nccwpck_require__(91898) +const neq = __nccwpck_require__(6017) +const gt = __nccwpck_require__(84123) +const gte = __nccwpck_require__(15522) +const lt = __nccwpck_require__(80194) +const lte = __nccwpck_require__(77520) -function parse(uuid) { - if (!(0, _validate.default)(uuid)) { - throw TypeError('Invalid UUID'); - } +const cmp = (a, op, b, loose) => { + switch (op) { + case '===': + if (typeof a === 'object') { + a = a.version + } + if (typeof b === 'object') { + b = b.version + } + return a === b + + case '!==': + if (typeof a === 'object') { + a = a.version + } + if (typeof b === 'object') { + b = b.version + } + return a !== b + + case '': + case '=': + case '==': + return eq(a, b, loose) - let v; - const arr = new Uint8Array(16); // Parse ########-....-....-....-............ + case '!=': + return neq(a, b, loose) - arr[0] = (v = parseInt(uuid.slice(0, 8), 16)) >>> 24; - arr[1] = v >>> 16 & 0xff; - arr[2] = v >>> 8 & 0xff; - arr[3] = v & 0xff; // Parse ........-####-....-....-............ + case '>': + return gt(a, b, loose) - arr[4] = (v = parseInt(uuid.slice(9, 13), 16)) >>> 8; - arr[5] = v & 0xff; // Parse ........-....-####-....-............ + case '>=': + return gte(a, b, loose) - arr[6] = (v = parseInt(uuid.slice(14, 18), 16)) >>> 8; - arr[7] = v & 0xff; // Parse ........-....-....-####-............ + case '<': + return lt(a, b, loose) - arr[8] = (v = parseInt(uuid.slice(19, 23), 16)) >>> 8; - arr[9] = v & 0xff; // Parse ........-....-....-....-############ - // (Use "/" to avoid 32-bit truncation when bit-shifting high-order bytes) + case '<=': + return lte(a, b, loose) - arr[10] = (v = parseInt(uuid.slice(24, 36), 16)) / 0x10000000000 & 0xff; - arr[11] = v / 0x100000000 & 0xff; - arr[12] = v >>> 24 & 0xff; - arr[13] = v >>> 16 & 0xff; - arr[14] = v >>> 8 & 0xff; - arr[15] = v & 0xff; - return arr; + default: + throw new TypeError(`Invalid operator: ${op}`) + } } +module.exports = cmp -var _default = parse; -exports["default"] = _default; /***/ }), -/***/ 690: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; +/***/ 13466: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { +const SemVer = __nccwpck_require__(48088) +const parse = __nccwpck_require__(75925) +const { safeRe: re, t } = __nccwpck_require__(9523) + +const coerce = (version, options) => { + if (version instanceof SemVer) { + return version + } + + if (typeof version === 'number') { + version = String(version) + } + + if (typeof version !== 'string') { + return null + } + + options = options || {} + + let match = null + if (!options.rtl) { + match = version.match(options.includePrerelease ? re[t.COERCEFULL] : re[t.COERCE]) + } else { + // Find the right-most coercible string that does not share + // a terminus with a more left-ward coercible string. + // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4' + // With includePrerelease option set, '1.2.3.4-rc' wants to coerce '2.3.4-rc', not '2.3.4' + // + // Walk through the string checking with a /g regexp + // Manually set the index so as to pick up overlapping matches. + // Stop when we get a match that ends at the string end, since no + // coercible string can be more right-ward without the same terminus. + const coerceRtlRegex = options.includePrerelease ? re[t.COERCERTLFULL] : re[t.COERCERTL] + let next + while ((next = coerceRtlRegex.exec(version)) && + (!match || match.index + match[0].length !== version.length) + ) { + if (!match || + next.index + next[0].length !== match.index + match[0].length) { + match = next + } + coerceRtlRegex.lastIndex = next.index + next[1].length + next[2].length + } + // leave it in a clean state + coerceRtlRegex.lastIndex = -1 + } + + if (match === null) { + return null + } + + const major = match[2] + const minor = match[3] || '0' + const patch = match[4] || '0' + const prerelease = options.includePrerelease && match[5] ? `-${match[5]}` : '' + const build = options.includePrerelease && match[6] ? `+${match[6]}` : '' + + return parse(`${major}.${minor}.${patch}${prerelease}${build}`, options) +} +module.exports = coerce -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -exports["default"] = void 0; -var _default = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i; -exports["default"] = _default; /***/ }), -/***/ 979: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +/***/ 92156: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -"use strict"; +const SemVer = __nccwpck_require__(48088) +const compareBuild = (a, b, loose) => { + const versionA = new SemVer(a, loose) + const versionB = new SemVer(b, loose) + return versionA.compare(versionB) || versionA.compareBuild(versionB) +} +module.exports = compareBuild -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -exports["default"] = rng; +/***/ }), -var _crypto = _interopRequireDefault(__nccwpck_require__(6113)); +/***/ 62804: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const compare = __nccwpck_require__(44309) +const compareLoose = (a, b) => compare(a, b, true) +module.exports = compareLoose -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } -const rnds8Pool = new Uint8Array(256); // # of random values to pre-allocate +/***/ }), -let poolPtr = rnds8Pool.length; +/***/ 44309: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -function rng() { - if (poolPtr > rnds8Pool.length - 16) { - _crypto.default.randomFillSync(rnds8Pool); +const SemVer = __nccwpck_require__(48088) +const compare = (a, b, loose) => + new SemVer(a, loose).compare(new SemVer(b, loose)) - poolPtr = 0; - } +module.exports = compare - return rnds8Pool.slice(poolPtr, poolPtr += 16); -} /***/ }), -/***/ 6631: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +/***/ 64297: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -"use strict"; +const parse = __nccwpck_require__(75925) +const diff = (version1, version2) => { + const v1 = parse(version1, null, true) + const v2 = parse(version2, null, true) + const comparison = v1.compare(v2) -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -exports["default"] = void 0; + if (comparison === 0) { + return null + } + + const v1Higher = comparison > 0 + const highVersion = v1Higher ? v1 : v2 + const lowVersion = v1Higher ? v2 : v1 + const highHasPre = !!highVersion.prerelease.length + const lowHasPre = !!lowVersion.prerelease.length + + if (lowHasPre && !highHasPre) { + // Going from prerelease -> no prerelease requires some special casing -var _crypto = _interopRequireDefault(__nccwpck_require__(6113)); + // If the low version has only a major, then it will always be a major + // Some examples: + // 1.0.0-1 -> 1.0.0 + // 1.0.0-1 -> 1.1.1 + // 1.0.0-1 -> 2.0.0 + if (!lowVersion.patch && !lowVersion.minor) { + return 'major' + } + + // If the main part has no difference + if (lowVersion.compareMain(highVersion) === 0) { + if (lowVersion.minor && !lowVersion.patch) { + return 'minor' + } + return 'patch' + } + } + + // add the `pre` prefix if we are going to a prerelease version + const prefix = highHasPre ? 'pre' : '' + + if (v1.major !== v2.major) { + return prefix + 'major' + } -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + if (v1.minor !== v2.minor) { + return prefix + 'minor' + } -function sha1(bytes) { - if (Array.isArray(bytes)) { - bytes = Buffer.from(bytes); - } else if (typeof bytes === 'string') { - bytes = Buffer.from(bytes, 'utf8'); + if (v1.patch !== v2.patch) { + return prefix + 'patch' } - return _crypto.default.createHash('sha1').update(bytes).digest(); + // high and low are preleases + return 'prerelease' } -var _default = sha1; -exports["default"] = _default; +module.exports = diff + /***/ }), -/***/ 4794: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +/***/ 91898: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -"use strict"; +const compare = __nccwpck_require__(44309) +const eq = (a, b, loose) => compare(a, b, loose) === 0 +module.exports = eq -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -exports["default"] = void 0; +/***/ }), -var _validate = _interopRequireDefault(__nccwpck_require__(4418)); +/***/ 84123: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } +const compare = __nccwpck_require__(44309) +const gt = (a, b, loose) => compare(a, b, loose) > 0 +module.exports = gt -/** - * Convert array of 16 byte values to UUID string format of the form: - * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX - */ -const byteToHex = []; -for (let i = 0; i < 256; ++i) { - byteToHex.push((i + 0x100).toString(16).substr(1)); -} +/***/ }), + +/***/ 15522: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const compare = __nccwpck_require__(44309) +const gte = (a, b, loose) => compare(a, b, loose) >= 0 +module.exports = gte + + +/***/ }), + +/***/ 30900: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -function stringify(arr, offset = 0) { - // Note: Be careful editing this code! It's been tuned for performance - // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434 - const uuid = (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase(); // Consistency check for valid UUID. If this throws, it's likely due to one - // of the following: - // - One or more input array values don't map to a hex octet (leading to - // "undefined" in the uuid) - // - Invalid input values for the RFC `version` or `variant` fields +const SemVer = __nccwpck_require__(48088) - if (!(0, _validate.default)(uuid)) { - throw TypeError('Stringified UUID is invalid'); +const inc = (version, release, options, identifier, identifierBase) => { + if (typeof (options) === 'string') { + identifierBase = identifier + identifier = options + options = undefined } - return uuid; + try { + return new SemVer( + version instanceof SemVer ? version.version : version, + options + ).inc(release, identifier, identifierBase).version + } catch (er) { + return null + } } +module.exports = inc -var _default = stringify; -exports["default"] = _default; /***/ }), -/***/ 4757: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +/***/ 80194: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -"use strict"; +const compare = __nccwpck_require__(44309) +const lt = (a, b, loose) => compare(a, b, loose) < 0 +module.exports = lt -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -exports["default"] = void 0; +/***/ }), + +/***/ 77520: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -var _rng = _interopRequireDefault(__nccwpck_require__(979)); +const compare = __nccwpck_require__(44309) +const lte = (a, b, loose) => compare(a, b, loose) <= 0 +module.exports = lte -var _stringify = _interopRequireDefault(__nccwpck_require__(4794)); -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } +/***/ }), -// **`v1()` - Generate time-based UUID** -// -// Inspired by https://github.com/LiosK/UUID.js -// and http://docs.python.org/library/uuid.html -let _nodeId; +/***/ 76688: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const SemVer = __nccwpck_require__(48088) +const major = (a, loose) => new SemVer(a, loose).major +module.exports = major -let _clockseq; // Previous uuid creation time +/***/ }), -let _lastMSecs = 0; -let _lastNSecs = 0; // See https://github.com/uuidjs/uuid for API details +/***/ 38447: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -function v1(options, buf, offset) { - let i = buf && offset || 0; - const b = buf || new Array(16); - options = options || {}; - let node = options.node || _nodeId; - let clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; // node and clockseq need to be initialized to random values if they're not - // specified. We do this lazily to minimize issues related to insufficient - // system entropy. See #189 +const SemVer = __nccwpck_require__(48088) +const minor = (a, loose) => new SemVer(a, loose).minor +module.exports = minor - if (node == null || clockseq == null) { - const seedBytes = options.random || (options.rng || _rng.default)(); - if (node == null) { - // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1) - node = _nodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]]; - } +/***/ }), + +/***/ 6017: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const compare = __nccwpck_require__(44309) +const neq = (a, b, loose) => compare(a, b, loose) !== 0 +module.exports = neq + + +/***/ }), - if (clockseq == null) { - // Per 4.2.2, randomize (14 bit) clockseq - clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff; +/***/ 75925: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const SemVer = __nccwpck_require__(48088) +const parse = (version, options, throwErrors = false) => { + if (version instanceof SemVer) { + return version + } + try { + return new SemVer(version, options) + } catch (er) { + if (!throwErrors) { + return null } - } // UUID timestamps are 100 nano-second units since the Gregorian epoch, - // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so - // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs' - // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00. + throw er + } +} + +module.exports = parse + +/***/ }), - let msecs = options.msecs !== undefined ? options.msecs : Date.now(); // Per 4.2.1.2, use count of uuid's generated during the current clock - // cycle to simulate higher resolution clock +/***/ 42866: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - let nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; // Time since last uuid creation (in msecs) +const SemVer = __nccwpck_require__(48088) +const patch = (a, loose) => new SemVer(a, loose).patch +module.exports = patch - const dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; // Per 4.2.1.2, Bump clockseq on clock regression - if (dt < 0 && options.clockseq === undefined) { - clockseq = clockseq + 1 & 0x3fff; - } // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new - // time interval +/***/ }), +/***/ 24016: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) { - nsecs = 0; - } // Per 4.2.1.2 Throw error if too many uuids are requested +const parse = __nccwpck_require__(75925) +const prerelease = (version, options) => { + const parsed = parse(version, options) + return (parsed && parsed.prerelease.length) ? parsed.prerelease : null +} +module.exports = prerelease - if (nsecs >= 10000) { - throw new Error("uuid.v1(): Can't create more than 10M uuids/sec"); - } +/***/ }), - _lastMSecs = msecs; - _lastNSecs = nsecs; - _clockseq = clockseq; // Per 4.1.4 - Convert from unix epoch to Gregorian epoch +/***/ 76417: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - msecs += 12219292800000; // `time_low` +const compare = __nccwpck_require__(44309) +const rcompare = (a, b, loose) => compare(b, a, loose) +module.exports = rcompare - const tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000; - b[i++] = tl >>> 24 & 0xff; - b[i++] = tl >>> 16 & 0xff; - b[i++] = tl >>> 8 & 0xff; - b[i++] = tl & 0xff; // `time_mid` - const tmh = msecs / 0x100000000 * 10000 & 0xfffffff; - b[i++] = tmh >>> 8 & 0xff; - b[i++] = tmh & 0xff; // `time_high_and_version` +/***/ }), - b[i++] = tmh >>> 24 & 0xf | 0x10; // include version +/***/ 8701: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - b[i++] = tmh >>> 16 & 0xff; // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant) +const compareBuild = __nccwpck_require__(92156) +const rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose)) +module.exports = rsort - b[i++] = clockseq >>> 8 | 0x80; // `clock_seq_low` - b[i++] = clockseq & 0xff; // `node` +/***/ }), - for (let n = 0; n < 6; ++n) { - b[i + n] = node[n]; - } +/***/ 6055: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - return buf || (0, _stringify.default)(b); +const Range = __nccwpck_require__(9828) +const satisfies = (version, range, options) => { + try { + range = new Range(range, options) + } catch (er) { + return false + } + return range.test(version) } +module.exports = satisfies -var _default = v1; -exports["default"] = _default; /***/ }), -/***/ 9982: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +/***/ 61426: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -"use strict"; +const compareBuild = __nccwpck_require__(92156) +const sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose)) +module.exports = sort -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -exports["default"] = void 0; +/***/ }), + +/***/ 19601: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const parse = __nccwpck_require__(75925) +const valid = (version, options) => { + const v = parse(version, options) + return v ? v.version : null +} +module.exports = valid + -var _v = _interopRequireDefault(__nccwpck_require__(4085)); +/***/ }), -var _md = _interopRequireDefault(__nccwpck_require__(4153)); +/***/ 11383: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } +// just pre-load all the stuff that index.js lazily exports +const internalRe = __nccwpck_require__(9523) +const constants = __nccwpck_require__(42293) +const SemVer = __nccwpck_require__(48088) +const identifiers = __nccwpck_require__(92463) +const parse = __nccwpck_require__(75925) +const valid = __nccwpck_require__(19601) +const clean = __nccwpck_require__(48848) +const inc = __nccwpck_require__(30900) +const diff = __nccwpck_require__(64297) +const major = __nccwpck_require__(76688) +const minor = __nccwpck_require__(38447) +const patch = __nccwpck_require__(42866) +const prerelease = __nccwpck_require__(24016) +const compare = __nccwpck_require__(44309) +const rcompare = __nccwpck_require__(76417) +const compareLoose = __nccwpck_require__(62804) +const compareBuild = __nccwpck_require__(92156) +const sort = __nccwpck_require__(61426) +const rsort = __nccwpck_require__(8701) +const gt = __nccwpck_require__(84123) +const lt = __nccwpck_require__(80194) +const eq = __nccwpck_require__(91898) +const neq = __nccwpck_require__(6017) +const gte = __nccwpck_require__(15522) +const lte = __nccwpck_require__(77520) +const cmp = __nccwpck_require__(75098) +const coerce = __nccwpck_require__(13466) +const Comparator = __nccwpck_require__(91532) +const Range = __nccwpck_require__(9828) +const satisfies = __nccwpck_require__(6055) +const toComparators = __nccwpck_require__(52706) +const maxSatisfying = __nccwpck_require__(20579) +const minSatisfying = __nccwpck_require__(10832) +const minVersion = __nccwpck_require__(34179) +const validRange = __nccwpck_require__(2098) +const outside = __nccwpck_require__(60420) +const gtr = __nccwpck_require__(9380) +const ltr = __nccwpck_require__(33323) +const intersects = __nccwpck_require__(27008) +const simplifyRange = __nccwpck_require__(75297) +const subset = __nccwpck_require__(7863) +module.exports = { + parse, + valid, + clean, + inc, + diff, + major, + minor, + patch, + prerelease, + compare, + rcompare, + compareLoose, + compareBuild, + sort, + rsort, + gt, + lt, + eq, + neq, + gte, + lte, + cmp, + coerce, + Comparator, + Range, + satisfies, + toComparators, + maxSatisfying, + minSatisfying, + minVersion, + validRange, + outside, + gtr, + ltr, + intersects, + simplifyRange, + subset, + SemVer, + re: internalRe.re, + src: internalRe.src, + tokens: internalRe.t, + SEMVER_SPEC_VERSION: constants.SEMVER_SPEC_VERSION, + RELEASE_TYPES: constants.RELEASE_TYPES, + compareIdentifiers: identifiers.compareIdentifiers, + rcompareIdentifiers: identifiers.rcompareIdentifiers, +} -const v3 = (0, _v.default)('v3', 0x30, _md.default); -var _default = v3; -exports["default"] = _default; /***/ }), -/***/ 4085: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +/***/ 42293: +/***/ ((module) => { -"use strict"; +// Note: this is the semver.org version of the spec that it implements +// Not necessarily the package version of this code. +const SEMVER_SPEC_VERSION = '2.0.0' + +const MAX_LENGTH = 256 +const MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || +/* istanbul ignore next */ 9007199254740991 +// Max safe segment length for coercion. +const MAX_SAFE_COMPONENT_LENGTH = 16 -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -exports["default"] = _default; -exports.URL = exports.DNS = void 0; +// Max safe length for a build identifier. The max length minus 6 characters for +// the shortest version with a build 0.0.0+BUILD. +const MAX_SAFE_BUILD_LENGTH = MAX_LENGTH - 6 + +const RELEASE_TYPES = [ + 'major', + 'premajor', + 'minor', + 'preminor', + 'patch', + 'prepatch', + 'prerelease', +] + +module.exports = { + MAX_LENGTH, + MAX_SAFE_COMPONENT_LENGTH, + MAX_SAFE_BUILD_LENGTH, + MAX_SAFE_INTEGER, + RELEASE_TYPES, + SEMVER_SPEC_VERSION, + FLAG_INCLUDE_PRERELEASE: 0b001, + FLAG_LOOSE: 0b010, +} + + +/***/ }), + +/***/ 50427: +/***/ ((module) => { + +const debug = ( + typeof process === 'object' && + process.env && + process.env.NODE_DEBUG && + /\bsemver\b/i.test(process.env.NODE_DEBUG) +) ? (...args) => console.error('SEMVER', ...args) + : () => {} -var _stringify = _interopRequireDefault(__nccwpck_require__(4794)); +module.exports = debug -var _parse = _interopRequireDefault(__nccwpck_require__(7079)); -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } +/***/ }), -function stringToBytes(str) { - str = unescape(encodeURIComponent(str)); // UTF8 escape +/***/ 92463: +/***/ ((module) => { - const bytes = []; +const numeric = /^[0-9]+$/ +const compareIdentifiers = (a, b) => { + const anum = numeric.test(a) + const bnum = numeric.test(b) - for (let i = 0; i < str.length; ++i) { - bytes.push(str.charCodeAt(i)); + if (anum && bnum) { + a = +a + b = +b } - return bytes; + return a === b ? 0 + : (anum && !bnum) ? -1 + : (bnum && !anum) ? 1 + : a < b ? -1 + : 1 +} + +const rcompareIdentifiers = (a, b) => compareIdentifiers(b, a) + +module.exports = { + compareIdentifiers, + rcompareIdentifiers, } -const DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8'; -exports.DNS = DNS; -const URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8'; -exports.URL = URL; -function _default(name, version, hashfunc) { - function generateUUID(value, namespace, buf, offset) { - if (typeof value === 'string') { - value = stringToBytes(value); - } +/***/ }), - if (typeof namespace === 'string') { - namespace = (0, _parse.default)(namespace); - } +/***/ 15339: +/***/ ((module) => { - if (namespace.length !== 16) { - throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)'); - } // Compute hash of namespace and value, Per 4.3 - // Future: Use spread syntax when supported on all platforms, e.g. `bytes = - // hashfunc([...namespace, ... value])` +class LRUCache { + constructor () { + this.max = 1000 + this.map = new Map() + } + get (key) { + const value = this.map.get(key) + if (value === undefined) { + return undefined + } else { + // Remove the key from the map and add it to the end + this.map.delete(key) + this.map.set(key, value) + return value + } + } - let bytes = new Uint8Array(16 + value.length); - bytes.set(namespace); - bytes.set(value, namespace.length); - bytes = hashfunc(bytes); - bytes[6] = bytes[6] & 0x0f | version; - bytes[8] = bytes[8] & 0x3f | 0x80; + delete (key) { + return this.map.delete(key) + } - if (buf) { - offset = offset || 0; + set (key, value) { + const deleted = this.delete(key) - for (let i = 0; i < 16; ++i) { - buf[offset + i] = bytes[i]; + if (!deleted && value !== undefined) { + // If cache is full, delete the least recently used item + if (this.map.size >= this.max) { + const firstKey = this.map.keys().next().value + this.delete(firstKey) } - return buf; + this.map.set(key, value) } - return (0, _stringify.default)(bytes); - } // Function#name is not settable on some platforms (#270) + return this + } +} + +module.exports = LRUCache - try { - generateUUID.name = name; // eslint-disable-next-line no-empty - } catch (err) {} // For CommonJS default export support +/***/ }), +/***/ 40785: +/***/ ((module) => { + +// parse out just the options we care about +const looseOption = Object.freeze({ loose: true }) +const emptyOpts = Object.freeze({ }) +const parseOptions = options => { + if (!options) { + return emptyOpts + } - generateUUID.DNS = DNS; - generateUUID.URL = URL; - return generateUUID; + if (typeof options !== 'object') { + return looseOption + } + + return options } +module.exports = parseOptions + /***/ }), -/***/ 5393: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +/***/ 9523: +/***/ ((module, exports, __nccwpck_require__) => { -"use strict"; +const { + MAX_SAFE_COMPONENT_LENGTH, + MAX_SAFE_BUILD_LENGTH, + MAX_LENGTH, +} = __nccwpck_require__(42293) +const debug = __nccwpck_require__(50427) +exports = module.exports = {} +// The actual regexps go on exports.re +const re = exports.re = [] +const safeRe = exports.safeRe = [] +const src = exports.src = [] +const safeSrc = exports.safeSrc = [] +const t = exports.t = {} +let R = 0 -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -exports["default"] = void 0; +const LETTERDASHNUMBER = '[a-zA-Z0-9-]' -var _rng = _interopRequireDefault(__nccwpck_require__(979)); +// Replace some greedy regex tokens to prevent regex dos issues. These regex are +// used internally via the safeRe object since all inputs in this library get +// normalized first to trim and collapse all extra whitespace. The original +// regexes are exported for userland consumption and lower level usage. A +// future breaking change could export the safer regex only with a note that +// all input should have extra whitespace removed. +const safeRegexReplacements = [ + ['\\s', 1], + ['\\d', MAX_LENGTH], + [LETTERDASHNUMBER, MAX_SAFE_BUILD_LENGTH], +] -var _stringify = _interopRequireDefault(__nccwpck_require__(4794)); +const makeSafeRegex = (value) => { + for (const [token, max] of safeRegexReplacements) { + value = value + .split(`${token}*`).join(`${token}{0,${max}}`) + .split(`${token}+`).join(`${token}{1,${max}}`) + } + return value +} -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } +const createToken = (name, value, isGlobal) => { + const safe = makeSafeRegex(value) + const index = R++ + debug(name, index, value) + t[name] = index + src[index] = value + safeSrc[index] = safe + re[index] = new RegExp(value, isGlobal ? 'g' : undefined) + safeRe[index] = new RegExp(safe, isGlobal ? 'g' : undefined) +} -function v4(options, buf, offset) { - options = options || {}; +// The following Regular Expressions can be used for tokenizing, +// validating, and parsing SemVer version strings. - const rnds = options.random || (options.rng || _rng.default)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` +// ## Numeric Identifier +// A single `0`, or a non-zero digit followed by zero or more digits. +createToken('NUMERICIDENTIFIER', '0|[1-9]\\d*') +createToken('NUMERICIDENTIFIERLOOSE', '\\d+') - rnds[6] = rnds[6] & 0x0f | 0x40; - rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided +// ## Non-numeric Identifier +// Zero or more digits, followed by a letter or hyphen, and then zero or +// more letters, digits, or hyphens. - if (buf) { - offset = offset || 0; +createToken('NONNUMERICIDENTIFIER', `\\d*[a-zA-Z-]${LETTERDASHNUMBER}*`) - for (let i = 0; i < 16; ++i) { - buf[offset + i] = rnds[i]; - } +// ## Main Version +// Three dot-separated numeric identifiers. - return buf; - } +createToken('MAINVERSION', `(${src[t.NUMERICIDENTIFIER]})\\.` + + `(${src[t.NUMERICIDENTIFIER]})\\.` + + `(${src[t.NUMERICIDENTIFIER]})`) - return (0, _stringify.default)(rnds); -} +createToken('MAINVERSIONLOOSE', `(${src[t.NUMERICIDENTIFIERLOOSE]})\\.` + + `(${src[t.NUMERICIDENTIFIERLOOSE]})\\.` + + `(${src[t.NUMERICIDENTIFIERLOOSE]})`) -var _default = v4; -exports["default"] = _default; +// ## Pre-release Version Identifier +// A numeric identifier, or a non-numeric identifier. -/***/ }), +createToken('PRERELEASEIDENTIFIER', `(?:${src[t.NUMERICIDENTIFIER] +}|${src[t.NONNUMERICIDENTIFIER]})`) -/***/ 8788: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +createToken('PRERELEASEIDENTIFIERLOOSE', `(?:${src[t.NUMERICIDENTIFIERLOOSE] +}|${src[t.NONNUMERICIDENTIFIER]})`) -"use strict"; +// ## Pre-release Version +// Hyphen, followed by one or more dot-separated pre-release version +// identifiers. +createToken('PRERELEASE', `(?:-(${src[t.PRERELEASEIDENTIFIER] +}(?:\\.${src[t.PRERELEASEIDENTIFIER]})*))`) -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -exports["default"] = void 0; +createToken('PRERELEASELOOSE', `(?:-?(${src[t.PRERELEASEIDENTIFIERLOOSE] +}(?:\\.${src[t.PRERELEASEIDENTIFIERLOOSE]})*))`) -var _v = _interopRequireDefault(__nccwpck_require__(4085)); +// ## Build Metadata Identifier +// Any combination of digits, letters, or hyphens. -var _sha = _interopRequireDefault(__nccwpck_require__(6631)); +createToken('BUILDIDENTIFIER', `${LETTERDASHNUMBER}+`) -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } +// ## Build Metadata +// Plus sign, followed by one or more period-separated build metadata +// identifiers. -const v5 = (0, _v.default)('v5', 0x50, _sha.default); -var _default = v5; -exports["default"] = _default; +createToken('BUILD', `(?:\\+(${src[t.BUILDIDENTIFIER] +}(?:\\.${src[t.BUILDIDENTIFIER]})*))`) -/***/ }), +// ## Full Version String +// A main version, followed optionally by a pre-release version and +// build metadata. -/***/ 4418: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +// Note that the only major, minor, patch, and pre-release sections of +// the version string are capturing groups. The build metadata is not a +// capturing group, because it should not ever be used in version +// comparison. -"use strict"; +createToken('FULLPLAIN', `v?${src[t.MAINVERSION] +}${src[t.PRERELEASE]}?${ + src[t.BUILD]}?`) +createToken('FULL', `^${src[t.FULLPLAIN]}$`) -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -exports["default"] = void 0; +// like full, but allows v1.2.3 and =1.2.3, which people do sometimes. +// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty +// common in the npm registry. +createToken('LOOSEPLAIN', `[v=\\s]*${src[t.MAINVERSIONLOOSE] +}${src[t.PRERELEASELOOSE]}?${ + src[t.BUILD]}?`) -var _regex = _interopRequireDefault(__nccwpck_require__(690)); +createToken('LOOSE', `^${src[t.LOOSEPLAIN]}$`) -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } +createToken('GTLT', '((?:<|>)?=?)') -function validate(uuid) { - return typeof uuid === 'string' && _regex.default.test(uuid); -} +// Something like "2.*" or "1.2.x". +// Note that "x.x" is a valid xRange identifer, meaning "any version" +// Only the first item is strictly required. +createToken('XRANGEIDENTIFIERLOOSE', `${src[t.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`) +createToken('XRANGEIDENTIFIER', `${src[t.NUMERICIDENTIFIER]}|x|X|\\*`) -var _default = validate; -exports["default"] = _default; +createToken('XRANGEPLAIN', `[v=\\s]*(${src[t.XRANGEIDENTIFIER]})` + + `(?:\\.(${src[t.XRANGEIDENTIFIER]})` + + `(?:\\.(${src[t.XRANGEIDENTIFIER]})` + + `(?:${src[t.PRERELEASE]})?${ + src[t.BUILD]}?` + + `)?)?`) -/***/ }), +createToken('XRANGEPLAINLOOSE', `[v=\\s]*(${src[t.XRANGEIDENTIFIERLOOSE]})` + + `(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` + + `(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})` + + `(?:${src[t.PRERELEASELOOSE]})?${ + src[t.BUILD]}?` + + `)?)?`) -/***/ 7909: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +createToken('XRANGE', `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAIN]}$`) +createToken('XRANGELOOSE', `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAINLOOSE]}$`) -"use strict"; +// Coercion. +// Extract anything that could conceivably be a part of a valid semver +createToken('COERCEPLAIN', `${'(^|[^\\d])' + + '(\\d{1,'}${MAX_SAFE_COMPONENT_LENGTH}})` + + `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` + + `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?`) +createToken('COERCE', `${src[t.COERCEPLAIN]}(?:$|[^\\d])`) +createToken('COERCEFULL', src[t.COERCEPLAIN] + + `(?:${src[t.PRERELEASE]})?` + + `(?:${src[t.BUILD]})?` + + `(?:$|[^\\d])`) +createToken('COERCERTL', src[t.COERCE], true) +createToken('COERCERTLFULL', src[t.COERCEFULL], true) + +// Tilde ranges. +// Meaning is "reasonably at or greater than" +createToken('LONETILDE', '(?:~>?)') +createToken('TILDETRIM', `(\\s*)${src[t.LONETILDE]}\\s+`, true) +exports.tildeTrimReplace = '$1~' -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -exports["default"] = void 0; +createToken('TILDE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAIN]}$`) +createToken('TILDELOOSE', `^${src[t.LONETILDE]}${src[t.XRANGEPLAINLOOSE]}$`) + +// Caret ranges. +// Meaning is "at least and backwards compatible with" +createToken('LONECARET', '(?:\\^)') -var _validate = _interopRequireDefault(__nccwpck_require__(4418)); +createToken('CARETTRIM', `(\\s*)${src[t.LONECARET]}\\s+`, true) +exports.caretTrimReplace = '$1^' -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } +createToken('CARET', `^${src[t.LONECARET]}${src[t.XRANGEPLAIN]}$`) +createToken('CARETLOOSE', `^${src[t.LONECARET]}${src[t.XRANGEPLAINLOOSE]}$`) -function version(uuid) { - if (!(0, _validate.default)(uuid)) { - throw TypeError('Invalid UUID'); - } +// A simple gt/lt/eq thing, or just "" to indicate "any version" +createToken('COMPARATORLOOSE', `^${src[t.GTLT]}\\s*(${src[t.LOOSEPLAIN]})$|^$`) +createToken('COMPARATOR', `^${src[t.GTLT]}\\s*(${src[t.FULLPLAIN]})$|^$`) - return parseInt(uuid.substr(14, 1), 16); -} +// An expression to strip any whitespace between the gtlt and the thing +// it modifies, so that `> 1.2.3` ==> `>1.2.3` +createToken('COMPARATORTRIM', `(\\s*)${src[t.GTLT] +}\\s*(${src[t.LOOSEPLAIN]}|${src[t.XRANGEPLAIN]})`, true) +exports.comparatorTrimReplace = '$1$2$3' + +// Something like `1.2.3 - 1.2.4` +// Note that these all use the loose form, because they'll be +// checked against either the strict or loose comparator form +// later. +createToken('HYPHENRANGE', `^\\s*(${src[t.XRANGEPLAIN]})` + + `\\s+-\\s+` + + `(${src[t.XRANGEPLAIN]})` + + `\\s*$`) + +createToken('HYPHENRANGELOOSE', `^\\s*(${src[t.XRANGEPLAINLOOSE]})` + + `\\s+-\\s+` + + `(${src[t.XRANGEPLAINLOOSE]})` + + `\\s*$`) + +// Star ranges basically just allow anything at all. +createToken('STAR', '(<|>)?=?\\s*\\*') +// >=0.0.0 is like a star +createToken('GTE0', '^\\s*>=\\s*0\\.0\\.0\\s*$') +createToken('GTE0PRE', '^\\s*>=\\s*0\\.0\\.0-0\\s*$') -var _default = version; -exports["default"] = _default; /***/ }), -/***/ 7094: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +/***/ 9380: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -"use strict"; +// Determine if version is greater than all the versions possible in the range. +const outside = __nccwpck_require__(60420) +const gtr = (version, range, options) => outside(version, range, '>', options) +module.exports = gtr -Object.defineProperty(exports, "__esModule", ({ value: true })); +/***/ }), -var logger$1 = __nccwpck_require__(3233); +/***/ 27008: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -/** - * When a poller is manually stopped through the `stopPolling` method, - * the poller will be rejected with an instance of the PollerStoppedError. - */ -class PollerStoppedError extends Error { - constructor(message) { - super(message); - this.name = "PollerStoppedError"; - Object.setPrototypeOf(this, PollerStoppedError.prototype); - } -} -/** - * When a poller is cancelled through the `cancelOperation` method, - * the poller will be rejected with an instance of the PollerCancelledError. - */ -class PollerCancelledError extends Error { - constructor(message) { - super(message); - this.name = "PollerCancelledError"; - Object.setPrototypeOf(this, PollerCancelledError.prototype); - } -} -/** - * A class that represents the definition of a program that polls through consecutive requests - * until it reaches a state of completion. - * - * A poller can be executed manually, by polling request by request by calling to the `poll()` method repeatedly, until its operation is completed. - * It also provides a way to wait until the operation completes, by calling `pollUntilDone()` and waiting until the operation finishes. - * Pollers can also request the cancellation of the ongoing process to whom is providing the underlying long running operation. - * - * ```ts - * const poller = new MyPoller(); - * - * // Polling just once: - * await poller.poll(); - * - * // We can try to cancel the request here, by calling: - * // - * // await poller.cancelOperation(); - * // - * - * // Getting the final result: - * const result = await poller.pollUntilDone(); - * ``` - * - * The Poller is defined by two types, a type representing the state of the poller, which - * must include a basic set of properties from `PollOperationState`, - * and a return type defined by `TResult`, which can be anything. - * - * The Poller class implements the `PollerLike` interface, which allows poller implementations to avoid having - * to export the Poller's class directly, and instead only export the already instantiated poller with the PollerLike type. - * - * ```ts - * class Client { - * public async makePoller: PollerLike { - * const poller = new MyPoller({}); - * // It might be preferred to return the poller after the first request is made, - * // so that some information can be obtained right away. - * await poller.poll(); - * return poller; - * } - * } - * - * const poller: PollerLike = myClient.makePoller(); - * ``` - * - * A poller can be created through its constructor, then it can be polled until it's completed. - * At any point in time, the state of the poller can be obtained without delay through the getOperationState method. - * At any point in time, the intermediate forms of the result type can be requested without delay. - * Once the underlying operation is marked as completed, the poller will stop and the final value will be returned. - * - * ```ts - * const poller = myClient.makePoller(); - * const state: MyOperationState = poller.getOperationState(); - * - * // The intermediate result can be obtained at any time. - * const result: MyResult | undefined = poller.getResult(); - * - * // The final result can only be obtained after the poller finishes. - * const result: MyResult = await poller.pollUntilDone(); - * ``` - * - */ -// eslint-disable-next-line no-use-before-define -class Poller { - /** - * A poller needs to be initialized by passing in at least the basic properties of the `PollOperation`. - * - * When writing an implementation of a Poller, this implementation needs to deal with the initialization - * of any custom state beyond the basic definition of the poller. The basic poller assumes that the poller's - * operation has already been defined, at least its basic properties. The code below shows how to approach - * the definition of the constructor of a new custom poller. - * - * ```ts - * export class MyPoller extends Poller { - * constructor({ - * // Anything you might need outside of the basics - * }) { - * let state: MyOperationState = { - * privateProperty: private, - * publicProperty: public, - * }; - * - * const operation = { - * state, - * update, - * cancel, - * toString - * } - * - * // Sending the operation to the parent's constructor. - * super(operation); - * - * // You can assign more local properties here. - * } - * } - * ``` - * - * Inside of this constructor, a new promise is created. This will be used to - * tell the user when the poller finishes (see `pollUntilDone()`). The promise's - * resolve and reject methods are also used internally to control when to resolve - * or reject anyone waiting for the poller to finish. - * - * The constructor of a custom implementation of a poller is where any serialized version of - * a previous poller's operation should be deserialized into the operation sent to the - * base constructor. For example: - * - * ```ts - * export class MyPoller extends Poller { - * constructor( - * baseOperation: string | undefined - * ) { - * let state: MyOperationState = {}; - * if (baseOperation) { - * state = { - * ...JSON.parse(baseOperation).state, - * ...state - * }; - * } - * const operation = { - * state, - * // ... - * } - * super(operation); - * } - * } - * ``` - * - * @param operation - Must contain the basic properties of `PollOperation`. - */ - constructor(operation) { - this.stopped = true; - this.pollProgressCallbacks = []; - this.operation = operation; - this.promise = new Promise((resolve, reject) => { - this.resolve = resolve; - this.reject = reject; - }); - // This prevents the UnhandledPromiseRejectionWarning in node.js from being thrown. - // The above warning would get thrown if `poller.poll` is called, it returns an error, - // and pullUntilDone did not have a .catch or await try/catch on it's return value. - this.promise.catch(() => { - /* intentionally blank */ - }); - } - /** - * Starts a loop that will break only if the poller is done - * or if the poller is stopped. - */ - async startPolling() { - if (this.stopped) { - this.stopped = false; - } - while (!this.isStopped() && !this.isDone()) { - await this.poll(); - await this.delay(); - } - } - /** - * pollOnce does one polling, by calling to the update method of the underlying - * poll operation to make any relevant change effective. - * - * It only optionally receives an object with an abortSignal property, from \@azure/abort-controller's AbortSignalLike. - * - * @param options - Optional properties passed to the operation's update method. - */ - async pollOnce(options = {}) { - try { - if (!this.isDone()) { - this.operation = await this.operation.update({ - abortSignal: options.abortSignal, - fireProgress: this.fireProgress.bind(this), - }); - if (this.isDone() && this.resolve) { - // If the poller has finished polling, this means we now have a result. - // However, it can be the case that TResult is instantiated to void, so - // we are not expecting a result anyway. To assert that we might not - // have a result eventually after finishing polling, we cast the result - // to TResult. - this.resolve(this.operation.state.result); - } - } - } - catch (e) { - this.operation.state.error = e; - if (this.reject) { - this.reject(e); - } - throw e; - } - } - /** - * fireProgress calls the functions passed in via onProgress the method of the poller. - * - * It loops over all of the callbacks received from onProgress, and executes them, sending them - * the current operation state. - * - * @param state - The current operation state. - */ - fireProgress(state) { - for (const callback of this.pollProgressCallbacks) { - callback(state); - } - } - /** - * Invokes the underlying operation's cancel method, and rejects the - * pollUntilDone promise. - */ - async cancelOnce(options = {}) { - this.operation = await this.operation.cancel(options); - if (this.reject) { - this.reject(new PollerCancelledError("Poller cancelled")); - } - } - /** - * Returns a promise that will resolve once a single polling request finishes. - * It does this by calling the update method of the Poller's operation. - * - * It only optionally receives an object with an abortSignal property, from \@azure/abort-controller's AbortSignalLike. - * - * @param options - Optional properties passed to the operation's update method. - */ - poll(options = {}) { - if (!this.pollOncePromise) { - this.pollOncePromise = this.pollOnce(options); - const clearPollOncePromise = () => { - this.pollOncePromise = undefined; - }; - this.pollOncePromise.then(clearPollOncePromise, clearPollOncePromise).catch(this.reject); - } - return this.pollOncePromise; - } - /** - * Returns a promise that will resolve once the underlying operation is completed. - */ - async pollUntilDone() { - if (this.stopped) { - this.startPolling().catch(this.reject); - } - return this.promise; - } - /** - * Invokes the provided callback after each polling is completed, - * sending the current state of the poller's operation. - * - * It returns a method that can be used to stop receiving updates on the given callback function. - */ - onProgress(callback) { - this.pollProgressCallbacks.push(callback); - return () => { - this.pollProgressCallbacks = this.pollProgressCallbacks.filter((c) => c !== callback); - }; - } - /** - * Returns true if the poller has finished polling. - */ - isDone() { - const state = this.operation.state; - return Boolean(state.isCompleted || state.isCancelled || state.error); - } - /** - * Stops the poller from continuing to poll. - */ - stopPolling() { - if (!this.stopped) { - this.stopped = true; - if (this.reject) { - this.reject(new PollerStoppedError("This poller is already stopped")); - } - } - } - /** - * Returns true if the poller is stopped. - */ - isStopped() { - return this.stopped; - } - /** - * Attempts to cancel the underlying operation. - * - * It only optionally receives an object with an abortSignal property, from \@azure/abort-controller's AbortSignalLike. - * - * If it's called again before it finishes, it will throw an error. - * - * @param options - Optional properties passed to the operation's update method. - */ - cancelOperation(options = {}) { - if (!this.stopped) { - this.stopped = true; - } - if (!this.cancelPromise) { - this.cancelPromise = this.cancelOnce(options); - } - else if (options.abortSignal) { - throw new Error("A cancel request is currently pending"); - } - return this.cancelPromise; - } - /** - * Returns the state of the operation. - * - * Even though TState will be the same type inside any of the methods of any extension of the Poller class, - * implementations of the pollers can customize what's shared with the public by writing their own - * version of the `getOperationState` method, and by defining two types, one representing the internal state of the poller - * and a public type representing a safe to share subset of the properties of the internal state. - * Their definition of getOperationState can then return their public type. - * - * Example: - * - * ```ts - * // Let's say we have our poller's operation state defined as: - * interface MyOperationState extends PollOperationState { - * privateProperty?: string; - * publicProperty?: string; - * } - * - * // To allow us to have a true separation of public and private state, we have to define another interface: - * interface PublicState extends PollOperationState { - * publicProperty?: string; - * } - * - * // Then, we define our Poller as follows: - * export class MyPoller extends Poller { - * // ... More content is needed here ... - * - * public getOperationState(): PublicState { - * const state: PublicState = this.operation.state; - * return { - * // Properties from PollOperationState - * isStarted: state.isStarted, - * isCompleted: state.isCompleted, - * isCancelled: state.isCancelled, - * error: state.error, - * result: state.result, - * - * // The only other property needed by PublicState. - * publicProperty: state.publicProperty - * } - * } - * } - * ``` - * - * You can see this in the tests of this repository, go to the file: - * `../test/utils/testPoller.ts` - * and look for the getOperationState implementation. - */ - getOperationState() { - return this.operation.state; - } - /** - * Returns the result value of the operation, - * regardless of the state of the poller. - * It can return undefined or an incomplete form of the final TResult value - * depending on the implementation. - */ - getResult() { - const state = this.operation.state; - return state.result; - } - /** - * Returns a serialized version of the poller's operation - * by invoking the operation's toString method. - */ - toString() { - return this.operation.toString(); - } +const Range = __nccwpck_require__(9828) +const intersects = (r1, r2, options) => { + r1 = new Range(r1, options) + r2 = new Range(r2, options) + return r1.intersects(r2, options) } +module.exports = intersects -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -/** - * Detects where the continuation token is and returns it. Notice that azure-asyncoperation - * must be checked first before the other location headers because there are scenarios - * where both azure-asyncoperation and location could be present in the same response but - * azure-asyncoperation should be the one to use for polling. - */ -function getPollingUrl(rawResponse, defaultPath) { - var _a, _b, _c; - return ((_c = (_b = (_a = getAzureAsyncOperation(rawResponse)) !== null && _a !== void 0 ? _a : getOperationLocation(rawResponse)) !== null && _b !== void 0 ? _b : getLocation(rawResponse)) !== null && _c !== void 0 ? _c : defaultPath); -} -function getLocation(rawResponse) { - return rawResponse.headers["location"]; -} -function getOperationLocation(rawResponse) { - return rawResponse.headers["operation-location"]; -} -function getAzureAsyncOperation(rawResponse) { - return rawResponse.headers["azure-asyncoperation"]; -} -function findResourceLocation(requestMethod, rawResponse, requestPath) { - switch (requestMethod) { - case "PUT": { - return requestPath; - } - case "POST": - case "PATCH": { - return getLocation(rawResponse); - } - default: { - return undefined; - } - } -} -function inferLroMode(requestPath, requestMethod, rawResponse) { - if (getAzureAsyncOperation(rawResponse) !== undefined || - getOperationLocation(rawResponse) !== undefined) { - return { - mode: "Location", - resourceLocation: findResourceLocation(requestMethod, rawResponse, requestPath), - }; - } - else if (getLocation(rawResponse) !== undefined) { - return { - mode: "Location", - }; - } - else if (["PUT", "PATCH"].includes(requestMethod)) { - return { - mode: "Body", - }; - } - return {}; -} -class SimpleRestError extends Error { - constructor(message, statusCode) { - super(message); - this.name = "RestError"; - this.statusCode = statusCode; - Object.setPrototypeOf(this, SimpleRestError.prototype); - } -} -function isUnexpectedInitialResponse(rawResponse) { - const code = rawResponse.statusCode; - if (![203, 204, 202, 201, 200, 500].includes(code)) { - throw new SimpleRestError(`Received unexpected HTTP status code ${code} in the initial response. This may indicate a server issue.`, code); - } - return false; -} -function isUnexpectedPollingResponse(rawResponse) { - const code = rawResponse.statusCode; - if (![202, 201, 200, 500].includes(code)) { - throw new SimpleRestError(`Received unexpected HTTP status code ${code} while polling. This may indicate a server issue.`, code); - } - return false; -} -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -const successStates = ["succeeded"]; -const failureStates = ["failed", "canceled", "cancelled"]; +/***/ }), -// Copyright (c) Microsoft Corporation. -function getProvisioningState(rawResponse) { - var _a, _b; - const { properties, provisioningState } = (_a = rawResponse.body) !== null && _a !== void 0 ? _a : {}; - const state = (_b = properties === null || properties === void 0 ? void 0 : properties.provisioningState) !== null && _b !== void 0 ? _b : provisioningState; - return typeof state === "string" ? state.toLowerCase() : "succeeded"; -} -function isBodyPollingDone(rawResponse) { - const state = getProvisioningState(rawResponse); - if (isUnexpectedPollingResponse(rawResponse) || failureStates.includes(state)) { - throw new Error(`The long running operation has failed. The provisioning state: ${state}.`); - } - return successStates.includes(state); -} -/** - * Creates a polling strategy based on BodyPolling which uses the provisioning state - * from the result to determine the current operation state - */ -function processBodyPollingOperationResult(response) { - return Object.assign(Object.assign({}, response), { done: isBodyPollingDone(response.rawResponse) }); -} +/***/ 33323: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -// Copyright (c) Microsoft Corporation. -/** - * The `@azure/logger` configuration for this package. - * @internal - */ -const logger = logger$1.createClientLogger("core-lro"); +const outside = __nccwpck_require__(60420) +// Determine if version is less than all the versions possible in the range +const ltr = (version, range, options) => outside(version, range, '<', options) +module.exports = ltr -// Copyright (c) Microsoft Corporation. -function isPollingDone(rawResponse) { - var _a; - if (isUnexpectedPollingResponse(rawResponse) || rawResponse.statusCode === 202) { - return false; - } - const { status } = (_a = rawResponse.body) !== null && _a !== void 0 ? _a : {}; - const state = typeof status === "string" ? status.toLowerCase() : "succeeded"; - if (isUnexpectedPollingResponse(rawResponse) || failureStates.includes(state)) { - throw new Error(`The long running operation has failed. The provisioning state: ${state}.`); - } - return successStates.includes(state); -} -/** - * Sends a request to the URI of the provisioned resource if needed. - */ -async function sendFinalRequest(lro, resourceLocation, lroResourceLocationConfig) { - switch (lroResourceLocationConfig) { - case "original-uri": - return lro.sendPollRequest(lro.requestPath); - case "azure-async-operation": - return undefined; - case "location": - default: - return lro.sendPollRequest(resourceLocation !== null && resourceLocation !== void 0 ? resourceLocation : lro.requestPath); - } -} -function processLocationPollingOperationResult(lro, resourceLocation, lroResourceLocationConfig) { - return (response) => { - if (isPollingDone(response.rawResponse)) { - if (resourceLocation === undefined) { - return Object.assign(Object.assign({}, response), { done: true }); - } - else { - return Object.assign(Object.assign({}, response), { done: false, next: async () => { - const finalResponse = await sendFinalRequest(lro, resourceLocation, lroResourceLocationConfig); - return Object.assign(Object.assign({}, (finalResponse !== null && finalResponse !== void 0 ? finalResponse : response)), { done: true }); - } }); - } - } - return Object.assign(Object.assign({}, response), { done: false }); - }; -} -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -function processPassthroughOperationResult(response) { - return Object.assign(Object.assign({}, response), { done: true }); -} +/***/ }), -// Copyright (c) Microsoft Corporation. -/** - * creates a stepping function that maps an LRO state to another. - */ -function createGetLroStatusFromResponse(lroPrimitives, config, lroResourceLocationConfig) { - switch (config.mode) { - case "Location": { - return processLocationPollingOperationResult(lroPrimitives, config.resourceLocation, lroResourceLocationConfig); - } - case "Body": { - return processBodyPollingOperationResult; - } - default: { - return processPassthroughOperationResult; - } +/***/ 20579: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const SemVer = __nccwpck_require__(48088) +const Range = __nccwpck_require__(9828) + +const maxSatisfying = (versions, range, options) => { + let max = null + let maxSV = null + let rangeObj = null + try { + rangeObj = new Range(range, options) + } catch (er) { + return null + } + versions.forEach((v) => { + if (rangeObj.test(v)) { + // satisfies(v, range, options) + if (!max || maxSV.compare(v) === -1) { + // compare(max, v, true) + max = v + maxSV = new SemVer(max, options) + } } + }) + return max } -/** - * Creates a polling operation. - */ -function createPoll(lroPrimitives) { - return async (path, pollerConfig, getLroStatusFromResponse) => { - const response = await lroPrimitives.sendPollRequest(path); - const retryAfter = response.rawResponse.headers["retry-after"]; - if (retryAfter !== undefined) { - // Retry-After header value is either in HTTP date format, or in seconds - const retryAfterInSeconds = parseInt(retryAfter); - pollerConfig.intervalInMs = isNaN(retryAfterInSeconds) - ? calculatePollingIntervalFromDate(new Date(retryAfter), pollerConfig.intervalInMs) - : retryAfterInSeconds * 1000; - } - return getLroStatusFromResponse(response); - }; -} -function calculatePollingIntervalFromDate(retryAfterDate, defaultIntervalInMs) { - const timeNow = Math.floor(new Date().getTime()); - const retryAfterTime = retryAfterDate.getTime(); - if (timeNow < retryAfterTime) { - return retryAfterTime - timeNow; +module.exports = maxSatisfying + + +/***/ }), + +/***/ 10832: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const SemVer = __nccwpck_require__(48088) +const Range = __nccwpck_require__(9828) +const minSatisfying = (versions, range, options) => { + let min = null + let minSV = null + let rangeObj = null + try { + rangeObj = new Range(range, options) + } catch (er) { + return null + } + versions.forEach((v) => { + if (rangeObj.test(v)) { + // satisfies(v, range, options) + if (!min || minSV.compare(v) === 1) { + // compare(min, v, true) + min = v + minSV = new SemVer(min, options) + } } - return defaultIntervalInMs; -} -/** - * Creates a callback to be used to initialize the polling operation state. - * @param state - of the polling operation - * @param operationSpec - of the LRO - * @param callback - callback to be called when the operation is done - * @returns callback that initializes the state of the polling operation - */ -function createInitializeState(state, requestPath, requestMethod) { - return (response) => { - if (isUnexpectedInitialResponse(response.rawResponse)) - ; - state.initialRawResponse = response.rawResponse; - state.isStarted = true; - state.pollingURL = getPollingUrl(state.initialRawResponse, requestPath); - state.config = inferLroMode(requestPath, requestMethod, state.initialRawResponse); - /** short circuit polling if body polling is done in the initial request */ - if (state.config.mode === undefined || - (state.config.mode === "Body" && isBodyPollingDone(state.initialRawResponse))) { - state.result = response.flatResponse; - state.isCompleted = true; - } - logger.verbose(`LRO: initial state: ${JSON.stringify(state)}`); - return Boolean(state.isCompleted); - }; + }) + return min } +module.exports = minSatisfying -// Copyright (c) Microsoft Corporation. -class GenericPollOperation { - constructor(state, lro, lroResourceLocationConfig, processResult, updateState, isDone) { - this.state = state; - this.lro = lro; - this.lroResourceLocationConfig = lroResourceLocationConfig; - this.processResult = processResult; - this.updateState = updateState; - this.isDone = isDone; - } - setPollerConfig(pollerConfig) { - this.pollerConfig = pollerConfig; - } - /** - * General update function for LROPoller, the general process is as follows - * 1. Check initial operation result to determine the strategy to use - * - Strategies: Location, Azure-AsyncOperation, Original Uri - * 2. Check if the operation result has a terminal state - * - Terminal state will be determined by each strategy - * 2.1 If it is terminal state Check if a final GET request is required, if so - * send final GET request and return result from operation. If no final GET - * is required, just return the result from operation. - * - Determining what to call for final request is responsibility of each strategy - * 2.2 If it is not terminal state, call the polling operation and go to step 1 - * - Determining what to call for polling is responsibility of each strategy - * - Strategies will always use the latest URI for polling if provided otherwise - * the last known one - */ - async update(options) { - var _a, _b, _c; - const state = this.state; - let lastResponse = undefined; - if (!state.isStarted) { - const initializeState = createInitializeState(state, this.lro.requestPath, this.lro.requestMethod); - lastResponse = await this.lro.sendInitialRequest(); - initializeState(lastResponse); - } - if (!state.isCompleted) { - if (!this.poll || !this.getLroStatusFromResponse) { - if (!state.config) { - throw new Error("Bad state: LRO mode is undefined. Please check if the serialized state is well-formed."); - } - const isDone = this.isDone; - this.getLroStatusFromResponse = isDone - ? (response) => (Object.assign(Object.assign({}, response), { done: isDone(response.flatResponse, this.state) })) - : createGetLroStatusFromResponse(this.lro, state.config, this.lroResourceLocationConfig); - this.poll = createPoll(this.lro); - } - if (!state.pollingURL) { - throw new Error("Bad state: polling URL is undefined. Please check if the serialized state is well-formed."); - } - const currentState = await this.poll(state.pollingURL, this.pollerConfig, this.getLroStatusFromResponse); - logger.verbose(`LRO: polling response: ${JSON.stringify(currentState.rawResponse)}`); - if (currentState.done) { - state.result = this.processResult - ? this.processResult(currentState.flatResponse, state) - : currentState.flatResponse; - state.isCompleted = true; - } - else { - this.poll = (_a = currentState.next) !== null && _a !== void 0 ? _a : this.poll; - state.pollingURL = getPollingUrl(currentState.rawResponse, state.pollingURL); - } - lastResponse = currentState; - } - logger.verbose(`LRO: current state: ${JSON.stringify(state)}`); - if (lastResponse) { - (_b = this.updateState) === null || _b === void 0 ? void 0 : _b.call(this, state, lastResponse === null || lastResponse === void 0 ? void 0 : lastResponse.rawResponse); - } - else { - logger.error(`LRO: no response was received`); - } - (_c = options === null || options === void 0 ? void 0 : options.fireProgress) === null || _c === void 0 ? void 0 : _c.call(options, state); - return this; - } - async cancel() { - this.state.isCancelled = true; - return this; - } - /** - * Serializes the Poller operation. - */ - toString() { - return JSON.stringify({ - state: this.state, - }); - } -} -// Copyright (c) Microsoft Corporation. -function deserializeState(serializedState) { - try { - return JSON.parse(serializedState).state; - } - catch (e) { - throw new Error(`LroEngine: Unable to deserialize state: ${serializedState}`); - } -} -/** - * The LRO Engine, a class that performs polling. - */ -class LroEngine extends Poller { - constructor(lro, options) { - const { intervalInMs = 2000, resumeFrom } = options || {}; - const state = resumeFrom - ? deserializeState(resumeFrom) - : {}; - const operation = new GenericPollOperation(state, lro, options === null || options === void 0 ? void 0 : options.lroResourceLocationConfig, options === null || options === void 0 ? void 0 : options.processResult, options === null || options === void 0 ? void 0 : options.updateState, options === null || options === void 0 ? void 0 : options.isDone); - super(operation); - this.config = { intervalInMs: intervalInMs }; - operation.setPollerConfig(this.config); - } - /** - * The method used by the poller to wait before attempting to update its operation. - */ - delay() { - return new Promise((resolve) => setTimeout(() => resolve(), this.config.intervalInMs)); - } -} +/***/ }), -exports.LroEngine = LroEngine; -exports.Poller = Poller; -exports.PollerCancelledError = PollerCancelledError; -exports.PollerStoppedError = PollerStoppedError; -//# sourceMappingURL=index.js.map +/***/ 34179: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { +const SemVer = __nccwpck_require__(48088) +const Range = __nccwpck_require__(9828) +const gt = __nccwpck_require__(84123) -/***/ }), +const minVersion = (range, loose) => { + range = new Range(range, loose) -/***/ 4559: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + let minver = new SemVer('0.0.0') + if (range.test(minver)) { + return minver + } -"use strict"; + minver = new SemVer('0.0.0-0') + if (range.test(minver)) { + return minver + } + minver = null + for (let i = 0; i < range.set.length; ++i) { + const comparators = range.set[i] -Object.defineProperty(exports, "__esModule", ({ value: true })); + let setMin = null + comparators.forEach((comparator) => { + // Clone to avoid manipulating the comparator's semver object. + const compver = new SemVer(comparator.semver.version) + switch (comparator.operator) { + case '>': + if (compver.prerelease.length === 0) { + compver.patch++ + } else { + compver.prerelease.push(0) + } + compver.raw = compver.format() + /* fallthrough */ + case '': + case '>=': + if (!setMin || gt(compver, setMin)) { + setMin = compver + } + break + case '<': + case '<=': + /* Ignore maximum versions */ + break + /* istanbul ignore next */ + default: + throw new Error(`Unexpected operation: ${comparator.operator}`) + } + }) + if (setMin && (!minver || gt(minver, setMin))) { + minver = setMin + } + } -__nccwpck_require__(2356); -var tslib = __nccwpck_require__(6429); + if (minver && range.test(minver)) { + return minver + } -// Copyright (c) Microsoft Corporation. -/** - * returns an async iterator that iterates over results. It also has a `byPage` - * method that returns pages of items at once. - * - * @param pagedResult - an object that specifies how to get pages. - * @returns a paged async iterator that iterates over results. - */ -function getPagedAsyncIterator(pagedResult) { - var _a; - const iter = getItemAsyncIterator(pagedResult); - return { - next() { - return iter.next(); - }, - [Symbol.asyncIterator]() { - return this; - }, - byPage: (_a = pagedResult === null || pagedResult === void 0 ? void 0 : pagedResult.byPage) !== null && _a !== void 0 ? _a : ((settings) => { - return getPageAsyncIterator(pagedResult, settings === null || settings === void 0 ? void 0 : settings.maxPageSize); - }), - }; -} -function getItemAsyncIterator(pagedResult, maxPageSize) { - return tslib.__asyncGenerator(this, arguments, function* getItemAsyncIterator_1() { - var e_1, _a; - const pages = getPageAsyncIterator(pagedResult, maxPageSize); - const firstVal = yield tslib.__await(pages.next()); - // if the result does not have an array shape, i.e. TPage = TElement, then we return it as is - if (!Array.isArray(firstVal.value)) { - yield yield tslib.__await(firstVal.value); - // `pages` is of type `AsyncIterableIterator` but TPage = TElement in this case - yield tslib.__await(yield* tslib.__asyncDelegator(tslib.__asyncValues(pages))); - } - else { - yield tslib.__await(yield* tslib.__asyncDelegator(tslib.__asyncValues(firstVal.value))); - try { - for (var pages_1 = tslib.__asyncValues(pages), pages_1_1; pages_1_1 = yield tslib.__await(pages_1.next()), !pages_1_1.done;) { - const page = pages_1_1.value; - // pages is of type `AsyncIterableIterator` so `page` is of type `TPage`. In this branch, - // it must be the case that `TPage = TElement[]` - yield tslib.__await(yield* tslib.__asyncDelegator(tslib.__asyncValues(page))); - } - } - catch (e_1_1) { e_1 = { error: e_1_1 }; } - finally { - try { - if (pages_1_1 && !pages_1_1.done && (_a = pages_1.return)) yield tslib.__await(_a.call(pages_1)); - } - finally { if (e_1) throw e_1.error; } - } - } - }); -} -function getPageAsyncIterator(pagedResult, maxPageSize) { - return tslib.__asyncGenerator(this, arguments, function* getPageAsyncIterator_1() { - let response = yield tslib.__await(pagedResult.getPage(pagedResult.firstPageLink, maxPageSize)); - yield yield tslib.__await(response.page); - while (response.nextPageLink) { - response = yield tslib.__await(pagedResult.getPage(response.nextPageLink, maxPageSize)); - yield yield tslib.__await(response.page); - } - }); + return null } - -exports.getPagedAsyncIterator = getPagedAsyncIterator; -//# sourceMappingURL=index.js.map +module.exports = minVersion /***/ }), -/***/ 6429: -/***/ ((module) => { +/***/ 60420: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -/*! ***************************************************************************** -Copyright (c) Microsoft Corporation. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. -***************************************************************************** */ -/* global global, define, System, Reflect, Promise */ -var __extends; -var __assign; -var __rest; -var __decorate; -var __param; -var __metadata; -var __awaiter; -var __generator; -var __exportStar; -var __values; -var __read; -var __spread; -var __spreadArrays; -var __spreadArray; -var __await; -var __asyncGenerator; -var __asyncDelegator; -var __asyncValues; -var __makeTemplateObject; -var __importStar; -var __importDefault; -var __classPrivateFieldGet; -var __classPrivateFieldSet; -var __createBinding; -(function (factory) { - var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {}; - if (typeof define === "function" && define.amd) { - define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); }); - } - else if ( true && typeof module.exports === "object") { - factory(createExporter(root, createExporter(module.exports))); - } - else { - factory(createExporter(root)); - } - function createExporter(exports, previous) { - if (exports !== root) { - if (typeof Object.create === "function") { - Object.defineProperty(exports, "__esModule", { value: true }); - } - else { - exports.__esModule = true; - } - } - return function (id, v) { return exports[id] = previous ? previous(id, v) : v; }; - } -}) -(function (exporter) { - var extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - - __extends = function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); - }; - - __assign = Object.assign || function (t) { - for (var s, i = 1, n = arguments.length; i < n; i++) { - s = arguments[i]; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; - } - return t; - }; - - __rest = function (s, e) { - var t = {}; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) - t[p] = s[p]; - if (s != null && typeof Object.getOwnPropertySymbols === "function") - for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { - if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) - t[p[i]] = s[p[i]]; - } - return t; - }; - - __decorate = function (decorators, target, key, desc) { - var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; - if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); - else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; - return c > 3 && r && Object.defineProperty(target, key, r), r; - }; - - __param = function (paramIndex, decorator) { - return function (target, key) { decorator(target, key, paramIndex); } - }; - - __metadata = function (metadataKey, metadataValue) { - if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue); - }; - - __awaiter = function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); - }; - - __generator = function (thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; - } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; - } - }; - - __exportStar = function(m, o) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p); - }; - - __createBinding = Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); - }) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; - }); - - __values = function (o) { - var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; - if (m) return m.call(o); - if (o && typeof o.length === "number") return { - next: function () { - if (o && i >= o.length) o = void 0; - return { value: o && o[i++], done: !o }; - } - }; - throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); - }; - - __read = function (o, n) { - var m = typeof Symbol === "function" && o[Symbol.iterator]; - if (!m) return o; - var i = m.call(o), r, ar = [], e; - try { - while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); - } - catch (error) { e = { error: error }; } - finally { - try { - if (r && !r.done && (m = i["return"])) m.call(i); - } - finally { if (e) throw e.error; } - } - return ar; - }; - - /** @deprecated */ - __spread = function () { - for (var ar = [], i = 0; i < arguments.length; i++) - ar = ar.concat(__read(arguments[i])); - return ar; - }; - - /** @deprecated */ - __spreadArrays = function () { - for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; - for (var r = Array(s), k = 0, i = 0; i < il; i++) - for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) - r[k] = a[j]; - return r; - }; - - __spreadArray = function (to, from, pack) { - if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { - if (ar || !(i in from)) { - if (!ar) ar = Array.prototype.slice.call(from, 0, i); - ar[i] = from[i]; - } - } - return to.concat(ar || Array.prototype.slice.call(from)); - }; - - __await = function (v) { - return this instanceof __await ? (this.v = v, this) : new __await(v); - }; - - __asyncGenerator = function (thisArg, _arguments, generator) { - if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); - var g = generator.apply(thisArg, _arguments || []), i, q = []; - return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i; - function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } - function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } - function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } - function fulfill(value) { resume("next", value); } - function reject(value) { resume("throw", value); } - function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } - }; - - __asyncDelegator = function (o) { - var i, p; - return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i; - function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; } - }; - - __asyncValues = function (o) { - if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); - var m = o[Symbol.asyncIterator], i; - return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i); - function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } - function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } - }; - - __makeTemplateObject = function (cooked, raw) { - if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; } - return cooked; - }; - - var __setModuleDefault = Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); - }) : function(o, v) { - o["default"] = v; - }; - - __importStar = function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; - }; - - __importDefault = function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; - }; - - __classPrivateFieldGet = function (receiver, state, kind, f) { - if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); - if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); - return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); - }; - - __classPrivateFieldSet = function (receiver, state, value, kind, f) { - if (kind === "m") throw new TypeError("Private method is not writable"); - if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); - if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); - return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value; - }; - - exporter("__extends", __extends); - exporter("__assign", __assign); - exporter("__rest", __rest); - exporter("__decorate", __decorate); - exporter("__param", __param); - exporter("__metadata", __metadata); - exporter("__awaiter", __awaiter); - exporter("__generator", __generator); - exporter("__exportStar", __exportStar); - exporter("__createBinding", __createBinding); - exporter("__values", __values); - exporter("__read", __read); - exporter("__spread", __spread); - exporter("__spreadArrays", __spreadArrays); - exporter("__spreadArray", __spreadArray); - exporter("__await", __await); - exporter("__asyncGenerator", __asyncGenerator); - exporter("__asyncDelegator", __asyncDelegator); - exporter("__asyncValues", __asyncValues); - exporter("__makeTemplateObject", __makeTemplateObject); - exporter("__importStar", __importStar); - exporter("__importDefault", __importDefault); - exporter("__classPrivateFieldGet", __classPrivateFieldGet); - exporter("__classPrivateFieldSet", __classPrivateFieldSet); -}); - - -/***/ }), - -/***/ 4175: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +const SemVer = __nccwpck_require__(48088) +const Comparator = __nccwpck_require__(91532) +const { ANY } = Comparator +const Range = __nccwpck_require__(9828) +const satisfies = __nccwpck_require__(6055) +const gt = __nccwpck_require__(84123) +const lt = __nccwpck_require__(80194) +const lte = __nccwpck_require__(77520) +const gte = __nccwpck_require__(15522) -"use strict"; +const outside = (version, range, hilo, options) => { + version = new SemVer(version, options) + range = new Range(range, options) + let gtfn, ltefn, ltfn, comp, ecomp + switch (hilo) { + case '>': + gtfn = gt + ltefn = lte + ltfn = lt + comp = '>' + ecomp = '>=' + break + case '<': + gtfn = lt + ltefn = gte + ltfn = gt + comp = '<' + ecomp = '<=' + break + default: + throw new TypeError('Must provide a hilo val of "<" or ">"') + } -Object.defineProperty(exports, "__esModule", ({ value: true })); + // If it satisfies the range it is not outside + if (satisfies(version, range, options)) { + return false + } -var api = __nccwpck_require__(5163); + // From now on, variable terms are as if we're in "gtr" mode. + // but note that everything is flipped for the "ltr" function. -// Copyright (c) Microsoft Corporation. -(function (SpanKind) { - /** Default value. Indicates that the span is used internally. */ - SpanKind[SpanKind["INTERNAL"] = 0] = "INTERNAL"; - /** - * Indicates that the span covers server-side handling of an RPC or other - * remote request. - */ - SpanKind[SpanKind["SERVER"] = 1] = "SERVER"; - /** - * Indicates that the span covers the client-side wrapper around an RPC or - * other remote request. - */ - SpanKind[SpanKind["CLIENT"] = 2] = "CLIENT"; - /** - * Indicates that the span describes producer sending a message to a - * broker. Unlike client and server, there is no direct critical path latency - * relationship between producer and consumer spans. - */ - SpanKind[SpanKind["PRODUCER"] = 3] = "PRODUCER"; - /** - * Indicates that the span describes consumer receiving a message from a - * broker. Unlike client and server, there is no direct critical path latency - * relationship between producer and consumer spans. - */ - SpanKind[SpanKind["CONSUMER"] = 4] = "CONSUMER"; -})(exports.SpanKind || (exports.SpanKind = {})); -/** - * Return the span if one exists - * - * @param context - context to get span from - */ -function getSpan(context) { - return api.trace.getSpan(context); -} -/** - * Set the span on a context - * - * @param context - context to use as parent - * @param span - span to set active - */ -function setSpan(context, span) { - return api.trace.setSpan(context, span); -} -/** - * Wrap span context in a NoopSpan and set as span in a new - * context - * - * @param context - context to set active span on - * @param spanContext - span context to be wrapped - */ -function setSpanContext(context, spanContext) { - return api.trace.setSpanContext(context, spanContext); -} -/** - * Get the span context of the span if it exists. - * - * @param context - context to get values from - */ -function getSpanContext(context) { - return api.trace.getSpanContext(context); -} -/** - * Returns true of the given {@link SpanContext} is valid. - * A valid {@link SpanContext} is one which has a valid trace ID and span ID as per the spec. - * - * @param context - the {@link SpanContext} to validate. - * - * @returns true if the {@link SpanContext} is valid, false otherwise. - */ -function isSpanContextValid(context) { - return api.trace.isSpanContextValid(context); -} -function getTracer(name, version) { - return api.trace.getTracer(name || "azure/core-tracing", version); -} -/** Entrypoint for context API */ -const context = api.context; -(function (SpanStatusCode) { - /** - * The default status. - */ - SpanStatusCode[SpanStatusCode["UNSET"] = 0] = "UNSET"; - /** - * The operation has been validated by an Application developer or - * Operator to have completed successfully. - */ - SpanStatusCode[SpanStatusCode["OK"] = 1] = "OK"; - /** - * The operation contains an error. - */ - SpanStatusCode[SpanStatusCode["ERROR"] = 2] = "ERROR"; -})(exports.SpanStatusCode || (exports.SpanStatusCode = {})); + for (let i = 0; i < range.set.length; ++i) { + const comparators = range.set[i] -// Copyright (c) Microsoft Corporation. -function isTracingDisabled() { - var _a; - if (typeof process === "undefined") { - // not supported in browser for now without polyfills - return false; + let high = null + let low = null + + comparators.forEach((comparator) => { + if (comparator.semver === ANY) { + comparator = new Comparator('>=0.0.0') + } + high = high || comparator + low = low || comparator + if (gtfn(comparator.semver, high.semver, options)) { + high = comparator + } else if (ltfn(comparator.semver, low.semver, options)) { + low = comparator + } + }) + + // If the edge version comparator has a operator then our version + // isn't outside it + if (high.operator === comp || high.operator === ecomp) { + return false } - const azureTracingDisabledValue = (_a = process.env.AZURE_TRACING_DISABLED) === null || _a === void 0 ? void 0 : _a.toLowerCase(); - if (azureTracingDisabledValue === "false" || azureTracingDisabledValue === "0") { - return false; + + // If the lowest version comparator has an operator and our version + // is less than it then it isn't higher than the range + if ((!low.operator || low.operator === comp) && + ltefn(version, low.semver)) { + return false + } else if (low.operator === ecomp && ltfn(version, low.semver)) { + return false } - return Boolean(azureTracingDisabledValue); -} -/** - * Creates a function that can be used to create spans using the global tracer. - * - * Usage: - * - * ```typescript - * // once - * const createSpan = createSpanFunction({ packagePrefix: "Azure.Data.AppConfiguration", namespace: "Microsoft.AppConfiguration" }); - * - * // in each operation - * const span = createSpan("deleteConfigurationSetting", operationOptions); - * // code... - * span.end(); - * ``` - * - * @hidden - * @param args - allows configuration of the prefix for each span as well as the az.namespace field. - */ -function createSpanFunction(args) { - return function (operationName, operationOptions) { - const tracer = getTracer(); - const tracingOptions = (operationOptions === null || operationOptions === void 0 ? void 0 : operationOptions.tracingOptions) || {}; - const spanOptions = Object.assign({ kind: exports.SpanKind.INTERNAL }, tracingOptions.spanOptions); - const spanName = args.packagePrefix ? `${args.packagePrefix}.${operationName}` : operationName; - let span; - if (isTracingDisabled()) { - span = api.trace.wrapSpanContext(api.INVALID_SPAN_CONTEXT); - } - else { - span = tracer.startSpan(spanName, spanOptions, tracingOptions.tracingContext); - } - if (args.namespace) { - span.setAttribute("az.namespace", args.namespace); - } - let newSpanOptions = tracingOptions.spanOptions || {}; - if (span.isRecording() && args.namespace) { - newSpanOptions = Object.assign(Object.assign({}, tracingOptions.spanOptions), { attributes: Object.assign(Object.assign({}, spanOptions.attributes), { "az.namespace": args.namespace }) }); - } - const newTracingOptions = Object.assign(Object.assign({}, tracingOptions), { spanOptions: newSpanOptions, tracingContext: setSpan(tracingOptions.tracingContext || context.active(), span) }); - const newOperationOptions = Object.assign(Object.assign({}, operationOptions), { tracingOptions: newTracingOptions }); - return { - span, - updatedOptions: newOperationOptions - }; - }; + } + return true } -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -const VERSION = "00"; -/** - * Generates a `SpanContext` given a `traceparent` header value. - * @param traceParent - Serialized span context data as a `traceparent` header value. - * @returns The `SpanContext` generated from the `traceparent` value. - */ -function extractSpanContextFromTraceParentHeader(traceParentHeader) { - const parts = traceParentHeader.split("-"); - if (parts.length !== 4) { - return; +module.exports = outside + + +/***/ }), + +/***/ 75297: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +// given a set of versions and a range, create a "simplified" range +// that includes the same versions that the original range does +// If the original range is shorter than the simplified one, return that. +const satisfies = __nccwpck_require__(6055) +const compare = __nccwpck_require__(44309) +module.exports = (versions, range, options) => { + const set = [] + let first = null + let prev = null + const v = versions.sort((a, b) => compare(a, b, options)) + for (const version of v) { + const included = satisfies(version, range, options) + if (included) { + prev = version + if (!first) { + first = version + } + } else { + if (prev) { + set.push([first, prev]) + } + prev = null + first = null } - const [version, traceId, spanId, traceOptions] = parts; - if (version !== VERSION) { - return; + } + if (first) { + set.push([first, null]) + } + + const ranges = [] + for (const [min, max] of set) { + if (min === max) { + ranges.push(min) + } else if (!max && min === v[0]) { + ranges.push('*') + } else if (!max) { + ranges.push(`>=${min}`) + } else if (min === v[0]) { + ranges.push(`<=${max}`) + } else { + ranges.push(`${min} - ${max}`) } - const traceFlags = parseInt(traceOptions, 16); - const spanContext = { - spanId, - traceId, - traceFlags - }; - return spanContext; + } + const simplified = ranges.join(' || ') + const original = typeof range.raw === 'string' ? range.raw : String(range) + return simplified.length < original.length ? simplified : range } -/** - * Generates a `traceparent` value given a span context. - * @param spanContext - Contains context for a specific span. - * @returns The `spanContext` represented as a `traceparent` value. - */ -function getTraceParentHeader(spanContext) { - const missingFields = []; - if (!spanContext.traceId) { - missingFields.push("traceId"); - } - if (!spanContext.spanId) { - missingFields.push("spanId"); - } - if (missingFields.length) { - return; - } - const flags = spanContext.traceFlags || 0 /* NONE */; - const hexFlags = flags.toString(16); - const traceFlags = hexFlags.length === 1 ? `0${hexFlags}` : hexFlags; - // https://www.w3.org/TR/trace-context/#traceparent-header-field-values - return `${VERSION}-${spanContext.traceId}-${spanContext.spanId}-${traceFlags}`; -} - -exports.context = context; -exports.createSpanFunction = createSpanFunction; -exports.extractSpanContextFromTraceParentHeader = extractSpanContextFromTraceParentHeader; -exports.getSpan = getSpan; -exports.getSpanContext = getSpanContext; -exports.getTraceParentHeader = getTraceParentHeader; -exports.getTracer = getTracer; -exports.isSpanContextValid = isSpanContextValid; -exports.setSpan = setSpan; -exports.setSpanContext = setSpanContext; -//# sourceMappingURL=index.js.map /***/ }), -/***/ 3233: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - -"use strict"; +/***/ 7863: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { +const Range = __nccwpck_require__(9828) +const Comparator = __nccwpck_require__(91532) +const { ANY } = Comparator +const satisfies = __nccwpck_require__(6055) +const compare = __nccwpck_require__(44309) -Object.defineProperty(exports, "__esModule", ({ value: true })); +// Complex range `r1 || r2 || ...` is a subset of `R1 || R2 || ...` iff: +// - Every simple range `r1, r2, ...` is a null set, OR +// - Every simple range `r1, r2, ...` which is not a null set is a subset of +// some `R1, R2, ...` +// +// Simple range `c1 c2 ...` is a subset of simple range `C1 C2 ...` iff: +// - If c is only the ANY comparator +// - If C is only the ANY comparator, return true +// - Else if in prerelease mode, return false +// - else replace c with `[>=0.0.0]` +// - If C is only the ANY comparator +// - if in prerelease mode, return true +// - else replace C with `[>=0.0.0]` +// - Let EQ be the set of = comparators in c +// - If EQ is more than one, return true (null set) +// - Let GT be the highest > or >= comparator in c +// - Let LT be the lowest < or <= comparator in c +// - If GT and LT, and GT.semver > LT.semver, return true (null set) +// - If any C is a = range, and GT or LT are set, return false +// - If EQ +// - If GT, and EQ does not satisfy GT, return true (null set) +// - If LT, and EQ does not satisfy LT, return true (null set) +// - If EQ satisfies every C, return true +// - Else return false +// - If GT +// - If GT.semver is lower than any > or >= comp in C, return false +// - If GT is >=, and GT.semver does not satisfy every C, return false +// - If GT.semver has a prerelease, and not in prerelease mode +// - If no C has a prerelease and the GT.semver tuple, return false +// - If LT +// - If LT.semver is greater than any < or <= comp in C, return false +// - If LT is <=, and LT.semver does not satisfy every C, return false +// - If GT.semver has a prerelease, and not in prerelease mode +// - If no C has a prerelease and the LT.semver tuple, return false +// - Else return true -function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } +const subset = (sub, dom, options = {}) => { + if (sub === dom) { + return true + } -var util = _interopDefault(__nccwpck_require__(3837)); -var os = __nccwpck_require__(2037); + sub = new Range(sub, options) + dom = new Range(dom, options) + let sawNonNull = false -// Copyright (c) Microsoft Corporation. -function log(message, ...args) { - process.stderr.write(`${util.format(message, ...args)}${os.EOL}`); + OUTER: for (const simpleSub of sub.set) { + for (const simpleDom of dom.set) { + const isSub = simpleSubset(simpleSub, simpleDom, options) + sawNonNull = sawNonNull || isSub !== null + if (isSub) { + continue OUTER + } + } + // the null set is a subset of everything, but null simple ranges in + // a complex range should be ignored. so if we saw a non-null range, + // then we know this isn't a subset, but if EVERY simple range was null, + // then it is a subset. + if (sawNonNull) { + return false + } + } + return true } -// Copyright (c) Microsoft Corporation. -const debugEnvVariable = (typeof process !== "undefined" && process.env && process.env.DEBUG) || undefined; -let enabledString; -let enabledNamespaces = []; -let skippedNamespaces = []; -const debuggers = []; -if (debugEnvVariable) { - enable(debugEnvVariable); -} -const debugObj = Object.assign((namespace) => { - return createDebugger(namespace); -}, { - enable, - enabled, - disable, - log -}); -function enable(namespaces) { - enabledString = namespaces; - enabledNamespaces = []; - skippedNamespaces = []; - const wildcard = /\*/g; - const namespaceList = namespaces.split(",").map((ns) => ns.trim().replace(wildcard, ".*?")); - for (const ns of namespaceList) { - if (ns.startsWith("-")) { - skippedNamespaces.push(new RegExp(`^${ns.substr(1)}$`)); - } - else { - enabledNamespaces.push(new RegExp(`^${ns}$`)); - } +const minimumVersionWithPreRelease = [new Comparator('>=0.0.0-0')] +const minimumVersion = [new Comparator('>=0.0.0')] + +const simpleSubset = (sub, dom, options) => { + if (sub === dom) { + return true + } + + if (sub.length === 1 && sub[0].semver === ANY) { + if (dom.length === 1 && dom[0].semver === ANY) { + return true + } else if (options.includePrerelease) { + sub = minimumVersionWithPreRelease + } else { + sub = minimumVersion } - for (const instance of debuggers) { - instance.enabled = enabled(instance.namespace); + } + + if (dom.length === 1 && dom[0].semver === ANY) { + if (options.includePrerelease) { + return true + } else { + dom = minimumVersion } -} -function enabled(namespace) { - if (namespace.endsWith("*")) { - return true; + } + + const eqSet = new Set() + let gt, lt + for (const c of sub) { + if (c.operator === '>' || c.operator === '>=') { + gt = higherGT(gt, c, options) + } else if (c.operator === '<' || c.operator === '<=') { + lt = lowerLT(lt, c, options) + } else { + eqSet.add(c.semver) } - for (const skipped of skippedNamespaces) { - if (skipped.test(namespace)) { - return false; - } + } + + if (eqSet.size > 1) { + return null + } + + let gtltComp + if (gt && lt) { + gtltComp = compare(gt.semver, lt.semver, options) + if (gtltComp > 0) { + return null + } else if (gtltComp === 0 && (gt.operator !== '>=' || lt.operator !== '<=')) { + return null } - for (const enabledNamespace of enabledNamespaces) { - if (enabledNamespace.test(namespace)) { - return true; + } + + // will iterate one or zero times + for (const eq of eqSet) { + if (gt && !satisfies(eq, String(gt), options)) { + return null + } + + if (lt && !satisfies(eq, String(lt), options)) { + return null + } + + for (const c of dom) { + if (!satisfies(eq, String(c), options)) { + return false + } + } + + return true + } + + let higher, lower + let hasDomLT, hasDomGT + // if the subset has a prerelease, we need a comparator in the superset + // with the same tuple and a prerelease, or it's not a subset + let needDomLTPre = lt && + !options.includePrerelease && + lt.semver.prerelease.length ? lt.semver : false + let needDomGTPre = gt && + !options.includePrerelease && + gt.semver.prerelease.length ? gt.semver : false + // exception: <1.2.3-0 is the same as <1.2.3 + if (needDomLTPre && needDomLTPre.prerelease.length === 1 && + lt.operator === '<' && needDomLTPre.prerelease[0] === 0) { + needDomLTPre = false + } + + for (const c of dom) { + hasDomGT = hasDomGT || c.operator === '>' || c.operator === '>=' + hasDomLT = hasDomLT || c.operator === '<' || c.operator === '<=' + if (gt) { + if (needDomGTPre) { + if (c.semver.prerelease && c.semver.prerelease.length && + c.semver.major === needDomGTPre.major && + c.semver.minor === needDomGTPre.minor && + c.semver.patch === needDomGTPre.patch) { + needDomGTPre = false + } + } + if (c.operator === '>' || c.operator === '>=') { + higher = higherGT(gt, c, options) + if (higher === c && higher !== gt) { + return false } + } else if (gt.operator === '>=' && !satisfies(gt.semver, String(c), options)) { + return false + } } - return false; -} -function disable() { - const result = enabledString || ""; - enable(""); - return result; -} -function createDebugger(namespace) { - const newDebugger = Object.assign(debug, { - enabled: enabled(namespace), - destroy, - log: debugObj.log, - namespace, - extend - }); - function debug(...args) { - if (!newDebugger.enabled) { - return; + if (lt) { + if (needDomLTPre) { + if (c.semver.prerelease && c.semver.prerelease.length && + c.semver.major === needDomLTPre.major && + c.semver.minor === needDomLTPre.minor && + c.semver.patch === needDomLTPre.patch) { + needDomLTPre = false } - if (args.length > 0) { - args[0] = `${namespace} ${args[0]}`; + } + if (c.operator === '<' || c.operator === '<=') { + lower = lowerLT(lt, c, options) + if (lower === c && lower !== lt) { + return false } - newDebugger.log(...args); + } else if (lt.operator === '<=' && !satisfies(lt.semver, String(c), options)) { + return false + } } - debuggers.push(newDebugger); - return newDebugger; -} -function destroy() { - const index = debuggers.indexOf(this); - if (index >= 0) { - debuggers.splice(index, 1); - return true; + if (!c.operator && (lt || gt) && gtltComp !== 0) { + return false } - return false; + } + + // if there was a < or >, and nothing in the dom, then must be false + // UNLESS it was limited by another range in the other direction. + // Eg, >1.0.0 <1.0.1 is still a subset of <2.0.0 + if (gt && hasDomLT && !lt && gtltComp !== 0) { + return false + } + + if (lt && hasDomGT && !gt && gtltComp !== 0) { + return false + } + + // we needed a prerelease range in a specific tuple, but didn't get one + // then this isn't a subset. eg >=1.2.3-pre is not a subset of >=1.0.0, + // because it includes prereleases in the 1.2.3 tuple + if (needDomGTPre || needDomLTPre) { + return false + } + + return true } -function extend(namespace) { - const newDebugger = createDebugger(`${this.namespace}:${namespace}`); - newDebugger.log = this.log; - return newDebugger; + +// >=1.2.3 is lower than >1.2.3 +const higherGT = (a, b, options) => { + if (!a) { + return b + } + const comp = compare(a.semver, b.semver, options) + return comp > 0 ? a + : comp < 0 ? b + : b.operator === '>' && a.operator === '>=' ? b + : a } -// Copyright (c) Microsoft Corporation. -const registeredLoggers = new Set(); -const logLevelFromEnv = (typeof process !== "undefined" && process.env && process.env.AZURE_LOG_LEVEL) || undefined; -let azureLogLevel; -/** - * The AzureLogger provides a mechanism for overriding where logs are output to. - * By default, logs are sent to stderr. - * Override the `log` method to redirect logs to another location. - */ -const AzureLogger = debugObj("azure"); -AzureLogger.log = (...args) => { - debugObj.log(...args); -}; -const AZURE_LOG_LEVELS = ["verbose", "info", "warning", "error"]; -if (logLevelFromEnv) { - // avoid calling setLogLevel because we don't want a mis-set environment variable to crash - if (isAzureLogLevel(logLevelFromEnv)) { - setLogLevel(logLevelFromEnv); - } - else { - console.error(`AZURE_LOG_LEVEL set to unknown log level '${logLevelFromEnv}'; logging is not enabled. Acceptable values: ${AZURE_LOG_LEVELS.join(", ")}.`); - } +// <=1.2.3 is higher than <1.2.3 +const lowerLT = (a, b, options) => { + if (!a) { + return b + } + const comp = compare(a.semver, b.semver, options) + return comp < 0 ? a + : comp > 0 ? b + : b.operator === '<' && a.operator === '<=' ? b + : a } -/** - * Immediately enables logging at the specified log level. - * @param level - The log level to enable for logging. - * Options from most verbose to least verbose are: - * - verbose - * - info - * - warning - * - error - */ -function setLogLevel(level) { - if (level && !isAzureLogLevel(level)) { - throw new Error(`Unknown log level '${level}'. Acceptable values: ${AZURE_LOG_LEVELS.join(",")}`); - } - azureLogLevel = level; - const enabledNamespaces = []; - for (const logger of registeredLoggers) { - if (shouldEnable(logger)) { - enabledNamespaces.push(logger.namespace); - } - } - debugObj.enable(enabledNamespaces.join(",")); + +module.exports = subset + + +/***/ }), + +/***/ 52706: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const Range = __nccwpck_require__(9828) + +// Mostly just for testing and legacy API reasons +const toComparators = (range, options) => + new Range(range, options).set + .map(comp => comp.map(c => c.value).join(' ').trim().split(' ')) + +module.exports = toComparators + + +/***/ }), + +/***/ 2098: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const Range = __nccwpck_require__(9828) +const validRange = (range, options) => { + try { + // Return '*' instead of '' so that truthiness works. + // This will throw if it's invalid anyway + return new Range(range, options).range || '*' + } catch (er) { + return null + } } -/** - * Retrieves the currently specified log level. - */ -function getLogLevel() { - return azureLogLevel; +module.exports = validRange + + +/***/ }), + +/***/ 59318: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + +const os = __nccwpck_require__(22037); +const tty = __nccwpck_require__(76224); +const hasFlag = __nccwpck_require__(31621); + +const {env} = process; + +let forceColor; +if (hasFlag('no-color') || + hasFlag('no-colors') || + hasFlag('color=false') || + hasFlag('color=never')) { + forceColor = 0; +} else if (hasFlag('color') || + hasFlag('colors') || + hasFlag('color=true') || + hasFlag('color=always')) { + forceColor = 1; +} + +if ('FORCE_COLOR' in env) { + if (env.FORCE_COLOR === 'true') { + forceColor = 1; + } else if (env.FORCE_COLOR === 'false') { + forceColor = 0; + } else { + forceColor = env.FORCE_COLOR.length === 0 ? 1 : Math.min(parseInt(env.FORCE_COLOR, 10), 3); + } } -const levelMap = { - verbose: 400, - info: 300, - warning: 200, - error: 100 -}; -/** - * Creates a logger for use by the Azure SDKs that inherits from `AzureLogger`. - * @param namespace - The name of the SDK package. - * @hidden - */ -function createClientLogger(namespace) { - const clientRootLogger = AzureLogger.extend(namespace); - patchLogMethod(AzureLogger, clientRootLogger); - return { - error: createLogger(clientRootLogger, "error"), - warning: createLogger(clientRootLogger, "warning"), - info: createLogger(clientRootLogger, "info"), - verbose: createLogger(clientRootLogger, "verbose") - }; + +function translateLevel(level) { + if (level === 0) { + return false; + } + + return { + level, + hasBasic: true, + has256: level >= 2, + has16m: level >= 3 + }; } -function patchLogMethod(parent, child) { - child.log = (...args) => { - parent.log(...args); - }; + +function supportsColor(haveStream, streamIsTTY) { + if (forceColor === 0) { + return 0; + } + + if (hasFlag('color=16m') || + hasFlag('color=full') || + hasFlag('color=truecolor')) { + return 3; + } + + if (hasFlag('color=256')) { + return 2; + } + + if (haveStream && !streamIsTTY && forceColor === undefined) { + return 0; + } + + const min = forceColor || 0; + + if (env.TERM === 'dumb') { + return min; + } + + if (process.platform === 'win32') { + // Windows 10 build 10586 is the first Windows release that supports 256 colors. + // Windows 10 build 14931 is the first release that supports 16m/TrueColor. + const osRelease = os.release().split('.'); + if ( + Number(osRelease[0]) >= 10 && + Number(osRelease[2]) >= 10586 + ) { + return Number(osRelease[2]) >= 14931 ? 3 : 2; + } + + return 1; + } + + if ('CI' in env) { + if (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI', 'GITHUB_ACTIONS', 'BUILDKITE'].some(sign => sign in env) || env.CI_NAME === 'codeship') { + return 1; + } + + return min; + } + + if ('TEAMCITY_VERSION' in env) { + return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0; + } + + if (env.COLORTERM === 'truecolor') { + return 3; + } + + if ('TERM_PROGRAM' in env) { + const version = parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10); + + switch (env.TERM_PROGRAM) { + case 'iTerm.app': + return version >= 3 ? 3 : 2; + case 'Apple_Terminal': + return 2; + // No default + } + } + + if (/-256(color)?$/i.test(env.TERM)) { + return 2; + } + + if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) { + return 1; + } + + if ('COLORTERM' in env) { + return 1; + } + + return min; } -function createLogger(parent, level) { - const logger = Object.assign(parent.extend(level), { - level - }); - patchLogMethod(parent, logger); - if (shouldEnable(logger)) { - const enabledNamespaces = debugObj.disable(); - debugObj.enable(enabledNamespaces + "," + logger.namespace); - } - registeredLoggers.add(logger); - return logger; + +function getSupportLevel(stream) { + const level = supportsColor(stream, stream && stream.isTTY); + return translateLevel(level); } -function shouldEnable(logger) { - if (azureLogLevel && levelMap[logger.level] <= levelMap[azureLogLevel]) { - return true; + +module.exports = { + supportsColor: getSupportLevel, + stdout: translateLevel(supportsColor(true, tty.isatty(1))), + stderr: translateLevel(supportsColor(true, tty.isatty(2))) +}; + + +/***/ }), + +/***/ 4351: +/***/ ((module) => { + +/****************************************************************************** +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. +***************************************************************************** */ +/* global global, define, Symbol, Reflect, Promise, SuppressedError, Iterator */ +var __extends; +var __assign; +var __rest; +var __decorate; +var __param; +var __esDecorate; +var __runInitializers; +var __propKey; +var __setFunctionName; +var __metadata; +var __awaiter; +var __generator; +var __exportStar; +var __values; +var __read; +var __spread; +var __spreadArrays; +var __spreadArray; +var __await; +var __asyncGenerator; +var __asyncDelegator; +var __asyncValues; +var __makeTemplateObject; +var __importStar; +var __importDefault; +var __classPrivateFieldGet; +var __classPrivateFieldSet; +var __classPrivateFieldIn; +var __createBinding; +var __addDisposableResource; +var __disposeResources; +var __rewriteRelativeImportExtension; +(function (factory) { + var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {}; + if (typeof define === "function" && define.amd) { + define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); }); + } + else if ( true && typeof module.exports === "object") { + factory(createExporter(root, createExporter(module.exports))); } else { - return false; + factory(createExporter(root)); } -} -function isAzureLogLevel(logLevel) { - return AZURE_LOG_LEVELS.includes(logLevel); -} + function createExporter(exports, previous) { + if (exports !== root) { + if (typeof Object.create === "function") { + Object.defineProperty(exports, "__esModule", { value: true }); + } + else { + exports.__esModule = true; + } + } + return function (id, v) { return exports[id] = previous ? previous(id, v) : v; }; + } +}) +(function (exporter) { + var extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; -exports.AzureLogger = AzureLogger; -exports.createClientLogger = createClientLogger; -exports.getLogLevel = getLogLevel; -exports.setLogLevel = setLogLevel; -//# sourceMappingURL=index.js.map + __extends = function (d, b) { + if (typeof b !== "function" && b !== null) + throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; + __assign = Object.assign || function (t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; + } + return t; + }; -/***/ }), + __rest = function (s, e) { + var t = {}; + for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) + t[p] = s[p]; + if (s != null && typeof Object.getOwnPropertySymbols === "function") + for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { + if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) + t[p[i]] = s[p[i]]; + } + return t; + }; -/***/ 4100: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + __decorate = function (decorators, target, key, desc) { + var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; + if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); + else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; + return c > 3 && r && Object.defineProperty(target, key, r), r; + }; -"use strict"; + __param = function (paramIndex, decorator) { + return function (target, key) { decorator(target, key, paramIndex); } + }; + __esDecorate = function (ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) { + function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; } + var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value"; + var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null; + var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {}); + var _, done = false; + for (var i = decorators.length - 1; i >= 0; i--) { + var context = {}; + for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p]; + for (var p in contextIn.access) context.access[p] = contextIn.access[p]; + context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); }; + var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context); + if (kind === "accessor") { + if (result === void 0) continue; + if (result === null || typeof result !== "object") throw new TypeError("Object expected"); + if (_ = accept(result.get)) descriptor.get = _; + if (_ = accept(result.set)) descriptor.set = _; + if (_ = accept(result.init)) initializers.unshift(_); + } + else if (_ = accept(result)) { + if (kind === "field") initializers.unshift(_); + else descriptor[key] = _; + } + } + if (target) Object.defineProperty(target, contextIn.name, descriptor); + done = true; + }; -Object.defineProperty(exports, "__esModule", ({ value: true })); + __runInitializers = function (thisArg, initializers, value) { + var useValue = arguments.length > 2; + for (var i = 0; i < initializers.length; i++) { + value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg); + } + return useValue ? value : void 0; + }; -var coreHttp = __nccwpck_require__(4607); -var tslib = __nccwpck_require__(679); -var coreTracing = __nccwpck_require__(4175); -var logger$1 = __nccwpck_require__(3233); -var abortController = __nccwpck_require__(2557); -var os = __nccwpck_require__(2037); -var crypto = __nccwpck_require__(6113); -var stream = __nccwpck_require__(2781); -__nccwpck_require__(4559); -var coreLro = __nccwpck_require__(7094); -var events = __nccwpck_require__(2361); -var fs = __nccwpck_require__(7147); -var util = __nccwpck_require__(3837); - -function _interopNamespace(e) { - if (e && e.__esModule) return e; - var n = Object.create(null); - if (e) { - Object.keys(e).forEach(function (k) { - if (k !== 'default') { - var d = Object.getOwnPropertyDescriptor(e, k); - Object.defineProperty(n, k, d.get ? d : { - enumerable: true, - get: function () { return e[k]; } - }); - } - }); - } - n["default"] = e; - return Object.freeze(n); -} + __propKey = function (x) { + return typeof x === "symbol" ? x : "".concat(x); + }; -var coreHttp__namespace = /*#__PURE__*/_interopNamespace(coreHttp); -var os__namespace = /*#__PURE__*/_interopNamespace(os); -var fs__namespace = /*#__PURE__*/_interopNamespace(fs); -var util__namespace = /*#__PURE__*/_interopNamespace(util); + __setFunctionName = function (f, name, prefix) { + if (typeof name === "symbol") name = name.description ? "[".concat(name.description, "]") : ""; + return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name }); + }; -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ -const BlobServiceProperties = { - serializedName: "BlobServiceProperties", - xmlName: "StorageServiceProperties", - type: { - name: "Composite", - className: "BlobServiceProperties", - modelProperties: { - blobAnalyticsLogging: { - serializedName: "Logging", - xmlName: "Logging", - type: { - name: "Composite", - className: "Logging" - } - }, - hourMetrics: { - serializedName: "HourMetrics", - xmlName: "HourMetrics", - type: { - name: "Composite", - className: "Metrics" - } - }, - minuteMetrics: { - serializedName: "MinuteMetrics", - xmlName: "MinuteMetrics", - type: { - name: "Composite", - className: "Metrics" - } - }, - cors: { - serializedName: "Cors", - xmlName: "Cors", - xmlIsWrapped: true, - xmlElementName: "CorsRule", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "CorsRule" - } - } - } - }, - defaultServiceVersion: { - serializedName: "DefaultServiceVersion", - xmlName: "DefaultServiceVersion", - type: { - name: "String" - } - }, - deleteRetentionPolicy: { - serializedName: "DeleteRetentionPolicy", - xmlName: "DeleteRetentionPolicy", - type: { - name: "Composite", - className: "RetentionPolicy" - } - }, - staticWebsite: { - serializedName: "StaticWebsite", - xmlName: "StaticWebsite", - type: { - name: "Composite", - className: "StaticWebsite" + __metadata = function (metadataKey, metadataValue) { + if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue); + }; + + __awaiter = function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); + }; + + __generator = function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === "function" ? Iterator : Object).prototype); + return g.next = verb(0), g["throw"] = verb(1), g["return"] = verb(2), typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (g && (g = 0, op[0] && (_ = 0)), _) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; } - } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; } - } -}; -const Logging = { - serializedName: "Logging", - type: { - name: "Composite", - className: "Logging", - modelProperties: { - version: { - serializedName: "Version", - required: true, - xmlName: "Version", - type: { - name: "String" - } - }, - deleteProperty: { - serializedName: "Delete", - required: true, - xmlName: "Delete", - type: { - name: "Boolean" - } - }, - read: { - serializedName: "Read", - required: true, - xmlName: "Read", - type: { - name: "Boolean" - } - }, - write: { - serializedName: "Write", - required: true, - xmlName: "Write", - type: { - name: "Boolean" - } - }, - retentionPolicy: { - serializedName: "RetentionPolicy", - xmlName: "RetentionPolicy", - type: { - name: "Composite", - className: "RetentionPolicy" - } + }; + + __exportStar = function(m, o) { + for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p); + }; + + __createBinding = Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); + }) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; + }); + + __values = function (o) { + var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; + if (m) return m.call(o); + if (o && typeof o.length === "number") return { + next: function () { + if (o && i >= o.length) o = void 0; + return { value: o && o[i++], done: !o }; } + }; + throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); + }; + + __read = function (o, n) { + var m = typeof Symbol === "function" && o[Symbol.iterator]; + if (!m) return o; + var i = m.call(o), r, ar = [], e; + try { + while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); } - } -}; -const RetentionPolicy = { - serializedName: "RetentionPolicy", - type: { - name: "Composite", - className: "RetentionPolicy", - modelProperties: { - enabled: { - serializedName: "Enabled", - required: true, - xmlName: "Enabled", - type: { - name: "Boolean" - } - }, - days: { - constraints: { - InclusiveMinimum: 1 - }, - serializedName: "Days", - xmlName: "Days", - type: { - name: "Number" - } + catch (error) { e = { error: error }; } + finally { + try { + if (r && !r.done && (m = i["return"])) m.call(i); } + finally { if (e) throw e.error; } } - } -}; -const Metrics = { - serializedName: "Metrics", - type: { - name: "Composite", - className: "Metrics", - modelProperties: { - version: { - serializedName: "Version", - xmlName: "Version", - type: { - name: "String" - } - }, - enabled: { - serializedName: "Enabled", - required: true, - xmlName: "Enabled", - type: { - name: "Boolean" - } - }, - includeAPIs: { - serializedName: "IncludeAPIs", - xmlName: "IncludeAPIs", - type: { - name: "Boolean" - } - }, - retentionPolicy: { - serializedName: "RetentionPolicy", - xmlName: "RetentionPolicy", - type: { - name: "Composite", - className: "RetentionPolicy" - } + return ar; + }; + + /** @deprecated */ + __spread = function () { + for (var ar = [], i = 0; i < arguments.length; i++) + ar = ar.concat(__read(arguments[i])); + return ar; + }; + + /** @deprecated */ + __spreadArrays = function () { + for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; + for (var r = Array(s), k = 0, i = 0; i < il; i++) + for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) + r[k] = a[j]; + return r; + }; + + __spreadArray = function (to, from, pack) { + if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { + if (ar || !(i in from)) { + if (!ar) ar = Array.prototype.slice.call(from, 0, i); + ar[i] = from[i]; } } - } -}; -const CorsRule = { - serializedName: "CorsRule", - type: { - name: "Composite", - className: "CorsRule", - modelProperties: { - allowedOrigins: { - serializedName: "AllowedOrigins", - required: true, - xmlName: "AllowedOrigins", - type: { - name: "String" - } - }, - allowedMethods: { - serializedName: "AllowedMethods", - required: true, - xmlName: "AllowedMethods", - type: { - name: "String" - } - }, - allowedHeaders: { - serializedName: "AllowedHeaders", - required: true, - xmlName: "AllowedHeaders", - type: { - name: "String" - } - }, - exposedHeaders: { - serializedName: "ExposedHeaders", - required: true, - xmlName: "ExposedHeaders", - type: { - name: "String" - } - }, - maxAgeInSeconds: { - constraints: { - InclusiveMinimum: 0 - }, - serializedName: "MaxAgeInSeconds", - required: true, - xmlName: "MaxAgeInSeconds", - type: { - name: "Number" - } + return to.concat(ar || Array.prototype.slice.call(from)); + }; + + __await = function (v) { + return this instanceof __await ? (this.v = v, this) : new __await(v); + }; + + __asyncGenerator = function (thisArg, _arguments, generator) { + if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); + var g = generator.apply(thisArg, _arguments || []), i, q = []; + return i = Object.create((typeof AsyncIterator === "function" ? AsyncIterator : Object).prototype), verb("next"), verb("throw"), verb("return", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i; + function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; } + function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } } + function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } + function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } + function fulfill(value) { resume("next", value); } + function reject(value) { resume("throw", value); } + function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } + }; + + __asyncDelegator = function (o) { + var i, p; + return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i; + function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; } + }; + + __asyncValues = function (o) { + if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); + var m = o[Symbol.asyncIterator], i; + return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i); + function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } + function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } + }; + + __makeTemplateObject = function (cooked, raw) { + if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; } + return cooked; + }; + + var __setModuleDefault = Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); + }) : function(o, v) { + o["default"] = v; + }; + + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + + __importStar = function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; + + __importDefault = function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; + }; + + __classPrivateFieldGet = function (receiver, state, kind, f) { + if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); + if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); + return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); + }; + + __classPrivateFieldSet = function (receiver, state, value, kind, f) { + if (kind === "m") throw new TypeError("Private method is not writable"); + if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); + if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); + return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value; + }; + + __classPrivateFieldIn = function (state, receiver) { + if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function")) throw new TypeError("Cannot use 'in' operator on non-object"); + return typeof state === "function" ? receiver === state : state.has(receiver); + }; + + __addDisposableResource = function (env, value, async) { + if (value !== null && value !== void 0) { + if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected."); + var dispose, inner; + if (async) { + if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined."); + dispose = value[Symbol.asyncDispose]; + } + if (dispose === void 0) { + if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined."); + dispose = value[Symbol.dispose]; + if (async) inner = dispose; } + if (typeof dispose !== "function") throw new TypeError("Object not disposable."); + if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } }; + env.stack.push({ value: value, dispose: dispose, async: async }); } - } -}; -const StaticWebsite = { - serializedName: "StaticWebsite", - type: { - name: "Composite", - className: "StaticWebsite", - modelProperties: { - enabled: { - serializedName: "Enabled", - required: true, - xmlName: "Enabled", - type: { - name: "Boolean" - } - }, - indexDocument: { - serializedName: "IndexDocument", - xmlName: "IndexDocument", - type: { - name: "String" - } - }, - errorDocument404Path: { - serializedName: "ErrorDocument404Path", - xmlName: "ErrorDocument404Path", - type: { - name: "String" + else if (async) { + env.stack.push({ async: true }); + } + return value; + }; + + var _SuppressedError = typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) { + var e = new Error(message); + return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e; + }; + + __disposeResources = function (env) { + function fail(e) { + env.error = env.hasError ? new _SuppressedError(e, env.error, "An error was suppressed during disposal.") : e; + env.hasError = true; + } + var r, s = 0; + function next() { + while (r = env.stack.pop()) { + try { + if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next); + if (r.dispose) { + var result = r.dispose.call(r.value); + if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); }); + } + else s |= 1; } - }, - defaultIndexDocumentPath: { - serializedName: "DefaultIndexDocumentPath", - xmlName: "DefaultIndexDocumentPath", - type: { - name: "String" + catch (e) { + fail(e); } } + if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve(); + if (env.hasError) throw env.error; } - } -}; -const StorageError = { - serializedName: "StorageError", - type: { - name: "Composite", - className: "StorageError", - modelProperties: { - message: { - serializedName: "Message", - xmlName: "Message", - type: { - name: "String" - } - }, - code: { - serializedName: "Code", - xmlName: "Code", - type: { - name: "String" - } - } + return next(); + }; + + __rewriteRelativeImportExtension = function (path, preserveJsx) { + if (typeof path === "string" && /^\.\.?\//.test(path)) { + return path.replace(/\.(tsx)$|((?:\.d)?)((?:\.[^./]+?)?)\.([cm]?)ts$/i, function (m, tsx, d, ext, cm) { + return tsx ? preserveJsx ? ".jsx" : ".js" : d && (!ext || !cm) ? m : (d + ext + "." + cm.toLowerCase() + "js"); + }); } + return path; + }; + + exporter("__extends", __extends); + exporter("__assign", __assign); + exporter("__rest", __rest); + exporter("__decorate", __decorate); + exporter("__param", __param); + exporter("__esDecorate", __esDecorate); + exporter("__runInitializers", __runInitializers); + exporter("__propKey", __propKey); + exporter("__setFunctionName", __setFunctionName); + exporter("__metadata", __metadata); + exporter("__awaiter", __awaiter); + exporter("__generator", __generator); + exporter("__exportStar", __exportStar); + exporter("__createBinding", __createBinding); + exporter("__values", __values); + exporter("__read", __read); + exporter("__spread", __spread); + exporter("__spreadArrays", __spreadArrays); + exporter("__spreadArray", __spreadArray); + exporter("__await", __await); + exporter("__asyncGenerator", __asyncGenerator); + exporter("__asyncDelegator", __asyncDelegator); + exporter("__asyncValues", __asyncValues); + exporter("__makeTemplateObject", __makeTemplateObject); + exporter("__importStar", __importStar); + exporter("__importDefault", __importDefault); + exporter("__classPrivateFieldGet", __classPrivateFieldGet); + exporter("__classPrivateFieldSet", __classPrivateFieldSet); + exporter("__classPrivateFieldIn", __classPrivateFieldIn); + exporter("__addDisposableResource", __addDisposableResource); + exporter("__disposeResources", __disposeResources); + exporter("__rewriteRelativeImportExtension", __rewriteRelativeImportExtension); +}); + +0 && (0); + + +/***/ }), + +/***/ 74294: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(54219); + + +/***/ }), + +/***/ 54219: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + + +var net = __nccwpck_require__(41808); +var tls = __nccwpck_require__(24404); +var http = __nccwpck_require__(13685); +var https = __nccwpck_require__(95687); +var events = __nccwpck_require__(82361); +var assert = __nccwpck_require__(39491); +var util = __nccwpck_require__(73837); + + +exports.httpOverHttp = httpOverHttp; +exports.httpsOverHttp = httpsOverHttp; +exports.httpOverHttps = httpOverHttps; +exports.httpsOverHttps = httpsOverHttps; + + +function httpOverHttp(options) { + var agent = new TunnelingAgent(options); + agent.request = http.request; + return agent; +} + +function httpsOverHttp(options) { + var agent = new TunnelingAgent(options); + agent.request = http.request; + agent.createSocket = createSecureSocket; + agent.defaultPort = 443; + return agent; +} + +function httpOverHttps(options) { + var agent = new TunnelingAgent(options); + agent.request = https.request; + return agent; +} + +function httpsOverHttps(options) { + var agent = new TunnelingAgent(options); + agent.request = https.request; + agent.createSocket = createSecureSocket; + agent.defaultPort = 443; + return agent; +} + + +function TunnelingAgent(options) { + var self = this; + self.options = options || {}; + self.proxyOptions = self.options.proxy || {}; + self.maxSockets = self.options.maxSockets || http.Agent.defaultMaxSockets; + self.requests = []; + self.sockets = []; + + self.on('free', function onFree(socket, host, port, localAddress) { + var options = toOptions(host, port, localAddress); + for (var i = 0, len = self.requests.length; i < len; ++i) { + var pending = self.requests[i]; + if (pending.host === options.host && pending.port === options.port) { + // Detect the request to connect same origin server, + // reuse the connection. + self.requests.splice(i, 1); + pending.request.onSocket(socket); + return; + } } -}; -const BlobServiceStatistics = { - serializedName: "BlobServiceStatistics", - xmlName: "StorageServiceStats", - type: { - name: "Composite", - className: "BlobServiceStatistics", - modelProperties: { - geoReplication: { - serializedName: "GeoReplication", - xmlName: "GeoReplication", - type: { - name: "Composite", - className: "GeoReplication" - } - } - } + socket.destroy(); + self.removeSocket(socket); + }); +} +util.inherits(TunnelingAgent, events.EventEmitter); + +TunnelingAgent.prototype.addRequest = function addRequest(req, host, port, localAddress) { + var self = this; + var options = mergeOptions({request: req}, self.options, toOptions(host, port, localAddress)); + + if (self.sockets.length >= this.maxSockets) { + // We are over limit so we'll add it to the queue. + self.requests.push(options); + return; + } + + // If we are under maxSockets create a new one. + self.createSocket(options, function(socket) { + socket.on('free', onFree); + socket.on('close', onCloseOrRemove); + socket.on('agentRemove', onCloseOrRemove); + req.onSocket(socket); + + function onFree() { + self.emit('free', socket, options); } -}; -const GeoReplication = { - serializedName: "GeoReplication", - type: { - name: "Composite", - className: "GeoReplication", - modelProperties: { - status: { - serializedName: "Status", - required: true, - xmlName: "Status", - type: { - name: "Enum", - allowedValues: ["live", "bootstrap", "unavailable"] - } - }, - lastSyncOn: { - serializedName: "LastSyncTime", - required: true, - xmlName: "LastSyncTime", - type: { - name: "DateTimeRfc1123" - } - } - } + + function onCloseOrRemove(err) { + self.removeSocket(socket); + socket.removeListener('free', onFree); + socket.removeListener('close', onCloseOrRemove); + socket.removeListener('agentRemove', onCloseOrRemove); } + }); }; -const ListContainersSegmentResponse = { - serializedName: "ListContainersSegmentResponse", - xmlName: "EnumerationResults", - type: { - name: "Composite", - className: "ListContainersSegmentResponse", - modelProperties: { - serviceEndpoint: { - serializedName: "ServiceEndpoint", - required: true, - xmlName: "ServiceEndpoint", - xmlIsAttribute: true, - type: { - name: "String" - } - }, - prefix: { - serializedName: "Prefix", - xmlName: "Prefix", - type: { - name: "String" - } - }, - marker: { - serializedName: "Marker", - xmlName: "Marker", - type: { - name: "String" - } - }, - maxPageSize: { - serializedName: "MaxResults", - xmlName: "MaxResults", - type: { - name: "Number" - } - }, - containerItems: { - serializedName: "ContainerItems", - required: true, - xmlName: "Containers", - xmlIsWrapped: true, - xmlElementName: "Container", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "ContainerItem" - } - } - } - }, - continuationToken: { - serializedName: "NextMarker", - xmlName: "NextMarker", - type: { - name: "String" - } - } - } + +TunnelingAgent.prototype.createSocket = function createSocket(options, cb) { + var self = this; + var placeholder = {}; + self.sockets.push(placeholder); + + var connectOptions = mergeOptions({}, self.proxyOptions, { + method: 'CONNECT', + path: options.host + ':' + options.port, + agent: false, + headers: { + host: options.host + ':' + options.port } -}; -const ContainerItem = { - serializedName: "ContainerItem", - xmlName: "Container", - type: { - name: "Composite", - className: "ContainerItem", - modelProperties: { - name: { - serializedName: "Name", - required: true, - xmlName: "Name", - type: { - name: "String" - } - }, - deleted: { - serializedName: "Deleted", - xmlName: "Deleted", - type: { - name: "Boolean" - } - }, - version: { - serializedName: "Version", - xmlName: "Version", - type: { - name: "String" - } - }, - properties: { - serializedName: "Properties", - xmlName: "Properties", - type: { - name: "Composite", - className: "ContainerProperties" - } - }, - metadata: { - serializedName: "Metadata", - xmlName: "Metadata", - type: { - name: "Dictionary", - value: { type: { name: "String" } } - } - } - } + }); + if (options.localAddress) { + connectOptions.localAddress = options.localAddress; + } + if (connectOptions.proxyAuth) { + connectOptions.headers = connectOptions.headers || {}; + connectOptions.headers['Proxy-Authorization'] = 'Basic ' + + new Buffer(connectOptions.proxyAuth).toString('base64'); + } + + debug('making CONNECT request'); + var connectReq = self.request(connectOptions); + connectReq.useChunkedEncodingByDefault = false; // for v0.6 + connectReq.once('response', onResponse); // for v0.6 + connectReq.once('upgrade', onUpgrade); // for v0.6 + connectReq.once('connect', onConnect); // for v0.7 or later + connectReq.once('error', onError); + connectReq.end(); + + function onResponse(res) { + // Very hacky. This is necessary to avoid http-parser leaks. + res.upgrade = true; + } + + function onUpgrade(res, socket, head) { + // Hacky. + process.nextTick(function() { + onConnect(res, socket, head); + }); + } + + function onConnect(res, socket, head) { + connectReq.removeAllListeners(); + socket.removeAllListeners(); + + if (res.statusCode !== 200) { + debug('tunneling socket could not be established, statusCode=%d', + res.statusCode); + socket.destroy(); + var error = new Error('tunneling socket could not be established, ' + + 'statusCode=' + res.statusCode); + error.code = 'ECONNRESET'; + options.request.emit('error', error); + self.removeSocket(placeholder); + return; } -}; -const ContainerProperties = { - serializedName: "ContainerProperties", - type: { - name: "Composite", - className: "ContainerProperties", - modelProperties: { - lastModified: { - serializedName: "Last-Modified", - required: true, - xmlName: "Last-Modified", - type: { - name: "DateTimeRfc1123" - } - }, - etag: { - serializedName: "Etag", - required: true, - xmlName: "Etag", - type: { - name: "String" - } - }, - leaseStatus: { - serializedName: "LeaseStatus", - xmlName: "LeaseStatus", - type: { - name: "Enum", - allowedValues: ["locked", "unlocked"] - } - }, - leaseState: { - serializedName: "LeaseState", - xmlName: "LeaseState", - type: { - name: "Enum", - allowedValues: [ - "available", - "leased", - "expired", - "breaking", - "broken" - ] - } - }, - leaseDuration: { - serializedName: "LeaseDuration", - xmlName: "LeaseDuration", - type: { - name: "Enum", - allowedValues: ["infinite", "fixed"] - } - }, - publicAccess: { - serializedName: "PublicAccess", - xmlName: "PublicAccess", - type: { - name: "Enum", - allowedValues: ["container", "blob"] - } - }, - hasImmutabilityPolicy: { - serializedName: "HasImmutabilityPolicy", - xmlName: "HasImmutabilityPolicy", - type: { - name: "Boolean" - } - }, - hasLegalHold: { - serializedName: "HasLegalHold", - xmlName: "HasLegalHold", - type: { - name: "Boolean" - } - }, - defaultEncryptionScope: { - serializedName: "DefaultEncryptionScope", - xmlName: "DefaultEncryptionScope", - type: { - name: "String" - } - }, - preventEncryptionScopeOverride: { - serializedName: "DenyEncryptionScopeOverride", - xmlName: "DenyEncryptionScopeOverride", - type: { - name: "Boolean" - } - }, - deletedOn: { - serializedName: "DeletedTime", - xmlName: "DeletedTime", - type: { - name: "DateTimeRfc1123" - } - }, - remainingRetentionDays: { - serializedName: "RemainingRetentionDays", - xmlName: "RemainingRetentionDays", - type: { - name: "Number" - } - }, - isImmutableStorageWithVersioningEnabled: { - serializedName: "ImmutableStorageWithVersioningEnabled", - xmlName: "ImmutableStorageWithVersioningEnabled", - type: { - name: "Boolean" - } - } - } + if (head.length > 0) { + debug('got illegal response body from proxy'); + socket.destroy(); + var error = new Error('got illegal response body from proxy'); + error.code = 'ECONNRESET'; + options.request.emit('error', error); + self.removeSocket(placeholder); + return; } + debug('tunneling connection has established'); + self.sockets[self.sockets.indexOf(placeholder)] = socket; + return cb(socket); + } + + function onError(cause) { + connectReq.removeAllListeners(); + + debug('tunneling socket could not be established, cause=%s\n', + cause.message, cause.stack); + var error = new Error('tunneling socket could not be established, ' + + 'cause=' + cause.message); + error.code = 'ECONNRESET'; + options.request.emit('error', error); + self.removeSocket(placeholder); + } }; -const KeyInfo = { - serializedName: "KeyInfo", - type: { - name: "Composite", - className: "KeyInfo", - modelProperties: { - startsOn: { - serializedName: "Start", - required: true, - xmlName: "Start", - type: { - name: "String" - } - }, - expiresOn: { - serializedName: "Expiry", - required: true, - xmlName: "Expiry", - type: { - name: "String" - } - } + +TunnelingAgent.prototype.removeSocket = function removeSocket(socket) { + var pos = this.sockets.indexOf(socket) + if (pos === -1) { + return; + } + this.sockets.splice(pos, 1); + + var pending = this.requests.shift(); + if (pending) { + // If we have pending requests and a socket gets closed a new one + // needs to be created to take over in the pool for the one that closed. + this.createSocket(pending, function(socket) { + pending.request.onSocket(socket); + }); + } +}; + +function createSecureSocket(options, cb) { + var self = this; + TunnelingAgent.prototype.createSocket.call(self, options, function(socket) { + var hostHeader = options.request.getHeader('host'); + var tlsOptions = mergeOptions({}, self.options, { + socket: socket, + servername: hostHeader ? hostHeader.replace(/:.*$/, '') : options.host + }); + + // 0 is dummy port for v0.6 + var secureSocket = tls.connect(0, tlsOptions); + self.sockets[self.sockets.indexOf(socket)] = secureSocket; + cb(secureSocket); + }); +} + + +function toOptions(host, port, localAddress) { + if (typeof host === 'string') { // since v0.10 + return { + host: host, + port: port, + localAddress: localAddress + }; + } + return host; // for v0.11 or later +} + +function mergeOptions(target) { + for (var i = 1, len = arguments.length; i < len; ++i) { + var overrides = arguments[i]; + if (typeof overrides === 'object') { + var keys = Object.keys(overrides); + for (var j = 0, keyLen = keys.length; j < keyLen; ++j) { + var k = keys[j]; + if (overrides[k] !== undefined) { + target[k] = overrides[k]; } + } } -}; -const UserDelegationKey = { - serializedName: "UserDelegationKey", - type: { - name: "Composite", - className: "UserDelegationKey", - modelProperties: { - signedObjectId: { - serializedName: "SignedOid", - required: true, - xmlName: "SignedOid", - type: { - name: "String" - } - }, - signedTenantId: { - serializedName: "SignedTid", - required: true, - xmlName: "SignedTid", - type: { - name: "String" - } - }, - signedStartsOn: { - serializedName: "SignedStart", - required: true, - xmlName: "SignedStart", - type: { - name: "String" - } - }, - signedExpiresOn: { - serializedName: "SignedExpiry", - required: true, - xmlName: "SignedExpiry", - type: { - name: "String" - } - }, - signedService: { - serializedName: "SignedService", - required: true, - xmlName: "SignedService", - type: { - name: "String" - } - }, - signedVersion: { - serializedName: "SignedVersion", - required: true, - xmlName: "SignedVersion", - type: { - name: "String" - } - }, - value: { - serializedName: "Value", - required: true, - xmlName: "Value", - type: { - name: "String" - } - } - } + } + return target; +} + + +var debug; +if (process.env.NODE_DEBUG && /\btunnel\b/.test(process.env.NODE_DEBUG)) { + debug = function() { + var args = Array.prototype.slice.call(arguments); + if (typeof args[0] === 'string') { + args[0] = 'TUNNEL: ' + args[0]; + } else { + args.unshift('TUNNEL:'); } -}; -const FilterBlobSegment = { - serializedName: "FilterBlobSegment", - xmlName: "EnumerationResults", - type: { - name: "Composite", - className: "FilterBlobSegment", - modelProperties: { - serviceEndpoint: { - serializedName: "ServiceEndpoint", - required: true, - xmlName: "ServiceEndpoint", - xmlIsAttribute: true, - type: { - name: "String" - } - }, - where: { - serializedName: "Where", - required: true, - xmlName: "Where", - type: { - name: "String" - } - }, - blobs: { - serializedName: "Blobs", - required: true, - xmlName: "Blobs", - xmlIsWrapped: true, - xmlElementName: "Blob", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "FilterBlobItem" - } - } - } - }, - continuationToken: { - serializedName: "NextMarker", - xmlName: "NextMarker", - type: { - name: "String" - } - } - } + console.error.apply(console, args); + } +} else { + debug = function() {}; +} +exports.debug = debug; // for test + + +/***/ }), + +/***/ 41773: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const Client = __nccwpck_require__(8176) +const Dispatcher = __nccwpck_require__(87781) +const Pool = __nccwpck_require__(20177) +const BalancedPool = __nccwpck_require__(46232) +const Agent = __nccwpck_require__(71208) +const ProxyAgent = __nccwpck_require__(15657) +const EnvHttpProxyAgent = __nccwpck_require__(88374) +const RetryAgent = __nccwpck_require__(94411) +const errors = __nccwpck_require__(48045) +const util = __nccwpck_require__(83983) +const { InvalidArgumentError } = errors +const api = __nccwpck_require__(44059) +const buildConnector = __nccwpck_require__(82067) +const MockClient = __nccwpck_require__(58687) +const MockAgent = __nccwpck_require__(66771) +const MockPool = __nccwpck_require__(26193) +const mockErrors = __nccwpck_require__(50888) +const RetryHandler = __nccwpck_require__(86242) +const { getGlobalDispatcher, setGlobalDispatcher } = __nccwpck_require__(21892) +const DecoratorHandler = __nccwpck_require__(4117) +const RedirectHandler = __nccwpck_require__(30649) +const createRedirectInterceptor = __nccwpck_require__(99099) + +Object.assign(Dispatcher.prototype, api) + +module.exports.Dispatcher = Dispatcher +module.exports.Client = Client +module.exports.Pool = Pool +module.exports.BalancedPool = BalancedPool +module.exports.Agent = Agent +module.exports.ProxyAgent = ProxyAgent +module.exports.EnvHttpProxyAgent = EnvHttpProxyAgent +module.exports.RetryAgent = RetryAgent +module.exports.RetryHandler = RetryHandler + +module.exports.DecoratorHandler = DecoratorHandler +module.exports.RedirectHandler = RedirectHandler +module.exports.createRedirectInterceptor = createRedirectInterceptor +module.exports.interceptors = { + redirect: __nccwpck_require__(87773), + retry: __nccwpck_require__(55558), + dump: __nccwpck_require__(66090), + dns: __nccwpck_require__(97334) +} + +module.exports.buildConnector = buildConnector +module.exports.errors = errors +module.exports.util = { + parseHeaders: util.parseHeaders, + headerNameToString: util.headerNameToString +} + +function makeDispatcher (fn) { + return (url, opts, handler) => { + if (typeof opts === 'function') { + handler = opts + opts = null + } + + if (!url || (typeof url !== 'string' && typeof url !== 'object' && !(url instanceof URL))) { + throw new InvalidArgumentError('invalid url') + } + + if (opts != null && typeof opts !== 'object') { + throw new InvalidArgumentError('invalid opts') + } + + if (opts && opts.path != null) { + if (typeof opts.path !== 'string') { + throw new InvalidArgumentError('invalid opts.path') + } + + let path = opts.path + if (!opts.path.startsWith('/')) { + path = `/${path}` + } + + url = new URL(util.parseOrigin(url).origin + path) + } else { + if (!opts) { + opts = typeof url === 'object' ? url : {} + } + + url = util.parseURL(url) } -}; -const FilterBlobItem = { - serializedName: "FilterBlobItem", - xmlName: "Blob", - type: { - name: "Composite", - className: "FilterBlobItem", - modelProperties: { - name: { - serializedName: "Name", - required: true, - xmlName: "Name", - type: { - name: "String" - } - }, - containerName: { - serializedName: "ContainerName", - required: true, - xmlName: "ContainerName", - type: { - name: "String" - } - }, - tags: { - serializedName: "Tags", - xmlName: "Tags", - type: { - name: "Composite", - className: "BlobTags" - } - } - } + + const { agent, dispatcher = getGlobalDispatcher() } = opts + + if (agent) { + throw new InvalidArgumentError('unsupported opts.agent. Did you mean opts.client?') } -}; -const BlobTags = { - serializedName: "BlobTags", - xmlName: "Tags", - type: { - name: "Composite", - className: "BlobTags", - modelProperties: { - blobTagSet: { - serializedName: "BlobTagSet", - required: true, - xmlName: "TagSet", - xmlIsWrapped: true, - xmlElementName: "Tag", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "BlobTag" - } - } - } - } - } + + return fn.call(dispatcher, { + ...opts, + origin: url.origin, + path: url.search ? `${url.pathname}${url.search}` : url.pathname, + method: opts.method || (opts.body ? 'PUT' : 'GET') + }, handler) + } +} + +module.exports.setGlobalDispatcher = setGlobalDispatcher +module.exports.getGlobalDispatcher = getGlobalDispatcher + +const fetchImpl = (__nccwpck_require__(85170).fetch) +module.exports.fetch = async function fetch (init, options = undefined) { + try { + return await fetchImpl(init, options) + } catch (err) { + if (err && typeof err === 'object') { + Error.captureStackTrace(err) } -}; -const BlobTag = { - serializedName: "BlobTag", - xmlName: "Tag", - type: { - name: "Composite", - className: "BlobTag", - modelProperties: { - key: { - serializedName: "Key", - required: true, - xmlName: "Key", - type: { - name: "String" - } - }, - value: { - serializedName: "Value", - required: true, - xmlName: "Value", - type: { - name: "String" - } - } - } + + throw err + } +} +module.exports.Headers = __nccwpck_require__(52991).Headers +module.exports.Response = __nccwpck_require__(12583).Response +module.exports.Request = __nccwpck_require__(20610).Request +module.exports.FormData = __nccwpck_require__(73162).FormData +module.exports.File = globalThis.File ?? (__nccwpck_require__(72254).File) +module.exports.FileReader = __nccwpck_require__(35658).FileReader + +const { setGlobalOrigin, getGlobalOrigin } = __nccwpck_require__(52850) + +module.exports.setGlobalOrigin = setGlobalOrigin +module.exports.getGlobalOrigin = getGlobalOrigin + +const { CacheStorage } = __nccwpck_require__(76847) +const { kConstruct } = __nccwpck_require__(92562) + +// Cache & CacheStorage are tightly coupled with fetch. Even if it may run +// in an older version of Node, it doesn't have any use without fetch. +module.exports.caches = new CacheStorage(kConstruct) + +const { deleteCookie, getCookies, getSetCookies, setCookie } = __nccwpck_require__(42193) + +module.exports.deleteCookie = deleteCookie +module.exports.getCookies = getCookies +module.exports.getSetCookies = getSetCookies +module.exports.setCookie = setCookie + +const { parseMIMEType, serializeAMimeType } = __nccwpck_require__(17704) + +module.exports.parseMIMEType = parseMIMEType +module.exports.serializeAMimeType = serializeAMimeType + +const { CloseEvent, ErrorEvent, MessageEvent } = __nccwpck_require__(55033) +module.exports.WebSocket = __nccwpck_require__(92846).WebSocket +module.exports.CloseEvent = CloseEvent +module.exports.ErrorEvent = ErrorEvent +module.exports.MessageEvent = MessageEvent + +module.exports.request = makeDispatcher(api.request) +module.exports.stream = makeDispatcher(api.stream) +module.exports.pipeline = makeDispatcher(api.pipeline) +module.exports.connect = makeDispatcher(api.connect) +module.exports.upgrade = makeDispatcher(api.upgrade) + +module.exports.MockClient = MockClient +module.exports.MockPool = MockPool +module.exports.MockAgent = MockAgent +module.exports.mockErrors = mockErrors + +const { EventSource } = __nccwpck_require__(36127) + +module.exports.EventSource = EventSource + + +/***/ }), + +/***/ 7032: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const { addAbortListener } = __nccwpck_require__(83983) +const { RequestAbortedError } = __nccwpck_require__(48045) + +const kListener = Symbol('kListener') +const kSignal = Symbol('kSignal') + +function abort (self) { + if (self.abort) { + self.abort(self[kSignal]?.reason) + } else { + self.reason = self[kSignal]?.reason ?? new RequestAbortedError() + } + removeSignal(self) +} + +function addSignal (self, signal) { + self.reason = null + + self[kSignal] = null + self[kListener] = null + + if (!signal) { + return + } + + if (signal.aborted) { + abort(self) + return + } + + self[kSignal] = signal + self[kListener] = () => { + abort(self) + } + + addAbortListener(self[kSignal], self[kListener]) +} + +function removeSignal (self) { + if (!self[kSignal]) { + return + } + + if ('removeEventListener' in self[kSignal]) { + self[kSignal].removeEventListener('abort', self[kListener]) + } else { + self[kSignal].removeListener('abort', self[kListener]) + } + + self[kSignal] = null + self[kListener] = null +} + +module.exports = { + addSignal, + removeSignal +} + + +/***/ }), + +/***/ 29744: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const assert = __nccwpck_require__(98061) +const { AsyncResource } = __nccwpck_require__(92761) +const { InvalidArgumentError, SocketError } = __nccwpck_require__(48045) +const util = __nccwpck_require__(83983) +const { addSignal, removeSignal } = __nccwpck_require__(7032) + +class ConnectHandler extends AsyncResource { + constructor (opts, callback) { + if (!opts || typeof opts !== 'object') { + throw new InvalidArgumentError('invalid opts') } -}; -const SignedIdentifier = { - serializedName: "SignedIdentifier", - xmlName: "SignedIdentifier", - type: { - name: "Composite", - className: "SignedIdentifier", - modelProperties: { - id: { - serializedName: "Id", - required: true, - xmlName: "Id", - type: { - name: "String" - } - }, - accessPolicy: { - serializedName: "AccessPolicy", - xmlName: "AccessPolicy", - type: { - name: "Composite", - className: "AccessPolicy" - } - } - } + + if (typeof callback !== 'function') { + throw new InvalidArgumentError('invalid callback') } -}; -const AccessPolicy = { - serializedName: "AccessPolicy", - type: { - name: "Composite", - className: "AccessPolicy", - modelProperties: { - startsOn: { - serializedName: "Start", - xmlName: "Start", - type: { - name: "String" - } - }, - expiresOn: { - serializedName: "Expiry", - xmlName: "Expiry", - type: { - name: "String" - } - }, - permissions: { - serializedName: "Permission", - xmlName: "Permission", - type: { - name: "String" - } - } - } + + const { signal, opaque, responseHeaders } = opts + + if (signal && typeof signal.on !== 'function' && typeof signal.addEventListener !== 'function') { + throw new InvalidArgumentError('signal must be an EventEmitter or EventTarget') } -}; -const ListBlobsFlatSegmentResponse = { - serializedName: "ListBlobsFlatSegmentResponse", - xmlName: "EnumerationResults", - type: { - name: "Composite", - className: "ListBlobsFlatSegmentResponse", - modelProperties: { - serviceEndpoint: { - serializedName: "ServiceEndpoint", - required: true, - xmlName: "ServiceEndpoint", - xmlIsAttribute: true, - type: { - name: "String" - } - }, - containerName: { - serializedName: "ContainerName", - required: true, - xmlName: "ContainerName", - xmlIsAttribute: true, - type: { - name: "String" - } - }, - prefix: { - serializedName: "Prefix", - xmlName: "Prefix", - type: { - name: "String" - } - }, - marker: { - serializedName: "Marker", - xmlName: "Marker", - type: { - name: "String" - } - }, - maxPageSize: { - serializedName: "MaxResults", - xmlName: "MaxResults", - type: { - name: "Number" - } - }, - segment: { - serializedName: "Segment", - xmlName: "Blobs", - type: { - name: "Composite", - className: "BlobFlatListSegment" - } - }, - continuationToken: { - serializedName: "NextMarker", - xmlName: "NextMarker", - type: { - name: "String" - } - } - } + + super('UNDICI_CONNECT') + + this.opaque = opaque || null + this.responseHeaders = responseHeaders || null + this.callback = callback + this.abort = null + + addSignal(this, signal) + } + + onConnect (abort, context) { + if (this.reason) { + abort(this.reason) + return } -}; -const BlobFlatListSegment = { - serializedName: "BlobFlatListSegment", - xmlName: "Blobs", - type: { - name: "Composite", - className: "BlobFlatListSegment", - modelProperties: { - blobItems: { - serializedName: "BlobItems", - required: true, - xmlName: "BlobItems", - xmlElementName: "Blob", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "BlobItemInternal" - } - } - } - } - } + + assert(this.callback) + + this.abort = abort + this.context = context + } + + onHeaders () { + throw new SocketError('bad connect', null) + } + + onUpgrade (statusCode, rawHeaders, socket) { + const { callback, opaque, context } = this + + removeSignal(this) + + this.callback = null + + let headers = rawHeaders + // Indicates is an HTTP2Session + if (headers != null) { + headers = this.responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders) } -}; -const BlobItemInternal = { - serializedName: "BlobItemInternal", - xmlName: "Blob", - type: { - name: "Composite", - className: "BlobItemInternal", - modelProperties: { - name: { - serializedName: "Name", - xmlName: "Name", - type: { - name: "Composite", - className: "BlobName" - } - }, - deleted: { - serializedName: "Deleted", - required: true, - xmlName: "Deleted", - type: { - name: "Boolean" - } - }, - snapshot: { - serializedName: "Snapshot", - required: true, - xmlName: "Snapshot", - type: { - name: "String" - } - }, - versionId: { - serializedName: "VersionId", - xmlName: "VersionId", - type: { - name: "String" - } - }, - isCurrentVersion: { - serializedName: "IsCurrentVersion", - xmlName: "IsCurrentVersion", - type: { - name: "Boolean" - } - }, - properties: { - serializedName: "Properties", - xmlName: "Properties", - type: { - name: "Composite", - className: "BlobPropertiesInternal" - } - }, - metadata: { - serializedName: "Metadata", - xmlName: "Metadata", - type: { - name: "Dictionary", - value: { type: { name: "String" } } - } - }, - blobTags: { - serializedName: "BlobTags", - xmlName: "Tags", - type: { - name: "Composite", - className: "BlobTags" - } - }, - objectReplicationMetadata: { - serializedName: "ObjectReplicationMetadata", - xmlName: "OrMetadata", - type: { - name: "Dictionary", - value: { type: { name: "String" } } - } - }, - hasVersionsOnly: { - serializedName: "HasVersionsOnly", - xmlName: "HasVersionsOnly", - type: { - name: "Boolean" - } - } - } + + this.runInAsyncScope(callback, null, null, { + statusCode, + headers, + socket, + opaque, + context + }) + } + + onError (err) { + const { callback, opaque } = this + + removeSignal(this) + + if (callback) { + this.callback = null + queueMicrotask(() => { + this.runInAsyncScope(callback, null, err, { opaque }) + }) } -}; -const BlobName = { - serializedName: "BlobName", - type: { - name: "Composite", - className: "BlobName", - modelProperties: { - encoded: { - serializedName: "Encoded", - xmlName: "Encoded", - xmlIsAttribute: true, - type: { - name: "Boolean" - } - }, - content: { - serializedName: "content", - xmlName: "content", - type: { - name: "String" - } - } - } + } +} + +function connect (opts, callback) { + if (callback === undefined) { + return new Promise((resolve, reject) => { + connect.call(this, opts, (err, data) => { + return err ? reject(err) : resolve(data) + }) + }) + } + + try { + const connectHandler = new ConnectHandler(opts, callback) + this.dispatch({ ...opts, method: 'CONNECT' }, connectHandler) + } catch (err) { + if (typeof callback !== 'function') { + throw err } -}; -const BlobPropertiesInternal = { - serializedName: "BlobPropertiesInternal", - xmlName: "Properties", - type: { - name: "Composite", - className: "BlobPropertiesInternal", - modelProperties: { - createdOn: { - serializedName: "Creation-Time", - xmlName: "Creation-Time", - type: { - name: "DateTimeRfc1123" - } - }, - lastModified: { - serializedName: "Last-Modified", - required: true, - xmlName: "Last-Modified", - type: { - name: "DateTimeRfc1123" - } - }, - etag: { - serializedName: "Etag", - required: true, - xmlName: "Etag", - type: { - name: "String" - } - }, - contentLength: { - serializedName: "Content-Length", - xmlName: "Content-Length", - type: { - name: "Number" - } - }, - contentType: { - serializedName: "Content-Type", - xmlName: "Content-Type", - type: { - name: "String" - } - }, - contentEncoding: { - serializedName: "Content-Encoding", - xmlName: "Content-Encoding", - type: { - name: "String" - } - }, - contentLanguage: { - serializedName: "Content-Language", - xmlName: "Content-Language", - type: { - name: "String" - } - }, - contentMD5: { - serializedName: "Content-MD5", - xmlName: "Content-MD5", - type: { - name: "ByteArray" - } - }, - contentDisposition: { - serializedName: "Content-Disposition", - xmlName: "Content-Disposition", - type: { - name: "String" - } - }, - cacheControl: { - serializedName: "Cache-Control", - xmlName: "Cache-Control", - type: { - name: "String" - } - }, - blobSequenceNumber: { - serializedName: "x-ms-blob-sequence-number", - xmlName: "x-ms-blob-sequence-number", - type: { - name: "Number" - } - }, - blobType: { - serializedName: "BlobType", - xmlName: "BlobType", - type: { - name: "Enum", - allowedValues: ["BlockBlob", "PageBlob", "AppendBlob"] - } - }, - leaseStatus: { - serializedName: "LeaseStatus", - xmlName: "LeaseStatus", - type: { - name: "Enum", - allowedValues: ["locked", "unlocked"] - } - }, - leaseState: { - serializedName: "LeaseState", - xmlName: "LeaseState", - type: { - name: "Enum", - allowedValues: [ - "available", - "leased", - "expired", - "breaking", - "broken" - ] - } - }, - leaseDuration: { - serializedName: "LeaseDuration", - xmlName: "LeaseDuration", - type: { - name: "Enum", - allowedValues: ["infinite", "fixed"] - } - }, - copyId: { - serializedName: "CopyId", - xmlName: "CopyId", - type: { - name: "String" - } - }, - copyStatus: { - serializedName: "CopyStatus", - xmlName: "CopyStatus", - type: { - name: "Enum", - allowedValues: ["pending", "success", "aborted", "failed"] - } - }, - copySource: { - serializedName: "CopySource", - xmlName: "CopySource", - type: { - name: "String" - } - }, - copyProgress: { - serializedName: "CopyProgress", - xmlName: "CopyProgress", - type: { - name: "String" - } - }, - copyCompletedOn: { - serializedName: "CopyCompletionTime", - xmlName: "CopyCompletionTime", - type: { - name: "DateTimeRfc1123" - } - }, - copyStatusDescription: { - serializedName: "CopyStatusDescription", - xmlName: "CopyStatusDescription", - type: { - name: "String" - } - }, - serverEncrypted: { - serializedName: "ServerEncrypted", - xmlName: "ServerEncrypted", - type: { - name: "Boolean" - } - }, - incrementalCopy: { - serializedName: "IncrementalCopy", - xmlName: "IncrementalCopy", - type: { - name: "Boolean" - } - }, - destinationSnapshot: { - serializedName: "DestinationSnapshot", - xmlName: "DestinationSnapshot", - type: { - name: "String" - } - }, - deletedOn: { - serializedName: "DeletedTime", - xmlName: "DeletedTime", - type: { - name: "DateTimeRfc1123" - } - }, - remainingRetentionDays: { - serializedName: "RemainingRetentionDays", - xmlName: "RemainingRetentionDays", - type: { - name: "Number" - } - }, - accessTier: { - serializedName: "AccessTier", - xmlName: "AccessTier", - type: { - name: "Enum", - allowedValues: [ - "P4", - "P6", - "P10", - "P15", - "P20", - "P30", - "P40", - "P50", - "P60", - "P70", - "P80", - "Hot", - "Cool", - "Archive" - ] - } - }, - accessTierInferred: { - serializedName: "AccessTierInferred", - xmlName: "AccessTierInferred", - type: { - name: "Boolean" - } - }, - archiveStatus: { - serializedName: "ArchiveStatus", - xmlName: "ArchiveStatus", - type: { - name: "Enum", - allowedValues: [ - "rehydrate-pending-to-hot", - "rehydrate-pending-to-cool" - ] - } - }, - customerProvidedKeySha256: { - serializedName: "CustomerProvidedKeySha256", - xmlName: "CustomerProvidedKeySha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "EncryptionScope", - xmlName: "EncryptionScope", - type: { - name: "String" - } - }, - accessTierChangedOn: { - serializedName: "AccessTierChangeTime", - xmlName: "AccessTierChangeTime", - type: { - name: "DateTimeRfc1123" - } - }, - tagCount: { - serializedName: "TagCount", - xmlName: "TagCount", - type: { - name: "Number" - } - }, - expiresOn: { - serializedName: "Expiry-Time", - xmlName: "Expiry-Time", - type: { - name: "DateTimeRfc1123" - } - }, - isSealed: { - serializedName: "Sealed", - xmlName: "Sealed", - type: { - name: "Boolean" - } - }, - rehydratePriority: { - serializedName: "RehydratePriority", - xmlName: "RehydratePriority", - type: { - name: "Enum", - allowedValues: ["High", "Standard"] - } - }, - lastAccessedOn: { - serializedName: "LastAccessTime", - xmlName: "LastAccessTime", - type: { - name: "DateTimeRfc1123" - } - }, - immutabilityPolicyExpiresOn: { - serializedName: "ImmutabilityPolicyUntilDate", - xmlName: "ImmutabilityPolicyUntilDate", - type: { - name: "DateTimeRfc1123" - } - }, - immutabilityPolicyMode: { - serializedName: "ImmutabilityPolicyMode", - xmlName: "ImmutabilityPolicyMode", - type: { - name: "Enum", - allowedValues: ["Mutable", "Unlocked", "Locked"] - } - }, - legalHold: { - serializedName: "LegalHold", - xmlName: "LegalHold", - type: { - name: "Boolean" - } - } - } + const opaque = opts?.opaque + queueMicrotask(() => callback(err, { opaque })) + } +} + +module.exports = connect + + +/***/ }), + +/***/ 28752: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { + Readable, + Duplex, + PassThrough +} = __nccwpck_require__(84492) +const { + InvalidArgumentError, + InvalidReturnValueError, + RequestAbortedError +} = __nccwpck_require__(48045) +const util = __nccwpck_require__(83983) +const { AsyncResource } = __nccwpck_require__(92761) +const { addSignal, removeSignal } = __nccwpck_require__(7032) +const assert = __nccwpck_require__(98061) + +const kResume = Symbol('resume') + +class PipelineRequest extends Readable { + constructor () { + super({ autoDestroy: true }) + + this[kResume] = null + } + + _read () { + const { [kResume]: resume } = this + + if (resume) { + this[kResume] = null + resume() } -}; -const ListBlobsHierarchySegmentResponse = { - serializedName: "ListBlobsHierarchySegmentResponse", - xmlName: "EnumerationResults", - type: { - name: "Composite", - className: "ListBlobsHierarchySegmentResponse", - modelProperties: { - serviceEndpoint: { - serializedName: "ServiceEndpoint", - required: true, - xmlName: "ServiceEndpoint", - xmlIsAttribute: true, - type: { - name: "String" - } - }, - containerName: { - serializedName: "ContainerName", - required: true, - xmlName: "ContainerName", - xmlIsAttribute: true, - type: { - name: "String" - } - }, - prefix: { - serializedName: "Prefix", - xmlName: "Prefix", - type: { - name: "String" - } - }, - marker: { - serializedName: "Marker", - xmlName: "Marker", - type: { - name: "String" - } - }, - maxPageSize: { - serializedName: "MaxResults", - xmlName: "MaxResults", - type: { - name: "Number" - } - }, - delimiter: { - serializedName: "Delimiter", - xmlName: "Delimiter", - type: { - name: "String" - } - }, - segment: { - serializedName: "Segment", - xmlName: "Blobs", - type: { - name: "Composite", - className: "BlobHierarchyListSegment" - } - }, - continuationToken: { - serializedName: "NextMarker", - xmlName: "NextMarker", - type: { - name: "String" - } - } - } + } + + _destroy (err, callback) { + this._read() + + callback(err) + } +} + +class PipelineResponse extends Readable { + constructor (resume) { + super({ autoDestroy: true }) + this[kResume] = resume + } + + _read () { + this[kResume]() + } + + _destroy (err, callback) { + if (!err && !this._readableState.endEmitted) { + err = new RequestAbortedError() } -}; -const BlobHierarchyListSegment = { - serializedName: "BlobHierarchyListSegment", - xmlName: "Blobs", - type: { - name: "Composite", - className: "BlobHierarchyListSegment", - modelProperties: { - blobPrefixes: { - serializedName: "BlobPrefixes", - xmlName: "BlobPrefixes", - xmlElementName: "BlobPrefix", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "BlobPrefix" - } - } - } - }, - blobItems: { - serializedName: "BlobItems", - required: true, - xmlName: "BlobItems", - xmlElementName: "Blob", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "BlobItemInternal" - } - } - } - } - } + + callback(err) + } +} + +class PipelineHandler extends AsyncResource { + constructor (opts, handler) { + if (!opts || typeof opts !== 'object') { + throw new InvalidArgumentError('invalid opts') } -}; -const BlobPrefix = { - serializedName: "BlobPrefix", - type: { - name: "Composite", - className: "BlobPrefix", - modelProperties: { - name: { - serializedName: "Name", - xmlName: "Name", - type: { - name: "Composite", - className: "BlobName" - } - } - } + + if (typeof handler !== 'function') { + throw new InvalidArgumentError('invalid handler') } -}; -const BlockLookupList = { - serializedName: "BlockLookupList", - xmlName: "BlockList", - type: { - name: "Composite", - className: "BlockLookupList", - modelProperties: { - committed: { - serializedName: "Committed", - xmlName: "Committed", - xmlElementName: "Committed", - type: { - name: "Sequence", - element: { - type: { - name: "String" - } - } - } - }, - uncommitted: { - serializedName: "Uncommitted", - xmlName: "Uncommitted", - xmlElementName: "Uncommitted", - type: { - name: "Sequence", - element: { - type: { - name: "String" - } - } - } - }, - latest: { - serializedName: "Latest", - xmlName: "Latest", - xmlElementName: "Latest", - type: { - name: "Sequence", - element: { - type: { - name: "String" - } - } - } - } - } + + const { signal, method, opaque, onInfo, responseHeaders } = opts + + if (signal && typeof signal.on !== 'function' && typeof signal.addEventListener !== 'function') { + throw new InvalidArgumentError('signal must be an EventEmitter or EventTarget') } -}; -const BlockList = { - serializedName: "BlockList", - type: { - name: "Composite", - className: "BlockList", - modelProperties: { - committedBlocks: { - serializedName: "CommittedBlocks", - xmlName: "CommittedBlocks", - xmlIsWrapped: true, - xmlElementName: "Block", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "Block" - } - } - } - }, - uncommittedBlocks: { - serializedName: "UncommittedBlocks", - xmlName: "UncommittedBlocks", - xmlIsWrapped: true, - xmlElementName: "Block", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "Block" - } - } - } - } - } + + if (method === 'CONNECT') { + throw new InvalidArgumentError('invalid method') } -}; -const Block = { - serializedName: "Block", - type: { - name: "Composite", - className: "Block", - modelProperties: { - name: { - serializedName: "Name", - required: true, - xmlName: "Name", - type: { - name: "String" - } - }, - size: { - serializedName: "Size", - required: true, - xmlName: "Size", - type: { - name: "Number" - } - } - } + + if (onInfo && typeof onInfo !== 'function') { + throw new InvalidArgumentError('invalid onInfo callback') } -}; -const PageList = { - serializedName: "PageList", - type: { - name: "Composite", - className: "PageList", - modelProperties: { - pageRange: { - serializedName: "PageRange", - xmlName: "PageRange", - xmlElementName: "PageRange", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "PageRange" - } - } - } - }, - clearRange: { - serializedName: "ClearRange", - xmlName: "ClearRange", - xmlElementName: "ClearRange", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "ClearRange" - } - } - } - } + + super('UNDICI_PIPELINE') + + this.opaque = opaque || null + this.responseHeaders = responseHeaders || null + this.handler = handler + this.abort = null + this.context = null + this.onInfo = onInfo || null + + this.req = new PipelineRequest().on('error', util.nop) + + this.ret = new Duplex({ + readableObjectMode: opts.objectMode, + autoDestroy: true, + read: () => { + const { body } = this + + if (body?.resume) { + body.resume() } - } -}; -const PageRange = { - serializedName: "PageRange", - xmlName: "PageRange", - type: { - name: "Composite", - className: "PageRange", - modelProperties: { - start: { - serializedName: "Start", - required: true, - xmlName: "Start", - type: { - name: "Number" - } - }, - end: { - serializedName: "End", - required: true, - xmlName: "End", - type: { - name: "Number" - } - } + }, + write: (chunk, encoding, callback) => { + const { req } = this + + if (req.push(chunk, encoding) || req._readableState.destroyed) { + callback() + } else { + req[kResume] = callback } - } -}; -const ClearRange = { - serializedName: "ClearRange", - xmlName: "ClearRange", - type: { - name: "Composite", - className: "ClearRange", - modelProperties: { - start: { - serializedName: "Start", - required: true, - xmlName: "Start", - type: { - name: "Number" - } - }, - end: { - serializedName: "End", - required: true, - xmlName: "End", - type: { - name: "Number" - } - } + }, + destroy: (err, callback) => { + const { body, req, res, ret, abort } = this + + if (!err && !ret._readableState.endEmitted) { + err = new RequestAbortedError() } - } -}; -const QueryRequest = { - serializedName: "QueryRequest", - xmlName: "QueryRequest", - type: { - name: "Composite", - className: "QueryRequest", - modelProperties: { - queryType: { - serializedName: "QueryType", - required: true, - xmlName: "QueryType", - type: { - name: "String" - } - }, - expression: { - serializedName: "Expression", - required: true, - xmlName: "Expression", - type: { - name: "String" - } - }, - inputSerialization: { - serializedName: "InputSerialization", - xmlName: "InputSerialization", - type: { - name: "Composite", - className: "QuerySerialization" - } - }, - outputSerialization: { - serializedName: "OutputSerialization", - xmlName: "OutputSerialization", - type: { - name: "Composite", - className: "QuerySerialization" - } - } + + if (abort && err) { + abort() } + + util.destroy(body, err) + util.destroy(req, err) + util.destroy(res, err) + + removeSignal(this) + + callback(err) + } + }).on('prefinish', () => { + const { req } = this + + // Node < 15 does not call _final in same tick. + req.push(null) + }) + + this.res = null + + addSignal(this, signal) + } + + onConnect (abort, context) { + const { ret, res } = this + + if (this.reason) { + abort(this.reason) + return } -}; -const QuerySerialization = { - serializedName: "QuerySerialization", - type: { - name: "Composite", - className: "QuerySerialization", - modelProperties: { - format: { - serializedName: "Format", - xmlName: "Format", - type: { - name: "Composite", - className: "QueryFormat" - } - } - } + + assert(!res, 'pipeline cannot be retried') + assert(!ret.destroyed) + + this.abort = abort + this.context = context + } + + onHeaders (statusCode, rawHeaders, resume) { + const { opaque, handler, context } = this + + if (statusCode < 200) { + if (this.onInfo) { + const headers = this.responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders) + this.onInfo({ statusCode, headers }) + } + return } -}; -const QueryFormat = { - serializedName: "QueryFormat", - type: { - name: "Composite", - className: "QueryFormat", - modelProperties: { - type: { - serializedName: "Type", - required: true, - xmlName: "Type", - type: { - name: "Enum", - allowedValues: ["delimited", "json", "arrow", "parquet"] - } - }, - delimitedTextConfiguration: { - serializedName: "DelimitedTextConfiguration", - xmlName: "DelimitedTextConfiguration", - type: { - name: "Composite", - className: "DelimitedTextConfiguration" - } - }, - jsonTextConfiguration: { - serializedName: "JsonTextConfiguration", - xmlName: "JsonTextConfiguration", - type: { - name: "Composite", - className: "JsonTextConfiguration" - } - }, - arrowConfiguration: { - serializedName: "ArrowConfiguration", - xmlName: "ArrowConfiguration", - type: { - name: "Composite", - className: "ArrowConfiguration" - } - }, - parquetTextConfiguration: { - serializedName: "ParquetTextConfiguration", - xmlName: "ParquetTextConfiguration", - type: { - name: "any" - } - } - } + + this.res = new PipelineResponse(resume) + + let body + try { + this.handler = null + const headers = this.responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders) + body = this.runInAsyncScope(handler, null, { + statusCode, + headers, + opaque, + body: this.res, + context + }) + } catch (err) { + this.res.on('error', util.nop) + throw err } -}; -const DelimitedTextConfiguration = { - serializedName: "DelimitedTextConfiguration", - xmlName: "DelimitedTextConfiguration", - type: { - name: "Composite", - className: "DelimitedTextConfiguration", - modelProperties: { - columnSeparator: { - serializedName: "ColumnSeparator", - xmlName: "ColumnSeparator", - type: { - name: "String" - } - }, - fieldQuote: { - serializedName: "FieldQuote", - xmlName: "FieldQuote", - type: { - name: "String" - } - }, - recordSeparator: { - serializedName: "RecordSeparator", - xmlName: "RecordSeparator", - type: { - name: "String" - } - }, - escapeChar: { - serializedName: "EscapeChar", - xmlName: "EscapeChar", - type: { - name: "String" - } - }, - headersPresent: { - serializedName: "HeadersPresent", - xmlName: "HasHeaders", - type: { - name: "Boolean" - } - } - } + + if (!body || typeof body.on !== 'function') { + throw new InvalidReturnValueError('expected Readable') } -}; -const JsonTextConfiguration = { - serializedName: "JsonTextConfiguration", - xmlName: "JsonTextConfiguration", - type: { - name: "Composite", - className: "JsonTextConfiguration", - modelProperties: { - recordSeparator: { - serializedName: "RecordSeparator", - xmlName: "RecordSeparator", - type: { - name: "String" - } - } + + body + .on('data', (chunk) => { + const { ret, body } = this + + if (!ret.push(chunk) && body.pause) { + body.pause() } - } -}; -const ArrowConfiguration = { - serializedName: "ArrowConfiguration", - xmlName: "ArrowConfiguration", - type: { - name: "Composite", - className: "ArrowConfiguration", - modelProperties: { - schema: { - serializedName: "Schema", - required: true, - xmlName: "Schema", - xmlIsWrapped: true, - xmlElementName: "Field", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "ArrowField" - } - } - } - } + }) + .on('error', (err) => { + const { ret } = this + + util.destroy(ret, err) + }) + .on('end', () => { + const { ret } = this + + ret.push(null) + }) + .on('close', () => { + const { ret } = this + + if (!ret._readableState.ended) { + util.destroy(ret, new RequestAbortedError()) } + }) + + this.body = body + } + + onData (chunk) { + const { res } = this + return res.push(chunk) + } + + onComplete (trailers) { + const { res } = this + res.push(null) + } + + onError (err) { + const { ret } = this + this.handler = null + util.destroy(ret, err) + } +} + +function pipeline (opts, handler) { + try { + const pipelineHandler = new PipelineHandler(opts, handler) + this.dispatch({ ...opts, body: pipelineHandler.req }, pipelineHandler) + return pipelineHandler.ret + } catch (err) { + return new PassThrough().destroy(err) + } +} + +module.exports = pipeline + + +/***/ }), + +/***/ 55448: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const assert = __nccwpck_require__(98061) +const { Readable } = __nccwpck_require__(73858) +const { InvalidArgumentError, RequestAbortedError } = __nccwpck_require__(48045) +const util = __nccwpck_require__(83983) +const { getResolveErrorBodyCallback } = __nccwpck_require__(77474) +const { AsyncResource } = __nccwpck_require__(92761) + +class RequestHandler extends AsyncResource { + constructor (opts, callback) { + if (!opts || typeof opts !== 'object') { + throw new InvalidArgumentError('invalid opts') } -}; -const ArrowField = { - serializedName: "ArrowField", - xmlName: "Field", - type: { - name: "Composite", - className: "ArrowField", - modelProperties: { - type: { - serializedName: "Type", - required: true, - xmlName: "Type", - type: { - name: "String" - } - }, - name: { - serializedName: "Name", - xmlName: "Name", - type: { - name: "String" - } - }, - precision: { - serializedName: "Precision", - xmlName: "Precision", - type: { - name: "Number" - } - }, - scale: { - serializedName: "Scale", - xmlName: "Scale", - type: { - name: "Number" - } - } - } + + const { signal, method, opaque, body, onInfo, responseHeaders, throwOnError, highWaterMark } = opts + + try { + if (typeof callback !== 'function') { + throw new InvalidArgumentError('invalid callback') + } + + if (highWaterMark && (typeof highWaterMark !== 'number' || highWaterMark < 0)) { + throw new InvalidArgumentError('invalid highWaterMark') + } + + if (signal && typeof signal.on !== 'function' && typeof signal.addEventListener !== 'function') { + throw new InvalidArgumentError('signal must be an EventEmitter or EventTarget') + } + + if (method === 'CONNECT') { + throw new InvalidArgumentError('invalid method') + } + + if (onInfo && typeof onInfo !== 'function') { + throw new InvalidArgumentError('invalid onInfo callback') + } + + super('UNDICI_REQUEST') + } catch (err) { + if (util.isStream(body)) { + util.destroy(body.on('error', util.nop), err) + } + throw err + } + + this.method = method + this.responseHeaders = responseHeaders || null + this.opaque = opaque || null + this.callback = callback + this.res = null + this.abort = null + this.body = body + this.trailers = {} + this.context = null + this.onInfo = onInfo || null + this.throwOnError = throwOnError + this.highWaterMark = highWaterMark + this.signal = signal + this.reason = null + this.removeAbortListener = null + + if (util.isStream(body)) { + body.on('error', (err) => { + this.onError(err) + }) } -}; -const ServiceSetPropertiesHeaders = { - serializedName: "Service_setPropertiesHeaders", - type: { - name: "Composite", - className: "ServiceSetPropertiesHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (this.signal) { + if (this.signal.aborted) { + this.reason = this.signal.reason ?? new RequestAbortedError() + } else { + this.removeAbortListener = util.addAbortListener(this.signal, () => { + this.reason = this.signal.reason ?? new RequestAbortedError() + if (this.res) { + util.destroy(this.res.on('error', util.nop), this.reason) + } else if (this.abort) { + this.abort(this.reason) + } + + if (this.removeAbortListener) { + this.res?.off('close', this.removeAbortListener) + this.removeAbortListener() + this.removeAbortListener = null + } + }) + } } -}; -const ServiceSetPropertiesExceptionHeaders = { - serializedName: "Service_setPropertiesExceptionHeaders", - type: { - name: "Composite", - className: "ServiceSetPropertiesExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } + + onConnect (abort, context) { + if (this.reason) { + abort(this.reason) + return } -}; -const ServiceGetPropertiesHeaders = { - serializedName: "Service_getPropertiesHeaders", - type: { - name: "Composite", - className: "ServiceGetPropertiesHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + assert(this.callback) + + this.abort = abort + this.context = context + } + + onHeaders (statusCode, rawHeaders, resume, statusMessage) { + const { callback, opaque, abort, context, responseHeaders, highWaterMark } = this + + const headers = responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders) + + if (statusCode < 200) { + if (this.onInfo) { + this.onInfo({ statusCode, headers }) + } + return } -}; -const ServiceGetPropertiesExceptionHeaders = { - serializedName: "Service_getPropertiesExceptionHeaders", - type: { - name: "Composite", - className: "ServiceGetPropertiesExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + const parsedHeaders = responseHeaders === 'raw' ? util.parseHeaders(rawHeaders) : headers + const contentType = parsedHeaders['content-type'] + const contentLength = parsedHeaders['content-length'] + const res = new Readable({ + resume, + abort, + contentType, + contentLength: this.method !== 'HEAD' && contentLength + ? Number(contentLength) + : null, + highWaterMark + }) + + if (this.removeAbortListener) { + res.on('close', this.removeAbortListener) } -}; -const ServiceGetStatisticsHeaders = { - serializedName: "Service_getStatisticsHeaders", - type: { - name: "Composite", - className: "ServiceGetStatisticsHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + this.callback = null + this.res = res + if (callback !== null) { + if (this.throwOnError && statusCode >= 400) { + this.runInAsyncScope(getResolveErrorBodyCallback, null, + { callback, body: res, contentType, statusCode, statusMessage, headers } + ) + } else { + this.runInAsyncScope(callback, null, null, { + statusCode, + headers, + trailers: this.trailers, + opaque, + body: res, + context + }) + } } -}; -const ServiceGetStatisticsExceptionHeaders = { - serializedName: "Service_getStatisticsExceptionHeaders", - type: { - name: "Composite", - className: "ServiceGetStatisticsExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } + + onData (chunk) { + return this.res.push(chunk) + } + + onComplete (trailers) { + util.parseHeaders(trailers, this.trailers) + this.res.push(null) + } + + onError (err) { + const { res, callback, body, opaque } = this + + if (callback) { + // TODO: Does this need queueMicrotask? + this.callback = null + queueMicrotask(() => { + this.runInAsyncScope(callback, null, err, { opaque }) + }) } -}; -const ServiceListContainersSegmentHeaders = { - serializedName: "Service_listContainersSegmentHeaders", - type: { - name: "Composite", - className: "ServiceListContainersSegmentHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (res) { + this.res = null + // Ensure all queued handlers are invoked before destroying res. + queueMicrotask(() => { + util.destroy(res, err) + }) } -}; -const ServiceListContainersSegmentExceptionHeaders = { - serializedName: "Service_listContainersSegmentExceptionHeaders", - type: { - name: "Composite", - className: "ServiceListContainersSegmentExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (body) { + this.body = null + util.destroy(body, err) } -}; -const ServiceGetUserDelegationKeyHeaders = { - serializedName: "Service_getUserDelegationKeyHeaders", - type: { - name: "Composite", - className: "ServiceGetUserDelegationKeyHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (this.removeAbortListener) { + res?.off('close', this.removeAbortListener) + this.removeAbortListener() + this.removeAbortListener = null } -}; -const ServiceGetUserDelegationKeyExceptionHeaders = { - serializedName: "Service_getUserDelegationKeyExceptionHeaders", - type: { - name: "Composite", - className: "ServiceGetUserDelegationKeyExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } +} + +function request (opts, callback) { + if (callback === undefined) { + return new Promise((resolve, reject) => { + request.call(this, opts, (err, data) => { + return err ? reject(err) : resolve(data) + }) + }) + } + + try { + this.dispatch(opts, new RequestHandler(opts, callback)) + } catch (err) { + if (typeof callback !== 'function') { + throw err } -}; -const ServiceGetAccountInfoHeaders = { - serializedName: "Service_getAccountInfoHeaders", - type: { - name: "Composite", - className: "ServiceGetAccountInfoHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - skuName: { - serializedName: "x-ms-sku-name", - xmlName: "x-ms-sku-name", - type: { - name: "Enum", - allowedValues: [ - "Standard_LRS", - "Standard_GRS", - "Standard_RAGRS", - "Standard_ZRS", - "Premium_LRS" - ] - } - }, - accountKind: { - serializedName: "x-ms-account-kind", - xmlName: "x-ms-account-kind", - type: { - name: "Enum", - allowedValues: [ - "Storage", - "BlobStorage", - "StorageV2", - "FileStorage", - "BlockBlobStorage" - ] - } - }, - isHierarchicalNamespaceEnabled: { - serializedName: "x-ms-is-hns-enabled", - xmlName: "x-ms-is-hns-enabled", - type: { - name: "Boolean" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + const opaque = opts?.opaque + queueMicrotask(() => callback(err, { opaque })) + } +} + +module.exports = request +module.exports.RequestHandler = RequestHandler + + +/***/ }), + +/***/ 75395: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const assert = __nccwpck_require__(98061) +const { finished, PassThrough } = __nccwpck_require__(84492) +const { InvalidArgumentError, InvalidReturnValueError } = __nccwpck_require__(48045) +const util = __nccwpck_require__(83983) +const { getResolveErrorBodyCallback } = __nccwpck_require__(77474) +const { AsyncResource } = __nccwpck_require__(92761) +const { addSignal, removeSignal } = __nccwpck_require__(7032) + +class StreamHandler extends AsyncResource { + constructor (opts, factory, callback) { + if (!opts || typeof opts !== 'object') { + throw new InvalidArgumentError('invalid opts') } -}; -const ServiceGetAccountInfoExceptionHeaders = { - serializedName: "Service_getAccountInfoExceptionHeaders", - type: { - name: "Composite", - className: "ServiceGetAccountInfoExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + const { signal, method, opaque, body, onInfo, responseHeaders, throwOnError } = opts + + try { + if (typeof callback !== 'function') { + throw new InvalidArgumentError('invalid callback') + } + + if (typeof factory !== 'function') { + throw new InvalidArgumentError('invalid factory') + } + + if (signal && typeof signal.on !== 'function' && typeof signal.addEventListener !== 'function') { + throw new InvalidArgumentError('signal must be an EventEmitter or EventTarget') + } + + if (method === 'CONNECT') { + throw new InvalidArgumentError('invalid method') + } + + if (onInfo && typeof onInfo !== 'function') { + throw new InvalidArgumentError('invalid onInfo callback') + } + + super('UNDICI_STREAM') + } catch (err) { + if (util.isStream(body)) { + util.destroy(body.on('error', util.nop), err) + } + throw err + } + + this.responseHeaders = responseHeaders || null + this.opaque = opaque || null + this.factory = factory + this.callback = callback + this.res = null + this.abort = null + this.context = null + this.trailers = null + this.body = body + this.onInfo = onInfo || null + this.throwOnError = throwOnError || false + + if (util.isStream(body)) { + body.on('error', (err) => { + this.onError(err) + }) } -}; -const ServiceSubmitBatchHeaders = { - serializedName: "Service_submitBatchHeaders", - type: { - name: "Composite", - className: "ServiceSubmitBatchHeaders", - modelProperties: { - contentType: { - serializedName: "content-type", - xmlName: "content-type", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + addSignal(this, signal) + } + + onConnect (abort, context) { + if (this.reason) { + abort(this.reason) + return } -}; -const ServiceSubmitBatchExceptionHeaders = { - serializedName: "Service_submitBatchExceptionHeaders", - type: { - name: "Composite", - className: "ServiceSubmitBatchExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + assert(this.callback) + + this.abort = abort + this.context = context + } + + onHeaders (statusCode, rawHeaders, resume, statusMessage) { + const { factory, opaque, context, callback, responseHeaders } = this + + const headers = responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders) + + if (statusCode < 200) { + if (this.onInfo) { + this.onInfo({ statusCode, headers }) + } + return } -}; -const ServiceFilterBlobsHeaders = { - serializedName: "Service_filterBlobsHeaders", - type: { - name: "Composite", - className: "ServiceFilterBlobsHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } + + this.factory = null + + let res + + if (this.throwOnError && statusCode >= 400) { + const parsedHeaders = responseHeaders === 'raw' ? util.parseHeaders(rawHeaders) : headers + const contentType = parsedHeaders['content-type'] + res = new PassThrough() + + this.callback = null + this.runInAsyncScope(getResolveErrorBodyCallback, null, + { callback, body: res, contentType, statusCode, statusMessage, headers } + ) + } else { + if (factory === null) { + return + } + + res = this.runInAsyncScope(factory, null, { + statusCode, + headers, + opaque, + context + }) + + if ( + !res || + typeof res.write !== 'function' || + typeof res.end !== 'function' || + typeof res.on !== 'function' + ) { + throw new InvalidReturnValueError('expected Writable') + } + + // TODO: Avoid finished. It registers an unnecessary amount of listeners. + finished(res, { readable: false }, (err) => { + const { callback, res, opaque, trailers, abort } = this + + this.res = null + if (err || !res.readable) { + util.destroy(res, err) } - } -}; -const ServiceFilterBlobsExceptionHeaders = { - serializedName: "Service_filterBlobsExceptionHeaders", - type: { - name: "Composite", - className: "ServiceFilterBlobsExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } + + this.callback = null + this.runInAsyncScope(callback, null, err || null, { opaque, trailers }) + + if (err) { + abort() } + }) } -}; -const ContainerCreateHeaders = { - serializedName: "Container_createHeaders", - type: { - name: "Composite", - className: "ContainerCreateHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + res.on('drain', resume) + + this.res = res + + const needDrain = res.writableNeedDrain !== undefined + ? res.writableNeedDrain + : res._writableState?.needDrain + + return needDrain !== true + } + + onData (chunk) { + const { res } = this + + return res ? res.write(chunk) : true + } + + onComplete (trailers) { + const { res } = this + + removeSignal(this) + + if (!res) { + return } -}; -const ContainerCreateExceptionHeaders = { - serializedName: "Container_createExceptionHeaders", - type: { - name: "Composite", - className: "ContainerCreateExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + this.trailers = util.parseHeaders(trailers) + + res.end() + } + + onError (err) { + const { res, callback, opaque, body } = this + + removeSignal(this) + + this.factory = null + + if (res) { + this.res = null + util.destroy(res, err) + } else if (callback) { + this.callback = null + queueMicrotask(() => { + this.runInAsyncScope(callback, null, err, { opaque }) + }) } -}; -const ContainerGetPropertiesHeaders = { - serializedName: "Container_getPropertiesHeaders", - type: { - name: "Composite", - className: "ContainerGetPropertiesHeaders", - modelProperties: { - metadata: { - serializedName: "x-ms-meta", - xmlName: "x-ms-meta", - type: { - name: "Dictionary", - value: { type: { name: "String" } } - }, - headerCollectionPrefix: "x-ms-meta-" - }, - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - leaseDuration: { - serializedName: "x-ms-lease-duration", - xmlName: "x-ms-lease-duration", - type: { - name: "Enum", - allowedValues: ["infinite", "fixed"] - } - }, - leaseState: { - serializedName: "x-ms-lease-state", - xmlName: "x-ms-lease-state", - type: { - name: "Enum", - allowedValues: [ - "available", - "leased", - "expired", - "breaking", - "broken" - ] - } - }, - leaseStatus: { - serializedName: "x-ms-lease-status", - xmlName: "x-ms-lease-status", - type: { - name: "Enum", - allowedValues: ["locked", "unlocked"] - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - blobPublicAccess: { - serializedName: "x-ms-blob-public-access", - xmlName: "x-ms-blob-public-access", - type: { - name: "Enum", - allowedValues: ["container", "blob"] - } - }, - hasImmutabilityPolicy: { - serializedName: "x-ms-has-immutability-policy", - xmlName: "x-ms-has-immutability-policy", - type: { - name: "Boolean" - } - }, - hasLegalHold: { - serializedName: "x-ms-has-legal-hold", - xmlName: "x-ms-has-legal-hold", - type: { - name: "Boolean" - } - }, - defaultEncryptionScope: { - serializedName: "x-ms-default-encryption-scope", - xmlName: "x-ms-default-encryption-scope", - type: { - name: "String" - } - }, - denyEncryptionScopeOverride: { - serializedName: "x-ms-deny-encryption-scope-override", - xmlName: "x-ms-deny-encryption-scope-override", - type: { - name: "Boolean" - } - }, - isImmutableStorageWithVersioningEnabled: { - serializedName: "x-ms-immutable-storage-with-versioning-enabled", - xmlName: "x-ms-immutable-storage-with-versioning-enabled", - type: { - name: "Boolean" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (body) { + this.body = null + util.destroy(body, err) } -}; -const ContainerGetPropertiesExceptionHeaders = { - serializedName: "Container_getPropertiesExceptionHeaders", - type: { - name: "Composite", - className: "ContainerGetPropertiesExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } +} + +function stream (opts, factory, callback) { + if (callback === undefined) { + return new Promise((resolve, reject) => { + stream.call(this, opts, factory, (err, data) => { + return err ? reject(err) : resolve(data) + }) + }) + } + + try { + this.dispatch(opts, new StreamHandler(opts, factory, callback)) + } catch (err) { + if (typeof callback !== 'function') { + throw err } -}; -const ContainerDeleteHeaders = { - serializedName: "Container_deleteHeaders", - type: { - name: "Composite", - className: "ContainerDeleteHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + const opaque = opts?.opaque + queueMicrotask(() => callback(err, { opaque })) + } +} + +module.exports = stream + + +/***/ }), + +/***/ 36923: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { InvalidArgumentError, SocketError } = __nccwpck_require__(48045) +const { AsyncResource } = __nccwpck_require__(92761) +const util = __nccwpck_require__(83983) +const { addSignal, removeSignal } = __nccwpck_require__(7032) +const assert = __nccwpck_require__(98061) + +class UpgradeHandler extends AsyncResource { + constructor (opts, callback) { + if (!opts || typeof opts !== 'object') { + throw new InvalidArgumentError('invalid opts') } -}; -const ContainerDeleteExceptionHeaders = { - serializedName: "Container_deleteExceptionHeaders", - type: { - name: "Composite", - className: "ContainerDeleteExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (typeof callback !== 'function') { + throw new InvalidArgumentError('invalid callback') } -}; -const ContainerSetMetadataHeaders = { - serializedName: "Container_setMetadataHeaders", - type: { - name: "Composite", - className: "ContainerSetMetadataHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + const { signal, opaque, responseHeaders } = opts + + if (signal && typeof signal.on !== 'function' && typeof signal.addEventListener !== 'function') { + throw new InvalidArgumentError('signal must be an EventEmitter or EventTarget') } -}; -const ContainerSetMetadataExceptionHeaders = { - serializedName: "Container_setMetadataExceptionHeaders", - type: { - name: "Composite", - className: "ContainerSetMetadataExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + super('UNDICI_UPGRADE') + + this.responseHeaders = responseHeaders || null + this.opaque = opaque || null + this.callback = callback + this.abort = null + this.context = null + + addSignal(this, signal) + } + + onConnect (abort, context) { + if (this.reason) { + abort(this.reason) + return } -}; -const ContainerGetAccessPolicyHeaders = { - serializedName: "Container_getAccessPolicyHeaders", - type: { - name: "Composite", - className: "ContainerGetAccessPolicyHeaders", - modelProperties: { - blobPublicAccess: { - serializedName: "x-ms-blob-public-access", - xmlName: "x-ms-blob-public-access", - type: { - name: "Enum", - allowedValues: ["container", "blob"] - } - }, - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + assert(this.callback) + + this.abort = abort + this.context = null + } + + onHeaders () { + throw new SocketError('bad upgrade', null) + } + + onUpgrade (statusCode, rawHeaders, socket) { + assert(statusCode === 101) + + const { callback, opaque, context } = this + + removeSignal(this) + + this.callback = null + const headers = this.responseHeaders === 'raw' ? util.parseRawHeaders(rawHeaders) : util.parseHeaders(rawHeaders) + this.runInAsyncScope(callback, null, null, { + headers, + socket, + opaque, + context + }) + } + + onError (err) { + const { callback, opaque } = this + + removeSignal(this) + + if (callback) { + this.callback = null + queueMicrotask(() => { + this.runInAsyncScope(callback, null, err, { opaque }) + }) } -}; -const ContainerGetAccessPolicyExceptionHeaders = { - serializedName: "Container_getAccessPolicyExceptionHeaders", - type: { - name: "Composite", - className: "ContainerGetAccessPolicyExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } +} + +function upgrade (opts, callback) { + if (callback === undefined) { + return new Promise((resolve, reject) => { + upgrade.call(this, opts, (err, data) => { + return err ? reject(err) : resolve(data) + }) + }) + } + + try { + const upgradeHandler = new UpgradeHandler(opts, callback) + this.dispatch({ + ...opts, + method: opts.method || 'GET', + upgrade: opts.protocol || 'Websocket' + }, upgradeHandler) + } catch (err) { + if (typeof callback !== 'function') { + throw err } -}; -const ContainerSetAccessPolicyHeaders = { - serializedName: "Container_setAccessPolicyHeaders", - type: { - name: "Composite", - className: "ContainerSetAccessPolicyHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + const opaque = opts?.opaque + queueMicrotask(() => callback(err, { opaque })) + } +} + +module.exports = upgrade + + +/***/ }), + +/***/ 44059: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +module.exports.request = __nccwpck_require__(55448) +module.exports.stream = __nccwpck_require__(75395) +module.exports.pipeline = __nccwpck_require__(28752) +module.exports.upgrade = __nccwpck_require__(36923) +module.exports.connect = __nccwpck_require__(29744) + + +/***/ }), + +/***/ 73858: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; +// Ported from https://github.com/nodejs/undici/pull/907 + + + +const assert = __nccwpck_require__(98061) +const { Readable } = __nccwpck_require__(84492) +const { RequestAbortedError, NotSupportedError, InvalidArgumentError, AbortError } = __nccwpck_require__(48045) +const util = __nccwpck_require__(83983) +const { ReadableStreamFrom } = __nccwpck_require__(83983) + +const kConsume = Symbol('kConsume') +const kReading = Symbol('kReading') +const kBody = Symbol('kBody') +const kAbort = Symbol('kAbort') +const kContentType = Symbol('kContentType') +const kContentLength = Symbol('kContentLength') + +const noop = () => {} + +class BodyReadable extends Readable { + constructor ({ + resume, + abort, + contentType = '', + contentLength, + highWaterMark = 64 * 1024 // Same as nodejs fs streams. + }) { + super({ + autoDestroy: true, + read: resume, + highWaterMark + }) + + this._readableState.dataEmitted = false + + this[kAbort] = abort + this[kConsume] = null + this[kBody] = null + this[kContentType] = contentType + this[kContentLength] = contentLength + + // Is stream being consumed through Readable API? + // This is an optimization so that we avoid checking + // for 'data' and 'readable' listeners in the hot path + // inside push(). + this[kReading] = false + } + + destroy (err) { + if (!err && !this._readableState.endEmitted) { + err = new RequestAbortedError() } -}; -const ContainerSetAccessPolicyExceptionHeaders = { - serializedName: "Container_setAccessPolicyExceptionHeaders", - type: { - name: "Composite", - className: "ContainerSetAccessPolicyExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (err) { + this[kAbort]() } -}; -const ContainerRestoreHeaders = { - serializedName: "Container_restoreHeaders", - type: { - name: "Composite", - className: "ContainerRestoreHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + return super.destroy(err) + } + + _destroy (err, callback) { + // Workaround for Node "bug". If the stream is destroyed in same + // tick as it is created, then a user who is waiting for a + // promise (i.e micro tick) for installing a 'error' listener will + // never get a chance and will always encounter an unhandled exception. + if (!this[kReading]) { + setImmediate(() => { + callback(err) + }) + } else { + callback(err) } -}; -const ContainerRestoreExceptionHeaders = { - serializedName: "Container_restoreExceptionHeaders", - type: { - name: "Composite", - className: "ContainerRestoreExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } + + on (ev, ...args) { + if (ev === 'data' || ev === 'readable') { + this[kReading] = true } -}; -const ContainerRenameHeaders = { - serializedName: "Container_renameHeaders", - type: { - name: "Composite", - className: "ContainerRenameHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + return super.on(ev, ...args) + } + + addListener (ev, ...args) { + return this.on(ev, ...args) + } + + off (ev, ...args) { + const ret = super.off(ev, ...args) + if (ev === 'data' || ev === 'readable') { + this[kReading] = ( + this.listenerCount('data') > 0 || + this.listenerCount('readable') > 0 + ) } -}; -const ContainerRenameExceptionHeaders = { - serializedName: "Container_renameExceptionHeaders", - type: { - name: "Composite", - className: "ContainerRenameExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + return ret + } + + removeListener (ev, ...args) { + return this.off(ev, ...args) + } + + push (chunk) { + if (this[kConsume] && chunk !== null) { + consumePush(this[kConsume], chunk) + return this[kReading] ? super.push(chunk) : true } -}; -const ContainerSubmitBatchHeaders = { - serializedName: "Container_submitBatchHeaders", - type: { - name: "Composite", - className: "ContainerSubmitBatchHeaders", - modelProperties: { - contentType: { - serializedName: "content-type", - xmlName: "content-type", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - } - } + return super.push(chunk) + } + + // https://fetch.spec.whatwg.org/#dom-body-text + async text () { + return consume(this, 'text') + } + + // https://fetch.spec.whatwg.org/#dom-body-json + async json () { + return consume(this, 'json') + } + + // https://fetch.spec.whatwg.org/#dom-body-blob + async blob () { + return consume(this, 'blob') + } + + // https://fetch.spec.whatwg.org/#dom-body-bytes + async bytes () { + return consume(this, 'bytes') + } + + // https://fetch.spec.whatwg.org/#dom-body-arraybuffer + async arrayBuffer () { + return consume(this, 'arrayBuffer') + } + + // https://fetch.spec.whatwg.org/#dom-body-formdata + async formData () { + // TODO: Implement. + throw new NotSupportedError() + } + + // https://fetch.spec.whatwg.org/#dom-body-bodyused + get bodyUsed () { + return util.isDisturbed(this) + } + + // https://fetch.spec.whatwg.org/#dom-body-body + get body () { + if (!this[kBody]) { + this[kBody] = ReadableStreamFrom(this) + if (this[kConsume]) { + // TODO: Is this the best way to force a lock? + this[kBody].getReader() // Ensure stream is locked. + assert(this[kBody].locked) + } } -}; -const ContainerSubmitBatchExceptionHeaders = { - serializedName: "Container_submitBatchExceptionHeaders", - type: { - name: "Composite", - className: "ContainerSubmitBatchExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + return this[kBody] + } + + async dump (opts) { + let limit = Number.isFinite(opts?.limit) ? opts.limit : 128 * 1024 + const signal = opts?.signal + + if (signal != null && (typeof signal !== 'object' || !('aborted' in signal))) { + throw new InvalidArgumentError('signal must be an AbortSignal') } -}; -const ContainerFilterBlobsHeaders = { - serializedName: "Container_filterBlobsHeaders", - type: { - name: "Composite", - className: "ContainerFilterBlobsHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - } - } + + signal?.throwIfAborted() + + if (this._readableState.closeEmitted) { + return null } -}; -const ContainerFilterBlobsExceptionHeaders = { - serializedName: "Container_filterBlobsExceptionHeaders", - type: { - name: "Composite", - className: "ContainerFilterBlobsExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } + + return await new Promise((resolve, reject) => { + if (this[kContentLength] > limit) { + this.destroy(new AbortError()) + } + + const onAbort = () => { + this.destroy(signal.reason ?? new AbortError()) + } + signal?.addEventListener('abort', onAbort) + + this + .on('close', function () { + signal?.removeEventListener('abort', onAbort) + if (signal?.aborted) { + reject(signal.reason ?? new AbortError()) + } else { + resolve(null) + } + }) + .on('error', noop) + .on('data', function (chunk) { + limit -= chunk.length + if (limit <= 0) { + this.destroy() + } + }) + .resume() + }) + } +} + +// https://streams.spec.whatwg.org/#readablestream-locked +function isLocked (self) { + // Consume is an implicit lock. + return (self[kBody] && self[kBody].locked === true) || self[kConsume] +} + +// https://fetch.spec.whatwg.org/#body-unusable +function isUnusable (self) { + return util.isDisturbed(self) || isLocked(self) +} + +async function consume (stream, type) { + assert(!stream[kConsume]) + + return new Promise((resolve, reject) => { + if (isUnusable(stream)) { + const rState = stream._readableState + if (rState.destroyed && rState.closeEmitted === false) { + stream + .on('error', err => { + reject(err) + }) + .on('close', () => { + reject(new TypeError('unusable')) + }) + } else { + reject(rState.errored ?? new TypeError('unusable')) + } + } else { + queueMicrotask(() => { + stream[kConsume] = { + type, + stream, + resolve, + reject, + length: 0, + body: [] + } + + stream + .on('error', function (err) { + consumeFinish(this[kConsume], err) + }) + .on('close', function () { + if (this[kConsume].body !== null) { + consumeFinish(this[kConsume], new RequestAbortedError()) } - } + }) + + consumeStart(stream[kConsume]) + }) } -}; -const ContainerAcquireLeaseHeaders = { - serializedName: "Container_acquireLeaseHeaders", - type: { - name: "Composite", - className: "ContainerAcquireLeaseHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - leaseId: { - serializedName: "x-ms-lease-id", - xmlName: "x-ms-lease-id", - type: { - name: "String" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - } - } + }) +} + +function consumeStart (consume) { + if (consume.body === null) { + return + } + + const { _readableState: state } = consume.stream + + if (state.bufferIndex) { + const start = state.bufferIndex + const end = state.buffer.length + for (let n = start; n < end; n++) { + consumePush(consume, state.buffer[n]) } -}; -const ContainerAcquireLeaseExceptionHeaders = { - serializedName: "Container_acquireLeaseExceptionHeaders", - type: { - name: "Composite", - className: "ContainerAcquireLeaseExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } else { + for (const chunk of state.buffer) { + consumePush(consume, chunk) } -}; -const ContainerReleaseLeaseHeaders = { - serializedName: "Container_releaseLeaseHeaders", - type: { - name: "Composite", - className: "ContainerReleaseLeaseHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - } - } + } + + if (state.endEmitted) { + consumeEnd(this[kConsume]) + } else { + consume.stream.on('end', function () { + consumeEnd(this[kConsume]) + }) + } + + consume.stream.resume() + + while (consume.stream.read() != null) { + // Loop + } +} + +/** + * @param {Buffer[]} chunks + * @param {number} length + */ +function chunksDecode (chunks, length) { + if (chunks.length === 0 || length === 0) { + return '' + } + const buffer = chunks.length === 1 ? chunks[0] : Buffer.concat(chunks, length) + const bufferLength = buffer.length + + // Skip BOM. + const start = + bufferLength > 2 && + buffer[0] === 0xef && + buffer[1] === 0xbb && + buffer[2] === 0xbf + ? 3 + : 0 + return buffer.utf8Slice(start, bufferLength) +} + +/** + * @param {Buffer[]} chunks + * @param {number} length + * @returns {Uint8Array} + */ +function chunksConcat (chunks, length) { + if (chunks.length === 0 || length === 0) { + return new Uint8Array(0) + } + if (chunks.length === 1) { + // fast-path + return new Uint8Array(chunks[0]) + } + const buffer = new Uint8Array(Buffer.allocUnsafeSlow(length).buffer) + + let offset = 0 + for (let i = 0; i < chunks.length; ++i) { + const chunk = chunks[i] + buffer.set(chunk, offset) + offset += chunk.length + } + + return buffer +} + +function consumeEnd (consume) { + const { type, body, resolve, stream, length } = consume + + try { + if (type === 'text') { + resolve(chunksDecode(body, length)) + } else if (type === 'json') { + resolve(JSON.parse(chunksDecode(body, length))) + } else if (type === 'arrayBuffer') { + resolve(chunksConcat(body, length).buffer) + } else if (type === 'blob') { + resolve(new Blob(body, { type: stream[kContentType] })) + } else if (type === 'bytes') { + resolve(chunksConcat(body, length)) + } + + consumeFinish(consume) + } catch (err) { + stream.destroy(err) + } +} + +function consumePush (consume, chunk) { + consume.length += chunk.length + consume.body.push(chunk) +} + +function consumeFinish (consume, err) { + if (consume.body === null) { + return + } + + if (err) { + consume.reject(err) + } else { + consume.resolve() + } + + consume.type = null + consume.stream = null + consume.resolve = null + consume.reject = null + consume.length = 0 + consume.body = null +} + +module.exports = { Readable: BodyReadable, chunksDecode } + + +/***/ }), + +/***/ 77474: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const assert = __nccwpck_require__(98061) +const { + ResponseStatusCodeError +} = __nccwpck_require__(48045) + +const { chunksDecode } = __nccwpck_require__(73858) +const CHUNK_LIMIT = 128 * 1024 + +async function getResolveErrorBodyCallback ({ callback, body, contentType, statusCode, statusMessage, headers }) { + assert(body) + + let chunks = [] + let length = 0 + + try { + for await (const chunk of body) { + chunks.push(chunk) + length += chunk.length + if (length > CHUNK_LIMIT) { + chunks = [] + length = 0 + break + } } -}; -const ContainerReleaseLeaseExceptionHeaders = { - serializedName: "Container_releaseLeaseExceptionHeaders", - type: { - name: "Composite", - className: "ContainerReleaseLeaseExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } catch { + chunks = [] + length = 0 + // Do nothing.... + } + + const message = `Response status code ${statusCode}${statusMessage ? `: ${statusMessage}` : ''}` + + if (statusCode === 204 || !contentType || !length) { + queueMicrotask(() => callback(new ResponseStatusCodeError(message, statusCode, headers))) + return + } + + const stackTraceLimit = Error.stackTraceLimit + Error.stackTraceLimit = 0 + let payload + + try { + if (isContentTypeApplicationJson(contentType)) { + payload = JSON.parse(chunksDecode(chunks, length)) + } else if (isContentTypeText(contentType)) { + payload = chunksDecode(chunks, length) } -}; -const ContainerRenewLeaseHeaders = { - serializedName: "Container_renewLeaseHeaders", - type: { - name: "Composite", - className: "ContainerRenewLeaseHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - leaseId: { - serializedName: "x-ms-lease-id", - xmlName: "x-ms-lease-id", - type: { - name: "String" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - } + } catch { + // process in a callback to avoid throwing in the microtask queue + } finally { + Error.stackTraceLimit = stackTraceLimit + } + queueMicrotask(() => callback(new ResponseStatusCodeError(message, statusCode, headers, payload))) +} + +const isContentTypeApplicationJson = (contentType) => { + return ( + contentType.length > 15 && + contentType[11] === '/' && + contentType[0] === 'a' && + contentType[1] === 'p' && + contentType[2] === 'p' && + contentType[3] === 'l' && + contentType[4] === 'i' && + contentType[5] === 'c' && + contentType[6] === 'a' && + contentType[7] === 't' && + contentType[8] === 'i' && + contentType[9] === 'o' && + contentType[10] === 'n' && + contentType[12] === 'j' && + contentType[13] === 's' && + contentType[14] === 'o' && + contentType[15] === 'n' + ) +} + +const isContentTypeText = (contentType) => { + return ( + contentType.length > 4 && + contentType[4] === '/' && + contentType[0] === 't' && + contentType[1] === 'e' && + contentType[2] === 'x' && + contentType[3] === 't' + ) +} + +module.exports = { + getResolveErrorBodyCallback, + isContentTypeApplicationJson, + isContentTypeText +} + + +/***/ }), + +/***/ 82067: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const net = __nccwpck_require__(87503) +const assert = __nccwpck_require__(98061) +const util = __nccwpck_require__(83983) +const { InvalidArgumentError, ConnectTimeoutError } = __nccwpck_require__(48045) +const timers = __nccwpck_require__(85194) + +function noop () {} + +let tls // include tls conditionally since it is not always available + +// TODO: session re-use does not wait for the first +// connection to resolve the session and might therefore +// resolve the same servername multiple times even when +// re-use is enabled. + +let SessionCache +// FIXME: remove workaround when the Node bug is fixed +// https://github.com/nodejs/node/issues/49344#issuecomment-1741776308 +if (global.FinalizationRegistry && !(process.env.NODE_V8_COVERAGE || process.env.UNDICI_NO_FG)) { + SessionCache = class WeakSessionCache { + constructor (maxCachedSessions) { + this._maxCachedSessions = maxCachedSessions + this._sessionCache = new Map() + this._sessionRegistry = new global.FinalizationRegistry((key) => { + if (this._sessionCache.size < this._maxCachedSessions) { + return } - } -}; -const ContainerRenewLeaseExceptionHeaders = { - serializedName: "Container_renewLeaseExceptionHeaders", - type: { - name: "Composite", - className: "ContainerRenewLeaseExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } + + const ref = this._sessionCache.get(key) + if (ref !== undefined && ref.deref() === undefined) { + this._sessionCache.delete(key) } + }) } -}; -const ContainerBreakLeaseHeaders = { - serializedName: "Container_breakLeaseHeaders", - type: { - name: "Composite", - className: "ContainerBreakLeaseHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - leaseTime: { - serializedName: "x-ms-lease-time", - xmlName: "x-ms-lease-time", - type: { - name: "Number" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - } - } + + get (sessionKey) { + const ref = this._sessionCache.get(sessionKey) + return ref ? ref.deref() : null } -}; -const ContainerBreakLeaseExceptionHeaders = { - serializedName: "Container_breakLeaseExceptionHeaders", - type: { - name: "Composite", - className: "ContainerBreakLeaseExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + set (sessionKey, session) { + if (this._maxCachedSessions === 0) { + return + } + + this._sessionCache.set(sessionKey, new WeakRef(session)) + this._sessionRegistry.register(session, sessionKey) } -}; -const ContainerChangeLeaseHeaders = { - serializedName: "Container_changeLeaseHeaders", - type: { - name: "Composite", - className: "ContainerChangeLeaseHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - leaseId: { - serializedName: "x-ms-lease-id", - xmlName: "x-ms-lease-id", - type: { - name: "String" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - } - } + } +} else { + SessionCache = class SimpleSessionCache { + constructor (maxCachedSessions) { + this._maxCachedSessions = maxCachedSessions + this._sessionCache = new Map() } -}; -const ContainerChangeLeaseExceptionHeaders = { - serializedName: "Container_changeLeaseExceptionHeaders", - type: { - name: "Composite", - className: "ContainerChangeLeaseExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + get (sessionKey) { + return this._sessionCache.get(sessionKey) } -}; -const ContainerListBlobFlatSegmentHeaders = { - serializedName: "Container_listBlobFlatSegmentHeaders", - type: { - name: "Composite", - className: "ContainerListBlobFlatSegmentHeaders", - modelProperties: { - contentType: { - serializedName: "content-type", - xmlName: "content-type", - type: { - name: "String" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + set (sessionKey, session) { + if (this._maxCachedSessions === 0) { + return + } + + if (this._sessionCache.size >= this._maxCachedSessions) { + // remove the oldest session + const { value: oldestKey } = this._sessionCache.keys().next() + this._sessionCache.delete(oldestKey) + } + + this._sessionCache.set(sessionKey, session) } -}; -const ContainerListBlobFlatSegmentExceptionHeaders = { - serializedName: "Container_listBlobFlatSegmentExceptionHeaders", - type: { - name: "Composite", - className: "ContainerListBlobFlatSegmentExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } +} + +function buildConnector ({ allowH2, maxCachedSessions, socketPath, timeout, session: customSession, ...opts }) { + if (maxCachedSessions != null && (!Number.isInteger(maxCachedSessions) || maxCachedSessions < 0)) { + throw new InvalidArgumentError('maxCachedSessions must be a positive integer or zero') + } + + const options = { path: socketPath, ...opts } + const sessionCache = new SessionCache(maxCachedSessions == null ? 100 : maxCachedSessions) + timeout = timeout == null ? 10e3 : timeout + allowH2 = allowH2 != null ? allowH2 : false + return function connect ({ hostname, host, protocol, port, servername, localAddress, httpSocket }, callback) { + let socket + if (protocol === 'https:') { + if (!tls) { + tls = __nccwpck_require__(31764) + } + servername = servername || options.servername || util.getServerName(host) || null + + const sessionKey = servername || hostname + assert(sessionKey) + + const session = customSession || sessionCache.get(sessionKey) || null + + port = port || 443 + + socket = tls.connect({ + highWaterMark: 16384, // TLS in node can't have bigger HWM anyway... + ...options, + servername, + session, + localAddress, + // TODO(HTTP/2): Add support for h2c + ALPNProtocols: allowH2 ? ['http/1.1', 'h2'] : ['http/1.1'], + socket: httpSocket, // upgrade socket connection + port, + host: hostname + }) + + socket + .on('session', function (session) { + // TODO (fix): Can a session become invalid once established? Don't think so? + sessionCache.set(sessionKey, session) + }) + } else { + assert(!httpSocket, 'httpSocket can only be sent on TLS update') + + port = port || 80 + + socket = net.connect({ + highWaterMark: 64 * 1024, // Same as nodejs fs streams. + ...options, + localAddress, + port, + host: hostname + }) } -}; -const ContainerListBlobHierarchySegmentHeaders = { - serializedName: "Container_listBlobHierarchySegmentHeaders", - type: { - name: "Composite", - className: "ContainerListBlobHierarchySegmentHeaders", - modelProperties: { - contentType: { - serializedName: "content-type", - xmlName: "content-type", - type: { - name: "String" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + // Set TCP keep alive options on the socket here instead of in connect() for the case of assigning the socket + if (options.keepAlive == null || options.keepAlive) { + const keepAliveInitialDelay = options.keepAliveInitialDelay === undefined ? 60e3 : options.keepAliveInitialDelay + socket.setKeepAlive(true, keepAliveInitialDelay) } -}; -const ContainerListBlobHierarchySegmentExceptionHeaders = { - serializedName: "Container_listBlobHierarchySegmentExceptionHeaders", - type: { - name: "Composite", - className: "ContainerListBlobHierarchySegmentExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } + + const clearConnectTimeout = setupConnectTimeout(new WeakRef(socket), { timeout, hostname, port }) + + socket + .setNoDelay(true) + .once(protocol === 'https:' ? 'secureConnect' : 'connect', function () { + queueMicrotask(clearConnectTimeout) + + if (callback) { + const cb = callback + callback = null + cb(null, this) } - } -}; -const ContainerGetAccountInfoHeaders = { - serializedName: "Container_getAccountInfoHeaders", - type: { - name: "Composite", - className: "ContainerGetAccountInfoHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - skuName: { - serializedName: "x-ms-sku-name", - xmlName: "x-ms-sku-name", - type: { - name: "Enum", - allowedValues: [ - "Standard_LRS", - "Standard_GRS", - "Standard_RAGRS", - "Standard_ZRS", - "Premium_LRS" - ] - } - }, - accountKind: { - serializedName: "x-ms-account-kind", - xmlName: "x-ms-account-kind", - type: { - name: "Enum", - allowedValues: [ - "Storage", - "BlobStorage", - "StorageV2", - "FileStorage", - "BlockBlobStorage" - ] - } - } + }) + .on('error', function (err) { + queueMicrotask(clearConnectTimeout) + + if (callback) { + const cb = callback + callback = null + cb(err) } + }) + + return socket + } +} + +/** + * @param {WeakRef} socketWeakRef + * @param {object} opts + * @param {number} opts.timeout + * @param {string} opts.hostname + * @param {number} opts.port + * @returns {() => void} + */ +const setupConnectTimeout = process.platform === 'win32' + ? (socketWeakRef, opts) => { + if (!opts.timeout) { + return noop + } + + let s1 = null + let s2 = null + const fastTimer = timers.setFastTimeout(() => { + // setImmediate is added to make sure that we prioritize socket error events over timeouts + s1 = setImmediate(() => { + // Windows needs an extra setImmediate probably due to implementation differences in the socket logic + s2 = setImmediate(() => onConnectTimeout(socketWeakRef.deref(), opts)) + }) + }, opts.timeout) + return () => { + timers.clearFastTimeout(fastTimer) + clearImmediate(s1) + clearImmediate(s2) + } } -}; -const ContainerGetAccountInfoExceptionHeaders = { - serializedName: "Container_getAccountInfoExceptionHeaders", - type: { - name: "Composite", - className: "ContainerGetAccountInfoExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + : (socketWeakRef, opts) => { + if (!opts.timeout) { + return noop + } + + let s1 = null + const fastTimer = timers.setFastTimeout(() => { + // setImmediate is added to make sure that we prioritize socket error events over timeouts + s1 = setImmediate(() => { + onConnectTimeout(socketWeakRef.deref(), opts) + }) + }, opts.timeout) + return () => { + timers.clearFastTimeout(fastTimer) + clearImmediate(s1) + } } -}; -const BlobDownloadHeaders = { - serializedName: "Blob_downloadHeaders", - type: { - name: "Composite", - className: "BlobDownloadHeaders", - modelProperties: { - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - metadata: { - serializedName: "x-ms-meta", - xmlName: "x-ms-meta", - type: { - name: "Dictionary", - value: { type: { name: "String" } } - }, - headerCollectionPrefix: "x-ms-meta-" - }, - objectReplicationPolicyId: { - serializedName: "x-ms-or-policy-id", - xmlName: "x-ms-or-policy-id", - type: { - name: "String" - } - }, - objectReplicationRules: { - serializedName: "x-ms-or", - xmlName: "x-ms-or", - type: { - name: "Dictionary", - value: { type: { name: "String" } } - }, - headerCollectionPrefix: "x-ms-or-" - }, - contentLength: { - serializedName: "content-length", - xmlName: "content-length", - type: { - name: "Number" - } - }, - contentType: { - serializedName: "content-type", - xmlName: "content-type", - type: { - name: "String" - } - }, - contentRange: { - serializedName: "content-range", - xmlName: "content-range", - type: { - name: "String" - } - }, - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - contentEncoding: { - serializedName: "content-encoding", - xmlName: "content-encoding", - type: { - name: "String" - } - }, - cacheControl: { - serializedName: "cache-control", - xmlName: "cache-control", - type: { - name: "String" - } - }, - contentDisposition: { - serializedName: "content-disposition", - xmlName: "content-disposition", - type: { - name: "String" - } - }, - contentLanguage: { - serializedName: "content-language", - xmlName: "content-language", - type: { - name: "String" - } - }, - blobSequenceNumber: { - serializedName: "x-ms-blob-sequence-number", - xmlName: "x-ms-blob-sequence-number", - type: { - name: "Number" - } - }, - blobType: { - serializedName: "x-ms-blob-type", - xmlName: "x-ms-blob-type", - type: { - name: "Enum", - allowedValues: ["BlockBlob", "PageBlob", "AppendBlob"] - } - }, - copyCompletedOn: { - serializedName: "x-ms-copy-completion-time", - xmlName: "x-ms-copy-completion-time", - type: { - name: "DateTimeRfc1123" - } - }, - copyStatusDescription: { - serializedName: "x-ms-copy-status-description", - xmlName: "x-ms-copy-status-description", - type: { - name: "String" - } - }, - copyId: { - serializedName: "x-ms-copy-id", - xmlName: "x-ms-copy-id", - type: { - name: "String" - } - }, - copyProgress: { - serializedName: "x-ms-copy-progress", - xmlName: "x-ms-copy-progress", - type: { - name: "String" - } - }, - copySource: { - serializedName: "x-ms-copy-source", - xmlName: "x-ms-copy-source", - type: { - name: "String" - } - }, - copyStatus: { - serializedName: "x-ms-copy-status", - xmlName: "x-ms-copy-status", - type: { - name: "Enum", - allowedValues: ["pending", "success", "aborted", "failed"] - } - }, - leaseDuration: { - serializedName: "x-ms-lease-duration", - xmlName: "x-ms-lease-duration", - type: { - name: "Enum", - allowedValues: ["infinite", "fixed"] - } - }, - leaseState: { - serializedName: "x-ms-lease-state", - xmlName: "x-ms-lease-state", - type: { - name: "Enum", - allowedValues: [ - "available", - "leased", - "expired", - "breaking", - "broken" - ] - } - }, - leaseStatus: { - serializedName: "x-ms-lease-status", - xmlName: "x-ms-lease-status", - type: { - name: "Enum", - allowedValues: ["locked", "unlocked"] - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - versionId: { - serializedName: "x-ms-version-id", - xmlName: "x-ms-version-id", - type: { - name: "String" - } - }, - isCurrentVersion: { - serializedName: "x-ms-is-current-version", - xmlName: "x-ms-is-current-version", - type: { - name: "Boolean" - } - }, - acceptRanges: { - serializedName: "accept-ranges", - xmlName: "accept-ranges", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - blobCommittedBlockCount: { - serializedName: "x-ms-blob-committed-block-count", - xmlName: "x-ms-blob-committed-block-count", - type: { - name: "Number" - } - }, - isServerEncrypted: { - serializedName: "x-ms-server-encrypted", - xmlName: "x-ms-server-encrypted", - type: { - name: "Boolean" - } - }, - encryptionKeySha256: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - blobContentMD5: { - serializedName: "x-ms-blob-content-md5", - xmlName: "x-ms-blob-content-md5", - type: { - name: "ByteArray" - } - }, - tagCount: { - serializedName: "x-ms-tag-count", - xmlName: "x-ms-tag-count", - type: { - name: "Number" - } - }, - isSealed: { - serializedName: "x-ms-blob-sealed", - xmlName: "x-ms-blob-sealed", - type: { - name: "Boolean" - } - }, - lastAccessed: { - serializedName: "x-ms-last-access-time", - xmlName: "x-ms-last-access-time", - type: { - name: "DateTimeRfc1123" - } - }, - immutabilityPolicyExpiresOn: { - serializedName: "x-ms-immutability-policy-until-date", - xmlName: "x-ms-immutability-policy-until-date", - type: { - name: "DateTimeRfc1123" - } - }, - immutabilityPolicyMode: { - serializedName: "x-ms-immutability-policy-mode", - xmlName: "x-ms-immutability-policy-mode", - type: { - name: "Enum", - allowedValues: ["Mutable", "Unlocked", "Locked"] - } - }, - legalHold: { - serializedName: "x-ms-legal-hold", - xmlName: "x-ms-legal-hold", - type: { - name: "Boolean" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - }, - contentCrc64: { - serializedName: "x-ms-content-crc64", - xmlName: "x-ms-content-crc64", - type: { - name: "ByteArray" - } - } + +/** + * @param {net.Socket} socket + * @param {object} opts + * @param {number} opts.timeout + * @param {string} opts.hostname + * @param {number} opts.port + */ +function onConnectTimeout (socket, opts) { + // The socket could be already garbage collected + if (socket == null) { + return + } + + let message = 'Connect Timeout Error' + if (Array.isArray(socket.autoSelectFamilyAttemptedAddresses)) { + message += ` (attempted addresses: ${socket.autoSelectFamilyAttemptedAddresses.join(', ')},` + } else { + message += ` (attempted address: ${opts.hostname}:${opts.port},` + } + + message += ` timeout: ${opts.timeout}ms)` + + util.destroy(socket, new ConnectTimeoutError(message)) +} + +module.exports = buildConnector + + +/***/ }), + +/***/ 14462: +/***/ ((module) => { + +"use strict"; + + +/** @type {Record} */ +const headerNameLowerCasedRecord = {} + +// https://developer.mozilla.org/docs/Web/HTTP/Headers +const wellknownHeaderNames = [ + 'Accept', + 'Accept-Encoding', + 'Accept-Language', + 'Accept-Ranges', + 'Access-Control-Allow-Credentials', + 'Access-Control-Allow-Headers', + 'Access-Control-Allow-Methods', + 'Access-Control-Allow-Origin', + 'Access-Control-Expose-Headers', + 'Access-Control-Max-Age', + 'Access-Control-Request-Headers', + 'Access-Control-Request-Method', + 'Age', + 'Allow', + 'Alt-Svc', + 'Alt-Used', + 'Authorization', + 'Cache-Control', + 'Clear-Site-Data', + 'Connection', + 'Content-Disposition', + 'Content-Encoding', + 'Content-Language', + 'Content-Length', + 'Content-Location', + 'Content-Range', + 'Content-Security-Policy', + 'Content-Security-Policy-Report-Only', + 'Content-Type', + 'Cookie', + 'Cross-Origin-Embedder-Policy', + 'Cross-Origin-Opener-Policy', + 'Cross-Origin-Resource-Policy', + 'Date', + 'Device-Memory', + 'Downlink', + 'ECT', + 'ETag', + 'Expect', + 'Expect-CT', + 'Expires', + 'Forwarded', + 'From', + 'Host', + 'If-Match', + 'If-Modified-Since', + 'If-None-Match', + 'If-Range', + 'If-Unmodified-Since', + 'Keep-Alive', + 'Last-Modified', + 'Link', + 'Location', + 'Max-Forwards', + 'Origin', + 'Permissions-Policy', + 'Pragma', + 'Proxy-Authenticate', + 'Proxy-Authorization', + 'RTT', + 'Range', + 'Referer', + 'Referrer-Policy', + 'Refresh', + 'Retry-After', + 'Sec-WebSocket-Accept', + 'Sec-WebSocket-Extensions', + 'Sec-WebSocket-Key', + 'Sec-WebSocket-Protocol', + 'Sec-WebSocket-Version', + 'Server', + 'Server-Timing', + 'Service-Worker-Allowed', + 'Service-Worker-Navigation-Preload', + 'Set-Cookie', + 'SourceMap', + 'Strict-Transport-Security', + 'Supports-Loading-Mode', + 'TE', + 'Timing-Allow-Origin', + 'Trailer', + 'Transfer-Encoding', + 'Upgrade', + 'Upgrade-Insecure-Requests', + 'User-Agent', + 'Vary', + 'Via', + 'WWW-Authenticate', + 'X-Content-Type-Options', + 'X-DNS-Prefetch-Control', + 'X-Frame-Options', + 'X-Permitted-Cross-Domain-Policies', + 'X-Powered-By', + 'X-Requested-With', + 'X-XSS-Protection' +] + +for (let i = 0; i < wellknownHeaderNames.length; ++i) { + const key = wellknownHeaderNames[i] + const lowerCasedKey = key.toLowerCase() + headerNameLowerCasedRecord[key] = headerNameLowerCasedRecord[lowerCasedKey] = + lowerCasedKey +} + +// Note: object prototypes should not be able to be referenced. e.g. `Object#hasOwnProperty`. +Object.setPrototypeOf(headerNameLowerCasedRecord, null) + +module.exports = { + wellknownHeaderNames, + headerNameLowerCasedRecord +} + + +/***/ }), + +/***/ 58438: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + +const diagnosticsChannel = __nccwpck_require__(65714) +const util = __nccwpck_require__(47261) + +const undiciDebugLog = util.debuglog('undici') +const fetchDebuglog = util.debuglog('fetch') +const websocketDebuglog = util.debuglog('websocket') +let isClientSet = false +const channels = { + // Client + beforeConnect: diagnosticsChannel.channel('undici:client:beforeConnect'), + connected: diagnosticsChannel.channel('undici:client:connected'), + connectError: diagnosticsChannel.channel('undici:client:connectError'), + sendHeaders: diagnosticsChannel.channel('undici:client:sendHeaders'), + // Request + create: diagnosticsChannel.channel('undici:request:create'), + bodySent: diagnosticsChannel.channel('undici:request:bodySent'), + headers: diagnosticsChannel.channel('undici:request:headers'), + trailers: diagnosticsChannel.channel('undici:request:trailers'), + error: diagnosticsChannel.channel('undici:request:error'), + // WebSocket + open: diagnosticsChannel.channel('undici:websocket:open'), + close: diagnosticsChannel.channel('undici:websocket:close'), + socketError: diagnosticsChannel.channel('undici:websocket:socket_error'), + ping: diagnosticsChannel.channel('undici:websocket:ping'), + pong: diagnosticsChannel.channel('undici:websocket:pong') +} + +if (undiciDebugLog.enabled || fetchDebuglog.enabled) { + const debuglog = fetchDebuglog.enabled ? fetchDebuglog : undiciDebugLog + + // Track all Client events + diagnosticsChannel.channel('undici:client:beforeConnect').subscribe(evt => { + const { + connectParams: { version, protocol, port, host } + } = evt + debuglog( + 'connecting to %s using %s%s', + `${host}${port ? `:${port}` : ''}`, + protocol, + version + ) + }) + + diagnosticsChannel.channel('undici:client:connected').subscribe(evt => { + const { + connectParams: { version, protocol, port, host } + } = evt + debuglog( + 'connected to %s using %s%s', + `${host}${port ? `:${port}` : ''}`, + protocol, + version + ) + }) + + diagnosticsChannel.channel('undici:client:connectError').subscribe(evt => { + const { + connectParams: { version, protocol, port, host }, + error + } = evt + debuglog( + 'connection to %s using %s%s errored - %s', + `${host}${port ? `:${port}` : ''}`, + protocol, + version, + error.message + ) + }) + + diagnosticsChannel.channel('undici:client:sendHeaders').subscribe(evt => { + const { + request: { method, path, origin } + } = evt + debuglog('sending request to %s %s/%s', method, origin, path) + }) + + // Track Request events + diagnosticsChannel.channel('undici:request:headers').subscribe(evt => { + const { + request: { method, path, origin }, + response: { statusCode } + } = evt + debuglog( + 'received response to %s %s/%s - HTTP %d', + method, + origin, + path, + statusCode + ) + }) + + diagnosticsChannel.channel('undici:request:trailers').subscribe(evt => { + const { + request: { method, path, origin } + } = evt + debuglog('trailers received from %s %s/%s', method, origin, path) + }) + + diagnosticsChannel.channel('undici:request:error').subscribe(evt => { + const { + request: { method, path, origin }, + error + } = evt + debuglog( + 'request to %s %s/%s errored - %s', + method, + origin, + path, + error.message + ) + }) + + isClientSet = true +} + +if (websocketDebuglog.enabled) { + if (!isClientSet) { + const debuglog = undiciDebugLog.enabled ? undiciDebugLog : websocketDebuglog + diagnosticsChannel.channel('undici:client:beforeConnect').subscribe(evt => { + const { + connectParams: { version, protocol, port, host } + } = evt + debuglog( + 'connecting to %s%s using %s%s', + host, + port ? `:${port}` : '', + protocol, + version + ) + }) + + diagnosticsChannel.channel('undici:client:connected').subscribe(evt => { + const { + connectParams: { version, protocol, port, host } + } = evt + debuglog( + 'connected to %s%s using %s%s', + host, + port ? `:${port}` : '', + protocol, + version + ) + }) + + diagnosticsChannel.channel('undici:client:connectError').subscribe(evt => { + const { + connectParams: { version, protocol, port, host }, + error + } = evt + debuglog( + 'connection to %s%s using %s%s errored - %s', + host, + port ? `:${port}` : '', + protocol, + version, + error.message + ) + }) + + diagnosticsChannel.channel('undici:client:sendHeaders').subscribe(evt => { + const { + request: { method, path, origin } + } = evt + debuglog('sending request to %s %s/%s', method, origin, path) + }) + } + + // Track all WebSocket events + diagnosticsChannel.channel('undici:websocket:open').subscribe(evt => { + const { + address: { address, port } + } = evt + websocketDebuglog('connection opened %s%s', address, port ? `:${port}` : '') + }) + + diagnosticsChannel.channel('undici:websocket:close').subscribe(evt => { + const { websocket, code, reason } = evt + websocketDebuglog( + 'closed connection to %s - %s %s', + websocket.url, + code, + reason + ) + }) + + diagnosticsChannel.channel('undici:websocket:socket_error').subscribe(err => { + websocketDebuglog('connection errored - %s', err.message) + }) + + diagnosticsChannel.channel('undici:websocket:ping').subscribe(evt => { + websocketDebuglog('ping received') + }) + + diagnosticsChannel.channel('undici:websocket:pong').subscribe(evt => { + websocketDebuglog('pong received') + }) +} + +module.exports = { + channels +} + + +/***/ }), + +/***/ 48045: +/***/ ((module) => { + +"use strict"; + + +const kUndiciError = Symbol.for('undici.error.UND_ERR') +class UndiciError extends Error { + constructor (message) { + super(message) + this.name = 'UndiciError' + this.code = 'UND_ERR' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kUndiciError] === true + } + + [kUndiciError] = true +} + +const kConnectTimeoutError = Symbol.for('undici.error.UND_ERR_CONNECT_TIMEOUT') +class ConnectTimeoutError extends UndiciError { + constructor (message) { + super(message) + this.name = 'ConnectTimeoutError' + this.message = message || 'Connect Timeout Error' + this.code = 'UND_ERR_CONNECT_TIMEOUT' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kConnectTimeoutError] === true + } + + [kConnectTimeoutError] = true +} + +const kHeadersTimeoutError = Symbol.for('undici.error.UND_ERR_HEADERS_TIMEOUT') +class HeadersTimeoutError extends UndiciError { + constructor (message) { + super(message) + this.name = 'HeadersTimeoutError' + this.message = message || 'Headers Timeout Error' + this.code = 'UND_ERR_HEADERS_TIMEOUT' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kHeadersTimeoutError] === true + } + + [kHeadersTimeoutError] = true +} + +const kHeadersOverflowError = Symbol.for('undici.error.UND_ERR_HEADERS_OVERFLOW') +class HeadersOverflowError extends UndiciError { + constructor (message) { + super(message) + this.name = 'HeadersOverflowError' + this.message = message || 'Headers Overflow Error' + this.code = 'UND_ERR_HEADERS_OVERFLOW' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kHeadersOverflowError] === true + } + + [kHeadersOverflowError] = true +} + +const kBodyTimeoutError = Symbol.for('undici.error.UND_ERR_BODY_TIMEOUT') +class BodyTimeoutError extends UndiciError { + constructor (message) { + super(message) + this.name = 'BodyTimeoutError' + this.message = message || 'Body Timeout Error' + this.code = 'UND_ERR_BODY_TIMEOUT' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kBodyTimeoutError] === true + } + + [kBodyTimeoutError] = true +} + +const kResponseStatusCodeError = Symbol.for('undici.error.UND_ERR_RESPONSE_STATUS_CODE') +class ResponseStatusCodeError extends UndiciError { + constructor (message, statusCode, headers, body) { + super(message) + this.name = 'ResponseStatusCodeError' + this.message = message || 'Response Status Code Error' + this.code = 'UND_ERR_RESPONSE_STATUS_CODE' + this.body = body + this.status = statusCode + this.statusCode = statusCode + this.headers = headers + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kResponseStatusCodeError] === true + } + + [kResponseStatusCodeError] = true +} + +const kInvalidArgumentError = Symbol.for('undici.error.UND_ERR_INVALID_ARG') +class InvalidArgumentError extends UndiciError { + constructor (message) { + super(message) + this.name = 'InvalidArgumentError' + this.message = message || 'Invalid Argument Error' + this.code = 'UND_ERR_INVALID_ARG' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kInvalidArgumentError] === true + } + + [kInvalidArgumentError] = true +} + +const kInvalidReturnValueError = Symbol.for('undici.error.UND_ERR_INVALID_RETURN_VALUE') +class InvalidReturnValueError extends UndiciError { + constructor (message) { + super(message) + this.name = 'InvalidReturnValueError' + this.message = message || 'Invalid Return Value Error' + this.code = 'UND_ERR_INVALID_RETURN_VALUE' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kInvalidReturnValueError] === true + } + + [kInvalidReturnValueError] = true +} + +const kAbortError = Symbol.for('undici.error.UND_ERR_ABORT') +class AbortError extends UndiciError { + constructor (message) { + super(message) + this.name = 'AbortError' + this.message = message || 'The operation was aborted' + this.code = 'UND_ERR_ABORT' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kAbortError] === true + } + + [kAbortError] = true +} + +const kRequestAbortedError = Symbol.for('undici.error.UND_ERR_ABORTED') +class RequestAbortedError extends AbortError { + constructor (message) { + super(message) + this.name = 'AbortError' + this.message = message || 'Request aborted' + this.code = 'UND_ERR_ABORTED' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kRequestAbortedError] === true + } + + [kRequestAbortedError] = true +} + +const kInformationalError = Symbol.for('undici.error.UND_ERR_INFO') +class InformationalError extends UndiciError { + constructor (message) { + super(message) + this.name = 'InformationalError' + this.message = message || 'Request information' + this.code = 'UND_ERR_INFO' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kInformationalError] === true + } + + [kInformationalError] = true +} + +const kRequestContentLengthMismatchError = Symbol.for('undici.error.UND_ERR_REQ_CONTENT_LENGTH_MISMATCH') +class RequestContentLengthMismatchError extends UndiciError { + constructor (message) { + super(message) + this.name = 'RequestContentLengthMismatchError' + this.message = message || 'Request body length does not match content-length header' + this.code = 'UND_ERR_REQ_CONTENT_LENGTH_MISMATCH' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kRequestContentLengthMismatchError] === true + } + + [kRequestContentLengthMismatchError] = true +} + +const kResponseContentLengthMismatchError = Symbol.for('undici.error.UND_ERR_RES_CONTENT_LENGTH_MISMATCH') +class ResponseContentLengthMismatchError extends UndiciError { + constructor (message) { + super(message) + this.name = 'ResponseContentLengthMismatchError' + this.message = message || 'Response body length does not match content-length header' + this.code = 'UND_ERR_RES_CONTENT_LENGTH_MISMATCH' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kResponseContentLengthMismatchError] === true + } + + [kResponseContentLengthMismatchError] = true +} + +const kClientDestroyedError = Symbol.for('undici.error.UND_ERR_DESTROYED') +class ClientDestroyedError extends UndiciError { + constructor (message) { + super(message) + this.name = 'ClientDestroyedError' + this.message = message || 'The client is destroyed' + this.code = 'UND_ERR_DESTROYED' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kClientDestroyedError] === true + } + + [kClientDestroyedError] = true +} + +const kClientClosedError = Symbol.for('undici.error.UND_ERR_CLOSED') +class ClientClosedError extends UndiciError { + constructor (message) { + super(message) + this.name = 'ClientClosedError' + this.message = message || 'The client is closed' + this.code = 'UND_ERR_CLOSED' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kClientClosedError] === true + } + + [kClientClosedError] = true +} + +const kSocketError = Symbol.for('undici.error.UND_ERR_SOCKET') +class SocketError extends UndiciError { + constructor (message, socket) { + super(message) + this.name = 'SocketError' + this.message = message || 'Socket error' + this.code = 'UND_ERR_SOCKET' + this.socket = socket + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kSocketError] === true + } + + [kSocketError] = true +} + +const kNotSupportedError = Symbol.for('undici.error.UND_ERR_NOT_SUPPORTED') +class NotSupportedError extends UndiciError { + constructor (message) { + super(message) + this.name = 'NotSupportedError' + this.message = message || 'Not supported error' + this.code = 'UND_ERR_NOT_SUPPORTED' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kNotSupportedError] === true + } + + [kNotSupportedError] = true +} + +const kBalancedPoolMissingUpstreamError = Symbol.for('undici.error.UND_ERR_BPL_MISSING_UPSTREAM') +class BalancedPoolMissingUpstreamError extends UndiciError { + constructor (message) { + super(message) + this.name = 'MissingUpstreamError' + this.message = message || 'No upstream has been added to the BalancedPool' + this.code = 'UND_ERR_BPL_MISSING_UPSTREAM' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kBalancedPoolMissingUpstreamError] === true + } + + [kBalancedPoolMissingUpstreamError] = true +} + +const kHTTPParserError = Symbol.for('undici.error.UND_ERR_HTTP_PARSER') +class HTTPParserError extends Error { + constructor (message, code, data) { + super(message) + this.name = 'HTTPParserError' + this.code = code ? `HPE_${code}` : undefined + this.data = data ? data.toString() : undefined + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kHTTPParserError] === true + } + + [kHTTPParserError] = true +} + +const kResponseExceededMaxSizeError = Symbol.for('undici.error.UND_ERR_RES_EXCEEDED_MAX_SIZE') +class ResponseExceededMaxSizeError extends UndiciError { + constructor (message) { + super(message) + this.name = 'ResponseExceededMaxSizeError' + this.message = message || 'Response content exceeded max size' + this.code = 'UND_ERR_RES_EXCEEDED_MAX_SIZE' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kResponseExceededMaxSizeError] === true + } + + [kResponseExceededMaxSizeError] = true +} + +const kRequestRetryError = Symbol.for('undici.error.UND_ERR_REQ_RETRY') +class RequestRetryError extends UndiciError { + constructor (message, code, { headers, data }) { + super(message) + this.name = 'RequestRetryError' + this.message = message || 'Request retry error' + this.code = 'UND_ERR_REQ_RETRY' + this.statusCode = code + this.data = data + this.headers = headers + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kRequestRetryError] === true + } + + [kRequestRetryError] = true +} + +const kResponseError = Symbol.for('undici.error.UND_ERR_RESPONSE') +class ResponseError extends UndiciError { + constructor (message, code, { headers, data }) { + super(message) + this.name = 'ResponseError' + this.message = message || 'Response error' + this.code = 'UND_ERR_RESPONSE' + this.statusCode = code + this.data = data + this.headers = headers + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kResponseError] === true + } + + [kResponseError] = true +} + +const kSecureProxyConnectionError = Symbol.for('undici.error.UND_ERR_PRX_TLS') +class SecureProxyConnectionError extends UndiciError { + constructor (cause, message, options) { + super(message, { cause, ...(options ?? {}) }) + this.name = 'SecureProxyConnectionError' + this.message = message || 'Secure Proxy Connection failed' + this.code = 'UND_ERR_PRX_TLS' + this.cause = cause + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kSecureProxyConnectionError] === true + } + + [kSecureProxyConnectionError] = true +} + +const kMessageSizeExceededError = Symbol.for('undici.error.UND_ERR_WS_MESSAGE_SIZE_EXCEEDED') +class MessageSizeExceededError extends UndiciError { + constructor (message) { + super(message) + this.name = 'MessageSizeExceededError' + this.message = message || 'Max decompressed message size exceeded' + this.code = 'UND_ERR_WS_MESSAGE_SIZE_EXCEEDED' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kMessageSizeExceededError] === true + } + + get [kMessageSizeExceededError] () { + return true + } +} + +module.exports = { + AbortError, + HTTPParserError, + UndiciError, + HeadersTimeoutError, + HeadersOverflowError, + BodyTimeoutError, + RequestContentLengthMismatchError, + ConnectTimeoutError, + ResponseStatusCodeError, + InvalidArgumentError, + InvalidReturnValueError, + RequestAbortedError, + ClientDestroyedError, + ClientClosedError, + InformationalError, + SocketError, + NotSupportedError, + ResponseContentLengthMismatchError, + BalancedPoolMissingUpstreamError, + ResponseExceededMaxSizeError, + RequestRetryError, + ResponseError, + SecureProxyConnectionError, + MessageSizeExceededError +} + + +/***/ }), + +/***/ 62905: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { + InvalidArgumentError, + NotSupportedError +} = __nccwpck_require__(48045) +const assert = __nccwpck_require__(98061) +const { + isValidHTTPToken, + isValidHeaderValue, + isStream, + destroy, + isBuffer, + isFormDataLike, + isIterable, + isBlobLike, + buildURL, + validateHandler, + getServerName, + normalizedMethodRecords +} = __nccwpck_require__(83983) +const { channels } = __nccwpck_require__(58438) +const { headerNameLowerCasedRecord } = __nccwpck_require__(14462) + +// Verifies that a given path is valid does not contain control chars \x00 to \x20 +const invalidPathRegex = /[^\u0021-\u00ff]/ + +const kHandler = Symbol('handler') + +class Request { + constructor (origin, { + path, + method, + body, + headers, + query, + idempotent, + blocking, + upgrade, + headersTimeout, + bodyTimeout, + reset, + throwOnError, + expectContinue, + servername + }, handler) { + if (typeof path !== 'string') { + throw new InvalidArgumentError('path must be a string') + } else if ( + path[0] !== '/' && + !(path.startsWith('http://') || path.startsWith('https://')) && + method !== 'CONNECT' + ) { + throw new InvalidArgumentError('path must be an absolute URL or start with a slash') + } else if (invalidPathRegex.test(path)) { + throw new InvalidArgumentError('invalid request path') + } + + if (typeof method !== 'string') { + throw new InvalidArgumentError('method must be a string') + } else if (normalizedMethodRecords[method] === undefined && !isValidHTTPToken(method)) { + throw new InvalidArgumentError('invalid request method') + } + + if (upgrade && typeof upgrade !== 'string') { + throw new InvalidArgumentError('upgrade must be a string') + } + + if (upgrade && !isValidHeaderValue(upgrade)) { + throw new InvalidArgumentError('invalid upgrade header') + } + + if (headersTimeout != null && (!Number.isFinite(headersTimeout) || headersTimeout < 0)) { + throw new InvalidArgumentError('invalid headersTimeout') + } + + if (bodyTimeout != null && (!Number.isFinite(bodyTimeout) || bodyTimeout < 0)) { + throw new InvalidArgumentError('invalid bodyTimeout') + } + + if (reset != null && typeof reset !== 'boolean') { + throw new InvalidArgumentError('invalid reset') + } + + if (expectContinue != null && typeof expectContinue !== 'boolean') { + throw new InvalidArgumentError('invalid expectContinue') + } + + this.headersTimeout = headersTimeout + + this.bodyTimeout = bodyTimeout + + this.throwOnError = throwOnError === true + + this.method = method + + this.abort = null + + if (body == null) { + this.body = null + } else if (isStream(body)) { + this.body = body + + const rState = this.body._readableState + if (!rState || !rState.autoDestroy) { + this.endHandler = function autoDestroy () { + destroy(this) + } + this.body.on('end', this.endHandler) + } + + this.errorHandler = err => { + if (this.abort) { + this.abort(err) + } else { + this.error = err } + } + this.body.on('error', this.errorHandler) + } else if (isBuffer(body)) { + this.body = body.byteLength ? body : null + } else if (ArrayBuffer.isView(body)) { + this.body = body.buffer.byteLength ? Buffer.from(body.buffer, body.byteOffset, body.byteLength) : null + } else if (body instanceof ArrayBuffer) { + this.body = body.byteLength ? Buffer.from(body) : null + } else if (typeof body === 'string') { + this.body = body.length ? Buffer.from(body) : null + } else if (isFormDataLike(body) || isIterable(body) || isBlobLike(body)) { + this.body = body + } else { + throw new InvalidArgumentError('body must be a string, a Buffer, a Readable stream, an iterable, or an async iterable') } -}; -const BlobDownloadExceptionHeaders = { - serializedName: "Blob_downloadExceptionHeaders", - type: { - name: "Composite", - className: "BlobDownloadExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } + + this.completed = false + + this.aborted = false + + this.upgrade = upgrade || null + + this.path = query ? buildURL(path, query) : path + + this.origin = origin + + this.idempotent = idempotent == null + ? method === 'HEAD' || method === 'GET' + : idempotent + + this.blocking = blocking == null ? false : blocking + + this.reset = reset == null ? null : reset + + this.host = null + + this.contentLength = null + + this.contentType = null + + this.headers = [] + + // Only for H2 + this.expectContinue = expectContinue != null ? expectContinue : false + + if (Array.isArray(headers)) { + if (headers.length % 2 !== 0) { + throw new InvalidArgumentError('headers array must be even') + } + for (let i = 0; i < headers.length; i += 2) { + processHeader(this, headers[i], headers[i + 1]) + } + } else if (headers && typeof headers === 'object') { + if (headers[Symbol.iterator]) { + for (const header of headers) { + if (!Array.isArray(header) || header.length !== 2) { + throw new InvalidArgumentError('headers must be in key-value pair format') + } + processHeader(this, header[0], header[1]) + } + } else { + const keys = Object.keys(headers) + for (let i = 0; i < keys.length; ++i) { + processHeader(this, keys[i], headers[keys[i]]) } + } + } else if (headers != null) { + throw new InvalidArgumentError('headers must be an object or an array') } -}; -const BlobGetPropertiesHeaders = { - serializedName: "Blob_getPropertiesHeaders", - type: { - name: "Composite", - className: "BlobGetPropertiesHeaders", - modelProperties: { - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - createdOn: { - serializedName: "x-ms-creation-time", - xmlName: "x-ms-creation-time", - type: { - name: "DateTimeRfc1123" - } - }, - metadata: { - serializedName: "x-ms-meta", - xmlName: "x-ms-meta", - type: { - name: "Dictionary", - value: { type: { name: "String" } } - }, - headerCollectionPrefix: "x-ms-meta-" - }, - objectReplicationPolicyId: { - serializedName: "x-ms-or-policy-id", - xmlName: "x-ms-or-policy-id", - type: { - name: "String" - } - }, - objectReplicationRules: { - serializedName: "x-ms-or", - xmlName: "x-ms-or", - type: { - name: "Dictionary", - value: { type: { name: "String" } } - }, - headerCollectionPrefix: "x-ms-or-" - }, - blobType: { - serializedName: "x-ms-blob-type", - xmlName: "x-ms-blob-type", - type: { - name: "Enum", - allowedValues: ["BlockBlob", "PageBlob", "AppendBlob"] - } - }, - copyCompletedOn: { - serializedName: "x-ms-copy-completion-time", - xmlName: "x-ms-copy-completion-time", - type: { - name: "DateTimeRfc1123" - } - }, - copyStatusDescription: { - serializedName: "x-ms-copy-status-description", - xmlName: "x-ms-copy-status-description", - type: { - name: "String" - } - }, - copyId: { - serializedName: "x-ms-copy-id", - xmlName: "x-ms-copy-id", - type: { - name: "String" - } - }, - copyProgress: { - serializedName: "x-ms-copy-progress", - xmlName: "x-ms-copy-progress", - type: { - name: "String" - } - }, - copySource: { - serializedName: "x-ms-copy-source", - xmlName: "x-ms-copy-source", - type: { - name: "String" - } - }, - copyStatus: { - serializedName: "x-ms-copy-status", - xmlName: "x-ms-copy-status", - type: { - name: "Enum", - allowedValues: ["pending", "success", "aborted", "failed"] - } - }, - isIncrementalCopy: { - serializedName: "x-ms-incremental-copy", - xmlName: "x-ms-incremental-copy", - type: { - name: "Boolean" - } - }, - destinationSnapshot: { - serializedName: "x-ms-copy-destination-snapshot", - xmlName: "x-ms-copy-destination-snapshot", - type: { - name: "String" - } - }, - leaseDuration: { - serializedName: "x-ms-lease-duration", - xmlName: "x-ms-lease-duration", - type: { - name: "Enum", - allowedValues: ["infinite", "fixed"] - } - }, - leaseState: { - serializedName: "x-ms-lease-state", - xmlName: "x-ms-lease-state", - type: { - name: "Enum", - allowedValues: [ - "available", - "leased", - "expired", - "breaking", - "broken" - ] - } - }, - leaseStatus: { - serializedName: "x-ms-lease-status", - xmlName: "x-ms-lease-status", - type: { - name: "Enum", - allowedValues: ["locked", "unlocked"] - } - }, - contentLength: { - serializedName: "content-length", - xmlName: "content-length", - type: { - name: "Number" - } - }, - contentType: { - serializedName: "content-type", - xmlName: "content-type", - type: { - name: "String" - } - }, - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - contentEncoding: { - serializedName: "content-encoding", - xmlName: "content-encoding", - type: { - name: "String" - } - }, - contentDisposition: { - serializedName: "content-disposition", - xmlName: "content-disposition", - type: { - name: "String" - } - }, - contentLanguage: { - serializedName: "content-language", - xmlName: "content-language", - type: { - name: "String" - } - }, - cacheControl: { - serializedName: "cache-control", - xmlName: "cache-control", - type: { - name: "String" - } - }, - blobSequenceNumber: { - serializedName: "x-ms-blob-sequence-number", - xmlName: "x-ms-blob-sequence-number", - type: { - name: "Number" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - acceptRanges: { - serializedName: "accept-ranges", - xmlName: "accept-ranges", - type: { - name: "String" - } - }, - blobCommittedBlockCount: { - serializedName: "x-ms-blob-committed-block-count", - xmlName: "x-ms-blob-committed-block-count", - type: { - name: "Number" - } - }, - isServerEncrypted: { - serializedName: "x-ms-server-encrypted", - xmlName: "x-ms-server-encrypted", - type: { - name: "Boolean" - } - }, - encryptionKeySha256: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - accessTier: { - serializedName: "x-ms-access-tier", - xmlName: "x-ms-access-tier", - type: { - name: "String" - } - }, - accessTierInferred: { - serializedName: "x-ms-access-tier-inferred", - xmlName: "x-ms-access-tier-inferred", - type: { - name: "Boolean" - } - }, - archiveStatus: { - serializedName: "x-ms-archive-status", - xmlName: "x-ms-archive-status", - type: { - name: "String" - } - }, - accessTierChangedOn: { - serializedName: "x-ms-access-tier-change-time", - xmlName: "x-ms-access-tier-change-time", - type: { - name: "DateTimeRfc1123" - } - }, - versionId: { - serializedName: "x-ms-version-id", - xmlName: "x-ms-version-id", - type: { - name: "String" - } - }, - isCurrentVersion: { - serializedName: "x-ms-is-current-version", - xmlName: "x-ms-is-current-version", - type: { - name: "Boolean" - } - }, - tagCount: { - serializedName: "x-ms-tag-count", - xmlName: "x-ms-tag-count", - type: { - name: "Number" - } - }, - expiresOn: { - serializedName: "x-ms-expiry-time", - xmlName: "x-ms-expiry-time", - type: { - name: "DateTimeRfc1123" - } - }, - isSealed: { - serializedName: "x-ms-blob-sealed", - xmlName: "x-ms-blob-sealed", - type: { - name: "Boolean" - } - }, - rehydratePriority: { - serializedName: "x-ms-rehydrate-priority", - xmlName: "x-ms-rehydrate-priority", - type: { - name: "Enum", - allowedValues: ["High", "Standard"] - } - }, - lastAccessed: { - serializedName: "x-ms-last-access-time", - xmlName: "x-ms-last-access-time", - type: { - name: "DateTimeRfc1123" - } - }, - immutabilityPolicyExpiresOn: { - serializedName: "x-ms-immutability-policy-until-date", - xmlName: "x-ms-immutability-policy-until-date", - type: { - name: "DateTimeRfc1123" - } - }, - immutabilityPolicyMode: { - serializedName: "x-ms-immutability-policy-mode", - xmlName: "x-ms-immutability-policy-mode", - type: { - name: "Enum", - allowedValues: ["Mutable", "Unlocked", "Locked"] - } - }, - legalHold: { - serializedName: "x-ms-legal-hold", - xmlName: "x-ms-legal-hold", - type: { - name: "Boolean" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + validateHandler(handler, method, upgrade) + + this.servername = servername || getServerName(this.host) + + this[kHandler] = handler + + if (channels.create.hasSubscribers) { + channels.create.publish({ request: this }) } -}; -const BlobGetPropertiesExceptionHeaders = { - serializedName: "Blob_getPropertiesExceptionHeaders", - type: { - name: "Composite", - className: "BlobGetPropertiesExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } + + onBodySent (chunk) { + if (this[kHandler].onBodySent) { + try { + return this[kHandler].onBodySent(chunk) + } catch (err) { + this.abort(err) + } } -}; -const BlobDeleteHeaders = { - serializedName: "Blob_deleteHeaders", - type: { - name: "Composite", - className: "BlobDeleteHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } + + onRequestSent () { + if (channels.bodySent.hasSubscribers) { + channels.bodySent.publish({ request: this }) } -}; -const BlobDeleteExceptionHeaders = { - serializedName: "Blob_deleteExceptionHeaders", - type: { - name: "Composite", - className: "BlobDeleteExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (this[kHandler].onRequestSent) { + try { + return this[kHandler].onRequestSent() + } catch (err) { + this.abort(err) + } } -}; -const BlobUndeleteHeaders = { - serializedName: "Blob_undeleteHeaders", - type: { - name: "Composite", - className: "BlobUndeleteHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } + + onConnect (abort) { + assert(!this.aborted) + assert(!this.completed) + + if (this.error) { + abort(this.error) + } else { + this.abort = abort + return this[kHandler].onConnect(abort) } -}; -const BlobUndeleteExceptionHeaders = { - serializedName: "Blob_undeleteExceptionHeaders", - type: { - name: "Composite", - className: "BlobUndeleteExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } + + onResponseStarted () { + return this[kHandler].onResponseStarted?.() + } + + onHeaders (statusCode, headers, resume, statusText) { + assert(!this.aborted) + assert(!this.completed) + + if (channels.headers.hasSubscribers) { + channels.headers.publish({ request: this, response: { statusCode, headers, statusText } }) } -}; -const BlobSetExpiryHeaders = { - serializedName: "Blob_setExpiryHeaders", - type: { - name: "Composite", - className: "BlobSetExpiryHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - } - } + + try { + return this[kHandler].onHeaders(statusCode, headers, resume, statusText) + } catch (err) { + this.abort(err) } -}; -const BlobSetExpiryExceptionHeaders = { - serializedName: "Blob_setExpiryExceptionHeaders", - type: { - name: "Composite", - className: "BlobSetExpiryExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } + + onData (chunk) { + assert(!this.aborted) + assert(!this.completed) + + try { + return this[kHandler].onData(chunk) + } catch (err) { + this.abort(err) + return false } -}; -const BlobSetHttpHeadersHeaders = { - serializedName: "Blob_setHttpHeadersHeaders", - type: { - name: "Composite", - className: "BlobSetHttpHeadersHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - blobSequenceNumber: { - serializedName: "x-ms-blob-sequence-number", - xmlName: "x-ms-blob-sequence-number", - type: { - name: "Number" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } + + onUpgrade (statusCode, headers, socket) { + assert(!this.aborted) + assert(!this.completed) + + return this[kHandler].onUpgrade(statusCode, headers, socket) + } + + onComplete (trailers) { + this.onFinally() + + assert(!this.aborted) + + this.completed = true + if (channels.trailers.hasSubscribers) { + channels.trailers.publish({ request: this, trailers }) } -}; -const BlobSetHttpHeadersExceptionHeaders = { - serializedName: "Blob_setHttpHeadersExceptionHeaders", - type: { - name: "Composite", - className: "BlobSetHttpHeadersExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + try { + return this[kHandler].onComplete(trailers) + } catch (err) { + // TODO (fix): This might be a bad idea? + this.onError(err) } -}; -const BlobSetImmutabilityPolicyHeaders = { - serializedName: "Blob_setImmutabilityPolicyHeaders", - type: { - name: "Composite", - className: "BlobSetImmutabilityPolicyHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - immutabilityPolicyExpiry: { - serializedName: "x-ms-immutability-policy-until-date", - xmlName: "x-ms-immutability-policy-until-date", - type: { - name: "DateTimeRfc1123" - } - }, - immutabilityPolicyMode: { - serializedName: "x-ms-immutability-policy-mode", - xmlName: "x-ms-immutability-policy-mode", - type: { - name: "Enum", - allowedValues: ["Mutable", "Unlocked", "Locked"] - } - } - } + } + + onError (error) { + this.onFinally() + + if (channels.error.hasSubscribers) { + channels.error.publish({ request: this, error }) } -}; -const BlobSetImmutabilityPolicyExceptionHeaders = { - serializedName: "Blob_setImmutabilityPolicyExceptionHeaders", - type: { - name: "Composite", - className: "BlobSetImmutabilityPolicyExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (this.aborted) { + return } -}; -const BlobDeleteImmutabilityPolicyHeaders = { - serializedName: "Blob_deleteImmutabilityPolicyHeaders", - type: { - name: "Composite", - className: "BlobDeleteImmutabilityPolicyHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - } - } + this.aborted = true + + return this[kHandler].onError(error) + } + + onFinally () { + if (this.errorHandler) { + this.body.off('error', this.errorHandler) + this.errorHandler = null } -}; -const BlobDeleteImmutabilityPolicyExceptionHeaders = { - serializedName: "Blob_deleteImmutabilityPolicyExceptionHeaders", - type: { - name: "Composite", - className: "BlobDeleteImmutabilityPolicyExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (this.endHandler) { + this.body.off('end', this.endHandler) + this.endHandler = null } -}; -const BlobSetLegalHoldHeaders = { - serializedName: "Blob_setLegalHoldHeaders", - type: { - name: "Composite", - className: "BlobSetLegalHoldHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - legalHold: { - serializedName: "x-ms-legal-hold", - xmlName: "x-ms-legal-hold", - type: { - name: "Boolean" - } - } - } + } + + addHeader (key, value) { + processHeader(this, key, value) + return this + } +} + +function processHeader (request, key, val) { + if (val && (typeof val === 'object' && !Array.isArray(val))) { + throw new InvalidArgumentError(`invalid ${key} header`) + } else if (val === undefined) { + return + } + + let headerName = headerNameLowerCasedRecord[key] + + if (headerName === undefined) { + headerName = key.toLowerCase() + if (headerNameLowerCasedRecord[headerName] === undefined && !isValidHTTPToken(headerName)) { + throw new InvalidArgumentError('invalid header key') } -}; -const BlobSetLegalHoldExceptionHeaders = { - serializedName: "Blob_setLegalHoldExceptionHeaders", - type: { - name: "Composite", - className: "BlobSetLegalHoldExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } + } + + if (Array.isArray(val)) { + const arr = [] + for (let i = 0; i < val.length; i++) { + if (typeof val[i] === 'string') { + if (!isValidHeaderValue(val[i])) { + throw new InvalidArgumentError(`invalid ${key} header`) } + arr.push(val[i]) + } else if (val[i] === null) { + arr.push('') + } else if (typeof val[i] === 'object') { + throw new InvalidArgumentError(`invalid ${key} header`) + } else { + arr.push(`${val[i]}`) + } } -}; -const BlobSetMetadataHeaders = { - serializedName: "Blob_setMetadataHeaders", - type: { - name: "Composite", - className: "BlobSetMetadataHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - versionId: { - serializedName: "x-ms-version-id", - xmlName: "x-ms-version-id", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - isServerEncrypted: { - serializedName: "x-ms-request-server-encrypted", - xmlName: "x-ms-request-server-encrypted", - type: { - name: "Boolean" - } - }, - encryptionKeySha256: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + val = arr + } else if (typeof val === 'string') { + if (!isValidHeaderValue(val)) { + throw new InvalidArgumentError(`invalid ${key} header`) } -}; -const BlobSetMetadataExceptionHeaders = { - serializedName: "Blob_setMetadataExceptionHeaders", - type: { - name: "Composite", - className: "BlobSetMetadataExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } else if (val === null) { + val = '' + } else { + val = `${val}` + } + + if (headerName === 'host') { + if (request.host !== null) { + throw new InvalidArgumentError('duplicate host header') } -}; -const BlobAcquireLeaseHeaders = { - serializedName: "Blob_acquireLeaseHeaders", - type: { - name: "Composite", - className: "BlobAcquireLeaseHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - leaseId: { - serializedName: "x-ms-lease-id", - xmlName: "x-ms-lease-id", - type: { - name: "String" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - } - } + if (typeof val !== 'string') { + throw new InvalidArgumentError('invalid host header') } -}; -const BlobAcquireLeaseExceptionHeaders = { - serializedName: "Blob_acquireLeaseExceptionHeaders", - type: { - name: "Composite", - className: "BlobAcquireLeaseExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + // Consumed by Client + request.host = val + } else if (headerName === 'content-length') { + if (request.contentLength !== null) { + throw new InvalidArgumentError('duplicate content-length header') } -}; -const BlobReleaseLeaseHeaders = { - serializedName: "Blob_releaseLeaseHeaders", - type: { - name: "Composite", - className: "BlobReleaseLeaseHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - } - } + request.contentLength = parseInt(val, 10) + if (!Number.isFinite(request.contentLength)) { + throw new InvalidArgumentError('invalid content-length header') } -}; -const BlobReleaseLeaseExceptionHeaders = { - serializedName: "Blob_releaseLeaseExceptionHeaders", - type: { - name: "Composite", - className: "BlobReleaseLeaseExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } else if (request.contentType === null && headerName === 'content-type') { + request.contentType = val + request.headers.push(key, val) + } else if (headerName === 'transfer-encoding' || headerName === 'keep-alive' || headerName === 'upgrade') { + throw new InvalidArgumentError(`invalid ${headerName} header`) + } else if (headerName === 'connection') { + const value = typeof val === 'string' ? val.toLowerCase() : null + if (value !== 'close' && value !== 'keep-alive') { + throw new InvalidArgumentError('invalid connection header') } -}; -const BlobRenewLeaseHeaders = { - serializedName: "Blob_renewLeaseHeaders", - type: { - name: "Composite", - className: "BlobRenewLeaseHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - leaseId: { - serializedName: "x-ms-lease-id", - xmlName: "x-ms-lease-id", - type: { - name: "String" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - } - } + + if (value === 'close') { + request.reset = true } -}; -const BlobRenewLeaseExceptionHeaders = { - serializedName: "Blob_renewLeaseExceptionHeaders", - type: { - name: "Composite", - className: "BlobRenewLeaseExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } else if (headerName === 'expect') { + throw new NotSupportedError('expect header not supported') + } else { + request.headers.push(key, val) + } +} + +module.exports = Request + + +/***/ }), + +/***/ 72785: +/***/ ((module) => { + +module.exports = { + kClose: Symbol('close'), + kDestroy: Symbol('destroy'), + kDispatch: Symbol('dispatch'), + kUrl: Symbol('url'), + kWriting: Symbol('writing'), + kResuming: Symbol('resuming'), + kQueue: Symbol('queue'), + kConnect: Symbol('connect'), + kConnecting: Symbol('connecting'), + kKeepAliveDefaultTimeout: Symbol('default keep alive timeout'), + kKeepAliveMaxTimeout: Symbol('max keep alive timeout'), + kKeepAliveTimeoutThreshold: Symbol('keep alive timeout threshold'), + kKeepAliveTimeoutValue: Symbol('keep alive timeout'), + kKeepAlive: Symbol('keep alive'), + kHeadersTimeout: Symbol('headers timeout'), + kBodyTimeout: Symbol('body timeout'), + kServerName: Symbol('server name'), + kLocalAddress: Symbol('local address'), + kHost: Symbol('host'), + kNoRef: Symbol('no ref'), + kBodyUsed: Symbol('used'), + kBody: Symbol('abstracted request body'), + kRunning: Symbol('running'), + kBlocking: Symbol('blocking'), + kPending: Symbol('pending'), + kSize: Symbol('size'), + kBusy: Symbol('busy'), + kQueued: Symbol('queued'), + kFree: Symbol('free'), + kConnected: Symbol('connected'), + kClosed: Symbol('closed'), + kNeedDrain: Symbol('need drain'), + kReset: Symbol('reset'), + kDestroyed: Symbol.for('nodejs.stream.destroyed'), + kResume: Symbol('resume'), + kOnError: Symbol('on error'), + kMaxHeadersSize: Symbol('max headers size'), + kRunningIdx: Symbol('running index'), + kPendingIdx: Symbol('pending index'), + kError: Symbol('error'), + kClients: Symbol('clients'), + kClient: Symbol('client'), + kParser: Symbol('parser'), + kOnDestroyed: Symbol('destroy callbacks'), + kPipelining: Symbol('pipelining'), + kSocket: Symbol('socket'), + kHostHeader: Symbol('host header'), + kConnector: Symbol('connector'), + kStrictContentLength: Symbol('strict content length'), + kMaxRedirections: Symbol('maxRedirections'), + kMaxRequests: Symbol('maxRequestsPerClient'), + kProxy: Symbol('proxy agent options'), + kCounter: Symbol('socket request counter'), + kInterceptors: Symbol('dispatch interceptors'), + kMaxResponseSize: Symbol('max response size'), + kHTTP2Session: Symbol('http2Session'), + kHTTP2SessionState: Symbol('http2Session state'), + kRetryHandlerDefaultRetry: Symbol('retry agent default retry'), + kConstruct: Symbol('constructable'), + kListeners: Symbol('listeners'), + kHTTPContext: Symbol('http context'), + kMaxConcurrentStreams: Symbol('max concurrent streams'), + kNoProxyAgent: Symbol('no proxy agent'), + kHttpProxyAgent: Symbol('http proxy agent'), + kHttpsProxyAgent: Symbol('https proxy agent') +} + + +/***/ }), + +/***/ 57506: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { + wellknownHeaderNames, + headerNameLowerCasedRecord +} = __nccwpck_require__(14462) + +class TstNode { + /** @type {any} */ + value = null + /** @type {null | TstNode} */ + left = null + /** @type {null | TstNode} */ + middle = null + /** @type {null | TstNode} */ + right = null + /** @type {number} */ + code + /** + * @param {string} key + * @param {any} value + * @param {number} index + */ + constructor (key, value, index) { + if (index === undefined || index >= key.length) { + throw new TypeError('Unreachable') } -}; -const BlobChangeLeaseHeaders = { - serializedName: "Blob_changeLeaseHeaders", - type: { - name: "Composite", - className: "BlobChangeLeaseHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - leaseId: { - serializedName: "x-ms-lease-id", - xmlName: "x-ms-lease-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - } + const code = this.code = key.charCodeAt(index) + // check code is ascii string + if (code > 0x7F) { + throw new TypeError('key must be ascii string') + } + if (key.length !== ++index) { + this.middle = new TstNode(key, value, index) + } else { + this.value = value + } + } + + /** + * @param {string} key + * @param {any} value + */ + add (key, value) { + const length = key.length + if (length === 0) { + throw new TypeError('Unreachable') + } + let index = 0 + let node = this + while (true) { + const code = key.charCodeAt(index) + // check code is ascii string + if (code > 0x7F) { + throw new TypeError('key must be ascii string') + } + if (node.code === code) { + if (length === ++index) { + node.value = value + break + } else if (node.middle !== null) { + node = node.middle + } else { + node.middle = new TstNode(key, value, index) + break + } + } else if (node.code < code) { + if (node.left !== null) { + node = node.left + } else { + node.left = new TstNode(key, value, index) + break } + } else if (node.right !== null) { + node = node.right + } else { + node.right = new TstNode(key, value, index) + break + } } -}; -const BlobChangeLeaseExceptionHeaders = { - serializedName: "Blob_changeLeaseExceptionHeaders", - type: { - name: "Composite", - className: "BlobChangeLeaseExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } + } + + /** + * @param {Uint8Array} key + * @return {TstNode | null} + */ + search (key) { + const keylength = key.length + let index = 0 + let node = this + while (node !== null && index < keylength) { + let code = key[index] + // A-Z + // First check if it is bigger than 0x5a. + // Lowercase letters have higher char codes than uppercase ones. + // Also we assume that headers will mostly contain lowercase characters. + if (code <= 0x5a && code >= 0x41) { + // Lowercase for uppercase. + code |= 32 + } + while (node !== null) { + if (code === node.code) { + if (keylength === ++index) { + // Returns Node since it is the last key. + return node + } + node = node.middle + break } + node = node.code < code ? node.left : node.right + } } -}; -const BlobBreakLeaseHeaders = { - serializedName: "Blob_breakLeaseHeaders", - type: { - name: "Composite", - className: "BlobBreakLeaseHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - leaseTime: { - serializedName: "x-ms-lease-time", - xmlName: "x-ms-lease-time", - type: { - name: "Number" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - } - } + return null + } +} + +class TernarySearchTree { + /** @type {TstNode | null} */ + node = null + + /** + * @param {string} key + * @param {any} value + * */ + insert (key, value) { + if (this.node === null) { + this.node = new TstNode(key, value, 0) + } else { + this.node.add(key, value) } -}; -const BlobBreakLeaseExceptionHeaders = { - serializedName: "Blob_breakLeaseExceptionHeaders", - type: { - name: "Composite", - className: "BlobBreakLeaseExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } + + /** + * @param {Uint8Array} key + * @return {any} + */ + lookup (key) { + return this.node?.search(key)?.value ?? null + } +} + +const tree = new TernarySearchTree() + +for (let i = 0; i < wellknownHeaderNames.length; ++i) { + const key = headerNameLowerCasedRecord[wellknownHeaderNames[i]] + tree.insert(key, key) +} + +module.exports = { + TernarySearchTree, + tree +} + + +/***/ }), + +/***/ 83983: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const assert = __nccwpck_require__(98061) +const { kDestroyed, kBodyUsed, kListeners, kBody } = __nccwpck_require__(72785) +const { IncomingMessage } = __nccwpck_require__(88849) +const stream = __nccwpck_require__(84492) +const net = __nccwpck_require__(87503) +const { Blob } = __nccwpck_require__(72254) +const nodeUtil = __nccwpck_require__(47261) +const { stringify } = __nccwpck_require__(39630) +const { EventEmitter: EE } = __nccwpck_require__(15673) +const { InvalidArgumentError } = __nccwpck_require__(48045) +const { headerNameLowerCasedRecord } = __nccwpck_require__(14462) +const { tree } = __nccwpck_require__(57506) + +const [nodeMajor, nodeMinor] = process.versions.node.split('.').map(v => Number(v)) + +class BodyAsyncIterable { + constructor (body) { + this[kBody] = body + this[kBodyUsed] = false + } + + async * [Symbol.asyncIterator] () { + assert(!this[kBodyUsed], 'disturbed') + this[kBodyUsed] = true + yield * this[kBody] + } +} + +function wrapRequestBody (body) { + if (isStream(body)) { + // TODO (fix): Provide some way for the user to cache the file to e.g. /tmp + // so that it can be dispatched again? + // TODO (fix): Do we need 100-expect support to provide a way to do this properly? + if (bodyLength(body) === 0) { + body + .on('data', function () { + assert(false) + }) } -}; -const BlobCreateSnapshotHeaders = { - serializedName: "Blob_createSnapshotHeaders", - type: { - name: "Composite", - className: "BlobCreateSnapshotHeaders", - modelProperties: { - snapshot: { - serializedName: "x-ms-snapshot", - xmlName: "x-ms-snapshot", - type: { - name: "String" - } - }, - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - versionId: { - serializedName: "x-ms-version-id", - xmlName: "x-ms-version-id", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - isServerEncrypted: { - serializedName: "x-ms-request-server-encrypted", - xmlName: "x-ms-request-server-encrypted", - type: { - name: "Boolean" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (typeof body.readableDidRead !== 'boolean') { + body[kBodyUsed] = false + EE.prototype.on.call(body, 'data', function () { + this[kBodyUsed] = true + }) } -}; -const BlobCreateSnapshotExceptionHeaders = { - serializedName: "Blob_createSnapshotExceptionHeaders", - type: { - name: "Composite", - className: "BlobCreateSnapshotExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + return body + } else if (body && typeof body.pipeTo === 'function') { + // TODO (fix): We can't access ReadableStream internal state + // to determine whether or not it has been disturbed. This is just + // a workaround. + return new BodyAsyncIterable(body) + } else if ( + body && + typeof body !== 'string' && + !ArrayBuffer.isView(body) && + isIterable(body) + ) { + // TODO: Should we allow re-using iterable if !this.opts.idempotent + // or through some other flag? + return new BodyAsyncIterable(body) + } else { + return body + } +} + +function nop () {} + +function isStream (obj) { + return obj && typeof obj === 'object' && typeof obj.pipe === 'function' && typeof obj.on === 'function' +} + +// based on https://github.com/node-fetch/fetch-blob/blob/8ab587d34080de94140b54f07168451e7d0b655e/index.js#L229-L241 (MIT License) +function isBlobLike (object) { + if (object === null) { + return false + } else if (object instanceof Blob) { + return true + } else if (typeof object !== 'object') { + return false + } else { + const sTag = object[Symbol.toStringTag] + + return (sTag === 'Blob' || sTag === 'File') && ( + ('stream' in object && typeof object.stream === 'function') || + ('arrayBuffer' in object && typeof object.arrayBuffer === 'function') + ) + } +} + +function buildURL (url, queryParams) { + if (url.includes('?') || url.includes('#')) { + throw new Error('Query params cannot be passed when url already contains "?" or "#".') + } + + const stringified = stringify(queryParams) + + if (stringified) { + url += '?' + stringified + } + + return url +} + +function isValidPort (port) { + const value = parseInt(port, 10) + return ( + value === Number(port) && + value >= 0 && + value <= 65535 + ) +} + +function isHttpOrHttpsPrefixed (value) { + return ( + value != null && + value[0] === 'h' && + value[1] === 't' && + value[2] === 't' && + value[3] === 'p' && + ( + value[4] === ':' || + ( + value[4] === 's' && + value[5] === ':' + ) + ) + ) +} + +function parseURL (url) { + if (typeof url === 'string') { + url = new URL(url) + + if (!isHttpOrHttpsPrefixed(url.origin || url.protocol)) { + throw new InvalidArgumentError('Invalid URL protocol: the URL must start with `http:` or `https:`.') } -}; -const BlobStartCopyFromURLHeaders = { - serializedName: "Blob_startCopyFromURLHeaders", - type: { - name: "Composite", - className: "BlobStartCopyFromURLHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - versionId: { - serializedName: "x-ms-version-id", - xmlName: "x-ms-version-id", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - copyId: { - serializedName: "x-ms-copy-id", - xmlName: "x-ms-copy-id", - type: { - name: "String" - } - }, - copyStatus: { - serializedName: "x-ms-copy-status", - xmlName: "x-ms-copy-status", - type: { - name: "Enum", - allowedValues: ["pending", "success", "aborted", "failed"] - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + return url + } + + if (!url || typeof url !== 'object') { + throw new InvalidArgumentError('Invalid URL: The URL argument must be a non-null object.') + } + + if (!(url instanceof URL)) { + if (url.port != null && url.port !== '' && isValidPort(url.port) === false) { + throw new InvalidArgumentError('Invalid URL: port must be a valid integer or a string representation of an integer.') } -}; -const BlobStartCopyFromURLExceptionHeaders = { - serializedName: "Blob_startCopyFromURLExceptionHeaders", - type: { - name: "Composite", - className: "BlobStartCopyFromURLExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (url.path != null && typeof url.path !== 'string') { + throw new InvalidArgumentError('Invalid URL path: the path must be a string or null/undefined.') } -}; -const BlobCopyFromURLHeaders = { - serializedName: "Blob_copyFromURLHeaders", - type: { - name: "Composite", - className: "BlobCopyFromURLHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - versionId: { - serializedName: "x-ms-version-id", - xmlName: "x-ms-version-id", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - copyId: { - serializedName: "x-ms-copy-id", - xmlName: "x-ms-copy-id", - type: { - name: "String" - } - }, - copyStatus: { - defaultValue: "success", - isConstant: true, - serializedName: "x-ms-copy-status", - type: { - name: "String" - } - }, - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - xMsContentCrc64: { - serializedName: "x-ms-content-crc64", - xmlName: "x-ms-content-crc64", - type: { - name: "ByteArray" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (url.pathname != null && typeof url.pathname !== 'string') { + throw new InvalidArgumentError('Invalid URL pathname: the pathname must be a string or null/undefined.') } -}; -const BlobCopyFromURLExceptionHeaders = { - serializedName: "Blob_copyFromURLExceptionHeaders", - type: { - name: "Composite", - className: "BlobCopyFromURLExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (url.hostname != null && typeof url.hostname !== 'string') { + throw new InvalidArgumentError('Invalid URL hostname: the hostname must be a string or null/undefined.') } -}; -const BlobAbortCopyFromURLHeaders = { - serializedName: "Blob_abortCopyFromURLHeaders", - type: { - name: "Composite", - className: "BlobAbortCopyFromURLHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (url.origin != null && typeof url.origin !== 'string') { + throw new InvalidArgumentError('Invalid URL origin: the origin must be a string or null/undefined.') } -}; -const BlobAbortCopyFromURLExceptionHeaders = { - serializedName: "Blob_abortCopyFromURLExceptionHeaders", - type: { - name: "Composite", - className: "BlobAbortCopyFromURLExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (!isHttpOrHttpsPrefixed(url.origin || url.protocol)) { + throw new InvalidArgumentError('Invalid URL protocol: the URL must start with `http:` or `https:`.') } -}; -const BlobSetTierHeaders = { - serializedName: "Blob_setTierHeaders", - type: { - name: "Composite", - className: "BlobSetTierHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + const port = url.port != null + ? url.port + : (url.protocol === 'https:' ? 443 : 80) + let origin = url.origin != null + ? url.origin + : `${url.protocol || ''}//${url.hostname || ''}:${port}` + let path = url.path != null + ? url.path + : `${url.pathname || ''}${url.search || ''}` + + if (origin[origin.length - 1] === '/') { + origin = origin.slice(0, origin.length - 1) } -}; -const BlobSetTierExceptionHeaders = { - serializedName: "Blob_setTierExceptionHeaders", - type: { - name: "Composite", - className: "BlobSetTierExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (path && path[0] !== '/') { + path = `/${path}` } -}; -const BlobGetAccountInfoHeaders = { - serializedName: "Blob_getAccountInfoHeaders", - type: { - name: "Composite", - className: "BlobGetAccountInfoHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - skuName: { - serializedName: "x-ms-sku-name", - xmlName: "x-ms-sku-name", - type: { - name: "Enum", - allowedValues: [ - "Standard_LRS", - "Standard_GRS", - "Standard_RAGRS", - "Standard_ZRS", - "Premium_LRS" - ] - } - }, - accountKind: { - serializedName: "x-ms-account-kind", - xmlName: "x-ms-account-kind", - type: { - name: "Enum", - allowedValues: [ - "Storage", - "BlobStorage", - "StorageV2", - "FileStorage", - "BlockBlobStorage" - ] - } - } - } + // new URL(path, origin) is unsafe when `path` contains an absolute URL + // From https://developer.mozilla.org/en-US/docs/Web/API/URL/URL: + // If first parameter is a relative URL, second param is required, and will be used as the base URL. + // If first parameter is an absolute URL, a given second param will be ignored. + return new URL(`${origin}${path}`) + } + + if (!isHttpOrHttpsPrefixed(url.origin || url.protocol)) { + throw new InvalidArgumentError('Invalid URL protocol: the URL must start with `http:` or `https:`.') + } + + return url +} + +function parseOrigin (url) { + url = parseURL(url) + + if (url.pathname !== '/' || url.search || url.hash) { + throw new InvalidArgumentError('invalid url') + } + + return url +} + +function getHostname (host) { + if (host[0] === '[') { + const idx = host.indexOf(']') + + assert(idx !== -1) + return host.substring(1, idx) + } + + const idx = host.indexOf(':') + if (idx === -1) return host + + return host.substring(0, idx) +} + +// IP addresses are not valid server names per RFC6066 +// > Currently, the only server names supported are DNS hostnames +function getServerName (host) { + if (!host) { + return null + } + + assert(typeof host === 'string') + + const servername = getHostname(host) + if (net.isIP(servername)) { + return '' + } + + return servername +} + +function deepClone (obj) { + return JSON.parse(JSON.stringify(obj)) +} + +function isAsyncIterable (obj) { + return !!(obj != null && typeof obj[Symbol.asyncIterator] === 'function') +} + +function isIterable (obj) { + return !!(obj != null && (typeof obj[Symbol.iterator] === 'function' || typeof obj[Symbol.asyncIterator] === 'function')) +} + +function bodyLength (body) { + if (body == null) { + return 0 + } else if (isStream(body)) { + const state = body._readableState + return state && state.objectMode === false && state.ended === true && Number.isFinite(state.length) + ? state.length + : null + } else if (isBlobLike(body)) { + return body.size != null ? body.size : null + } else if (isBuffer(body)) { + return body.byteLength + } + + return null +} + +function isDestroyed (body) { + return body && !!(body.destroyed || body[kDestroyed] || (stream.isDestroyed?.(body))) +} + +function destroy (stream, err) { + if (stream == null || !isStream(stream) || isDestroyed(stream)) { + return + } + + if (typeof stream.destroy === 'function') { + if (Object.getPrototypeOf(stream).constructor === IncomingMessage) { + // See: https://github.com/nodejs/node/pull/38505/files + stream.socket = null } -}; -const BlobGetAccountInfoExceptionHeaders = { - serializedName: "Blob_getAccountInfoExceptionHeaders", - type: { - name: "Composite", - className: "BlobGetAccountInfoExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + stream.destroy(err) + } else if (err) { + queueMicrotask(() => { + stream.emit('error', err) + }) + } + + if (stream.destroyed !== true) { + stream[kDestroyed] = true + } +} + +const KEEPALIVE_TIMEOUT_EXPR = /timeout=(\d+)/ +function parseKeepAliveTimeout (val) { + const m = val.toString().match(KEEPALIVE_TIMEOUT_EXPR) + return m ? parseInt(m[1], 10) * 1000 : null +} + +/** + * Retrieves a header name and returns its lowercase value. + * @param {string | Buffer} value Header name + * @returns {string} + */ +function headerNameToString (value) { + return typeof value === 'string' + ? headerNameLowerCasedRecord[value] ?? value.toLowerCase() + : tree.lookup(value) ?? value.toString('latin1').toLowerCase() +} + +/** + * Receive the buffer as a string and return its lowercase value. + * @param {Buffer} value Header name + * @returns {string} + */ +function bufferToLowerCasedHeaderName (value) { + return tree.lookup(value) ?? value.toString('latin1').toLowerCase() +} + +/** + * @param {Record | (Buffer | string | (Buffer | string)[])[]} headers + * @param {Record} [obj] + * @returns {Record} + */ +function parseHeaders (headers, obj) { + if (obj === undefined) obj = {} + for (let i = 0; i < headers.length; i += 2) { + const key = headerNameToString(headers[i]) + let val = obj[key] + + if (val) { + if (typeof val === 'string') { + val = [val] + obj[key] = val + } + val.push(headers[i + 1].toString('utf8')) + } else { + const headersValue = headers[i + 1] + if (typeof headersValue === 'string') { + obj[key] = headersValue + } else { + obj[key] = Array.isArray(headersValue) ? headersValue.map(x => x.toString('utf8')) : headersValue.toString('utf8') + } } -}; -const BlobQueryHeaders = { - serializedName: "Blob_queryHeaders", - type: { - name: "Composite", - className: "BlobQueryHeaders", - modelProperties: { - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - metadata: { - serializedName: "x-ms-meta", - xmlName: "x-ms-meta", - type: { - name: "Dictionary", - value: { type: { name: "String" } } - } - }, - contentLength: { - serializedName: "content-length", - xmlName: "content-length", - type: { - name: "Number" - } - }, - contentType: { - serializedName: "content-type", - xmlName: "content-type", - type: { - name: "String" - } - }, - contentRange: { - serializedName: "content-range", - xmlName: "content-range", - type: { - name: "String" - } - }, - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - contentEncoding: { - serializedName: "content-encoding", - xmlName: "content-encoding", - type: { - name: "String" - } - }, - cacheControl: { - serializedName: "cache-control", - xmlName: "cache-control", - type: { - name: "String" - } - }, - contentDisposition: { - serializedName: "content-disposition", - xmlName: "content-disposition", - type: { - name: "String" - } - }, - contentLanguage: { - serializedName: "content-language", - xmlName: "content-language", - type: { - name: "String" - } - }, - blobSequenceNumber: { - serializedName: "x-ms-blob-sequence-number", - xmlName: "x-ms-blob-sequence-number", - type: { - name: "Number" - } - }, - blobType: { - serializedName: "x-ms-blob-type", - xmlName: "x-ms-blob-type", - type: { - name: "Enum", - allowedValues: ["BlockBlob", "PageBlob", "AppendBlob"] - } - }, - copyCompletionTime: { - serializedName: "x-ms-copy-completion-time", - xmlName: "x-ms-copy-completion-time", - type: { - name: "DateTimeRfc1123" - } - }, - copyStatusDescription: { - serializedName: "x-ms-copy-status-description", - xmlName: "x-ms-copy-status-description", - type: { - name: "String" - } - }, - copyId: { - serializedName: "x-ms-copy-id", - xmlName: "x-ms-copy-id", - type: { - name: "String" - } - }, - copyProgress: { - serializedName: "x-ms-copy-progress", - xmlName: "x-ms-copy-progress", - type: { - name: "String" - } - }, - copySource: { - serializedName: "x-ms-copy-source", - xmlName: "x-ms-copy-source", - type: { - name: "String" - } - }, - copyStatus: { - serializedName: "x-ms-copy-status", - xmlName: "x-ms-copy-status", - type: { - name: "Enum", - allowedValues: ["pending", "success", "aborted", "failed"] - } - }, - leaseDuration: { - serializedName: "x-ms-lease-duration", - xmlName: "x-ms-lease-duration", - type: { - name: "Enum", - allowedValues: ["infinite", "fixed"] - } - }, - leaseState: { - serializedName: "x-ms-lease-state", - xmlName: "x-ms-lease-state", - type: { - name: "Enum", - allowedValues: [ - "available", - "leased", - "expired", - "breaking", - "broken" - ] - } - }, - leaseStatus: { - serializedName: "x-ms-lease-status", - xmlName: "x-ms-lease-status", - type: { - name: "Enum", - allowedValues: ["locked", "unlocked"] - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - acceptRanges: { - serializedName: "accept-ranges", - xmlName: "accept-ranges", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - blobCommittedBlockCount: { - serializedName: "x-ms-blob-committed-block-count", - xmlName: "x-ms-blob-committed-block-count", - type: { - name: "Number" - } - }, - isServerEncrypted: { - serializedName: "x-ms-server-encrypted", - xmlName: "x-ms-server-encrypted", - type: { - name: "Boolean" - } - }, - encryptionKeySha256: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - blobContentMD5: { - serializedName: "x-ms-blob-content-md5", - xmlName: "x-ms-blob-content-md5", - type: { - name: "ByteArray" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - }, - contentCrc64: { - serializedName: "x-ms-content-crc64", - xmlName: "x-ms-content-crc64", - type: { - name: "ByteArray" - } - } - } + } + + // See https://github.com/nodejs/node/pull/46528 + if ('content-length' in obj && 'content-disposition' in obj) { + obj['content-disposition'] = Buffer.from(obj['content-disposition']).toString('latin1') + } + + return obj +} + +function parseRawHeaders (headers) { + const len = headers.length + const ret = new Array(len) + + let hasContentLength = false + let contentDispositionIdx = -1 + let key + let val + let kLen = 0 + + for (let n = 0; n < headers.length; n += 2) { + key = headers[n] + val = headers[n + 1] + + typeof key !== 'string' && (key = key.toString()) + typeof val !== 'string' && (val = val.toString('utf8')) + + kLen = key.length + if (kLen === 14 && key[7] === '-' && (key === 'content-length' || key.toLowerCase() === 'content-length')) { + hasContentLength = true + } else if (kLen === 19 && key[7] === '-' && (key === 'content-disposition' || key.toLowerCase() === 'content-disposition')) { + contentDispositionIdx = n + 1 } -}; -const BlobQueryExceptionHeaders = { - serializedName: "Blob_queryExceptionHeaders", - type: { - name: "Composite", - className: "BlobQueryExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + ret[n] = key + ret[n + 1] = val + } + + // See https://github.com/nodejs/node/pull/46528 + if (hasContentLength && contentDispositionIdx !== -1) { + ret[contentDispositionIdx] = Buffer.from(ret[contentDispositionIdx]).toString('latin1') + } + + return ret +} + +function isBuffer (buffer) { + // See, https://github.com/mcollina/undici/pull/319 + return buffer instanceof Uint8Array || Buffer.isBuffer(buffer) +} + +function validateHandler (handler, method, upgrade) { + if (!handler || typeof handler !== 'object') { + throw new InvalidArgumentError('handler must be an object') + } + + if (typeof handler.onConnect !== 'function') { + throw new InvalidArgumentError('invalid onConnect method') + } + + if (typeof handler.onError !== 'function') { + throw new InvalidArgumentError('invalid onError method') + } + + if (typeof handler.onBodySent !== 'function' && handler.onBodySent !== undefined) { + throw new InvalidArgumentError('invalid onBodySent method') + } + + if (upgrade || method === 'CONNECT') { + if (typeof handler.onUpgrade !== 'function') { + throw new InvalidArgumentError('invalid onUpgrade method') } -}; -const BlobGetTagsHeaders = { - serializedName: "Blob_getTagsHeaders", - type: { - name: "Composite", - className: "BlobGetTagsHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } else { + if (typeof handler.onHeaders !== 'function') { + throw new InvalidArgumentError('invalid onHeaders method') } -}; -const BlobGetTagsExceptionHeaders = { - serializedName: "Blob_getTagsExceptionHeaders", - type: { - name: "Composite", - className: "BlobGetTagsExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (typeof handler.onData !== 'function') { + throw new InvalidArgumentError('invalid onData method') } -}; -const BlobSetTagsHeaders = { - serializedName: "Blob_setTagsHeaders", - type: { - name: "Composite", - className: "BlobSetTagsHeaders", - modelProperties: { - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (typeof handler.onComplete !== 'function') { + throw new InvalidArgumentError('invalid onComplete method') } -}; -const BlobSetTagsExceptionHeaders = { - serializedName: "Blob_setTagsExceptionHeaders", - type: { - name: "Composite", - className: "BlobSetTagsExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } + } +} + +// A body is disturbed if it has been read from and it cannot +// be re-used without losing state or data. +function isDisturbed (body) { + // TODO (fix): Why is body[kBodyUsed] needed? + return !!(body && (stream.isDisturbed(body) || body[kBodyUsed])) +} + +function isErrored (body) { + return !!(body && stream.isErrored(body)) +} + +function isReadable (body) { + return !!(body && stream.isReadable(body)) +} + +function getSocketInfo (socket) { + return { + localAddress: socket.localAddress, + localPort: socket.localPort, + remoteAddress: socket.remoteAddress, + remotePort: socket.remotePort, + remoteFamily: socket.remoteFamily, + timeout: socket.timeout, + bytesWritten: socket.bytesWritten, + bytesRead: socket.bytesRead + } +} + +/** @type {globalThis['ReadableStream']} */ +function ReadableStreamFrom (iterable) { + // We cannot use ReadableStream.from here because it does not return a byte stream. + + let iterator + return new ReadableStream( + { + async start () { + iterator = iterable[Symbol.asyncIterator]() + }, + async pull (controller) { + const { done, value } = await iterator.next() + if (done) { + queueMicrotask(() => { + controller.close() + controller.byobRequest?.respond(0) + }) + } else { + const buf = Buffer.isBuffer(value) ? value : Buffer.from(value) + if (buf.byteLength) { + controller.enqueue(new Uint8Array(buf)) + } } + return controller.desiredSize > 0 + }, + async cancel (reason) { + await iterator.return() + }, + type: 'bytes' } -}; -const PageBlobCreateHeaders = { - serializedName: "PageBlob_createHeaders", - type: { - name: "Composite", - className: "PageBlobCreateHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - versionId: { - serializedName: "x-ms-version-id", - xmlName: "x-ms-version-id", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - isServerEncrypted: { - serializedName: "x-ms-request-server-encrypted", - xmlName: "x-ms-request-server-encrypted", - type: { - name: "Boolean" - } - }, - encryptionKeySha256: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + ) +} + +// The chunk should be a FormData instance and contains +// all the required methods. +function isFormDataLike (object) { + return ( + object && + typeof object === 'object' && + typeof object.append === 'function' && + typeof object.delete === 'function' && + typeof object.get === 'function' && + typeof object.getAll === 'function' && + typeof object.has === 'function' && + typeof object.set === 'function' && + object[Symbol.toStringTag] === 'FormData' + ) +} + +function addAbortListener (signal, listener) { + if ('addEventListener' in signal) { + signal.addEventListener('abort', listener, { once: true }) + return () => signal.removeEventListener('abort', listener) + } + signal.addListener('abort', listener) + return () => signal.removeListener('abort', listener) +} + +const hasToWellFormed = typeof String.prototype.toWellFormed === 'function' +const hasIsWellFormed = typeof String.prototype.isWellFormed === 'function' + +/** + * @param {string} val + */ +function toUSVString (val) { + return hasToWellFormed ? `${val}`.toWellFormed() : nodeUtil.toUSVString(val) +} + +/** + * @param {string} val + */ +// TODO: move this to webidl +function isUSVString (val) { + return hasIsWellFormed ? `${val}`.isWellFormed() : toUSVString(val) === `${val}` +} + +/** + * @see https://tools.ietf.org/html/rfc7230#section-3.2.6 + * @param {number} c + */ +function isTokenCharCode (c) { + switch (c) { + case 0x22: + case 0x28: + case 0x29: + case 0x2c: + case 0x2f: + case 0x3a: + case 0x3b: + case 0x3c: + case 0x3d: + case 0x3e: + case 0x3f: + case 0x40: + case 0x5b: + case 0x5c: + case 0x5d: + case 0x7b: + case 0x7d: + // DQUOTE and "(),/:;<=>?@[\]{}" + return false + default: + // VCHAR %x21-7E + return c >= 0x21 && c <= 0x7e + } +} + +/** + * @param {string} characters + */ +function isValidHTTPToken (characters) { + if (characters.length === 0) { + return false + } + for (let i = 0; i < characters.length; ++i) { + if (!isTokenCharCode(characters.charCodeAt(i))) { + return false } -}; -const PageBlobCreateExceptionHeaders = { - serializedName: "PageBlob_createExceptionHeaders", - type: { - name: "Composite", - className: "PageBlobCreateExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } + return true +} + +// headerCharRegex have been lifted from +// https://github.com/nodejs/node/blob/main/lib/_http_common.js + +/** + * Matches if val contains an invalid field-vchar + * field-value = *( field-content / obs-fold ) + * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ] + * field-vchar = VCHAR / obs-text + */ +const headerCharRegex = /[^\t\x20-\x7e\x80-\xff]/ + +/** + * @param {string} characters + */ +function isValidHeaderValue (characters) { + return !headerCharRegex.test(characters) +} + +// Parsed accordingly to RFC 9110 +// https://www.rfc-editor.org/rfc/rfc9110#field.content-range +function parseRangeHeader (range) { + if (range == null || range === '') return { start: 0, end: null, size: null } + + const m = range ? range.match(/^bytes (\d+)-(\d+)\/(\d+)?$/) : null + return m + ? { + start: parseInt(m[1]), + end: m[2] ? parseInt(m[2]) : null, + size: m[3] ? parseInt(m[3]) : null + } + : null +} + +function addListener (obj, name, listener) { + const listeners = (obj[kListeners] ??= []) + listeners.push([name, listener]) + obj.on(name, listener) + return obj +} + +function removeAllListeners (obj) { + for (const [name, listener] of obj[kListeners] ?? []) { + obj.removeListener(name, listener) + } + obj[kListeners] = null +} + +function errorRequest (client, request, err) { + try { + request.onError(err) + assert(request.aborted) + } catch (err) { + client.emit('error', err) + } +} + +const kEnumerableProperty = Object.create(null) +kEnumerableProperty.enumerable = true + +const normalizedMethodRecordsBase = { + delete: 'DELETE', + DELETE: 'DELETE', + get: 'GET', + GET: 'GET', + head: 'HEAD', + HEAD: 'HEAD', + options: 'OPTIONS', + OPTIONS: 'OPTIONS', + post: 'POST', + POST: 'POST', + put: 'PUT', + PUT: 'PUT' +} + +const normalizedMethodRecords = { + ...normalizedMethodRecordsBase, + patch: 'patch', + PATCH: 'PATCH' +} + +// Note: object prototypes should not be able to be referenced. e.g. `Object#hasOwnProperty`. +Object.setPrototypeOf(normalizedMethodRecordsBase, null) +Object.setPrototypeOf(normalizedMethodRecords, null) + +module.exports = { + kEnumerableProperty, + nop, + isDisturbed, + isErrored, + isReadable, + toUSVString, + isUSVString, + isBlobLike, + parseOrigin, + parseURL, + getServerName, + isStream, + isIterable, + isAsyncIterable, + isDestroyed, + headerNameToString, + bufferToLowerCasedHeaderName, + addListener, + removeAllListeners, + errorRequest, + parseRawHeaders, + parseHeaders, + parseKeepAliveTimeout, + destroy, + bodyLength, + deepClone, + ReadableStreamFrom, + isBuffer, + validateHandler, + getSocketInfo, + isFormDataLike, + buildURL, + addAbortListener, + isValidHTTPToken, + isValidHeaderValue, + isTokenCharCode, + parseRangeHeader, + normalizedMethodRecordsBase, + normalizedMethodRecords, + isValidPort, + isHttpOrHttpsPrefixed, + nodeMajor, + nodeMinor, + safeHTTPMethods: ['GET', 'HEAD', 'OPTIONS', 'TRACE'], + wrapRequestBody +} + + +/***/ }), + +/***/ 71208: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { InvalidArgumentError } = __nccwpck_require__(48045) +const { kClients, kRunning, kClose, kDestroy, kDispatch, kInterceptors } = __nccwpck_require__(72785) +const DispatcherBase = __nccwpck_require__(61544) +const Pool = __nccwpck_require__(20177) +const Client = __nccwpck_require__(8176) +const util = __nccwpck_require__(83983) +const createRedirectInterceptor = __nccwpck_require__(99099) + +const kOnConnect = Symbol('onConnect') +const kOnDisconnect = Symbol('onDisconnect') +const kOnConnectionError = Symbol('onConnectionError') +const kMaxRedirections = Symbol('maxRedirections') +const kOnDrain = Symbol('onDrain') +const kFactory = Symbol('factory') +const kOptions = Symbol('options') + +function defaultFactory (origin, opts) { + return opts && opts.connections === 1 + ? new Client(origin, opts) + : new Pool(origin, opts) +} + +class Agent extends DispatcherBase { + constructor ({ factory = defaultFactory, maxRedirections = 0, connect, ...options } = {}) { + super() + + if (typeof factory !== 'function') { + throw new InvalidArgumentError('factory must be a function.') } -}; -const PageBlobUploadPagesHeaders = { - serializedName: "PageBlob_uploadPagesHeaders", - type: { - name: "Composite", - className: "PageBlobUploadPagesHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - xMsContentCrc64: { - serializedName: "x-ms-content-crc64", - xmlName: "x-ms-content-crc64", - type: { - name: "ByteArray" - } - }, - blobSequenceNumber: { - serializedName: "x-ms-blob-sequence-number", - xmlName: "x-ms-blob-sequence-number", - type: { - name: "Number" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - isServerEncrypted: { - serializedName: "x-ms-request-server-encrypted", - xmlName: "x-ms-request-server-encrypted", - type: { - name: "Boolean" - } - }, - encryptionKeySha256: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (connect != null && typeof connect !== 'function' && typeof connect !== 'object') { + throw new InvalidArgumentError('connect must be a function or an object') } -}; -const PageBlobUploadPagesExceptionHeaders = { - serializedName: "PageBlob_uploadPagesExceptionHeaders", - type: { - name: "Composite", - className: "PageBlobUploadPagesExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (!Number.isInteger(maxRedirections) || maxRedirections < 0) { + throw new InvalidArgumentError('maxRedirections must be a positive number') } -}; -const PageBlobClearPagesHeaders = { - serializedName: "PageBlob_clearPagesHeaders", - type: { - name: "Composite", - className: "PageBlobClearPagesHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - xMsContentCrc64: { - serializedName: "x-ms-content-crc64", - xmlName: "x-ms-content-crc64", - type: { - name: "ByteArray" - } - }, - blobSequenceNumber: { - serializedName: "x-ms-blob-sequence-number", - xmlName: "x-ms-blob-sequence-number", - type: { - name: "Number" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (connect && typeof connect !== 'function') { + connect = { ...connect } } -}; -const PageBlobClearPagesExceptionHeaders = { - serializedName: "PageBlob_clearPagesExceptionHeaders", - type: { - name: "Composite", - className: "PageBlobClearPagesExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + this[kInterceptors] = options.interceptors?.Agent && Array.isArray(options.interceptors.Agent) + ? options.interceptors.Agent + : [createRedirectInterceptor({ maxRedirections })] + + this[kOptions] = { ...util.deepClone(options), connect } + this[kOptions].interceptors = options.interceptors + ? { ...options.interceptors } + : undefined + this[kMaxRedirections] = maxRedirections + this[kFactory] = factory + this[kClients] = new Map() + + this[kOnDrain] = (origin, targets) => { + this.emit('drain', origin, [this, ...targets]) } -}; -const PageBlobUploadPagesFromURLHeaders = { - serializedName: "PageBlob_uploadPagesFromURLHeaders", - type: { - name: "Composite", - className: "PageBlobUploadPagesFromURLHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - xMsContentCrc64: { - serializedName: "x-ms-content-crc64", - xmlName: "x-ms-content-crc64", - type: { - name: "ByteArray" - } - }, - blobSequenceNumber: { - serializedName: "x-ms-blob-sequence-number", - xmlName: "x-ms-blob-sequence-number", - type: { - name: "Number" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - isServerEncrypted: { - serializedName: "x-ms-request-server-encrypted", - xmlName: "x-ms-request-server-encrypted", - type: { - name: "Boolean" - } - }, - encryptionKeySha256: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + this[kOnConnect] = (origin, targets) => { + this.emit('connect', origin, [this, ...targets]) } -}; -const PageBlobUploadPagesFromURLExceptionHeaders = { - serializedName: "PageBlob_uploadPagesFromURLExceptionHeaders", - type: { - name: "Composite", - className: "PageBlobUploadPagesFromURLExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + this[kOnDisconnect] = (origin, targets, err) => { + this.emit('disconnect', origin, [this, ...targets], err) } -}; -const PageBlobGetPageRangesHeaders = { - serializedName: "PageBlob_getPageRangesHeaders", - type: { - name: "Composite", - className: "PageBlobGetPageRangesHeaders", - modelProperties: { - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - blobContentLength: { - serializedName: "x-ms-blob-content-length", - xmlName: "x-ms-blob-content-length", - type: { - name: "Number" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + this[kOnConnectionError] = (origin, targets, err) => { + this.emit('connectionError', origin, [this, ...targets], err) } -}; -const PageBlobGetPageRangesExceptionHeaders = { - serializedName: "PageBlob_getPageRangesExceptionHeaders", - type: { - name: "Composite", - className: "PageBlobGetPageRangesExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } + + get [kRunning] () { + let ret = 0 + for (const client of this[kClients].values()) { + ret += client[kRunning] } -}; -const PageBlobGetPageRangesDiffHeaders = { - serializedName: "PageBlob_getPageRangesDiffHeaders", - type: { - name: "Composite", - className: "PageBlobGetPageRangesDiffHeaders", - modelProperties: { - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - blobContentLength: { - serializedName: "x-ms-blob-content-length", - xmlName: "x-ms-blob-content-length", - type: { - name: "Number" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + return ret + } + + [kDispatch] (opts, handler) { + let key + if (opts.origin && (typeof opts.origin === 'string' || opts.origin instanceof URL)) { + key = String(opts.origin) + } else { + throw new InvalidArgumentError('opts.origin must be a non-empty string or URL.') } -}; -const PageBlobGetPageRangesDiffExceptionHeaders = { - serializedName: "PageBlob_getPageRangesDiffExceptionHeaders", - type: { - name: "Composite", - className: "PageBlobGetPageRangesDiffExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + let dispatcher = this[kClients].get(key) + + if (!dispatcher) { + dispatcher = this[kFactory](opts.origin, this[kOptions]) + .on('drain', this[kOnDrain]) + .on('connect', this[kOnConnect]) + .on('disconnect', this[kOnDisconnect]) + .on('connectionError', this[kOnConnectionError]) + + // This introduces a tiny memory leak, as dispatchers are never removed from the map. + // TODO(mcollina): remove te timer when the client/pool do not have any more + // active connections. + this[kClients].set(key, dispatcher) } -}; -const PageBlobResizeHeaders = { - serializedName: "PageBlob_resizeHeaders", - type: { - name: "Composite", - className: "PageBlobResizeHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - blobSequenceNumber: { - serializedName: "x-ms-blob-sequence-number", - xmlName: "x-ms-blob-sequence-number", - type: { - name: "Number" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + return dispatcher.dispatch(opts, handler) + } + + async [kClose] () { + const closePromises = [] + for (const client of this[kClients].values()) { + closePromises.push(client.close()) } -}; -const PageBlobResizeExceptionHeaders = { - serializedName: "PageBlob_resizeExceptionHeaders", - type: { - name: "Composite", - className: "PageBlobResizeExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + this[kClients].clear() + + await Promise.all(closePromises) + } + + async [kDestroy] (err) { + const destroyPromises = [] + for (const client of this[kClients].values()) { + destroyPromises.push(client.destroy(err)) } -}; -const PageBlobUpdateSequenceNumberHeaders = { - serializedName: "PageBlob_updateSequenceNumberHeaders", - type: { - name: "Composite", - className: "PageBlobUpdateSequenceNumberHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - blobSequenceNumber: { - serializedName: "x-ms-blob-sequence-number", - xmlName: "x-ms-blob-sequence-number", - type: { - name: "Number" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + this[kClients].clear() + + await Promise.all(destroyPromises) + } +} + +module.exports = Agent + + +/***/ }), + +/***/ 46232: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { + BalancedPoolMissingUpstreamError, + InvalidArgumentError +} = __nccwpck_require__(48045) +const { + PoolBase, + kClients, + kNeedDrain, + kAddClient, + kRemoveClient, + kGetDispatcher +} = __nccwpck_require__(90494) +const Pool = __nccwpck_require__(20177) +const { kUrl, kInterceptors } = __nccwpck_require__(72785) +const { parseOrigin } = __nccwpck_require__(83983) +const kFactory = Symbol('factory') + +const kOptions = Symbol('options') +const kGreatestCommonDivisor = Symbol('kGreatestCommonDivisor') +const kCurrentWeight = Symbol('kCurrentWeight') +const kIndex = Symbol('kIndex') +const kWeight = Symbol('kWeight') +const kMaxWeightPerServer = Symbol('kMaxWeightPerServer') +const kErrorPenalty = Symbol('kErrorPenalty') + +/** + * Calculate the greatest common divisor of two numbers by + * using the Euclidean algorithm. + * + * @param {number} a + * @param {number} b + * @returns {number} + */ +function getGreatestCommonDivisor (a, b) { + if (a === 0) return b + + while (b !== 0) { + const t = b + b = a % b + a = t + } + return a +} + +function defaultFactory (origin, opts) { + return new Pool(origin, opts) +} + +class BalancedPool extends PoolBase { + constructor (upstreams = [], { factory = defaultFactory, ...opts } = {}) { + super() + + this[kOptions] = opts + this[kIndex] = -1 + this[kCurrentWeight] = 0 + + this[kMaxWeightPerServer] = this[kOptions].maxWeightPerServer || 100 + this[kErrorPenalty] = this[kOptions].errorPenalty || 15 + + if (!Array.isArray(upstreams)) { + upstreams = [upstreams] } -}; -const PageBlobUpdateSequenceNumberExceptionHeaders = { - serializedName: "PageBlob_updateSequenceNumberExceptionHeaders", - type: { - name: "Composite", - className: "PageBlobUpdateSequenceNumberExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (typeof factory !== 'function') { + throw new InvalidArgumentError('factory must be a function.') } -}; -const PageBlobCopyIncrementalHeaders = { - serializedName: "PageBlob_copyIncrementalHeaders", - type: { - name: "Composite", - className: "PageBlobCopyIncrementalHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - copyId: { - serializedName: "x-ms-copy-id", - xmlName: "x-ms-copy-id", - type: { - name: "String" - } - }, - copyStatus: { - serializedName: "x-ms-copy-status", - xmlName: "x-ms-copy-status", - type: { - name: "Enum", - allowedValues: ["pending", "success", "aborted", "failed"] - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + this[kInterceptors] = opts.interceptors?.BalancedPool && Array.isArray(opts.interceptors.BalancedPool) + ? opts.interceptors.BalancedPool + : [] + this[kFactory] = factory + + for (const upstream of upstreams) { + this.addUpstream(upstream) } -}; -const PageBlobCopyIncrementalExceptionHeaders = { - serializedName: "PageBlob_copyIncrementalExceptionHeaders", - type: { - name: "Composite", - className: "PageBlobCopyIncrementalExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + this._updateBalancedPoolStats() + } + + addUpstream (upstream) { + const upstreamOrigin = parseOrigin(upstream).origin + + if (this[kClients].find((pool) => ( + pool[kUrl].origin === upstreamOrigin && + pool.closed !== true && + pool.destroyed !== true + ))) { + return this } -}; -const AppendBlobCreateHeaders = { - serializedName: "AppendBlob_createHeaders", - type: { - name: "Composite", - className: "AppendBlobCreateHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - versionId: { - serializedName: "x-ms-version-id", - xmlName: "x-ms-version-id", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - isServerEncrypted: { - serializedName: "x-ms-request-server-encrypted", - xmlName: "x-ms-request-server-encrypted", - type: { - name: "Boolean" - } - }, - encryptionKeySha256: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } + const pool = this[kFactory](upstreamOrigin, Object.assign({}, this[kOptions])) + + this[kAddClient](pool) + pool.on('connect', () => { + pool[kWeight] = Math.min(this[kMaxWeightPerServer], pool[kWeight] + this[kErrorPenalty]) + }) + + pool.on('connectionError', () => { + pool[kWeight] = Math.max(1, pool[kWeight] - this[kErrorPenalty]) + this._updateBalancedPoolStats() + }) + + pool.on('disconnect', (...args) => { + const err = args[2] + if (err && err.code === 'UND_ERR_SOCKET') { + // decrease the weight of the pool. + pool[kWeight] = Math.max(1, pool[kWeight] - this[kErrorPenalty]) + this._updateBalancedPoolStats() + } + }) + + for (const client of this[kClients]) { + client[kWeight] = this[kMaxWeightPerServer] + } + + this._updateBalancedPoolStats() + + return this + } + + _updateBalancedPoolStats () { + let result = 0 + for (let i = 0; i < this[kClients].length; i++) { + result = getGreatestCommonDivisor(this[kClients][i][kWeight], result) + } + + this[kGreatestCommonDivisor] = result + } + + removeUpstream (upstream) { + const upstreamOrigin = parseOrigin(upstream).origin + + const pool = this[kClients].find((pool) => ( + pool[kUrl].origin === upstreamOrigin && + pool.closed !== true && + pool.destroyed !== true + )) + + if (pool) { + this[kRemoveClient](pool) + } + + return this + } + + get upstreams () { + return this[kClients] + .filter(dispatcher => dispatcher.closed !== true && dispatcher.destroyed !== true) + .map((p) => p[kUrl].origin) + } + + [kGetDispatcher] () { + // We validate that pools is greater than 0, + // otherwise we would have to wait until an upstream + // is added, which might never happen. + if (this[kClients].length === 0) { + throw new BalancedPoolMissingUpstreamError() + } + + const dispatcher = this[kClients].find(dispatcher => ( + !dispatcher[kNeedDrain] && + dispatcher.closed !== true && + dispatcher.destroyed !== true + )) + + if (!dispatcher) { + return + } + + const allClientsBusy = this[kClients].map(pool => pool[kNeedDrain]).reduce((a, b) => a && b, true) + + if (allClientsBusy) { + return + } + + let counter = 0 + + let maxWeightIndex = this[kClients].findIndex(pool => !pool[kNeedDrain]) + + while (counter++ < this[kClients].length) { + this[kIndex] = (this[kIndex] + 1) % this[kClients].length + const pool = this[kClients][this[kIndex]] + + // find pool index with the largest weight + if (pool[kWeight] > this[kClients][maxWeightIndex][kWeight] && !pool[kNeedDrain]) { + maxWeightIndex = this[kIndex] + } + + // decrease the current weight every `this[kClients].length`. + if (this[kIndex] === 0) { + // Set the current weight to the next lower weight. + this[kCurrentWeight] = this[kCurrentWeight] - this[kGreatestCommonDivisor] + + if (this[kCurrentWeight] <= 0) { + this[kCurrentWeight] = this[kMaxWeightPerServer] } + } + if (pool[kWeight] >= this[kCurrentWeight] && (!pool[kNeedDrain])) { + return pool + } } -}; -const AppendBlobCreateExceptionHeaders = { - serializedName: "AppendBlob_createExceptionHeaders", - type: { - name: "Composite", - className: "AppendBlobCreateExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } + + this[kCurrentWeight] = this[kClients][maxWeightIndex][kWeight] + this[kIndex] = maxWeightIndex + return this[kClients][maxWeightIndex] + } +} + +module.exports = BalancedPool + + +/***/ }), + +/***/ 43264: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +/* global WebAssembly */ + +const assert = __nccwpck_require__(98061) +const util = __nccwpck_require__(83983) +const { channels } = __nccwpck_require__(58438) +const timers = __nccwpck_require__(85194) +const { + RequestContentLengthMismatchError, + ResponseContentLengthMismatchError, + RequestAbortedError, + HeadersTimeoutError, + HeadersOverflowError, + SocketError, + InformationalError, + BodyTimeoutError, + HTTPParserError, + ResponseExceededMaxSizeError +} = __nccwpck_require__(48045) +const { + kUrl, + kReset, + kClient, + kParser, + kBlocking, + kRunning, + kPending, + kSize, + kWriting, + kQueue, + kNoRef, + kKeepAliveDefaultTimeout, + kHostHeader, + kPendingIdx, + kRunningIdx, + kError, + kPipelining, + kSocket, + kKeepAliveTimeoutValue, + kMaxHeadersSize, + kKeepAliveMaxTimeout, + kKeepAliveTimeoutThreshold, + kHeadersTimeout, + kBodyTimeout, + kStrictContentLength, + kMaxRequests, + kCounter, + kMaxResponseSize, + kOnError, + kResume, + kHTTPContext +} = __nccwpck_require__(72785) + +const constants = __nccwpck_require__(30953) +const EMPTY_BUF = Buffer.alloc(0) +const FastBuffer = Buffer[Symbol.species] +const addListener = util.addListener +const removeAllListeners = util.removeAllListeners + +let extractBody + +async function lazyllhttp () { + const llhttpWasmData = process.env.JEST_WORKER_ID ? __nccwpck_require__(61145) : undefined + + let mod + try { + mod = await WebAssembly.compile(__nccwpck_require__(95627)) + } catch (e) { + /* istanbul ignore next */ + + // We could check if the error was caused by the simd option not + // being enabled, but the occurring of this other error + // * https://github.com/emscripten-core/emscripten/issues/11495 + // got me to remove that check to avoid breaking Node 12. + mod = await WebAssembly.compile(llhttpWasmData || __nccwpck_require__(61145)) + } + + return await WebAssembly.instantiate(mod, { + env: { + /* eslint-disable camelcase */ + + wasm_on_url: (p, at, len) => { + /* istanbul ignore next */ + return 0 + }, + wasm_on_status: (p, at, len) => { + assert(currentParser.ptr === p) + const start = at - currentBufferPtr + currentBufferRef.byteOffset + return currentParser.onStatus(new FastBuffer(currentBufferRef.buffer, start, len)) || 0 + }, + wasm_on_message_begin: (p) => { + assert(currentParser.ptr === p) + return currentParser.onMessageBegin() || 0 + }, + wasm_on_header_field: (p, at, len) => { + assert(currentParser.ptr === p) + const start = at - currentBufferPtr + currentBufferRef.byteOffset + return currentParser.onHeaderField(new FastBuffer(currentBufferRef.buffer, start, len)) || 0 + }, + wasm_on_header_value: (p, at, len) => { + assert(currentParser.ptr === p) + const start = at - currentBufferPtr + currentBufferRef.byteOffset + return currentParser.onHeaderValue(new FastBuffer(currentBufferRef.buffer, start, len)) || 0 + }, + wasm_on_headers_complete: (p, statusCode, upgrade, shouldKeepAlive) => { + assert(currentParser.ptr === p) + return currentParser.onHeadersComplete(statusCode, Boolean(upgrade), Boolean(shouldKeepAlive)) || 0 + }, + wasm_on_body: (p, at, len) => { + assert(currentParser.ptr === p) + const start = at - currentBufferPtr + currentBufferRef.byteOffset + return currentParser.onBody(new FastBuffer(currentBufferRef.buffer, start, len)) || 0 + }, + wasm_on_message_complete: (p) => { + assert(currentParser.ptr === p) + return currentParser.onMessageComplete() || 0 + } + + /* eslint-enable camelcase */ + } + }) +} + +let llhttpInstance = null +let llhttpPromise = lazyllhttp() +llhttpPromise.catch() + +let currentParser = null +let currentBufferRef = null +let currentBufferSize = 0 +let currentBufferPtr = null + +const USE_NATIVE_TIMER = 0 +const USE_FAST_TIMER = 1 + +// Use fast timers for headers and body to take eventual event loop +// latency into account. +const TIMEOUT_HEADERS = 2 | USE_FAST_TIMER +const TIMEOUT_BODY = 4 | USE_FAST_TIMER + +// Use native timers to ignore event loop latency for keep-alive +// handling. +const TIMEOUT_KEEP_ALIVE = 8 | USE_NATIVE_TIMER + +class Parser { + constructor (client, socket, { exports }) { + assert(Number.isFinite(client[kMaxHeadersSize]) && client[kMaxHeadersSize] > 0) + + this.llhttp = exports + this.ptr = this.llhttp.llhttp_alloc(constants.TYPE.RESPONSE) + this.client = client + this.socket = socket + this.timeout = null + this.timeoutValue = null + this.timeoutType = null + this.statusCode = null + this.statusText = '' + this.upgrade = false + this.headers = [] + this.headersSize = 0 + this.headersMaxSize = client[kMaxHeadersSize] + this.shouldKeepAlive = false + this.paused = false + this.resume = this.resume.bind(this) + + this.bytesRead = 0 + + this.keepAlive = '' + this.contentLength = '' + this.connection = '' + this.maxResponseSize = client[kMaxResponseSize] + } + + setTimeout (delay, type) { + // If the existing timer and the new timer are of different timer type + // (fast or native) or have different delay, we need to clear the existing + // timer and set a new one. + if ( + delay !== this.timeoutValue || + (type & USE_FAST_TIMER) ^ (this.timeoutType & USE_FAST_TIMER) + ) { + // If a timeout is already set, clear it with clearTimeout of the fast + // timer implementation, as it can clear fast and native timers. + if (this.timeout) { + timers.clearTimeout(this.timeout) + this.timeout = null + } + + if (delay) { + if (type & USE_FAST_TIMER) { + this.timeout = timers.setFastTimeout(onParserTimeout, delay, new WeakRef(this)) + } else { + this.timeout = setTimeout(onParserTimeout, delay, new WeakRef(this)) + this.timeout.unref() } + } + + this.timeoutValue = delay + } else if (this.timeout) { + // istanbul ignore else: only for jest + if (this.timeout.refresh) { + this.timeout.refresh() + } } -}; -const AppendBlobAppendBlockHeaders = { - serializedName: "AppendBlob_appendBlockHeaders", - type: { - name: "Composite", - className: "AppendBlobAppendBlockHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - xMsContentCrc64: { - serializedName: "x-ms-content-crc64", - xmlName: "x-ms-content-crc64", - type: { - name: "ByteArray" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - blobAppendOffset: { - serializedName: "x-ms-blob-append-offset", - xmlName: "x-ms-blob-append-offset", - type: { - name: "String" - } - }, - blobCommittedBlockCount: { - serializedName: "x-ms-blob-committed-block-count", - xmlName: "x-ms-blob-committed-block-count", - type: { - name: "Number" - } - }, - isServerEncrypted: { - serializedName: "x-ms-request-server-encrypted", - xmlName: "x-ms-request-server-encrypted", - type: { - name: "Boolean" - } - }, - encryptionKeySha256: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + this.timeoutType = type + } + + resume () { + if (this.socket.destroyed || !this.paused) { + return } -}; -const AppendBlobAppendBlockExceptionHeaders = { - serializedName: "AppendBlob_appendBlockExceptionHeaders", - type: { - name: "Composite", - className: "AppendBlobAppendBlockExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + assert(this.ptr != null) + assert(currentParser == null) + + this.llhttp.llhttp_resume(this.ptr) + + assert(this.timeoutType === TIMEOUT_BODY) + if (this.timeout) { + // istanbul ignore else: only for jest + if (this.timeout.refresh) { + this.timeout.refresh() + } } -}; -const AppendBlobAppendBlockFromUrlHeaders = { - serializedName: "AppendBlob_appendBlockFromUrlHeaders", - type: { - name: "Composite", - className: "AppendBlobAppendBlockFromUrlHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - xMsContentCrc64: { - serializedName: "x-ms-content-crc64", - xmlName: "x-ms-content-crc64", - type: { - name: "ByteArray" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - blobAppendOffset: { - serializedName: "x-ms-blob-append-offset", - xmlName: "x-ms-blob-append-offset", - type: { - name: "String" - } - }, - blobCommittedBlockCount: { - serializedName: "x-ms-blob-committed-block-count", - xmlName: "x-ms-blob-committed-block-count", - type: { - name: "Number" - } - }, - encryptionKeySha256: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - isServerEncrypted: { - serializedName: "x-ms-request-server-encrypted", - xmlName: "x-ms-request-server-encrypted", - type: { - name: "Boolean" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + this.paused = false + this.execute(this.socket.read() || EMPTY_BUF) // Flush parser. + this.readMore() + } + + readMore () { + while (!this.paused && this.ptr) { + const chunk = this.socket.read() + if (chunk === null) { + break + } + this.execute(chunk) } -}; -const AppendBlobAppendBlockFromUrlExceptionHeaders = { - serializedName: "AppendBlob_appendBlockFromUrlExceptionHeaders", - type: { - name: "Composite", - className: "AppendBlobAppendBlockFromUrlExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } + + execute (data) { + assert(this.ptr != null) + assert(currentParser == null) + assert(!this.paused) + + const { socket, llhttp } = this + + if (data.length > currentBufferSize) { + if (currentBufferPtr) { + llhttp.free(currentBufferPtr) + } + currentBufferSize = Math.ceil(data.length / 4096) * 4096 + currentBufferPtr = llhttp.malloc(currentBufferSize) } -}; -const AppendBlobSealHeaders = { - serializedName: "AppendBlob_sealHeaders", - type: { - name: "Composite", - className: "AppendBlobSealHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - isSealed: { - serializedName: "x-ms-blob-sealed", - xmlName: "x-ms-blob-sealed", - type: { - name: "Boolean" - } - } - } + + new Uint8Array(llhttp.memory.buffer, currentBufferPtr, currentBufferSize).set(data) + + // Call `execute` on the wasm parser. + // We pass the `llhttp_parser` pointer address, the pointer address of buffer view data, + // and finally the length of bytes to parse. + // The return value is an error code or `constants.ERROR.OK`. + try { + let ret + + try { + currentBufferRef = data + currentParser = this + ret = llhttp.llhttp_execute(this.ptr, currentBufferPtr, data.length) + /* eslint-disable-next-line no-useless-catch */ + } catch (err) { + /* istanbul ignore next: difficult to make a test case for */ + throw err + } finally { + currentParser = null + currentBufferRef = null + } + + const offset = llhttp.llhttp_get_error_pos(this.ptr) - currentBufferPtr + + if (ret === constants.ERROR.PAUSED_UPGRADE) { + this.onUpgrade(data.slice(offset)) + } else if (ret === constants.ERROR.PAUSED) { + this.paused = true + socket.unshift(data.slice(offset)) + } else if (ret !== constants.ERROR.OK) { + const ptr = llhttp.llhttp_get_error_reason(this.ptr) + let message = '' + /* istanbul ignore else: difficult to make a test case for */ + if (ptr) { + const len = new Uint8Array(llhttp.memory.buffer, ptr).indexOf(0) + message = + 'Response does not match the HTTP/1.1 protocol (' + + Buffer.from(llhttp.memory.buffer, ptr, len).toString() + + ')' + } + throw new HTTPParserError(message, constants.ERROR[ret], data.slice(offset)) + } + } catch (err) { + util.destroy(socket, err) } -}; -const AppendBlobSealExceptionHeaders = { - serializedName: "AppendBlob_sealExceptionHeaders", - type: { - name: "Composite", - className: "AppendBlobSealExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } + + destroy () { + assert(this.ptr != null) + assert(currentParser == null) + + this.llhttp.llhttp_free(this.ptr) + this.ptr = null + + this.timeout && timers.clearTimeout(this.timeout) + this.timeout = null + this.timeoutValue = null + this.timeoutType = null + + this.paused = false + } + + onStatus (buf) { + this.statusText = buf.toString() + } + + onMessageBegin () { + const { socket, client } = this + + /* istanbul ignore next: difficult to make a test case for */ + if (socket.destroyed) { + return -1 } -}; -const BlockBlobUploadHeaders = { - serializedName: "BlockBlob_uploadHeaders", - type: { - name: "Composite", - className: "BlockBlobUploadHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - versionId: { - serializedName: "x-ms-version-id", - xmlName: "x-ms-version-id", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - isServerEncrypted: { - serializedName: "x-ms-request-server-encrypted", - xmlName: "x-ms-request-server-encrypted", - type: { - name: "Boolean" - } - }, - encryptionKeySha256: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + const request = client[kQueue][client[kRunningIdx]] + if (!request) { + return -1 } -}; -const BlockBlobUploadExceptionHeaders = { - serializedName: "BlockBlob_uploadExceptionHeaders", - type: { - name: "Composite", - className: "BlockBlobUploadExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + request.onResponseStarted() + } + + onHeaderField (buf) { + const len = this.headers.length + + if ((len & 1) === 0) { + this.headers.push(buf) + } else { + this.headers[len - 1] = Buffer.concat([this.headers[len - 1], buf]) } -}; -const BlockBlobPutBlobFromUrlHeaders = { - serializedName: "BlockBlob_putBlobFromUrlHeaders", - type: { - name: "Composite", - className: "BlockBlobPutBlobFromUrlHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - versionId: { - serializedName: "x-ms-version-id", - xmlName: "x-ms-version-id", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - isServerEncrypted: { - serializedName: "x-ms-request-server-encrypted", - xmlName: "x-ms-request-server-encrypted", - type: { - name: "Boolean" - } - }, - encryptionKeySha256: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + this.trackHeader(buf.length) + } + + onHeaderValue (buf) { + let len = this.headers.length + + if ((len & 1) === 1) { + this.headers.push(buf) + len += 1 + } else { + this.headers[len - 1] = Buffer.concat([this.headers[len - 1], buf]) } -}; -const BlockBlobPutBlobFromUrlExceptionHeaders = { - serializedName: "BlockBlob_putBlobFromUrlExceptionHeaders", - type: { - name: "Composite", - className: "BlockBlobPutBlobFromUrlExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + const key = this.headers[len - 2] + if (key.length === 10) { + const headerName = util.bufferToLowerCasedHeaderName(key) + if (headerName === 'keep-alive') { + this.keepAlive += buf.toString() + } else if (headerName === 'connection') { + this.connection += buf.toString() + } + } else if (key.length === 14 && util.bufferToLowerCasedHeaderName(key) === 'content-length') { + this.contentLength += buf.toString() } -}; -const BlockBlobStageBlockHeaders = { - serializedName: "BlockBlob_stageBlockHeaders", - type: { - name: "Composite", - className: "BlockBlobStageBlockHeaders", - modelProperties: { - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - xMsContentCrc64: { - serializedName: "x-ms-content-crc64", - xmlName: "x-ms-content-crc64", - type: { - name: "ByteArray" - } - }, - isServerEncrypted: { - serializedName: "x-ms-request-server-encrypted", - xmlName: "x-ms-request-server-encrypted", - type: { - name: "Boolean" - } - }, - encryptionKeySha256: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + this.trackHeader(buf.length) + } + + trackHeader (len) { + this.headersSize += len + if (this.headersSize >= this.headersMaxSize) { + util.destroy(this.socket, new HeadersOverflowError()) } -}; -const BlockBlobStageBlockExceptionHeaders = { - serializedName: "BlockBlob_stageBlockExceptionHeaders", - type: { - name: "Composite", - className: "BlockBlobStageBlockExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + } + + onUpgrade (head) { + const { upgrade, client, socket, headers, statusCode } = this + + assert(upgrade) + assert(client[kSocket] === socket) + assert(!socket.destroyed) + assert(!this.paused) + assert((headers.length & 1) === 0) + + const request = client[kQueue][client[kRunningIdx]] + assert(request) + assert(request.upgrade || request.method === 'CONNECT') + + this.statusCode = null + this.statusText = '' + this.shouldKeepAlive = null + + this.headers = [] + this.headersSize = 0 + + socket.unshift(head) + + socket[kParser].destroy() + socket[kParser] = null + + socket[kClient] = null + socket[kError] = null + + removeAllListeners(socket) + + client[kSocket] = null + client[kHTTPContext] = null // TODO (fix): This is hacky... + client[kQueue][client[kRunningIdx]++] = null + client.emit('disconnect', client[kUrl], [client], new InformationalError('upgrade')) + + try { + request.onUpgrade(statusCode, headers, socket) + } catch (err) { + util.destroy(socket, err) } -}; -const BlockBlobStageBlockFromURLHeaders = { - serializedName: "BlockBlob_stageBlockFromURLHeaders", - type: { - name: "Composite", - className: "BlockBlobStageBlockFromURLHeaders", - modelProperties: { - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - xMsContentCrc64: { - serializedName: "x-ms-content-crc64", - xmlName: "x-ms-content-crc64", - type: { - name: "ByteArray" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - isServerEncrypted: { - serializedName: "x-ms-request-server-encrypted", - xmlName: "x-ms-request-server-encrypted", - type: { - name: "Boolean" - } - }, - encryptionKeySha256: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + client[kResume]() + } + + onHeadersComplete (statusCode, upgrade, shouldKeepAlive) { + const { client, socket, headers, statusText } = this + + /* istanbul ignore next: difficult to make a test case for */ + if (socket.destroyed) { + return -1 } -}; -const BlockBlobStageBlockFromURLExceptionHeaders = { - serializedName: "BlockBlob_stageBlockFromURLExceptionHeaders", - type: { - name: "Composite", - className: "BlockBlobStageBlockFromURLExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + const request = client[kQueue][client[kRunningIdx]] + + /* istanbul ignore next: difficult to make a test case for */ + if (!request) { + return -1 } -}; -const BlockBlobCommitBlockListHeaders = { - serializedName: "BlockBlob_commitBlockListHeaders", - type: { - name: "Composite", - className: "BlockBlobCommitBlockListHeaders", - modelProperties: { - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - contentMD5: { - serializedName: "content-md5", - xmlName: "content-md5", - type: { - name: "ByteArray" - } - }, - xMsContentCrc64: { - serializedName: "x-ms-content-crc64", - xmlName: "x-ms-content-crc64", - type: { - name: "ByteArray" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - versionId: { - serializedName: "x-ms-version-id", - xmlName: "x-ms-version-id", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - isServerEncrypted: { - serializedName: "x-ms-request-server-encrypted", - xmlName: "x-ms-request-server-encrypted", - type: { - name: "Boolean" - } - }, - encryptionKeySha256: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } - }, - encryptionScope: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + assert(!this.upgrade) + assert(this.statusCode < 200) + + if (statusCode === 100) { + util.destroy(socket, new SocketError('bad response', util.getSocketInfo(socket))) + return -1 } -}; -const BlockBlobCommitBlockListExceptionHeaders = { - serializedName: "BlockBlob_commitBlockListExceptionHeaders", - type: { - name: "Composite", - className: "BlockBlobCommitBlockListExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + /* this can only happen if server is misbehaving */ + if (upgrade && !request.upgrade) { + util.destroy(socket, new SocketError('bad upgrade', util.getSocketInfo(socket))) + return -1 } -}; -const BlockBlobGetBlockListHeaders = { - serializedName: "BlockBlob_getBlockListHeaders", - type: { - name: "Composite", - className: "BlockBlobGetBlockListHeaders", - modelProperties: { - lastModified: { - serializedName: "last-modified", - xmlName: "last-modified", - type: { - name: "DateTimeRfc1123" - } - }, - etag: { - serializedName: "etag", - xmlName: "etag", - type: { - name: "String" - } - }, - contentType: { - serializedName: "content-type", - xmlName: "content-type", - type: { - name: "String" - } - }, - blobContentLength: { - serializedName: "x-ms-blob-content-length", - xmlName: "x-ms-blob-content-length", - type: { - name: "Number" - } - }, - clientRequestId: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } - }, - requestId: { - serializedName: "x-ms-request-id", - xmlName: "x-ms-request-id", - type: { - name: "String" - } - }, - version: { - serializedName: "x-ms-version", - xmlName: "x-ms-version", - type: { - name: "String" - } - }, - date: { - serializedName: "date", - xmlName: "date", - type: { - name: "DateTimeRfc1123" - } - }, - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + assert(this.timeoutType === TIMEOUT_HEADERS) + + this.statusCode = statusCode + this.shouldKeepAlive = ( + shouldKeepAlive || + // Override llhttp value which does not allow keepAlive for HEAD. + (request.method === 'HEAD' && !socket[kReset] && this.connection.toLowerCase() === 'keep-alive') + ) + + if (this.statusCode >= 200) { + const bodyTimeout = request.bodyTimeout != null + ? request.bodyTimeout + : client[kBodyTimeout] + this.setTimeout(bodyTimeout, TIMEOUT_BODY) + } else if (this.timeout) { + // istanbul ignore else: only for jest + if (this.timeout.refresh) { + this.timeout.refresh() + } } -}; -const BlockBlobGetBlockListExceptionHeaders = { - serializedName: "BlockBlob_getBlockListExceptionHeaders", - type: { - name: "Composite", - className: "BlockBlobGetBlockListExceptionHeaders", - modelProperties: { - errorCode: { - serializedName: "x-ms-error-code", - xmlName: "x-ms-error-code", - type: { - name: "String" - } - } - } + + if (request.method === 'CONNECT') { + assert(client[kRunning] === 1) + this.upgrade = true + return 2 } -}; -var Mappers = /*#__PURE__*/Object.freeze({ - __proto__: null, - BlobServiceProperties: BlobServiceProperties, - Logging: Logging, - RetentionPolicy: RetentionPolicy, - Metrics: Metrics, - CorsRule: CorsRule, - StaticWebsite: StaticWebsite, - StorageError: StorageError, - BlobServiceStatistics: BlobServiceStatistics, - GeoReplication: GeoReplication, - ListContainersSegmentResponse: ListContainersSegmentResponse, - ContainerItem: ContainerItem, - ContainerProperties: ContainerProperties, - KeyInfo: KeyInfo, - UserDelegationKey: UserDelegationKey, - FilterBlobSegment: FilterBlobSegment, - FilterBlobItem: FilterBlobItem, - BlobTags: BlobTags, - BlobTag: BlobTag, - SignedIdentifier: SignedIdentifier, - AccessPolicy: AccessPolicy, - ListBlobsFlatSegmentResponse: ListBlobsFlatSegmentResponse, - BlobFlatListSegment: BlobFlatListSegment, - BlobItemInternal: BlobItemInternal, - BlobName: BlobName, - BlobPropertiesInternal: BlobPropertiesInternal, - ListBlobsHierarchySegmentResponse: ListBlobsHierarchySegmentResponse, - BlobHierarchyListSegment: BlobHierarchyListSegment, - BlobPrefix: BlobPrefix, - BlockLookupList: BlockLookupList, - BlockList: BlockList, - Block: Block, - PageList: PageList, - PageRange: PageRange, - ClearRange: ClearRange, - QueryRequest: QueryRequest, - QuerySerialization: QuerySerialization, - QueryFormat: QueryFormat, - DelimitedTextConfiguration: DelimitedTextConfiguration, - JsonTextConfiguration: JsonTextConfiguration, - ArrowConfiguration: ArrowConfiguration, - ArrowField: ArrowField, - ServiceSetPropertiesHeaders: ServiceSetPropertiesHeaders, - ServiceSetPropertiesExceptionHeaders: ServiceSetPropertiesExceptionHeaders, - ServiceGetPropertiesHeaders: ServiceGetPropertiesHeaders, - ServiceGetPropertiesExceptionHeaders: ServiceGetPropertiesExceptionHeaders, - ServiceGetStatisticsHeaders: ServiceGetStatisticsHeaders, - ServiceGetStatisticsExceptionHeaders: ServiceGetStatisticsExceptionHeaders, - ServiceListContainersSegmentHeaders: ServiceListContainersSegmentHeaders, - ServiceListContainersSegmentExceptionHeaders: ServiceListContainersSegmentExceptionHeaders, - ServiceGetUserDelegationKeyHeaders: ServiceGetUserDelegationKeyHeaders, - ServiceGetUserDelegationKeyExceptionHeaders: ServiceGetUserDelegationKeyExceptionHeaders, - ServiceGetAccountInfoHeaders: ServiceGetAccountInfoHeaders, - ServiceGetAccountInfoExceptionHeaders: ServiceGetAccountInfoExceptionHeaders, - ServiceSubmitBatchHeaders: ServiceSubmitBatchHeaders, - ServiceSubmitBatchExceptionHeaders: ServiceSubmitBatchExceptionHeaders, - ServiceFilterBlobsHeaders: ServiceFilterBlobsHeaders, - ServiceFilterBlobsExceptionHeaders: ServiceFilterBlobsExceptionHeaders, - ContainerCreateHeaders: ContainerCreateHeaders, - ContainerCreateExceptionHeaders: ContainerCreateExceptionHeaders, - ContainerGetPropertiesHeaders: ContainerGetPropertiesHeaders, - ContainerGetPropertiesExceptionHeaders: ContainerGetPropertiesExceptionHeaders, - ContainerDeleteHeaders: ContainerDeleteHeaders, - ContainerDeleteExceptionHeaders: ContainerDeleteExceptionHeaders, - ContainerSetMetadataHeaders: ContainerSetMetadataHeaders, - ContainerSetMetadataExceptionHeaders: ContainerSetMetadataExceptionHeaders, - ContainerGetAccessPolicyHeaders: ContainerGetAccessPolicyHeaders, - ContainerGetAccessPolicyExceptionHeaders: ContainerGetAccessPolicyExceptionHeaders, - ContainerSetAccessPolicyHeaders: ContainerSetAccessPolicyHeaders, - ContainerSetAccessPolicyExceptionHeaders: ContainerSetAccessPolicyExceptionHeaders, - ContainerRestoreHeaders: ContainerRestoreHeaders, - ContainerRestoreExceptionHeaders: ContainerRestoreExceptionHeaders, - ContainerRenameHeaders: ContainerRenameHeaders, - ContainerRenameExceptionHeaders: ContainerRenameExceptionHeaders, - ContainerSubmitBatchHeaders: ContainerSubmitBatchHeaders, - ContainerSubmitBatchExceptionHeaders: ContainerSubmitBatchExceptionHeaders, - ContainerFilterBlobsHeaders: ContainerFilterBlobsHeaders, - ContainerFilterBlobsExceptionHeaders: ContainerFilterBlobsExceptionHeaders, - ContainerAcquireLeaseHeaders: ContainerAcquireLeaseHeaders, - ContainerAcquireLeaseExceptionHeaders: ContainerAcquireLeaseExceptionHeaders, - ContainerReleaseLeaseHeaders: ContainerReleaseLeaseHeaders, - ContainerReleaseLeaseExceptionHeaders: ContainerReleaseLeaseExceptionHeaders, - ContainerRenewLeaseHeaders: ContainerRenewLeaseHeaders, - ContainerRenewLeaseExceptionHeaders: ContainerRenewLeaseExceptionHeaders, - ContainerBreakLeaseHeaders: ContainerBreakLeaseHeaders, - ContainerBreakLeaseExceptionHeaders: ContainerBreakLeaseExceptionHeaders, - ContainerChangeLeaseHeaders: ContainerChangeLeaseHeaders, - ContainerChangeLeaseExceptionHeaders: ContainerChangeLeaseExceptionHeaders, - ContainerListBlobFlatSegmentHeaders: ContainerListBlobFlatSegmentHeaders, - ContainerListBlobFlatSegmentExceptionHeaders: ContainerListBlobFlatSegmentExceptionHeaders, - ContainerListBlobHierarchySegmentHeaders: ContainerListBlobHierarchySegmentHeaders, - ContainerListBlobHierarchySegmentExceptionHeaders: ContainerListBlobHierarchySegmentExceptionHeaders, - ContainerGetAccountInfoHeaders: ContainerGetAccountInfoHeaders, - ContainerGetAccountInfoExceptionHeaders: ContainerGetAccountInfoExceptionHeaders, - BlobDownloadHeaders: BlobDownloadHeaders, - BlobDownloadExceptionHeaders: BlobDownloadExceptionHeaders, - BlobGetPropertiesHeaders: BlobGetPropertiesHeaders, - BlobGetPropertiesExceptionHeaders: BlobGetPropertiesExceptionHeaders, - BlobDeleteHeaders: BlobDeleteHeaders, - BlobDeleteExceptionHeaders: BlobDeleteExceptionHeaders, - BlobUndeleteHeaders: BlobUndeleteHeaders, - BlobUndeleteExceptionHeaders: BlobUndeleteExceptionHeaders, - BlobSetExpiryHeaders: BlobSetExpiryHeaders, - BlobSetExpiryExceptionHeaders: BlobSetExpiryExceptionHeaders, - BlobSetHttpHeadersHeaders: BlobSetHttpHeadersHeaders, - BlobSetHttpHeadersExceptionHeaders: BlobSetHttpHeadersExceptionHeaders, - BlobSetImmutabilityPolicyHeaders: BlobSetImmutabilityPolicyHeaders, - BlobSetImmutabilityPolicyExceptionHeaders: BlobSetImmutabilityPolicyExceptionHeaders, - BlobDeleteImmutabilityPolicyHeaders: BlobDeleteImmutabilityPolicyHeaders, - BlobDeleteImmutabilityPolicyExceptionHeaders: BlobDeleteImmutabilityPolicyExceptionHeaders, - BlobSetLegalHoldHeaders: BlobSetLegalHoldHeaders, - BlobSetLegalHoldExceptionHeaders: BlobSetLegalHoldExceptionHeaders, - BlobSetMetadataHeaders: BlobSetMetadataHeaders, - BlobSetMetadataExceptionHeaders: BlobSetMetadataExceptionHeaders, - BlobAcquireLeaseHeaders: BlobAcquireLeaseHeaders, - BlobAcquireLeaseExceptionHeaders: BlobAcquireLeaseExceptionHeaders, - BlobReleaseLeaseHeaders: BlobReleaseLeaseHeaders, - BlobReleaseLeaseExceptionHeaders: BlobReleaseLeaseExceptionHeaders, - BlobRenewLeaseHeaders: BlobRenewLeaseHeaders, - BlobRenewLeaseExceptionHeaders: BlobRenewLeaseExceptionHeaders, - BlobChangeLeaseHeaders: BlobChangeLeaseHeaders, - BlobChangeLeaseExceptionHeaders: BlobChangeLeaseExceptionHeaders, - BlobBreakLeaseHeaders: BlobBreakLeaseHeaders, - BlobBreakLeaseExceptionHeaders: BlobBreakLeaseExceptionHeaders, - BlobCreateSnapshotHeaders: BlobCreateSnapshotHeaders, - BlobCreateSnapshotExceptionHeaders: BlobCreateSnapshotExceptionHeaders, - BlobStartCopyFromURLHeaders: BlobStartCopyFromURLHeaders, - BlobStartCopyFromURLExceptionHeaders: BlobStartCopyFromURLExceptionHeaders, - BlobCopyFromURLHeaders: BlobCopyFromURLHeaders, - BlobCopyFromURLExceptionHeaders: BlobCopyFromURLExceptionHeaders, - BlobAbortCopyFromURLHeaders: BlobAbortCopyFromURLHeaders, - BlobAbortCopyFromURLExceptionHeaders: BlobAbortCopyFromURLExceptionHeaders, - BlobSetTierHeaders: BlobSetTierHeaders, - BlobSetTierExceptionHeaders: BlobSetTierExceptionHeaders, - BlobGetAccountInfoHeaders: BlobGetAccountInfoHeaders, - BlobGetAccountInfoExceptionHeaders: BlobGetAccountInfoExceptionHeaders, - BlobQueryHeaders: BlobQueryHeaders, - BlobQueryExceptionHeaders: BlobQueryExceptionHeaders, - BlobGetTagsHeaders: BlobGetTagsHeaders, - BlobGetTagsExceptionHeaders: BlobGetTagsExceptionHeaders, - BlobSetTagsHeaders: BlobSetTagsHeaders, - BlobSetTagsExceptionHeaders: BlobSetTagsExceptionHeaders, - PageBlobCreateHeaders: PageBlobCreateHeaders, - PageBlobCreateExceptionHeaders: PageBlobCreateExceptionHeaders, - PageBlobUploadPagesHeaders: PageBlobUploadPagesHeaders, - PageBlobUploadPagesExceptionHeaders: PageBlobUploadPagesExceptionHeaders, - PageBlobClearPagesHeaders: PageBlobClearPagesHeaders, - PageBlobClearPagesExceptionHeaders: PageBlobClearPagesExceptionHeaders, - PageBlobUploadPagesFromURLHeaders: PageBlobUploadPagesFromURLHeaders, - PageBlobUploadPagesFromURLExceptionHeaders: PageBlobUploadPagesFromURLExceptionHeaders, - PageBlobGetPageRangesHeaders: PageBlobGetPageRangesHeaders, - PageBlobGetPageRangesExceptionHeaders: PageBlobGetPageRangesExceptionHeaders, - PageBlobGetPageRangesDiffHeaders: PageBlobGetPageRangesDiffHeaders, - PageBlobGetPageRangesDiffExceptionHeaders: PageBlobGetPageRangesDiffExceptionHeaders, - PageBlobResizeHeaders: PageBlobResizeHeaders, - PageBlobResizeExceptionHeaders: PageBlobResizeExceptionHeaders, - PageBlobUpdateSequenceNumberHeaders: PageBlobUpdateSequenceNumberHeaders, - PageBlobUpdateSequenceNumberExceptionHeaders: PageBlobUpdateSequenceNumberExceptionHeaders, - PageBlobCopyIncrementalHeaders: PageBlobCopyIncrementalHeaders, - PageBlobCopyIncrementalExceptionHeaders: PageBlobCopyIncrementalExceptionHeaders, - AppendBlobCreateHeaders: AppendBlobCreateHeaders, - AppendBlobCreateExceptionHeaders: AppendBlobCreateExceptionHeaders, - AppendBlobAppendBlockHeaders: AppendBlobAppendBlockHeaders, - AppendBlobAppendBlockExceptionHeaders: AppendBlobAppendBlockExceptionHeaders, - AppendBlobAppendBlockFromUrlHeaders: AppendBlobAppendBlockFromUrlHeaders, - AppendBlobAppendBlockFromUrlExceptionHeaders: AppendBlobAppendBlockFromUrlExceptionHeaders, - AppendBlobSealHeaders: AppendBlobSealHeaders, - AppendBlobSealExceptionHeaders: AppendBlobSealExceptionHeaders, - BlockBlobUploadHeaders: BlockBlobUploadHeaders, - BlockBlobUploadExceptionHeaders: BlockBlobUploadExceptionHeaders, - BlockBlobPutBlobFromUrlHeaders: BlockBlobPutBlobFromUrlHeaders, - BlockBlobPutBlobFromUrlExceptionHeaders: BlockBlobPutBlobFromUrlExceptionHeaders, - BlockBlobStageBlockHeaders: BlockBlobStageBlockHeaders, - BlockBlobStageBlockExceptionHeaders: BlockBlobStageBlockExceptionHeaders, - BlockBlobStageBlockFromURLHeaders: BlockBlobStageBlockFromURLHeaders, - BlockBlobStageBlockFromURLExceptionHeaders: BlockBlobStageBlockFromURLExceptionHeaders, - BlockBlobCommitBlockListHeaders: BlockBlobCommitBlockListHeaders, - BlockBlobCommitBlockListExceptionHeaders: BlockBlobCommitBlockListExceptionHeaders, - BlockBlobGetBlockListHeaders: BlockBlobGetBlockListHeaders, - BlockBlobGetBlockListExceptionHeaders: BlockBlobGetBlockListExceptionHeaders -}); + if (upgrade) { + assert(client[kRunning] === 1) + this.upgrade = true + return 2 + } -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ -const contentType = { - parameterPath: ["options", "contentType"], - mapper: { - defaultValue: "application/xml", - isConstant: true, - serializedName: "Content-Type", - type: { - name: "String" + assert((this.headers.length & 1) === 0) + this.headers = [] + this.headersSize = 0 + + if (this.shouldKeepAlive && client[kPipelining]) { + const keepAliveTimeout = this.keepAlive ? util.parseKeepAliveTimeout(this.keepAlive) : null + + if (keepAliveTimeout != null) { + const timeout = Math.min( + keepAliveTimeout - client[kKeepAliveTimeoutThreshold], + client[kKeepAliveMaxTimeout] + ) + if (timeout <= 0) { + socket[kReset] = true + } else { + client[kKeepAliveTimeoutValue] = timeout } + } else { + client[kKeepAliveTimeoutValue] = client[kKeepAliveDefaultTimeout] + } + } else { + // Stop more requests from being dispatched. + socket[kReset] = true } -}; -const blobServiceProperties = { - parameterPath: "blobServiceProperties", - mapper: BlobServiceProperties -}; -const accept = { - parameterPath: "accept", - mapper: { - defaultValue: "application/xml", - isConstant: true, - serializedName: "Accept", - type: { - name: "String" - } + + const pause = request.onHeaders(statusCode, headers, this.resume, statusText) === false + + if (request.aborted) { + return -1 } -}; -const url = { - parameterPath: "url", - mapper: { - serializedName: "url", - required: true, - xmlName: "url", - type: { - name: "String" - } - }, - skipEncoding: true -}; -const restype = { - parameterPath: "restype", - mapper: { - defaultValue: "service", - isConstant: true, - serializedName: "restype", - type: { - name: "String" - } + + if (request.method === 'HEAD') { + return 1 } -}; -const comp = { - parameterPath: "comp", - mapper: { - defaultValue: "properties", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + if (statusCode < 200) { + return 1 } -}; -const timeoutInSeconds = { - parameterPath: ["options", "timeoutInSeconds"], - mapper: { - constraints: { - InclusiveMinimum: 0 - }, - serializedName: "timeout", - xmlName: "timeout", - type: { - name: "Number" - } + + if (socket[kBlocking]) { + socket[kBlocking] = false + client[kResume]() } -}; -const version = { - parameterPath: "version", - mapper: { - defaultValue: "2021-04-10", - isConstant: true, - serializedName: "x-ms-version", - type: { - name: "String" - } + + return pause ? constants.ERROR.PAUSED : 0 + } + + onBody (buf) { + const { client, socket, statusCode, maxResponseSize } = this + + if (socket.destroyed) { + return -1 } -}; -const requestId = { - parameterPath: ["options", "requestId"], - mapper: { - serializedName: "x-ms-client-request-id", - xmlName: "x-ms-client-request-id", - type: { - name: "String" - } + + const request = client[kQueue][client[kRunningIdx]] + assert(request) + + assert(this.timeoutType === TIMEOUT_BODY) + if (this.timeout) { + // istanbul ignore else: only for jest + if (this.timeout.refresh) { + this.timeout.refresh() + } } -}; -const accept1 = { - parameterPath: "accept", - mapper: { - defaultValue: "application/xml", - isConstant: true, - serializedName: "Accept", - type: { - name: "String" - } + + assert(statusCode >= 200) + + if (maxResponseSize > -1 && this.bytesRead + buf.length > maxResponseSize) { + util.destroy(socket, new ResponseExceededMaxSizeError()) + return -1 } -}; -const comp1 = { - parameterPath: "comp", - mapper: { - defaultValue: "stats", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + this.bytesRead += buf.length + + if (request.onData(buf) === false) { + return constants.ERROR.PAUSED } -}; -const comp2 = { - parameterPath: "comp", - mapper: { - defaultValue: "list", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + } + + onMessageComplete () { + const { client, socket, statusCode, upgrade, headers, contentLength, bytesRead, shouldKeepAlive } = this + + if (socket.destroyed && (!statusCode || shouldKeepAlive)) { + return -1 } -}; -const prefix = { - parameterPath: ["options", "prefix"], - mapper: { - serializedName: "prefix", - xmlName: "prefix", - type: { - name: "String" - } + + if (upgrade) { + return } -}; -const marker = { - parameterPath: ["options", "marker"], - mapper: { - serializedName: "marker", - xmlName: "marker", - type: { - name: "String" - } + + assert(statusCode >= 100) + assert((this.headers.length & 1) === 0) + + const request = client[kQueue][client[kRunningIdx]] + assert(request) + + this.statusCode = null + this.statusText = '' + this.bytesRead = 0 + this.contentLength = '' + this.keepAlive = '' + this.connection = '' + + this.headers = [] + this.headersSize = 0 + + if (statusCode < 200) { + return } -}; -const maxPageSize = { - parameterPath: ["options", "maxPageSize"], - mapper: { - constraints: { - InclusiveMinimum: 1 - }, - serializedName: "maxresults", - xmlName: "maxresults", - type: { - name: "Number" - } + + /* istanbul ignore next: should be handled by llhttp? */ + if (request.method !== 'HEAD' && contentLength && bytesRead !== parseInt(contentLength, 10)) { + util.destroy(socket, new ResponseContentLengthMismatchError()) + return -1 } -}; -const include = { - parameterPath: ["options", "include"], - mapper: { - serializedName: "include", - xmlName: "include", - xmlElementName: "ListContainersIncludeType", - type: { - name: "Sequence", - element: { - type: { - name: "Enum", - allowedValues: ["metadata", "deleted", "system"] - } - } - } - }, - collectionFormat: coreHttp.QueryCollectionFormat.Csv -}; -const keyInfo = { - parameterPath: "keyInfo", - mapper: KeyInfo -}; -const comp3 = { - parameterPath: "comp", - mapper: { - defaultValue: "userdelegationkey", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + request.onComplete(headers) + + client[kQueue][client[kRunningIdx]++] = null + + if (socket[kWriting]) { + assert(client[kRunning] === 0) + // Response completed before request. + util.destroy(socket, new InformationalError('reset')) + return constants.ERROR.PAUSED + } else if (!shouldKeepAlive) { + util.destroy(socket, new InformationalError('reset')) + return constants.ERROR.PAUSED + } else if (socket[kReset] && client[kRunning] === 0) { + // Destroy socket once all requests have completed. + // The request at the tail of the pipeline is the one + // that requested reset and no further requests should + // have been queued since then. + util.destroy(socket, new InformationalError('reset')) + return constants.ERROR.PAUSED + } else if (client[kPipelining] == null || client[kPipelining] === 1) { + // We must wait a full event loop cycle to reuse this socket to make sure + // that non-spec compliant servers are not closing the connection even if they + // said they won't. + setImmediate(() => client[kResume]()) + } else { + client[kResume]() } -}; -const restype1 = { - parameterPath: "restype", - mapper: { - defaultValue: "account", - isConstant: true, - serializedName: "restype", - type: { - name: "String" - } + } +} + +function onParserTimeout (parser) { + const { socket, timeoutType, client, paused } = parser.deref() + + /* istanbul ignore else */ + if (timeoutType === TIMEOUT_HEADERS) { + if (!socket[kWriting] || socket.writableNeedDrain || client[kRunning] > 1) { + assert(!paused, 'cannot be paused while waiting for headers') + util.destroy(socket, new HeadersTimeoutError()) } -}; -const body = { - parameterPath: "body", - mapper: { - serializedName: "body", - required: true, - xmlName: "body", - type: { - name: "Stream" - } + } else if (timeoutType === TIMEOUT_BODY) { + if (!paused) { + util.destroy(socket, new BodyTimeoutError()) } -}; -const comp4 = { - parameterPath: "comp", - mapper: { - defaultValue: "batch", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + } else if (timeoutType === TIMEOUT_KEEP_ALIVE) { + assert(client[kRunning] === 0 && client[kKeepAliveTimeoutValue]) + util.destroy(socket, new InformationalError('socket idle timeout')) + } +} + +async function connectH1 (client, socket) { + client[kSocket] = socket + + if (!llhttpInstance) { + llhttpInstance = await llhttpPromise + llhttpPromise = null + } + + socket[kNoRef] = false + socket[kWriting] = false + socket[kReset] = false + socket[kBlocking] = false + socket[kParser] = new Parser(client, socket, llhttpInstance) + + addListener(socket, 'error', function (err) { + assert(err.code !== 'ERR_TLS_CERT_ALTNAME_INVALID') + + const parser = this[kParser] + + // On Mac OS, we get an ECONNRESET even if there is a full body to be forwarded + // to the user. + if (err.code === 'ECONNRESET' && parser.statusCode && !parser.shouldKeepAlive) { + // We treat all incoming data so for as a valid response. + parser.onMessageComplete() + return } -}; -const contentLength = { - parameterPath: "contentLength", - mapper: { - serializedName: "Content-Length", - required: true, - xmlName: "Content-Length", - type: { - name: "Number" - } + + this[kError] = err + + this[kClient][kOnError](err) + }) + addListener(socket, 'readable', function () { + const parser = this[kParser] + + if (parser) { + parser.readMore() } -}; -const multipartContentType = { - parameterPath: "multipartContentType", - mapper: { - serializedName: "Content-Type", - required: true, - xmlName: "Content-Type", - type: { - name: "String" - } + }) + addListener(socket, 'end', function () { + const parser = this[kParser] + + if (parser.statusCode && !parser.shouldKeepAlive) { + // We treat all incoming data so far as a valid response. + parser.onMessageComplete() + return } -}; -const comp5 = { - parameterPath: "comp", - mapper: { - defaultValue: "blobs", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + util.destroy(this, new SocketError('other side closed', util.getSocketInfo(this))) + }) + addListener(socket, 'close', function () { + const client = this[kClient] + const parser = this[kParser] + + if (parser) { + if (!this[kError] && parser.statusCode && !parser.shouldKeepAlive) { + // We treat all incoming data so far as a valid response. + parser.onMessageComplete() + } + + this[kParser].destroy() + this[kParser] = null } -}; -const where = { - parameterPath: ["options", "where"], - mapper: { - serializedName: "where", - xmlName: "where", - type: { - name: "String" - } + + const err = this[kError] || new SocketError('closed', util.getSocketInfo(this)) + + client[kSocket] = null + client[kHTTPContext] = null // TODO (fix): This is hacky... + + if (client.destroyed) { + assert(client[kPending] === 0) + + // Fail entire queue. + const requests = client[kQueue].splice(client[kRunningIdx]) + for (let i = 0; i < requests.length; i++) { + const request = requests[i] + util.errorRequest(client, request, err) + } + } else if (client[kRunning] > 0 && err.code !== 'UND_ERR_INFO') { + // Fail head of pipeline. + const request = client[kQueue][client[kRunningIdx]] + client[kQueue][client[kRunningIdx]++] = null + + util.errorRequest(client, request, err) } -}; -const restype2 = { - parameterPath: "restype", - mapper: { - defaultValue: "container", - isConstant: true, - serializedName: "restype", - type: { - name: "String" + + client[kPendingIdx] = client[kRunningIdx] + + assert(client[kRunning] === 0) + + client.emit('disconnect', client[kUrl], [client], err) + + client[kResume]() + }) + + let closed = false + socket.on('close', () => { + closed = true + }) + + return { + version: 'h1', + defaultPipelining: 1, + write (...args) { + return writeH1(client, ...args) + }, + resume () { + resumeH1(client) + }, + destroy (err, callback) { + if (closed) { + queueMicrotask(callback) + } else { + socket.destroy(err).on('close', callback) + } + }, + get destroyed () { + return socket.destroyed + }, + busy (request) { + if (socket[kWriting] || socket[kReset] || socket[kBlocking]) { + return true + } + + if (request) { + if (client[kRunning] > 0 && !request.idempotent) { + // Non-idempotent request cannot be retried. + // Ensure that no other requests are inflight and + // could cause failure. + return true } - } -}; -const metadata = { - parameterPath: ["options", "metadata"], - mapper: { - serializedName: "x-ms-meta", - xmlName: "x-ms-meta", - type: { - name: "Dictionary", - value: { type: { name: "String" } } - }, - headerCollectionPrefix: "x-ms-meta-" - } -}; -const access = { - parameterPath: ["options", "access"], - mapper: { - serializedName: "x-ms-blob-public-access", - xmlName: "x-ms-blob-public-access", - type: { - name: "Enum", - allowedValues: ["container", "blob"] + + if (client[kRunning] > 0 && (request.upgrade || request.method === 'CONNECT')) { + // Don't dispatch an upgrade until all preceding requests have completed. + // A misbehaving server might upgrade the connection before all pipelined + // request has completed. + return true } - } -}; -const defaultEncryptionScope = { - parameterPath: [ - "options", - "containerEncryptionScope", - "defaultEncryptionScope" - ], - mapper: { - serializedName: "x-ms-default-encryption-scope", - xmlName: "x-ms-default-encryption-scope", - type: { - name: "String" + + if (client[kRunning] > 0 && util.bodyLength(request.body) !== 0 && + (util.isStream(request.body) || util.isAsyncIterable(request.body) || util.isFormDataLike(request.body))) { + // Request with stream or iterator body can error while other requests + // are inflight and indirectly error those as well. + // Ensure this doesn't happen by waiting for inflight + // to complete before dispatching. + + // Request with stream or iterator body cannot be retried. + // Ensure that no other requests are inflight and + // could cause failure. + return true } + } + + return false } -}; -const preventEncryptionScopeOverride = { - parameterPath: [ - "options", - "containerEncryptionScope", - "preventEncryptionScopeOverride" - ], - mapper: { - serializedName: "x-ms-deny-encryption-scope-override", - xmlName: "x-ms-deny-encryption-scope-override", - type: { - name: "Boolean" - } + } +} + +function resumeH1 (client) { + const socket = client[kSocket] + + if (socket && !socket.destroyed) { + if (client[kSize] === 0) { + if (!socket[kNoRef] && socket.unref) { + socket.unref() + socket[kNoRef] = true + } + } else if (socket[kNoRef] && socket.ref) { + socket.ref() + socket[kNoRef] = false } -}; -const leaseId = { - parameterPath: ["options", "leaseAccessConditions", "leaseId"], - mapper: { - serializedName: "x-ms-lease-id", - xmlName: "x-ms-lease-id", - type: { - name: "String" - } + + if (client[kSize] === 0) { + if (socket[kParser].timeoutType !== TIMEOUT_KEEP_ALIVE) { + socket[kParser].setTimeout(client[kKeepAliveTimeoutValue], TIMEOUT_KEEP_ALIVE) + } + } else if (client[kRunning] > 0 && socket[kParser].statusCode < 200) { + if (socket[kParser].timeoutType !== TIMEOUT_HEADERS) { + const request = client[kQueue][client[kRunningIdx]] + const headersTimeout = request.headersTimeout != null + ? request.headersTimeout + : client[kHeadersTimeout] + socket[kParser].setTimeout(headersTimeout, TIMEOUT_HEADERS) + } } -}; -const ifModifiedSince = { - parameterPath: ["options", "modifiedAccessConditions", "ifModifiedSince"], - mapper: { - serializedName: "If-Modified-Since", - xmlName: "If-Modified-Since", - type: { - name: "DateTimeRfc1123" - } + } +} + +// https://www.rfc-editor.org/rfc/rfc7230#section-3.3.2 +function shouldSendContentLength (method) { + return method !== 'GET' && method !== 'HEAD' && method !== 'OPTIONS' && method !== 'TRACE' && method !== 'CONNECT' +} + +function writeH1 (client, request) { + const { method, path, host, upgrade, blocking, reset } = request + + let { body, headers, contentLength } = request + + // https://tools.ietf.org/html/rfc7231#section-4.3.1 + // https://tools.ietf.org/html/rfc7231#section-4.3.2 + // https://tools.ietf.org/html/rfc7231#section-4.3.5 + + // Sending a payload body on a request that does not + // expect it can cause undefined behavior on some + // servers and corrupt connection state. Do not + // re-use the connection for further requests. + + const expectsPayload = ( + method === 'PUT' || + method === 'POST' || + method === 'PATCH' || + method === 'QUERY' || + method === 'PROPFIND' || + method === 'PROPPATCH' + ) + + if (util.isFormDataLike(body)) { + if (!extractBody) { + extractBody = (__nccwpck_require__(36682).extractBody) } -}; -const ifUnmodifiedSince = { - parameterPath: ["options", "modifiedAccessConditions", "ifUnmodifiedSince"], - mapper: { - serializedName: "If-Unmodified-Since", - xmlName: "If-Unmodified-Since", - type: { - name: "DateTimeRfc1123" - } + + const [bodyStream, contentType] = extractBody(body) + if (request.contentType == null) { + headers.push('content-type', contentType) } -}; -const comp6 = { - parameterPath: "comp", - mapper: { - defaultValue: "metadata", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + body = bodyStream.stream + contentLength = bodyStream.length + } else if (util.isBlobLike(body) && request.contentType == null && body.type) { + headers.push('content-type', body.type) + } + + if (body && typeof body.read === 'function') { + // Try to read EOF in order to get length. + body.read(0) + } + + const bodyLength = util.bodyLength(body) + + contentLength = bodyLength ?? contentLength + + if (contentLength === null) { + contentLength = request.contentLength + } + + if (contentLength === 0 && !expectsPayload) { + // https://tools.ietf.org/html/rfc7230#section-3.3.2 + // A user agent SHOULD NOT send a Content-Length header field when + // the request message does not contain a payload body and the method + // semantics do not anticipate such a body. + + contentLength = null + } + + // https://github.com/nodejs/undici/issues/2046 + // A user agent may send a Content-Length header with 0 value, this should be allowed. + if (shouldSendContentLength(method) && contentLength > 0 && request.contentLength !== null && request.contentLength !== contentLength) { + if (client[kStrictContentLength]) { + util.errorRequest(client, request, new RequestContentLengthMismatchError()) + return false } -}; -const comp7 = { - parameterPath: "comp", - mapper: { - defaultValue: "acl", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + process.emitWarning(new RequestContentLengthMismatchError()) + } + + const socket = client[kSocket] + + const abort = (err) => { + if (request.aborted || request.completed) { + return } -}; -const containerAcl = { - parameterPath: ["options", "containerAcl"], - mapper: { - serializedName: "containerAcl", - xmlName: "SignedIdentifiers", - xmlIsWrapped: true, - xmlElementName: "SignedIdentifier", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "SignedIdentifier" - } - } + + util.errorRequest(client, request, err || new RequestAbortedError()) + + util.destroy(body) + util.destroy(socket, new InformationalError('aborted')) + } + + try { + request.onConnect(abort) + } catch (err) { + util.errorRequest(client, request, err) + } + + if (request.aborted) { + return false + } + + if (method === 'HEAD') { + // https://github.com/mcollina/undici/issues/258 + // Close after a HEAD request to interop with misbehaving servers + // that may send a body in the response. + + socket[kReset] = true + } + + if (upgrade || method === 'CONNECT') { + // On CONNECT or upgrade, block pipeline from dispatching further + // requests on this connection. + + socket[kReset] = true + } + + if (reset != null) { + socket[kReset] = reset + } + + if (client[kMaxRequests] && socket[kCounter]++ >= client[kMaxRequests]) { + socket[kReset] = true + } + + if (blocking) { + socket[kBlocking] = true + } + + let header = `${method} ${path} HTTP/1.1\r\n` + + if (typeof host === 'string') { + header += `host: ${host}\r\n` + } else { + header += client[kHostHeader] + } + + if (upgrade) { + header += `connection: upgrade\r\nupgrade: ${upgrade}\r\n` + } else if (client[kPipelining] && !socket[kReset]) { + header += 'connection: keep-alive\r\n' + } else { + header += 'connection: close\r\n' + } + + if (Array.isArray(headers)) { + for (let n = 0; n < headers.length; n += 2) { + const key = headers[n + 0] + const val = headers[n + 1] + + if (Array.isArray(val)) { + for (let i = 0; i < val.length; i++) { + header += `${key}: ${val[i]}\r\n` } + } else { + header += `${key}: ${val}\r\n` + } } -}; -const comp8 = { - parameterPath: "comp", - mapper: { - defaultValue: "undelete", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + } + + if (channels.sendHeaders.hasSubscribers) { + channels.sendHeaders.publish({ request, headers: header, socket }) + } + + /* istanbul ignore else: assertion */ + if (!body || bodyLength === 0) { + writeBuffer(abort, null, client, request, socket, contentLength, header, expectsPayload) + } else if (util.isBuffer(body)) { + writeBuffer(abort, body, client, request, socket, contentLength, header, expectsPayload) + } else if (util.isBlobLike(body)) { + if (typeof body.stream === 'function') { + writeIterable(abort, body.stream(), client, request, socket, contentLength, header, expectsPayload) + } else { + writeBlob(abort, body, client, request, socket, contentLength, header, expectsPayload) } -}; -const deletedContainerName = { - parameterPath: ["options", "deletedContainerName"], - mapper: { - serializedName: "x-ms-deleted-container-name", - xmlName: "x-ms-deleted-container-name", - type: { - name: "String" - } + } else if (util.isStream(body)) { + writeStream(abort, body, client, request, socket, contentLength, header, expectsPayload) + } else if (util.isIterable(body)) { + writeIterable(abort, body, client, request, socket, contentLength, header, expectsPayload) + } else { + assert(false) + } + + return true +} + +function writeStream (abort, body, client, request, socket, contentLength, header, expectsPayload) { + assert(contentLength !== 0 || client[kRunning] === 0, 'stream body cannot be pipelined') + + let finished = false + + const writer = new AsyncWriter({ abort, socket, request, contentLength, client, expectsPayload, header }) + + const onData = function (chunk) { + if (finished) { + return } -}; -const deletedContainerVersion = { - parameterPath: ["options", "deletedContainerVersion"], - mapper: { - serializedName: "x-ms-deleted-container-version", - xmlName: "x-ms-deleted-container-version", - type: { - name: "String" - } + + try { + if (!writer.write(chunk) && this.pause) { + this.pause() + } + } catch (err) { + util.destroy(this, err) } -}; -const comp9 = { - parameterPath: "comp", - mapper: { - defaultValue: "rename", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + } + const onDrain = function () { + if (finished) { + return } -}; -const sourceContainerName = { - parameterPath: "sourceContainerName", - mapper: { - serializedName: "x-ms-source-container-name", - required: true, - xmlName: "x-ms-source-container-name", - type: { - name: "String" - } + + if (body.resume) { + body.resume() } -}; -const sourceLeaseId = { - parameterPath: ["options", "sourceLeaseId"], - mapper: { - serializedName: "x-ms-source-lease-id", - xmlName: "x-ms-source-lease-id", - type: { - name: "String" - } + } + const onClose = function () { + // 'close' might be emitted *before* 'error' for + // broken streams. Wait a tick to avoid this case. + queueMicrotask(() => { + // It's only safe to remove 'error' listener after + // 'close'. + body.removeListener('error', onFinished) + }) + + if (!finished) { + const err = new RequestAbortedError() + queueMicrotask(() => onFinished(err)) } -}; -const comp10 = { - parameterPath: "comp", - mapper: { - defaultValue: "lease", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + } + const onFinished = function (err) { + if (finished) { + return } -}; -const action = { - parameterPath: "action", - mapper: { - defaultValue: "acquire", - isConstant: true, - serializedName: "x-ms-lease-action", - type: { - name: "String" - } + + finished = true + + assert(socket.destroyed || (socket[kWriting] && client[kRunning] <= 1)) + + socket + .off('drain', onDrain) + .off('error', onFinished) + + body + .removeListener('data', onData) + .removeListener('end', onFinished) + .removeListener('close', onClose) + + if (!err) { + try { + writer.end() + } catch (er) { + err = er + } } -}; -const duration = { - parameterPath: ["options", "duration"], - mapper: { - serializedName: "x-ms-lease-duration", - xmlName: "x-ms-lease-duration", - type: { - name: "Number" - } + + writer.destroy(err) + + if (err && (err.code !== 'UND_ERR_INFO' || err.message !== 'reset')) { + util.destroy(body, err) + } else { + util.destroy(body) } -}; -const proposedLeaseId = { - parameterPath: ["options", "proposedLeaseId"], - mapper: { - serializedName: "x-ms-proposed-lease-id", - xmlName: "x-ms-proposed-lease-id", - type: { - name: "String" - } + } + + body + .on('data', onData) + .on('end', onFinished) + .on('error', onFinished) + .on('close', onClose) + + if (body.resume) { + body.resume() + } + + socket + .on('drain', onDrain) + .on('error', onFinished) + + if (body.errorEmitted ?? body.errored) { + setImmediate(() => onFinished(body.errored)) + } else if (body.endEmitted ?? body.readableEnded) { + setImmediate(() => onFinished(null)) + } + + if (body.closeEmitted ?? body.closed) { + setImmediate(onClose) + } +} + +function writeBuffer (abort, body, client, request, socket, contentLength, header, expectsPayload) { + try { + if (!body) { + if (contentLength === 0) { + socket.write(`${header}content-length: 0\r\n\r\n`, 'latin1') + } else { + assert(contentLength === null, 'no body must not have content length') + socket.write(`${header}\r\n`, 'latin1') + } + } else if (util.isBuffer(body)) { + assert(contentLength === body.byteLength, 'buffer body must have content length') + + socket.cork() + socket.write(`${header}content-length: ${contentLength}\r\n\r\n`, 'latin1') + socket.write(body) + socket.uncork() + request.onBodySent(body) + + if (!expectsPayload && request.reset !== false) { + socket[kReset] = true + } } -}; -const action1 = { - parameterPath: "action", - mapper: { - defaultValue: "release", - isConstant: true, - serializedName: "x-ms-lease-action", - type: { - name: "String" - } + request.onRequestSent() + + client[kResume]() + } catch (err) { + abort(err) + } +} + +async function writeBlob (abort, body, client, request, socket, contentLength, header, expectsPayload) { + assert(contentLength === body.size, 'blob body must have content length') + + try { + if (contentLength != null && contentLength !== body.size) { + throw new RequestContentLengthMismatchError() } -}; -const leaseId1 = { - parameterPath: "leaseId", - mapper: { - serializedName: "x-ms-lease-id", - required: true, - xmlName: "x-ms-lease-id", - type: { - name: "String" - } + + const buffer = Buffer.from(await body.arrayBuffer()) + + socket.cork() + socket.write(`${header}content-length: ${contentLength}\r\n\r\n`, 'latin1') + socket.write(buffer) + socket.uncork() + + request.onBodySent(buffer) + request.onRequestSent() + + if (!expectsPayload && request.reset !== false) { + socket[kReset] = true } -}; -const action2 = { - parameterPath: "action", - mapper: { - defaultValue: "renew", - isConstant: true, - serializedName: "x-ms-lease-action", - type: { - name: "String" - } + + client[kResume]() + } catch (err) { + abort(err) + } +} + +async function writeIterable (abort, body, client, request, socket, contentLength, header, expectsPayload) { + assert(contentLength !== 0 || client[kRunning] === 0, 'iterator body cannot be pipelined') + + let callback = null + function onDrain () { + if (callback) { + const cb = callback + callback = null + cb() } -}; -const action3 = { - parameterPath: "action", - mapper: { - defaultValue: "break", - isConstant: true, - serializedName: "x-ms-lease-action", - type: { - name: "String" - } + } + + const waitForDrain = () => new Promise((resolve, reject) => { + assert(callback === null) + + if (socket[kError]) { + reject(socket[kError]) + } else { + callback = resolve } -}; -const breakPeriod = { - parameterPath: ["options", "breakPeriod"], - mapper: { - serializedName: "x-ms-lease-break-period", - xmlName: "x-ms-lease-break-period", - type: { - name: "Number" - } + }) + + socket + .on('close', onDrain) + .on('drain', onDrain) + + const writer = new AsyncWriter({ abort, socket, request, contentLength, client, expectsPayload, header }) + try { + // It's up to the user to somehow abort the async iterable. + for await (const chunk of body) { + if (socket[kError]) { + throw socket[kError] + } + + if (!writer.write(chunk)) { + await waitForDrain() + } } -}; -const action4 = { - parameterPath: "action", - mapper: { - defaultValue: "change", - isConstant: true, - serializedName: "x-ms-lease-action", - type: { - name: "String" - } + + writer.end() + } catch (err) { + writer.destroy(err) + } finally { + socket + .off('close', onDrain) + .off('drain', onDrain) + } +} + +class AsyncWriter { + constructor ({ abort, socket, request, contentLength, client, expectsPayload, header }) { + this.socket = socket + this.request = request + this.contentLength = contentLength + this.client = client + this.bytesWritten = 0 + this.expectsPayload = expectsPayload + this.header = header + this.abort = abort + + socket[kWriting] = true + } + + write (chunk) { + const { socket, request, contentLength, client, bytesWritten, expectsPayload, header } = this + + if (socket[kError]) { + throw socket[kError] } -}; -const proposedLeaseId1 = { - parameterPath: "proposedLeaseId", - mapper: { - serializedName: "x-ms-proposed-lease-id", - required: true, - xmlName: "x-ms-proposed-lease-id", - type: { - name: "String" - } + + if (socket.destroyed) { + return false } -}; -const include1 = { - parameterPath: ["options", "include"], - mapper: { - serializedName: "include", - xmlName: "include", - xmlElementName: "ListBlobsIncludeItem", - type: { - name: "Sequence", - element: { - type: { - name: "Enum", - allowedValues: [ - "copy", - "deleted", - "metadata", - "snapshots", - "uncommittedblobs", - "versions", - "tags", - "immutabilitypolicy", - "legalhold", - "deletedwithversions" - ] - } - } - } - }, - collectionFormat: coreHttp.QueryCollectionFormat.Csv -}; -const delimiter = { - parameterPath: "delimiter", - mapper: { - serializedName: "delimiter", - required: true, - xmlName: "delimiter", - type: { - name: "String" - } + + const len = Buffer.byteLength(chunk) + if (!len) { + return true } -}; -const snapshot = { - parameterPath: ["options", "snapshot"], - mapper: { - serializedName: "snapshot", - xmlName: "snapshot", - type: { - name: "String" - } + + // We should defer writing chunks. + if (contentLength !== null && bytesWritten + len > contentLength) { + if (client[kStrictContentLength]) { + throw new RequestContentLengthMismatchError() + } + + process.emitWarning(new RequestContentLengthMismatchError()) } -}; -const versionId = { - parameterPath: ["options", "versionId"], - mapper: { - serializedName: "versionid", - xmlName: "versionid", - type: { - name: "String" - } + + socket.cork() + + if (bytesWritten === 0) { + if (!expectsPayload && request.reset !== false) { + socket[kReset] = true + } + + if (contentLength === null) { + socket.write(`${header}transfer-encoding: chunked\r\n`, 'latin1') + } else { + socket.write(`${header}content-length: ${contentLength}\r\n\r\n`, 'latin1') + } } -}; -const range = { - parameterPath: ["options", "range"], - mapper: { - serializedName: "x-ms-range", - xmlName: "x-ms-range", - type: { - name: "String" - } + + if (contentLength === null) { + socket.write(`\r\n${len.toString(16)}\r\n`, 'latin1') } -}; -const rangeGetContentMD5 = { - parameterPath: ["options", "rangeGetContentMD5"], - mapper: { - serializedName: "x-ms-range-get-content-md5", - xmlName: "x-ms-range-get-content-md5", - type: { - name: "Boolean" + + this.bytesWritten += len + + const ret = socket.write(chunk) + + socket.uncork() + + request.onBodySent(chunk) + + if (!ret) { + if (socket[kParser].timeout && socket[kParser].timeoutType === TIMEOUT_HEADERS) { + // istanbul ignore else: only for jest + if (socket[kParser].timeout.refresh) { + socket[kParser].timeout.refresh() } + } } -}; -const rangeGetContentCRC64 = { - parameterPath: ["options", "rangeGetContentCRC64"], - mapper: { - serializedName: "x-ms-range-get-content-crc64", - xmlName: "x-ms-range-get-content-crc64", - type: { - name: "Boolean" - } + + return ret + } + + end () { + const { socket, contentLength, client, bytesWritten, expectsPayload, header, request } = this + request.onRequestSent() + + socket[kWriting] = false + + if (socket[kError]) { + throw socket[kError] } -}; -const encryptionKey = { - parameterPath: ["options", "cpkInfo", "encryptionKey"], - mapper: { - serializedName: "x-ms-encryption-key", - xmlName: "x-ms-encryption-key", - type: { - name: "String" - } + + if (socket.destroyed) { + return } -}; -const encryptionKeySha256 = { - parameterPath: ["options", "cpkInfo", "encryptionKeySha256"], - mapper: { - serializedName: "x-ms-encryption-key-sha256", - xmlName: "x-ms-encryption-key-sha256", - type: { - name: "String" - } + + if (bytesWritten === 0) { + if (expectsPayload) { + // https://tools.ietf.org/html/rfc7230#section-3.3.2 + // A user agent SHOULD send a Content-Length in a request message when + // no Transfer-Encoding is sent and the request method defines a meaning + // for an enclosed payload body. + + socket.write(`${header}content-length: 0\r\n\r\n`, 'latin1') + } else { + socket.write(`${header}\r\n`, 'latin1') + } + } else if (contentLength === null) { + socket.write('\r\n0\r\n\r\n', 'latin1') } -}; -const encryptionAlgorithm = { - parameterPath: ["options", "cpkInfo", "encryptionAlgorithm"], - mapper: { - serializedName: "x-ms-encryption-algorithm", - xmlName: "x-ms-encryption-algorithm", - type: { - name: "String" - } + + if (contentLength !== null && bytesWritten !== contentLength) { + if (client[kStrictContentLength]) { + throw new RequestContentLengthMismatchError() + } else { + process.emitWarning(new RequestContentLengthMismatchError()) + } } -}; -const ifMatch = { - parameterPath: ["options", "modifiedAccessConditions", "ifMatch"], - mapper: { - serializedName: "If-Match", - xmlName: "If-Match", - type: { - name: "String" - } + + if (socket[kParser].timeout && socket[kParser].timeoutType === TIMEOUT_HEADERS) { + // istanbul ignore else: only for jest + if (socket[kParser].timeout.refresh) { + socket[kParser].timeout.refresh() + } } -}; -const ifNoneMatch = { - parameterPath: ["options", "modifiedAccessConditions", "ifNoneMatch"], - mapper: { - serializedName: "If-None-Match", - xmlName: "If-None-Match", - type: { - name: "String" - } + + client[kResume]() + } + + destroy (err) { + const { socket, client, abort } = this + + socket[kWriting] = false + + if (err) { + assert(client[kRunning] <= 1, 'pipeline should only contain this request') + abort(err) } -}; -const ifTags = { - parameterPath: ["options", "modifiedAccessConditions", "ifTags"], - mapper: { - serializedName: "x-ms-if-tags", - xmlName: "x-ms-if-tags", - type: { - name: "String" - } + } +} + +module.exports = connectH1 + + +/***/ }), + +/***/ 90296: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const assert = __nccwpck_require__(98061) +const { pipeline } = __nccwpck_require__(84492) +const util = __nccwpck_require__(83983) +const { + RequestContentLengthMismatchError, + RequestAbortedError, + SocketError, + InformationalError +} = __nccwpck_require__(48045) +const { + kUrl, + kReset, + kClient, + kRunning, + kPending, + kQueue, + kPendingIdx, + kRunningIdx, + kError, + kSocket, + kStrictContentLength, + kOnError, + kMaxConcurrentStreams, + kHTTP2Session, + kResume, + kSize, + kHTTPContext +} = __nccwpck_require__(72785) + +const kOpenStreams = Symbol('open streams') + +let extractBody + +// Experimental +let h2ExperimentalWarned = false + +/** @type {import('http2')} */ +let http2 +try { + http2 = __nccwpck_require__(42725) +} catch { + // @ts-ignore + http2 = { constants: {} } +} + +const { + constants: { + HTTP2_HEADER_AUTHORITY, + HTTP2_HEADER_METHOD, + HTTP2_HEADER_PATH, + HTTP2_HEADER_SCHEME, + HTTP2_HEADER_CONTENT_LENGTH, + HTTP2_HEADER_EXPECT, + HTTP2_HEADER_STATUS + } +} = http2 + +function parseH2Headers (headers) { + const result = [] + + for (const [name, value] of Object.entries(headers)) { + // h2 may concat the header value by array + // e.g. Set-Cookie + if (Array.isArray(value)) { + for (const subvalue of value) { + // we need to provide each header value of header name + // because the headers handler expect name-value pair + result.push(Buffer.from(name), Buffer.from(subvalue)) + } + } else { + result.push(Buffer.from(name), Buffer.from(value)) } -}; -const deleteSnapshots = { - parameterPath: ["options", "deleteSnapshots"], - mapper: { - serializedName: "x-ms-delete-snapshots", - xmlName: "x-ms-delete-snapshots", - type: { - name: "Enum", - allowedValues: ["include", "only"] - } + } + + return result +} + +async function connectH2 (client, socket) { + client[kSocket] = socket + + if (!h2ExperimentalWarned) { + h2ExperimentalWarned = true + process.emitWarning('H2 support is experimental, expect them to change at any time.', { + code: 'UNDICI-H2' + }) + } + + const session = http2.connect(client[kUrl], { + createConnection: () => socket, + peerMaxConcurrentStreams: client[kMaxConcurrentStreams] + }) + + session[kOpenStreams] = 0 + session[kClient] = client + session[kSocket] = socket + + util.addListener(session, 'error', onHttp2SessionError) + util.addListener(session, 'frameError', onHttp2FrameError) + util.addListener(session, 'end', onHttp2SessionEnd) + util.addListener(session, 'goaway', onHTTP2GoAway) + util.addListener(session, 'close', function () { + const { [kClient]: client } = this + const { [kSocket]: socket } = client + + const err = this[kSocket][kError] || this[kError] || new SocketError('closed', util.getSocketInfo(socket)) + + client[kHTTP2Session] = null + + if (client.destroyed) { + assert(client[kPending] === 0) + + // Fail entire queue. + const requests = client[kQueue].splice(client[kRunningIdx]) + for (let i = 0; i < requests.length; i++) { + const request = requests[i] + util.errorRequest(client, request, err) + } } -}; -const blobDeleteType = { - parameterPath: ["options", "blobDeleteType"], - mapper: { - serializedName: "deletetype", - xmlName: "deletetype", - type: { - name: "String" - } + }) + + session.unref() + + client[kHTTP2Session] = session + socket[kHTTP2Session] = session + + util.addListener(socket, 'error', function (err) { + assert(err.code !== 'ERR_TLS_CERT_ALTNAME_INVALID') + + this[kError] = err + + this[kClient][kOnError](err) + }) + + util.addListener(socket, 'end', function () { + util.destroy(this, new SocketError('other side closed', util.getSocketInfo(this))) + }) + + util.addListener(socket, 'close', function () { + const err = this[kError] || new SocketError('closed', util.getSocketInfo(this)) + + client[kSocket] = null + + if (this[kHTTP2Session] != null) { + this[kHTTP2Session].destroy(err) } -}; -const comp11 = { - parameterPath: "comp", - mapper: { - defaultValue: "expiry", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + client[kPendingIdx] = client[kRunningIdx] + + assert(client[kRunning] === 0) + + client.emit('disconnect', client[kUrl], [client], err) + + client[kResume]() + }) + + let closed = false + socket.on('close', () => { + closed = true + }) + + return { + version: 'h2', + defaultPipelining: Infinity, + write (...args) { + return writeH2(client, ...args) + }, + resume () { + resumeH2(client) + }, + destroy (err, callback) { + if (closed) { + queueMicrotask(callback) + } else { + // Destroying the socket will trigger the session close + socket.destroy(err).on('close', callback) + } + }, + get destroyed () { + return socket.destroyed + }, + busy () { + return false } -}; -const expiryOptions = { - parameterPath: "expiryOptions", - mapper: { - serializedName: "x-ms-expiry-option", - required: true, - xmlName: "x-ms-expiry-option", - type: { - name: "String" - } + } +} + +function resumeH2 (client) { + const socket = client[kSocket] + + if (socket?.destroyed === false) { + if (client[kSize] === 0 && client[kMaxConcurrentStreams] === 0) { + socket.unref() + client[kHTTP2Session].unref() + } else { + socket.ref() + client[kHTTP2Session].ref() } -}; -const expiresOn = { - parameterPath: ["options", "expiresOn"], - mapper: { - serializedName: "x-ms-expiry-time", - xmlName: "x-ms-expiry-time", - type: { - name: "String" + } +} + +function onHttp2SessionError (err) { + assert(err.code !== 'ERR_TLS_CERT_ALTNAME_INVALID') + + this[kSocket][kError] = err + this[kClient][kOnError](err) +} + +function onHttp2FrameError (type, code, id) { + if (id === 0) { + const err = new InformationalError(`HTTP/2: "frameError" received - type ${type}, code ${code}`) + this[kSocket][kError] = err + this[kClient][kOnError](err) + } +} + +function onHttp2SessionEnd () { + const err = new SocketError('other side closed', util.getSocketInfo(this[kSocket])) + this.destroy(err) + util.destroy(this[kSocket], err) +} + +/** + * This is the root cause of #3011 + * We need to handle GOAWAY frames properly, and trigger the session close + * along with the socket right away + */ +function onHTTP2GoAway (code) { + // We cannot recover, so best to close the session and the socket + const err = this[kError] || new SocketError(`HTTP/2: "GOAWAY" frame received with code ${code}`, util.getSocketInfo(this)) + const client = this[kClient] + + client[kSocket] = null + client[kHTTPContext] = null + + if (this[kHTTP2Session] != null) { + this[kHTTP2Session].destroy(err) + this[kHTTP2Session] = null + } + + util.destroy(this[kSocket], err) + + // Fail head of pipeline. + if (client[kRunningIdx] < client[kQueue].length) { + const request = client[kQueue][client[kRunningIdx]] + client[kQueue][client[kRunningIdx]++] = null + util.errorRequest(client, request, err) + client[kPendingIdx] = client[kRunningIdx] + } + + assert(client[kRunning] === 0) + + client.emit('disconnect', client[kUrl], [client], err) + + client[kResume]() +} + +// https://www.rfc-editor.org/rfc/rfc7230#section-3.3.2 +function shouldSendContentLength (method) { + return method !== 'GET' && method !== 'HEAD' && method !== 'OPTIONS' && method !== 'TRACE' && method !== 'CONNECT' +} + +function writeH2 (client, request) { + const session = client[kHTTP2Session] + const { method, path, host, upgrade, expectContinue, signal, headers: reqHeaders } = request + let { body } = request + + if (upgrade) { + util.errorRequest(client, request, new Error('Upgrade not supported for H2')) + return false + } + + const headers = {} + for (let n = 0; n < reqHeaders.length; n += 2) { + const key = reqHeaders[n + 0] + const val = reqHeaders[n + 1] + + if (Array.isArray(val)) { + for (let i = 0; i < val.length; i++) { + if (headers[key]) { + headers[key] += `,${val[i]}` + } else { + headers[key] = val[i] } + } + } else { + headers[key] = val } -}; -const blobCacheControl = { - parameterPath: ["options", "blobHttpHeaders", "blobCacheControl"], - mapper: { - serializedName: "x-ms-blob-cache-control", - xmlName: "x-ms-blob-cache-control", - type: { - name: "String" - } + } + + /** @type {import('node:http2').ClientHttp2Stream} */ + let stream + + const { hostname, port } = client[kUrl] + + headers[HTTP2_HEADER_AUTHORITY] = host || `${hostname}${port ? `:${port}` : ''}` + headers[HTTP2_HEADER_METHOD] = method + + const abort = (err) => { + if (request.aborted || request.completed) { + return } -}; -const blobContentType = { - parameterPath: ["options", "blobHttpHeaders", "blobContentType"], - mapper: { - serializedName: "x-ms-blob-content-type", - xmlName: "x-ms-blob-content-type", - type: { - name: "String" - } + + err = err || new RequestAbortedError() + + util.errorRequest(client, request, err) + + if (stream != null) { + util.destroy(stream, err) } -}; -const blobContentMD5 = { - parameterPath: ["options", "blobHttpHeaders", "blobContentMD5"], - mapper: { - serializedName: "x-ms-blob-content-md5", - xmlName: "x-ms-blob-content-md5", - type: { - name: "ByteArray" - } + + // We do not destroy the socket as we can continue using the session + // the stream get's destroyed and the session remains to create new streams + util.destroy(body, err) + client[kQueue][client[kRunningIdx]++] = null + client[kResume]() + } + + try { + // We are already connected, streams are pending. + // We can call on connect, and wait for abort + request.onConnect(abort) + } catch (err) { + util.errorRequest(client, request, err) + } + + if (request.aborted) { + return false + } + + if (method === 'CONNECT') { + session.ref() + // We are already connected, streams are pending, first request + // will create a new stream. We trigger a request to create the stream and wait until + // `ready` event is triggered + // We disabled endStream to allow the user to write to the stream + stream = session.request(headers, { endStream: false, signal }) + + if (stream.id && !stream.pending) { + request.onUpgrade(null, null, stream) + ++session[kOpenStreams] + client[kQueue][client[kRunningIdx]++] = null + } else { + stream.once('ready', () => { + request.onUpgrade(null, null, stream) + ++session[kOpenStreams] + client[kQueue][client[kRunningIdx]++] = null + }) } -}; -const blobContentEncoding = { - parameterPath: ["options", "blobHttpHeaders", "blobContentEncoding"], - mapper: { - serializedName: "x-ms-blob-content-encoding", - xmlName: "x-ms-blob-content-encoding", - type: { - name: "String" - } + + stream.once('close', () => { + session[kOpenStreams] -= 1 + if (session[kOpenStreams] === 0) session.unref() + }) + + return true + } + + // https://tools.ietf.org/html/rfc7540#section-8.3 + // :path and :scheme headers must be omitted when sending CONNECT + + headers[HTTP2_HEADER_PATH] = path + headers[HTTP2_HEADER_SCHEME] = 'https' + + // https://tools.ietf.org/html/rfc7231#section-4.3.1 + // https://tools.ietf.org/html/rfc7231#section-4.3.2 + // https://tools.ietf.org/html/rfc7231#section-4.3.5 + + // Sending a payload body on a request that does not + // expect it can cause undefined behavior on some + // servers and corrupt connection state. Do not + // re-use the connection for further requests. + + const expectsPayload = ( + method === 'PUT' || + method === 'POST' || + method === 'PATCH' + ) + + if (body && typeof body.read === 'function') { + // Try to read EOF in order to get length. + body.read(0) + } + + let contentLength = util.bodyLength(body) + + if (util.isFormDataLike(body)) { + extractBody ??= (__nccwpck_require__(36682).extractBody) + + const [bodyStream, contentType] = extractBody(body) + headers['content-type'] = contentType + + body = bodyStream.stream + contentLength = bodyStream.length + } + + if (contentLength == null) { + contentLength = request.contentLength + } + + if (contentLength === 0 || !expectsPayload) { + // https://tools.ietf.org/html/rfc7230#section-3.3.2 + // A user agent SHOULD NOT send a Content-Length header field when + // the request message does not contain a payload body and the method + // semantics do not anticipate such a body. + + contentLength = null + } + + // https://github.com/nodejs/undici/issues/2046 + // A user agent may send a Content-Length header with 0 value, this should be allowed. + if (shouldSendContentLength(method) && contentLength > 0 && request.contentLength != null && request.contentLength !== contentLength) { + if (client[kStrictContentLength]) { + util.errorRequest(client, request, new RequestContentLengthMismatchError()) + return false } -}; -const blobContentLanguage = { - parameterPath: ["options", "blobHttpHeaders", "blobContentLanguage"], - mapper: { - serializedName: "x-ms-blob-content-language", - xmlName: "x-ms-blob-content-language", - type: { - name: "String" - } + + process.emitWarning(new RequestContentLengthMismatchError()) + } + + if (contentLength != null) { + assert(body, 'no body must not have content length') + headers[HTTP2_HEADER_CONTENT_LENGTH] = `${contentLength}` + } + + session.ref() + + const shouldEndStream = method === 'GET' || method === 'HEAD' || body === null + if (expectContinue) { + headers[HTTP2_HEADER_EXPECT] = '100-continue' + stream = session.request(headers, { endStream: shouldEndStream, signal }) + + stream.once('continue', writeBodyH2) + } else { + stream = session.request(headers, { + endStream: shouldEndStream, + signal + }) + writeBodyH2() + } + + // Increment counter as we have new streams open + ++session[kOpenStreams] + + stream.once('response', headers => { + const { [HTTP2_HEADER_STATUS]: statusCode, ...realHeaders } = headers + request.onResponseStarted() + + // Due to the stream nature, it is possible we face a race condition + // where the stream has been assigned, but the request has been aborted + // the request remains in-flight and headers hasn't been received yet + // for those scenarios, best effort is to destroy the stream immediately + // as there's no value to keep it open. + if (request.aborted) { + const err = new RequestAbortedError() + util.errorRequest(client, request, err) + util.destroy(stream, err) + return } -}; -const blobContentDisposition = { - parameterPath: ["options", "blobHttpHeaders", "blobContentDisposition"], - mapper: { - serializedName: "x-ms-blob-content-disposition", - xmlName: "x-ms-blob-content-disposition", - type: { - name: "String" - } + + if (request.onHeaders(Number(statusCode), parseH2Headers(realHeaders), stream.resume.bind(stream), '') === false) { + stream.pause() } -}; -const comp12 = { - parameterPath: "comp", - mapper: { - defaultValue: "immutabilityPolicies", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + stream.on('data', (chunk) => { + if (request.onData(chunk) === false) { + stream.pause() + } + }) + }) + + stream.once('end', () => { + // When state is null, it means we haven't consumed body and the stream still do not have + // a state. + // Present specially when using pipeline or stream + if (stream.state?.state == null || stream.state.state < 6) { + request.onComplete([]) } -}; -const immutabilityPolicyExpiry = { - parameterPath: ["options", "immutabilityPolicyExpiry"], - mapper: { - serializedName: "x-ms-immutability-policy-until-date", - xmlName: "x-ms-immutability-policy-until-date", - type: { - name: "DateTimeRfc1123" - } + + if (session[kOpenStreams] === 0) { + // Stream is closed or half-closed-remote (6), decrement counter and cleanup + // It does not have sense to continue working with the stream as we do not + // have yet RST_STREAM support on client-side + + session.unref() } -}; -const immutabilityPolicyMode = { - parameterPath: ["options", "immutabilityPolicyMode"], - mapper: { - serializedName: "x-ms-immutability-policy-mode", - xmlName: "x-ms-immutability-policy-mode", - type: { - name: "Enum", - allowedValues: ["Mutable", "Unlocked", "Locked"] - } + + abort(new InformationalError('HTTP/2: stream half-closed (remote)')) + client[kQueue][client[kRunningIdx]++] = null + client[kPendingIdx] = client[kRunningIdx] + client[kResume]() + }) + + stream.once('close', () => { + session[kOpenStreams] -= 1 + if (session[kOpenStreams] === 0) { + session.unref() } -}; -const comp13 = { - parameterPath: "comp", - mapper: { - defaultValue: "legalhold", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + }) + + stream.once('error', function (err) { + abort(err) + }) + + stream.once('frameError', (type, code) => { + abort(new InformationalError(`HTTP/2: "frameError" received - type ${type}, code ${code}`)) + }) + + // stream.on('aborted', () => { + // // TODO(HTTP/2): Support aborted + // }) + + // stream.on('timeout', () => { + // // TODO(HTTP/2): Support timeout + // }) + + // stream.on('push', headers => { + // // TODO(HTTP/2): Support push + // }) + + // stream.on('trailers', headers => { + // // TODO(HTTP/2): Support trailers + // }) + + return true + + function writeBodyH2 () { + /* istanbul ignore else: assertion */ + if (!body || contentLength === 0) { + writeBuffer( + abort, + stream, + null, + client, + request, + client[kSocket], + contentLength, + expectsPayload + ) + } else if (util.isBuffer(body)) { + writeBuffer( + abort, + stream, + body, + client, + request, + client[kSocket], + contentLength, + expectsPayload + ) + } else if (util.isBlobLike(body)) { + if (typeof body.stream === 'function') { + writeIterable( + abort, + stream, + body.stream(), + client, + request, + client[kSocket], + contentLength, + expectsPayload + ) + } else { + writeBlob( + abort, + stream, + body, + client, + request, + client[kSocket], + contentLength, + expectsPayload + ) + } + } else if (util.isStream(body)) { + writeStream( + abort, + client[kSocket], + expectsPayload, + stream, + body, + client, + request, + contentLength + ) + } else if (util.isIterable(body)) { + writeIterable( + abort, + stream, + body, + client, + request, + client[kSocket], + contentLength, + expectsPayload + ) + } else { + assert(false) } -}; -const legalHold = { - parameterPath: "legalHold", - mapper: { - serializedName: "x-ms-legal-hold", - required: true, - xmlName: "x-ms-legal-hold", - type: { - name: "Boolean" - } + } +} + +function writeBuffer (abort, h2stream, body, client, request, socket, contentLength, expectsPayload) { + try { + if (body != null && util.isBuffer(body)) { + assert(contentLength === body.byteLength, 'buffer body must have content length') + h2stream.cork() + h2stream.write(body) + h2stream.uncork() + h2stream.end() + + request.onBodySent(body) } -}; -const encryptionScope = { - parameterPath: ["options", "encryptionScope"], - mapper: { - serializedName: "x-ms-encryption-scope", - xmlName: "x-ms-encryption-scope", - type: { - name: "String" - } + + if (!expectsPayload) { + socket[kReset] = true } -}; -const comp14 = { - parameterPath: "comp", - mapper: { - defaultValue: "snapshot", - isConstant: true, - serializedName: "comp", - type: { - name: "String" + + request.onRequestSent() + client[kResume]() + } catch (error) { + abort(error) + } +} + +function writeStream (abort, socket, expectsPayload, h2stream, body, client, request, contentLength) { + assert(contentLength !== 0 || client[kRunning] === 0, 'stream body cannot be pipelined') + + // For HTTP/2, is enough to pipe the stream + const pipe = pipeline( + body, + h2stream, + (err) => { + if (err) { + util.destroy(pipe, err) + abort(err) + } else { + util.removeAllListeners(pipe) + request.onRequestSent() + + if (!expectsPayload) { + socket[kReset] = true } + + client[kResume]() + } } -}; -const tier = { - parameterPath: ["options", "tier"], - mapper: { - serializedName: "x-ms-access-tier", - xmlName: "x-ms-access-tier", - type: { - name: "Enum", - allowedValues: [ - "P4", - "P6", - "P10", - "P15", - "P20", - "P30", - "P40", - "P50", - "P60", - "P70", - "P80", - "Hot", - "Cool", - "Archive" - ] - } - } -}; -const rehydratePriority = { - parameterPath: ["options", "rehydratePriority"], - mapper: { - serializedName: "x-ms-rehydrate-priority", - xmlName: "x-ms-rehydrate-priority", - type: { - name: "Enum", - allowedValues: ["High", "Standard"] - } + ) + + util.addListener(pipe, 'data', onPipeData) + + function onPipeData (chunk) { + request.onBodySent(chunk) + } +} + +async function writeBlob (abort, h2stream, body, client, request, socket, contentLength, expectsPayload) { + assert(contentLength === body.size, 'blob body must have content length') + + try { + if (contentLength != null && contentLength !== body.size) { + throw new RequestContentLengthMismatchError() } -}; -const sourceIfModifiedSince = { - parameterPath: [ - "options", - "sourceModifiedAccessConditions", - "sourceIfModifiedSince" - ], - mapper: { - serializedName: "x-ms-source-if-modified-since", - xmlName: "x-ms-source-if-modified-since", - type: { - name: "DateTimeRfc1123" - } + + const buffer = Buffer.from(await body.arrayBuffer()) + + h2stream.cork() + h2stream.write(buffer) + h2stream.uncork() + h2stream.end() + + request.onBodySent(buffer) + request.onRequestSent() + + if (!expectsPayload) { + socket[kReset] = true } -}; -const sourceIfUnmodifiedSince = { - parameterPath: [ - "options", - "sourceModifiedAccessConditions", - "sourceIfUnmodifiedSince" - ], - mapper: { - serializedName: "x-ms-source-if-unmodified-since", - xmlName: "x-ms-source-if-unmodified-since", - type: { - name: "DateTimeRfc1123" - } + + client[kResume]() + } catch (err) { + abort(err) + } +} + +async function writeIterable (abort, h2stream, body, client, request, socket, contentLength, expectsPayload) { + assert(contentLength !== 0 || client[kRunning] === 0, 'iterator body cannot be pipelined') + + let callback = null + function onDrain () { + if (callback) { + const cb = callback + callback = null + cb() } -}; -const sourceIfMatch = { - parameterPath: ["options", "sourceModifiedAccessConditions", "sourceIfMatch"], - mapper: { - serializedName: "x-ms-source-if-match", - xmlName: "x-ms-source-if-match", - type: { - name: "String" - } + } + + const waitForDrain = () => new Promise((resolve, reject) => { + assert(callback === null) + + if (socket[kError]) { + reject(socket[kError]) + } else { + callback = resolve } -}; -const sourceIfNoneMatch = { - parameterPath: [ - "options", - "sourceModifiedAccessConditions", - "sourceIfNoneMatch" - ], - mapper: { - serializedName: "x-ms-source-if-none-match", - xmlName: "x-ms-source-if-none-match", - type: { - name: "String" - } + }) + + h2stream + .on('close', onDrain) + .on('drain', onDrain) + + try { + // It's up to the user to somehow abort the async iterable. + for await (const chunk of body) { + if (socket[kError]) { + throw socket[kError] + } + + const res = h2stream.write(chunk) + request.onBodySent(chunk) + if (!res) { + await waitForDrain() + } } -}; -const sourceIfTags = { - parameterPath: ["options", "sourceModifiedAccessConditions", "sourceIfTags"], - mapper: { - serializedName: "x-ms-source-if-tags", - xmlName: "x-ms-source-if-tags", - type: { - name: "String" - } + + h2stream.end() + + request.onRequestSent() + + if (!expectsPayload) { + socket[kReset] = true } -}; -const copySource = { - parameterPath: "copySource", - mapper: { - serializedName: "x-ms-copy-source", - required: true, - xmlName: "x-ms-copy-source", - type: { - name: "String" - } + + client[kResume]() + } catch (err) { + abort(err) + } finally { + h2stream + .off('close', onDrain) + .off('drain', onDrain) + } +} + +module.exports = connectH2 + + +/***/ }), + +/***/ 8176: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; +// @ts-check + + + +const assert = __nccwpck_require__(98061) +const net = __nccwpck_require__(87503) +const http = __nccwpck_require__(88849) +const util = __nccwpck_require__(83983) +const { channels } = __nccwpck_require__(58438) +const Request = __nccwpck_require__(62905) +const DispatcherBase = __nccwpck_require__(61544) +const { + InvalidArgumentError, + InformationalError, + ClientDestroyedError +} = __nccwpck_require__(48045) +const buildConnector = __nccwpck_require__(82067) +const { + kUrl, + kServerName, + kClient, + kBusy, + kConnect, + kResuming, + kRunning, + kPending, + kSize, + kQueue, + kConnected, + kConnecting, + kNeedDrain, + kKeepAliveDefaultTimeout, + kHostHeader, + kPendingIdx, + kRunningIdx, + kError, + kPipelining, + kKeepAliveTimeoutValue, + kMaxHeadersSize, + kKeepAliveMaxTimeout, + kKeepAliveTimeoutThreshold, + kHeadersTimeout, + kBodyTimeout, + kStrictContentLength, + kConnector, + kMaxRedirections, + kMaxRequests, + kCounter, + kClose, + kDestroy, + kDispatch, + kInterceptors, + kLocalAddress, + kMaxResponseSize, + kOnError, + kHTTPContext, + kMaxConcurrentStreams, + kResume +} = __nccwpck_require__(72785) +const connectH1 = __nccwpck_require__(43264) +const connectH2 = __nccwpck_require__(90296) +let deprecatedInterceptorWarned = false + +const kClosedResolve = Symbol('kClosedResolve') + +const noop = () => {} + +function getPipelining (client) { + return client[kPipelining] ?? client[kHTTPContext]?.defaultPipelining ?? 1 +} + +/** + * @type {import('../../types/client.js').default} + */ +class Client extends DispatcherBase { + /** + * + * @param {string|URL} url + * @param {import('../../types/client.js').Client.Options} options + */ + constructor (url, { + interceptors, + maxHeaderSize, + headersTimeout, + socketTimeout, + requestTimeout, + connectTimeout, + bodyTimeout, + idleTimeout, + keepAlive, + keepAliveTimeout, + maxKeepAliveTimeout, + keepAliveMaxTimeout, + keepAliveTimeoutThreshold, + socketPath, + pipelining, + tls, + strictContentLength, + maxCachedSessions, + maxRedirections, + connect, + maxRequestsPerClient, + localAddress, + maxResponseSize, + autoSelectFamily, + autoSelectFamilyAttemptTimeout, + // h2 + maxConcurrentStreams, + allowH2 + } = {}) { + super() + + if (keepAlive !== undefined) { + throw new InvalidArgumentError('unsupported keepAlive, use pipelining=0 instead') } -}; -const blobTagsString = { - parameterPath: ["options", "blobTagsString"], - mapper: { - serializedName: "x-ms-tags", - xmlName: "x-ms-tags", - type: { - name: "String" - } + + if (socketTimeout !== undefined) { + throw new InvalidArgumentError('unsupported socketTimeout, use headersTimeout & bodyTimeout instead') } -}; -const sealBlob = { - parameterPath: ["options", "sealBlob"], - mapper: { - serializedName: "x-ms-seal-blob", - xmlName: "x-ms-seal-blob", - type: { - name: "Boolean" - } + + if (requestTimeout !== undefined) { + throw new InvalidArgumentError('unsupported requestTimeout, use headersTimeout & bodyTimeout instead') } -}; -const legalHold1 = { - parameterPath: ["options", "legalHold"], - mapper: { - serializedName: "x-ms-legal-hold", - xmlName: "x-ms-legal-hold", - type: { - name: "Boolean" - } + + if (idleTimeout !== undefined) { + throw new InvalidArgumentError('unsupported idleTimeout, use keepAliveTimeout instead') } -}; -const xMsRequiresSync = { - parameterPath: "xMsRequiresSync", - mapper: { - defaultValue: "true", - isConstant: true, - serializedName: "x-ms-requires-sync", - type: { - name: "String" - } + + if (maxKeepAliveTimeout !== undefined) { + throw new InvalidArgumentError('unsupported maxKeepAliveTimeout, use keepAliveMaxTimeout instead') } -}; -const sourceContentMD5 = { - parameterPath: ["options", "sourceContentMD5"], - mapper: { - serializedName: "x-ms-source-content-md5", - xmlName: "x-ms-source-content-md5", - type: { - name: "ByteArray" - } + + if (maxHeaderSize != null && !Number.isFinite(maxHeaderSize)) { + throw new InvalidArgumentError('invalid maxHeaderSize') } -}; -const copySourceAuthorization = { - parameterPath: ["options", "copySourceAuthorization"], - mapper: { - serializedName: "x-ms-copy-source-authorization", - xmlName: "x-ms-copy-source-authorization", - type: { - name: "String" - } + + if (socketPath != null && typeof socketPath !== 'string') { + throw new InvalidArgumentError('invalid socketPath') } -}; -const comp15 = { - parameterPath: "comp", - mapper: { - defaultValue: "copy", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + if (connectTimeout != null && (!Number.isFinite(connectTimeout) || connectTimeout < 0)) { + throw new InvalidArgumentError('invalid connectTimeout') } -}; -const copyActionAbortConstant = { - parameterPath: "copyActionAbortConstant", - mapper: { - defaultValue: "abort", - isConstant: true, - serializedName: "x-ms-copy-action", - type: { - name: "String" - } + + if (keepAliveTimeout != null && (!Number.isFinite(keepAliveTimeout) || keepAliveTimeout <= 0)) { + throw new InvalidArgumentError('invalid keepAliveTimeout') } -}; -const copyId = { - parameterPath: "copyId", - mapper: { - serializedName: "copyid", - required: true, - xmlName: "copyid", - type: { - name: "String" - } + + if (keepAliveMaxTimeout != null && (!Number.isFinite(keepAliveMaxTimeout) || keepAliveMaxTimeout <= 0)) { + throw new InvalidArgumentError('invalid keepAliveMaxTimeout') } -}; -const comp16 = { - parameterPath: "comp", - mapper: { - defaultValue: "tier", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + if (keepAliveTimeoutThreshold != null && !Number.isFinite(keepAliveTimeoutThreshold)) { + throw new InvalidArgumentError('invalid keepAliveTimeoutThreshold') } -}; -const tier1 = { - parameterPath: "tier", - mapper: { - serializedName: "x-ms-access-tier", - required: true, - xmlName: "x-ms-access-tier", - type: { - name: "Enum", - allowedValues: [ - "P4", - "P6", - "P10", - "P15", - "P20", - "P30", - "P40", - "P50", - "P60", - "P70", - "P80", - "Hot", - "Cool", - "Archive" - ] - } + + if (headersTimeout != null && (!Number.isInteger(headersTimeout) || headersTimeout < 0)) { + throw new InvalidArgumentError('headersTimeout must be a positive integer or zero') } -}; -const queryRequest = { - parameterPath: ["options", "queryRequest"], - mapper: QueryRequest -}; -const comp17 = { - parameterPath: "comp", - mapper: { - defaultValue: "query", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + if (bodyTimeout != null && (!Number.isInteger(bodyTimeout) || bodyTimeout < 0)) { + throw new InvalidArgumentError('bodyTimeout must be a positive integer or zero') } -}; -const comp18 = { - parameterPath: "comp", - mapper: { - defaultValue: "tags", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + if (connect != null && typeof connect !== 'function' && typeof connect !== 'object') { + throw new InvalidArgumentError('connect must be a function or an object') } -}; -const tags = { - parameterPath: ["options", "tags"], - mapper: BlobTags -}; -const transactionalContentMD5 = { - parameterPath: ["options", "transactionalContentMD5"], - mapper: { - serializedName: "Content-MD5", - xmlName: "Content-MD5", - type: { - name: "ByteArray" - } + + if (maxRedirections != null && (!Number.isInteger(maxRedirections) || maxRedirections < 0)) { + throw new InvalidArgumentError('maxRedirections must be a positive number') } -}; -const transactionalContentCrc64 = { - parameterPath: ["options", "transactionalContentCrc64"], - mapper: { - serializedName: "x-ms-content-crc64", - xmlName: "x-ms-content-crc64", - type: { - name: "ByteArray" - } + + if (maxRequestsPerClient != null && (!Number.isInteger(maxRequestsPerClient) || maxRequestsPerClient < 0)) { + throw new InvalidArgumentError('maxRequestsPerClient must be a positive number') } -}; -const blobType = { - parameterPath: "blobType", - mapper: { - defaultValue: "PageBlob", - isConstant: true, - serializedName: "x-ms-blob-type", - type: { - name: "String" - } + + if (localAddress != null && (typeof localAddress !== 'string' || net.isIP(localAddress) === 0)) { + throw new InvalidArgumentError('localAddress must be valid string IP address') } -}; -const blobContentLength = { - parameterPath: "blobContentLength", - mapper: { - serializedName: "x-ms-blob-content-length", - required: true, - xmlName: "x-ms-blob-content-length", - type: { - name: "Number" - } + + if (maxResponseSize != null && (!Number.isInteger(maxResponseSize) || maxResponseSize < -1)) { + throw new InvalidArgumentError('maxResponseSize must be a positive number') } -}; -const blobSequenceNumber = { - parameterPath: ["options", "blobSequenceNumber"], - mapper: { - serializedName: "x-ms-blob-sequence-number", - xmlName: "x-ms-blob-sequence-number", - type: { - name: "Number" - } + + if ( + autoSelectFamilyAttemptTimeout != null && + (!Number.isInteger(autoSelectFamilyAttemptTimeout) || autoSelectFamilyAttemptTimeout < -1) + ) { + throw new InvalidArgumentError('autoSelectFamilyAttemptTimeout must be a positive number') } -}; -const contentType1 = { - parameterPath: ["options", "contentType"], - mapper: { - defaultValue: "application/octet-stream", - isConstant: true, - serializedName: "Content-Type", - type: { - name: "String" - } + + // h2 + if (allowH2 != null && typeof allowH2 !== 'boolean') { + throw new InvalidArgumentError('allowH2 must be a valid boolean value') } -}; -const body1 = { - parameterPath: "body", - mapper: { - serializedName: "body", - required: true, - xmlName: "body", - type: { - name: "Stream" - } + + if (maxConcurrentStreams != null && (typeof maxConcurrentStreams !== 'number' || maxConcurrentStreams < 1)) { + throw new InvalidArgumentError('maxConcurrentStreams must be a positive integer, greater than 0') } -}; -const accept2 = { - parameterPath: "accept", - mapper: { - defaultValue: "application/xml", - isConstant: true, - serializedName: "Accept", - type: { - name: "String" - } + + if (typeof connect !== 'function') { + connect = buildConnector({ + ...tls, + maxCachedSessions, + allowH2, + socketPath, + timeout: connectTimeout, + ...(autoSelectFamily ? { autoSelectFamily, autoSelectFamilyAttemptTimeout } : undefined), + ...connect + }) } -}; -const comp19 = { - parameterPath: "comp", - mapper: { - defaultValue: "page", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + if (interceptors?.Client && Array.isArray(interceptors.Client)) { + this[kInterceptors] = interceptors.Client + if (!deprecatedInterceptorWarned) { + deprecatedInterceptorWarned = true + process.emitWarning('Client.Options#interceptor is deprecated. Use Dispatcher#compose instead.', { + code: 'UNDICI-CLIENT-INTERCEPTOR-DEPRECATED' + }) + } + } else { + this[kInterceptors] = [createRedirectInterceptor({ maxRedirections })] } -}; -const pageWrite = { - parameterPath: "pageWrite", - mapper: { - defaultValue: "update", - isConstant: true, - serializedName: "x-ms-page-write", - type: { - name: "String" - } + + this[kUrl] = util.parseOrigin(url) + this[kConnector] = connect + this[kPipelining] = pipelining != null ? pipelining : 1 + this[kMaxHeadersSize] = maxHeaderSize || http.maxHeaderSize + this[kKeepAliveDefaultTimeout] = keepAliveTimeout == null ? 4e3 : keepAliveTimeout + this[kKeepAliveMaxTimeout] = keepAliveMaxTimeout == null ? 600e3 : keepAliveMaxTimeout + this[kKeepAliveTimeoutThreshold] = keepAliveTimeoutThreshold == null ? 2e3 : keepAliveTimeoutThreshold + this[kKeepAliveTimeoutValue] = this[kKeepAliveDefaultTimeout] + this[kServerName] = null + this[kLocalAddress] = localAddress != null ? localAddress : null + this[kResuming] = 0 // 0, idle, 1, scheduled, 2 resuming + this[kNeedDrain] = 0 // 0, idle, 1, scheduled, 2 resuming + this[kHostHeader] = `host: ${this[kUrl].hostname}${this[kUrl].port ? `:${this[kUrl].port}` : ''}\r\n` + this[kBodyTimeout] = bodyTimeout != null ? bodyTimeout : 300e3 + this[kHeadersTimeout] = headersTimeout != null ? headersTimeout : 300e3 + this[kStrictContentLength] = strictContentLength == null ? true : strictContentLength + this[kMaxRedirections] = maxRedirections + this[kMaxRequests] = maxRequestsPerClient + this[kClosedResolve] = null + this[kMaxResponseSize] = maxResponseSize > -1 ? maxResponseSize : -1 + this[kMaxConcurrentStreams] = maxConcurrentStreams != null ? maxConcurrentStreams : 100 // Max peerConcurrentStreams for a Node h2 server + this[kHTTPContext] = null + + // kQueue is built up of 3 sections separated by + // the kRunningIdx and kPendingIdx indices. + // | complete | running | pending | + // ^ kRunningIdx ^ kPendingIdx ^ kQueue.length + // kRunningIdx points to the first running element. + // kPendingIdx points to the first pending element. + // This implements a fast queue with an amortized + // time of O(1). + + this[kQueue] = [] + this[kRunningIdx] = 0 + this[kPendingIdx] = 0 + + this[kResume] = (sync) => resume(this, sync) + this[kOnError] = (err) => onError(this, err) + } + + get pipelining () { + return this[kPipelining] + } + + set pipelining (value) { + this[kPipelining] = value + this[kResume](true) + } + + get [kPending] () { + return this[kQueue].length - this[kPendingIdx] + } + + get [kRunning] () { + return this[kPendingIdx] - this[kRunningIdx] + } + + get [kSize] () { + return this[kQueue].length - this[kRunningIdx] + } + + get [kConnected] () { + return !!this[kHTTPContext] && !this[kConnecting] && !this[kHTTPContext].destroyed + } + + get [kBusy] () { + return Boolean( + this[kHTTPContext]?.busy(null) || + (this[kSize] >= (getPipelining(this) || 1)) || + this[kPending] > 0 + ) + } + + /* istanbul ignore: only used for test */ + [kConnect] (cb) { + connect(this) + this.once('connect', cb) + } + + [kDispatch] (opts, handler) { + const origin = opts.origin || this[kUrl].origin + const request = new Request(origin, opts, handler) + + this[kQueue].push(request) + if (this[kResuming]) { + // Do nothing. + } else if (util.bodyLength(request.body) == null && util.isIterable(request.body)) { + // Wait a tick in case stream/iterator is ended in the same tick. + this[kResuming] = 1 + queueMicrotask(() => resume(this)) + } else { + this[kResume](true) } -}; -const ifSequenceNumberLessThanOrEqualTo = { - parameterPath: [ - "options", - "sequenceNumberAccessConditions", - "ifSequenceNumberLessThanOrEqualTo" - ], - mapper: { - serializedName: "x-ms-if-sequence-number-le", - xmlName: "x-ms-if-sequence-number-le", - type: { - name: "Number" - } + + if (this[kResuming] && this[kNeedDrain] !== 2 && this[kBusy]) { + this[kNeedDrain] = 2 } -}; -const ifSequenceNumberLessThan = { - parameterPath: [ - "options", - "sequenceNumberAccessConditions", - "ifSequenceNumberLessThan" - ], - mapper: { - serializedName: "x-ms-if-sequence-number-lt", - xmlName: "x-ms-if-sequence-number-lt", - type: { - name: "Number" + + return this[kNeedDrain] < 2 + } + + async [kClose] () { + // TODO: for H2 we need to gracefully flush the remaining enqueued + // request and close each stream. + return new Promise((resolve) => { + if (this[kSize]) { + this[kClosedResolve] = resolve + } else { + resolve(null) + } + }) + } + + async [kDestroy] (err) { + return new Promise((resolve) => { + const requests = this[kQueue].splice(this[kPendingIdx]) + for (let i = 0; i < requests.length; i++) { + const request = requests[i] + util.errorRequest(this, request, err) + } + + const callback = () => { + if (this[kClosedResolve]) { + // TODO (fix): Should we error here with ClientDestroyedError? + this[kClosedResolve]() + this[kClosedResolve] = null } + resolve(null) + } + + if (this[kHTTPContext]) { + this[kHTTPContext].destroy(err, callback) + this[kHTTPContext] = null + } else { + queueMicrotask(callback) + } + + this[kResume]() + }) + } +} + +const createRedirectInterceptor = __nccwpck_require__(99099) + +function onError (client, err) { + if ( + client[kRunning] === 0 && + err.code !== 'UND_ERR_INFO' && + err.code !== 'UND_ERR_SOCKET' + ) { + // Error is not caused by running request and not a recoverable + // socket error. + + assert(client[kPendingIdx] === client[kRunningIdx]) + + const requests = client[kQueue].splice(client[kRunningIdx]) + + for (let i = 0; i < requests.length; i++) { + const request = requests[i] + util.errorRequest(client, request, err) } -}; -const ifSequenceNumberEqualTo = { - parameterPath: [ - "options", - "sequenceNumberAccessConditions", - "ifSequenceNumberEqualTo" - ], - mapper: { - serializedName: "x-ms-if-sequence-number-eq", - xmlName: "x-ms-if-sequence-number-eq", - type: { - name: "Number" + assert(client[kSize] === 0) + } +} + +/** + * @param {Client} client + * @returns + */ +async function connect (client) { + assert(!client[kConnecting]) + assert(!client[kHTTPContext]) + + let { host, hostname, protocol, port } = client[kUrl] + + // Resolve ipv6 + if (hostname[0] === '[') { + const idx = hostname.indexOf(']') + + assert(idx !== -1) + const ip = hostname.substring(1, idx) + + assert(net.isIP(ip)) + hostname = ip + } + + client[kConnecting] = true + + if (channels.beforeConnect.hasSubscribers) { + channels.beforeConnect.publish({ + connectParams: { + host, + hostname, + protocol, + port, + version: client[kHTTPContext]?.version, + servername: client[kServerName], + localAddress: client[kLocalAddress] + }, + connector: client[kConnector] + }) + } + + try { + const socket = await new Promise((resolve, reject) => { + client[kConnector]({ + host, + hostname, + protocol, + port, + servername: client[kServerName], + localAddress: client[kLocalAddress] + }, (err, socket) => { + if (err) { + reject(err) + } else { + resolve(socket) } + }) + }) + + if (client.destroyed) { + util.destroy(socket.on('error', noop), new ClientDestroyedError()) + return } -}; -const pageWrite1 = { - parameterPath: "pageWrite", - mapper: { - defaultValue: "clear", - isConstant: true, - serializedName: "x-ms-page-write", - type: { - name: "String" - } + + assert(socket) + + try { + client[kHTTPContext] = socket.alpnProtocol === 'h2' + ? await connectH2(client, socket) + : await connectH1(client, socket) + } catch (err) { + socket.destroy().on('error', noop) + throw err + } + + client[kConnecting] = false + + socket[kCounter] = 0 + socket[kMaxRequests] = client[kMaxRequests] + socket[kClient] = client + socket[kError] = null + + if (channels.connected.hasSubscribers) { + channels.connected.publish({ + connectParams: { + host, + hostname, + protocol, + port, + version: client[kHTTPContext]?.version, + servername: client[kServerName], + localAddress: client[kLocalAddress] + }, + connector: client[kConnector], + socket + }) } -}; -const sourceUrl = { - parameterPath: "sourceUrl", - mapper: { - serializedName: "x-ms-copy-source", - required: true, - xmlName: "x-ms-copy-source", - type: { - name: "String" - } + client.emit('connect', client[kUrl], [client]) + } catch (err) { + if (client.destroyed) { + return } -}; -const sourceRange = { - parameterPath: "sourceRange", - mapper: { - serializedName: "x-ms-source-range", - required: true, - xmlName: "x-ms-source-range", - type: { - name: "String" - } + + client[kConnecting] = false + + if (channels.connectError.hasSubscribers) { + channels.connectError.publish({ + connectParams: { + host, + hostname, + protocol, + port, + version: client[kHTTPContext]?.version, + servername: client[kServerName], + localAddress: client[kLocalAddress] + }, + connector: client[kConnector], + error: err + }) } -}; -const sourceContentCrc64 = { - parameterPath: ["options", "sourceContentCrc64"], - mapper: { - serializedName: "x-ms-source-content-crc64", - xmlName: "x-ms-source-content-crc64", - type: { - name: "ByteArray" - } + + if (err.code === 'ERR_TLS_CERT_ALTNAME_INVALID') { + assert(client[kRunning] === 0) + while (client[kPending] > 0 && client[kQueue][client[kPendingIdx]].servername === client[kServerName]) { + const request = client[kQueue][client[kPendingIdx]++] + util.errorRequest(client, request, err) + } + } else { + onError(client, err) } -}; -const range1 = { - parameterPath: "range", - mapper: { - serializedName: "x-ms-range", - required: true, - xmlName: "x-ms-range", - type: { - name: "String" - } + + client.emit('connectionError', client[kUrl], [client], err) + } + + client[kResume]() +} + +function emitDrain (client) { + client[kNeedDrain] = 0 + client.emit('drain', client[kUrl], [client]) +} + +function resume (client, sync) { + if (client[kResuming] === 2) { + return + } + + client[kResuming] = 2 + + _resume(client, sync) + client[kResuming] = 0 + + if (client[kRunningIdx] > 256) { + client[kQueue].splice(0, client[kRunningIdx]) + client[kPendingIdx] -= client[kRunningIdx] + client[kRunningIdx] = 0 + } +} + +function _resume (client, sync) { + while (true) { + if (client.destroyed) { + assert(client[kPending] === 0) + return } -}; -const comp20 = { - parameterPath: "comp", - mapper: { - defaultValue: "pagelist", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + if (client[kClosedResolve] && !client[kSize]) { + client[kClosedResolve]() + client[kClosedResolve] = null + return } -}; -const prevsnapshot = { - parameterPath: ["options", "prevsnapshot"], - mapper: { - serializedName: "prevsnapshot", - xmlName: "prevsnapshot", - type: { - name: "String" - } + + if (client[kHTTPContext]) { + client[kHTTPContext].resume() } -}; -const prevSnapshotUrl = { - parameterPath: ["options", "prevSnapshotUrl"], - mapper: { - serializedName: "x-ms-previous-snapshot-url", - xmlName: "x-ms-previous-snapshot-url", - type: { - name: "String" - } + + if (client[kBusy]) { + client[kNeedDrain] = 2 + } else if (client[kNeedDrain] === 2) { + if (sync) { + client[kNeedDrain] = 1 + queueMicrotask(() => emitDrain(client)) + } else { + emitDrain(client) + } + continue } -}; -const sequenceNumberAction = { - parameterPath: "sequenceNumberAction", - mapper: { - serializedName: "x-ms-sequence-number-action", - required: true, - xmlName: "x-ms-sequence-number-action", - type: { - name: "Enum", - allowedValues: ["max", "update", "increment"] - } + + if (client[kPending] === 0) { + return } -}; -const comp21 = { - parameterPath: "comp", - mapper: { - defaultValue: "incrementalcopy", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + if (client[kRunning] >= (getPipelining(client) || 1)) { + return } -}; -const blobType1 = { - parameterPath: "blobType", - mapper: { - defaultValue: "AppendBlob", - isConstant: true, - serializedName: "x-ms-blob-type", - type: { - name: "String" - } + + const request = client[kQueue][client[kPendingIdx]] + + if (client[kUrl].protocol === 'https:' && client[kServerName] !== request.servername) { + if (client[kRunning] > 0) { + return + } + + client[kServerName] = request.servername + client[kHTTPContext]?.destroy(new InformationalError('servername changed'), () => { + client[kHTTPContext] = null + resume(client) + }) } -}; -const comp22 = { - parameterPath: "comp", - mapper: { - defaultValue: "appendblock", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + if (client[kConnecting]) { + return } -}; -const maxSize = { - parameterPath: ["options", "appendPositionAccessConditions", "maxSize"], - mapper: { - serializedName: "x-ms-blob-condition-maxsize", - xmlName: "x-ms-blob-condition-maxsize", - type: { - name: "Number" - } + + if (!client[kHTTPContext]) { + connect(client) + return } -}; -const appendPosition = { - parameterPath: [ - "options", - "appendPositionAccessConditions", - "appendPosition" - ], - mapper: { - serializedName: "x-ms-blob-condition-appendpos", - xmlName: "x-ms-blob-condition-appendpos", - type: { - name: "Number" - } + + if (client[kHTTPContext].destroyed) { + return } -}; -const sourceRange1 = { - parameterPath: ["options", "sourceRange"], - mapper: { - serializedName: "x-ms-source-range", - xmlName: "x-ms-source-range", - type: { - name: "String" - } + + if (client[kHTTPContext].busy(request)) { + return } -}; -const comp23 = { - parameterPath: "comp", - mapper: { - defaultValue: "seal", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + if (!request.aborted && client[kHTTPContext].write(request)) { + client[kPendingIdx]++ + } else { + client[kQueue].splice(client[kPendingIdx], 1) } -}; -const blobType2 = { - parameterPath: "blobType", - mapper: { - defaultValue: "BlockBlob", - isConstant: true, - serializedName: "x-ms-blob-type", - type: { - name: "String" + } +} + +module.exports = Client + + +/***/ }), + +/***/ 61544: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const Dispatcher = __nccwpck_require__(87781) +const { + ClientDestroyedError, + ClientClosedError, + InvalidArgumentError +} = __nccwpck_require__(48045) +const { kDestroy, kClose, kClosed, kDestroyed, kDispatch, kInterceptors } = __nccwpck_require__(72785) + +const kOnDestroyed = Symbol('onDestroyed') +const kOnClosed = Symbol('onClosed') +const kInterceptedDispatch = Symbol('Intercepted Dispatch') + +class DispatcherBase extends Dispatcher { + constructor () { + super() + + this[kDestroyed] = false + this[kOnDestroyed] = null + this[kClosed] = false + this[kOnClosed] = [] + } + + get destroyed () { + return this[kDestroyed] + } + + get closed () { + return this[kClosed] + } + + get interceptors () { + return this[kInterceptors] + } + + set interceptors (newInterceptors) { + if (newInterceptors) { + for (let i = newInterceptors.length - 1; i >= 0; i--) { + const interceptor = this[kInterceptors][i] + if (typeof interceptor !== 'function') { + throw new InvalidArgumentError('interceptor must be an function') } + } } -}; -const copySourceBlobProperties = { - parameterPath: ["options", "copySourceBlobProperties"], - mapper: { - serializedName: "x-ms-copy-source-blob-properties", - xmlName: "x-ms-copy-source-blob-properties", - type: { - name: "Boolean" - } + + this[kInterceptors] = newInterceptors + } + + close (callback) { + if (callback === undefined) { + return new Promise((resolve, reject) => { + this.close((err, data) => { + return err ? reject(err) : resolve(data) + }) + }) } -}; -const comp24 = { - parameterPath: "comp", - mapper: { - defaultValue: "block", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + if (typeof callback !== 'function') { + throw new InvalidArgumentError('invalid callback') } -}; -const blockId = { - parameterPath: "blockId", - mapper: { - serializedName: "blockid", - required: true, - xmlName: "blockid", - type: { - name: "String" - } + + if (this[kDestroyed]) { + queueMicrotask(() => callback(new ClientDestroyedError(), null)) + return } -}; -const blocks = { - parameterPath: "blocks", - mapper: BlockLookupList -}; -const comp25 = { - parameterPath: "comp", - mapper: { - defaultValue: "blocklist", - isConstant: true, - serializedName: "comp", - type: { - name: "String" - } + + if (this[kClosed]) { + if (this[kOnClosed]) { + this[kOnClosed].push(callback) + } else { + queueMicrotask(() => callback(null, null)) + } + return } -}; -const listType = { - parameterPath: "listType", - mapper: { - defaultValue: "committed", - serializedName: "blocklisttype", - required: true, - xmlName: "blocklisttype", - type: { - name: "Enum", - allowedValues: ["committed", "uncommitted", "all"] - } + + this[kClosed] = true + this[kOnClosed].push(callback) + + const onClosed = () => { + const callbacks = this[kOnClosed] + this[kOnClosed] = null + for (let i = 0; i < callbacks.length; i++) { + callbacks[i](null, null) + } } -}; -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ -/** Class representing a Service. */ -class Service { - /** - * Initialize a new instance of the class Service class. - * @param client Reference to the service client - */ - constructor(client) { - this.client = client; + // Should not error. + this[kClose]() + .then(() => this.destroy()) + .then(() => { + queueMicrotask(onClosed) + }) + } + + destroy (err, callback) { + if (typeof err === 'function') { + callback = err + err = null } - /** - * Sets properties for a storage account's Blob service endpoint, including properties for Storage - * Analytics and CORS (Cross-Origin Resource Sharing) rules - * @param blobServiceProperties The StorageService properties. - * @param options The options parameters. - */ - setProperties(blobServiceProperties, options) { - const operationArguments = { - blobServiceProperties, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, setPropertiesOperationSpec); + + if (callback === undefined) { + return new Promise((resolve, reject) => { + this.destroy(err, (err, data) => { + return err ? /* istanbul ignore next: should never error */ reject(err) : resolve(data) + }) + }) } - /** - * gets the properties of a storage account's Blob service, including properties for Storage Analytics - * and CORS (Cross-Origin Resource Sharing) rules. - * @param options The options parameters. - */ - getProperties(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, getPropertiesOperationSpec$2); + + if (typeof callback !== 'function') { + throw new InvalidArgumentError('invalid callback') } - /** - * Retrieves statistics related to replication for the Blob service. It is only available on the - * secondary location endpoint when read-access geo-redundant replication is enabled for the storage - * account. - * @param options The options parameters. - */ - getStatistics(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, getStatisticsOperationSpec); + + if (this[kDestroyed]) { + if (this[kOnDestroyed]) { + this[kOnDestroyed].push(callback) + } else { + queueMicrotask(() => callback(null, null)) + } + return } - /** - * The List Containers Segment operation returns a list of the containers under the specified account - * @param options The options parameters. - */ - listContainersSegment(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, listContainersSegmentOperationSpec); + + if (!err) { + err = new ClientDestroyedError() } - /** - * Retrieves a user delegation key for the Blob service. This is only a valid operation when using - * bearer token authentication. - * @param keyInfo Key information - * @param options The options parameters. - */ - getUserDelegationKey(keyInfo, options) { - const operationArguments = { - keyInfo, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, getUserDelegationKeyOperationSpec); + + this[kDestroyed] = true + this[kOnDestroyed] = this[kOnDestroyed] || [] + this[kOnDestroyed].push(callback) + + const onDestroyed = () => { + const callbacks = this[kOnDestroyed] + this[kOnDestroyed] = null + for (let i = 0; i < callbacks.length; i++) { + callbacks[i](null, null) + } } - /** - * Returns the sku name and account kind - * @param options The options parameters. - */ - getAccountInfo(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, getAccountInfoOperationSpec$2); + + // Should not error. + this[kDestroy](err).then(() => { + queueMicrotask(onDestroyed) + }) + } + + [kInterceptedDispatch] (opts, handler) { + if (!this[kInterceptors] || this[kInterceptors].length === 0) { + this[kInterceptedDispatch] = this[kDispatch] + return this[kDispatch](opts, handler) } - /** - * The Batch operation allows multiple API calls to be embedded into a single HTTP request. - * @param contentLength The length of the request. - * @param multipartContentType Required. The value of this header must be multipart/mixed with a batch - * boundary. Example header value: multipart/mixed; boundary=batch_ - * @param body Initial data - * @param options The options parameters. - */ - submitBatch(contentLength, multipartContentType, body, options) { - const operationArguments = { - contentLength, - multipartContentType, - body, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, submitBatchOperationSpec$1); + + let dispatch = this[kDispatch].bind(this) + for (let i = this[kInterceptors].length - 1; i >= 0; i--) { + dispatch = this[kInterceptors][i](dispatch) } - /** - * The Filter Blobs operation enables callers to list blobs across all containers whose tags match a - * given search expression. Filter blobs searches across all containers within a storage account but - * can be scoped within the expression to a single container. - * @param options The options parameters. - */ - filterBlobs(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, filterBlobsOperationSpec$1); + this[kInterceptedDispatch] = dispatch + return dispatch(opts, handler) + } + + dispatch (opts, handler) { + if (!handler || typeof handler !== 'object') { + throw new InvalidArgumentError('handler must be an object') } -} -// Operation Specifications -const xmlSerializer$5 = new coreHttp__namespace.Serializer(Mappers, /* isXml */ true); -const setPropertiesOperationSpec = { - path: "/", - httpMethod: "PUT", - responses: { - 202: { - headersMapper: ServiceSetPropertiesHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ServiceSetPropertiesExceptionHeaders - } - }, - requestBody: blobServiceProperties, - queryParameters: [ - restype, - comp, - timeoutInSeconds - ], - urlParameters: [url], - headerParameters: [ - contentType, - accept, - version, - requestId - ], - isXML: true, - contentType: "application/xml; charset=utf-8", - mediaType: "xml", - serializer: xmlSerializer$5 -}; -const getPropertiesOperationSpec$2 = { - path: "/", - httpMethod: "GET", - responses: { - 200: { - bodyMapper: BlobServiceProperties, - headersMapper: ServiceGetPropertiesHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ServiceGetPropertiesExceptionHeaders - } - }, - queryParameters: [ - restype, - comp, - timeoutInSeconds - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1 - ], - isXML: true, - serializer: xmlSerializer$5 -}; -const getStatisticsOperationSpec = { - path: "/", - httpMethod: "GET", - responses: { - 200: { - bodyMapper: BlobServiceStatistics, - headersMapper: ServiceGetStatisticsHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ServiceGetStatisticsExceptionHeaders - } - }, - queryParameters: [ - restype, - timeoutInSeconds, - comp1 - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1 - ], - isXML: true, - serializer: xmlSerializer$5 -}; -const listContainersSegmentOperationSpec = { - path: "/", - httpMethod: "GET", - responses: { - 200: { - bodyMapper: ListContainersSegmentResponse, - headersMapper: ServiceListContainersSegmentHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ServiceListContainersSegmentExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - comp2, - prefix, - marker, - maxPageSize, - include - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1 - ], - isXML: true, - serializer: xmlSerializer$5 -}; -const getUserDelegationKeyOperationSpec = { - path: "/", - httpMethod: "POST", - responses: { - 200: { - bodyMapper: UserDelegationKey, - headersMapper: ServiceGetUserDelegationKeyHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ServiceGetUserDelegationKeyExceptionHeaders - } - }, - requestBody: keyInfo, - queryParameters: [ - restype, - timeoutInSeconds, - comp3 - ], - urlParameters: [url], - headerParameters: [ - contentType, - accept, - version, - requestId - ], - isXML: true, - contentType: "application/xml; charset=utf-8", - mediaType: "xml", - serializer: xmlSerializer$5 -}; -const getAccountInfoOperationSpec$2 = { - path: "/", - httpMethod: "GET", - responses: { - 200: { - headersMapper: ServiceGetAccountInfoHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ServiceGetAccountInfoExceptionHeaders - } - }, - queryParameters: [comp, restype1], - urlParameters: [url], - headerParameters: [version, accept1], - isXML: true, - serializer: xmlSerializer$5 -}; -const submitBatchOperationSpec$1 = { - path: "/", - httpMethod: "POST", - responses: { - 202: { - bodyMapper: { - type: { name: "Stream" }, - serializedName: "parsedResponse" - }, - headersMapper: ServiceSubmitBatchHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ServiceSubmitBatchExceptionHeaders - } - }, - requestBody: body, - queryParameters: [timeoutInSeconds, comp4], - urlParameters: [url], - headerParameters: [ - contentType, - accept, - version, - requestId, - contentLength, - multipartContentType - ], - isXML: true, - contentType: "application/xml; charset=utf-8", - mediaType: "xml", - serializer: xmlSerializer$5 -}; -const filterBlobsOperationSpec$1 = { - path: "/", - httpMethod: "GET", - responses: { - 200: { - bodyMapper: FilterBlobSegment, - headersMapper: ServiceFilterBlobsHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ServiceFilterBlobsExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - marker, - maxPageSize, - comp5, - where - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1 - ], - isXML: true, - serializer: xmlSerializer$5 -}; -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ -/** Class representing a Container. */ -class Container { - /** - * Initialize a new instance of the class Container class. - * @param client Reference to the service client - */ - constructor(client) { - this.client = client; + try { + if (!opts || typeof opts !== 'object') { + throw new InvalidArgumentError('opts must be an object.') + } + + if (this[kDestroyed] || this[kOnDestroyed]) { + throw new ClientDestroyedError() + } + + if (this[kClosed]) { + throw new ClientClosedError() + } + + return this[kInterceptedDispatch](opts, handler) + } catch (err) { + if (typeof handler.onError !== 'function') { + throw new InvalidArgumentError('invalid onError method') + } + + handler.onError(err) + + return false } - /** - * creates a new container under the specified account. If the container with the same name already - * exists, the operation fails - * @param options The options parameters. - */ - create(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, createOperationSpec$2); + } +} + +module.exports = DispatcherBase + + +/***/ }), + +/***/ 87781: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + +const EventEmitter = __nccwpck_require__(15673) + +class Dispatcher extends EventEmitter { + dispatch () { + throw new Error('not implemented') + } + + close () { + throw new Error('not implemented') + } + + destroy () { + throw new Error('not implemented') + } + + compose (...args) { + // So we handle [interceptor1, interceptor2] or interceptor1, interceptor2, ... + const interceptors = Array.isArray(args[0]) ? args[0] : args + let dispatch = this.dispatch.bind(this) + + for (const interceptor of interceptors) { + if (interceptor == null) { + continue + } + + if (typeof interceptor !== 'function') { + throw new TypeError(`invalid interceptor, expected function received ${typeof interceptor}`) + } + + dispatch = interceptor(dispatch) + + if (dispatch == null || typeof dispatch !== 'function' || dispatch.length !== 2) { + throw new TypeError('invalid interceptor') + } } - /** - * returns all user-defined metadata and system properties for the specified container. The data - * returned does not include the container's list of blobs - * @param options The options parameters. - */ - getProperties(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, getPropertiesOperationSpec$1); + + return new ComposedDispatcher(this, dispatch) + } +} + +class ComposedDispatcher extends Dispatcher { + #dispatcher = null + #dispatch = null + + constructor (dispatcher, dispatch) { + super() + this.#dispatcher = dispatcher + this.#dispatch = dispatch + } + + dispatch (...args) { + this.#dispatch(...args) + } + + close (...args) { + return this.#dispatcher.close(...args) + } + + destroy (...args) { + return this.#dispatcher.destroy(...args) + } +} + +module.exports = Dispatcher + + +/***/ }), + +/***/ 88374: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const DispatcherBase = __nccwpck_require__(61544) +const { kClose, kDestroy, kClosed, kDestroyed, kDispatch, kNoProxyAgent, kHttpProxyAgent, kHttpsProxyAgent } = __nccwpck_require__(72785) +const ProxyAgent = __nccwpck_require__(15657) +const Agent = __nccwpck_require__(71208) + +const DEFAULT_PORTS = { + 'http:': 80, + 'https:': 443 +} + +let experimentalWarned = false + +class EnvHttpProxyAgent extends DispatcherBase { + #noProxyValue = null + #noProxyEntries = null + #opts = null + + constructor (opts = {}) { + super() + this.#opts = opts + + if (!experimentalWarned) { + experimentalWarned = true + process.emitWarning('EnvHttpProxyAgent is experimental, expect them to change at any time.', { + code: 'UNDICI-EHPA' + }) } - /** - * operation marks the specified container for deletion. The container and any blobs contained within - * it are later deleted during garbage collection - * @param options The options parameters. - */ - delete(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, deleteOperationSpec$1); + + const { httpProxy, httpsProxy, noProxy, ...agentOpts } = opts + + this[kNoProxyAgent] = new Agent(agentOpts) + + const HTTP_PROXY = httpProxy ?? process.env.http_proxy ?? process.env.HTTP_PROXY + if (HTTP_PROXY) { + this[kHttpProxyAgent] = new ProxyAgent({ ...agentOpts, uri: HTTP_PROXY }) + } else { + this[kHttpProxyAgent] = this[kNoProxyAgent] } - /** - * operation sets one or more user-defined name-value pairs for the specified container. - * @param options The options parameters. - */ - setMetadata(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, setMetadataOperationSpec$1); + + const HTTPS_PROXY = httpsProxy ?? process.env.https_proxy ?? process.env.HTTPS_PROXY + if (HTTPS_PROXY) { + this[kHttpsProxyAgent] = new ProxyAgent({ ...agentOpts, uri: HTTPS_PROXY }) + } else { + this[kHttpsProxyAgent] = this[kHttpProxyAgent] } - /** - * gets the permissions for the specified container. The permissions indicate whether container data - * may be accessed publicly. - * @param options The options parameters. - */ - getAccessPolicy(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, getAccessPolicyOperationSpec); + + this.#parseNoProxy() + } + + [kDispatch] (opts, handler) { + const url = new URL(opts.origin) + const agent = this.#getProxyAgentForUrl(url) + return agent.dispatch(opts, handler) + } + + async [kClose] () { + await this[kNoProxyAgent].close() + if (!this[kHttpProxyAgent][kClosed]) { + await this[kHttpProxyAgent].close() } - /** - * sets the permissions for the specified container. The permissions indicate whether blobs in a - * container may be accessed publicly. - * @param options The options parameters. - */ - setAccessPolicy(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, setAccessPolicyOperationSpec); + if (!this[kHttpsProxyAgent][kClosed]) { + await this[kHttpsProxyAgent].close() } - /** - * Restores a previously-deleted container. - * @param options The options parameters. - */ - restore(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, restoreOperationSpec); + } + + async [kDestroy] (err) { + await this[kNoProxyAgent].destroy(err) + if (!this[kHttpProxyAgent][kDestroyed]) { + await this[kHttpProxyAgent].destroy(err) } - /** - * Renames an existing container. - * @param sourceContainerName Required. Specifies the name of the container to rename. - * @param options The options parameters. - */ - rename(sourceContainerName, options) { - const operationArguments = { - sourceContainerName, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, renameOperationSpec); + if (!this[kHttpsProxyAgent][kDestroyed]) { + await this[kHttpsProxyAgent].destroy(err) } - /** - * The Batch operation allows multiple API calls to be embedded into a single HTTP request. - * @param contentLength The length of the request. - * @param multipartContentType Required. The value of this header must be multipart/mixed with a batch - * boundary. Example header value: multipart/mixed; boundary=batch_ - * @param body Initial data - * @param options The options parameters. - */ - submitBatch(contentLength, multipartContentType, body, options) { - const operationArguments = { - contentLength, - multipartContentType, - body, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, submitBatchOperationSpec); + } + + #getProxyAgentForUrl (url) { + let { protocol, host: hostname, port } = url + + // Stripping ports in this way instead of using parsedUrl.hostname to make + // sure that the brackets around IPv6 addresses are kept. + hostname = hostname.replace(/:\d*$/, '').toLowerCase() + port = Number.parseInt(port, 10) || DEFAULT_PORTS[protocol] || 0 + if (!this.#shouldProxy(hostname, port)) { + return this[kNoProxyAgent] } - /** - * The Filter Blobs operation enables callers to list blobs in a container whose tags match a given - * search expression. Filter blobs searches within the given container. - * @param options The options parameters. - */ - filterBlobs(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, filterBlobsOperationSpec); + if (protocol === 'https:') { + return this[kHttpsProxyAgent] } - /** - * [Update] establishes and manages a lock on a container for delete operations. The lock duration can - * be 15 to 60 seconds, or can be infinite - * @param options The options parameters. - */ - acquireLease(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, acquireLeaseOperationSpec$1); + return this[kHttpProxyAgent] + } + + #shouldProxy (hostname, port) { + if (this.#noProxyChanged) { + this.#parseNoProxy() } - /** - * [Update] establishes and manages a lock on a container for delete operations. The lock duration can - * be 15 to 60 seconds, or can be infinite - * @param leaseId Specifies the current lease ID on the resource. - * @param options The options parameters. - */ - releaseLease(leaseId, options) { - const operationArguments = { - leaseId, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, releaseLeaseOperationSpec$1); + + if (this.#noProxyEntries.length === 0) { + return true // Always proxy if NO_PROXY is not set or empty. } - /** - * [Update] establishes and manages a lock on a container for delete operations. The lock duration can - * be 15 to 60 seconds, or can be infinite - * @param leaseId Specifies the current lease ID on the resource. - * @param options The options parameters. - */ - renewLease(leaseId, options) { - const operationArguments = { - leaseId, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, renewLeaseOperationSpec$1); + if (this.#noProxyValue === '*') { + return false // Never proxy if wildcard is set. } - /** - * [Update] establishes and manages a lock on a container for delete operations. The lock duration can - * be 15 to 60 seconds, or can be infinite - * @param options The options parameters. - */ - breakLease(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, breakLeaseOperationSpec$1); + + for (let i = 0; i < this.#noProxyEntries.length; i++) { + const entry = this.#noProxyEntries[i] + if (entry.port && entry.port !== port) { + continue // Skip if ports don't match. + } + if (!/^[.*]/.test(entry.hostname)) { + // No wildcards, so don't proxy only if there is not an exact match. + if (hostname === entry.hostname) { + return false + } + } else { + // Don't proxy if the hostname ends with the no_proxy host. + if (hostname.endsWith(entry.hostname.replace(/^\*/, ''))) { + return false + } + } } - /** - * [Update] establishes and manages a lock on a container for delete operations. The lock duration can - * be 15 to 60 seconds, or can be infinite - * @param leaseId Specifies the current lease ID on the resource. - * @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400 - * (Invalid request) if the proposed lease ID is not in the correct format. See Guid Constructor - * (String) for a list of valid GUID string formats. - * @param options The options parameters. - */ - changeLease(leaseId, proposedLeaseId, options) { - const operationArguments = { - leaseId, - proposedLeaseId, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, changeLeaseOperationSpec$1); + + return true + } + + #parseNoProxy () { + const noProxyValue = this.#opts.noProxy ?? this.#noProxyEnv + const noProxySplit = noProxyValue.split(/[,\s]/) + const noProxyEntries = [] + + for (let i = 0; i < noProxySplit.length; i++) { + const entry = noProxySplit[i] + if (!entry) { + continue + } + const parsed = entry.match(/^(.+):(\d+)$/) + noProxyEntries.push({ + hostname: (parsed ? parsed[1] : entry).toLowerCase(), + port: parsed ? Number.parseInt(parsed[2], 10) : 0 + }) } - /** - * [Update] The List Blobs operation returns a list of the blobs under the specified container - * @param options The options parameters. - */ - listBlobFlatSegment(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, listBlobFlatSegmentOperationSpec); + + this.#noProxyValue = noProxyValue + this.#noProxyEntries = noProxyEntries + } + + get #noProxyChanged () { + if (this.#opts.noProxy !== undefined) { + return false } - /** - * [Update] The List Blobs operation returns a list of the blobs under the specified container - * @param delimiter When the request includes this parameter, the operation returns a BlobPrefix - * element in the response body that acts as a placeholder for all blobs whose names begin with the - * same substring up to the appearance of the delimiter character. The delimiter may be a single - * character or a string. - * @param options The options parameters. - */ - listBlobHierarchySegment(delimiter, options) { - const operationArguments = { - delimiter, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, listBlobHierarchySegmentOperationSpec); + return this.#noProxyValue !== this.#noProxyEnv + } + + get #noProxyEnv () { + return process.env.no_proxy ?? process.env.NO_PROXY ?? '' + } +} + +module.exports = EnvHttpProxyAgent + + +/***/ }), + +/***/ 75158: +/***/ ((module) => { + +"use strict"; +/* eslint-disable */ + + + +// Extracted from node/lib/internal/fixed_queue.js + +// Currently optimal queue size, tested on V8 6.0 - 6.6. Must be power of two. +const kSize = 2048; +const kMask = kSize - 1; + +// The FixedQueue is implemented as a singly-linked list of fixed-size +// circular buffers. It looks something like this: +// +// head tail +// | | +// v v +// +-----------+ <-----\ +-----------+ <------\ +-----------+ +// | [null] | \----- | next | \------- | next | +// +-----------+ +-----------+ +-----------+ +// | item | <-- bottom | item | <-- bottom | [empty] | +// | item | | item | | [empty] | +// | item | | item | | [empty] | +// | item | | item | | [empty] | +// | item | | item | bottom --> | item | +// | item | | item | | item | +// | ... | | ... | | ... | +// | item | | item | | item | +// | item | | item | | item | +// | [empty] | <-- top | item | | item | +// | [empty] | | item | | item | +// | [empty] | | [empty] | <-- top top --> | [empty] | +// +-----------+ +-----------+ +-----------+ +// +// Or, if there is only one circular buffer, it looks something +// like either of these: +// +// head tail head tail +// | | | | +// v v v v +// +-----------+ +-----------+ +// | [null] | | [null] | +// +-----------+ +-----------+ +// | [empty] | | item | +// | [empty] | | item | +// | item | <-- bottom top --> | [empty] | +// | item | | [empty] | +// | [empty] | <-- top bottom --> | item | +// | [empty] | | item | +// +-----------+ +-----------+ +// +// Adding a value means moving `top` forward by one, removing means +// moving `bottom` forward by one. After reaching the end, the queue +// wraps around. +// +// When `top === bottom` the current queue is empty and when +// `top + 1 === bottom` it's full. This wastes a single space of storage +// but allows much quicker checks. + +class FixedCircularBuffer { + constructor() { + this.bottom = 0; + this.top = 0; + this.list = new Array(kSize); + this.next = null; + } + + isEmpty() { + return this.top === this.bottom; + } + + isFull() { + return ((this.top + 1) & kMask) === this.bottom; + } + + push(data) { + this.list[this.top] = data; + this.top = (this.top + 1) & kMask; + } + + shift() { + const nextItem = this.list[this.bottom]; + if (nextItem === undefined) + return null; + this.list[this.bottom] = undefined; + this.bottom = (this.bottom + 1) & kMask; + return nextItem; + } +} + +module.exports = class FixedQueue { + constructor() { + this.head = this.tail = new FixedCircularBuffer(); + } + + isEmpty() { + return this.head.isEmpty(); + } + + push(data) { + if (this.head.isFull()) { + // Head is full: Creates a new queue, sets the old queue's `.next` to it, + // and sets it as the new main queue. + this.head = this.head.next = new FixedCircularBuffer(); } - /** - * Returns the sku name and account kind - * @param options The options parameters. - */ - getAccountInfo(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, getAccountInfoOperationSpec$1); + this.head.push(data); + } + + shift() { + const tail = this.tail; + const next = tail.shift(); + if (tail.isEmpty() && tail.next !== null) { + // If there is another queue, it forms the new tail. + this.tail = tail.next; } -} -// Operation Specifications -const xmlSerializer$4 = new coreHttp__namespace.Serializer(Mappers, /* isXml */ true); -const createOperationSpec$2 = { - path: "/{containerName}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: ContainerCreateHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerCreateExceptionHeaders - } - }, - queryParameters: [timeoutInSeconds, restype2], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - metadata, - access, - defaultEncryptionScope, - preventEncryptionScopeOverride - ], - isXML: true, - serializer: xmlSerializer$4 + return next; + } }; -const getPropertiesOperationSpec$1 = { - path: "/{containerName}", - httpMethod: "GET", - responses: { - 200: { - headersMapper: ContainerGetPropertiesHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerGetPropertiesExceptionHeaders + + +/***/ }), + +/***/ 90494: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const DispatcherBase = __nccwpck_require__(61544) +const FixedQueue = __nccwpck_require__(75158) +const { kConnected, kSize, kRunning, kPending, kQueued, kBusy, kFree, kUrl, kClose, kDestroy, kDispatch } = __nccwpck_require__(72785) +const PoolStats = __nccwpck_require__(54667) + +const kClients = Symbol('clients') +const kNeedDrain = Symbol('needDrain') +const kQueue = Symbol('queue') +const kClosedResolve = Symbol('closed resolve') +const kOnDrain = Symbol('onDrain') +const kOnConnect = Symbol('onConnect') +const kOnDisconnect = Symbol('onDisconnect') +const kOnConnectionError = Symbol('onConnectionError') +const kGetDispatcher = Symbol('get dispatcher') +const kAddClient = Symbol('add client') +const kRemoveClient = Symbol('remove client') +const kStats = Symbol('stats') + +class PoolBase extends DispatcherBase { + constructor () { + super() + + this[kQueue] = new FixedQueue() + this[kClients] = [] + this[kQueued] = 0 + + const pool = this + + this[kOnDrain] = function onDrain (origin, targets) { + const queue = pool[kQueue] + + let needDrain = false + + while (!needDrain) { + const item = queue.shift() + if (!item) { + break } - }, - queryParameters: [timeoutInSeconds, restype2], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId - ], - isXML: true, - serializer: xmlSerializer$4 -}; -const deleteOperationSpec$1 = { - path: "/{containerName}", - httpMethod: "DELETE", - responses: { - 202: { - headersMapper: ContainerDeleteHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerDeleteExceptionHeaders + pool[kQueued]-- + needDrain = !this.dispatch(item.opts, item.handler) + } + + this[kNeedDrain] = needDrain + + if (!this[kNeedDrain] && pool[kNeedDrain]) { + pool[kNeedDrain] = false + pool.emit('drain', origin, [pool, ...targets]) + } + + if (pool[kClosedResolve] && queue.isEmpty()) { + Promise + .all(pool[kClients].map(c => c.close())) + .then(pool[kClosedResolve]) + } + } + + this[kOnConnect] = (origin, targets) => { + pool.emit('connect', origin, [pool, ...targets]) + } + + this[kOnDisconnect] = (origin, targets, err) => { + pool.emit('disconnect', origin, [pool, ...targets], err) + } + + this[kOnConnectionError] = (origin, targets, err) => { + pool.emit('connectionError', origin, [pool, ...targets], err) + } + + this[kStats] = new PoolStats(this) + } + + get [kBusy] () { + return this[kNeedDrain] + } + + get [kConnected] () { + return this[kClients].filter(client => client[kConnected]).length + } + + get [kFree] () { + return this[kClients].filter(client => client[kConnected] && !client[kNeedDrain]).length + } + + get [kPending] () { + let ret = this[kQueued] + for (const { [kPending]: pending } of this[kClients]) { + ret += pending + } + return ret + } + + get [kRunning] () { + let ret = 0 + for (const { [kRunning]: running } of this[kClients]) { + ret += running + } + return ret + } + + get [kSize] () { + let ret = this[kQueued] + for (const { [kSize]: size } of this[kClients]) { + ret += size + } + return ret + } + + get stats () { + return this[kStats] + } + + async [kClose] () { + if (this[kQueue].isEmpty()) { + await Promise.all(this[kClients].map(c => c.close())) + } else { + await new Promise((resolve) => { + this[kClosedResolve] = resolve + }) + } + } + + async [kDestroy] (err) { + while (true) { + const item = this[kQueue].shift() + if (!item) { + break + } + item.handler.onError(err) + } + + await Promise.all(this[kClients].map(c => c.destroy(err))) + } + + [kDispatch] (opts, handler) { + const dispatcher = this[kGetDispatcher]() + + if (!dispatcher) { + this[kNeedDrain] = true + this[kQueue].push({ opts, handler }) + this[kQueued]++ + } else if (!dispatcher.dispatch(opts, handler)) { + dispatcher[kNeedDrain] = true + this[kNeedDrain] = !this[kGetDispatcher]() + } + + return !this[kNeedDrain] + } + + [kAddClient] (client) { + client + .on('drain', this[kOnDrain]) + .on('connect', this[kOnConnect]) + .on('disconnect', this[kOnDisconnect]) + .on('connectionError', this[kOnConnectionError]) + + this[kClients].push(client) + + if (this[kNeedDrain]) { + queueMicrotask(() => { + if (this[kNeedDrain]) { + this[kOnDrain](client[kUrl], [this, client]) } - }, - queryParameters: [timeoutInSeconds, restype2], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId, - ifModifiedSince, - ifUnmodifiedSince - ], - isXML: true, - serializer: xmlSerializer$4 -}; -const setMetadataOperationSpec$1 = { - path: "/{containerName}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: ContainerSetMetadataHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerSetMetadataExceptionHeaders + }) + } + + return this + } + + [kRemoveClient] (client) { + client.close(() => { + const idx = this[kClients].indexOf(client) + if (idx !== -1) { + this[kClients].splice(idx, 1) + } + }) + + this[kNeedDrain] = this[kClients].some(dispatcher => ( + !dispatcher[kNeedDrain] && + dispatcher.closed !== true && + dispatcher.destroyed !== true + )) + } +} + +module.exports = { + PoolBase, + kClients, + kNeedDrain, + kAddClient, + kRemoveClient, + kGetDispatcher +} + + +/***/ }), + +/***/ 54667: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const { kFree, kConnected, kPending, kQueued, kRunning, kSize } = __nccwpck_require__(72785) +const kPool = Symbol('pool') + +class PoolStats { + constructor (pool) { + this[kPool] = pool + } + + get connected () { + return this[kPool][kConnected] + } + + get free () { + return this[kPool][kFree] + } + + get pending () { + return this[kPool][kPending] + } + + get queued () { + return this[kPool][kQueued] + } + + get running () { + return this[kPool][kRunning] + } + + get size () { + return this[kPool][kSize] + } +} + +module.exports = PoolStats + + +/***/ }), + +/***/ 20177: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { + PoolBase, + kClients, + kNeedDrain, + kAddClient, + kGetDispatcher +} = __nccwpck_require__(90494) +const Client = __nccwpck_require__(8176) +const { + InvalidArgumentError +} = __nccwpck_require__(48045) +const util = __nccwpck_require__(83983) +const { kUrl, kInterceptors } = __nccwpck_require__(72785) +const buildConnector = __nccwpck_require__(82067) + +const kOptions = Symbol('options') +const kConnections = Symbol('connections') +const kFactory = Symbol('factory') + +function defaultFactory (origin, opts) { + return new Client(origin, opts) +} + +class Pool extends PoolBase { + constructor (origin, { + connections, + factory = defaultFactory, + connect, + connectTimeout, + tls, + maxCachedSessions, + socketPath, + autoSelectFamily, + autoSelectFamilyAttemptTimeout, + allowH2, + ...options + } = {}) { + super() + + if (connections != null && (!Number.isFinite(connections) || connections < 0)) { + throw new InvalidArgumentError('invalid connections') + } + + if (typeof factory !== 'function') { + throw new InvalidArgumentError('factory must be a function.') + } + + if (connect != null && typeof connect !== 'function' && typeof connect !== 'object') { + throw new InvalidArgumentError('connect must be a function or an object') + } + + if (typeof connect !== 'function') { + connect = buildConnector({ + ...tls, + maxCachedSessions, + allowH2, + socketPath, + timeout: connectTimeout, + ...(autoSelectFamily ? { autoSelectFamily, autoSelectFamilyAttemptTimeout } : undefined), + ...connect + }) + } + + this[kInterceptors] = options.interceptors?.Pool && Array.isArray(options.interceptors.Pool) + ? options.interceptors.Pool + : [] + this[kConnections] = connections || null + this[kUrl] = util.parseOrigin(origin) + this[kOptions] = { ...util.deepClone(options), connect, allowH2 } + this[kOptions].interceptors = options.interceptors + ? { ...options.interceptors } + : undefined + this[kFactory] = factory + + this.on('connectionError', (origin, targets, error) => { + // If a connection error occurs, we remove the client from the pool, + // and emit a connectionError event. They will not be re-used. + // Fixes https://github.com/nodejs/undici/issues/3895 + for (const target of targets) { + // Do not use kRemoveClient here, as it will close the client, + // but the client cannot be closed in this state. + const idx = this[kClients].indexOf(target) + if (idx !== -1) { + this[kClients].splice(idx, 1) } - }, - queryParameters: [ - timeoutInSeconds, - restype2, - comp6 - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - metadata, - leaseId, - ifModifiedSince - ], - isXML: true, - serializer: xmlSerializer$4 -}; -const getAccessPolicyOperationSpec = { - path: "/{containerName}", - httpMethod: "GET", - responses: { - 200: { - bodyMapper: { - type: { - name: "Sequence", - element: { - type: { name: "Composite", className: "SignedIdentifier" } - } - }, - serializedName: "SignedIdentifiers", - xmlName: "SignedIdentifiers", - xmlIsWrapped: true, - xmlElementName: "SignedIdentifier" - }, - headersMapper: ContainerGetAccessPolicyHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerGetAccessPolicyExceptionHeaders + } + }) + } + + [kGetDispatcher] () { + for (const client of this[kClients]) { + if (!client[kNeedDrain]) { + return client + } + } + + if (!this[kConnections] || this[kClients].length < this[kConnections]) { + const dispatcher = this[kFactory](this[kUrl], this[kOptions]) + this[kAddClient](dispatcher) + return dispatcher + } + } +} + +module.exports = Pool + + +/***/ }), + +/***/ 15657: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { kProxy, kClose, kDestroy, kDispatch, kInterceptors } = __nccwpck_require__(72785) +const { URL } = __nccwpck_require__(41041) +const Agent = __nccwpck_require__(71208) +const Pool = __nccwpck_require__(20177) +const DispatcherBase = __nccwpck_require__(61544) +const { InvalidArgumentError, RequestAbortedError, SecureProxyConnectionError } = __nccwpck_require__(48045) +const buildConnector = __nccwpck_require__(82067) +const Client = __nccwpck_require__(8176) + +const kAgent = Symbol('proxy agent') +const kClient = Symbol('proxy client') +const kProxyHeaders = Symbol('proxy headers') +const kRequestTls = Symbol('request tls settings') +const kProxyTls = Symbol('proxy tls settings') +const kConnectEndpoint = Symbol('connect endpoint function') +const kTunnelProxy = Symbol('tunnel proxy') + +function defaultProtocolPort (protocol) { + return protocol === 'https:' ? 443 : 80 +} + +function defaultFactory (origin, opts) { + return new Pool(origin, opts) +} + +const noop = () => {} + +function defaultAgentFactory (origin, opts) { + if (opts.connections === 1) { + return new Client(origin, opts) + } + return new Pool(origin, opts) +} + +class Http1ProxyWrapper extends DispatcherBase { + #client + + constructor (proxyUrl, { headers = {}, connect, factory }) { + super() + if (!proxyUrl) { + throw new InvalidArgumentError('Proxy URL is mandatory') + } + + this[kProxyHeaders] = headers + if (factory) { + this.#client = factory(proxyUrl, { connect }) + } else { + this.#client = new Client(proxyUrl, { connect }) + } + } + + [kDispatch] (opts, handler) { + const onHeaders = handler.onHeaders + handler.onHeaders = function (statusCode, data, resume) { + if (statusCode === 407) { + if (typeof handler.onError === 'function') { + handler.onError(new InvalidArgumentError('Proxy Authentication Required (407)')) } - }, - queryParameters: [ - timeoutInSeconds, - restype2, - comp7 - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId - ], - isXML: true, - serializer: xmlSerializer$4 -}; -const setAccessPolicyOperationSpec = { - path: "/{containerName}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: ContainerSetAccessPolicyHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerSetAccessPolicyExceptionHeaders + return + } + if (onHeaders) onHeaders.call(this, statusCode, data, resume) + } + + // Rewrite request as an HTTP1 Proxy request, without tunneling. + const { + origin, + path = '/', + headers = {} + } = opts + + opts.path = origin + path + + if (!('host' in headers) && !('Host' in headers)) { + const { host } = new URL(origin) + headers.host = host + } + opts.headers = { ...this[kProxyHeaders], ...headers } + + return this.#client[kDispatch](opts, handler) + } + + async [kClose] () { + return this.#client.close() + } + + async [kDestroy] (err) { + return this.#client.destroy(err) + } +} + +class ProxyAgent extends DispatcherBase { + constructor (opts) { + super() + + if (!opts || (typeof opts === 'object' && !(opts instanceof URL) && !opts.uri)) { + throw new InvalidArgumentError('Proxy uri is mandatory') + } + + const { clientFactory = defaultFactory } = opts + if (typeof clientFactory !== 'function') { + throw new InvalidArgumentError('Proxy opts.clientFactory must be a function.') + } + + const { proxyTunnel = true } = opts + + const url = this.#getUrl(opts) + const { href, origin, port, protocol, username, password, hostname: proxyHostname } = url + + this[kProxy] = { uri: href, protocol } + this[kInterceptors] = opts.interceptors?.ProxyAgent && Array.isArray(opts.interceptors.ProxyAgent) + ? opts.interceptors.ProxyAgent + : [] + this[kRequestTls] = opts.requestTls + this[kProxyTls] = opts.proxyTls + this[kProxyHeaders] = opts.headers || {} + this[kTunnelProxy] = proxyTunnel + + if (opts.auth && opts.token) { + throw new InvalidArgumentError('opts.auth cannot be used in combination with opts.token') + } else if (opts.auth) { + /* @deprecated in favour of opts.token */ + this[kProxyHeaders]['proxy-authorization'] = `Basic ${opts.auth}` + } else if (opts.token) { + this[kProxyHeaders]['proxy-authorization'] = opts.token + } else if (username && password) { + this[kProxyHeaders]['proxy-authorization'] = `Basic ${Buffer.from(`${decodeURIComponent(username)}:${decodeURIComponent(password)}`).toString('base64')}` + } + + const connect = buildConnector({ ...opts.proxyTls }) + this[kConnectEndpoint] = buildConnector({ ...opts.requestTls }) + + const agentFactory = opts.factory || defaultAgentFactory + const factory = (origin, options) => { + const { protocol } = new URL(origin) + if (!this[kTunnelProxy] && protocol === 'http:' && this[kProxy].protocol === 'http:') { + return new Http1ProxyWrapper(this[kProxy].uri, { + headers: this[kProxyHeaders], + connect, + factory: agentFactory + }) + } + return agentFactory(origin, options) + } + this[kClient] = clientFactory(url, { connect }) + this[kAgent] = new Agent({ + ...opts, + factory, + connect: async (opts, callback) => { + let requestedPath = opts.host + if (!opts.port) { + requestedPath += `:${defaultProtocolPort(opts.protocol)}` } - }, - requestBody: containerAcl, - queryParameters: [ - timeoutInSeconds, - restype2, - comp7 - ], - urlParameters: [url], - headerParameters: [ - contentType, - accept, - version, - requestId, - access, - leaseId, - ifModifiedSince, - ifUnmodifiedSince - ], - isXML: true, - contentType: "application/xml; charset=utf-8", - mediaType: "xml", - serializer: xmlSerializer$4 -}; -const restoreOperationSpec = { - path: "/{containerName}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: ContainerRestoreHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerRestoreExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - restype2, - comp8 - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - deletedContainerName, - deletedContainerVersion - ], - isXML: true, - serializer: xmlSerializer$4 -}; -const renameOperationSpec = { - path: "/{containerName}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: ContainerRenameHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerRenameExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - restype2, - comp9 - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - sourceContainerName, - sourceLeaseId - ], - isXML: true, - serializer: xmlSerializer$4 -}; -const submitBatchOperationSpec = { - path: "/{containerName}", - httpMethod: "POST", - responses: { - 202: { - bodyMapper: { - type: { name: "Stream" }, - serializedName: "parsedResponse" - }, - headersMapper: ContainerSubmitBatchHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerSubmitBatchExceptionHeaders - } - }, - requestBody: body, - queryParameters: [ - timeoutInSeconds, - comp4, - restype2 - ], - urlParameters: [url], - headerParameters: [ - contentType, - accept, - version, - requestId, - contentLength, - multipartContentType - ], - isXML: true, - contentType: "application/xml; charset=utf-8", - mediaType: "xml", - serializer: xmlSerializer$4 -}; -const filterBlobsOperationSpec = { - path: "/{containerName}", - httpMethod: "GET", - responses: { - 200: { - bodyMapper: FilterBlobSegment, - headersMapper: ContainerFilterBlobsHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerFilterBlobsExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - marker, - maxPageSize, - comp5, - where, - restype2 - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1 - ], - isXML: true, - serializer: xmlSerializer$4 -}; -const acquireLeaseOperationSpec$1 = { - path: "/{containerName}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: ContainerAcquireLeaseHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerAcquireLeaseExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - restype2, - comp10 - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - ifModifiedSince, - ifUnmodifiedSince, - action, - duration, - proposedLeaseId - ], - isXML: true, - serializer: xmlSerializer$4 -}; -const releaseLeaseOperationSpec$1 = { - path: "/{containerName}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: ContainerReleaseLeaseHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerReleaseLeaseExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - restype2, - comp10 - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - ifModifiedSince, - ifUnmodifiedSince, - action1, - leaseId1 - ], - isXML: true, - serializer: xmlSerializer$4 -}; -const renewLeaseOperationSpec$1 = { - path: "/{containerName}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: ContainerRenewLeaseHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerRenewLeaseExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - restype2, - comp10 - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - ifModifiedSince, - ifUnmodifiedSince, - leaseId1, - action2 - ], - isXML: true, - serializer: xmlSerializer$4 -}; -const breakLeaseOperationSpec$1 = { - path: "/{containerName}", - httpMethod: "PUT", - responses: { - 202: { - headersMapper: ContainerBreakLeaseHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerBreakLeaseExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - restype2, - comp10 - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - ifModifiedSince, - ifUnmodifiedSince, - action3, - breakPeriod - ], - isXML: true, - serializer: xmlSerializer$4 -}; -const changeLeaseOperationSpec$1 = { - path: "/{containerName}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: ContainerChangeLeaseHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerChangeLeaseExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - restype2, - comp10 - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - ifModifiedSince, - ifUnmodifiedSince, - leaseId1, - action4, - proposedLeaseId1 - ], - isXML: true, - serializer: xmlSerializer$4 -}; -const listBlobFlatSegmentOperationSpec = { - path: "/{containerName}", - httpMethod: "GET", - responses: { - 200: { - bodyMapper: ListBlobsFlatSegmentResponse, - headersMapper: ContainerListBlobFlatSegmentHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerListBlobFlatSegmentExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - comp2, - prefix, - marker, - maxPageSize, - restype2, - include1 - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1 - ], - isXML: true, - serializer: xmlSerializer$4 -}; -const listBlobHierarchySegmentOperationSpec = { - path: "/{containerName}", - httpMethod: "GET", - responses: { - 200: { - bodyMapper: ListBlobsHierarchySegmentResponse, - headersMapper: ContainerListBlobHierarchySegmentHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerListBlobHierarchySegmentExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - comp2, - prefix, - marker, - maxPageSize, - restype2, - include1, - delimiter - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1 - ], - isXML: true, - serializer: xmlSerializer$4 -}; -const getAccountInfoOperationSpec$1 = { - path: "/{containerName}", - httpMethod: "GET", - responses: { - 200: { - headersMapper: ContainerGetAccountInfoHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: ContainerGetAccountInfoExceptionHeaders + try { + const { socket, statusCode } = await this[kClient].connect({ + origin, + port, + path: requestedPath, + signal: opts.signal, + headers: { + ...this[kProxyHeaders], + host: opts.host + }, + servername: this[kProxyTls]?.servername || proxyHostname + }) + if (statusCode !== 200) { + socket.on('error', noop).destroy() + callback(new RequestAbortedError(`Proxy response (${statusCode}) !== 200 when HTTP Tunneling`)) + } + if (opts.protocol !== 'https:') { + callback(null, socket) + return + } + let servername + if (this[kRequestTls]) { + servername = this[kRequestTls].servername + } else { + servername = opts.servername + } + this[kConnectEndpoint]({ ...opts, servername, httpSocket: socket }, callback) + } catch (err) { + if (err.code === 'ERR_TLS_CERT_ALTNAME_INVALID') { + // Throw a custom error to avoid loop in client.js#connect + callback(new SecureProxyConnectionError(err)) + } else { + callback(err) + } } - }, - queryParameters: [comp, restype1], - urlParameters: [url], - headerParameters: [version, accept1], - isXML: true, - serializer: xmlSerializer$4 -}; + } + }) + } -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ -/** Class representing a Blob. */ -class Blob$1 { - /** - * Initialize a new instance of the class Blob class. - * @param client Reference to the service client - */ - constructor(client) { - this.client = client; + dispatch (opts, handler) { + const headers = buildHeaders(opts.headers) + throwIfProxyAuthIsSent(headers) + + if (headers && !('host' in headers) && !('Host' in headers)) { + const { host } = new URL(opts.origin) + headers.host = host } - /** - * The Download operation reads or downloads a blob from the system, including its metadata and - * properties. You can also call Download to read a snapshot. - * @param options The options parameters. - */ - download(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, downloadOperationSpec); + + return this[kAgent].dispatch( + { + ...opts, + headers + }, + handler + ) + } + + /** + * @param {import('../types/proxy-agent').ProxyAgent.Options | string | URL} opts + * @returns {URL} + */ + #getUrl (opts) { + if (typeof opts === 'string') { + return new URL(opts) + } else if (opts instanceof URL) { + return opts + } else { + return new URL(opts.uri) } - /** - * The Get Properties operation returns all user-defined metadata, standard HTTP properties, and system - * properties for the blob. It does not return the content of the blob. - * @param options The options parameters. - */ - getProperties(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, getPropertiesOperationSpec); + } + + async [kClose] () { + await this[kAgent].close() + await this[kClient].close() + } + + async [kDestroy] () { + await this[kAgent].destroy() + await this[kClient].destroy() + } +} + +/** + * @param {string[] | Record} headers + * @returns {Record} + */ +function buildHeaders (headers) { + // When using undici.fetch, the headers list is stored + // as an array. + if (Array.isArray(headers)) { + /** @type {Record} */ + const headersPair = {} + + for (let i = 0; i < headers.length; i += 2) { + headersPair[headers[i]] = headers[i + 1] } - /** - * If the storage account's soft delete feature is disabled then, when a blob is deleted, it is - * permanently removed from the storage account. If the storage account's soft delete feature is - * enabled, then, when a blob is deleted, it is marked for deletion and becomes inaccessible - * immediately. However, the blob service retains the blob or snapshot for the number of days specified - * by the DeleteRetentionPolicy section of [Storage service properties] - * (Set-Blob-Service-Properties.md). After the specified number of days has passed, the blob's data is - * permanently removed from the storage account. Note that you continue to be charged for the - * soft-deleted blob's storage until it is permanently removed. Use the List Blobs API and specify the - * "include=deleted" query parameter to discover which blobs and snapshots have been soft deleted. You - * can then use the Undelete Blob API to restore a soft-deleted blob. All other operations on a - * soft-deleted blob or snapshot causes the service to return an HTTP status code of 404 - * (ResourceNotFound). - * @param options The options parameters. - */ - delete(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, deleteOperationSpec); + + return headersPair + } + + return headers +} + +/** + * @param {Record} headers + * + * Previous versions of ProxyAgent suggests the Proxy-Authorization in request headers + * Nevertheless, it was changed and to avoid a security vulnerability by end users + * this check was created. + * It should be removed in the next major version for performance reasons + */ +function throwIfProxyAuthIsSent (headers) { + const existProxyAuth = headers && Object.keys(headers) + .find((key) => key.toLowerCase() === 'proxy-authorization') + if (existProxyAuth) { + throw new InvalidArgumentError('Proxy-Authorization should be sent in ProxyAgent constructor') + } +} + +module.exports = ProxyAgent + + +/***/ }), + +/***/ 94411: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const Dispatcher = __nccwpck_require__(87781) +const RetryHandler = __nccwpck_require__(86242) + +class RetryAgent extends Dispatcher { + #agent = null + #options = null + constructor (agent, options = {}) { + super(options) + this.#agent = agent + this.#options = options + } + + dispatch (opts, handler) { + const retry = new RetryHandler({ + ...opts, + retryOptions: this.#options + }, { + dispatch: this.#agent.dispatch.bind(this.#agent), + handler + }) + return this.#agent.dispatch(opts, retry) + } + + close () { + return this.#agent.close() + } + + destroy () { + return this.#agent.destroy() + } +} + +module.exports = RetryAgent + + +/***/ }), + +/***/ 21892: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +// We include a version number for the Dispatcher API. In case of breaking changes, +// this version number must be increased to avoid conflicts. +const globalDispatcher = Symbol.for('undici.globalDispatcher.1') +const { InvalidArgumentError } = __nccwpck_require__(48045) +const Agent = __nccwpck_require__(71208) + +if (getGlobalDispatcher() === undefined) { + setGlobalDispatcher(new Agent()) +} + +function setGlobalDispatcher (agent) { + if (!agent || typeof agent.dispatch !== 'function') { + throw new InvalidArgumentError('Argument agent must implement Agent') + } + Object.defineProperty(globalThis, globalDispatcher, { + value: agent, + writable: true, + enumerable: false, + configurable: false + }) +} + +function getGlobalDispatcher () { + return globalThis[globalDispatcher] +} + +module.exports = { + setGlobalDispatcher, + getGlobalDispatcher +} + + +/***/ }), + +/***/ 4117: +/***/ ((module) => { + +"use strict"; + + +module.exports = class DecoratorHandler { + #handler + + constructor (handler) { + if (typeof handler !== 'object' || handler === null) { + throw new TypeError('handler must be an object') } - /** - * Undelete a blob that was previously soft deleted - * @param options The options parameters. - */ - undelete(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, undeleteOperationSpec); + this.#handler = handler + } + + onConnect (...args) { + return this.#handler.onConnect?.(...args) + } + + onError (...args) { + return this.#handler.onError?.(...args) + } + + onUpgrade (...args) { + return this.#handler.onUpgrade?.(...args) + } + + onResponseStarted (...args) { + return this.#handler.onResponseStarted?.(...args) + } + + onHeaders (...args) { + return this.#handler.onHeaders?.(...args) + } + + onData (...args) { + return this.#handler.onData?.(...args) + } + + onComplete (...args) { + return this.#handler.onComplete?.(...args) + } + + onBodySent (...args) { + return this.#handler.onBodySent?.(...args) + } +} + + +/***/ }), + +/***/ 30649: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const util = __nccwpck_require__(83983) +const { kBodyUsed } = __nccwpck_require__(72785) +const assert = __nccwpck_require__(98061) +const { InvalidArgumentError } = __nccwpck_require__(48045) +const EE = __nccwpck_require__(15673) + +const redirectableStatusCodes = [300, 301, 302, 303, 307, 308] + +const kBody = Symbol('body') + +class BodyAsyncIterable { + constructor (body) { + this[kBody] = body + this[kBodyUsed] = false + } + + async * [Symbol.asyncIterator] () { + assert(!this[kBodyUsed], 'disturbed') + this[kBodyUsed] = true + yield * this[kBody] + } +} + +class RedirectHandler { + constructor (dispatch, maxRedirections, opts, handler) { + if (maxRedirections != null && (!Number.isInteger(maxRedirections) || maxRedirections < 0)) { + throw new InvalidArgumentError('maxRedirections must be a positive number') } - /** - * Sets the time a blob will expire and be deleted. - * @param expiryOptions Required. Indicates mode of the expiry time - * @param options The options parameters. - */ - setExpiry(expiryOptions, options) { - const operationArguments = { - expiryOptions, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, setExpiryOperationSpec); + + util.validateHandler(handler, opts.method, opts.upgrade) + + this.dispatch = dispatch + this.location = null + this.abort = null + this.opts = { ...opts, maxRedirections: 0 } // opts must be a copy + this.maxRedirections = maxRedirections + this.handler = handler + this.history = [] + this.redirectionLimitReached = false + + if (util.isStream(this.opts.body)) { + // TODO (fix): Provide some way for the user to cache the file to e.g. /tmp + // so that it can be dispatched again? + // TODO (fix): Do we need 100-expect support to provide a way to do this properly? + if (util.bodyLength(this.opts.body) === 0) { + this.opts.body + .on('data', function () { + assert(false) + }) + } + + if (typeof this.opts.body.readableDidRead !== 'boolean') { + this.opts.body[kBodyUsed] = false + EE.prototype.on.call(this.opts.body, 'data', function () { + this[kBodyUsed] = true + }) + } + } else if (this.opts.body && typeof this.opts.body.pipeTo === 'function') { + // TODO (fix): We can't access ReadableStream internal state + // to determine whether or not it has been disturbed. This is just + // a workaround. + this.opts.body = new BodyAsyncIterable(this.opts.body) + } else if ( + this.opts.body && + typeof this.opts.body !== 'string' && + !ArrayBuffer.isView(this.opts.body) && + util.isIterable(this.opts.body) + ) { + // TODO: Should we allow re-using iterable if !this.opts.idempotent + // or through some other flag? + this.opts.body = new BodyAsyncIterable(this.opts.body) } - /** - * The Set HTTP Headers operation sets system properties on the blob - * @param options The options parameters. - */ - setHttpHeaders(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, setHttpHeadersOperationSpec); + } + + onConnect (abort) { + this.abort = abort + this.handler.onConnect(abort, { history: this.history }) + } + + onUpgrade (statusCode, headers, socket) { + this.handler.onUpgrade(statusCode, headers, socket) + } + + onError (error) { + this.handler.onError(error) + } + + onHeaders (statusCode, headers, resume, statusText) { + this.location = this.history.length >= this.maxRedirections || util.isDisturbed(this.opts.body) + ? null + : parseLocation(statusCode, headers) + + if (this.opts.throwOnMaxRedirect && this.history.length >= this.maxRedirections) { + if (this.request) { + this.request.abort(new Error('max redirects')) + } + + this.redirectionLimitReached = true + this.abort(new Error('max redirects')) + return } - /** - * The Set Immutability Policy operation sets the immutability policy on the blob - * @param options The options parameters. - */ - setImmutabilityPolicy(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, setImmutabilityPolicyOperationSpec); + + if (this.opts.origin) { + this.history.push(new URL(this.opts.path, this.opts.origin)) } - /** - * The Delete Immutability Policy operation deletes the immutability policy on the blob - * @param options The options parameters. - */ - deleteImmutabilityPolicy(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, deleteImmutabilityPolicyOperationSpec); + + if (!this.location) { + return this.handler.onHeaders(statusCode, headers, resume, statusText) } - /** - * The Set Legal Hold operation sets a legal hold on the blob. - * @param legalHold Specified if a legal hold should be set on the blob. - * @param options The options parameters. - */ - setLegalHold(legalHold, options) { - const operationArguments = { - legalHold, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, setLegalHoldOperationSpec); + + const { origin, pathname, search } = util.parseURL(new URL(this.location, this.opts.origin && new URL(this.opts.path, this.opts.origin))) + const path = search ? `${pathname}${search}` : pathname + + // Remove headers referring to the original URL. + // By default it is Host only, unless it's a 303 (see below), which removes also all Content-* headers. + // https://tools.ietf.org/html/rfc7231#section-6.4 + this.opts.headers = cleanRequestHeaders(this.opts.headers, statusCode === 303, this.opts.origin !== origin) + this.opts.path = path + this.opts.origin = origin + this.opts.maxRedirections = 0 + this.opts.query = null + + // https://tools.ietf.org/html/rfc7231#section-6.4.4 + // In case of HTTP 303, always replace method to be either HEAD or GET + if (statusCode === 303 && this.opts.method !== 'HEAD') { + this.opts.method = 'GET' + this.opts.body = null } - /** - * The Set Blob Metadata operation sets user-defined metadata for the specified blob as one or more - * name-value pairs - * @param options The options parameters. - */ - setMetadata(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, setMetadataOperationSpec); + } + + onData (chunk) { + if (this.location) { + /* + https://tools.ietf.org/html/rfc7231#section-6.4 + + TLDR: undici always ignores 3xx response bodies. + + Redirection is used to serve the requested resource from another URL, so it is assumes that + no body is generated (and thus can be ignored). Even though generating a body is not prohibited. + + For status 301, 302, 303, 307 and 308 (the latter from RFC 7238), the specs mention that the body usually + (which means it's optional and not mandated) contain just an hyperlink to the value of + the Location response header, so the body can be ignored safely. + + For status 300, which is "Multiple Choices", the spec mentions both generating a Location + response header AND a response body with the other possible location to follow. + Since the spec explicitly chooses not to specify a format for such body and leave it to + servers and browsers implementors, we ignore the body as there is no specified way to eventually parse it. + */ + } else { + return this.handler.onData(chunk) } - /** - * [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete - * operations - * @param options The options parameters. - */ - acquireLease(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, acquireLeaseOperationSpec); + } + + onComplete (trailers) { + if (this.location) { + /* + https://tools.ietf.org/html/rfc7231#section-6.4 + + TLDR: undici always ignores 3xx response trailers as they are not expected in case of redirections + and neither are useful if present. + + See comment on onData method above for more detailed information. + */ + + this.location = null + this.abort = null + + this.dispatch(this.opts, this) + } else { + this.handler.onComplete(trailers) } - /** - * [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete - * operations - * @param leaseId Specifies the current lease ID on the resource. - * @param options The options parameters. - */ - releaseLease(leaseId, options) { - const operationArguments = { - leaseId, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, releaseLeaseOperationSpec); + } + + onBodySent (chunk) { + if (this.handler.onBodySent) { + this.handler.onBodySent(chunk) } - /** - * [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete - * operations - * @param leaseId Specifies the current lease ID on the resource. - * @param options The options parameters. - */ - renewLease(leaseId, options) { - const operationArguments = { - leaseId, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, renewLeaseOperationSpec); + } +} + +function parseLocation (statusCode, headers) { + if (redirectableStatusCodes.indexOf(statusCode) === -1) { + return null + } + + for (let i = 0; i < headers.length; i += 2) { + if (headers[i].length === 8 && util.headerNameToString(headers[i]) === 'location') { + return headers[i + 1] } - /** - * [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete - * operations - * @param leaseId Specifies the current lease ID on the resource. - * @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400 - * (Invalid request) if the proposed lease ID is not in the correct format. See Guid Constructor - * (String) for a list of valid GUID string formats. - * @param options The options parameters. - */ - changeLease(leaseId, proposedLeaseId, options) { - const operationArguments = { - leaseId, - proposedLeaseId, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, changeLeaseOperationSpec); + } +} + +// https://tools.ietf.org/html/rfc7231#section-6.4.4 +function shouldRemoveHeader (header, removeContent, unknownOrigin) { + if (header.length === 4) { + return util.headerNameToString(header) === 'host' + } + if (removeContent && util.headerNameToString(header).startsWith('content-')) { + return true + } + if (unknownOrigin && (header.length === 13 || header.length === 6 || header.length === 19)) { + const name = util.headerNameToString(header) + return name === 'authorization' || name === 'cookie' || name === 'proxy-authorization' + } + return false +} + +// https://tools.ietf.org/html/rfc7231#section-6.4 +function cleanRequestHeaders (headers, removeContent, unknownOrigin) { + const ret = [] + if (Array.isArray(headers)) { + for (let i = 0; i < headers.length; i += 2) { + if (!shouldRemoveHeader(headers[i], removeContent, unknownOrigin)) { + ret.push(headers[i], headers[i + 1]) + } } - /** - * [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete - * operations - * @param options The options parameters. - */ - breakLease(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, breakLeaseOperationSpec); + } else if (headers && typeof headers === 'object') { + for (const key of Object.keys(headers)) { + if (!shouldRemoveHeader(key, removeContent, unknownOrigin)) { + ret.push(key, headers[key]) + } } - /** - * The Create Snapshot operation creates a read-only snapshot of a blob - * @param options The options parameters. - */ - createSnapshot(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, createSnapshotOperationSpec); + } else { + assert(headers == null, 'headers must be an object or an array') + } + return ret +} + +module.exports = RedirectHandler + + +/***/ }), + +/***/ 86242: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + +const assert = __nccwpck_require__(98061) + +const { kRetryHandlerDefaultRetry } = __nccwpck_require__(72785) +const { RequestRetryError } = __nccwpck_require__(48045) +const { + isDisturbed, + parseHeaders, + parseRangeHeader, + wrapRequestBody +} = __nccwpck_require__(83983) + +function calculateRetryAfterHeader (retryAfter) { + const current = Date.now() + return new Date(retryAfter).getTime() - current +} + +class RetryHandler { + constructor (opts, handlers) { + const { retryOptions, ...dispatchOpts } = opts + const { + // Retry scoped + retry: retryFn, + maxRetries, + maxTimeout, + minTimeout, + timeoutFactor, + // Response scoped + methods, + errorCodes, + retryAfter, + statusCodes + } = retryOptions ?? {} + + this.dispatch = handlers.dispatch + this.handler = handlers.handler + this.opts = { ...dispatchOpts, body: wrapRequestBody(opts.body) } + this.abort = null + this.aborted = false + this.retryOpts = { + retry: retryFn ?? RetryHandler[kRetryHandlerDefaultRetry], + retryAfter: retryAfter ?? true, + maxTimeout: maxTimeout ?? 30 * 1000, // 30s, + minTimeout: minTimeout ?? 500, // .5s + timeoutFactor: timeoutFactor ?? 2, + maxRetries: maxRetries ?? 5, + // What errors we should retry + methods: methods ?? ['GET', 'HEAD', 'OPTIONS', 'PUT', 'DELETE', 'TRACE'], + // Indicates which errors to retry + statusCodes: statusCodes ?? [500, 502, 503, 504, 429], + // List of errors to retry + errorCodes: errorCodes ?? [ + 'ECONNRESET', + 'ECONNREFUSED', + 'ENOTFOUND', + 'ENETDOWN', + 'ENETUNREACH', + 'EHOSTDOWN', + 'EHOSTUNREACH', + 'EPIPE', + 'UND_ERR_SOCKET' + ] + } + + this.retryCount = 0 + this.retryCountCheckpoint = 0 + this.start = 0 + this.end = null + this.etag = null + this.resume = null + + // Handle possible onConnect duplication + this.handler.onConnect(reason => { + this.aborted = true + if (this.abort) { + this.abort(reason) + } else { + this.reason = reason + } + }) + } + + onRequestSent () { + if (this.handler.onRequestSent) { + this.handler.onRequestSent() } - /** - * The Start Copy From URL operation copies a blob or an internet resource to a new blob. - * @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to - * 2 KB in length that specifies a page blob snapshot. The value should be URL-encoded as it would - * appear in a request URI. The source blob must either be public or must be authenticated via a shared - * access signature. - * @param options The options parameters. - */ - startCopyFromURL(copySource, options) { - const operationArguments = { - copySource, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, startCopyFromURLOperationSpec); + } + + onUpgrade (statusCode, headers, socket) { + if (this.handler.onUpgrade) { + this.handler.onUpgrade(statusCode, headers, socket) } - /** - * The Copy From URL operation copies a blob or an internet resource to a new blob. It will not return - * a response until the copy is complete. - * @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to - * 2 KB in length that specifies a page blob snapshot. The value should be URL-encoded as it would - * appear in a request URI. The source blob must either be public or must be authenticated via a shared - * access signature. - * @param options The options parameters. - */ - copyFromURL(copySource, options) { - const operationArguments = { - copySource, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, copyFromURLOperationSpec); + } + + onConnect (abort) { + if (this.aborted) { + abort(this.reason) + } else { + this.abort = abort } - /** - * The Abort Copy From URL operation aborts a pending Copy From URL operation, and leaves a destination - * blob with zero length and full metadata. - * @param copyId The copy identifier provided in the x-ms-copy-id header of the original Copy Blob - * operation. - * @param options The options parameters. - */ - abortCopyFromURL(copyId, options) { - const operationArguments = { - copyId, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, abortCopyFromURLOperationSpec); + } + + onBodySent (chunk) { + if (this.handler.onBodySent) return this.handler.onBodySent(chunk) + } + + static [kRetryHandlerDefaultRetry] (err, { state, opts }, cb) { + const { statusCode, code, headers } = err + const { method, retryOptions } = opts + const { + maxRetries, + minTimeout, + maxTimeout, + timeoutFactor, + statusCodes, + errorCodes, + methods + } = retryOptions + const { counter } = state + + // Any code that is not a Undici's originated and allowed to retry + if (code && code !== 'UND_ERR_REQ_RETRY' && !errorCodes.includes(code)) { + cb(err) + return } - /** - * The Set Tier operation sets the tier on a blob. The operation is allowed on a page blob in a premium - * storage account and on a block blob in a blob storage account (locally redundant storage only). A - * premium page blob's tier determines the allowed size, IOPS, and bandwidth of the blob. A block - * blob's tier determines Hot/Cool/Archive storage type. This operation does not update the blob's - * ETag. - * @param tier Indicates the tier to be set on the blob. - * @param options The options parameters. - */ - setTier(tier, options) { - const operationArguments = { - tier, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, setTierOperationSpec); + + // If a set of method are provided and the current method is not in the list + if (Array.isArray(methods) && !methods.includes(method)) { + cb(err) + return } - /** - * Returns the sku name and account kind - * @param options The options parameters. - */ - getAccountInfo(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, getAccountInfoOperationSpec); + + // If a set of status code are provided and the current status code is not in the list + if ( + statusCode != null && + Array.isArray(statusCodes) && + !statusCodes.includes(statusCode) + ) { + cb(err) + return } - /** - * The Query operation enables users to select/project on blob data by providing simple query - * expressions. - * @param options The options parameters. - */ - query(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, queryOperationSpec); + + // If we reached the max number of retries + if (counter > maxRetries) { + cb(err) + return } - /** - * The Get Tags operation enables users to get the tags associated with a blob. - * @param options The options parameters. - */ - getTags(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, getTagsOperationSpec); + + let retryAfterHeader = headers?.['retry-after'] + if (retryAfterHeader) { + retryAfterHeader = Number(retryAfterHeader) + retryAfterHeader = Number.isNaN(retryAfterHeader) + ? calculateRetryAfterHeader(retryAfterHeader) + : retryAfterHeader * 1e3 // Retry-After is in seconds } - /** - * The Set Tags operation enables users to set tags on a blob. - * @param options The options parameters. - */ - setTags(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, setTagsOperationSpec); + + const retryTimeout = + retryAfterHeader > 0 + ? Math.min(retryAfterHeader, maxTimeout) + : Math.min(minTimeout * timeoutFactor ** (counter - 1), maxTimeout) + + setTimeout(() => cb(null), retryTimeout) + } + + onHeaders (statusCode, rawHeaders, resume, statusMessage) { + const headers = parseHeaders(rawHeaders) + + this.retryCount += 1 + + if (statusCode >= 300) { + if (this.retryOpts.statusCodes.includes(statusCode) === false) { + return this.handler.onHeaders( + statusCode, + rawHeaders, + resume, + statusMessage + ) + } else { + this.abort( + new RequestRetryError('Request failed', statusCode, { + headers, + data: { + count: this.retryCount + } + }) + ) + return false + } } -} -// Operation Specifications -const xmlSerializer$3 = new coreHttp__namespace.Serializer(Mappers, /* isXml */ true); -const downloadOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "GET", - responses: { - 200: { - bodyMapper: { - type: { name: "Stream" }, - serializedName: "parsedResponse" - }, - headersMapper: BlobDownloadHeaders - }, - 206: { - bodyMapper: { - type: { name: "Stream" }, - serializedName: "parsedResponse" - }, - headersMapper: BlobDownloadHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobDownloadExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - snapshot, - versionId - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - range, - rangeGetContentMD5, - rangeGetContentCRC64, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const getPropertiesOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "HEAD", - responses: { - 200: { - headersMapper: BlobGetPropertiesHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobGetPropertiesExceptionHeaders + + // Checkpoint for resume from where we left it + if (this.resume != null) { + this.resume = null + + // Only Partial Content 206 supposed to provide Content-Range, + // any other status code that partially consumed the payload + // should not be retry because it would result in downstream + // wrongly concatanete multiple responses. + if (statusCode !== 206 && (this.start > 0 || statusCode !== 200)) { + this.abort( + new RequestRetryError('server does not support the range header and the payload was partially consumed', statusCode, { + headers, + data: { count: this.retryCount } + }) + ) + return false + } + + const contentRange = parseRangeHeader(headers['content-range']) + // If no content range + if (!contentRange) { + this.abort( + new RequestRetryError('Content-Range mismatch', statusCode, { + headers, + data: { count: this.retryCount } + }) + ) + return false + } + + // Let's start with a weak etag check + if (this.etag != null && this.etag !== headers.etag) { + this.abort( + new RequestRetryError('ETag mismatch', statusCode, { + headers, + data: { count: this.retryCount } + }) + ) + return false + } + + const { start, size, end = size - 1 } = contentRange + + assert(this.start === start, 'content-range mismatch') + assert(this.end == null || this.end === end, 'content-range mismatch') + + this.resume = resume + return true + } + + if (this.end == null) { + if (statusCode === 206) { + // First time we receive 206 + const range = parseRangeHeader(headers['content-range']) + + if (range == null) { + return this.handler.onHeaders( + statusCode, + rawHeaders, + resume, + statusMessage + ) } - }, - queryParameters: [ - timeoutInSeconds, - snapshot, - versionId - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const deleteOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "DELETE", - responses: { - 202: { - headersMapper: BlobDeleteHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobDeleteExceptionHeaders + + const { start, size, end = size - 1 } = range + assert( + start != null && Number.isFinite(start), + 'content-range mismatch' + ) + assert(end != null && Number.isFinite(end), 'invalid content-length') + + this.start = start + this.end = end + } + + // We make our best to checkpoint the body for further range headers + if (this.end == null) { + const contentLength = headers['content-length'] + this.end = contentLength != null ? Number(contentLength) - 1 : null + } + + assert(Number.isFinite(this.start)) + assert( + this.end == null || Number.isFinite(this.end), + 'invalid content-length' + ) + + this.resume = resume + this.etag = headers.etag != null ? headers.etag : null + + // Weak etags are not useful for comparison nor cache + // for instance not safe to assume if the response is byte-per-byte + // equal + if (this.etag != null && this.etag.startsWith('W/')) { + this.etag = null + } + + return this.handler.onHeaders( + statusCode, + rawHeaders, + resume, + statusMessage + ) + } + + const err = new RequestRetryError('Request failed', statusCode, { + headers, + data: { count: this.retryCount } + }) + + this.abort(err) + + return false + } + + onData (chunk) { + this.start += chunk.length + + return this.handler.onData(chunk) + } + + onComplete (rawTrailers) { + this.retryCount = 0 + return this.handler.onComplete(rawTrailers) + } + + onError (err) { + if (this.aborted || isDisturbed(this.opts.body)) { + return this.handler.onError(err) + } + + // We reconcile in case of a mix between network errors + // and server error response + if (this.retryCount - this.retryCountCheckpoint > 0) { + // We count the difference between the last checkpoint and the current retry count + this.retryCount = + this.retryCountCheckpoint + + (this.retryCount - this.retryCountCheckpoint) + } else { + this.retryCount += 1 + } + + this.retryOpts.retry( + err, + { + state: { counter: this.retryCount }, + opts: { retryOptions: this.retryOpts, ...this.opts } + }, + onRetry.bind(this) + ) + + function onRetry (err) { + if (err != null || this.aborted || isDisturbed(this.opts.body)) { + return this.handler.onError(err) + } + + if (this.start !== 0) { + const headers = { range: `bytes=${this.start}-${this.end ?? ''}` } + + // Weak etag check - weak etags will make comparison algorithms never match + if (this.etag != null) { + headers['if-match'] = this.etag } - }, - queryParameters: [ - timeoutInSeconds, - snapshot, - versionId, - blobDeleteType - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - ifMatch, - ifNoneMatch, - ifTags, - deleteSnapshots - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const undeleteOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: BlobUndeleteHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobUndeleteExceptionHeaders + + this.opts = { + ...this.opts, + headers: { + ...this.opts.headers, + ...headers + } } - }, - queryParameters: [timeoutInSeconds, comp8], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1 - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const setExpiryOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: BlobSetExpiryHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobSetExpiryExceptionHeaders + } + + try { + this.retryCountCheckpoint = this.retryCount + this.dispatch(this.opts, this) + } catch (err) { + this.handler.onError(err) + } + } + } +} + +module.exports = RetryHandler + + +/***/ }), + +/***/ 97334: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + +const { isIP } = __nccwpck_require__(87503) +const { lookup } = __nccwpck_require__(30604) +const DecoratorHandler = __nccwpck_require__(4117) +const { InvalidArgumentError, InformationalError } = __nccwpck_require__(48045) +const maxInt = Math.pow(2, 31) - 1 + +class DNSInstance { + #maxTTL = 0 + #maxItems = 0 + #records = new Map() + dualStack = true + affinity = null + lookup = null + pick = null + + constructor (opts) { + this.#maxTTL = opts.maxTTL + this.#maxItems = opts.maxItems + this.dualStack = opts.dualStack + this.affinity = opts.affinity + this.lookup = opts.lookup ?? this.#defaultLookup + this.pick = opts.pick ?? this.#defaultPick + } + + get full () { + return this.#records.size === this.#maxItems + } + + runLookup (origin, opts, cb) { + const ips = this.#records.get(origin.hostname) + + // If full, we just return the origin + if (ips == null && this.full) { + cb(null, origin.origin) + return + } + + const newOpts = { + affinity: this.affinity, + dualStack: this.dualStack, + lookup: this.lookup, + pick: this.pick, + ...opts.dns, + maxTTL: this.#maxTTL, + maxItems: this.#maxItems + } + + // If no IPs we lookup + if (ips == null) { + this.lookup(origin, newOpts, (err, addresses) => { + if (err || addresses == null || addresses.length === 0) { + cb(err ?? new InformationalError('No DNS entries found')) + return } - }, - queryParameters: [timeoutInSeconds, comp11], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - expiryOptions, - expiresOn - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const setHttpHeadersOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: BlobSetHttpHeadersHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobSetHttpHeadersExceptionHeaders + + this.setRecords(origin, addresses) + const records = this.#records.get(origin.hostname) + + const ip = this.pick( + origin, + records, + newOpts.affinity + ) + + let port + if (typeof ip.port === 'number') { + port = `:${ip.port}` + } else if (origin.port !== '') { + port = `:${origin.port}` + } else { + port = '' } - }, - queryParameters: [comp, timeoutInSeconds], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - ifMatch, - ifNoneMatch, - ifTags, - blobCacheControl, - blobContentType, - blobContentMD5, - blobContentEncoding, - blobContentLanguage, - blobContentDisposition - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const setImmutabilityPolicyOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: BlobSetImmutabilityPolicyHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobSetImmutabilityPolicyExceptionHeaders + + cb( + null, + `${origin.protocol}//${ + ip.family === 6 ? `[${ip.address}]` : ip.address + }${port}` + ) + }) + } else { + // If there's IPs we pick + const ip = this.pick( + origin, + ips, + newOpts.affinity + ) + + // If no IPs we lookup - deleting old records + if (ip == null) { + this.#records.delete(origin.hostname) + this.runLookup(origin, opts, cb) + return + } + + let port + if (typeof ip.port === 'number') { + port = `:${ip.port}` + } else if (origin.port !== '') { + port = `:${origin.port}` + } else { + port = '' + } + + cb( + null, + `${origin.protocol}//${ + ip.family === 6 ? `[${ip.address}]` : ip.address + }${port}` + ) + } + } + + #defaultLookup (origin, opts, cb) { + lookup( + origin.hostname, + { + all: true, + family: this.dualStack === false ? this.affinity : 0, + order: 'ipv4first' + }, + (err, addresses) => { + if (err) { + return cb(err) } - }, - queryParameters: [timeoutInSeconds, comp12], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - ifUnmodifiedSince, - immutabilityPolicyExpiry, - immutabilityPolicyMode - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const deleteImmutabilityPolicyOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "DELETE", - responses: { - 200: { - headersMapper: BlobDeleteImmutabilityPolicyHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobDeleteImmutabilityPolicyExceptionHeaders + + const results = new Map() + + for (const addr of addresses) { + // On linux we found duplicates, we attempt to remove them with + // the latest record + results.set(`${addr.address}:${addr.family}`, addr) } - }, - queryParameters: [timeoutInSeconds, comp12], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1 - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const setLegalHoldOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: BlobSetLegalHoldHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobSetLegalHoldExceptionHeaders + + cb(null, results.values()) + } + ) + } + + #defaultPick (origin, hostnameRecords, affinity) { + let ip = null + const { records, offset } = hostnameRecords + + let family + if (this.dualStack) { + if (affinity == null) { + // Balance between ip families + if (offset == null || offset === maxInt) { + hostnameRecords.offset = 0 + affinity = 4 + } else { + hostnameRecords.offset++ + affinity = (hostnameRecords.offset & 1) === 1 ? 6 : 4 } - }, - queryParameters: [timeoutInSeconds, comp13], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - legalHold - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const setMetadataOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: BlobSetMetadataHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobSetMetadataExceptionHeaders + } + + if (records[affinity] != null && records[affinity].ips.length > 0) { + family = records[affinity] + } else { + family = records[affinity === 4 ? 6 : 4] + } + } else { + family = records[affinity] + } + + // If no IPs we return null + if (family == null || family.ips.length === 0) { + return ip + } + + if (family.offset == null || family.offset === maxInt) { + family.offset = 0 + } else { + family.offset++ + } + + const position = family.offset % family.ips.length + ip = family.ips[position] ?? null + + if (ip == null) { + return ip + } + + if (Date.now() - ip.timestamp > ip.ttl) { // record TTL is already in ms + // We delete expired records + // It is possible that they have different TTL, so we manage them individually + family.ips.splice(position, 1) + return this.pick(origin, hostnameRecords, affinity) + } + + return ip + } + + setRecords (origin, addresses) { + const timestamp = Date.now() + const records = { records: { 4: null, 6: null } } + for (const record of addresses) { + record.timestamp = timestamp + if (typeof record.ttl === 'number') { + // The record TTL is expected to be in ms + record.ttl = Math.min(record.ttl, this.#maxTTL) + } else { + record.ttl = this.#maxTTL + } + + const familyRecords = records.records[record.family] ?? { ips: [] } + + familyRecords.ips.push(record) + records.records[record.family] = familyRecords + } + + this.#records.set(origin.hostname, records) + } + + getHandler (meta, opts) { + return new DNSDispatchHandler(this, meta, opts) + } +} + +class DNSDispatchHandler extends DecoratorHandler { + #state = null + #opts = null + #dispatch = null + #handler = null + #origin = null + + constructor (state, { origin, handler, dispatch }, opts) { + super(handler) + this.#origin = origin + this.#handler = handler + this.#opts = { ...opts } + this.#state = state + this.#dispatch = dispatch + } + + onError (err) { + switch (err.code) { + case 'ETIMEDOUT': + case 'ECONNREFUSED': { + if (this.#state.dualStack) { + // We delete the record and retry + this.#state.runLookup(this.#origin, this.#opts, (err, newOrigin) => { + if (err) { + return this.#handler.onError(err) + } + + const dispatchOpts = { + ...this.#opts, + origin: newOrigin + } + + this.#dispatch(dispatchOpts, this) + }) + + // if dual-stack disabled, we error out + return } - }, - queryParameters: [timeoutInSeconds, comp6], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - metadata, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags, - encryptionScope - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const acquireLeaseOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: BlobAcquireLeaseHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobAcquireLeaseExceptionHeaders + + this.#handler.onError(err) + return + } + case 'ENOTFOUND': + this.#state.deleteRecord(this.#origin) + // eslint-disable-next-line no-fallthrough + default: + this.#handler.onError(err) + break + } + } +} + +module.exports = interceptorOpts => { + if ( + interceptorOpts?.maxTTL != null && + (typeof interceptorOpts?.maxTTL !== 'number' || interceptorOpts?.maxTTL < 0) + ) { + throw new InvalidArgumentError('Invalid maxTTL. Must be a positive number') + } + + if ( + interceptorOpts?.maxItems != null && + (typeof interceptorOpts?.maxItems !== 'number' || + interceptorOpts?.maxItems < 1) + ) { + throw new InvalidArgumentError( + 'Invalid maxItems. Must be a positive number and greater than zero' + ) + } + + if ( + interceptorOpts?.affinity != null && + interceptorOpts?.affinity !== 4 && + interceptorOpts?.affinity !== 6 + ) { + throw new InvalidArgumentError('Invalid affinity. Must be either 4 or 6') + } + + if ( + interceptorOpts?.dualStack != null && + typeof interceptorOpts?.dualStack !== 'boolean' + ) { + throw new InvalidArgumentError('Invalid dualStack. Must be a boolean') + } + + if ( + interceptorOpts?.lookup != null && + typeof interceptorOpts?.lookup !== 'function' + ) { + throw new InvalidArgumentError('Invalid lookup. Must be a function') + } + + if ( + interceptorOpts?.pick != null && + typeof interceptorOpts?.pick !== 'function' + ) { + throw new InvalidArgumentError('Invalid pick. Must be a function') + } + + const dualStack = interceptorOpts?.dualStack ?? true + let affinity + if (dualStack) { + affinity = interceptorOpts?.affinity ?? null + } else { + affinity = interceptorOpts?.affinity ?? 4 + } + + const opts = { + maxTTL: interceptorOpts?.maxTTL ?? 10e3, // Expressed in ms + lookup: interceptorOpts?.lookup ?? null, + pick: interceptorOpts?.pick ?? null, + dualStack, + affinity, + maxItems: interceptorOpts?.maxItems ?? Infinity + } + + const instance = new DNSInstance(opts) + + return dispatch => { + return function dnsInterceptor (origDispatchOpts, handler) { + const origin = + origDispatchOpts.origin.constructor === URL + ? origDispatchOpts.origin + : new URL(origDispatchOpts.origin) + + if (isIP(origin.hostname) !== 0) { + return dispatch(origDispatchOpts, handler) + } + + instance.runLookup(origin, origDispatchOpts, (err, newOrigin) => { + if (err) { + return handler.onError(err) } - }, - queryParameters: [timeoutInSeconds, comp10], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - ifModifiedSince, - ifUnmodifiedSince, - action, - duration, - proposedLeaseId, - ifMatch, - ifNoneMatch, - ifTags - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const releaseLeaseOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: BlobReleaseLeaseHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobReleaseLeaseExceptionHeaders + + let dispatchOpts = null + dispatchOpts = { + ...origDispatchOpts, + servername: origin.hostname, // For SNI on TLS + origin: newOrigin, + headers: { + host: origin.hostname, + ...origDispatchOpts.headers + } } - }, - queryParameters: [timeoutInSeconds, comp10], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - ifModifiedSince, - ifUnmodifiedSince, - action1, - leaseId1, - ifMatch, - ifNoneMatch, - ifTags - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const renewLeaseOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: BlobRenewLeaseHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobRenewLeaseExceptionHeaders - } - }, - queryParameters: [timeoutInSeconds, comp10], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - ifModifiedSince, - ifUnmodifiedSince, - leaseId1, - action2, - ifMatch, - ifNoneMatch, - ifTags - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const changeLeaseOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: BlobChangeLeaseHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobChangeLeaseExceptionHeaders - } - }, - queryParameters: [timeoutInSeconds, comp10], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - ifModifiedSince, - ifUnmodifiedSince, - leaseId1, - action4, - proposedLeaseId1, - ifMatch, - ifNoneMatch, - ifTags - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const breakLeaseOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 202: { - headersMapper: BlobBreakLeaseHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobBreakLeaseExceptionHeaders - } - }, - queryParameters: [timeoutInSeconds, comp10], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - ifModifiedSince, - ifUnmodifiedSince, - action3, - breakPeriod, - ifMatch, - ifNoneMatch, - ifTags - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const createSnapshotOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: BlobCreateSnapshotHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobCreateSnapshotExceptionHeaders - } - }, - queryParameters: [timeoutInSeconds, comp14], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - metadata, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags, - encryptionScope - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const startCopyFromURLOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 202: { - headersMapper: BlobStartCopyFromURLHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobStartCopyFromURLExceptionHeaders - } - }, - queryParameters: [timeoutInSeconds], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - metadata, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - ifMatch, - ifNoneMatch, - ifTags, - immutabilityPolicyExpiry, - immutabilityPolicyMode, - tier, - rehydratePriority, - sourceIfModifiedSince, - sourceIfUnmodifiedSince, - sourceIfMatch, - sourceIfNoneMatch, - sourceIfTags, - copySource, - blobTagsString, - sealBlob, - legalHold1 - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const copyFromURLOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 202: { - headersMapper: BlobCopyFromURLHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobCopyFromURLExceptionHeaders - } - }, - queryParameters: [timeoutInSeconds], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - metadata, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - ifMatch, - ifNoneMatch, - ifTags, - immutabilityPolicyExpiry, - immutabilityPolicyMode, - encryptionScope, - tier, - sourceIfModifiedSince, - sourceIfUnmodifiedSince, - sourceIfMatch, - sourceIfNoneMatch, - copySource, - blobTagsString, - legalHold1, - xMsRequiresSync, - sourceContentMD5, - copySourceAuthorization - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const abortCopyFromURLOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 204: { - headersMapper: BlobAbortCopyFromURLHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobAbortCopyFromURLExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - comp15, - copyId - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId, - copyActionAbortConstant - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const setTierOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: BlobSetTierHeaders - }, - 202: { - headersMapper: BlobSetTierHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobSetTierExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - snapshot, - versionId, - comp16 - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId, - ifTags, - rehydratePriority, - tier1 - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const getAccountInfoOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "GET", - responses: { - 200: { - headersMapper: BlobGetAccountInfoHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobGetAccountInfoExceptionHeaders - } - }, - queryParameters: [comp, restype1], - urlParameters: [url], - headerParameters: [version, accept1], - isXML: true, - serializer: xmlSerializer$3 -}; -const queryOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "POST", - responses: { - 200: { - bodyMapper: { - type: { name: "Stream" }, - serializedName: "parsedResponse" - }, - headersMapper: BlobQueryHeaders - }, - 206: { - bodyMapper: { - type: { name: "Stream" }, - serializedName: "parsedResponse" - }, - headersMapper: BlobQueryHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobQueryExceptionHeaders - } - }, - requestBody: queryRequest, - queryParameters: [ - timeoutInSeconds, - snapshot, - comp17 - ], - urlParameters: [url], - headerParameters: [ - contentType, - accept, - version, - requestId, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags - ], - isXML: true, - contentType: "application/xml; charset=utf-8", - mediaType: "xml", - serializer: xmlSerializer$3 -}; -const getTagsOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "GET", - responses: { - 200: { - bodyMapper: BlobTags, - headersMapper: BlobGetTagsHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobGetTagsExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - snapshot, - versionId, - comp18 - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId, - ifTags - ], - isXML: true, - serializer: xmlSerializer$3 -}; -const setTagsOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 204: { - headersMapper: BlobSetTagsHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlobSetTagsExceptionHeaders - } - }, - requestBody: tags, - queryParameters: [ - timeoutInSeconds, - versionId, - comp18 - ], - urlParameters: [url], - headerParameters: [ - contentType, - accept, - version, - requestId, - leaseId, - ifTags, - transactionalContentMD5, - transactionalContentCrc64 - ], - isXML: true, - contentType: "application/xml; charset=utf-8", - mediaType: "xml", - serializer: xmlSerializer$3 -}; -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ -/** Class representing a PageBlob. */ -class PageBlob { - /** - * Initialize a new instance of the class PageBlob class. - * @param client Reference to the service client - */ - constructor(client) { - this.client = client; + dispatch( + dispatchOpts, + instance.getHandler({ origin, dispatch, handler }, origDispatchOpts) + ) + }) + + return true } - /** - * The Create operation creates a new page blob. - * @param contentLength The length of the request. - * @param blobContentLength This header specifies the maximum size for the page blob, up to 1 TB. The - * page blob size must be aligned to a 512-byte boundary. - * @param options The options parameters. - */ - create(contentLength, blobContentLength, options) { - const operationArguments = { - contentLength, - blobContentLength, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, createOperationSpec$1); + } +} + + +/***/ }), + +/***/ 66090: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const util = __nccwpck_require__(83983) +const { InvalidArgumentError, RequestAbortedError } = __nccwpck_require__(48045) +const DecoratorHandler = __nccwpck_require__(4117) + +class DumpHandler extends DecoratorHandler { + #maxSize = 1024 * 1024 + #abort = null + #dumped = false + #aborted = false + #size = 0 + #reason = null + #handler = null + + constructor ({ maxSize }, handler) { + super(handler) + + if (maxSize != null && (!Number.isFinite(maxSize) || maxSize < 1)) { + throw new InvalidArgumentError('maxSize must be a number greater than 0') } - /** - * The Upload Pages operation writes a range of pages to a page blob - * @param contentLength The length of the request. - * @param body Initial data - * @param options The options parameters. - */ - uploadPages(contentLength, body, options) { - const operationArguments = { - contentLength, - body, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, uploadPagesOperationSpec); + + this.#maxSize = maxSize ?? this.#maxSize + this.#handler = handler + } + + onConnect (abort) { + this.#abort = abort + + this.#handler.onConnect(this.#customAbort.bind(this)) + } + + #customAbort (reason) { + this.#aborted = true + this.#reason = reason + } + + // TODO: will require adjustment after new hooks are out + onHeaders (statusCode, rawHeaders, resume, statusMessage) { + const headers = util.parseHeaders(rawHeaders) + const contentLength = headers['content-length'] + + if (contentLength != null && contentLength > this.#maxSize) { + throw new RequestAbortedError( + `Response size (${contentLength}) larger than maxSize (${ + this.#maxSize + })` + ) } - /** - * The Clear Pages operation clears a set of pages from a page blob - * @param contentLength The length of the request. - * @param options The options parameters. - */ - clearPages(contentLength, options) { - const operationArguments = { - contentLength, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, clearPagesOperationSpec); + + if (this.#aborted) { + return true } - /** - * The Upload Pages operation writes a range of pages to a page blob where the contents are read from a - * URL - * @param sourceUrl Specify a URL to the copy source. - * @param sourceRange Bytes of source data in the specified range. The length of this range should - * match the ContentLength header and x-ms-range/Range destination range header. - * @param contentLength The length of the request. - * @param range The range of bytes to which the source range would be written. The range should be 512 - * aligned and range-end is required. - * @param options The options parameters. - */ - uploadPagesFromURL(sourceUrl, sourceRange, contentLength, range, options) { - const operationArguments = { - sourceUrl, - sourceRange, - contentLength, - range, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, uploadPagesFromURLOperationSpec); + + return this.#handler.onHeaders( + statusCode, + rawHeaders, + resume, + statusMessage + ) + } + + onError (err) { + if (this.#dumped) { + return } - /** - * The Get Page Ranges operation returns the list of valid page ranges for a page blob or snapshot of a - * page blob - * @param options The options parameters. - */ - getPageRanges(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, getPageRangesOperationSpec); + + err = this.#reason ?? err + + this.#handler.onError(err) + } + + onData (chunk) { + this.#size = this.#size + chunk.length + + if (this.#size >= this.#maxSize) { + this.#dumped = true + + if (this.#aborted) { + this.#handler.onError(this.#reason) + } else { + this.#handler.onComplete([]) + } } - /** - * The Get Page Ranges Diff operation returns the list of valid page ranges for a page blob that were - * changed between target blob and previous snapshot. - * @param options The options parameters. - */ - getPageRangesDiff(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, getPageRangesDiffOperationSpec); + + return true + } + + onComplete (trailers) { + if (this.#dumped) { + return } - /** - * Resize the Blob - * @param blobContentLength This header specifies the maximum size for the page blob, up to 1 TB. The - * page blob size must be aligned to a 512-byte boundary. - * @param options The options parameters. - */ - resize(blobContentLength, options) { - const operationArguments = { - blobContentLength, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, resizeOperationSpec); + + if (this.#aborted) { + this.#handler.onError(this.reason) + return } - /** - * Update the sequence number of the blob - * @param sequenceNumberAction Required if the x-ms-blob-sequence-number header is set for the request. - * This property applies to page blobs only. This property indicates how the service should modify the - * blob's sequence number - * @param options The options parameters. - */ - updateSequenceNumber(sequenceNumberAction, options) { - const operationArguments = { - sequenceNumberAction, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, updateSequenceNumberOperationSpec); + + this.#handler.onComplete(trailers) + } +} + +function createDumpInterceptor ( + { maxSize: defaultMaxSize } = { + maxSize: 1024 * 1024 + } +) { + return dispatch => { + return function Intercept (opts, handler) { + const { dumpMaxSize = defaultMaxSize } = + opts + + const dumpHandler = new DumpHandler( + { maxSize: dumpMaxSize }, + handler + ) + + return dispatch(opts, dumpHandler) } - /** - * The Copy Incremental operation copies a snapshot of the source page blob to a destination page blob. - * The snapshot is copied such that only the differential changes between the previously copied - * snapshot are transferred to the destination. The copied snapshots are complete copies of the - * original snapshot and can be read or copied from as usual. This API is supported since REST version - * 2016-05-31. - * @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to - * 2 KB in length that specifies a page blob snapshot. The value should be URL-encoded as it would - * appear in a request URI. The source blob must either be public or must be authenticated via a shared - * access signature. - * @param options The options parameters. - */ - copyIncremental(copySource, options) { - const operationArguments = { - copySource, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, copyIncrementalOperationSpec); + } +} + +module.exports = createDumpInterceptor + + +/***/ }), + +/***/ 99099: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const RedirectHandler = __nccwpck_require__(30649) + +function createRedirectInterceptor ({ maxRedirections: defaultMaxRedirections }) { + return (dispatch) => { + return function Intercept (opts, handler) { + const { maxRedirections = defaultMaxRedirections } = opts + + if (!maxRedirections) { + return dispatch(opts, handler) + } + + const redirectHandler = new RedirectHandler(dispatch, maxRedirections, opts, handler) + opts = { ...opts, maxRedirections: 0 } // Stop sub dispatcher from also redirecting. + return dispatch(opts, redirectHandler) } + } } -// Operation Specifications -const xmlSerializer$2 = new coreHttp__namespace.Serializer(Mappers, /* isXml */ true); -const serializer$2 = new coreHttp__namespace.Serializer(Mappers, /* isXml */ false); -const createOperationSpec$1 = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: PageBlobCreateHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: PageBlobCreateExceptionHeaders - } - }, - queryParameters: [timeoutInSeconds], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - contentLength, - metadata, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags, - blobCacheControl, - blobContentType, - blobContentMD5, - blobContentEncoding, - blobContentLanguage, - blobContentDisposition, - immutabilityPolicyExpiry, - immutabilityPolicyMode, - encryptionScope, - tier, - blobTagsString, - legalHold1, - blobType, - blobContentLength, - blobSequenceNumber - ], - isXML: true, - serializer: xmlSerializer$2 -}; -const uploadPagesOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: PageBlobUploadPagesHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: PageBlobUploadPagesExceptionHeaders - } - }, - requestBody: body1, - queryParameters: [timeoutInSeconds, comp19], - urlParameters: [url], - headerParameters: [ - version, - requestId, - contentLength, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - range, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags, - encryptionScope, - transactionalContentMD5, - transactionalContentCrc64, - contentType1, - accept2, - pageWrite, - ifSequenceNumberLessThanOrEqualTo, - ifSequenceNumberLessThan, - ifSequenceNumberEqualTo - ], - mediaType: "binary", - serializer: serializer$2 -}; -const clearPagesOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: PageBlobClearPagesHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: PageBlobClearPagesExceptionHeaders - } - }, - queryParameters: [timeoutInSeconds, comp19], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - contentLength, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - range, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags, - encryptionScope, - ifSequenceNumberLessThanOrEqualTo, - ifSequenceNumberLessThan, - ifSequenceNumberEqualTo, - pageWrite1 - ], - isXML: true, - serializer: xmlSerializer$2 + +module.exports = createRedirectInterceptor + + +/***/ }), + +/***/ 87773: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + +const RedirectHandler = __nccwpck_require__(30649) + +module.exports = opts => { + const globalMaxRedirections = opts?.maxRedirections + return dispatch => { + return function redirectInterceptor (opts, handler) { + const { maxRedirections = globalMaxRedirections, ...baseOpts } = opts + + if (!maxRedirections) { + return dispatch(opts, handler) + } + + const redirectHandler = new RedirectHandler( + dispatch, + maxRedirections, + opts, + handler + ) + + return dispatch(baseOpts, redirectHandler) + } + } +} + + +/***/ }), + +/***/ 55558: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + +const RetryHandler = __nccwpck_require__(86242) + +module.exports = globalOpts => { + return dispatch => { + return function retryInterceptor (opts, handler) { + return dispatch( + opts, + new RetryHandler( + { ...opts, retryOptions: { ...globalOpts, ...opts.retryOptions } }, + { + handler, + dispatch + } + ) + ) + } + } +} + + +/***/ }), + +/***/ 30953: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.SPECIAL_HEADERS = exports.HEADER_STATE = exports.MINOR = exports.MAJOR = exports.CONNECTION_TOKEN_CHARS = exports.HEADER_CHARS = exports.TOKEN = exports.STRICT_TOKEN = exports.HEX = exports.URL_CHAR = exports.STRICT_URL_CHAR = exports.USERINFO_CHARS = exports.MARK = exports.ALPHANUM = exports.NUM = exports.HEX_MAP = exports.NUM_MAP = exports.ALPHA = exports.FINISH = exports.H_METHOD_MAP = exports.METHOD_MAP = exports.METHODS_RTSP = exports.METHODS_ICE = exports.METHODS_HTTP = exports.METHODS = exports.LENIENT_FLAGS = exports.FLAGS = exports.TYPE = exports.ERROR = void 0; +const utils_1 = __nccwpck_require__(41891); +// C headers +var ERROR; +(function (ERROR) { + ERROR[ERROR["OK"] = 0] = "OK"; + ERROR[ERROR["INTERNAL"] = 1] = "INTERNAL"; + ERROR[ERROR["STRICT"] = 2] = "STRICT"; + ERROR[ERROR["LF_EXPECTED"] = 3] = "LF_EXPECTED"; + ERROR[ERROR["UNEXPECTED_CONTENT_LENGTH"] = 4] = "UNEXPECTED_CONTENT_LENGTH"; + ERROR[ERROR["CLOSED_CONNECTION"] = 5] = "CLOSED_CONNECTION"; + ERROR[ERROR["INVALID_METHOD"] = 6] = "INVALID_METHOD"; + ERROR[ERROR["INVALID_URL"] = 7] = "INVALID_URL"; + ERROR[ERROR["INVALID_CONSTANT"] = 8] = "INVALID_CONSTANT"; + ERROR[ERROR["INVALID_VERSION"] = 9] = "INVALID_VERSION"; + ERROR[ERROR["INVALID_HEADER_TOKEN"] = 10] = "INVALID_HEADER_TOKEN"; + ERROR[ERROR["INVALID_CONTENT_LENGTH"] = 11] = "INVALID_CONTENT_LENGTH"; + ERROR[ERROR["INVALID_CHUNK_SIZE"] = 12] = "INVALID_CHUNK_SIZE"; + ERROR[ERROR["INVALID_STATUS"] = 13] = "INVALID_STATUS"; + ERROR[ERROR["INVALID_EOF_STATE"] = 14] = "INVALID_EOF_STATE"; + ERROR[ERROR["INVALID_TRANSFER_ENCODING"] = 15] = "INVALID_TRANSFER_ENCODING"; + ERROR[ERROR["CB_MESSAGE_BEGIN"] = 16] = "CB_MESSAGE_BEGIN"; + ERROR[ERROR["CB_HEADERS_COMPLETE"] = 17] = "CB_HEADERS_COMPLETE"; + ERROR[ERROR["CB_MESSAGE_COMPLETE"] = 18] = "CB_MESSAGE_COMPLETE"; + ERROR[ERROR["CB_CHUNK_HEADER"] = 19] = "CB_CHUNK_HEADER"; + ERROR[ERROR["CB_CHUNK_COMPLETE"] = 20] = "CB_CHUNK_COMPLETE"; + ERROR[ERROR["PAUSED"] = 21] = "PAUSED"; + ERROR[ERROR["PAUSED_UPGRADE"] = 22] = "PAUSED_UPGRADE"; + ERROR[ERROR["PAUSED_H2_UPGRADE"] = 23] = "PAUSED_H2_UPGRADE"; + ERROR[ERROR["USER"] = 24] = "USER"; +})(ERROR = exports.ERROR || (exports.ERROR = {})); +var TYPE; +(function (TYPE) { + TYPE[TYPE["BOTH"] = 0] = "BOTH"; + TYPE[TYPE["REQUEST"] = 1] = "REQUEST"; + TYPE[TYPE["RESPONSE"] = 2] = "RESPONSE"; +})(TYPE = exports.TYPE || (exports.TYPE = {})); +var FLAGS; +(function (FLAGS) { + FLAGS[FLAGS["CONNECTION_KEEP_ALIVE"] = 1] = "CONNECTION_KEEP_ALIVE"; + FLAGS[FLAGS["CONNECTION_CLOSE"] = 2] = "CONNECTION_CLOSE"; + FLAGS[FLAGS["CONNECTION_UPGRADE"] = 4] = "CONNECTION_UPGRADE"; + FLAGS[FLAGS["CHUNKED"] = 8] = "CHUNKED"; + FLAGS[FLAGS["UPGRADE"] = 16] = "UPGRADE"; + FLAGS[FLAGS["CONTENT_LENGTH"] = 32] = "CONTENT_LENGTH"; + FLAGS[FLAGS["SKIPBODY"] = 64] = "SKIPBODY"; + FLAGS[FLAGS["TRAILING"] = 128] = "TRAILING"; + // 1 << 8 is unused + FLAGS[FLAGS["TRANSFER_ENCODING"] = 512] = "TRANSFER_ENCODING"; +})(FLAGS = exports.FLAGS || (exports.FLAGS = {})); +var LENIENT_FLAGS; +(function (LENIENT_FLAGS) { + LENIENT_FLAGS[LENIENT_FLAGS["HEADERS"] = 1] = "HEADERS"; + LENIENT_FLAGS[LENIENT_FLAGS["CHUNKED_LENGTH"] = 2] = "CHUNKED_LENGTH"; + LENIENT_FLAGS[LENIENT_FLAGS["KEEP_ALIVE"] = 4] = "KEEP_ALIVE"; +})(LENIENT_FLAGS = exports.LENIENT_FLAGS || (exports.LENIENT_FLAGS = {})); +var METHODS; +(function (METHODS) { + METHODS[METHODS["DELETE"] = 0] = "DELETE"; + METHODS[METHODS["GET"] = 1] = "GET"; + METHODS[METHODS["HEAD"] = 2] = "HEAD"; + METHODS[METHODS["POST"] = 3] = "POST"; + METHODS[METHODS["PUT"] = 4] = "PUT"; + /* pathological */ + METHODS[METHODS["CONNECT"] = 5] = "CONNECT"; + METHODS[METHODS["OPTIONS"] = 6] = "OPTIONS"; + METHODS[METHODS["TRACE"] = 7] = "TRACE"; + /* WebDAV */ + METHODS[METHODS["COPY"] = 8] = "COPY"; + METHODS[METHODS["LOCK"] = 9] = "LOCK"; + METHODS[METHODS["MKCOL"] = 10] = "MKCOL"; + METHODS[METHODS["MOVE"] = 11] = "MOVE"; + METHODS[METHODS["PROPFIND"] = 12] = "PROPFIND"; + METHODS[METHODS["PROPPATCH"] = 13] = "PROPPATCH"; + METHODS[METHODS["SEARCH"] = 14] = "SEARCH"; + METHODS[METHODS["UNLOCK"] = 15] = "UNLOCK"; + METHODS[METHODS["BIND"] = 16] = "BIND"; + METHODS[METHODS["REBIND"] = 17] = "REBIND"; + METHODS[METHODS["UNBIND"] = 18] = "UNBIND"; + METHODS[METHODS["ACL"] = 19] = "ACL"; + /* subversion */ + METHODS[METHODS["REPORT"] = 20] = "REPORT"; + METHODS[METHODS["MKACTIVITY"] = 21] = "MKACTIVITY"; + METHODS[METHODS["CHECKOUT"] = 22] = "CHECKOUT"; + METHODS[METHODS["MERGE"] = 23] = "MERGE"; + /* upnp */ + METHODS[METHODS["M-SEARCH"] = 24] = "M-SEARCH"; + METHODS[METHODS["NOTIFY"] = 25] = "NOTIFY"; + METHODS[METHODS["SUBSCRIBE"] = 26] = "SUBSCRIBE"; + METHODS[METHODS["UNSUBSCRIBE"] = 27] = "UNSUBSCRIBE"; + /* RFC-5789 */ + METHODS[METHODS["PATCH"] = 28] = "PATCH"; + METHODS[METHODS["PURGE"] = 29] = "PURGE"; + /* CalDAV */ + METHODS[METHODS["MKCALENDAR"] = 30] = "MKCALENDAR"; + /* RFC-2068, section 19.6.1.2 */ + METHODS[METHODS["LINK"] = 31] = "LINK"; + METHODS[METHODS["UNLINK"] = 32] = "UNLINK"; + /* icecast */ + METHODS[METHODS["SOURCE"] = 33] = "SOURCE"; + /* RFC-7540, section 11.6 */ + METHODS[METHODS["PRI"] = 34] = "PRI"; + /* RFC-2326 RTSP */ + METHODS[METHODS["DESCRIBE"] = 35] = "DESCRIBE"; + METHODS[METHODS["ANNOUNCE"] = 36] = "ANNOUNCE"; + METHODS[METHODS["SETUP"] = 37] = "SETUP"; + METHODS[METHODS["PLAY"] = 38] = "PLAY"; + METHODS[METHODS["PAUSE"] = 39] = "PAUSE"; + METHODS[METHODS["TEARDOWN"] = 40] = "TEARDOWN"; + METHODS[METHODS["GET_PARAMETER"] = 41] = "GET_PARAMETER"; + METHODS[METHODS["SET_PARAMETER"] = 42] = "SET_PARAMETER"; + METHODS[METHODS["REDIRECT"] = 43] = "REDIRECT"; + METHODS[METHODS["RECORD"] = 44] = "RECORD"; + /* RAOP */ + METHODS[METHODS["FLUSH"] = 45] = "FLUSH"; +})(METHODS = exports.METHODS || (exports.METHODS = {})); +exports.METHODS_HTTP = [ + METHODS.DELETE, + METHODS.GET, + METHODS.HEAD, + METHODS.POST, + METHODS.PUT, + METHODS.CONNECT, + METHODS.OPTIONS, + METHODS.TRACE, + METHODS.COPY, + METHODS.LOCK, + METHODS.MKCOL, + METHODS.MOVE, + METHODS.PROPFIND, + METHODS.PROPPATCH, + METHODS.SEARCH, + METHODS.UNLOCK, + METHODS.BIND, + METHODS.REBIND, + METHODS.UNBIND, + METHODS.ACL, + METHODS.REPORT, + METHODS.MKACTIVITY, + METHODS.CHECKOUT, + METHODS.MERGE, + METHODS['M-SEARCH'], + METHODS.NOTIFY, + METHODS.SUBSCRIBE, + METHODS.UNSUBSCRIBE, + METHODS.PATCH, + METHODS.PURGE, + METHODS.MKCALENDAR, + METHODS.LINK, + METHODS.UNLINK, + METHODS.PRI, + // TODO(indutny): should we allow it with HTTP? + METHODS.SOURCE, +]; +exports.METHODS_ICE = [ + METHODS.SOURCE, +]; +exports.METHODS_RTSP = [ + METHODS.OPTIONS, + METHODS.DESCRIBE, + METHODS.ANNOUNCE, + METHODS.SETUP, + METHODS.PLAY, + METHODS.PAUSE, + METHODS.TEARDOWN, + METHODS.GET_PARAMETER, + METHODS.SET_PARAMETER, + METHODS.REDIRECT, + METHODS.RECORD, + METHODS.FLUSH, + // For AirPlay + METHODS.GET, + METHODS.POST, +]; +exports.METHOD_MAP = utils_1.enumToMap(METHODS); +exports.H_METHOD_MAP = {}; +Object.keys(exports.METHOD_MAP).forEach((key) => { + if (/^H/.test(key)) { + exports.H_METHOD_MAP[key] = exports.METHOD_MAP[key]; + } +}); +var FINISH; +(function (FINISH) { + FINISH[FINISH["SAFE"] = 0] = "SAFE"; + FINISH[FINISH["SAFE_WITH_CB"] = 1] = "SAFE_WITH_CB"; + FINISH[FINISH["UNSAFE"] = 2] = "UNSAFE"; +})(FINISH = exports.FINISH || (exports.FINISH = {})); +exports.ALPHA = []; +for (let i = 'A'.charCodeAt(0); i <= 'Z'.charCodeAt(0); i++) { + // Upper case + exports.ALPHA.push(String.fromCharCode(i)); + // Lower case + exports.ALPHA.push(String.fromCharCode(i + 0x20)); +} +exports.NUM_MAP = { + 0: 0, 1: 1, 2: 2, 3: 3, 4: 4, + 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, +}; +exports.HEX_MAP = { + 0: 0, 1: 1, 2: 2, 3: 3, 4: 4, + 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, + A: 0XA, B: 0XB, C: 0XC, D: 0XD, E: 0XE, F: 0XF, + a: 0xa, b: 0xb, c: 0xc, d: 0xd, e: 0xe, f: 0xf, +}; +exports.NUM = [ + '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', +]; +exports.ALPHANUM = exports.ALPHA.concat(exports.NUM); +exports.MARK = ['-', '_', '.', '!', '~', '*', '\'', '(', ')']; +exports.USERINFO_CHARS = exports.ALPHANUM + .concat(exports.MARK) + .concat(['%', ';', ':', '&', '=', '+', '$', ',']); +// TODO(indutny): use RFC +exports.STRICT_URL_CHAR = [ + '!', '"', '$', '%', '&', '\'', + '(', ')', '*', '+', ',', '-', '.', '/', + ':', ';', '<', '=', '>', + '@', '[', '\\', ']', '^', '_', + '`', + '{', '|', '}', '~', +].concat(exports.ALPHANUM); +exports.URL_CHAR = exports.STRICT_URL_CHAR + .concat(['\t', '\f']); +// All characters with 0x80 bit set to 1 +for (let i = 0x80; i <= 0xff; i++) { + exports.URL_CHAR.push(i); +} +exports.HEX = exports.NUM.concat(['a', 'b', 'c', 'd', 'e', 'f', 'A', 'B', 'C', 'D', 'E', 'F']); +/* Tokens as defined by rfc 2616. Also lowercases them. + * token = 1* + * separators = "(" | ")" | "<" | ">" | "@" + * | "," | ";" | ":" | "\" | <"> + * | "/" | "[" | "]" | "?" | "=" + * | "{" | "}" | SP | HT + */ +exports.STRICT_TOKEN = [ + '!', '#', '$', '%', '&', '\'', + '*', '+', '-', '.', + '^', '_', '`', + '|', '~', +].concat(exports.ALPHANUM); +exports.TOKEN = exports.STRICT_TOKEN.concat([' ']); +/* + * Verify that a char is a valid visible (printable) US-ASCII + * character or %x80-FF + */ +exports.HEADER_CHARS = ['\t']; +for (let i = 32; i <= 255; i++) { + if (i !== 127) { + exports.HEADER_CHARS.push(i); + } +} +// ',' = \x44 +exports.CONNECTION_TOKEN_CHARS = exports.HEADER_CHARS.filter((c) => c !== 44); +exports.MAJOR = exports.NUM_MAP; +exports.MINOR = exports.MAJOR; +var HEADER_STATE; +(function (HEADER_STATE) { + HEADER_STATE[HEADER_STATE["GENERAL"] = 0] = "GENERAL"; + HEADER_STATE[HEADER_STATE["CONNECTION"] = 1] = "CONNECTION"; + HEADER_STATE[HEADER_STATE["CONTENT_LENGTH"] = 2] = "CONTENT_LENGTH"; + HEADER_STATE[HEADER_STATE["TRANSFER_ENCODING"] = 3] = "TRANSFER_ENCODING"; + HEADER_STATE[HEADER_STATE["UPGRADE"] = 4] = "UPGRADE"; + HEADER_STATE[HEADER_STATE["CONNECTION_KEEP_ALIVE"] = 5] = "CONNECTION_KEEP_ALIVE"; + HEADER_STATE[HEADER_STATE["CONNECTION_CLOSE"] = 6] = "CONNECTION_CLOSE"; + HEADER_STATE[HEADER_STATE["CONNECTION_UPGRADE"] = 7] = "CONNECTION_UPGRADE"; + HEADER_STATE[HEADER_STATE["TRANSFER_ENCODING_CHUNKED"] = 8] = "TRANSFER_ENCODING_CHUNKED"; +})(HEADER_STATE = exports.HEADER_STATE || (exports.HEADER_STATE = {})); +exports.SPECIAL_HEADERS = { + 'connection': HEADER_STATE.CONNECTION, + 'content-length': HEADER_STATE.CONTENT_LENGTH, + 'proxy-connection': HEADER_STATE.CONNECTION, + 'transfer-encoding': HEADER_STATE.TRANSFER_ENCODING, + 'upgrade': HEADER_STATE.UPGRADE, }; -const uploadPagesFromURLOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: PageBlobUploadPagesFromURLHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: PageBlobUploadPagesFromURLExceptionHeaders +//# sourceMappingURL=constants.js.map + +/***/ }), + +/***/ 61145: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { Buffer } = __nccwpck_require__(72254) + +module.exports = Buffer.from('AGFzbQEAAAABJwdgAX8Bf2ADf39/AX9gAX8AYAJ/fwBgBH9/f38Bf2AAAGADf39/AALLAQgDZW52GHdhc21fb25faGVhZGVyc19jb21wbGV0ZQAEA2VudhV3YXNtX29uX21lc3NhZ2VfYmVnaW4AAANlbnYLd2FzbV9vbl91cmwAAQNlbnYOd2FzbV9vbl9zdGF0dXMAAQNlbnYUd2FzbV9vbl9oZWFkZXJfZmllbGQAAQNlbnYUd2FzbV9vbl9oZWFkZXJfdmFsdWUAAQNlbnYMd2FzbV9vbl9ib2R5AAEDZW52GHdhc21fb25fbWVzc2FnZV9jb21wbGV0ZQAAAy0sBQYAAAIAAAAAAAACAQIAAgICAAADAAAAAAMDAwMBAQEBAQEBAQEAAAIAAAAEBQFwARISBQMBAAIGCAF/AUGA1AQLB9EFIgZtZW1vcnkCAAtfaW5pdGlhbGl6ZQAIGV9faW5kaXJlY3RfZnVuY3Rpb25fdGFibGUBAAtsbGh0dHBfaW5pdAAJGGxsaHR0cF9zaG91bGRfa2VlcF9hbGl2ZQAvDGxsaHR0cF9hbGxvYwALBm1hbGxvYwAxC2xsaHR0cF9mcmVlAAwEZnJlZQAMD2xsaHR0cF9nZXRfdHlwZQANFWxsaHR0cF9nZXRfaHR0cF9tYWpvcgAOFWxsaHR0cF9nZXRfaHR0cF9taW5vcgAPEWxsaHR0cF9nZXRfbWV0aG9kABAWbGxodHRwX2dldF9zdGF0dXNfY29kZQAREmxsaHR0cF9nZXRfdXBncmFkZQASDGxsaHR0cF9yZXNldAATDmxsaHR0cF9leGVjdXRlABQUbGxodHRwX3NldHRpbmdzX2luaXQAFQ1sbGh0dHBfZmluaXNoABYMbGxodHRwX3BhdXNlABcNbGxodHRwX3Jlc3VtZQAYG2xsaHR0cF9yZXN1bWVfYWZ0ZXJfdXBncmFkZQAZEGxsaHR0cF9nZXRfZXJybm8AGhdsbGh0dHBfZ2V0X2Vycm9yX3JlYXNvbgAbF2xsaHR0cF9zZXRfZXJyb3JfcmVhc29uABwUbGxodHRwX2dldF9lcnJvcl9wb3MAHRFsbGh0dHBfZXJybm9fbmFtZQAeEmxsaHR0cF9tZXRob2RfbmFtZQAfEmxsaHR0cF9zdGF0dXNfbmFtZQAgGmxsaHR0cF9zZXRfbGVuaWVudF9oZWFkZXJzACEhbGxodHRwX3NldF9sZW5pZW50X2NodW5rZWRfbGVuZ3RoACIdbGxodHRwX3NldF9sZW5pZW50X2tlZXBfYWxpdmUAIyRsbGh0dHBfc2V0X2xlbmllbnRfdHJhbnNmZXJfZW5jb2RpbmcAJBhsbGh0dHBfbWVzc2FnZV9uZWVkc19lb2YALgkXAQBBAQsRAQIDBAUKBgcrLSwqKSglJyYK07MCLBYAQYjQACgCAARAAAtBiNAAQQE2AgALFAAgABAwIAAgAjYCOCAAIAE6ACgLFAAgACAALwEyIAAtAC4gABAvEAALHgEBf0HAABAyIgEQMCABQYAINgI4IAEgADoAKCABC48MAQd/AkAgAEUNACAAQQhrIgEgAEEEaygCACIAQXhxIgRqIQUCQCAAQQFxDQAgAEEDcUUNASABIAEoAgAiAGsiAUGc0AAoAgBJDQEgACAEaiEEAkACQEGg0AAoAgAgAUcEQCAAQf8BTQRAIABBA3YhAyABKAIIIgAgASgCDCICRgRAQYzQAEGM0AAoAgBBfiADd3E2AgAMBQsgAiAANgIIIAAgAjYCDAwECyABKAIYIQYgASABKAIMIgBHBEAgACABKAIIIgI2AgggAiAANgIMDAMLIAFBFGoiAygCACICRQRAIAEoAhAiAkUNAiABQRBqIQMLA0AgAyEHIAIiAEEUaiIDKAIAIgINACAAQRBqIQMgACgCECICDQALIAdBADYCAAwCCyAFKAIEIgBBA3FBA0cNAiAFIABBfnE2AgRBlNAAIAQ2AgAgBSAENgIAIAEgBEEBcjYCBAwDC0EAIQALIAZFDQACQCABKAIcIgJBAnRBvNIAaiIDKAIAIAFGBEAgAyAANgIAIAANAUGQ0ABBkNAAKAIAQX4gAndxNgIADAILIAZBEEEUIAYoAhAgAUYbaiAANgIAIABFDQELIAAgBjYCGCABKAIQIgIEQCAAIAI2AhAgAiAANgIYCyABQRRqKAIAIgJFDQAgAEEUaiACNgIAIAIgADYCGAsgASAFTw0AIAUoAgQiAEEBcUUNAAJAAkACQAJAIABBAnFFBEBBpNAAKAIAIAVGBEBBpNAAIAE2AgBBmNAAQZjQACgCACAEaiIANgIAIAEgAEEBcjYCBCABQaDQACgCAEcNBkGU0ABBADYCAEGg0ABBADYCAAwGC0Gg0AAoAgAgBUYEQEGg0AAgATYCAEGU0ABBlNAAKAIAIARqIgA2AgAgASAAQQFyNgIEIAAgAWogADYCAAwGCyAAQXhxIARqIQQgAEH/AU0EQCAAQQN2IQMgBSgCCCIAIAUoAgwiAkYEQEGM0ABBjNAAKAIAQX4gA3dxNgIADAULIAIgADYCCCAAIAI2AgwMBAsgBSgCGCEGIAUgBSgCDCIARwRAQZzQACgCABogACAFKAIIIgI2AgggAiAANgIMDAMLIAVBFGoiAygCACICRQRAIAUoAhAiAkUNAiAFQRBqIQMLA0AgAyEHIAIiAEEUaiIDKAIAIgINACAAQRBqIQMgACgCECICDQALIAdBADYCAAwCCyAFIABBfnE2AgQgASAEaiAENgIAIAEgBEEBcjYCBAwDC0EAIQALIAZFDQACQCAFKAIcIgJBAnRBvNIAaiIDKAIAIAVGBEAgAyAANgIAIAANAUGQ0ABBkNAAKAIAQX4gAndxNgIADAILIAZBEEEUIAYoAhAgBUYbaiAANgIAIABFDQELIAAgBjYCGCAFKAIQIgIEQCAAIAI2AhAgAiAANgIYCyAFQRRqKAIAIgJFDQAgAEEUaiACNgIAIAIgADYCGAsgASAEaiAENgIAIAEgBEEBcjYCBCABQaDQACgCAEcNAEGU0AAgBDYCAAwBCyAEQf8BTQRAIARBeHFBtNAAaiEAAn9BjNAAKAIAIgJBASAEQQN2dCIDcUUEQEGM0AAgAiADcjYCACAADAELIAAoAggLIgIgATYCDCAAIAE2AgggASAANgIMIAEgAjYCCAwBC0EfIQIgBEH///8HTQRAIARBJiAEQQh2ZyIAa3ZBAXEgAEEBdGtBPmohAgsgASACNgIcIAFCADcCECACQQJ0QbzSAGohAAJAQZDQACgCACIDQQEgAnQiB3FFBEAgACABNgIAQZDQACADIAdyNgIAIAEgADYCGCABIAE2AgggASABNgIMDAELIARBGSACQQF2a0EAIAJBH0cbdCECIAAoAgAhAAJAA0AgACIDKAIEQXhxIARGDQEgAkEddiEAIAJBAXQhAiADIABBBHFqQRBqIgcoAgAiAA0ACyAHIAE2AgAgASADNgIYIAEgATYCDCABIAE2AggMAQsgAygCCCIAIAE2AgwgAyABNgIIIAFBADYCGCABIAM2AgwgASAANgIIC0Gs0ABBrNAAKAIAQQFrIgBBfyAAGzYCAAsLBwAgAC0AKAsHACAALQAqCwcAIAAtACsLBwAgAC0AKQsHACAALwEyCwcAIAAtAC4LQAEEfyAAKAIYIQEgAC0ALSECIAAtACghAyAAKAI4IQQgABAwIAAgBDYCOCAAIAM6ACggACACOgAtIAAgATYCGAu74gECB38DfiABIAJqIQQCQCAAIgIoAgwiAA0AIAIoAgQEQCACIAE2AgQLIwBBEGsiCCQAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACfwJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIAIoAhwiA0EBaw7dAdoBAdkBAgMEBQYHCAkKCwwNDtgBDxDXARES1gETFBUWFxgZGhvgAd8BHB0e1QEfICEiIyQl1AEmJygpKiss0wHSAS0u0QHQAS8wMTIzNDU2Nzg5Ojs8PT4/QEFCQ0RFRtsBR0hJSs8BzgFLzQFMzAFNTk9QUVJTVFVWV1hZWltcXV5fYGFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6e3x9fn+AAYEBggGDAYQBhQGGAYcBiAGJAYoBiwGMAY0BjgGPAZABkQGSAZMBlAGVAZYBlwGYAZkBmgGbAZwBnQGeAZ8BoAGhAaIBowGkAaUBpgGnAagBqQGqAasBrAGtAa4BrwGwAbEBsgGzAbQBtQG2AbcBywHKAbgByQG5AcgBugG7AbwBvQG+Ab8BwAHBAcIBwwHEAcUBxgEA3AELQQAMxgELQQ4MxQELQQ0MxAELQQ8MwwELQRAMwgELQRMMwQELQRQMwAELQRUMvwELQRYMvgELQRgMvQELQRkMvAELQRoMuwELQRsMugELQRwMuQELQR0MuAELQQgMtwELQR4MtgELQSAMtQELQR8MtAELQQcMswELQSEMsgELQSIMsQELQSMMsAELQSQMrwELQRIMrgELQREMrQELQSUMrAELQSYMqwELQScMqgELQSgMqQELQcMBDKgBC0EqDKcBC0ErDKYBC0EsDKUBC0EtDKQBC0EuDKMBC0EvDKIBC0HEAQyhAQtBMAygAQtBNAyfAQtBDAyeAQtBMQydAQtBMgycAQtBMwybAQtBOQyaAQtBNQyZAQtBxQEMmAELQQsMlwELQToMlgELQTYMlQELQQoMlAELQTcMkwELQTgMkgELQTwMkQELQTsMkAELQT0MjwELQQkMjgELQSkMjQELQT4MjAELQT8MiwELQcAADIoBC0HBAAyJAQtBwgAMiAELQcMADIcBC0HEAAyGAQtBxQAMhQELQcYADIQBC0EXDIMBC0HHAAyCAQtByAAMgQELQckADIABC0HKAAx/C0HLAAx+C0HNAAx9C0HMAAx8C0HOAAx7C0HPAAx6C0HQAAx5C0HRAAx4C0HSAAx3C0HTAAx2C0HUAAx1C0HWAAx0C0HVAAxzC0EGDHILQdcADHELQQUMcAtB2AAMbwtBBAxuC0HZAAxtC0HaAAxsC0HbAAxrC0HcAAxqC0EDDGkLQd0ADGgLQd4ADGcLQd8ADGYLQeEADGULQeAADGQLQeIADGMLQeMADGILQQIMYQtB5AAMYAtB5QAMXwtB5gAMXgtB5wAMXQtB6AAMXAtB6QAMWwtB6gAMWgtB6wAMWQtB7AAMWAtB7QAMVwtB7gAMVgtB7wAMVQtB8AAMVAtB8QAMUwtB8gAMUgtB8wAMUQtB9AAMUAtB9QAMTwtB9gAMTgtB9wAMTQtB+AAMTAtB+QAMSwtB+gAMSgtB+wAMSQtB/AAMSAtB/QAMRwtB/gAMRgtB/wAMRQtBgAEMRAtBgQEMQwtBggEMQgtBgwEMQQtBhAEMQAtBhQEMPwtBhgEMPgtBhwEMPQtBiAEMPAtBiQEMOwtBigEMOgtBiwEMOQtBjAEMOAtBjQEMNwtBjgEMNgtBjwEMNQtBkAEMNAtBkQEMMwtBkgEMMgtBkwEMMQtBlAEMMAtBlQEMLwtBlgEMLgtBlwEMLQtBmAEMLAtBmQEMKwtBmgEMKgtBmwEMKQtBnAEMKAtBnQEMJwtBngEMJgtBnwEMJQtBoAEMJAtBoQEMIwtBogEMIgtBowEMIQtBpAEMIAtBpQEMHwtBpgEMHgtBpwEMHQtBqAEMHAtBqQEMGwtBqgEMGgtBqwEMGQtBrAEMGAtBrQEMFwtBrgEMFgtBAQwVC0GvAQwUC0GwAQwTC0GxAQwSC0GzAQwRC0GyAQwQC0G0AQwPC0G1AQwOC0G2AQwNC0G3AQwMC0G4AQwLC0G5AQwKC0G6AQwJC0G7AQwIC0HGAQwHC0G8AQwGC0G9AQwFC0G+AQwEC0G/AQwDC0HAAQwCC0HCAQwBC0HBAQshAwNAAkACQAJAAkACQAJAAkACQAJAIAICfwJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJ/AkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAgAgJ/AkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACfwJAAkACfwJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACfwJAAkACQAJAAn8CQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCADDsYBAAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHyAhIyUmKCorLC8wMTIzNDU2Nzk6Ozw9lANAQkRFRklLTk9QUVJTVFVWWFpbXF1eX2BhYmNkZWZnaGpsb3Bxc3V2eHl6e3x/gAGBAYIBgwGEAYUBhgGHAYgBiQGKAYsBjAGNAY4BjwGQAZEBkgGTAZQBlQGWAZcBmAGZAZoBmwGcAZ0BngGfAaABoQGiAaMBpAGlAaYBpwGoAakBqgGrAawBrQGuAa8BsAGxAbIBswG0AbUBtgG3AbgBuQG6AbsBvAG9Ab4BvwHAAcEBwgHDAcQBxQHGAccByAHJAcsBzAHNAc4BzwGKA4kDiAOHA4QDgwOAA/sC+gL5AvgC9wL0AvMC8gLLAsECsALZAQsgASAERw3wAkHdASEDDLMDCyABIARHDcgBQcMBIQMMsgMLIAEgBEcNe0H3ACEDDLEDCyABIARHDXBB7wAhAwywAwsgASAERw1pQeoAIQMMrwMLIAEgBEcNZUHoACEDDK4DCyABIARHDWJB5gAhAwytAwsgASAERw0aQRghAwysAwsgASAERw0VQRIhAwyrAwsgASAERw1CQcUAIQMMqgMLIAEgBEcNNEE/IQMMqQMLIAEgBEcNMkE8IQMMqAMLIAEgBEcNK0ExIQMMpwMLIAItAC5BAUYNnwMMwQILQQAhAAJAAkACQCACLQAqRQ0AIAItACtFDQAgAi8BMCIDQQJxRQ0BDAILIAIvATAiA0EBcUUNAQtBASEAIAItAChBAUYNACACLwEyIgVB5ABrQeQASQ0AIAVBzAFGDQAgBUGwAkYNACADQcAAcQ0AQQAhACADQYgEcUGABEYNACADQShxQQBHIQALIAJBADsBMCACQQA6AC8gAEUN3wIgAkIANwMgDOACC0EAIQACQCACKAI4IgNFDQAgAygCLCIDRQ0AIAIgAxEAACEACyAARQ3MASAAQRVHDd0CIAJBBDYCHCACIAE2AhQgAkGwGDYCECACQRU2AgxBACEDDKQDCyABIARGBEBBBiEDDKQDCyABQQFqIQFBACEAAkAgAigCOCIDRQ0AIAMoAlQiA0UNACACIAMRAAAhAAsgAA3ZAgwcCyACQgA3AyBBEiEDDIkDCyABIARHDRZBHSEDDKEDCyABIARHBEAgAUEBaiEBQRAhAwyIAwtBByEDDKADCyACIAIpAyAiCiAEIAFrrSILfSIMQgAgCiAMWhs3AyAgCiALWA3UAkEIIQMMnwMLIAEgBEcEQCACQQk2AgggAiABNgIEQRQhAwyGAwtBCSEDDJ4DCyACKQMgQgBSDccBIAIgAi8BMEGAAXI7ATAMQgsgASAERw0/QdAAIQMMnAMLIAEgBEYEQEELIQMMnAMLIAFBAWohAUEAIQACQCACKAI4IgNFDQAgAygCUCIDRQ0AIAIgAxEAACEACyAADc8CDMYBC0EAIQACQCACKAI4IgNFDQAgAygCSCIDRQ0AIAIgAxEAACEACyAARQ3GASAAQRVHDc0CIAJBCzYCHCACIAE2AhQgAkGCGTYCECACQRU2AgxBACEDDJoDC0EAIQACQCACKAI4IgNFDQAgAygCSCIDRQ0AIAIgAxEAACEACyAARQ0MIABBFUcNygIgAkEaNgIcIAIgATYCFCACQYIZNgIQIAJBFTYCDEEAIQMMmQMLQQAhAAJAIAIoAjgiA0UNACADKAJMIgNFDQAgAiADEQAAIQALIABFDcQBIABBFUcNxwIgAkELNgIcIAIgATYCFCACQZEXNgIQIAJBFTYCDEEAIQMMmAMLIAEgBEYEQEEPIQMMmAMLIAEtAAAiAEE7Rg0HIABBDUcNxAIgAUEBaiEBDMMBC0EAIQACQCACKAI4IgNFDQAgAygCTCIDRQ0AIAIgAxEAACEACyAARQ3DASAAQRVHDcICIAJBDzYCHCACIAE2AhQgAkGRFzYCECACQRU2AgxBACEDDJYDCwNAIAEtAABB8DVqLQAAIgBBAUcEQCAAQQJHDcECIAIoAgQhAEEAIQMgAkEANgIEIAIgACABQQFqIgEQLSIADcICDMUBCyAEIAFBAWoiAUcNAAtBEiEDDJUDC0EAIQACQCACKAI4IgNFDQAgAygCTCIDRQ0AIAIgAxEAACEACyAARQ3FASAAQRVHDb0CIAJBGzYCHCACIAE2AhQgAkGRFzYCECACQRU2AgxBACEDDJQDCyABIARGBEBBFiEDDJQDCyACQQo2AgggAiABNgIEQQAhAAJAIAIoAjgiA0UNACADKAJIIgNFDQAgAiADEQAAIQALIABFDcIBIABBFUcNuQIgAkEVNgIcIAIgATYCFCACQYIZNgIQIAJBFTYCDEEAIQMMkwMLIAEgBEcEQANAIAEtAABB8DdqLQAAIgBBAkcEQAJAIABBAWsOBMQCvQIAvgK9AgsgAUEBaiEBQQghAwz8AgsgBCABQQFqIgFHDQALQRUhAwyTAwtBFSEDDJIDCwNAIAEtAABB8DlqLQAAIgBBAkcEQCAAQQFrDgTFArcCwwK4ArcCCyAEIAFBAWoiAUcNAAtBGCEDDJEDCyABIARHBEAgAkELNgIIIAIgATYCBEEHIQMM+AILQRkhAwyQAwsgAUEBaiEBDAILIAEgBEYEQEEaIQMMjwMLAkAgAS0AAEENaw4UtQG/Ab8BvwG/Ab8BvwG/Ab8BvwG/Ab8BvwG/Ab8BvwG/Ab8BvwEAvwELQQAhAyACQQA2AhwgAkGvCzYCECACQQI2AgwgAiABQQFqNgIUDI4DCyABIARGBEBBGyEDDI4DCyABLQAAIgBBO0cEQCAAQQ1HDbECIAFBAWohAQy6AQsgAUEBaiEBC0EiIQMM8wILIAEgBEYEQEEcIQMMjAMLQgAhCgJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAgAS0AAEEwaw43wQLAAgABAgMEBQYH0AHQAdAB0AHQAdAB0AEICQoLDA3QAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdABDg8QERIT0AELQgIhCgzAAgtCAyEKDL8CC0IEIQoMvgILQgUhCgy9AgtCBiEKDLwCC0IHIQoMuwILQgghCgy6AgtCCSEKDLkCC0IKIQoMuAILQgshCgy3AgtCDCEKDLYCC0INIQoMtQILQg4hCgy0AgtCDyEKDLMCC0IKIQoMsgILQgshCgyxAgtCDCEKDLACC0INIQoMrwILQg4hCgyuAgtCDyEKDK0CC0IAIQoCQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIAEtAABBMGsON8ACvwIAAQIDBAUGB74CvgK+Ar4CvgK+Ar4CCAkKCwwNvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ag4PEBESE74CC0ICIQoMvwILQgMhCgy+AgtCBCEKDL0CC0IFIQoMvAILQgYhCgy7AgtCByEKDLoCC0IIIQoMuQILQgkhCgy4AgtCCiEKDLcCC0ILIQoMtgILQgwhCgy1AgtCDSEKDLQCC0IOIQoMswILQg8hCgyyAgtCCiEKDLECC0ILIQoMsAILQgwhCgyvAgtCDSEKDK4CC0IOIQoMrQILQg8hCgysAgsgAiACKQMgIgogBCABa60iC30iDEIAIAogDFobNwMgIAogC1gNpwJBHyEDDIkDCyABIARHBEAgAkEJNgIIIAIgATYCBEElIQMM8AILQSAhAwyIAwtBASEFIAIvATAiA0EIcUUEQCACKQMgQgBSIQULAkAgAi0ALgRAQQEhACACLQApQQVGDQEgA0HAAHFFIAVxRQ0BC0EAIQAgA0HAAHENAEECIQAgA0EIcQ0AIANBgARxBEACQCACLQAoQQFHDQAgAi0ALUEKcQ0AQQUhAAwCC0EEIQAMAQsgA0EgcUUEQAJAIAItAChBAUYNACACLwEyIgBB5ABrQeQASQ0AIABBzAFGDQAgAEGwAkYNAEEEIQAgA0EocUUNAiADQYgEcUGABEYNAgtBACEADAELQQBBAyACKQMgUBshAAsgAEEBaw4FvgIAsAEBpAKhAgtBESEDDO0CCyACQQE6AC8MhAMLIAEgBEcNnQJBJCEDDIQDCyABIARHDRxBxgAhAwyDAwtBACEAAkAgAigCOCIDRQ0AIAMoAkQiA0UNACACIAMRAAAhAAsgAEUNJyAAQRVHDZgCIAJB0AA2AhwgAiABNgIUIAJBkRg2AhAgAkEVNgIMQQAhAwyCAwsgASAERgRAQSghAwyCAwtBACEDIAJBADYCBCACQQw2AgggAiABIAEQKiIARQ2UAiACQSc2AhwgAiABNgIUIAIgADYCDAyBAwsgASAERgRAQSkhAwyBAwsgAS0AACIAQSBGDRMgAEEJRw2VAiABQQFqIQEMFAsgASAERwRAIAFBAWohAQwWC0EqIQMM/wILIAEgBEYEQEErIQMM/wILIAEtAAAiAEEJRyAAQSBHcQ2QAiACLQAsQQhHDd0CIAJBADoALAzdAgsgASAERgRAQSwhAwz+AgsgAS0AAEEKRw2OAiABQQFqIQEMsAELIAEgBEcNigJBLyEDDPwCCwNAIAEtAAAiAEEgRwRAIABBCmsOBIQCiAKIAoQChgILIAQgAUEBaiIBRw0AC0ExIQMM+wILQTIhAyABIARGDfoCIAIoAgAiACAEIAFraiEHIAEgAGtBA2ohBgJAA0AgAEHwO2otAAAgAS0AACIFQSByIAUgBUHBAGtB/wFxQRpJG0H/AXFHDQEgAEEDRgRAQQYhAQziAgsgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAc2AgAM+wILIAJBADYCAAyGAgtBMyEDIAQgASIARg35AiAEIAFrIAIoAgAiAWohByAAIAFrQQhqIQYCQANAIAFB9DtqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw0BIAFBCEYEQEEFIQEM4QILIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADPoCCyACQQA2AgAgACEBDIUCC0E0IQMgBCABIgBGDfgCIAQgAWsgAigCACIBaiEHIAAgAWtBBWohBgJAA0AgAUHQwgBqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw0BIAFBBUYEQEEHIQEM4AILIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADPkCCyACQQA2AgAgACEBDIQCCyABIARHBEADQCABLQAAQYA+ai0AACIAQQFHBEAgAEECRg0JDIECCyAEIAFBAWoiAUcNAAtBMCEDDPgCC0EwIQMM9wILIAEgBEcEQANAIAEtAAAiAEEgRwRAIABBCmsOBP8B/gH+Af8B/gELIAQgAUEBaiIBRw0AC0E4IQMM9wILQTghAwz2AgsDQCABLQAAIgBBIEcgAEEJR3EN9gEgBCABQQFqIgFHDQALQTwhAwz1AgsDQCABLQAAIgBBIEcEQAJAIABBCmsOBPkBBAT5AQALIABBLEYN9QEMAwsgBCABQQFqIgFHDQALQT8hAwz0AgtBwAAhAyABIARGDfMCIAIoAgAiACAEIAFraiEFIAEgAGtBBmohBgJAA0AgAEGAQGstAAAgAS0AAEEgckcNASAAQQZGDdsCIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADPQCCyACQQA2AgALQTYhAwzZAgsgASAERgRAQcEAIQMM8gILIAJBDDYCCCACIAE2AgQgAi0ALEEBaw4E+wHuAewB6wHUAgsgAUEBaiEBDPoBCyABIARHBEADQAJAIAEtAAAiAEEgciAAIABBwQBrQf8BcUEaSRtB/wFxIgBBCUYNACAAQSBGDQACQAJAAkACQCAAQeMAaw4TAAMDAwMDAwMBAwMDAwMDAwMDAgMLIAFBAWohAUExIQMM3AILIAFBAWohAUEyIQMM2wILIAFBAWohAUEzIQMM2gILDP4BCyAEIAFBAWoiAUcNAAtBNSEDDPACC0E1IQMM7wILIAEgBEcEQANAIAEtAABBgDxqLQAAQQFHDfcBIAQgAUEBaiIBRw0AC0E9IQMM7wILQT0hAwzuAgtBACEAAkAgAigCOCIDRQ0AIAMoAkAiA0UNACACIAMRAAAhAAsgAEUNASAAQRVHDeYBIAJBwgA2AhwgAiABNgIUIAJB4xg2AhAgAkEVNgIMQQAhAwztAgsgAUEBaiEBC0E8IQMM0gILIAEgBEYEQEHCACEDDOsCCwJAA0ACQCABLQAAQQlrDhgAAswCzALRAswCzALMAswCzALMAswCzALMAswCzALMAswCzALMAswCzALMAgDMAgsgBCABQQFqIgFHDQALQcIAIQMM6wILIAFBAWohASACLQAtQQFxRQ3+AQtBLCEDDNACCyABIARHDd4BQcQAIQMM6AILA0AgAS0AAEGQwABqLQAAQQFHDZwBIAQgAUEBaiIBRw0AC0HFACEDDOcCCyABLQAAIgBBIEYN/gEgAEE6Rw3AAiACKAIEIQBBACEDIAJBADYCBCACIAAgARApIgAN3gEM3QELQccAIQMgBCABIgBGDeUCIAQgAWsgAigCACIBaiEHIAAgAWtBBWohBgNAIAFBkMIAai0AACAALQAAIgVBIHIgBSAFQcEAa0H/AXFBGkkbQf8BcUcNvwIgAUEFRg3CAiABQQFqIQEgBCAAQQFqIgBHDQALIAIgBzYCAAzlAgtByAAhAyAEIAEiAEYN5AIgBCABayACKAIAIgFqIQcgACABa0EJaiEGA0AgAUGWwgBqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw2+AkECIAFBCUYNwgIaIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADOQCCyABIARGBEBByQAhAwzkAgsCQAJAIAEtAAAiAEEgciAAIABBwQBrQf8BcUEaSRtB/wFxQe4Aaw4HAL8CvwK/Ar8CvwIBvwILIAFBAWohAUE+IQMMywILIAFBAWohAUE/IQMMygILQcoAIQMgBCABIgBGDeICIAQgAWsgAigCACIBaiEGIAAgAWtBAWohBwNAIAFBoMIAai0AACAALQAAIgVBIHIgBSAFQcEAa0H/AXFBGkkbQf8BcUcNvAIgAUEBRg2+AiABQQFqIQEgBCAAQQFqIgBHDQALIAIgBjYCAAziAgtBywAhAyAEIAEiAEYN4QIgBCABayACKAIAIgFqIQcgACABa0EOaiEGA0AgAUGiwgBqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw27AiABQQ5GDb4CIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADOECC0HMACEDIAQgASIARg3gAiAEIAFrIAIoAgAiAWohByAAIAFrQQ9qIQYDQCABQcDCAGotAAAgAC0AACIFQSByIAUgBUHBAGtB/wFxQRpJG0H/AXFHDboCQQMgAUEPRg2+AhogAUEBaiEBIAQgAEEBaiIARw0ACyACIAc2AgAM4AILQc0AIQMgBCABIgBGDd8CIAQgAWsgAigCACIBaiEHIAAgAWtBBWohBgNAIAFB0MIAai0AACAALQAAIgVBIHIgBSAFQcEAa0H/AXFBGkkbQf8BcUcNuQJBBCABQQVGDb0CGiABQQFqIQEgBCAAQQFqIgBHDQALIAIgBzYCAAzfAgsgASAERgRAQc4AIQMM3wILAkACQAJAAkAgAS0AACIAQSByIAAgAEHBAGtB/wFxQRpJG0H/AXFB4wBrDhMAvAK8ArwCvAK8ArwCvAK8ArwCvAK8ArwCAbwCvAK8AgIDvAILIAFBAWohAUHBACEDDMgCCyABQQFqIQFBwgAhAwzHAgsgAUEBaiEBQcMAIQMMxgILIAFBAWohAUHEACEDDMUCCyABIARHBEAgAkENNgIIIAIgATYCBEHFACEDDMUCC0HPACEDDN0CCwJAAkAgAS0AAEEKaw4EAZABkAEAkAELIAFBAWohAQtBKCEDDMMCCyABIARGBEBB0QAhAwzcAgsgAS0AAEEgRw0AIAFBAWohASACLQAtQQFxRQ3QAQtBFyEDDMECCyABIARHDcsBQdIAIQMM2QILQdMAIQMgASAERg3YAiACKAIAIgAgBCABa2ohBiABIABrQQFqIQUDQCABLQAAIABB1sIAai0AAEcNxwEgAEEBRg3KASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBjYCAAzYAgsgASAERgRAQdUAIQMM2AILIAEtAABBCkcNwgEgAUEBaiEBDMoBCyABIARGBEBB1gAhAwzXAgsCQAJAIAEtAABBCmsOBADDAcMBAcMBCyABQQFqIQEMygELIAFBAWohAUHKACEDDL0CC0EAIQACQCACKAI4IgNFDQAgAygCPCIDRQ0AIAIgAxEAACEACyAADb8BQc0AIQMMvAILIAItAClBIkYNzwIMiQELIAQgASIFRgRAQdsAIQMM1AILQQAhAEEBIQFBASEGQQAhAwJAAn8CQAJAAkACQAJAAkACQCAFLQAAQTBrDgrFAcQBAAECAwQFBgjDAQtBAgwGC0EDDAULQQQMBAtBBQwDC0EGDAILQQcMAQtBCAshA0EAIQFBACEGDL0BC0EJIQNBASEAQQAhAUEAIQYMvAELIAEgBEYEQEHdACEDDNMCCyABLQAAQS5HDbgBIAFBAWohAQyIAQsgASAERw22AUHfACEDDNECCyABIARHBEAgAkEONgIIIAIgATYCBEHQACEDDLgCC0HgACEDDNACC0HhACEDIAEgBEYNzwIgAigCACIAIAQgAWtqIQUgASAAa0EDaiEGA0AgAS0AACAAQeLCAGotAABHDbEBIABBA0YNswEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMzwILQeIAIQMgASAERg3OAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYDQCABLQAAIABB5sIAai0AAEcNsAEgAEECRg2vASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAzOAgtB4wAhAyABIARGDc0CIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgNAIAEtAAAgAEHpwgBqLQAARw2vASAAQQNGDa0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADM0CCyABIARGBEBB5QAhAwzNAgsgAUEBaiEBQQAhAAJAIAIoAjgiA0UNACADKAIwIgNFDQAgAiADEQAAIQALIAANqgFB1gAhAwyzAgsgASAERwRAA0AgAS0AACIAQSBHBEACQAJAAkAgAEHIAGsOCwABswGzAbMBswGzAbMBswGzAQKzAQsgAUEBaiEBQdIAIQMMtwILIAFBAWohAUHTACEDDLYCCyABQQFqIQFB1AAhAwy1AgsgBCABQQFqIgFHDQALQeQAIQMMzAILQeQAIQMMywILA0AgAS0AAEHwwgBqLQAAIgBBAUcEQCAAQQJrDgOnAaYBpQGkAQsgBCABQQFqIgFHDQALQeYAIQMMygILIAFBAWogASAERw0CGkHnACEDDMkCCwNAIAEtAABB8MQAai0AACIAQQFHBEACQCAAQQJrDgSiAaEBoAEAnwELQdcAIQMMsQILIAQgAUEBaiIBRw0AC0HoACEDDMgCCyABIARGBEBB6QAhAwzIAgsCQCABLQAAIgBBCmsOGrcBmwGbAbQBmwGbAZsBmwGbAZsBmwGbAZsBmwGbAZsBmwGbAZsBmwGbAZsBpAGbAZsBAJkBCyABQQFqCyEBQQYhAwytAgsDQCABLQAAQfDGAGotAABBAUcNfSAEIAFBAWoiAUcNAAtB6gAhAwzFAgsgAUEBaiABIARHDQIaQesAIQMMxAILIAEgBEYEQEHsACEDDMQCCyABQQFqDAELIAEgBEYEQEHtACEDDMMCCyABQQFqCyEBQQQhAwyoAgsgASAERgRAQe4AIQMMwQILAkACQAJAIAEtAABB8MgAai0AAEEBaw4HkAGPAY4BAHwBAo0BCyABQQFqIQEMCwsgAUEBagyTAQtBACEDIAJBADYCHCACQZsSNgIQIAJBBzYCDCACIAFBAWo2AhQMwAILAkADQCABLQAAQfDIAGotAAAiAEEERwRAAkACQCAAQQFrDgeUAZMBkgGNAQAEAY0BC0HaACEDDKoCCyABQQFqIQFB3AAhAwypAgsgBCABQQFqIgFHDQALQe8AIQMMwAILIAFBAWoMkQELIAQgASIARgRAQfAAIQMMvwILIAAtAABBL0cNASAAQQFqIQEMBwsgBCABIgBGBEBB8QAhAwy+AgsgAC0AACIBQS9GBEAgAEEBaiEBQd0AIQMMpQILIAFBCmsiA0EWSw0AIAAhAUEBIAN0QYmAgAJxDfkBC0EAIQMgAkEANgIcIAIgADYCFCACQYwcNgIQIAJBBzYCDAy8AgsgASAERwRAIAFBAWohAUHeACEDDKMCC0HyACEDDLsCCyABIARGBEBB9AAhAwy7AgsCQCABLQAAQfDMAGotAABBAWsOA/cBcwCCAQtB4QAhAwyhAgsgASAERwRAA0AgAS0AAEHwygBqLQAAIgBBA0cEQAJAIABBAWsOAvkBAIUBC0HfACEDDKMCCyAEIAFBAWoiAUcNAAtB8wAhAwy6AgtB8wAhAwy5AgsgASAERwRAIAJBDzYCCCACIAE2AgRB4AAhAwygAgtB9QAhAwy4AgsgASAERgRAQfYAIQMMuAILIAJBDzYCCCACIAE2AgQLQQMhAwydAgsDQCABLQAAQSBHDY4CIAQgAUEBaiIBRw0AC0H3ACEDDLUCCyABIARGBEBB+AAhAwy1AgsgAS0AAEEgRw16IAFBAWohAQxbC0EAIQACQCACKAI4IgNFDQAgAygCOCIDRQ0AIAIgAxEAACEACyAADXgMgAILIAEgBEYEQEH6ACEDDLMCCyABLQAAQcwARw10IAFBAWohAUETDHYLQfsAIQMgASAERg2xAiACKAIAIgAgBCABa2ohBSABIABrQQVqIQYDQCABLQAAIABB8M4Aai0AAEcNcyAAQQVGDXUgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMsQILIAEgBEYEQEH8ACEDDLECCwJAAkAgAS0AAEHDAGsODAB0dHR0dHR0dHR0AXQLIAFBAWohAUHmACEDDJgCCyABQQFqIQFB5wAhAwyXAgtB/QAhAyABIARGDa8CIAIoAgAiACAEIAFraiEFIAEgAGtBAmohBgJAA0AgAS0AACAAQe3PAGotAABHDXIgAEECRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADLACCyACQQA2AgAgBkEBaiEBQRAMcwtB/gAhAyABIARGDa4CIAIoAgAiACAEIAFraiEFIAEgAGtBBWohBgJAA0AgAS0AACAAQfbOAGotAABHDXEgAEEFRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADK8CCyACQQA2AgAgBkEBaiEBQRYMcgtB/wAhAyABIARGDa0CIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgJAA0AgAS0AACAAQfzOAGotAABHDXAgAEEDRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADK4CCyACQQA2AgAgBkEBaiEBQQUMcQsgASAERgRAQYABIQMMrQILIAEtAABB2QBHDW4gAUEBaiEBQQgMcAsgASAERgRAQYEBIQMMrAILAkACQCABLQAAQc4Aaw4DAG8BbwsgAUEBaiEBQesAIQMMkwILIAFBAWohAUHsACEDDJICCyABIARGBEBBggEhAwyrAgsCQAJAIAEtAABByABrDggAbm5ubm5uAW4LIAFBAWohAUHqACEDDJICCyABQQFqIQFB7QAhAwyRAgtBgwEhAyABIARGDakCIAIoAgAiACAEIAFraiEFIAEgAGtBAmohBgJAA0AgAS0AACAAQYDPAGotAABHDWwgAEECRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADKoCCyACQQA2AgAgBkEBaiEBQQAMbQtBhAEhAyABIARGDagCIAIoAgAiACAEIAFraiEFIAEgAGtBBGohBgJAA0AgAS0AACAAQYPPAGotAABHDWsgAEEERg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADKkCCyACQQA2AgAgBkEBaiEBQSMMbAsgASAERgRAQYUBIQMMqAILAkACQCABLQAAQcwAaw4IAGtra2trawFrCyABQQFqIQFB7wAhAwyPAgsgAUEBaiEBQfAAIQMMjgILIAEgBEYEQEGGASEDDKcCCyABLQAAQcUARw1oIAFBAWohAQxgC0GHASEDIAEgBEYNpQIgAigCACIAIAQgAWtqIQUgASAAa0EDaiEGAkADQCABLQAAIABBiM8Aai0AAEcNaCAAQQNGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMpgILIAJBADYCACAGQQFqIQFBLQxpC0GIASEDIAEgBEYNpAIgAigCACIAIAQgAWtqIQUgASAAa0EIaiEGAkADQCABLQAAIABB0M8Aai0AAEcNZyAAQQhGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMpQILIAJBADYCACAGQQFqIQFBKQxoCyABIARGBEBBiQEhAwykAgtBASABLQAAQd8ARw1nGiABQQFqIQEMXgtBigEhAyABIARGDaICIAIoAgAiACAEIAFraiEFIAEgAGtBAWohBgNAIAEtAAAgAEGMzwBqLQAARw1kIABBAUYN+gEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMogILQYsBIQMgASAERg2hAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEGOzwBqLQAARw1kIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyiAgsgAkEANgIAIAZBAWohAUECDGULQYwBIQMgASAERg2gAiACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEHwzwBqLQAARw1jIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyhAgsgAkEANgIAIAZBAWohAUEfDGQLQY0BIQMgASAERg2fAiACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEHyzwBqLQAARw1iIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAygAgsgAkEANgIAIAZBAWohAUEJDGMLIAEgBEYEQEGOASEDDJ8CCwJAAkAgAS0AAEHJAGsOBwBiYmJiYgFiCyABQQFqIQFB+AAhAwyGAgsgAUEBaiEBQfkAIQMMhQILQY8BIQMgASAERg2dAiACKAIAIgAgBCABa2ohBSABIABrQQVqIQYCQANAIAEtAAAgAEGRzwBqLQAARw1gIABBBUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyeAgsgAkEANgIAIAZBAWohAUEYDGELQZABIQMgASAERg2cAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEGXzwBqLQAARw1fIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAydAgsgAkEANgIAIAZBAWohAUEXDGALQZEBIQMgASAERg2bAiACKAIAIgAgBCABa2ohBSABIABrQQZqIQYCQANAIAEtAAAgAEGazwBqLQAARw1eIABBBkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAycAgsgAkEANgIAIAZBAWohAUEVDF8LQZIBIQMgASAERg2aAiACKAIAIgAgBCABa2ohBSABIABrQQVqIQYCQANAIAEtAAAgAEGhzwBqLQAARw1dIABBBUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAybAgsgAkEANgIAIAZBAWohAUEeDF4LIAEgBEYEQEGTASEDDJoCCyABLQAAQcwARw1bIAFBAWohAUEKDF0LIAEgBEYEQEGUASEDDJkCCwJAAkAgAS0AAEHBAGsODwBcXFxcXFxcXFxcXFxcAVwLIAFBAWohAUH+ACEDDIACCyABQQFqIQFB/wAhAwz/AQsgASAERgRAQZUBIQMMmAILAkACQCABLQAAQcEAaw4DAFsBWwsgAUEBaiEBQf0AIQMM/wELIAFBAWohAUGAASEDDP4BC0GWASEDIAEgBEYNlgIgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABBp88Aai0AAEcNWSAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMlwILIAJBADYCACAGQQFqIQFBCwxaCyABIARGBEBBlwEhAwyWAgsCQAJAAkACQCABLQAAQS1rDiMAW1tbW1tbW1tbW1tbW1tbW1tbW1tbW1sBW1tbW1sCW1tbA1sLIAFBAWohAUH7ACEDDP8BCyABQQFqIQFB/AAhAwz+AQsgAUEBaiEBQYEBIQMM/QELIAFBAWohAUGCASEDDPwBC0GYASEDIAEgBEYNlAIgAigCACIAIAQgAWtqIQUgASAAa0EEaiEGAkADQCABLQAAIABBqc8Aai0AAEcNVyAAQQRGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMlQILIAJBADYCACAGQQFqIQFBGQxYC0GZASEDIAEgBEYNkwIgAigCACIAIAQgAWtqIQUgASAAa0EFaiEGAkADQCABLQAAIABBrs8Aai0AAEcNViAAQQVGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMlAILIAJBADYCACAGQQFqIQFBBgxXC0GaASEDIAEgBEYNkgIgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABBtM8Aai0AAEcNVSAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMkwILIAJBADYCACAGQQFqIQFBHAxWC0GbASEDIAEgBEYNkQIgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABBts8Aai0AAEcNVCAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMkgILIAJBADYCACAGQQFqIQFBJwxVCyABIARGBEBBnAEhAwyRAgsCQAJAIAEtAABB1ABrDgIAAVQLIAFBAWohAUGGASEDDPgBCyABQQFqIQFBhwEhAwz3AQtBnQEhAyABIARGDY8CIAIoAgAiACAEIAFraiEFIAEgAGtBAWohBgJAA0AgAS0AACAAQbjPAGotAABHDVIgAEEBRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADJACCyACQQA2AgAgBkEBaiEBQSYMUwtBngEhAyABIARGDY4CIAIoAgAiACAEIAFraiEFIAEgAGtBAWohBgJAA0AgAS0AACAAQbrPAGotAABHDVEgAEEBRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADI8CCyACQQA2AgAgBkEBaiEBQQMMUgtBnwEhAyABIARGDY0CIAIoAgAiACAEIAFraiEFIAEgAGtBAmohBgJAA0AgAS0AACAAQe3PAGotAABHDVAgAEECRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADI4CCyACQQA2AgAgBkEBaiEBQQwMUQtBoAEhAyABIARGDYwCIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgJAA0AgAS0AACAAQbzPAGotAABHDU8gAEEDRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADI0CCyACQQA2AgAgBkEBaiEBQQ0MUAsgASAERgRAQaEBIQMMjAILAkACQCABLQAAQcYAaw4LAE9PT09PT09PTwFPCyABQQFqIQFBiwEhAwzzAQsgAUEBaiEBQYwBIQMM8gELIAEgBEYEQEGiASEDDIsCCyABLQAAQdAARw1MIAFBAWohAQxGCyABIARGBEBBowEhAwyKAgsCQAJAIAEtAABByQBrDgcBTU1NTU0ATQsgAUEBaiEBQY4BIQMM8QELIAFBAWohAUEiDE0LQaQBIQMgASAERg2IAiACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEHAzwBqLQAARw1LIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyJAgsgAkEANgIAIAZBAWohAUEdDEwLIAEgBEYEQEGlASEDDIgCCwJAAkAgAS0AAEHSAGsOAwBLAUsLIAFBAWohAUGQASEDDO8BCyABQQFqIQFBBAxLCyABIARGBEBBpgEhAwyHAgsCQAJAAkACQAJAIAEtAABBwQBrDhUATU1NTU1NTU1NTQFNTQJNTQNNTQRNCyABQQFqIQFBiAEhAwzxAQsgAUEBaiEBQYkBIQMM8AELIAFBAWohAUGKASEDDO8BCyABQQFqIQFBjwEhAwzuAQsgAUEBaiEBQZEBIQMM7QELQacBIQMgASAERg2FAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHtzwBqLQAARw1IIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyGAgsgAkEANgIAIAZBAWohAUERDEkLQagBIQMgASAERg2EAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHCzwBqLQAARw1HIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyFAgsgAkEANgIAIAZBAWohAUEsDEgLQakBIQMgASAERg2DAiACKAIAIgAgBCABa2ohBSABIABrQQRqIQYCQANAIAEtAAAgAEHFzwBqLQAARw1GIABBBEYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyEAgsgAkEANgIAIAZBAWohAUErDEcLQaoBIQMgASAERg2CAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHKzwBqLQAARw1FIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyDAgsgAkEANgIAIAZBAWohAUEUDEYLIAEgBEYEQEGrASEDDIICCwJAAkACQAJAIAEtAABBwgBrDg8AAQJHR0dHR0dHR0dHRwNHCyABQQFqIQFBkwEhAwzrAQsgAUEBaiEBQZQBIQMM6gELIAFBAWohAUGVASEDDOkBCyABQQFqIQFBlgEhAwzoAQsgASAERgRAQawBIQMMgQILIAEtAABBxQBHDUIgAUEBaiEBDD0LQa0BIQMgASAERg3/ASACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHNzwBqLQAARw1CIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyAAgsgAkEANgIAIAZBAWohAUEODEMLIAEgBEYEQEGuASEDDP8BCyABLQAAQdAARw1AIAFBAWohAUElDEILQa8BIQMgASAERg39ASACKAIAIgAgBCABa2ohBSABIABrQQhqIQYCQANAIAEtAAAgAEHQzwBqLQAARw1AIABBCEYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAz+AQsgAkEANgIAIAZBAWohAUEqDEELIAEgBEYEQEGwASEDDP0BCwJAAkAgAS0AAEHVAGsOCwBAQEBAQEBAQEABQAsgAUEBaiEBQZoBIQMM5AELIAFBAWohAUGbASEDDOMBCyABIARGBEBBsQEhAwz8AQsCQAJAIAEtAABBwQBrDhQAPz8/Pz8/Pz8/Pz8/Pz8/Pz8/AT8LIAFBAWohAUGZASEDDOMBCyABQQFqIQFBnAEhAwziAQtBsgEhAyABIARGDfoBIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgJAA0AgAS0AACAAQdnPAGotAABHDT0gAEEDRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADPsBCyACQQA2AgAgBkEBaiEBQSEMPgtBswEhAyABIARGDfkBIAIoAgAiACAEIAFraiEFIAEgAGtBBmohBgJAA0AgAS0AACAAQd3PAGotAABHDTwgAEEGRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADPoBCyACQQA2AgAgBkEBaiEBQRoMPQsgASAERgRAQbQBIQMM+QELAkACQAJAIAEtAABBxQBrDhEAPT09PT09PT09AT09PT09Aj0LIAFBAWohAUGdASEDDOEBCyABQQFqIQFBngEhAwzgAQsgAUEBaiEBQZ8BIQMM3wELQbUBIQMgASAERg33ASACKAIAIgAgBCABa2ohBSABIABrQQVqIQYCQANAIAEtAAAgAEHkzwBqLQAARw06IABBBUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAz4AQsgAkEANgIAIAZBAWohAUEoDDsLQbYBIQMgASAERg32ASACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHqzwBqLQAARw05IABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAz3AQsgAkEANgIAIAZBAWohAUEHDDoLIAEgBEYEQEG3ASEDDPYBCwJAAkAgAS0AAEHFAGsODgA5OTk5OTk5OTk5OTkBOQsgAUEBaiEBQaEBIQMM3QELIAFBAWohAUGiASEDDNwBC0G4ASEDIAEgBEYN9AEgAigCACIAIAQgAWtqIQUgASAAa0ECaiEGAkADQCABLQAAIABB7c8Aai0AAEcNNyAAQQJGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM9QELIAJBADYCACAGQQFqIQFBEgw4C0G5ASEDIAEgBEYN8wEgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABB8M8Aai0AAEcNNiAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM9AELIAJBADYCACAGQQFqIQFBIAw3C0G6ASEDIAEgBEYN8gEgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABB8s8Aai0AAEcNNSAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM8wELIAJBADYCACAGQQFqIQFBDww2CyABIARGBEBBuwEhAwzyAQsCQAJAIAEtAABByQBrDgcANTU1NTUBNQsgAUEBaiEBQaUBIQMM2QELIAFBAWohAUGmASEDDNgBC0G8ASEDIAEgBEYN8AEgAigCACIAIAQgAWtqIQUgASAAa0EHaiEGAkADQCABLQAAIABB9M8Aai0AAEcNMyAAQQdGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM8QELIAJBADYCACAGQQFqIQFBGww0CyABIARGBEBBvQEhAwzwAQsCQAJAAkAgAS0AAEHCAGsOEgA0NDQ0NDQ0NDQBNDQ0NDQ0AjQLIAFBAWohAUGkASEDDNgBCyABQQFqIQFBpwEhAwzXAQsgAUEBaiEBQagBIQMM1gELIAEgBEYEQEG+ASEDDO8BCyABLQAAQc4ARw0wIAFBAWohAQwsCyABIARGBEBBvwEhAwzuAQsCQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCABLQAAQcEAaw4VAAECAz8EBQY/Pz8HCAkKCz8MDQ4PPwsgAUEBaiEBQegAIQMM4wELIAFBAWohAUHpACEDDOIBCyABQQFqIQFB7gAhAwzhAQsgAUEBaiEBQfIAIQMM4AELIAFBAWohAUHzACEDDN8BCyABQQFqIQFB9gAhAwzeAQsgAUEBaiEBQfcAIQMM3QELIAFBAWohAUH6ACEDDNwBCyABQQFqIQFBgwEhAwzbAQsgAUEBaiEBQYQBIQMM2gELIAFBAWohAUGFASEDDNkBCyABQQFqIQFBkgEhAwzYAQsgAUEBaiEBQZgBIQMM1wELIAFBAWohAUGgASEDDNYBCyABQQFqIQFBowEhAwzVAQsgAUEBaiEBQaoBIQMM1AELIAEgBEcEQCACQRA2AgggAiABNgIEQasBIQMM1AELQcABIQMM7AELQQAhAAJAIAIoAjgiA0UNACADKAI0IgNFDQAgAiADEQAAIQALIABFDV4gAEEVRw0HIAJB0QA2AhwgAiABNgIUIAJBsBc2AhAgAkEVNgIMQQAhAwzrAQsgAUEBaiABIARHDQgaQcIBIQMM6gELA0ACQCABLQAAQQprDgQIAAALAAsgBCABQQFqIgFHDQALQcMBIQMM6QELIAEgBEcEQCACQRE2AgggAiABNgIEQQEhAwzQAQtBxAEhAwzoAQsgASAERgRAQcUBIQMM6AELAkACQCABLQAAQQprDgQBKCgAKAsgAUEBagwJCyABQQFqDAULIAEgBEYEQEHGASEDDOcBCwJAAkAgAS0AAEEKaw4XAQsLAQsLCwsLCwsLCwsLCwsLCwsLCwALCyABQQFqIQELQbABIQMMzQELIAEgBEYEQEHIASEDDOYBCyABLQAAQSBHDQkgAkEAOwEyIAFBAWohAUGzASEDDMwBCwNAIAEhAAJAIAEgBEcEQCABLQAAQTBrQf8BcSIDQQpJDQEMJwtBxwEhAwzmAQsCQCACLwEyIgFBmTNLDQAgAiABQQpsIgU7ATIgBUH+/wNxIANB//8Dc0sNACAAQQFqIQEgAiADIAVqIgM7ATIgA0H//wNxQegHSQ0BCwtBACEDIAJBADYCHCACQcEJNgIQIAJBDTYCDCACIABBAWo2AhQM5AELIAJBADYCHCACIAE2AhQgAkHwDDYCECACQRs2AgxBACEDDOMBCyACKAIEIQAgAkEANgIEIAIgACABECYiAA0BIAFBAWoLIQFBrQEhAwzIAQsgAkHBATYCHCACIAA2AgwgAiABQQFqNgIUQQAhAwzgAQsgAigCBCEAIAJBADYCBCACIAAgARAmIgANASABQQFqCyEBQa4BIQMMxQELIAJBwgE2AhwgAiAANgIMIAIgAUEBajYCFEEAIQMM3QELIAJBADYCHCACIAE2AhQgAkGXCzYCECACQQ02AgxBACEDDNwBCyACQQA2AhwgAiABNgIUIAJB4xA2AhAgAkEJNgIMQQAhAwzbAQsgAkECOgAoDKwBC0EAIQMgAkEANgIcIAJBrws2AhAgAkECNgIMIAIgAUEBajYCFAzZAQtBAiEDDL8BC0ENIQMMvgELQSYhAwy9AQtBFSEDDLwBC0EWIQMMuwELQRghAwy6AQtBHCEDDLkBC0EdIQMMuAELQSAhAwy3AQtBISEDDLYBC0EjIQMMtQELQcYAIQMMtAELQS4hAwyzAQtBPSEDDLIBC0HLACEDDLEBC0HOACEDDLABC0HYACEDDK8BC0HZACEDDK4BC0HbACEDDK0BC0HxACEDDKwBC0H0ACEDDKsBC0GNASEDDKoBC0GXASEDDKkBC0GpASEDDKgBC0GvASEDDKcBC0GxASEDDKYBCyACQQA2AgALQQAhAyACQQA2AhwgAiABNgIUIAJB8Rs2AhAgAkEGNgIMDL0BCyACQQA2AgAgBkEBaiEBQSQLOgApIAIoAgQhACACQQA2AgQgAiAAIAEQJyIARQRAQeUAIQMMowELIAJB+QA2AhwgAiABNgIUIAIgADYCDEEAIQMMuwELIABBFUcEQCACQQA2AhwgAiABNgIUIAJBzA42AhAgAkEgNgIMQQAhAwy7AQsgAkH4ADYCHCACIAE2AhQgAkHKGDYCECACQRU2AgxBACEDDLoBCyACQQA2AhwgAiABNgIUIAJBjhs2AhAgAkEGNgIMQQAhAwy5AQsgAkEANgIcIAIgATYCFCACQf4RNgIQIAJBBzYCDEEAIQMMuAELIAJBADYCHCACIAE2AhQgAkGMHDYCECACQQc2AgxBACEDDLcBCyACQQA2AhwgAiABNgIUIAJBww82AhAgAkEHNgIMQQAhAwy2AQsgAkEANgIcIAIgATYCFCACQcMPNgIQIAJBBzYCDEEAIQMMtQELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0RIAJB5QA2AhwgAiABNgIUIAIgADYCDEEAIQMMtAELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0gIAJB0wA2AhwgAiABNgIUIAIgADYCDEEAIQMMswELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0iIAJB0gA2AhwgAiABNgIUIAIgADYCDEEAIQMMsgELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0OIAJB5QA2AhwgAiABNgIUIAIgADYCDEEAIQMMsQELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0dIAJB0wA2AhwgAiABNgIUIAIgADYCDEEAIQMMsAELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0fIAJB0gA2AhwgAiABNgIUIAIgADYCDEEAIQMMrwELIABBP0cNASABQQFqCyEBQQUhAwyUAQtBACEDIAJBADYCHCACIAE2AhQgAkH9EjYCECACQQc2AgwMrAELIAJBADYCHCACIAE2AhQgAkHcCDYCECACQQc2AgxBACEDDKsBCyACKAIEIQAgAkEANgIEIAIgACABECUiAEUNByACQeUANgIcIAIgATYCFCACIAA2AgxBACEDDKoBCyACKAIEIQAgAkEANgIEIAIgACABECUiAEUNFiACQdMANgIcIAIgATYCFCACIAA2AgxBACEDDKkBCyACKAIEIQAgAkEANgIEIAIgACABECUiAEUNGCACQdIANgIcIAIgATYCFCACIAA2AgxBACEDDKgBCyACQQA2AhwgAiABNgIUIAJBxgo2AhAgAkEHNgIMQQAhAwynAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDQMgAkHlADYCHCACIAE2AhQgAiAANgIMQQAhAwymAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDRIgAkHTADYCHCACIAE2AhQgAiAANgIMQQAhAwylAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDRQgAkHSADYCHCACIAE2AhQgAiAANgIMQQAhAwykAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDQAgAkHlADYCHCACIAE2AhQgAiAANgIMQQAhAwyjAQtB1QAhAwyJAQsgAEEVRwRAIAJBADYCHCACIAE2AhQgAkG5DTYCECACQRo2AgxBACEDDKIBCyACQeQANgIcIAIgATYCFCACQeMXNgIQIAJBFTYCDEEAIQMMoQELIAJBADYCACAGQQFqIQEgAi0AKSIAQSNrQQtJDQQCQCAAQQZLDQBBASAAdEHKAHFFDQAMBQtBACEDIAJBADYCHCACIAE2AhQgAkH3CTYCECACQQg2AgwMoAELIAJBADYCACAGQQFqIQEgAi0AKUEhRg0DIAJBADYCHCACIAE2AhQgAkGbCjYCECACQQg2AgxBACEDDJ8BCyACQQA2AgALQQAhAyACQQA2AhwgAiABNgIUIAJBkDM2AhAgAkEINgIMDJ0BCyACQQA2AgAgBkEBaiEBIAItAClBI0kNACACQQA2AhwgAiABNgIUIAJB0wk2AhAgAkEINgIMQQAhAwycAQtB0QAhAwyCAQsgAS0AAEEwayIAQf8BcUEKSQRAIAIgADoAKiABQQFqIQFBzwAhAwyCAQsgAigCBCEAIAJBADYCBCACIAAgARAoIgBFDYYBIAJB3gA2AhwgAiABNgIUIAIgADYCDEEAIQMMmgELIAIoAgQhACACQQA2AgQgAiAAIAEQKCIARQ2GASACQdwANgIcIAIgATYCFCACIAA2AgxBACEDDJkBCyACKAIEIQAgAkEANgIEIAIgACAFECgiAEUEQCAFIQEMhwELIAJB2gA2AhwgAiAFNgIUIAIgADYCDAyYAQtBACEBQQEhAwsgAiADOgArIAVBAWohAwJAAkACQCACLQAtQRBxDQACQAJAAkAgAi0AKg4DAQACBAsgBkUNAwwCCyAADQEMAgsgAUUNAQsgAigCBCEAIAJBADYCBCACIAAgAxAoIgBFBEAgAyEBDAILIAJB2AA2AhwgAiADNgIUIAIgADYCDEEAIQMMmAELIAIoAgQhACACQQA2AgQgAiAAIAMQKCIARQRAIAMhAQyHAQsgAkHZADYCHCACIAM2AhQgAiAANgIMQQAhAwyXAQtBzAAhAwx9CyAAQRVHBEAgAkEANgIcIAIgATYCFCACQZQNNgIQIAJBITYCDEEAIQMMlgELIAJB1wA2AhwgAiABNgIUIAJByRc2AhAgAkEVNgIMQQAhAwyVAQtBACEDIAJBADYCHCACIAE2AhQgAkGAETYCECACQQk2AgwMlAELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0AIAJB0wA2AhwgAiABNgIUIAIgADYCDEEAIQMMkwELQckAIQMMeQsgAkEANgIcIAIgATYCFCACQcEoNgIQIAJBBzYCDCACQQA2AgBBACEDDJEBCyACKAIEIQBBACEDIAJBADYCBCACIAAgARAlIgBFDQAgAkHSADYCHCACIAE2AhQgAiAANgIMDJABC0HIACEDDHYLIAJBADYCACAFIQELIAJBgBI7ASogAUEBaiEBQQAhAAJAIAIoAjgiA0UNACADKAIwIgNFDQAgAiADEQAAIQALIAANAQtBxwAhAwxzCyAAQRVGBEAgAkHRADYCHCACIAE2AhQgAkHjFzYCECACQRU2AgxBACEDDIwBC0EAIQMgAkEANgIcIAIgATYCFCACQbkNNgIQIAJBGjYCDAyLAQtBACEDIAJBADYCHCACIAE2AhQgAkGgGTYCECACQR42AgwMigELIAEtAABBOkYEQCACKAIEIQBBACEDIAJBADYCBCACIAAgARApIgBFDQEgAkHDADYCHCACIAA2AgwgAiABQQFqNgIUDIoBC0EAIQMgAkEANgIcIAIgATYCFCACQbERNgIQIAJBCjYCDAyJAQsgAUEBaiEBQTshAwxvCyACQcMANgIcIAIgADYCDCACIAFBAWo2AhQMhwELQQAhAyACQQA2AhwgAiABNgIUIAJB8A42AhAgAkEcNgIMDIYBCyACIAIvATBBEHI7ATAMZgsCQCACLwEwIgBBCHFFDQAgAi0AKEEBRw0AIAItAC1BCHFFDQMLIAIgAEH3+wNxQYAEcjsBMAwECyABIARHBEACQANAIAEtAABBMGsiAEH/AXFBCk8EQEE1IQMMbgsgAikDICIKQpmz5syZs+bMGVYNASACIApCCn4iCjcDICAKIACtQv8BgyILQn+FVg0BIAIgCiALfDcDICAEIAFBAWoiAUcNAAtBOSEDDIUBCyACKAIEIQBBACEDIAJBADYCBCACIAAgAUEBaiIBECoiAA0MDHcLQTkhAwyDAQsgAi0AMEEgcQ0GQcUBIQMMaQtBACEDIAJBADYCBCACIAEgARAqIgBFDQQgAkE6NgIcIAIgADYCDCACIAFBAWo2AhQMgQELIAItAChBAUcNACACLQAtQQhxRQ0BC0E3IQMMZgsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIABEAgAkE7NgIcIAIgADYCDCACIAFBAWo2AhQMfwsgAUEBaiEBDG4LIAJBCDoALAwECyABQQFqIQEMbQtBACEDIAJBADYCHCACIAE2AhQgAkHkEjYCECACQQQ2AgwMewsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIARQ1sIAJBNzYCHCACIAE2AhQgAiAANgIMDHoLIAIgAi8BMEEgcjsBMAtBMCEDDF8LIAJBNjYCHCACIAE2AhQgAiAANgIMDHcLIABBLEcNASABQQFqIQBBASEBAkACQAJAAkACQCACLQAsQQVrDgQDAQIEAAsgACEBDAQLQQIhAQwBC0EEIQELIAJBAToALCACIAIvATAgAXI7ATAgACEBDAELIAIgAi8BMEEIcjsBMCAAIQELQTkhAwxcCyACQQA6ACwLQTQhAwxaCyABIARGBEBBLSEDDHMLAkACQANAAkAgAS0AAEEKaw4EAgAAAwALIAQgAUEBaiIBRw0AC0EtIQMMdAsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIARQ0CIAJBLDYCHCACIAE2AhQgAiAANgIMDHMLIAIoAgQhAEEAIQMgAkEANgIEIAIgACABECoiAEUEQCABQQFqIQEMAgsgAkEsNgIcIAIgADYCDCACIAFBAWo2AhQMcgsgAS0AAEENRgRAIAIoAgQhAEEAIQMgAkEANgIEIAIgACABECoiAEUEQCABQQFqIQEMAgsgAkEsNgIcIAIgADYCDCACIAFBAWo2AhQMcgsgAi0ALUEBcQRAQcQBIQMMWQsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIADQEMZQtBLyEDDFcLIAJBLjYCHCACIAE2AhQgAiAANgIMDG8LQQAhAyACQQA2AhwgAiABNgIUIAJB8BQ2AhAgAkEDNgIMDG4LQQEhAwJAAkACQAJAIAItACxBBWsOBAMBAgAECyACIAIvATBBCHI7ATAMAwtBAiEDDAELQQQhAwsgAkEBOgAsIAIgAi8BMCADcjsBMAtBKiEDDFMLQQAhAyACQQA2AhwgAiABNgIUIAJB4Q82AhAgAkEKNgIMDGsLQQEhAwJAAkACQAJAAkACQCACLQAsQQJrDgcFBAQDAQIABAsgAiACLwEwQQhyOwEwDAMLQQIhAwwBC0EEIQMLIAJBAToALCACIAIvATAgA3I7ATALQSshAwxSC0EAIQMgAkEANgIcIAIgATYCFCACQasSNgIQIAJBCzYCDAxqC0EAIQMgAkEANgIcIAIgATYCFCACQf0NNgIQIAJBHTYCDAxpCyABIARHBEADQCABLQAAQSBHDUggBCABQQFqIgFHDQALQSUhAwxpC0ElIQMMaAsgAi0ALUEBcQRAQcMBIQMMTwsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKSIABEAgAkEmNgIcIAIgADYCDCACIAFBAWo2AhQMaAsgAUEBaiEBDFwLIAFBAWohASACLwEwIgBBgAFxBEBBACEAAkAgAigCOCIDRQ0AIAMoAlQiA0UNACACIAMRAAAhAAsgAEUNBiAAQRVHDR8gAkEFNgIcIAIgATYCFCACQfkXNgIQIAJBFTYCDEEAIQMMZwsCQCAAQaAEcUGgBEcNACACLQAtQQJxDQBBACEDIAJBADYCHCACIAE2AhQgAkGWEzYCECACQQQ2AgwMZwsgAgJ/IAIvATBBFHFBFEYEQEEBIAItAChBAUYNARogAi8BMkHlAEYMAQsgAi0AKUEFRgs6AC5BACEAAkAgAigCOCIDRQ0AIAMoAiQiA0UNACACIAMRAAAhAAsCQAJAAkACQAJAIAAOFgIBAAQEBAQEBAQEBAQEBAQEBAQEBAMECyACQQE6AC4LIAIgAi8BMEHAAHI7ATALQSchAwxPCyACQSM2AhwgAiABNgIUIAJBpRY2AhAgAkEVNgIMQQAhAwxnC0EAIQMgAkEANgIcIAIgATYCFCACQdULNgIQIAJBETYCDAxmC0EAIQACQCACKAI4IgNFDQAgAygCLCIDRQ0AIAIgAxEAACEACyAADQELQQ4hAwxLCyAAQRVGBEAgAkECNgIcIAIgATYCFCACQbAYNgIQIAJBFTYCDEEAIQMMZAtBACEDIAJBADYCHCACIAE2AhQgAkGnDjYCECACQRI2AgwMYwtBACEDIAJBADYCHCACIAE2AhQgAkGqHDYCECACQQ82AgwMYgsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEgCqdqIgEQKyIARQ0AIAJBBTYCHCACIAE2AhQgAiAANgIMDGELQQ8hAwxHC0EAIQMgAkEANgIcIAIgATYCFCACQc0TNgIQIAJBDDYCDAxfC0IBIQoLIAFBAWohAQJAIAIpAyAiC0L//////////w9YBEAgAiALQgSGIAqENwMgDAELQQAhAyACQQA2AhwgAiABNgIUIAJBrQk2AhAgAkEMNgIMDF4LQSQhAwxEC0EAIQMgAkEANgIcIAIgATYCFCACQc0TNgIQIAJBDDYCDAxcCyACKAIEIQBBACEDIAJBADYCBCACIAAgARAsIgBFBEAgAUEBaiEBDFILIAJBFzYCHCACIAA2AgwgAiABQQFqNgIUDFsLIAIoAgQhAEEAIQMgAkEANgIEAkAgAiAAIAEQLCIARQRAIAFBAWohAQwBCyACQRY2AhwgAiAANgIMIAIgAUEBajYCFAxbC0EfIQMMQQtBACEDIAJBADYCHCACIAE2AhQgAkGaDzYCECACQSI2AgwMWQsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQLSIARQRAIAFBAWohAQxQCyACQRQ2AhwgAiAANgIMIAIgAUEBajYCFAxYCyACKAIEIQBBACEDIAJBADYCBAJAIAIgACABEC0iAEUEQCABQQFqIQEMAQsgAkETNgIcIAIgADYCDCACIAFBAWo2AhQMWAtBHiEDDD4LQQAhAyACQQA2AhwgAiABNgIUIAJBxgw2AhAgAkEjNgIMDFYLIAIoAgQhAEEAIQMgAkEANgIEIAIgACABEC0iAEUEQCABQQFqIQEMTgsgAkERNgIcIAIgADYCDCACIAFBAWo2AhQMVQsgAkEQNgIcIAIgATYCFCACIAA2AgwMVAtBACEDIAJBADYCHCACIAE2AhQgAkHGDDYCECACQSM2AgwMUwtBACEDIAJBADYCHCACIAE2AhQgAkHAFTYCECACQQI2AgwMUgsgAigCBCEAQQAhAyACQQA2AgQCQCACIAAgARAtIgBFBEAgAUEBaiEBDAELIAJBDjYCHCACIAA2AgwgAiABQQFqNgIUDFILQRshAww4C0EAIQMgAkEANgIcIAIgATYCFCACQcYMNgIQIAJBIzYCDAxQCyACKAIEIQBBACEDIAJBADYCBAJAIAIgACABECwiAEUEQCABQQFqIQEMAQsgAkENNgIcIAIgADYCDCACIAFBAWo2AhQMUAtBGiEDDDYLQQAhAyACQQA2AhwgAiABNgIUIAJBmg82AhAgAkEiNgIMDE4LIAIoAgQhAEEAIQMgAkEANgIEAkAgAiAAIAEQLCIARQRAIAFBAWohAQwBCyACQQw2AhwgAiAANgIMIAIgAUEBajYCFAxOC0EZIQMMNAtBACEDIAJBADYCHCACIAE2AhQgAkGaDzYCECACQSI2AgwMTAsgAEEVRwRAQQAhAyACQQA2AhwgAiABNgIUIAJBgww2AhAgAkETNgIMDEwLIAJBCjYCHCACIAE2AhQgAkHkFjYCECACQRU2AgxBACEDDEsLIAIoAgQhAEEAIQMgAkEANgIEIAIgACABIAqnaiIBECsiAARAIAJBBzYCHCACIAE2AhQgAiAANgIMDEsLQRMhAwwxCyAAQRVHBEBBACEDIAJBADYCHCACIAE2AhQgAkHaDTYCECACQRQ2AgwMSgsgAkEeNgIcIAIgATYCFCACQfkXNgIQIAJBFTYCDEEAIQMMSQtBACEAAkAgAigCOCIDRQ0AIAMoAiwiA0UNACACIAMRAAAhAAsgAEUNQSAAQRVGBEAgAkEDNgIcIAIgATYCFCACQbAYNgIQIAJBFTYCDEEAIQMMSQtBACEDIAJBADYCHCACIAE2AhQgAkGnDjYCECACQRI2AgwMSAtBACEDIAJBADYCHCACIAE2AhQgAkHaDTYCECACQRQ2AgwMRwtBACEDIAJBADYCHCACIAE2AhQgAkGnDjYCECACQRI2AgwMRgsgAkEAOgAvIAItAC1BBHFFDT8LIAJBADoALyACQQE6ADRBACEDDCsLQQAhAyACQQA2AhwgAkHkETYCECACQQc2AgwgAiABQQFqNgIUDEMLAkADQAJAIAEtAABBCmsOBAACAgACCyAEIAFBAWoiAUcNAAtB3QEhAwxDCwJAAkAgAi0ANEEBRw0AQQAhAAJAIAIoAjgiA0UNACADKAJYIgNFDQAgAiADEQAAIQALIABFDQAgAEEVRw0BIAJB3AE2AhwgAiABNgIUIAJB1RY2AhAgAkEVNgIMQQAhAwxEC0HBASEDDCoLIAJBADYCHCACIAE2AhQgAkHpCzYCECACQR82AgxBACEDDEILAkACQCACLQAoQQFrDgIEAQALQcABIQMMKQtBuQEhAwwoCyACQQI6AC9BACEAAkAgAigCOCIDRQ0AIAMoAgAiA0UNACACIAMRAAAhAAsgAEUEQEHCASEDDCgLIABBFUcEQCACQQA2AhwgAiABNgIUIAJBpAw2AhAgAkEQNgIMQQAhAwxBCyACQdsBNgIcIAIgATYCFCACQfoWNgIQIAJBFTYCDEEAIQMMQAsgASAERgRAQdoBIQMMQAsgAS0AAEHIAEYNASACQQE6ACgLQawBIQMMJQtBvwEhAwwkCyABIARHBEAgAkEQNgIIIAIgATYCBEG+ASEDDCQLQdkBIQMMPAsgASAERgRAQdgBIQMMPAsgAS0AAEHIAEcNBCABQQFqIQFBvQEhAwwiCyABIARGBEBB1wEhAww7CwJAAkAgAS0AAEHFAGsOEAAFBQUFBQUFBQUFBQUFBQEFCyABQQFqIQFBuwEhAwwiCyABQQFqIQFBvAEhAwwhC0HWASEDIAEgBEYNOSACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEGD0ABqLQAARw0DIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAw6CyACKAIEIQAgAkIANwMAIAIgACAGQQFqIgEQJyIARQRAQcYBIQMMIQsgAkHVATYCHCACIAE2AhQgAiAANgIMQQAhAww5C0HUASEDIAEgBEYNOCACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEGB0ABqLQAARw0CIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAw5CyACQYEEOwEoIAIoAgQhACACQgA3AwAgAiAAIAZBAWoiARAnIgANAwwCCyACQQA2AgALQQAhAyACQQA2AhwgAiABNgIUIAJB2Bs2AhAgAkEINgIMDDYLQboBIQMMHAsgAkHTATYCHCACIAE2AhQgAiAANgIMQQAhAww0C0EAIQACQCACKAI4IgNFDQAgAygCOCIDRQ0AIAIgAxEAACEACyAARQ0AIABBFUYNASACQQA2AhwgAiABNgIUIAJBzA42AhAgAkEgNgIMQQAhAwwzC0HkACEDDBkLIAJB+AA2AhwgAiABNgIUIAJByhg2AhAgAkEVNgIMQQAhAwwxC0HSASEDIAQgASIARg0wIAQgAWsgAigCACIBaiEFIAAgAWtBBGohBgJAA0AgAC0AACABQfzPAGotAABHDQEgAUEERg0DIAFBAWohASAEIABBAWoiAEcNAAsgAiAFNgIADDELIAJBADYCHCACIAA2AhQgAkGQMzYCECACQQg2AgwgAkEANgIAQQAhAwwwCyABIARHBEAgAkEONgIIIAIgATYCBEG3ASEDDBcLQdEBIQMMLwsgAkEANgIAIAZBAWohAQtBuAEhAwwUCyABIARGBEBB0AEhAwwtCyABLQAAQTBrIgBB/wFxQQpJBEAgAiAAOgAqIAFBAWohAUG2ASEDDBQLIAIoAgQhACACQQA2AgQgAiAAIAEQKCIARQ0UIAJBzwE2AhwgAiABNgIUIAIgADYCDEEAIQMMLAsgASAERgRAQc4BIQMMLAsCQCABLQAAQS5GBEAgAUEBaiEBDAELIAIoAgQhACACQQA2AgQgAiAAIAEQKCIARQ0VIAJBzQE2AhwgAiABNgIUIAIgADYCDEEAIQMMLAtBtQEhAwwSCyAEIAEiBUYEQEHMASEDDCsLQQAhAEEBIQFBASEGQQAhAwJAAkACQAJAAkACfwJAAkACQAJAAkACQAJAIAUtAABBMGsOCgoJAAECAwQFBggLC0ECDAYLQQMMBQtBBAwEC0EFDAMLQQYMAgtBBwwBC0EICyEDQQAhAUEAIQYMAgtBCSEDQQEhAEEAIQFBACEGDAELQQAhAUEBIQMLIAIgAzoAKyAFQQFqIQMCQAJAIAItAC1BEHENAAJAAkACQCACLQAqDgMBAAIECyAGRQ0DDAILIAANAQwCCyABRQ0BCyACKAIEIQAgAkEANgIEIAIgACADECgiAEUEQCADIQEMAwsgAkHJATYCHCACIAM2AhQgAiAANgIMQQAhAwwtCyACKAIEIQAgAkEANgIEIAIgACADECgiAEUEQCADIQEMGAsgAkHKATYCHCACIAM2AhQgAiAANgIMQQAhAwwsCyACKAIEIQAgAkEANgIEIAIgACAFECgiAEUEQCAFIQEMFgsgAkHLATYCHCACIAU2AhQgAiAANgIMDCsLQbQBIQMMEQtBACEAAkAgAigCOCIDRQ0AIAMoAjwiA0UNACACIAMRAAAhAAsCQCAABEAgAEEVRg0BIAJBADYCHCACIAE2AhQgAkGUDTYCECACQSE2AgxBACEDDCsLQbIBIQMMEQsgAkHIATYCHCACIAE2AhQgAkHJFzYCECACQRU2AgxBACEDDCkLIAJBADYCACAGQQFqIQFB9QAhAwwPCyACLQApQQVGBEBB4wAhAwwPC0HiACEDDA4LIAAhASACQQA2AgALIAJBADoALEEJIQMMDAsgAkEANgIAIAdBAWohAUHAACEDDAsLQQELOgAsIAJBADYCACAGQQFqIQELQSkhAwwIC0E4IQMMBwsCQCABIARHBEADQCABLQAAQYA+ai0AACIAQQFHBEAgAEECRw0DIAFBAWohAQwFCyAEIAFBAWoiAUcNAAtBPiEDDCELQT4hAwwgCwsgAkEAOgAsDAELQQshAwwEC0E6IQMMAwsgAUEBaiEBQS0hAwwCCyACIAE6ACwgAkEANgIAIAZBAWohAUEMIQMMAQsgAkEANgIAIAZBAWohAUEKIQMMAAsAC0EAIQMgAkEANgIcIAIgATYCFCACQc0QNgIQIAJBCTYCDAwXC0EAIQMgAkEANgIcIAIgATYCFCACQekKNgIQIAJBCTYCDAwWC0EAIQMgAkEANgIcIAIgATYCFCACQbcQNgIQIAJBCTYCDAwVC0EAIQMgAkEANgIcIAIgATYCFCACQZwRNgIQIAJBCTYCDAwUC0EAIQMgAkEANgIcIAIgATYCFCACQc0QNgIQIAJBCTYCDAwTC0EAIQMgAkEANgIcIAIgATYCFCACQekKNgIQIAJBCTYCDAwSC0EAIQMgAkEANgIcIAIgATYCFCACQbcQNgIQIAJBCTYCDAwRC0EAIQMgAkEANgIcIAIgATYCFCACQZwRNgIQIAJBCTYCDAwQC0EAIQMgAkEANgIcIAIgATYCFCACQZcVNgIQIAJBDzYCDAwPC0EAIQMgAkEANgIcIAIgATYCFCACQZcVNgIQIAJBDzYCDAwOC0EAIQMgAkEANgIcIAIgATYCFCACQcASNgIQIAJBCzYCDAwNC0EAIQMgAkEANgIcIAIgATYCFCACQZUJNgIQIAJBCzYCDAwMC0EAIQMgAkEANgIcIAIgATYCFCACQeEPNgIQIAJBCjYCDAwLC0EAIQMgAkEANgIcIAIgATYCFCACQfsPNgIQIAJBCjYCDAwKC0EAIQMgAkEANgIcIAIgATYCFCACQfEZNgIQIAJBAjYCDAwJC0EAIQMgAkEANgIcIAIgATYCFCACQcQUNgIQIAJBAjYCDAwIC0EAIQMgAkEANgIcIAIgATYCFCACQfIVNgIQIAJBAjYCDAwHCyACQQI2AhwgAiABNgIUIAJBnBo2AhAgAkEWNgIMQQAhAwwGC0EBIQMMBQtB1AAhAyABIARGDQQgCEEIaiEJIAIoAgAhBQJAAkAgASAERwRAIAVB2MIAaiEHIAQgBWogAWshACAFQX9zQQpqIgUgAWohBgNAIAEtAAAgBy0AAEcEQEECIQcMAwsgBUUEQEEAIQcgBiEBDAMLIAVBAWshBSAHQQFqIQcgBCABQQFqIgFHDQALIAAhBSAEIQELIAlBATYCACACIAU2AgAMAQsgAkEANgIAIAkgBzYCAAsgCSABNgIEIAgoAgwhACAIKAIIDgMBBAIACwALIAJBADYCHCACQbUaNgIQIAJBFzYCDCACIABBAWo2AhRBACEDDAILIAJBADYCHCACIAA2AhQgAkHKGjYCECACQQk2AgxBACEDDAELIAEgBEYEQEEiIQMMAQsgAkEJNgIIIAIgATYCBEEhIQMLIAhBEGokACADRQRAIAIoAgwhAAwBCyACIAM2AhxBACEAIAIoAgQiAUUNACACIAEgBCACKAIIEQEAIgFFDQAgAiAENgIUIAIgATYCDCABIQALIAALvgIBAn8gAEEAOgAAIABB3ABqIgFBAWtBADoAACAAQQA6AAIgAEEAOgABIAFBA2tBADoAACABQQJrQQA6AAAgAEEAOgADIAFBBGtBADoAAEEAIABrQQNxIgEgAGoiAEEANgIAQdwAIAFrQXxxIgIgAGoiAUEEa0EANgIAAkAgAkEJSQ0AIABBADYCCCAAQQA2AgQgAUEIa0EANgIAIAFBDGtBADYCACACQRlJDQAgAEEANgIYIABBADYCFCAAQQA2AhAgAEEANgIMIAFBEGtBADYCACABQRRrQQA2AgAgAUEYa0EANgIAIAFBHGtBADYCACACIABBBHFBGHIiAmsiAUEgSQ0AIAAgAmohAANAIABCADcDGCAAQgA3AxAgAEIANwMIIABCADcDACAAQSBqIQAgAUEgayIBQR9LDQALCwtWAQF/AkAgACgCDA0AAkACQAJAAkAgAC0ALw4DAQADAgsgACgCOCIBRQ0AIAEoAiwiAUUNACAAIAERAAAiAQ0DC0EADwsACyAAQcMWNgIQQQ4hAQsgAQsaACAAKAIMRQRAIABB0Rs2AhAgAEEVNgIMCwsUACAAKAIMQRVGBEAgAEEANgIMCwsUACAAKAIMQRZGBEAgAEEANgIMCwsHACAAKAIMCwcAIAAoAhALCQAgACABNgIQCwcAIAAoAhQLFwAgAEEkTwRAAAsgAEECdEGgM2ooAgALFwAgAEEuTwRAAAsgAEECdEGwNGooAgALvwkBAX9B6yghAQJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIABB5ABrDvQDY2IAAWFhYWFhYQIDBAVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhBgcICQoLDA0OD2FhYWFhEGFhYWFhYWFhYWFhEWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYRITFBUWFxgZGhthYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhHB0eHyAhIiMkJSYnKCkqKywtLi8wMTIzNDU2YTc4OTphYWFhYWFhYTthYWE8YWFhYT0+P2FhYWFhYWFhQGFhQWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYUJDREVGR0hJSktMTU5PUFFSU2FhYWFhYWFhVFVWV1hZWlthXF1hYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFeYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhX2BhC0HhJw8LQaQhDwtByywPC0H+MQ8LQcAkDwtBqyQPC0GNKA8LQeImDwtBgDAPC0G5Lw8LQdckDwtB7x8PC0HhHw8LQfofDwtB8iAPC0GoLw8LQa4yDwtBiDAPC0HsJw8LQYIiDwtBjh0PC0HQLg8LQcojDwtBxTIPC0HfHA8LQdIcDwtBxCAPC0HXIA8LQaIfDwtB7S4PC0GrMA8LQdQlDwtBzC4PC0H6Lg8LQfwrDwtB0jAPC0HxHQ8LQbsgDwtB9ysPC0GQMQ8LQdcxDwtBoi0PC0HUJw8LQeArDwtBnywPC0HrMQ8LQdUfDwtByjEPC0HeJQ8LQdQeDwtB9BwPC0GnMg8LQbEdDwtBoB0PC0G5MQ8LQbwwDwtBkiEPC0GzJg8LQeksDwtBrB4PC0HUKw8LQfcmDwtBgCYPC0GwIQ8LQf4eDwtBjSMPC0GJLQ8LQfciDwtBoDEPC0GuHw8LQcYlDwtB6B4PC0GTIg8LQcIvDwtBwx0PC0GLLA8LQeEdDwtBjS8PC0HqIQ8LQbQtDwtB0i8PC0HfMg8LQdIyDwtB8DAPC0GpIg8LQfkjDwtBmR4PC0G1LA8LQZswDwtBkjIPC0G2Kw8LQcIiDwtB+DIPC0GeJQ8LQdAiDwtBuh4PC0GBHg8LAAtB1iEhAQsgAQsWACAAIAAtAC1B/gFxIAFBAEdyOgAtCxkAIAAgAC0ALUH9AXEgAUEAR0EBdHI6AC0LGQAgACAALQAtQfsBcSABQQBHQQJ0cjoALQsZACAAIAAtAC1B9wFxIAFBAEdBA3RyOgAtCz4BAn8CQCAAKAI4IgNFDQAgAygCBCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBxhE2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCCCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB9go2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCDCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB7Ro2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCECIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBlRA2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCFCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBqhs2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCGCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB7RM2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCKCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB9gg2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCHCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBwhk2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCICIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBlBQ2AhBBGCEECyAEC1kBAn8CQCAALQAoQQFGDQAgAC8BMiIBQeQAa0HkAEkNACABQcwBRg0AIAFBsAJGDQAgAC8BMCIAQcAAcQ0AQQEhAiAAQYgEcUGABEYNACAAQShxRSECCyACC4wBAQJ/AkACQAJAIAAtACpFDQAgAC0AK0UNACAALwEwIgFBAnFFDQEMAgsgAC8BMCIBQQFxRQ0BC0EBIQIgAC0AKEEBRg0AIAAvATIiAEHkAGtB5ABJDQAgAEHMAUYNACAAQbACRg0AIAFBwABxDQBBACECIAFBiARxQYAERg0AIAFBKHFBAEchAgsgAgtXACAAQRhqQgA3AwAgAEIANwMAIABBOGpCADcDACAAQTBqQgA3AwAgAEEoakIANwMAIABBIGpCADcDACAAQRBqQgA3AwAgAEEIakIANwMAIABB3QE2AhwLBgAgABAyC5otAQt/IwBBEGsiCiQAQaTQACgCACIJRQRAQeTTACgCACIFRQRAQfDTAEJ/NwIAQejTAEKAgISAgIDAADcCAEHk0wAgCkEIakFwcUHYqtWqBXMiBTYCAEH40wBBADYCAEHI0wBBADYCAAtBzNMAQYDUBDYCAEGc0ABBgNQENgIAQbDQACAFNgIAQazQAEF/NgIAQdDTAEGArAM2AgADQCABQcjQAGogAUG80ABqIgI2AgAgAiABQbTQAGoiAzYCACABQcDQAGogAzYCACABQdDQAGogAUHE0ABqIgM2AgAgAyACNgIAIAFB2NAAaiABQczQAGoiAjYCACACIAM2AgAgAUHU0ABqIAI2AgAgAUEgaiIBQYACRw0AC0GM1ARBwasDNgIAQajQAEH00wAoAgA2AgBBmNAAQcCrAzYCAEGk0ABBiNQENgIAQcz/B0E4NgIAQYjUBCEJCwJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIABB7AFNBEBBjNAAKAIAIgZBECAAQRNqQXBxIABBC0kbIgRBA3YiAHYiAUEDcQRAAkAgAUEBcSAAckEBcyICQQN0IgBBtNAAaiIBIABBvNAAaigCACIAKAIIIgNGBEBBjNAAIAZBfiACd3E2AgAMAQsgASADNgIIIAMgATYCDAsgAEEIaiEBIAAgAkEDdCICQQNyNgIEIAAgAmoiACAAKAIEQQFyNgIEDBELQZTQACgCACIIIARPDQEgAQRAAkBBAiAAdCICQQAgAmtyIAEgAHRxaCIAQQN0IgJBtNAAaiIBIAJBvNAAaigCACICKAIIIgNGBEBBjNAAIAZBfiAAd3EiBjYCAAwBCyABIAM2AgggAyABNgIMCyACIARBA3I2AgQgAEEDdCIAIARrIQUgACACaiAFNgIAIAIgBGoiBCAFQQFyNgIEIAgEQCAIQXhxQbTQAGohAEGg0AAoAgAhAwJ/QQEgCEEDdnQiASAGcUUEQEGM0AAgASAGcjYCACAADAELIAAoAggLIgEgAzYCDCAAIAM2AgggAyAANgIMIAMgATYCCAsgAkEIaiEBQaDQACAENgIAQZTQACAFNgIADBELQZDQACgCACILRQ0BIAtoQQJ0QbzSAGooAgAiACgCBEF4cSAEayEFIAAhAgNAAkAgAigCECIBRQRAIAJBFGooAgAiAUUNAQsgASgCBEF4cSAEayIDIAVJIQIgAyAFIAIbIQUgASAAIAIbIQAgASECDAELCyAAKAIYIQkgACgCDCIDIABHBEBBnNAAKAIAGiADIAAoAggiATYCCCABIAM2AgwMEAsgAEEUaiICKAIAIgFFBEAgACgCECIBRQ0DIABBEGohAgsDQCACIQcgASIDQRRqIgIoAgAiAQ0AIANBEGohAiADKAIQIgENAAsgB0EANgIADA8LQX8hBCAAQb9/Sw0AIABBE2oiAUFwcSEEQZDQACgCACIIRQ0AQQAgBGshBQJAAkACQAJ/QQAgBEGAAkkNABpBHyAEQf///wdLDQAaIARBJiABQQh2ZyIAa3ZBAXEgAEEBdGtBPmoLIgZBAnRBvNIAaigCACICRQRAQQAhAUEAIQMMAQtBACEBIARBGSAGQQF2a0EAIAZBH0cbdCEAQQAhAwNAAkAgAigCBEF4cSAEayIHIAVPDQAgAiEDIAciBQ0AQQAhBSACIQEMAwsgASACQRRqKAIAIgcgByACIABBHXZBBHFqQRBqKAIAIgJGGyABIAcbIQEgAEEBdCEAIAINAAsLIAEgA3JFBEBBACEDQQIgBnQiAEEAIABrciAIcSIARQ0DIABoQQJ0QbzSAGooAgAhAQsgAUUNAQsDQCABKAIEQXhxIARrIgIgBUkhACACIAUgABshBSABIAMgABshAyABKAIQIgAEfyAABSABQRRqKAIACyIBDQALCyADRQ0AIAVBlNAAKAIAIARrTw0AIAMoAhghByADIAMoAgwiAEcEQEGc0AAoAgAaIAAgAygCCCIBNgIIIAEgADYCDAwOCyADQRRqIgIoAgAiAUUEQCADKAIQIgFFDQMgA0EQaiECCwNAIAIhBiABIgBBFGoiAigCACIBDQAgAEEQaiECIAAoAhAiAQ0ACyAGQQA2AgAMDQtBlNAAKAIAIgMgBE8EQEGg0AAoAgAhAQJAIAMgBGsiAkEQTwRAIAEgBGoiACACQQFyNgIEIAEgA2ogAjYCACABIARBA3I2AgQMAQsgASADQQNyNgIEIAEgA2oiACAAKAIEQQFyNgIEQQAhAEEAIQILQZTQACACNgIAQaDQACAANgIAIAFBCGohAQwPC0GY0AAoAgAiAyAESwRAIAQgCWoiACADIARrIgFBAXI2AgRBpNAAIAA2AgBBmNAAIAE2AgAgCSAEQQNyNgIEIAlBCGohAQwPC0EAIQEgBAJ/QeTTACgCAARAQezTACgCAAwBC0Hw0wBCfzcCAEHo0wBCgICEgICAwAA3AgBB5NMAIApBDGpBcHFB2KrVqgVzNgIAQfjTAEEANgIAQcjTAEEANgIAQYCABAsiACAEQccAaiIFaiIGQQAgAGsiB3EiAk8EQEH80wBBMDYCAAwPCwJAQcTTACgCACIBRQ0AQbzTACgCACIIIAJqIQAgACABTSAAIAhLcQ0AQQAhAUH80wBBMDYCAAwPC0HI0wAtAABBBHENBAJAAkAgCQRAQczTACEBA0AgASgCACIAIAlNBEAgACABKAIEaiAJSw0DCyABKAIIIgENAAsLQQAQMyIAQX9GDQUgAiEGQejTACgCACIBQQFrIgMgAHEEQCACIABrIAAgA2pBACABa3FqIQYLIAQgBk8NBSAGQf7///8HSw0FQcTTACgCACIDBEBBvNMAKAIAIgcgBmohASABIAdNDQYgASADSw0GCyAGEDMiASAARw0BDAcLIAYgA2sgB3EiBkH+////B0sNBCAGEDMhACAAIAEoAgAgASgCBGpGDQMgACEBCwJAIAYgBEHIAGpPDQAgAUF/Rg0AQezTACgCACIAIAUgBmtqQQAgAGtxIgBB/v///wdLBEAgASEADAcLIAAQM0F/RwRAIAAgBmohBiABIQAMBwtBACAGaxAzGgwECyABIgBBf0cNBQwDC0EAIQMMDAtBACEADAoLIABBf0cNAgtByNMAQcjTACgCAEEEcjYCAAsgAkH+////B0sNASACEDMhAEEAEDMhASAAQX9GDQEgAUF/Rg0BIAAgAU8NASABIABrIgYgBEE4ak0NAQtBvNMAQbzTACgCACAGaiIBNgIAQcDTACgCACABSQRAQcDTACABNgIACwJAAkACQEGk0AAoAgAiAgRAQczTACEBA0AgACABKAIAIgMgASgCBCIFakYNAiABKAIIIgENAAsMAgtBnNAAKAIAIgFBAEcgACABT3FFBEBBnNAAIAA2AgALQQAhAUHQ0wAgBjYCAEHM0wAgADYCAEGs0ABBfzYCAEGw0ABB5NMAKAIANgIAQdjTAEEANgIAA0AgAUHI0ABqIAFBvNAAaiICNgIAIAIgAUG00ABqIgM2AgAgAUHA0ABqIAM2AgAgAUHQ0ABqIAFBxNAAaiIDNgIAIAMgAjYCACABQdjQAGogAUHM0ABqIgI2AgAgAiADNgIAIAFB1NAAaiACNgIAIAFBIGoiAUGAAkcNAAtBeCAAa0EPcSIBIABqIgIgBkE4ayIDIAFrIgFBAXI2AgRBqNAAQfTTACgCADYCAEGY0AAgATYCAEGk0AAgAjYCACAAIANqQTg2AgQMAgsgACACTQ0AIAIgA0kNACABKAIMQQhxDQBBeCACa0EPcSIAIAJqIgNBmNAAKAIAIAZqIgcgAGsiAEEBcjYCBCABIAUgBmo2AgRBqNAAQfTTACgCADYCAEGY0AAgADYCAEGk0AAgAzYCACACIAdqQTg2AgQMAQsgAEGc0AAoAgBJBEBBnNAAIAA2AgALIAAgBmohA0HM0wAhAQJAAkACQANAIAMgASgCAEcEQCABKAIIIgENAQwCCwsgAS0ADEEIcUUNAQtBzNMAIQEDQCABKAIAIgMgAk0EQCADIAEoAgRqIgUgAksNAwsgASgCCCEBDAALAAsgASAANgIAIAEgASgCBCAGajYCBCAAQXggAGtBD3FqIgkgBEEDcjYCBCADQXggA2tBD3FqIgYgBCAJaiIEayEBIAIgBkYEQEGk0AAgBDYCAEGY0ABBmNAAKAIAIAFqIgA2AgAgBCAAQQFyNgIEDAgLQaDQACgCACAGRgRAQaDQACAENgIAQZTQAEGU0AAoAgAgAWoiADYCACAEIABBAXI2AgQgACAEaiAANgIADAgLIAYoAgQiBUEDcUEBRw0GIAVBeHEhCCAFQf8BTQRAIAVBA3YhAyAGKAIIIgAgBigCDCICRgRAQYzQAEGM0AAoAgBBfiADd3E2AgAMBwsgAiAANgIIIAAgAjYCDAwGCyAGKAIYIQcgBiAGKAIMIgBHBEAgACAGKAIIIgI2AgggAiAANgIMDAULIAZBFGoiAigCACIFRQRAIAYoAhAiBUUNBCAGQRBqIQILA0AgAiEDIAUiAEEUaiICKAIAIgUNACAAQRBqIQIgACgCECIFDQALIANBADYCAAwEC0F4IABrQQ9xIgEgAGoiByAGQThrIgMgAWsiAUEBcjYCBCAAIANqQTg2AgQgAiAFQTcgBWtBD3FqQT9rIgMgAyACQRBqSRsiA0EjNgIEQajQAEH00wAoAgA2AgBBmNAAIAE2AgBBpNAAIAc2AgAgA0EQakHU0wApAgA3AgAgA0HM0wApAgA3AghB1NMAIANBCGo2AgBB0NMAIAY2AgBBzNMAIAA2AgBB2NMAQQA2AgAgA0EkaiEBA0AgAUEHNgIAIAUgAUEEaiIBSw0ACyACIANGDQAgAyADKAIEQX5xNgIEIAMgAyACayIFNgIAIAIgBUEBcjYCBCAFQf8BTQRAIAVBeHFBtNAAaiEAAn9BjNAAKAIAIgFBASAFQQN2dCIDcUUEQEGM0AAgASADcjYCACAADAELIAAoAggLIgEgAjYCDCAAIAI2AgggAiAANgIMIAIgATYCCAwBC0EfIQEgBUH///8HTQRAIAVBJiAFQQh2ZyIAa3ZBAXEgAEEBdGtBPmohAQsgAiABNgIcIAJCADcCECABQQJ0QbzSAGohAEGQ0AAoAgAiA0EBIAF0IgZxRQRAIAAgAjYCAEGQ0AAgAyAGcjYCACACIAA2AhggAiACNgIIIAIgAjYCDAwBCyAFQRkgAUEBdmtBACABQR9HG3QhASAAKAIAIQMCQANAIAMiACgCBEF4cSAFRg0BIAFBHXYhAyABQQF0IQEgACADQQRxakEQaiIGKAIAIgMNAAsgBiACNgIAIAIgADYCGCACIAI2AgwgAiACNgIIDAELIAAoAggiASACNgIMIAAgAjYCCCACQQA2AhggAiAANgIMIAIgATYCCAtBmNAAKAIAIgEgBE0NAEGk0AAoAgAiACAEaiICIAEgBGsiAUEBcjYCBEGY0AAgATYCAEGk0AAgAjYCACAAIARBA3I2AgQgAEEIaiEBDAgLQQAhAUH80wBBMDYCAAwHC0EAIQALIAdFDQACQCAGKAIcIgJBAnRBvNIAaiIDKAIAIAZGBEAgAyAANgIAIAANAUGQ0ABBkNAAKAIAQX4gAndxNgIADAILIAdBEEEUIAcoAhAgBkYbaiAANgIAIABFDQELIAAgBzYCGCAGKAIQIgIEQCAAIAI2AhAgAiAANgIYCyAGQRRqKAIAIgJFDQAgAEEUaiACNgIAIAIgADYCGAsgASAIaiEBIAYgCGoiBigCBCEFCyAGIAVBfnE2AgQgASAEaiABNgIAIAQgAUEBcjYCBCABQf8BTQRAIAFBeHFBtNAAaiEAAn9BjNAAKAIAIgJBASABQQN2dCIBcUUEQEGM0AAgASACcjYCACAADAELIAAoAggLIgEgBDYCDCAAIAQ2AgggBCAANgIMIAQgATYCCAwBC0EfIQUgAUH///8HTQRAIAFBJiABQQh2ZyIAa3ZBAXEgAEEBdGtBPmohBQsgBCAFNgIcIARCADcCECAFQQJ0QbzSAGohAEGQ0AAoAgAiAkEBIAV0IgNxRQRAIAAgBDYCAEGQ0AAgAiADcjYCACAEIAA2AhggBCAENgIIIAQgBDYCDAwBCyABQRkgBUEBdmtBACAFQR9HG3QhBSAAKAIAIQACQANAIAAiAigCBEF4cSABRg0BIAVBHXYhACAFQQF0IQUgAiAAQQRxakEQaiIDKAIAIgANAAsgAyAENgIAIAQgAjYCGCAEIAQ2AgwgBCAENgIIDAELIAIoAggiACAENgIMIAIgBDYCCCAEQQA2AhggBCACNgIMIAQgADYCCAsgCUEIaiEBDAILAkAgB0UNAAJAIAMoAhwiAUECdEG80gBqIgIoAgAgA0YEQCACIAA2AgAgAA0BQZDQACAIQX4gAXdxIgg2AgAMAgsgB0EQQRQgBygCECADRhtqIAA2AgAgAEUNAQsgACAHNgIYIAMoAhAiAQRAIAAgATYCECABIAA2AhgLIANBFGooAgAiAUUNACAAQRRqIAE2AgAgASAANgIYCwJAIAVBD00EQCADIAQgBWoiAEEDcjYCBCAAIANqIgAgACgCBEEBcjYCBAwBCyADIARqIgIgBUEBcjYCBCADIARBA3I2AgQgAiAFaiAFNgIAIAVB/wFNBEAgBUF4cUG00ABqIQACf0GM0AAoAgAiAUEBIAVBA3Z0IgVxRQRAQYzQACABIAVyNgIAIAAMAQsgACgCCAsiASACNgIMIAAgAjYCCCACIAA2AgwgAiABNgIIDAELQR8hASAFQf///wdNBEAgBUEmIAVBCHZnIgBrdkEBcSAAQQF0a0E+aiEBCyACIAE2AhwgAkIANwIQIAFBAnRBvNIAaiEAQQEgAXQiBCAIcUUEQCAAIAI2AgBBkNAAIAQgCHI2AgAgAiAANgIYIAIgAjYCCCACIAI2AgwMAQsgBUEZIAFBAXZrQQAgAUEfRxt0IQEgACgCACEEAkADQCAEIgAoAgRBeHEgBUYNASABQR12IQQgAUEBdCEBIAAgBEEEcWpBEGoiBigCACIEDQALIAYgAjYCACACIAA2AhggAiACNgIMIAIgAjYCCAwBCyAAKAIIIgEgAjYCDCAAIAI2AgggAkEANgIYIAIgADYCDCACIAE2AggLIANBCGohAQwBCwJAIAlFDQACQCAAKAIcIgFBAnRBvNIAaiICKAIAIABGBEAgAiADNgIAIAMNAUGQ0AAgC0F+IAF3cTYCAAwCCyAJQRBBFCAJKAIQIABGG2ogAzYCACADRQ0BCyADIAk2AhggACgCECIBBEAgAyABNgIQIAEgAzYCGAsgAEEUaigCACIBRQ0AIANBFGogATYCACABIAM2AhgLAkAgBUEPTQRAIAAgBCAFaiIBQQNyNgIEIAAgAWoiASABKAIEQQFyNgIEDAELIAAgBGoiByAFQQFyNgIEIAAgBEEDcjYCBCAFIAdqIAU2AgAgCARAIAhBeHFBtNAAaiEBQaDQACgCACEDAn9BASAIQQN2dCICIAZxRQRAQYzQACACIAZyNgIAIAEMAQsgASgCCAsiAiADNgIMIAEgAzYCCCADIAE2AgwgAyACNgIIC0Gg0AAgBzYCAEGU0AAgBTYCAAsgAEEIaiEBCyAKQRBqJAAgAQtDACAARQRAPwBBEHQPCwJAIABB//8DcQ0AIABBAEgNACAAQRB2QAAiAEF/RgRAQfzTAEEwNgIAQX8PCyAAQRB0DwsACwvcPyIAQYAICwkBAAAAAgAAAAMAQZQICwUEAAAABQBBpAgLCQYAAAAHAAAACABB3AgLii1JbnZhbGlkIGNoYXIgaW4gdXJsIHF1ZXJ5AFNwYW4gY2FsbGJhY2sgZXJyb3IgaW4gb25fYm9keQBDb250ZW50LUxlbmd0aCBvdmVyZmxvdwBDaHVuayBzaXplIG92ZXJmbG93AFJlc3BvbnNlIG92ZXJmbG93AEludmFsaWQgbWV0aG9kIGZvciBIVFRQL3gueCByZXF1ZXN0AEludmFsaWQgbWV0aG9kIGZvciBSVFNQL3gueCByZXF1ZXN0AEV4cGVjdGVkIFNPVVJDRSBtZXRob2QgZm9yIElDRS94LnggcmVxdWVzdABJbnZhbGlkIGNoYXIgaW4gdXJsIGZyYWdtZW50IHN0YXJ0AEV4cGVjdGVkIGRvdABTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX3N0YXR1cwBJbnZhbGlkIHJlc3BvbnNlIHN0YXR1cwBJbnZhbGlkIGNoYXJhY3RlciBpbiBjaHVuayBleHRlbnNpb25zAFVzZXIgY2FsbGJhY2sgZXJyb3IAYG9uX3Jlc2V0YCBjYWxsYmFjayBlcnJvcgBgb25fY2h1bmtfaGVhZGVyYCBjYWxsYmFjayBlcnJvcgBgb25fbWVzc2FnZV9iZWdpbmAgY2FsbGJhY2sgZXJyb3IAYG9uX2NodW5rX2V4dGVuc2lvbl92YWx1ZWAgY2FsbGJhY2sgZXJyb3IAYG9uX3N0YXR1c19jb21wbGV0ZWAgY2FsbGJhY2sgZXJyb3IAYG9uX3ZlcnNpb25fY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl91cmxfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl9jaHVua19jb21wbGV0ZWAgY2FsbGJhY2sgZXJyb3IAYG9uX2hlYWRlcl92YWx1ZV9jb21wbGV0ZWAgY2FsbGJhY2sgZXJyb3IAYG9uX21lc3NhZ2VfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl9tZXRob2RfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl9oZWFkZXJfZmllbGRfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl9jaHVua19leHRlbnNpb25fbmFtZWAgY2FsbGJhY2sgZXJyb3IAVW5leHBlY3RlZCBjaGFyIGluIHVybCBzZXJ2ZXIASW52YWxpZCBoZWFkZXIgdmFsdWUgY2hhcgBJbnZhbGlkIGhlYWRlciBmaWVsZCBjaGFyAFNwYW4gY2FsbGJhY2sgZXJyb3IgaW4gb25fdmVyc2lvbgBJbnZhbGlkIG1pbm9yIHZlcnNpb24ASW52YWxpZCBtYWpvciB2ZXJzaW9uAEV4cGVjdGVkIHNwYWNlIGFmdGVyIHZlcnNpb24ARXhwZWN0ZWQgQ1JMRiBhZnRlciB2ZXJzaW9uAEludmFsaWQgSFRUUCB2ZXJzaW9uAEludmFsaWQgaGVhZGVyIHRva2VuAFNwYW4gY2FsbGJhY2sgZXJyb3IgaW4gb25fdXJsAEludmFsaWQgY2hhcmFjdGVycyBpbiB1cmwAVW5leHBlY3RlZCBzdGFydCBjaGFyIGluIHVybABEb3VibGUgQCBpbiB1cmwARW1wdHkgQ29udGVudC1MZW5ndGgASW52YWxpZCBjaGFyYWN0ZXIgaW4gQ29udGVudC1MZW5ndGgARHVwbGljYXRlIENvbnRlbnQtTGVuZ3RoAEludmFsaWQgY2hhciBpbiB1cmwgcGF0aABDb250ZW50LUxlbmd0aCBjYW4ndCBiZSBwcmVzZW50IHdpdGggVHJhbnNmZXItRW5jb2RpbmcASW52YWxpZCBjaGFyYWN0ZXIgaW4gY2h1bmsgc2l6ZQBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX2hlYWRlcl92YWx1ZQBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX2NodW5rX2V4dGVuc2lvbl92YWx1ZQBJbnZhbGlkIGNoYXJhY3RlciBpbiBjaHVuayBleHRlbnNpb25zIHZhbHVlAE1pc3NpbmcgZXhwZWN0ZWQgTEYgYWZ0ZXIgaGVhZGVyIHZhbHVlAEludmFsaWQgYFRyYW5zZmVyLUVuY29kaW5nYCBoZWFkZXIgdmFsdWUASW52YWxpZCBjaGFyYWN0ZXIgaW4gY2h1bmsgZXh0ZW5zaW9ucyBxdW90ZSB2YWx1ZQBJbnZhbGlkIGNoYXJhY3RlciBpbiBjaHVuayBleHRlbnNpb25zIHF1b3RlZCB2YWx1ZQBQYXVzZWQgYnkgb25faGVhZGVyc19jb21wbGV0ZQBJbnZhbGlkIEVPRiBzdGF0ZQBvbl9yZXNldCBwYXVzZQBvbl9jaHVua19oZWFkZXIgcGF1c2UAb25fbWVzc2FnZV9iZWdpbiBwYXVzZQBvbl9jaHVua19leHRlbnNpb25fdmFsdWUgcGF1c2UAb25fc3RhdHVzX2NvbXBsZXRlIHBhdXNlAG9uX3ZlcnNpb25fY29tcGxldGUgcGF1c2UAb25fdXJsX2NvbXBsZXRlIHBhdXNlAG9uX2NodW5rX2NvbXBsZXRlIHBhdXNlAG9uX2hlYWRlcl92YWx1ZV9jb21wbGV0ZSBwYXVzZQBvbl9tZXNzYWdlX2NvbXBsZXRlIHBhdXNlAG9uX21ldGhvZF9jb21wbGV0ZSBwYXVzZQBvbl9oZWFkZXJfZmllbGRfY29tcGxldGUgcGF1c2UAb25fY2h1bmtfZXh0ZW5zaW9uX25hbWUgcGF1c2UAVW5leHBlY3RlZCBzcGFjZSBhZnRlciBzdGFydCBsaW5lAFNwYW4gY2FsbGJhY2sgZXJyb3IgaW4gb25fY2h1bmtfZXh0ZW5zaW9uX25hbWUASW52YWxpZCBjaGFyYWN0ZXIgaW4gY2h1bmsgZXh0ZW5zaW9ucyBuYW1lAFBhdXNlIG9uIENPTk5FQ1QvVXBncmFkZQBQYXVzZSBvbiBQUkkvVXBncmFkZQBFeHBlY3RlZCBIVFRQLzIgQ29ubmVjdGlvbiBQcmVmYWNlAFNwYW4gY2FsbGJhY2sgZXJyb3IgaW4gb25fbWV0aG9kAEV4cGVjdGVkIHNwYWNlIGFmdGVyIG1ldGhvZABTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX2hlYWRlcl9maWVsZABQYXVzZWQASW52YWxpZCB3b3JkIGVuY291bnRlcmVkAEludmFsaWQgbWV0aG9kIGVuY291bnRlcmVkAFVuZXhwZWN0ZWQgY2hhciBpbiB1cmwgc2NoZW1hAFJlcXVlc3QgaGFzIGludmFsaWQgYFRyYW5zZmVyLUVuY29kaW5nYABTV0lUQ0hfUFJPWFkAVVNFX1BST1hZAE1LQUNUSVZJVFkAVU5QUk9DRVNTQUJMRV9FTlRJVFkAQ09QWQBNT1ZFRF9QRVJNQU5FTlRMWQBUT09fRUFSTFkATk9USUZZAEZBSUxFRF9ERVBFTkRFTkNZAEJBRF9HQVRFV0FZAFBMQVkAUFVUAENIRUNLT1VUAEdBVEVXQVlfVElNRU9VVABSRVFVRVNUX1RJTUVPVVQATkVUV09SS19DT05ORUNUX1RJTUVPVVQAQ09OTkVDVElPTl9USU1FT1VUAExPR0lOX1RJTUVPVVQATkVUV09SS19SRUFEX1RJTUVPVVQAUE9TVABNSVNESVJFQ1RFRF9SRVFVRVNUAENMSUVOVF9DTE9TRURfUkVRVUVTVABDTElFTlRfQ0xPU0VEX0xPQURfQkFMQU5DRURfUkVRVUVTVABCQURfUkVRVUVTVABIVFRQX1JFUVVFU1RfU0VOVF9UT19IVFRQU19QT1JUAFJFUE9SVABJTV9BX1RFQVBPVABSRVNFVF9DT05URU5UAE5PX0NPTlRFTlQAUEFSVElBTF9DT05URU5UAEhQRV9JTlZBTElEX0NPTlNUQU5UAEhQRV9DQl9SRVNFVABHRVQASFBFX1NUUklDVABDT05GTElDVABURU1QT1JBUllfUkVESVJFQ1QAUEVSTUFORU5UX1JFRElSRUNUAENPTk5FQ1QATVVMVElfU1RBVFVTAEhQRV9JTlZBTElEX1NUQVRVUwBUT09fTUFOWV9SRVFVRVNUUwBFQVJMWV9ISU5UUwBVTkFWQUlMQUJMRV9GT1JfTEVHQUxfUkVBU09OUwBPUFRJT05TAFNXSVRDSElOR19QUk9UT0NPTFMAVkFSSUFOVF9BTFNPX05FR09USUFURVMATVVMVElQTEVfQ0hPSUNFUwBJTlRFUk5BTF9TRVJWRVJfRVJST1IAV0VCX1NFUlZFUl9VTktOT1dOX0VSUk9SAFJBSUxHVU5fRVJST1IASURFTlRJVFlfUFJPVklERVJfQVVUSEVOVElDQVRJT05fRVJST1IAU1NMX0NFUlRJRklDQVRFX0VSUk9SAElOVkFMSURfWF9GT1JXQVJERURfRk9SAFNFVF9QQVJBTUVURVIAR0VUX1BBUkFNRVRFUgBIUEVfVVNFUgBTRUVfT1RIRVIASFBFX0NCX0NIVU5LX0hFQURFUgBNS0NBTEVOREFSAFNFVFVQAFdFQl9TRVJWRVJfSVNfRE9XTgBURUFSRE9XTgBIUEVfQ0xPU0VEX0NPTk5FQ1RJT04ASEVVUklTVElDX0VYUElSQVRJT04ARElTQ09OTkVDVEVEX09QRVJBVElPTgBOT05fQVVUSE9SSVRBVElWRV9JTkZPUk1BVElPTgBIUEVfSU5WQUxJRF9WRVJTSU9OAEhQRV9DQl9NRVNTQUdFX0JFR0lOAFNJVEVfSVNfRlJPWkVOAEhQRV9JTlZBTElEX0hFQURFUl9UT0tFTgBJTlZBTElEX1RPS0VOAEZPUkJJRERFTgBFTkhBTkNFX1lPVVJfQ0FMTQBIUEVfSU5WQUxJRF9VUkwAQkxPQ0tFRF9CWV9QQVJFTlRBTF9DT05UUk9MAE1LQ09MAEFDTABIUEVfSU5URVJOQUwAUkVRVUVTVF9IRUFERVJfRklFTERTX1RPT19MQVJHRV9VTk9GRklDSUFMAEhQRV9PSwBVTkxJTksAVU5MT0NLAFBSSQBSRVRSWV9XSVRIAEhQRV9JTlZBTElEX0NPTlRFTlRfTEVOR1RIAEhQRV9VTkVYUEVDVEVEX0NPTlRFTlRfTEVOR1RIAEZMVVNIAFBST1BQQVRDSABNLVNFQVJDSABVUklfVE9PX0xPTkcAUFJPQ0VTU0lORwBNSVNDRUxMQU5FT1VTX1BFUlNJU1RFTlRfV0FSTklORwBNSVNDRUxMQU5FT1VTX1dBUk5JTkcASFBFX0lOVkFMSURfVFJBTlNGRVJfRU5DT0RJTkcARXhwZWN0ZWQgQ1JMRgBIUEVfSU5WQUxJRF9DSFVOS19TSVpFAE1PVkUAQ09OVElOVUUASFBFX0NCX1NUQVRVU19DT01QTEVURQBIUEVfQ0JfSEVBREVSU19DT01QTEVURQBIUEVfQ0JfVkVSU0lPTl9DT01QTEVURQBIUEVfQ0JfVVJMX0NPTVBMRVRFAEhQRV9DQl9DSFVOS19DT01QTEVURQBIUEVfQ0JfSEVBREVSX1ZBTFVFX0NPTVBMRVRFAEhQRV9DQl9DSFVOS19FWFRFTlNJT05fVkFMVUVfQ09NUExFVEUASFBFX0NCX0NIVU5LX0VYVEVOU0lPTl9OQU1FX0NPTVBMRVRFAEhQRV9DQl9NRVNTQUdFX0NPTVBMRVRFAEhQRV9DQl9NRVRIT0RfQ09NUExFVEUASFBFX0NCX0hFQURFUl9GSUVMRF9DT01QTEVURQBERUxFVEUASFBFX0lOVkFMSURfRU9GX1NUQVRFAElOVkFMSURfU1NMX0NFUlRJRklDQVRFAFBBVVNFAE5PX1JFU1BPTlNFAFVOU1VQUE9SVEVEX01FRElBX1RZUEUAR09ORQBOT1RfQUNDRVBUQUJMRQBTRVJWSUNFX1VOQVZBSUxBQkxFAFJBTkdFX05PVF9TQVRJU0ZJQUJMRQBPUklHSU5fSVNfVU5SRUFDSEFCTEUAUkVTUE9OU0VfSVNfU1RBTEUAUFVSR0UATUVSR0UAUkVRVUVTVF9IRUFERVJfRklFTERTX1RPT19MQVJHRQBSRVFVRVNUX0hFQURFUl9UT09fTEFSR0UAUEFZTE9BRF9UT09fTEFSR0UASU5TVUZGSUNJRU5UX1NUT1JBR0UASFBFX1BBVVNFRF9VUEdSQURFAEhQRV9QQVVTRURfSDJfVVBHUkFERQBTT1VSQ0UAQU5OT1VOQ0UAVFJBQ0UASFBFX1VORVhQRUNURURfU1BBQ0UAREVTQ1JJQkUAVU5TVUJTQ1JJQkUAUkVDT1JEAEhQRV9JTlZBTElEX01FVEhPRABOT1RfRk9VTkQAUFJPUEZJTkQAVU5CSU5EAFJFQklORABVTkFVVEhPUklaRUQATUVUSE9EX05PVF9BTExPV0VEAEhUVFBfVkVSU0lPTl9OT1RfU1VQUE9SVEVEAEFMUkVBRFlfUkVQT1JURUQAQUNDRVBURUQATk9UX0lNUExFTUVOVEVEAExPT1BfREVURUNURUQASFBFX0NSX0VYUEVDVEVEAEhQRV9MRl9FWFBFQ1RFRABDUkVBVEVEAElNX1VTRUQASFBFX1BBVVNFRABUSU1FT1VUX09DQ1VSRUQAUEFZTUVOVF9SRVFVSVJFRABQUkVDT05ESVRJT05fUkVRVUlSRUQAUFJPWFlfQVVUSEVOVElDQVRJT05fUkVRVUlSRUQATkVUV09SS19BVVRIRU5USUNBVElPTl9SRVFVSVJFRABMRU5HVEhfUkVRVUlSRUQAU1NMX0NFUlRJRklDQVRFX1JFUVVJUkVEAFVQR1JBREVfUkVRVUlSRUQAUEFHRV9FWFBJUkVEAFBSRUNPTkRJVElPTl9GQUlMRUQARVhQRUNUQVRJT05fRkFJTEVEAFJFVkFMSURBVElPTl9GQUlMRUQAU1NMX0hBTkRTSEFLRV9GQUlMRUQATE9DS0VEAFRSQU5TRk9STUFUSU9OX0FQUExJRUQATk9UX01PRElGSUVEAE5PVF9FWFRFTkRFRABCQU5EV0lEVEhfTElNSVRfRVhDRUVERUQAU0lURV9JU19PVkVSTE9BREVEAEhFQUQARXhwZWN0ZWQgSFRUUC8AAF4TAAAmEwAAMBAAAPAXAACdEwAAFRIAADkXAADwEgAAChAAAHUSAACtEgAAghMAAE8UAAB/EAAAoBUAACMUAACJEgAAixQAAE0VAADUEQAAzxQAABAYAADJFgAA3BYAAMERAADgFwAAuxQAAHQUAAB8FQAA5RQAAAgXAAAfEAAAZRUAAKMUAAAoFQAAAhUAAJkVAAAsEAAAixkAAE8PAADUDgAAahAAAM4QAAACFwAAiQ4AAG4TAAAcEwAAZhQAAFYXAADBEwAAzRMAAGwTAABoFwAAZhcAAF8XAAAiEwAAzg8AAGkOAADYDgAAYxYAAMsTAACqDgAAKBcAACYXAADFEwAAXRYAAOgRAABnEwAAZRMAAPIWAABzEwAAHRcAAPkWAADzEQAAzw4AAM4VAAAMEgAAsxEAAKURAABhEAAAMhcAALsTAEH5NQsBAQBBkDYL4AEBAQIBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQBB/TcLAQEAQZE4C14CAwICAgICAAACAgACAgACAgICAgICAgICAAQAAAAAAAICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAAgACAEH9OQsBAQBBkToLXgIAAgICAgIAAAICAAICAAICAgICAgICAgIAAwAEAAAAAgICAgICAgICAgICAgICAgICAgICAgICAgIAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgICAgACAAIAQfA7Cw1sb3NlZWVwLWFsaXZlAEGJPAsBAQBBoDwL4AEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQBBiT4LAQEAQaA+C+cBAQEBAQEBAQEBAQEBAgEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQFjaHVua2VkAEGwwAALXwEBAAEBAQEBAAABAQABAQABAQEBAQEBAQEBAAAAAAAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAAAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQABAEGQwgALIWVjdGlvbmVudC1sZW5ndGhvbnJveHktY29ubmVjdGlvbgBBwMIACy1yYW5zZmVyLWVuY29kaW5ncGdyYWRlDQoNCg0KU00NCg0KVFRQL0NFL1RTUC8AQfnCAAsFAQIAAQMAQZDDAAvgAQQBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAEH5xAALBQECAAEDAEGQxQAL4AEEAQEFAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQBB+cYACwQBAAABAEGRxwAL3wEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAEH6yAALBAEAAAIAQZDJAAtfAwQAAAQEBAQEBAQEBAQEBQQEBAQEBAQEBAQEBAAEAAYHBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQABAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAAAAQAQfrKAAsEAQAAAQBBkMsACwEBAEGqywALQQIAAAAAAAADAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwAAAAAAAAMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAEH6zAALBAEAAAEAQZDNAAsBAQBBms0ACwYCAAAAAAIAQbHNAAs6AwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAADAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwBB8M4AC5YBTk9VTkNFRUNLT1VUTkVDVEVURUNSSUJFTFVTSEVURUFEU0VBUkNIUkdFQ1RJVklUWUxFTkRBUlZFT1RJRllQVElPTlNDSFNFQVlTVEFUQ0hHRU9SRElSRUNUT1JUUkNIUEFSQU1FVEVSVVJDRUJTQ1JJQkVBUkRPV05BQ0VJTkROS0NLVUJTQ1JJQkVIVFRQL0FEVFAv', 'base64') + + +/***/ }), + +/***/ 95627: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { Buffer } = __nccwpck_require__(72254) + +module.exports = Buffer.from('AGFzbQEAAAABJwdgAX8Bf2ADf39/AX9gAX8AYAJ/fwBgBH9/f38Bf2AAAGADf39/AALLAQgDZW52GHdhc21fb25faGVhZGVyc19jb21wbGV0ZQAEA2VudhV3YXNtX29uX21lc3NhZ2VfYmVnaW4AAANlbnYLd2FzbV9vbl91cmwAAQNlbnYOd2FzbV9vbl9zdGF0dXMAAQNlbnYUd2FzbV9vbl9oZWFkZXJfZmllbGQAAQNlbnYUd2FzbV9vbl9oZWFkZXJfdmFsdWUAAQNlbnYMd2FzbV9vbl9ib2R5AAEDZW52GHdhc21fb25fbWVzc2FnZV9jb21wbGV0ZQAAAy0sBQYAAAIAAAAAAAACAQIAAgICAAADAAAAAAMDAwMBAQEBAQEBAQEAAAIAAAAEBQFwARISBQMBAAIGCAF/AUGA1AQLB9EFIgZtZW1vcnkCAAtfaW5pdGlhbGl6ZQAIGV9faW5kaXJlY3RfZnVuY3Rpb25fdGFibGUBAAtsbGh0dHBfaW5pdAAJGGxsaHR0cF9zaG91bGRfa2VlcF9hbGl2ZQAvDGxsaHR0cF9hbGxvYwALBm1hbGxvYwAxC2xsaHR0cF9mcmVlAAwEZnJlZQAMD2xsaHR0cF9nZXRfdHlwZQANFWxsaHR0cF9nZXRfaHR0cF9tYWpvcgAOFWxsaHR0cF9nZXRfaHR0cF9taW5vcgAPEWxsaHR0cF9nZXRfbWV0aG9kABAWbGxodHRwX2dldF9zdGF0dXNfY29kZQAREmxsaHR0cF9nZXRfdXBncmFkZQASDGxsaHR0cF9yZXNldAATDmxsaHR0cF9leGVjdXRlABQUbGxodHRwX3NldHRpbmdzX2luaXQAFQ1sbGh0dHBfZmluaXNoABYMbGxodHRwX3BhdXNlABcNbGxodHRwX3Jlc3VtZQAYG2xsaHR0cF9yZXN1bWVfYWZ0ZXJfdXBncmFkZQAZEGxsaHR0cF9nZXRfZXJybm8AGhdsbGh0dHBfZ2V0X2Vycm9yX3JlYXNvbgAbF2xsaHR0cF9zZXRfZXJyb3JfcmVhc29uABwUbGxodHRwX2dldF9lcnJvcl9wb3MAHRFsbGh0dHBfZXJybm9fbmFtZQAeEmxsaHR0cF9tZXRob2RfbmFtZQAfEmxsaHR0cF9zdGF0dXNfbmFtZQAgGmxsaHR0cF9zZXRfbGVuaWVudF9oZWFkZXJzACEhbGxodHRwX3NldF9sZW5pZW50X2NodW5rZWRfbGVuZ3RoACIdbGxodHRwX3NldF9sZW5pZW50X2tlZXBfYWxpdmUAIyRsbGh0dHBfc2V0X2xlbmllbnRfdHJhbnNmZXJfZW5jb2RpbmcAJBhsbGh0dHBfbWVzc2FnZV9uZWVkc19lb2YALgkXAQBBAQsRAQIDBAUKBgcrLSwqKSglJyYK77MCLBYAQYjQACgCAARAAAtBiNAAQQE2AgALFAAgABAwIAAgAjYCOCAAIAE6ACgLFAAgACAALwEyIAAtAC4gABAvEAALHgEBf0HAABAyIgEQMCABQYAINgI4IAEgADoAKCABC48MAQd/AkAgAEUNACAAQQhrIgEgAEEEaygCACIAQXhxIgRqIQUCQCAAQQFxDQAgAEEDcUUNASABIAEoAgAiAGsiAUGc0AAoAgBJDQEgACAEaiEEAkACQEGg0AAoAgAgAUcEQCAAQf8BTQRAIABBA3YhAyABKAIIIgAgASgCDCICRgRAQYzQAEGM0AAoAgBBfiADd3E2AgAMBQsgAiAANgIIIAAgAjYCDAwECyABKAIYIQYgASABKAIMIgBHBEAgACABKAIIIgI2AgggAiAANgIMDAMLIAFBFGoiAygCACICRQRAIAEoAhAiAkUNAiABQRBqIQMLA0AgAyEHIAIiAEEUaiIDKAIAIgINACAAQRBqIQMgACgCECICDQALIAdBADYCAAwCCyAFKAIEIgBBA3FBA0cNAiAFIABBfnE2AgRBlNAAIAQ2AgAgBSAENgIAIAEgBEEBcjYCBAwDC0EAIQALIAZFDQACQCABKAIcIgJBAnRBvNIAaiIDKAIAIAFGBEAgAyAANgIAIAANAUGQ0ABBkNAAKAIAQX4gAndxNgIADAILIAZBEEEUIAYoAhAgAUYbaiAANgIAIABFDQELIAAgBjYCGCABKAIQIgIEQCAAIAI2AhAgAiAANgIYCyABQRRqKAIAIgJFDQAgAEEUaiACNgIAIAIgADYCGAsgASAFTw0AIAUoAgQiAEEBcUUNAAJAAkACQAJAIABBAnFFBEBBpNAAKAIAIAVGBEBBpNAAIAE2AgBBmNAAQZjQACgCACAEaiIANgIAIAEgAEEBcjYCBCABQaDQACgCAEcNBkGU0ABBADYCAEGg0ABBADYCAAwGC0Gg0AAoAgAgBUYEQEGg0AAgATYCAEGU0ABBlNAAKAIAIARqIgA2AgAgASAAQQFyNgIEIAAgAWogADYCAAwGCyAAQXhxIARqIQQgAEH/AU0EQCAAQQN2IQMgBSgCCCIAIAUoAgwiAkYEQEGM0ABBjNAAKAIAQX4gA3dxNgIADAULIAIgADYCCCAAIAI2AgwMBAsgBSgCGCEGIAUgBSgCDCIARwRAQZzQACgCABogACAFKAIIIgI2AgggAiAANgIMDAMLIAVBFGoiAygCACICRQRAIAUoAhAiAkUNAiAFQRBqIQMLA0AgAyEHIAIiAEEUaiIDKAIAIgINACAAQRBqIQMgACgCECICDQALIAdBADYCAAwCCyAFIABBfnE2AgQgASAEaiAENgIAIAEgBEEBcjYCBAwDC0EAIQALIAZFDQACQCAFKAIcIgJBAnRBvNIAaiIDKAIAIAVGBEAgAyAANgIAIAANAUGQ0ABBkNAAKAIAQX4gAndxNgIADAILIAZBEEEUIAYoAhAgBUYbaiAANgIAIABFDQELIAAgBjYCGCAFKAIQIgIEQCAAIAI2AhAgAiAANgIYCyAFQRRqKAIAIgJFDQAgAEEUaiACNgIAIAIgADYCGAsgASAEaiAENgIAIAEgBEEBcjYCBCABQaDQACgCAEcNAEGU0AAgBDYCAAwBCyAEQf8BTQRAIARBeHFBtNAAaiEAAn9BjNAAKAIAIgJBASAEQQN2dCIDcUUEQEGM0AAgAiADcjYCACAADAELIAAoAggLIgIgATYCDCAAIAE2AgggASAANgIMIAEgAjYCCAwBC0EfIQIgBEH///8HTQRAIARBJiAEQQh2ZyIAa3ZBAXEgAEEBdGtBPmohAgsgASACNgIcIAFCADcCECACQQJ0QbzSAGohAAJAQZDQACgCACIDQQEgAnQiB3FFBEAgACABNgIAQZDQACADIAdyNgIAIAEgADYCGCABIAE2AgggASABNgIMDAELIARBGSACQQF2a0EAIAJBH0cbdCECIAAoAgAhAAJAA0AgACIDKAIEQXhxIARGDQEgAkEddiEAIAJBAXQhAiADIABBBHFqQRBqIgcoAgAiAA0ACyAHIAE2AgAgASADNgIYIAEgATYCDCABIAE2AggMAQsgAygCCCIAIAE2AgwgAyABNgIIIAFBADYCGCABIAM2AgwgASAANgIIC0Gs0ABBrNAAKAIAQQFrIgBBfyAAGzYCAAsLBwAgAC0AKAsHACAALQAqCwcAIAAtACsLBwAgAC0AKQsHACAALwEyCwcAIAAtAC4LQAEEfyAAKAIYIQEgAC0ALSECIAAtACghAyAAKAI4IQQgABAwIAAgBDYCOCAAIAM6ACggACACOgAtIAAgATYCGAu74gECB38DfiABIAJqIQQCQCAAIgIoAgwiAA0AIAIoAgQEQCACIAE2AgQLIwBBEGsiCCQAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACfwJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIAIoAhwiA0EBaw7dAdoBAdkBAgMEBQYHCAkKCwwNDtgBDxDXARES1gETFBUWFxgZGhvgAd8BHB0e1QEfICEiIyQl1AEmJygpKiss0wHSAS0u0QHQAS8wMTIzNDU2Nzg5Ojs8PT4/QEFCQ0RFRtsBR0hJSs8BzgFLzQFMzAFNTk9QUVJTVFVWV1hZWltcXV5fYGFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6e3x9fn+AAYEBggGDAYQBhQGGAYcBiAGJAYoBiwGMAY0BjgGPAZABkQGSAZMBlAGVAZYBlwGYAZkBmgGbAZwBnQGeAZ8BoAGhAaIBowGkAaUBpgGnAagBqQGqAasBrAGtAa4BrwGwAbEBsgGzAbQBtQG2AbcBywHKAbgByQG5AcgBugG7AbwBvQG+Ab8BwAHBAcIBwwHEAcUBxgEA3AELQQAMxgELQQ4MxQELQQ0MxAELQQ8MwwELQRAMwgELQRMMwQELQRQMwAELQRUMvwELQRYMvgELQRgMvQELQRkMvAELQRoMuwELQRsMugELQRwMuQELQR0MuAELQQgMtwELQR4MtgELQSAMtQELQR8MtAELQQcMswELQSEMsgELQSIMsQELQSMMsAELQSQMrwELQRIMrgELQREMrQELQSUMrAELQSYMqwELQScMqgELQSgMqQELQcMBDKgBC0EqDKcBC0ErDKYBC0EsDKUBC0EtDKQBC0EuDKMBC0EvDKIBC0HEAQyhAQtBMAygAQtBNAyfAQtBDAyeAQtBMQydAQtBMgycAQtBMwybAQtBOQyaAQtBNQyZAQtBxQEMmAELQQsMlwELQToMlgELQTYMlQELQQoMlAELQTcMkwELQTgMkgELQTwMkQELQTsMkAELQT0MjwELQQkMjgELQSkMjQELQT4MjAELQT8MiwELQcAADIoBC0HBAAyJAQtBwgAMiAELQcMADIcBC0HEAAyGAQtBxQAMhQELQcYADIQBC0EXDIMBC0HHAAyCAQtByAAMgQELQckADIABC0HKAAx/C0HLAAx+C0HNAAx9C0HMAAx8C0HOAAx7C0HPAAx6C0HQAAx5C0HRAAx4C0HSAAx3C0HTAAx2C0HUAAx1C0HWAAx0C0HVAAxzC0EGDHILQdcADHELQQUMcAtB2AAMbwtBBAxuC0HZAAxtC0HaAAxsC0HbAAxrC0HcAAxqC0EDDGkLQd0ADGgLQd4ADGcLQd8ADGYLQeEADGULQeAADGQLQeIADGMLQeMADGILQQIMYQtB5AAMYAtB5QAMXwtB5gAMXgtB5wAMXQtB6AAMXAtB6QAMWwtB6gAMWgtB6wAMWQtB7AAMWAtB7QAMVwtB7gAMVgtB7wAMVQtB8AAMVAtB8QAMUwtB8gAMUgtB8wAMUQtB9AAMUAtB9QAMTwtB9gAMTgtB9wAMTQtB+AAMTAtB+QAMSwtB+gAMSgtB+wAMSQtB/AAMSAtB/QAMRwtB/gAMRgtB/wAMRQtBgAEMRAtBgQEMQwtBggEMQgtBgwEMQQtBhAEMQAtBhQEMPwtBhgEMPgtBhwEMPQtBiAEMPAtBiQEMOwtBigEMOgtBiwEMOQtBjAEMOAtBjQEMNwtBjgEMNgtBjwEMNQtBkAEMNAtBkQEMMwtBkgEMMgtBkwEMMQtBlAEMMAtBlQEMLwtBlgEMLgtBlwEMLQtBmAEMLAtBmQEMKwtBmgEMKgtBmwEMKQtBnAEMKAtBnQEMJwtBngEMJgtBnwEMJQtBoAEMJAtBoQEMIwtBogEMIgtBowEMIQtBpAEMIAtBpQEMHwtBpgEMHgtBpwEMHQtBqAEMHAtBqQEMGwtBqgEMGgtBqwEMGQtBrAEMGAtBrQEMFwtBrgEMFgtBAQwVC0GvAQwUC0GwAQwTC0GxAQwSC0GzAQwRC0GyAQwQC0G0AQwPC0G1AQwOC0G2AQwNC0G3AQwMC0G4AQwLC0G5AQwKC0G6AQwJC0G7AQwIC0HGAQwHC0G8AQwGC0G9AQwFC0G+AQwEC0G/AQwDC0HAAQwCC0HCAQwBC0HBAQshAwNAAkACQAJAAkACQAJAAkACQAJAIAICfwJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJ/AkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAgAgJ/AkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACfwJAAkACfwJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACfwJAAkACQAJAAn8CQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCADDsYBAAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHyAhIyUmKCorLC8wMTIzNDU2Nzk6Ozw9lANAQkRFRklLTk9QUVJTVFVWWFpbXF1eX2BhYmNkZWZnaGpsb3Bxc3V2eHl6e3x/gAGBAYIBgwGEAYUBhgGHAYgBiQGKAYsBjAGNAY4BjwGQAZEBkgGTAZQBlQGWAZcBmAGZAZoBmwGcAZ0BngGfAaABoQGiAaMBpAGlAaYBpwGoAakBqgGrAawBrQGuAa8BsAGxAbIBswG0AbUBtgG3AbgBuQG6AbsBvAG9Ab4BvwHAAcEBwgHDAcQBxQHGAccByAHJAcsBzAHNAc4BzwGKA4kDiAOHA4QDgwOAA/sC+gL5AvgC9wL0AvMC8gLLAsECsALZAQsgASAERw3wAkHdASEDDLMDCyABIARHDcgBQcMBIQMMsgMLIAEgBEcNe0H3ACEDDLEDCyABIARHDXBB7wAhAwywAwsgASAERw1pQeoAIQMMrwMLIAEgBEcNZUHoACEDDK4DCyABIARHDWJB5gAhAwytAwsgASAERw0aQRghAwysAwsgASAERw0VQRIhAwyrAwsgASAERw1CQcUAIQMMqgMLIAEgBEcNNEE/IQMMqQMLIAEgBEcNMkE8IQMMqAMLIAEgBEcNK0ExIQMMpwMLIAItAC5BAUYNnwMMwQILQQAhAAJAAkACQCACLQAqRQ0AIAItACtFDQAgAi8BMCIDQQJxRQ0BDAILIAIvATAiA0EBcUUNAQtBASEAIAItAChBAUYNACACLwEyIgVB5ABrQeQASQ0AIAVBzAFGDQAgBUGwAkYNACADQcAAcQ0AQQAhACADQYgEcUGABEYNACADQShxQQBHIQALIAJBADsBMCACQQA6AC8gAEUN3wIgAkIANwMgDOACC0EAIQACQCACKAI4IgNFDQAgAygCLCIDRQ0AIAIgAxEAACEACyAARQ3MASAAQRVHDd0CIAJBBDYCHCACIAE2AhQgAkGwGDYCECACQRU2AgxBACEDDKQDCyABIARGBEBBBiEDDKQDCyABQQFqIQFBACEAAkAgAigCOCIDRQ0AIAMoAlQiA0UNACACIAMRAAAhAAsgAA3ZAgwcCyACQgA3AyBBEiEDDIkDCyABIARHDRZBHSEDDKEDCyABIARHBEAgAUEBaiEBQRAhAwyIAwtBByEDDKADCyACIAIpAyAiCiAEIAFrrSILfSIMQgAgCiAMWhs3AyAgCiALWA3UAkEIIQMMnwMLIAEgBEcEQCACQQk2AgggAiABNgIEQRQhAwyGAwtBCSEDDJ4DCyACKQMgQgBSDccBIAIgAi8BMEGAAXI7ATAMQgsgASAERw0/QdAAIQMMnAMLIAEgBEYEQEELIQMMnAMLIAFBAWohAUEAIQACQCACKAI4IgNFDQAgAygCUCIDRQ0AIAIgAxEAACEACyAADc8CDMYBC0EAIQACQCACKAI4IgNFDQAgAygCSCIDRQ0AIAIgAxEAACEACyAARQ3GASAAQRVHDc0CIAJBCzYCHCACIAE2AhQgAkGCGTYCECACQRU2AgxBACEDDJoDC0EAIQACQCACKAI4IgNFDQAgAygCSCIDRQ0AIAIgAxEAACEACyAARQ0MIABBFUcNygIgAkEaNgIcIAIgATYCFCACQYIZNgIQIAJBFTYCDEEAIQMMmQMLQQAhAAJAIAIoAjgiA0UNACADKAJMIgNFDQAgAiADEQAAIQALIABFDcQBIABBFUcNxwIgAkELNgIcIAIgATYCFCACQZEXNgIQIAJBFTYCDEEAIQMMmAMLIAEgBEYEQEEPIQMMmAMLIAEtAAAiAEE7Rg0HIABBDUcNxAIgAUEBaiEBDMMBC0EAIQACQCACKAI4IgNFDQAgAygCTCIDRQ0AIAIgAxEAACEACyAARQ3DASAAQRVHDcICIAJBDzYCHCACIAE2AhQgAkGRFzYCECACQRU2AgxBACEDDJYDCwNAIAEtAABB8DVqLQAAIgBBAUcEQCAAQQJHDcECIAIoAgQhAEEAIQMgAkEANgIEIAIgACABQQFqIgEQLSIADcICDMUBCyAEIAFBAWoiAUcNAAtBEiEDDJUDC0EAIQACQCACKAI4IgNFDQAgAygCTCIDRQ0AIAIgAxEAACEACyAARQ3FASAAQRVHDb0CIAJBGzYCHCACIAE2AhQgAkGRFzYCECACQRU2AgxBACEDDJQDCyABIARGBEBBFiEDDJQDCyACQQo2AgggAiABNgIEQQAhAAJAIAIoAjgiA0UNACADKAJIIgNFDQAgAiADEQAAIQALIABFDcIBIABBFUcNuQIgAkEVNgIcIAIgATYCFCACQYIZNgIQIAJBFTYCDEEAIQMMkwMLIAEgBEcEQANAIAEtAABB8DdqLQAAIgBBAkcEQAJAIABBAWsOBMQCvQIAvgK9AgsgAUEBaiEBQQghAwz8AgsgBCABQQFqIgFHDQALQRUhAwyTAwtBFSEDDJIDCwNAIAEtAABB8DlqLQAAIgBBAkcEQCAAQQFrDgTFArcCwwK4ArcCCyAEIAFBAWoiAUcNAAtBGCEDDJEDCyABIARHBEAgAkELNgIIIAIgATYCBEEHIQMM+AILQRkhAwyQAwsgAUEBaiEBDAILIAEgBEYEQEEaIQMMjwMLAkAgAS0AAEENaw4UtQG/Ab8BvwG/Ab8BvwG/Ab8BvwG/Ab8BvwG/Ab8BvwG/Ab8BvwEAvwELQQAhAyACQQA2AhwgAkGvCzYCECACQQI2AgwgAiABQQFqNgIUDI4DCyABIARGBEBBGyEDDI4DCyABLQAAIgBBO0cEQCAAQQ1HDbECIAFBAWohAQy6AQsgAUEBaiEBC0EiIQMM8wILIAEgBEYEQEEcIQMMjAMLQgAhCgJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAgAS0AAEEwaw43wQLAAgABAgMEBQYH0AHQAdAB0AHQAdAB0AEICQoLDA3QAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdABDg8QERIT0AELQgIhCgzAAgtCAyEKDL8CC0IEIQoMvgILQgUhCgy9AgtCBiEKDLwCC0IHIQoMuwILQgghCgy6AgtCCSEKDLkCC0IKIQoMuAILQgshCgy3AgtCDCEKDLYCC0INIQoMtQILQg4hCgy0AgtCDyEKDLMCC0IKIQoMsgILQgshCgyxAgtCDCEKDLACC0INIQoMrwILQg4hCgyuAgtCDyEKDK0CC0IAIQoCQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIAEtAABBMGsON8ACvwIAAQIDBAUGB74CvgK+Ar4CvgK+Ar4CCAkKCwwNvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ar4CvgK+Ag4PEBESE74CC0ICIQoMvwILQgMhCgy+AgtCBCEKDL0CC0IFIQoMvAILQgYhCgy7AgtCByEKDLoCC0IIIQoMuQILQgkhCgy4AgtCCiEKDLcCC0ILIQoMtgILQgwhCgy1AgtCDSEKDLQCC0IOIQoMswILQg8hCgyyAgtCCiEKDLECC0ILIQoMsAILQgwhCgyvAgtCDSEKDK4CC0IOIQoMrQILQg8hCgysAgsgAiACKQMgIgogBCABa60iC30iDEIAIAogDFobNwMgIAogC1gNpwJBHyEDDIkDCyABIARHBEAgAkEJNgIIIAIgATYCBEElIQMM8AILQSAhAwyIAwtBASEFIAIvATAiA0EIcUUEQCACKQMgQgBSIQULAkAgAi0ALgRAQQEhACACLQApQQVGDQEgA0HAAHFFIAVxRQ0BC0EAIQAgA0HAAHENAEECIQAgA0EIcQ0AIANBgARxBEACQCACLQAoQQFHDQAgAi0ALUEKcQ0AQQUhAAwCC0EEIQAMAQsgA0EgcUUEQAJAIAItAChBAUYNACACLwEyIgBB5ABrQeQASQ0AIABBzAFGDQAgAEGwAkYNAEEEIQAgA0EocUUNAiADQYgEcUGABEYNAgtBACEADAELQQBBAyACKQMgUBshAAsgAEEBaw4FvgIAsAEBpAKhAgtBESEDDO0CCyACQQE6AC8MhAMLIAEgBEcNnQJBJCEDDIQDCyABIARHDRxBxgAhAwyDAwtBACEAAkAgAigCOCIDRQ0AIAMoAkQiA0UNACACIAMRAAAhAAsgAEUNJyAAQRVHDZgCIAJB0AA2AhwgAiABNgIUIAJBkRg2AhAgAkEVNgIMQQAhAwyCAwsgASAERgRAQSghAwyCAwtBACEDIAJBADYCBCACQQw2AgggAiABIAEQKiIARQ2UAiACQSc2AhwgAiABNgIUIAIgADYCDAyBAwsgASAERgRAQSkhAwyBAwsgAS0AACIAQSBGDRMgAEEJRw2VAiABQQFqIQEMFAsgASAERwRAIAFBAWohAQwWC0EqIQMM/wILIAEgBEYEQEErIQMM/wILIAEtAAAiAEEJRyAAQSBHcQ2QAiACLQAsQQhHDd0CIAJBADoALAzdAgsgASAERgRAQSwhAwz+AgsgAS0AAEEKRw2OAiABQQFqIQEMsAELIAEgBEcNigJBLyEDDPwCCwNAIAEtAAAiAEEgRwRAIABBCmsOBIQCiAKIAoQChgILIAQgAUEBaiIBRw0AC0ExIQMM+wILQTIhAyABIARGDfoCIAIoAgAiACAEIAFraiEHIAEgAGtBA2ohBgJAA0AgAEHwO2otAAAgAS0AACIFQSByIAUgBUHBAGtB/wFxQRpJG0H/AXFHDQEgAEEDRgRAQQYhAQziAgsgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAc2AgAM+wILIAJBADYCAAyGAgtBMyEDIAQgASIARg35AiAEIAFrIAIoAgAiAWohByAAIAFrQQhqIQYCQANAIAFB9DtqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw0BIAFBCEYEQEEFIQEM4QILIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADPoCCyACQQA2AgAgACEBDIUCC0E0IQMgBCABIgBGDfgCIAQgAWsgAigCACIBaiEHIAAgAWtBBWohBgJAA0AgAUHQwgBqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw0BIAFBBUYEQEEHIQEM4AILIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADPkCCyACQQA2AgAgACEBDIQCCyABIARHBEADQCABLQAAQYA+ai0AACIAQQFHBEAgAEECRg0JDIECCyAEIAFBAWoiAUcNAAtBMCEDDPgCC0EwIQMM9wILIAEgBEcEQANAIAEtAAAiAEEgRwRAIABBCmsOBP8B/gH+Af8B/gELIAQgAUEBaiIBRw0AC0E4IQMM9wILQTghAwz2AgsDQCABLQAAIgBBIEcgAEEJR3EN9gEgBCABQQFqIgFHDQALQTwhAwz1AgsDQCABLQAAIgBBIEcEQAJAIABBCmsOBPkBBAT5AQALIABBLEYN9QEMAwsgBCABQQFqIgFHDQALQT8hAwz0AgtBwAAhAyABIARGDfMCIAIoAgAiACAEIAFraiEFIAEgAGtBBmohBgJAA0AgAEGAQGstAAAgAS0AAEEgckcNASAAQQZGDdsCIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADPQCCyACQQA2AgALQTYhAwzZAgsgASAERgRAQcEAIQMM8gILIAJBDDYCCCACIAE2AgQgAi0ALEEBaw4E+wHuAewB6wHUAgsgAUEBaiEBDPoBCyABIARHBEADQAJAIAEtAAAiAEEgciAAIABBwQBrQf8BcUEaSRtB/wFxIgBBCUYNACAAQSBGDQACQAJAAkACQCAAQeMAaw4TAAMDAwMDAwMBAwMDAwMDAwMDAgMLIAFBAWohAUExIQMM3AILIAFBAWohAUEyIQMM2wILIAFBAWohAUEzIQMM2gILDP4BCyAEIAFBAWoiAUcNAAtBNSEDDPACC0E1IQMM7wILIAEgBEcEQANAIAEtAABBgDxqLQAAQQFHDfcBIAQgAUEBaiIBRw0AC0E9IQMM7wILQT0hAwzuAgtBACEAAkAgAigCOCIDRQ0AIAMoAkAiA0UNACACIAMRAAAhAAsgAEUNASAAQRVHDeYBIAJBwgA2AhwgAiABNgIUIAJB4xg2AhAgAkEVNgIMQQAhAwztAgsgAUEBaiEBC0E8IQMM0gILIAEgBEYEQEHCACEDDOsCCwJAA0ACQCABLQAAQQlrDhgAAswCzALRAswCzALMAswCzALMAswCzALMAswCzALMAswCzALMAswCzALMAgDMAgsgBCABQQFqIgFHDQALQcIAIQMM6wILIAFBAWohASACLQAtQQFxRQ3+AQtBLCEDDNACCyABIARHDd4BQcQAIQMM6AILA0AgAS0AAEGQwABqLQAAQQFHDZwBIAQgAUEBaiIBRw0AC0HFACEDDOcCCyABLQAAIgBBIEYN/gEgAEE6Rw3AAiACKAIEIQBBACEDIAJBADYCBCACIAAgARApIgAN3gEM3QELQccAIQMgBCABIgBGDeUCIAQgAWsgAigCACIBaiEHIAAgAWtBBWohBgNAIAFBkMIAai0AACAALQAAIgVBIHIgBSAFQcEAa0H/AXFBGkkbQf8BcUcNvwIgAUEFRg3CAiABQQFqIQEgBCAAQQFqIgBHDQALIAIgBzYCAAzlAgtByAAhAyAEIAEiAEYN5AIgBCABayACKAIAIgFqIQcgACABa0EJaiEGA0AgAUGWwgBqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw2+AkECIAFBCUYNwgIaIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADOQCCyABIARGBEBByQAhAwzkAgsCQAJAIAEtAAAiAEEgciAAIABBwQBrQf8BcUEaSRtB/wFxQe4Aaw4HAL8CvwK/Ar8CvwIBvwILIAFBAWohAUE+IQMMywILIAFBAWohAUE/IQMMygILQcoAIQMgBCABIgBGDeICIAQgAWsgAigCACIBaiEGIAAgAWtBAWohBwNAIAFBoMIAai0AACAALQAAIgVBIHIgBSAFQcEAa0H/AXFBGkkbQf8BcUcNvAIgAUEBRg2+AiABQQFqIQEgBCAAQQFqIgBHDQALIAIgBjYCAAziAgtBywAhAyAEIAEiAEYN4QIgBCABayACKAIAIgFqIQcgACABa0EOaiEGA0AgAUGiwgBqLQAAIAAtAAAiBUEgciAFIAVBwQBrQf8BcUEaSRtB/wFxRw27AiABQQ5GDb4CIAFBAWohASAEIABBAWoiAEcNAAsgAiAHNgIADOECC0HMACEDIAQgASIARg3gAiAEIAFrIAIoAgAiAWohByAAIAFrQQ9qIQYDQCABQcDCAGotAAAgAC0AACIFQSByIAUgBUHBAGtB/wFxQRpJG0H/AXFHDboCQQMgAUEPRg2+AhogAUEBaiEBIAQgAEEBaiIARw0ACyACIAc2AgAM4AILQc0AIQMgBCABIgBGDd8CIAQgAWsgAigCACIBaiEHIAAgAWtBBWohBgNAIAFB0MIAai0AACAALQAAIgVBIHIgBSAFQcEAa0H/AXFBGkkbQf8BcUcNuQJBBCABQQVGDb0CGiABQQFqIQEgBCAAQQFqIgBHDQALIAIgBzYCAAzfAgsgASAERgRAQc4AIQMM3wILAkACQAJAAkAgAS0AACIAQSByIAAgAEHBAGtB/wFxQRpJG0H/AXFB4wBrDhMAvAK8ArwCvAK8ArwCvAK8ArwCvAK8ArwCAbwCvAK8AgIDvAILIAFBAWohAUHBACEDDMgCCyABQQFqIQFBwgAhAwzHAgsgAUEBaiEBQcMAIQMMxgILIAFBAWohAUHEACEDDMUCCyABIARHBEAgAkENNgIIIAIgATYCBEHFACEDDMUCC0HPACEDDN0CCwJAAkAgAS0AAEEKaw4EAZABkAEAkAELIAFBAWohAQtBKCEDDMMCCyABIARGBEBB0QAhAwzcAgsgAS0AAEEgRw0AIAFBAWohASACLQAtQQFxRQ3QAQtBFyEDDMECCyABIARHDcsBQdIAIQMM2QILQdMAIQMgASAERg3YAiACKAIAIgAgBCABa2ohBiABIABrQQFqIQUDQCABLQAAIABB1sIAai0AAEcNxwEgAEEBRg3KASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBjYCAAzYAgsgASAERgRAQdUAIQMM2AILIAEtAABBCkcNwgEgAUEBaiEBDMoBCyABIARGBEBB1gAhAwzXAgsCQAJAIAEtAABBCmsOBADDAcMBAcMBCyABQQFqIQEMygELIAFBAWohAUHKACEDDL0CC0EAIQACQCACKAI4IgNFDQAgAygCPCIDRQ0AIAIgAxEAACEACyAADb8BQc0AIQMMvAILIAItAClBIkYNzwIMiQELIAQgASIFRgRAQdsAIQMM1AILQQAhAEEBIQFBASEGQQAhAwJAAn8CQAJAAkACQAJAAkACQCAFLQAAQTBrDgrFAcQBAAECAwQFBgjDAQtBAgwGC0EDDAULQQQMBAtBBQwDC0EGDAILQQcMAQtBCAshA0EAIQFBACEGDL0BC0EJIQNBASEAQQAhAUEAIQYMvAELIAEgBEYEQEHdACEDDNMCCyABLQAAQS5HDbgBIAFBAWohAQyIAQsgASAERw22AUHfACEDDNECCyABIARHBEAgAkEONgIIIAIgATYCBEHQACEDDLgCC0HgACEDDNACC0HhACEDIAEgBEYNzwIgAigCACIAIAQgAWtqIQUgASAAa0EDaiEGA0AgAS0AACAAQeLCAGotAABHDbEBIABBA0YNswEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMzwILQeIAIQMgASAERg3OAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYDQCABLQAAIABB5sIAai0AAEcNsAEgAEECRg2vASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAzOAgtB4wAhAyABIARGDc0CIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgNAIAEtAAAgAEHpwgBqLQAARw2vASAAQQNGDa0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADM0CCyABIARGBEBB5QAhAwzNAgsgAUEBaiEBQQAhAAJAIAIoAjgiA0UNACADKAIwIgNFDQAgAiADEQAAIQALIAANqgFB1gAhAwyzAgsgASAERwRAA0AgAS0AACIAQSBHBEACQAJAAkAgAEHIAGsOCwABswGzAbMBswGzAbMBswGzAQKzAQsgAUEBaiEBQdIAIQMMtwILIAFBAWohAUHTACEDDLYCCyABQQFqIQFB1AAhAwy1AgsgBCABQQFqIgFHDQALQeQAIQMMzAILQeQAIQMMywILA0AgAS0AAEHwwgBqLQAAIgBBAUcEQCAAQQJrDgOnAaYBpQGkAQsgBCABQQFqIgFHDQALQeYAIQMMygILIAFBAWogASAERw0CGkHnACEDDMkCCwNAIAEtAABB8MQAai0AACIAQQFHBEACQCAAQQJrDgSiAaEBoAEAnwELQdcAIQMMsQILIAQgAUEBaiIBRw0AC0HoACEDDMgCCyABIARGBEBB6QAhAwzIAgsCQCABLQAAIgBBCmsOGrcBmwGbAbQBmwGbAZsBmwGbAZsBmwGbAZsBmwGbAZsBmwGbAZsBmwGbAZsBpAGbAZsBAJkBCyABQQFqCyEBQQYhAwytAgsDQCABLQAAQfDGAGotAABBAUcNfSAEIAFBAWoiAUcNAAtB6gAhAwzFAgsgAUEBaiABIARHDQIaQesAIQMMxAILIAEgBEYEQEHsACEDDMQCCyABQQFqDAELIAEgBEYEQEHtACEDDMMCCyABQQFqCyEBQQQhAwyoAgsgASAERgRAQe4AIQMMwQILAkACQAJAIAEtAABB8MgAai0AAEEBaw4HkAGPAY4BAHwBAo0BCyABQQFqIQEMCwsgAUEBagyTAQtBACEDIAJBADYCHCACQZsSNgIQIAJBBzYCDCACIAFBAWo2AhQMwAILAkADQCABLQAAQfDIAGotAAAiAEEERwRAAkACQCAAQQFrDgeUAZMBkgGNAQAEAY0BC0HaACEDDKoCCyABQQFqIQFB3AAhAwypAgsgBCABQQFqIgFHDQALQe8AIQMMwAILIAFBAWoMkQELIAQgASIARgRAQfAAIQMMvwILIAAtAABBL0cNASAAQQFqIQEMBwsgBCABIgBGBEBB8QAhAwy+AgsgAC0AACIBQS9GBEAgAEEBaiEBQd0AIQMMpQILIAFBCmsiA0EWSw0AIAAhAUEBIAN0QYmAgAJxDfkBC0EAIQMgAkEANgIcIAIgADYCFCACQYwcNgIQIAJBBzYCDAy8AgsgASAERwRAIAFBAWohAUHeACEDDKMCC0HyACEDDLsCCyABIARGBEBB9AAhAwy7AgsCQCABLQAAQfDMAGotAABBAWsOA/cBcwCCAQtB4QAhAwyhAgsgASAERwRAA0AgAS0AAEHwygBqLQAAIgBBA0cEQAJAIABBAWsOAvkBAIUBC0HfACEDDKMCCyAEIAFBAWoiAUcNAAtB8wAhAwy6AgtB8wAhAwy5AgsgASAERwRAIAJBDzYCCCACIAE2AgRB4AAhAwygAgtB9QAhAwy4AgsgASAERgRAQfYAIQMMuAILIAJBDzYCCCACIAE2AgQLQQMhAwydAgsDQCABLQAAQSBHDY4CIAQgAUEBaiIBRw0AC0H3ACEDDLUCCyABIARGBEBB+AAhAwy1AgsgAS0AAEEgRw16IAFBAWohAQxbC0EAIQACQCACKAI4IgNFDQAgAygCOCIDRQ0AIAIgAxEAACEACyAADXgMgAILIAEgBEYEQEH6ACEDDLMCCyABLQAAQcwARw10IAFBAWohAUETDHYLQfsAIQMgASAERg2xAiACKAIAIgAgBCABa2ohBSABIABrQQVqIQYDQCABLQAAIABB8M4Aai0AAEcNcyAAQQVGDXUgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMsQILIAEgBEYEQEH8ACEDDLECCwJAAkAgAS0AAEHDAGsODAB0dHR0dHR0dHR0AXQLIAFBAWohAUHmACEDDJgCCyABQQFqIQFB5wAhAwyXAgtB/QAhAyABIARGDa8CIAIoAgAiACAEIAFraiEFIAEgAGtBAmohBgJAA0AgAS0AACAAQe3PAGotAABHDXIgAEECRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADLACCyACQQA2AgAgBkEBaiEBQRAMcwtB/gAhAyABIARGDa4CIAIoAgAiACAEIAFraiEFIAEgAGtBBWohBgJAA0AgAS0AACAAQfbOAGotAABHDXEgAEEFRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADK8CCyACQQA2AgAgBkEBaiEBQRYMcgtB/wAhAyABIARGDa0CIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgJAA0AgAS0AACAAQfzOAGotAABHDXAgAEEDRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADK4CCyACQQA2AgAgBkEBaiEBQQUMcQsgASAERgRAQYABIQMMrQILIAEtAABB2QBHDW4gAUEBaiEBQQgMcAsgASAERgRAQYEBIQMMrAILAkACQCABLQAAQc4Aaw4DAG8BbwsgAUEBaiEBQesAIQMMkwILIAFBAWohAUHsACEDDJICCyABIARGBEBBggEhAwyrAgsCQAJAIAEtAABByABrDggAbm5ubm5uAW4LIAFBAWohAUHqACEDDJICCyABQQFqIQFB7QAhAwyRAgtBgwEhAyABIARGDakCIAIoAgAiACAEIAFraiEFIAEgAGtBAmohBgJAA0AgAS0AACAAQYDPAGotAABHDWwgAEECRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADKoCCyACQQA2AgAgBkEBaiEBQQAMbQtBhAEhAyABIARGDagCIAIoAgAiACAEIAFraiEFIAEgAGtBBGohBgJAA0AgAS0AACAAQYPPAGotAABHDWsgAEEERg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADKkCCyACQQA2AgAgBkEBaiEBQSMMbAsgASAERgRAQYUBIQMMqAILAkACQCABLQAAQcwAaw4IAGtra2trawFrCyABQQFqIQFB7wAhAwyPAgsgAUEBaiEBQfAAIQMMjgILIAEgBEYEQEGGASEDDKcCCyABLQAAQcUARw1oIAFBAWohAQxgC0GHASEDIAEgBEYNpQIgAigCACIAIAQgAWtqIQUgASAAa0EDaiEGAkADQCABLQAAIABBiM8Aai0AAEcNaCAAQQNGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMpgILIAJBADYCACAGQQFqIQFBLQxpC0GIASEDIAEgBEYNpAIgAigCACIAIAQgAWtqIQUgASAAa0EIaiEGAkADQCABLQAAIABB0M8Aai0AAEcNZyAAQQhGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMpQILIAJBADYCACAGQQFqIQFBKQxoCyABIARGBEBBiQEhAwykAgtBASABLQAAQd8ARw1nGiABQQFqIQEMXgtBigEhAyABIARGDaICIAIoAgAiACAEIAFraiEFIAEgAGtBAWohBgNAIAEtAAAgAEGMzwBqLQAARw1kIABBAUYN+gEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMogILQYsBIQMgASAERg2hAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEGOzwBqLQAARw1kIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyiAgsgAkEANgIAIAZBAWohAUECDGULQYwBIQMgASAERg2gAiACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEHwzwBqLQAARw1jIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyhAgsgAkEANgIAIAZBAWohAUEfDGQLQY0BIQMgASAERg2fAiACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEHyzwBqLQAARw1iIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAygAgsgAkEANgIAIAZBAWohAUEJDGMLIAEgBEYEQEGOASEDDJ8CCwJAAkAgAS0AAEHJAGsOBwBiYmJiYgFiCyABQQFqIQFB+AAhAwyGAgsgAUEBaiEBQfkAIQMMhQILQY8BIQMgASAERg2dAiACKAIAIgAgBCABa2ohBSABIABrQQVqIQYCQANAIAEtAAAgAEGRzwBqLQAARw1gIABBBUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyeAgsgAkEANgIAIAZBAWohAUEYDGELQZABIQMgASAERg2cAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEGXzwBqLQAARw1fIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAydAgsgAkEANgIAIAZBAWohAUEXDGALQZEBIQMgASAERg2bAiACKAIAIgAgBCABa2ohBSABIABrQQZqIQYCQANAIAEtAAAgAEGazwBqLQAARw1eIABBBkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAycAgsgAkEANgIAIAZBAWohAUEVDF8LQZIBIQMgASAERg2aAiACKAIAIgAgBCABa2ohBSABIABrQQVqIQYCQANAIAEtAAAgAEGhzwBqLQAARw1dIABBBUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAybAgsgAkEANgIAIAZBAWohAUEeDF4LIAEgBEYEQEGTASEDDJoCCyABLQAAQcwARw1bIAFBAWohAUEKDF0LIAEgBEYEQEGUASEDDJkCCwJAAkAgAS0AAEHBAGsODwBcXFxcXFxcXFxcXFxcAVwLIAFBAWohAUH+ACEDDIACCyABQQFqIQFB/wAhAwz/AQsgASAERgRAQZUBIQMMmAILAkACQCABLQAAQcEAaw4DAFsBWwsgAUEBaiEBQf0AIQMM/wELIAFBAWohAUGAASEDDP4BC0GWASEDIAEgBEYNlgIgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABBp88Aai0AAEcNWSAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMlwILIAJBADYCACAGQQFqIQFBCwxaCyABIARGBEBBlwEhAwyWAgsCQAJAAkACQCABLQAAQS1rDiMAW1tbW1tbW1tbW1tbW1tbW1tbW1tbW1sBW1tbW1sCW1tbA1sLIAFBAWohAUH7ACEDDP8BCyABQQFqIQFB/AAhAwz+AQsgAUEBaiEBQYEBIQMM/QELIAFBAWohAUGCASEDDPwBC0GYASEDIAEgBEYNlAIgAigCACIAIAQgAWtqIQUgASAAa0EEaiEGAkADQCABLQAAIABBqc8Aai0AAEcNVyAAQQRGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMlQILIAJBADYCACAGQQFqIQFBGQxYC0GZASEDIAEgBEYNkwIgAigCACIAIAQgAWtqIQUgASAAa0EFaiEGAkADQCABLQAAIABBrs8Aai0AAEcNViAAQQVGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMlAILIAJBADYCACAGQQFqIQFBBgxXC0GaASEDIAEgBEYNkgIgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABBtM8Aai0AAEcNVSAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMkwILIAJBADYCACAGQQFqIQFBHAxWC0GbASEDIAEgBEYNkQIgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABBts8Aai0AAEcNVCAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAMkgILIAJBADYCACAGQQFqIQFBJwxVCyABIARGBEBBnAEhAwyRAgsCQAJAIAEtAABB1ABrDgIAAVQLIAFBAWohAUGGASEDDPgBCyABQQFqIQFBhwEhAwz3AQtBnQEhAyABIARGDY8CIAIoAgAiACAEIAFraiEFIAEgAGtBAWohBgJAA0AgAS0AACAAQbjPAGotAABHDVIgAEEBRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADJACCyACQQA2AgAgBkEBaiEBQSYMUwtBngEhAyABIARGDY4CIAIoAgAiACAEIAFraiEFIAEgAGtBAWohBgJAA0AgAS0AACAAQbrPAGotAABHDVEgAEEBRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADI8CCyACQQA2AgAgBkEBaiEBQQMMUgtBnwEhAyABIARGDY0CIAIoAgAiACAEIAFraiEFIAEgAGtBAmohBgJAA0AgAS0AACAAQe3PAGotAABHDVAgAEECRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADI4CCyACQQA2AgAgBkEBaiEBQQwMUQtBoAEhAyABIARGDYwCIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgJAA0AgAS0AACAAQbzPAGotAABHDU8gAEEDRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADI0CCyACQQA2AgAgBkEBaiEBQQ0MUAsgASAERgRAQaEBIQMMjAILAkACQCABLQAAQcYAaw4LAE9PT09PT09PTwFPCyABQQFqIQFBiwEhAwzzAQsgAUEBaiEBQYwBIQMM8gELIAEgBEYEQEGiASEDDIsCCyABLQAAQdAARw1MIAFBAWohAQxGCyABIARGBEBBowEhAwyKAgsCQAJAIAEtAABByQBrDgcBTU1NTU0ATQsgAUEBaiEBQY4BIQMM8QELIAFBAWohAUEiDE0LQaQBIQMgASAERg2IAiACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEHAzwBqLQAARw1LIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyJAgsgAkEANgIAIAZBAWohAUEdDEwLIAEgBEYEQEGlASEDDIgCCwJAAkAgAS0AAEHSAGsOAwBLAUsLIAFBAWohAUGQASEDDO8BCyABQQFqIQFBBAxLCyABIARGBEBBpgEhAwyHAgsCQAJAAkACQAJAIAEtAABBwQBrDhUATU1NTU1NTU1NTQFNTQJNTQNNTQRNCyABQQFqIQFBiAEhAwzxAQsgAUEBaiEBQYkBIQMM8AELIAFBAWohAUGKASEDDO8BCyABQQFqIQFBjwEhAwzuAQsgAUEBaiEBQZEBIQMM7QELQacBIQMgASAERg2FAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHtzwBqLQAARw1IIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyGAgsgAkEANgIAIAZBAWohAUERDEkLQagBIQMgASAERg2EAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHCzwBqLQAARw1HIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyFAgsgAkEANgIAIAZBAWohAUEsDEgLQakBIQMgASAERg2DAiACKAIAIgAgBCABa2ohBSABIABrQQRqIQYCQANAIAEtAAAgAEHFzwBqLQAARw1GIABBBEYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyEAgsgAkEANgIAIAZBAWohAUErDEcLQaoBIQMgASAERg2CAiACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHKzwBqLQAARw1FIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyDAgsgAkEANgIAIAZBAWohAUEUDEYLIAEgBEYEQEGrASEDDIICCwJAAkACQAJAIAEtAABBwgBrDg8AAQJHR0dHR0dHR0dHRwNHCyABQQFqIQFBkwEhAwzrAQsgAUEBaiEBQZQBIQMM6gELIAFBAWohAUGVASEDDOkBCyABQQFqIQFBlgEhAwzoAQsgASAERgRAQawBIQMMgQILIAEtAABBxQBHDUIgAUEBaiEBDD0LQa0BIQMgASAERg3/ASACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHNzwBqLQAARw1CIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAyAAgsgAkEANgIAIAZBAWohAUEODEMLIAEgBEYEQEGuASEDDP8BCyABLQAAQdAARw1AIAFBAWohAUElDEILQa8BIQMgASAERg39ASACKAIAIgAgBCABa2ohBSABIABrQQhqIQYCQANAIAEtAAAgAEHQzwBqLQAARw1AIABBCEYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAz+AQsgAkEANgIAIAZBAWohAUEqDEELIAEgBEYEQEGwASEDDP0BCwJAAkAgAS0AAEHVAGsOCwBAQEBAQEBAQEABQAsgAUEBaiEBQZoBIQMM5AELIAFBAWohAUGbASEDDOMBCyABIARGBEBBsQEhAwz8AQsCQAJAIAEtAABBwQBrDhQAPz8/Pz8/Pz8/Pz8/Pz8/Pz8/AT8LIAFBAWohAUGZASEDDOMBCyABQQFqIQFBnAEhAwziAQtBsgEhAyABIARGDfoBIAIoAgAiACAEIAFraiEFIAEgAGtBA2ohBgJAA0AgAS0AACAAQdnPAGotAABHDT0gAEEDRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADPsBCyACQQA2AgAgBkEBaiEBQSEMPgtBswEhAyABIARGDfkBIAIoAgAiACAEIAFraiEFIAEgAGtBBmohBgJAA0AgAS0AACAAQd3PAGotAABHDTwgAEEGRg0BIABBAWohACAEIAFBAWoiAUcNAAsgAiAFNgIADPoBCyACQQA2AgAgBkEBaiEBQRoMPQsgASAERgRAQbQBIQMM+QELAkACQAJAIAEtAABBxQBrDhEAPT09PT09PT09AT09PT09Aj0LIAFBAWohAUGdASEDDOEBCyABQQFqIQFBngEhAwzgAQsgAUEBaiEBQZ8BIQMM3wELQbUBIQMgASAERg33ASACKAIAIgAgBCABa2ohBSABIABrQQVqIQYCQANAIAEtAAAgAEHkzwBqLQAARw06IABBBUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAz4AQsgAkEANgIAIAZBAWohAUEoDDsLQbYBIQMgASAERg32ASACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEHqzwBqLQAARw05IABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAz3AQsgAkEANgIAIAZBAWohAUEHDDoLIAEgBEYEQEG3ASEDDPYBCwJAAkAgAS0AAEHFAGsODgA5OTk5OTk5OTk5OTkBOQsgAUEBaiEBQaEBIQMM3QELIAFBAWohAUGiASEDDNwBC0G4ASEDIAEgBEYN9AEgAigCACIAIAQgAWtqIQUgASAAa0ECaiEGAkADQCABLQAAIABB7c8Aai0AAEcNNyAAQQJGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM9QELIAJBADYCACAGQQFqIQFBEgw4C0G5ASEDIAEgBEYN8wEgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABB8M8Aai0AAEcNNiAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM9AELIAJBADYCACAGQQFqIQFBIAw3C0G6ASEDIAEgBEYN8gEgAigCACIAIAQgAWtqIQUgASAAa0EBaiEGAkADQCABLQAAIABB8s8Aai0AAEcNNSAAQQFGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM8wELIAJBADYCACAGQQFqIQFBDww2CyABIARGBEBBuwEhAwzyAQsCQAJAIAEtAABByQBrDgcANTU1NTUBNQsgAUEBaiEBQaUBIQMM2QELIAFBAWohAUGmASEDDNgBC0G8ASEDIAEgBEYN8AEgAigCACIAIAQgAWtqIQUgASAAa0EHaiEGAkADQCABLQAAIABB9M8Aai0AAEcNMyAAQQdGDQEgAEEBaiEAIAQgAUEBaiIBRw0ACyACIAU2AgAM8QELIAJBADYCACAGQQFqIQFBGww0CyABIARGBEBBvQEhAwzwAQsCQAJAAkAgAS0AAEHCAGsOEgA0NDQ0NDQ0NDQBNDQ0NDQ0AjQLIAFBAWohAUGkASEDDNgBCyABQQFqIQFBpwEhAwzXAQsgAUEBaiEBQagBIQMM1gELIAEgBEYEQEG+ASEDDO8BCyABLQAAQc4ARw0wIAFBAWohAQwsCyABIARGBEBBvwEhAwzuAQsCQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCABLQAAQcEAaw4VAAECAz8EBQY/Pz8HCAkKCz8MDQ4PPwsgAUEBaiEBQegAIQMM4wELIAFBAWohAUHpACEDDOIBCyABQQFqIQFB7gAhAwzhAQsgAUEBaiEBQfIAIQMM4AELIAFBAWohAUHzACEDDN8BCyABQQFqIQFB9gAhAwzeAQsgAUEBaiEBQfcAIQMM3QELIAFBAWohAUH6ACEDDNwBCyABQQFqIQFBgwEhAwzbAQsgAUEBaiEBQYQBIQMM2gELIAFBAWohAUGFASEDDNkBCyABQQFqIQFBkgEhAwzYAQsgAUEBaiEBQZgBIQMM1wELIAFBAWohAUGgASEDDNYBCyABQQFqIQFBowEhAwzVAQsgAUEBaiEBQaoBIQMM1AELIAEgBEcEQCACQRA2AgggAiABNgIEQasBIQMM1AELQcABIQMM7AELQQAhAAJAIAIoAjgiA0UNACADKAI0IgNFDQAgAiADEQAAIQALIABFDV4gAEEVRw0HIAJB0QA2AhwgAiABNgIUIAJBsBc2AhAgAkEVNgIMQQAhAwzrAQsgAUEBaiABIARHDQgaQcIBIQMM6gELA0ACQCABLQAAQQprDgQIAAALAAsgBCABQQFqIgFHDQALQcMBIQMM6QELIAEgBEcEQCACQRE2AgggAiABNgIEQQEhAwzQAQtBxAEhAwzoAQsgASAERgRAQcUBIQMM6AELAkACQCABLQAAQQprDgQBKCgAKAsgAUEBagwJCyABQQFqDAULIAEgBEYEQEHGASEDDOcBCwJAAkAgAS0AAEEKaw4XAQsLAQsLCwsLCwsLCwsLCwsLCwsLCwALCyABQQFqIQELQbABIQMMzQELIAEgBEYEQEHIASEDDOYBCyABLQAAQSBHDQkgAkEAOwEyIAFBAWohAUGzASEDDMwBCwNAIAEhAAJAIAEgBEcEQCABLQAAQTBrQf8BcSIDQQpJDQEMJwtBxwEhAwzmAQsCQCACLwEyIgFBmTNLDQAgAiABQQpsIgU7ATIgBUH+/wNxIANB//8Dc0sNACAAQQFqIQEgAiADIAVqIgM7ATIgA0H//wNxQegHSQ0BCwtBACEDIAJBADYCHCACQcEJNgIQIAJBDTYCDCACIABBAWo2AhQM5AELIAJBADYCHCACIAE2AhQgAkHwDDYCECACQRs2AgxBACEDDOMBCyACKAIEIQAgAkEANgIEIAIgACABECYiAA0BIAFBAWoLIQFBrQEhAwzIAQsgAkHBATYCHCACIAA2AgwgAiABQQFqNgIUQQAhAwzgAQsgAigCBCEAIAJBADYCBCACIAAgARAmIgANASABQQFqCyEBQa4BIQMMxQELIAJBwgE2AhwgAiAANgIMIAIgAUEBajYCFEEAIQMM3QELIAJBADYCHCACIAE2AhQgAkGXCzYCECACQQ02AgxBACEDDNwBCyACQQA2AhwgAiABNgIUIAJB4xA2AhAgAkEJNgIMQQAhAwzbAQsgAkECOgAoDKwBC0EAIQMgAkEANgIcIAJBrws2AhAgAkECNgIMIAIgAUEBajYCFAzZAQtBAiEDDL8BC0ENIQMMvgELQSYhAwy9AQtBFSEDDLwBC0EWIQMMuwELQRghAwy6AQtBHCEDDLkBC0EdIQMMuAELQSAhAwy3AQtBISEDDLYBC0EjIQMMtQELQcYAIQMMtAELQS4hAwyzAQtBPSEDDLIBC0HLACEDDLEBC0HOACEDDLABC0HYACEDDK8BC0HZACEDDK4BC0HbACEDDK0BC0HxACEDDKwBC0H0ACEDDKsBC0GNASEDDKoBC0GXASEDDKkBC0GpASEDDKgBC0GvASEDDKcBC0GxASEDDKYBCyACQQA2AgALQQAhAyACQQA2AhwgAiABNgIUIAJB8Rs2AhAgAkEGNgIMDL0BCyACQQA2AgAgBkEBaiEBQSQLOgApIAIoAgQhACACQQA2AgQgAiAAIAEQJyIARQRAQeUAIQMMowELIAJB+QA2AhwgAiABNgIUIAIgADYCDEEAIQMMuwELIABBFUcEQCACQQA2AhwgAiABNgIUIAJBzA42AhAgAkEgNgIMQQAhAwy7AQsgAkH4ADYCHCACIAE2AhQgAkHKGDYCECACQRU2AgxBACEDDLoBCyACQQA2AhwgAiABNgIUIAJBjhs2AhAgAkEGNgIMQQAhAwy5AQsgAkEANgIcIAIgATYCFCACQf4RNgIQIAJBBzYCDEEAIQMMuAELIAJBADYCHCACIAE2AhQgAkGMHDYCECACQQc2AgxBACEDDLcBCyACQQA2AhwgAiABNgIUIAJBww82AhAgAkEHNgIMQQAhAwy2AQsgAkEANgIcIAIgATYCFCACQcMPNgIQIAJBBzYCDEEAIQMMtQELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0RIAJB5QA2AhwgAiABNgIUIAIgADYCDEEAIQMMtAELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0gIAJB0wA2AhwgAiABNgIUIAIgADYCDEEAIQMMswELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0iIAJB0gA2AhwgAiABNgIUIAIgADYCDEEAIQMMsgELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0OIAJB5QA2AhwgAiABNgIUIAIgADYCDEEAIQMMsQELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0dIAJB0wA2AhwgAiABNgIUIAIgADYCDEEAIQMMsAELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0fIAJB0gA2AhwgAiABNgIUIAIgADYCDEEAIQMMrwELIABBP0cNASABQQFqCyEBQQUhAwyUAQtBACEDIAJBADYCHCACIAE2AhQgAkH9EjYCECACQQc2AgwMrAELIAJBADYCHCACIAE2AhQgAkHcCDYCECACQQc2AgxBACEDDKsBCyACKAIEIQAgAkEANgIEIAIgACABECUiAEUNByACQeUANgIcIAIgATYCFCACIAA2AgxBACEDDKoBCyACKAIEIQAgAkEANgIEIAIgACABECUiAEUNFiACQdMANgIcIAIgATYCFCACIAA2AgxBACEDDKkBCyACKAIEIQAgAkEANgIEIAIgACABECUiAEUNGCACQdIANgIcIAIgATYCFCACIAA2AgxBACEDDKgBCyACQQA2AhwgAiABNgIUIAJBxgo2AhAgAkEHNgIMQQAhAwynAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDQMgAkHlADYCHCACIAE2AhQgAiAANgIMQQAhAwymAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDRIgAkHTADYCHCACIAE2AhQgAiAANgIMQQAhAwylAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDRQgAkHSADYCHCACIAE2AhQgAiAANgIMQQAhAwykAQsgAigCBCEAIAJBADYCBCACIAAgARAlIgBFDQAgAkHlADYCHCACIAE2AhQgAiAANgIMQQAhAwyjAQtB1QAhAwyJAQsgAEEVRwRAIAJBADYCHCACIAE2AhQgAkG5DTYCECACQRo2AgxBACEDDKIBCyACQeQANgIcIAIgATYCFCACQeMXNgIQIAJBFTYCDEEAIQMMoQELIAJBADYCACAGQQFqIQEgAi0AKSIAQSNrQQtJDQQCQCAAQQZLDQBBASAAdEHKAHFFDQAMBQtBACEDIAJBADYCHCACIAE2AhQgAkH3CTYCECACQQg2AgwMoAELIAJBADYCACAGQQFqIQEgAi0AKUEhRg0DIAJBADYCHCACIAE2AhQgAkGbCjYCECACQQg2AgxBACEDDJ8BCyACQQA2AgALQQAhAyACQQA2AhwgAiABNgIUIAJBkDM2AhAgAkEINgIMDJ0BCyACQQA2AgAgBkEBaiEBIAItAClBI0kNACACQQA2AhwgAiABNgIUIAJB0wk2AhAgAkEINgIMQQAhAwycAQtB0QAhAwyCAQsgAS0AAEEwayIAQf8BcUEKSQRAIAIgADoAKiABQQFqIQFBzwAhAwyCAQsgAigCBCEAIAJBADYCBCACIAAgARAoIgBFDYYBIAJB3gA2AhwgAiABNgIUIAIgADYCDEEAIQMMmgELIAIoAgQhACACQQA2AgQgAiAAIAEQKCIARQ2GASACQdwANgIcIAIgATYCFCACIAA2AgxBACEDDJkBCyACKAIEIQAgAkEANgIEIAIgACAFECgiAEUEQCAFIQEMhwELIAJB2gA2AhwgAiAFNgIUIAIgADYCDAyYAQtBACEBQQEhAwsgAiADOgArIAVBAWohAwJAAkACQCACLQAtQRBxDQACQAJAAkAgAi0AKg4DAQACBAsgBkUNAwwCCyAADQEMAgsgAUUNAQsgAigCBCEAIAJBADYCBCACIAAgAxAoIgBFBEAgAyEBDAILIAJB2AA2AhwgAiADNgIUIAIgADYCDEEAIQMMmAELIAIoAgQhACACQQA2AgQgAiAAIAMQKCIARQRAIAMhAQyHAQsgAkHZADYCHCACIAM2AhQgAiAANgIMQQAhAwyXAQtBzAAhAwx9CyAAQRVHBEAgAkEANgIcIAIgATYCFCACQZQNNgIQIAJBITYCDEEAIQMMlgELIAJB1wA2AhwgAiABNgIUIAJByRc2AhAgAkEVNgIMQQAhAwyVAQtBACEDIAJBADYCHCACIAE2AhQgAkGAETYCECACQQk2AgwMlAELIAIoAgQhACACQQA2AgQgAiAAIAEQJSIARQ0AIAJB0wA2AhwgAiABNgIUIAIgADYCDEEAIQMMkwELQckAIQMMeQsgAkEANgIcIAIgATYCFCACQcEoNgIQIAJBBzYCDCACQQA2AgBBACEDDJEBCyACKAIEIQBBACEDIAJBADYCBCACIAAgARAlIgBFDQAgAkHSADYCHCACIAE2AhQgAiAANgIMDJABC0HIACEDDHYLIAJBADYCACAFIQELIAJBgBI7ASogAUEBaiEBQQAhAAJAIAIoAjgiA0UNACADKAIwIgNFDQAgAiADEQAAIQALIAANAQtBxwAhAwxzCyAAQRVGBEAgAkHRADYCHCACIAE2AhQgAkHjFzYCECACQRU2AgxBACEDDIwBC0EAIQMgAkEANgIcIAIgATYCFCACQbkNNgIQIAJBGjYCDAyLAQtBACEDIAJBADYCHCACIAE2AhQgAkGgGTYCECACQR42AgwMigELIAEtAABBOkYEQCACKAIEIQBBACEDIAJBADYCBCACIAAgARApIgBFDQEgAkHDADYCHCACIAA2AgwgAiABQQFqNgIUDIoBC0EAIQMgAkEANgIcIAIgATYCFCACQbERNgIQIAJBCjYCDAyJAQsgAUEBaiEBQTshAwxvCyACQcMANgIcIAIgADYCDCACIAFBAWo2AhQMhwELQQAhAyACQQA2AhwgAiABNgIUIAJB8A42AhAgAkEcNgIMDIYBCyACIAIvATBBEHI7ATAMZgsCQCACLwEwIgBBCHFFDQAgAi0AKEEBRw0AIAItAC1BCHFFDQMLIAIgAEH3+wNxQYAEcjsBMAwECyABIARHBEACQANAIAEtAABBMGsiAEH/AXFBCk8EQEE1IQMMbgsgAikDICIKQpmz5syZs+bMGVYNASACIApCCn4iCjcDICAKIACtQv8BgyILQn+FVg0BIAIgCiALfDcDICAEIAFBAWoiAUcNAAtBOSEDDIUBCyACKAIEIQBBACEDIAJBADYCBCACIAAgAUEBaiIBECoiAA0MDHcLQTkhAwyDAQsgAi0AMEEgcQ0GQcUBIQMMaQtBACEDIAJBADYCBCACIAEgARAqIgBFDQQgAkE6NgIcIAIgADYCDCACIAFBAWo2AhQMgQELIAItAChBAUcNACACLQAtQQhxRQ0BC0E3IQMMZgsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIABEAgAkE7NgIcIAIgADYCDCACIAFBAWo2AhQMfwsgAUEBaiEBDG4LIAJBCDoALAwECyABQQFqIQEMbQtBACEDIAJBADYCHCACIAE2AhQgAkHkEjYCECACQQQ2AgwMewsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIARQ1sIAJBNzYCHCACIAE2AhQgAiAANgIMDHoLIAIgAi8BMEEgcjsBMAtBMCEDDF8LIAJBNjYCHCACIAE2AhQgAiAANgIMDHcLIABBLEcNASABQQFqIQBBASEBAkACQAJAAkACQCACLQAsQQVrDgQDAQIEAAsgACEBDAQLQQIhAQwBC0EEIQELIAJBAToALCACIAIvATAgAXI7ATAgACEBDAELIAIgAi8BMEEIcjsBMCAAIQELQTkhAwxcCyACQQA6ACwLQTQhAwxaCyABIARGBEBBLSEDDHMLAkACQANAAkAgAS0AAEEKaw4EAgAAAwALIAQgAUEBaiIBRw0AC0EtIQMMdAsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIARQ0CIAJBLDYCHCACIAE2AhQgAiAANgIMDHMLIAIoAgQhAEEAIQMgAkEANgIEIAIgACABECoiAEUEQCABQQFqIQEMAgsgAkEsNgIcIAIgADYCDCACIAFBAWo2AhQMcgsgAS0AAEENRgRAIAIoAgQhAEEAIQMgAkEANgIEIAIgACABECoiAEUEQCABQQFqIQEMAgsgAkEsNgIcIAIgADYCDCACIAFBAWo2AhQMcgsgAi0ALUEBcQRAQcQBIQMMWQsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKiIADQEMZQtBLyEDDFcLIAJBLjYCHCACIAE2AhQgAiAANgIMDG8LQQAhAyACQQA2AhwgAiABNgIUIAJB8BQ2AhAgAkEDNgIMDG4LQQEhAwJAAkACQAJAIAItACxBBWsOBAMBAgAECyACIAIvATBBCHI7ATAMAwtBAiEDDAELQQQhAwsgAkEBOgAsIAIgAi8BMCADcjsBMAtBKiEDDFMLQQAhAyACQQA2AhwgAiABNgIUIAJB4Q82AhAgAkEKNgIMDGsLQQEhAwJAAkACQAJAAkACQCACLQAsQQJrDgcFBAQDAQIABAsgAiACLwEwQQhyOwEwDAMLQQIhAwwBC0EEIQMLIAJBAToALCACIAIvATAgA3I7ATALQSshAwxSC0EAIQMgAkEANgIcIAIgATYCFCACQasSNgIQIAJBCzYCDAxqC0EAIQMgAkEANgIcIAIgATYCFCACQf0NNgIQIAJBHTYCDAxpCyABIARHBEADQCABLQAAQSBHDUggBCABQQFqIgFHDQALQSUhAwxpC0ElIQMMaAsgAi0ALUEBcQRAQcMBIQMMTwsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQKSIABEAgAkEmNgIcIAIgADYCDCACIAFBAWo2AhQMaAsgAUEBaiEBDFwLIAFBAWohASACLwEwIgBBgAFxBEBBACEAAkAgAigCOCIDRQ0AIAMoAlQiA0UNACACIAMRAAAhAAsgAEUNBiAAQRVHDR8gAkEFNgIcIAIgATYCFCACQfkXNgIQIAJBFTYCDEEAIQMMZwsCQCAAQaAEcUGgBEcNACACLQAtQQJxDQBBACEDIAJBADYCHCACIAE2AhQgAkGWEzYCECACQQQ2AgwMZwsgAgJ/IAIvATBBFHFBFEYEQEEBIAItAChBAUYNARogAi8BMkHlAEYMAQsgAi0AKUEFRgs6AC5BACEAAkAgAigCOCIDRQ0AIAMoAiQiA0UNACACIAMRAAAhAAsCQAJAAkACQAJAIAAOFgIBAAQEBAQEBAQEBAQEBAQEBAQEBAMECyACQQE6AC4LIAIgAi8BMEHAAHI7ATALQSchAwxPCyACQSM2AhwgAiABNgIUIAJBpRY2AhAgAkEVNgIMQQAhAwxnC0EAIQMgAkEANgIcIAIgATYCFCACQdULNgIQIAJBETYCDAxmC0EAIQACQCACKAI4IgNFDQAgAygCLCIDRQ0AIAIgAxEAACEACyAADQELQQ4hAwxLCyAAQRVGBEAgAkECNgIcIAIgATYCFCACQbAYNgIQIAJBFTYCDEEAIQMMZAtBACEDIAJBADYCHCACIAE2AhQgAkGnDjYCECACQRI2AgwMYwtBACEDIAJBADYCHCACIAE2AhQgAkGqHDYCECACQQ82AgwMYgsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEgCqdqIgEQKyIARQ0AIAJBBTYCHCACIAE2AhQgAiAANgIMDGELQQ8hAwxHC0EAIQMgAkEANgIcIAIgATYCFCACQc0TNgIQIAJBDDYCDAxfC0IBIQoLIAFBAWohAQJAIAIpAyAiC0L//////////w9YBEAgAiALQgSGIAqENwMgDAELQQAhAyACQQA2AhwgAiABNgIUIAJBrQk2AhAgAkEMNgIMDF4LQSQhAwxEC0EAIQMgAkEANgIcIAIgATYCFCACQc0TNgIQIAJBDDYCDAxcCyACKAIEIQBBACEDIAJBADYCBCACIAAgARAsIgBFBEAgAUEBaiEBDFILIAJBFzYCHCACIAA2AgwgAiABQQFqNgIUDFsLIAIoAgQhAEEAIQMgAkEANgIEAkAgAiAAIAEQLCIARQRAIAFBAWohAQwBCyACQRY2AhwgAiAANgIMIAIgAUEBajYCFAxbC0EfIQMMQQtBACEDIAJBADYCHCACIAE2AhQgAkGaDzYCECACQSI2AgwMWQsgAigCBCEAQQAhAyACQQA2AgQgAiAAIAEQLSIARQRAIAFBAWohAQxQCyACQRQ2AhwgAiAANgIMIAIgAUEBajYCFAxYCyACKAIEIQBBACEDIAJBADYCBAJAIAIgACABEC0iAEUEQCABQQFqIQEMAQsgAkETNgIcIAIgADYCDCACIAFBAWo2AhQMWAtBHiEDDD4LQQAhAyACQQA2AhwgAiABNgIUIAJBxgw2AhAgAkEjNgIMDFYLIAIoAgQhAEEAIQMgAkEANgIEIAIgACABEC0iAEUEQCABQQFqIQEMTgsgAkERNgIcIAIgADYCDCACIAFBAWo2AhQMVQsgAkEQNgIcIAIgATYCFCACIAA2AgwMVAtBACEDIAJBADYCHCACIAE2AhQgAkHGDDYCECACQSM2AgwMUwtBACEDIAJBADYCHCACIAE2AhQgAkHAFTYCECACQQI2AgwMUgsgAigCBCEAQQAhAyACQQA2AgQCQCACIAAgARAtIgBFBEAgAUEBaiEBDAELIAJBDjYCHCACIAA2AgwgAiABQQFqNgIUDFILQRshAww4C0EAIQMgAkEANgIcIAIgATYCFCACQcYMNgIQIAJBIzYCDAxQCyACKAIEIQBBACEDIAJBADYCBAJAIAIgACABECwiAEUEQCABQQFqIQEMAQsgAkENNgIcIAIgADYCDCACIAFBAWo2AhQMUAtBGiEDDDYLQQAhAyACQQA2AhwgAiABNgIUIAJBmg82AhAgAkEiNgIMDE4LIAIoAgQhAEEAIQMgAkEANgIEAkAgAiAAIAEQLCIARQRAIAFBAWohAQwBCyACQQw2AhwgAiAANgIMIAIgAUEBajYCFAxOC0EZIQMMNAtBACEDIAJBADYCHCACIAE2AhQgAkGaDzYCECACQSI2AgwMTAsgAEEVRwRAQQAhAyACQQA2AhwgAiABNgIUIAJBgww2AhAgAkETNgIMDEwLIAJBCjYCHCACIAE2AhQgAkHkFjYCECACQRU2AgxBACEDDEsLIAIoAgQhAEEAIQMgAkEANgIEIAIgACABIAqnaiIBECsiAARAIAJBBzYCHCACIAE2AhQgAiAANgIMDEsLQRMhAwwxCyAAQRVHBEBBACEDIAJBADYCHCACIAE2AhQgAkHaDTYCECACQRQ2AgwMSgsgAkEeNgIcIAIgATYCFCACQfkXNgIQIAJBFTYCDEEAIQMMSQtBACEAAkAgAigCOCIDRQ0AIAMoAiwiA0UNACACIAMRAAAhAAsgAEUNQSAAQRVGBEAgAkEDNgIcIAIgATYCFCACQbAYNgIQIAJBFTYCDEEAIQMMSQtBACEDIAJBADYCHCACIAE2AhQgAkGnDjYCECACQRI2AgwMSAtBACEDIAJBADYCHCACIAE2AhQgAkHaDTYCECACQRQ2AgwMRwtBACEDIAJBADYCHCACIAE2AhQgAkGnDjYCECACQRI2AgwMRgsgAkEAOgAvIAItAC1BBHFFDT8LIAJBADoALyACQQE6ADRBACEDDCsLQQAhAyACQQA2AhwgAkHkETYCECACQQc2AgwgAiABQQFqNgIUDEMLAkADQAJAIAEtAABBCmsOBAACAgACCyAEIAFBAWoiAUcNAAtB3QEhAwxDCwJAAkAgAi0ANEEBRw0AQQAhAAJAIAIoAjgiA0UNACADKAJYIgNFDQAgAiADEQAAIQALIABFDQAgAEEVRw0BIAJB3AE2AhwgAiABNgIUIAJB1RY2AhAgAkEVNgIMQQAhAwxEC0HBASEDDCoLIAJBADYCHCACIAE2AhQgAkHpCzYCECACQR82AgxBACEDDEILAkACQCACLQAoQQFrDgIEAQALQcABIQMMKQtBuQEhAwwoCyACQQI6AC9BACEAAkAgAigCOCIDRQ0AIAMoAgAiA0UNACACIAMRAAAhAAsgAEUEQEHCASEDDCgLIABBFUcEQCACQQA2AhwgAiABNgIUIAJBpAw2AhAgAkEQNgIMQQAhAwxBCyACQdsBNgIcIAIgATYCFCACQfoWNgIQIAJBFTYCDEEAIQMMQAsgASAERgRAQdoBIQMMQAsgAS0AAEHIAEYNASACQQE6ACgLQawBIQMMJQtBvwEhAwwkCyABIARHBEAgAkEQNgIIIAIgATYCBEG+ASEDDCQLQdkBIQMMPAsgASAERgRAQdgBIQMMPAsgAS0AAEHIAEcNBCABQQFqIQFBvQEhAwwiCyABIARGBEBB1wEhAww7CwJAAkAgAS0AAEHFAGsOEAAFBQUFBQUFBQUFBQUFBQEFCyABQQFqIQFBuwEhAwwiCyABQQFqIQFBvAEhAwwhC0HWASEDIAEgBEYNOSACKAIAIgAgBCABa2ohBSABIABrQQJqIQYCQANAIAEtAAAgAEGD0ABqLQAARw0DIABBAkYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAw6CyACKAIEIQAgAkIANwMAIAIgACAGQQFqIgEQJyIARQRAQcYBIQMMIQsgAkHVATYCHCACIAE2AhQgAiAANgIMQQAhAww5C0HUASEDIAEgBEYNOCACKAIAIgAgBCABa2ohBSABIABrQQFqIQYCQANAIAEtAAAgAEGB0ABqLQAARw0CIABBAUYNASAAQQFqIQAgBCABQQFqIgFHDQALIAIgBTYCAAw5CyACQYEEOwEoIAIoAgQhACACQgA3AwAgAiAAIAZBAWoiARAnIgANAwwCCyACQQA2AgALQQAhAyACQQA2AhwgAiABNgIUIAJB2Bs2AhAgAkEINgIMDDYLQboBIQMMHAsgAkHTATYCHCACIAE2AhQgAiAANgIMQQAhAww0C0EAIQACQCACKAI4IgNFDQAgAygCOCIDRQ0AIAIgAxEAACEACyAARQ0AIABBFUYNASACQQA2AhwgAiABNgIUIAJBzA42AhAgAkEgNgIMQQAhAwwzC0HkACEDDBkLIAJB+AA2AhwgAiABNgIUIAJByhg2AhAgAkEVNgIMQQAhAwwxC0HSASEDIAQgASIARg0wIAQgAWsgAigCACIBaiEFIAAgAWtBBGohBgJAA0AgAC0AACABQfzPAGotAABHDQEgAUEERg0DIAFBAWohASAEIABBAWoiAEcNAAsgAiAFNgIADDELIAJBADYCHCACIAA2AhQgAkGQMzYCECACQQg2AgwgAkEANgIAQQAhAwwwCyABIARHBEAgAkEONgIIIAIgATYCBEG3ASEDDBcLQdEBIQMMLwsgAkEANgIAIAZBAWohAQtBuAEhAwwUCyABIARGBEBB0AEhAwwtCyABLQAAQTBrIgBB/wFxQQpJBEAgAiAAOgAqIAFBAWohAUG2ASEDDBQLIAIoAgQhACACQQA2AgQgAiAAIAEQKCIARQ0UIAJBzwE2AhwgAiABNgIUIAIgADYCDEEAIQMMLAsgASAERgRAQc4BIQMMLAsCQCABLQAAQS5GBEAgAUEBaiEBDAELIAIoAgQhACACQQA2AgQgAiAAIAEQKCIARQ0VIAJBzQE2AhwgAiABNgIUIAIgADYCDEEAIQMMLAtBtQEhAwwSCyAEIAEiBUYEQEHMASEDDCsLQQAhAEEBIQFBASEGQQAhAwJAAkACQAJAAkACfwJAAkACQAJAAkACQAJAIAUtAABBMGsOCgoJAAECAwQFBggLC0ECDAYLQQMMBQtBBAwEC0EFDAMLQQYMAgtBBwwBC0EICyEDQQAhAUEAIQYMAgtBCSEDQQEhAEEAIQFBACEGDAELQQAhAUEBIQMLIAIgAzoAKyAFQQFqIQMCQAJAIAItAC1BEHENAAJAAkACQCACLQAqDgMBAAIECyAGRQ0DDAILIAANAQwCCyABRQ0BCyACKAIEIQAgAkEANgIEIAIgACADECgiAEUEQCADIQEMAwsgAkHJATYCHCACIAM2AhQgAiAANgIMQQAhAwwtCyACKAIEIQAgAkEANgIEIAIgACADECgiAEUEQCADIQEMGAsgAkHKATYCHCACIAM2AhQgAiAANgIMQQAhAwwsCyACKAIEIQAgAkEANgIEIAIgACAFECgiAEUEQCAFIQEMFgsgAkHLATYCHCACIAU2AhQgAiAANgIMDCsLQbQBIQMMEQtBACEAAkAgAigCOCIDRQ0AIAMoAjwiA0UNACACIAMRAAAhAAsCQCAABEAgAEEVRg0BIAJBADYCHCACIAE2AhQgAkGUDTYCECACQSE2AgxBACEDDCsLQbIBIQMMEQsgAkHIATYCHCACIAE2AhQgAkHJFzYCECACQRU2AgxBACEDDCkLIAJBADYCACAGQQFqIQFB9QAhAwwPCyACLQApQQVGBEBB4wAhAwwPC0HiACEDDA4LIAAhASACQQA2AgALIAJBADoALEEJIQMMDAsgAkEANgIAIAdBAWohAUHAACEDDAsLQQELOgAsIAJBADYCACAGQQFqIQELQSkhAwwIC0E4IQMMBwsCQCABIARHBEADQCABLQAAQYA+ai0AACIAQQFHBEAgAEECRw0DIAFBAWohAQwFCyAEIAFBAWoiAUcNAAtBPiEDDCELQT4hAwwgCwsgAkEAOgAsDAELQQshAwwEC0E6IQMMAwsgAUEBaiEBQS0hAwwCCyACIAE6ACwgAkEANgIAIAZBAWohAUEMIQMMAQsgAkEANgIAIAZBAWohAUEKIQMMAAsAC0EAIQMgAkEANgIcIAIgATYCFCACQc0QNgIQIAJBCTYCDAwXC0EAIQMgAkEANgIcIAIgATYCFCACQekKNgIQIAJBCTYCDAwWC0EAIQMgAkEANgIcIAIgATYCFCACQbcQNgIQIAJBCTYCDAwVC0EAIQMgAkEANgIcIAIgATYCFCACQZwRNgIQIAJBCTYCDAwUC0EAIQMgAkEANgIcIAIgATYCFCACQc0QNgIQIAJBCTYCDAwTC0EAIQMgAkEANgIcIAIgATYCFCACQekKNgIQIAJBCTYCDAwSC0EAIQMgAkEANgIcIAIgATYCFCACQbcQNgIQIAJBCTYCDAwRC0EAIQMgAkEANgIcIAIgATYCFCACQZwRNgIQIAJBCTYCDAwQC0EAIQMgAkEANgIcIAIgATYCFCACQZcVNgIQIAJBDzYCDAwPC0EAIQMgAkEANgIcIAIgATYCFCACQZcVNgIQIAJBDzYCDAwOC0EAIQMgAkEANgIcIAIgATYCFCACQcASNgIQIAJBCzYCDAwNC0EAIQMgAkEANgIcIAIgATYCFCACQZUJNgIQIAJBCzYCDAwMC0EAIQMgAkEANgIcIAIgATYCFCACQeEPNgIQIAJBCjYCDAwLC0EAIQMgAkEANgIcIAIgATYCFCACQfsPNgIQIAJBCjYCDAwKC0EAIQMgAkEANgIcIAIgATYCFCACQfEZNgIQIAJBAjYCDAwJC0EAIQMgAkEANgIcIAIgATYCFCACQcQUNgIQIAJBAjYCDAwIC0EAIQMgAkEANgIcIAIgATYCFCACQfIVNgIQIAJBAjYCDAwHCyACQQI2AhwgAiABNgIUIAJBnBo2AhAgAkEWNgIMQQAhAwwGC0EBIQMMBQtB1AAhAyABIARGDQQgCEEIaiEJIAIoAgAhBQJAAkAgASAERwRAIAVB2MIAaiEHIAQgBWogAWshACAFQX9zQQpqIgUgAWohBgNAIAEtAAAgBy0AAEcEQEECIQcMAwsgBUUEQEEAIQcgBiEBDAMLIAVBAWshBSAHQQFqIQcgBCABQQFqIgFHDQALIAAhBSAEIQELIAlBATYCACACIAU2AgAMAQsgAkEANgIAIAkgBzYCAAsgCSABNgIEIAgoAgwhACAIKAIIDgMBBAIACwALIAJBADYCHCACQbUaNgIQIAJBFzYCDCACIABBAWo2AhRBACEDDAILIAJBADYCHCACIAA2AhQgAkHKGjYCECACQQk2AgxBACEDDAELIAEgBEYEQEEiIQMMAQsgAkEJNgIIIAIgATYCBEEhIQMLIAhBEGokACADRQRAIAIoAgwhAAwBCyACIAM2AhxBACEAIAIoAgQiAUUNACACIAEgBCACKAIIEQEAIgFFDQAgAiAENgIUIAIgATYCDCABIQALIAALvgIBAn8gAEEAOgAAIABB3ABqIgFBAWtBADoAACAAQQA6AAIgAEEAOgABIAFBA2tBADoAACABQQJrQQA6AAAgAEEAOgADIAFBBGtBADoAAEEAIABrQQNxIgEgAGoiAEEANgIAQdwAIAFrQXxxIgIgAGoiAUEEa0EANgIAAkAgAkEJSQ0AIABBADYCCCAAQQA2AgQgAUEIa0EANgIAIAFBDGtBADYCACACQRlJDQAgAEEANgIYIABBADYCFCAAQQA2AhAgAEEANgIMIAFBEGtBADYCACABQRRrQQA2AgAgAUEYa0EANgIAIAFBHGtBADYCACACIABBBHFBGHIiAmsiAUEgSQ0AIAAgAmohAANAIABCADcDGCAAQgA3AxAgAEIANwMIIABCADcDACAAQSBqIQAgAUEgayIBQR9LDQALCwtWAQF/AkAgACgCDA0AAkACQAJAAkAgAC0ALw4DAQADAgsgACgCOCIBRQ0AIAEoAiwiAUUNACAAIAERAAAiAQ0DC0EADwsACyAAQcMWNgIQQQ4hAQsgAQsaACAAKAIMRQRAIABB0Rs2AhAgAEEVNgIMCwsUACAAKAIMQRVGBEAgAEEANgIMCwsUACAAKAIMQRZGBEAgAEEANgIMCwsHACAAKAIMCwcAIAAoAhALCQAgACABNgIQCwcAIAAoAhQLFwAgAEEkTwRAAAsgAEECdEGgM2ooAgALFwAgAEEuTwRAAAsgAEECdEGwNGooAgALvwkBAX9B6yghAQJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAIABB5ABrDvQDY2IAAWFhYWFhYQIDBAVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhBgcICQoLDA0OD2FhYWFhEGFhYWFhYWFhYWFhEWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYRITFBUWFxgZGhthYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhHB0eHyAhIiMkJSYnKCkqKywtLi8wMTIzNDU2YTc4OTphYWFhYWFhYTthYWE8YWFhYT0+P2FhYWFhYWFhQGFhQWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYUJDREVGR0hJSktMTU5PUFFSU2FhYWFhYWFhVFVWV1hZWlthXF1hYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFeYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhX2BhC0HhJw8LQaQhDwtByywPC0H+MQ8LQcAkDwtBqyQPC0GNKA8LQeImDwtBgDAPC0G5Lw8LQdckDwtB7x8PC0HhHw8LQfofDwtB8iAPC0GoLw8LQa4yDwtBiDAPC0HsJw8LQYIiDwtBjh0PC0HQLg8LQcojDwtBxTIPC0HfHA8LQdIcDwtBxCAPC0HXIA8LQaIfDwtB7S4PC0GrMA8LQdQlDwtBzC4PC0H6Lg8LQfwrDwtB0jAPC0HxHQ8LQbsgDwtB9ysPC0GQMQ8LQdcxDwtBoi0PC0HUJw8LQeArDwtBnywPC0HrMQ8LQdUfDwtByjEPC0HeJQ8LQdQeDwtB9BwPC0GnMg8LQbEdDwtBoB0PC0G5MQ8LQbwwDwtBkiEPC0GzJg8LQeksDwtBrB4PC0HUKw8LQfcmDwtBgCYPC0GwIQ8LQf4eDwtBjSMPC0GJLQ8LQfciDwtBoDEPC0GuHw8LQcYlDwtB6B4PC0GTIg8LQcIvDwtBwx0PC0GLLA8LQeEdDwtBjS8PC0HqIQ8LQbQtDwtB0i8PC0HfMg8LQdIyDwtB8DAPC0GpIg8LQfkjDwtBmR4PC0G1LA8LQZswDwtBkjIPC0G2Kw8LQcIiDwtB+DIPC0GeJQ8LQdAiDwtBuh4PC0GBHg8LAAtB1iEhAQsgAQsWACAAIAAtAC1B/gFxIAFBAEdyOgAtCxkAIAAgAC0ALUH9AXEgAUEAR0EBdHI6AC0LGQAgACAALQAtQfsBcSABQQBHQQJ0cjoALQsZACAAIAAtAC1B9wFxIAFBAEdBA3RyOgAtCz4BAn8CQCAAKAI4IgNFDQAgAygCBCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBxhE2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCCCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB9go2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCDCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB7Ro2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCECIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBlRA2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCFCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBqhs2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCGCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB7RM2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCKCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABB9gg2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCHCIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBwhk2AhBBGCEECyAECz4BAn8CQCAAKAI4IgNFDQAgAygCICIDRQ0AIAAgASACIAFrIAMRAQAiBEF/Rw0AIABBlBQ2AhBBGCEECyAEC1kBAn8CQCAALQAoQQFGDQAgAC8BMiIBQeQAa0HkAEkNACABQcwBRg0AIAFBsAJGDQAgAC8BMCIAQcAAcQ0AQQEhAiAAQYgEcUGABEYNACAAQShxRSECCyACC4wBAQJ/AkACQAJAIAAtACpFDQAgAC0AK0UNACAALwEwIgFBAnFFDQEMAgsgAC8BMCIBQQFxRQ0BC0EBIQIgAC0AKEEBRg0AIAAvATIiAEHkAGtB5ABJDQAgAEHMAUYNACAAQbACRg0AIAFBwABxDQBBACECIAFBiARxQYAERg0AIAFBKHFBAEchAgsgAgtzACAAQRBq/QwAAAAAAAAAAAAAAAAAAAAA/QsDACAA/QwAAAAAAAAAAAAAAAAAAAAA/QsDACAAQTBq/QwAAAAAAAAAAAAAAAAAAAAA/QsDACAAQSBq/QwAAAAAAAAAAAAAAAAAAAAA/QsDACAAQd0BNgIcCwYAIAAQMguaLQELfyMAQRBrIgokAEGk0AAoAgAiCUUEQEHk0wAoAgAiBUUEQEHw0wBCfzcCAEHo0wBCgICEgICAwAA3AgBB5NMAIApBCGpBcHFB2KrVqgVzIgU2AgBB+NMAQQA2AgBByNMAQQA2AgALQczTAEGA1AQ2AgBBnNAAQYDUBDYCAEGw0AAgBTYCAEGs0ABBfzYCAEHQ0wBBgKwDNgIAA0AgAUHI0ABqIAFBvNAAaiICNgIAIAIgAUG00ABqIgM2AgAgAUHA0ABqIAM2AgAgAUHQ0ABqIAFBxNAAaiIDNgIAIAMgAjYCACABQdjQAGogAUHM0ABqIgI2AgAgAiADNgIAIAFB1NAAaiACNgIAIAFBIGoiAUGAAkcNAAtBjNQEQcGrAzYCAEGo0ABB9NMAKAIANgIAQZjQAEHAqwM2AgBBpNAAQYjUBDYCAEHM/wdBODYCAEGI1AQhCQsCQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQCAAQewBTQRAQYzQACgCACIGQRAgAEETakFwcSAAQQtJGyIEQQN2IgB2IgFBA3EEQAJAIAFBAXEgAHJBAXMiAkEDdCIAQbTQAGoiASAAQbzQAGooAgAiACgCCCIDRgRAQYzQACAGQX4gAndxNgIADAELIAEgAzYCCCADIAE2AgwLIABBCGohASAAIAJBA3QiAkEDcjYCBCAAIAJqIgAgACgCBEEBcjYCBAwRC0GU0AAoAgAiCCAETw0BIAEEQAJAQQIgAHQiAkEAIAJrciABIAB0cWgiAEEDdCICQbTQAGoiASACQbzQAGooAgAiAigCCCIDRgRAQYzQACAGQX4gAHdxIgY2AgAMAQsgASADNgIIIAMgATYCDAsgAiAEQQNyNgIEIABBA3QiACAEayEFIAAgAmogBTYCACACIARqIgQgBUEBcjYCBCAIBEAgCEF4cUG00ABqIQBBoNAAKAIAIQMCf0EBIAhBA3Z0IgEgBnFFBEBBjNAAIAEgBnI2AgAgAAwBCyAAKAIICyIBIAM2AgwgACADNgIIIAMgADYCDCADIAE2AggLIAJBCGohAUGg0AAgBDYCAEGU0AAgBTYCAAwRC0GQ0AAoAgAiC0UNASALaEECdEG80gBqKAIAIgAoAgRBeHEgBGshBSAAIQIDQAJAIAIoAhAiAUUEQCACQRRqKAIAIgFFDQELIAEoAgRBeHEgBGsiAyAFSSECIAMgBSACGyEFIAEgACACGyEAIAEhAgwBCwsgACgCGCEJIAAoAgwiAyAARwRAQZzQACgCABogAyAAKAIIIgE2AgggASADNgIMDBALIABBFGoiAigCACIBRQRAIAAoAhAiAUUNAyAAQRBqIQILA0AgAiEHIAEiA0EUaiICKAIAIgENACADQRBqIQIgAygCECIBDQALIAdBADYCAAwPC0F/IQQgAEG/f0sNACAAQRNqIgFBcHEhBEGQ0AAoAgAiCEUNAEEAIARrIQUCQAJAAkACf0EAIARBgAJJDQAaQR8gBEH///8HSw0AGiAEQSYgAUEIdmciAGt2QQFxIABBAXRrQT5qCyIGQQJ0QbzSAGooAgAiAkUEQEEAIQFBACEDDAELQQAhASAEQRkgBkEBdmtBACAGQR9HG3QhAEEAIQMDQAJAIAIoAgRBeHEgBGsiByAFTw0AIAIhAyAHIgUNAEEAIQUgAiEBDAMLIAEgAkEUaigCACIHIAcgAiAAQR12QQRxakEQaigCACICRhsgASAHGyEBIABBAXQhACACDQALCyABIANyRQRAQQAhA0ECIAZ0IgBBACAAa3IgCHEiAEUNAyAAaEECdEG80gBqKAIAIQELIAFFDQELA0AgASgCBEF4cSAEayICIAVJIQAgAiAFIAAbIQUgASADIAAbIQMgASgCECIABH8gAAUgAUEUaigCAAsiAQ0ACwsgA0UNACAFQZTQACgCACAEa08NACADKAIYIQcgAyADKAIMIgBHBEBBnNAAKAIAGiAAIAMoAggiATYCCCABIAA2AgwMDgsgA0EUaiICKAIAIgFFBEAgAygCECIBRQ0DIANBEGohAgsDQCACIQYgASIAQRRqIgIoAgAiAQ0AIABBEGohAiAAKAIQIgENAAsgBkEANgIADA0LQZTQACgCACIDIARPBEBBoNAAKAIAIQECQCADIARrIgJBEE8EQCABIARqIgAgAkEBcjYCBCABIANqIAI2AgAgASAEQQNyNgIEDAELIAEgA0EDcjYCBCABIANqIgAgACgCBEEBcjYCBEEAIQBBACECC0GU0AAgAjYCAEGg0AAgADYCACABQQhqIQEMDwtBmNAAKAIAIgMgBEsEQCAEIAlqIgAgAyAEayIBQQFyNgIEQaTQACAANgIAQZjQACABNgIAIAkgBEEDcjYCBCAJQQhqIQEMDwtBACEBIAQCf0Hk0wAoAgAEQEHs0wAoAgAMAQtB8NMAQn83AgBB6NMAQoCAhICAgMAANwIAQeTTACAKQQxqQXBxQdiq1aoFczYCAEH40wBBADYCAEHI0wBBADYCAEGAgAQLIgAgBEHHAGoiBWoiBkEAIABrIgdxIgJPBEBB/NMAQTA2AgAMDwsCQEHE0wAoAgAiAUUNAEG80wAoAgAiCCACaiEAIAAgAU0gACAIS3ENAEEAIQFB/NMAQTA2AgAMDwtByNMALQAAQQRxDQQCQAJAIAkEQEHM0wAhAQNAIAEoAgAiACAJTQRAIAAgASgCBGogCUsNAwsgASgCCCIBDQALC0EAEDMiAEF/Rg0FIAIhBkHo0wAoAgAiAUEBayIDIABxBEAgAiAAayAAIANqQQAgAWtxaiEGCyAEIAZPDQUgBkH+////B0sNBUHE0wAoAgAiAwRAQbzTACgCACIHIAZqIQEgASAHTQ0GIAEgA0sNBgsgBhAzIgEgAEcNAQwHCyAGIANrIAdxIgZB/v///wdLDQQgBhAzIQAgACABKAIAIAEoAgRqRg0DIAAhAQsCQCAGIARByABqTw0AIAFBf0YNAEHs0wAoAgAiACAFIAZrakEAIABrcSIAQf7///8HSwRAIAEhAAwHCyAAEDNBf0cEQCAAIAZqIQYgASEADAcLQQAgBmsQMxoMBAsgASIAQX9HDQUMAwtBACEDDAwLQQAhAAwKCyAAQX9HDQILQcjTAEHI0wAoAgBBBHI2AgALIAJB/v///wdLDQEgAhAzIQBBABAzIQEgAEF/Rg0BIAFBf0YNASAAIAFPDQEgASAAayIGIARBOGpNDQELQbzTAEG80wAoAgAgBmoiATYCAEHA0wAoAgAgAUkEQEHA0wAgATYCAAsCQAJAAkBBpNAAKAIAIgIEQEHM0wAhAQNAIAAgASgCACIDIAEoAgQiBWpGDQIgASgCCCIBDQALDAILQZzQACgCACIBQQBHIAAgAU9xRQRAQZzQACAANgIAC0EAIQFB0NMAIAY2AgBBzNMAIAA2AgBBrNAAQX82AgBBsNAAQeTTACgCADYCAEHY0wBBADYCAANAIAFByNAAaiABQbzQAGoiAjYCACACIAFBtNAAaiIDNgIAIAFBwNAAaiADNgIAIAFB0NAAaiABQcTQAGoiAzYCACADIAI2AgAgAUHY0ABqIAFBzNAAaiICNgIAIAIgAzYCACABQdTQAGogAjYCACABQSBqIgFBgAJHDQALQXggAGtBD3EiASAAaiICIAZBOGsiAyABayIBQQFyNgIEQajQAEH00wAoAgA2AgBBmNAAIAE2AgBBpNAAIAI2AgAgACADakE4NgIEDAILIAAgAk0NACACIANJDQAgASgCDEEIcQ0AQXggAmtBD3EiACACaiIDQZjQACgCACAGaiIHIABrIgBBAXI2AgQgASAFIAZqNgIEQajQAEH00wAoAgA2AgBBmNAAIAA2AgBBpNAAIAM2AgAgAiAHakE4NgIEDAELIABBnNAAKAIASQRAQZzQACAANgIACyAAIAZqIQNBzNMAIQECQAJAAkADQCADIAEoAgBHBEAgASgCCCIBDQEMAgsLIAEtAAxBCHFFDQELQczTACEBA0AgASgCACIDIAJNBEAgAyABKAIEaiIFIAJLDQMLIAEoAgghAQwACwALIAEgADYCACABIAEoAgQgBmo2AgQgAEF4IABrQQ9xaiIJIARBA3I2AgQgA0F4IANrQQ9xaiIGIAQgCWoiBGshASACIAZGBEBBpNAAIAQ2AgBBmNAAQZjQACgCACABaiIANgIAIAQgAEEBcjYCBAwIC0Gg0AAoAgAgBkYEQEGg0AAgBDYCAEGU0ABBlNAAKAIAIAFqIgA2AgAgBCAAQQFyNgIEIAAgBGogADYCAAwICyAGKAIEIgVBA3FBAUcNBiAFQXhxIQggBUH/AU0EQCAFQQN2IQMgBigCCCIAIAYoAgwiAkYEQEGM0ABBjNAAKAIAQX4gA3dxNgIADAcLIAIgADYCCCAAIAI2AgwMBgsgBigCGCEHIAYgBigCDCIARwRAIAAgBigCCCICNgIIIAIgADYCDAwFCyAGQRRqIgIoAgAiBUUEQCAGKAIQIgVFDQQgBkEQaiECCwNAIAIhAyAFIgBBFGoiAigCACIFDQAgAEEQaiECIAAoAhAiBQ0ACyADQQA2AgAMBAtBeCAAa0EPcSIBIABqIgcgBkE4ayIDIAFrIgFBAXI2AgQgACADakE4NgIEIAIgBUE3IAVrQQ9xakE/ayIDIAMgAkEQakkbIgNBIzYCBEGo0ABB9NMAKAIANgIAQZjQACABNgIAQaTQACAHNgIAIANBEGpB1NMAKQIANwIAIANBzNMAKQIANwIIQdTTACADQQhqNgIAQdDTACAGNgIAQczTACAANgIAQdjTAEEANgIAIANBJGohAQNAIAFBBzYCACAFIAFBBGoiAUsNAAsgAiADRg0AIAMgAygCBEF+cTYCBCADIAMgAmsiBTYCACACIAVBAXI2AgQgBUH/AU0EQCAFQXhxQbTQAGohAAJ/QYzQACgCACIBQQEgBUEDdnQiA3FFBEBBjNAAIAEgA3I2AgAgAAwBCyAAKAIICyIBIAI2AgwgACACNgIIIAIgADYCDCACIAE2AggMAQtBHyEBIAVB////B00EQCAFQSYgBUEIdmciAGt2QQFxIABBAXRrQT5qIQELIAIgATYCHCACQgA3AhAgAUECdEG80gBqIQBBkNAAKAIAIgNBASABdCIGcUUEQCAAIAI2AgBBkNAAIAMgBnI2AgAgAiAANgIYIAIgAjYCCCACIAI2AgwMAQsgBUEZIAFBAXZrQQAgAUEfRxt0IQEgACgCACEDAkADQCADIgAoAgRBeHEgBUYNASABQR12IQMgAUEBdCEBIAAgA0EEcWpBEGoiBigCACIDDQALIAYgAjYCACACIAA2AhggAiACNgIMIAIgAjYCCAwBCyAAKAIIIgEgAjYCDCAAIAI2AgggAkEANgIYIAIgADYCDCACIAE2AggLQZjQACgCACIBIARNDQBBpNAAKAIAIgAgBGoiAiABIARrIgFBAXI2AgRBmNAAIAE2AgBBpNAAIAI2AgAgACAEQQNyNgIEIABBCGohAQwIC0EAIQFB/NMAQTA2AgAMBwtBACEACyAHRQ0AAkAgBigCHCICQQJ0QbzSAGoiAygCACAGRgRAIAMgADYCACAADQFBkNAAQZDQACgCAEF+IAJ3cTYCAAwCCyAHQRBBFCAHKAIQIAZGG2ogADYCACAARQ0BCyAAIAc2AhggBigCECICBEAgACACNgIQIAIgADYCGAsgBkEUaigCACICRQ0AIABBFGogAjYCACACIAA2AhgLIAEgCGohASAGIAhqIgYoAgQhBQsgBiAFQX5xNgIEIAEgBGogATYCACAEIAFBAXI2AgQgAUH/AU0EQCABQXhxQbTQAGohAAJ/QYzQACgCACICQQEgAUEDdnQiAXFFBEBBjNAAIAEgAnI2AgAgAAwBCyAAKAIICyIBIAQ2AgwgACAENgIIIAQgADYCDCAEIAE2AggMAQtBHyEFIAFB////B00EQCABQSYgAUEIdmciAGt2QQFxIABBAXRrQT5qIQULIAQgBTYCHCAEQgA3AhAgBUECdEG80gBqIQBBkNAAKAIAIgJBASAFdCIDcUUEQCAAIAQ2AgBBkNAAIAIgA3I2AgAgBCAANgIYIAQgBDYCCCAEIAQ2AgwMAQsgAUEZIAVBAXZrQQAgBUEfRxt0IQUgACgCACEAAkADQCAAIgIoAgRBeHEgAUYNASAFQR12IQAgBUEBdCEFIAIgAEEEcWpBEGoiAygCACIADQALIAMgBDYCACAEIAI2AhggBCAENgIMIAQgBDYCCAwBCyACKAIIIgAgBDYCDCACIAQ2AgggBEEANgIYIAQgAjYCDCAEIAA2AggLIAlBCGohAQwCCwJAIAdFDQACQCADKAIcIgFBAnRBvNIAaiICKAIAIANGBEAgAiAANgIAIAANAUGQ0AAgCEF+IAF3cSIINgIADAILIAdBEEEUIAcoAhAgA0YbaiAANgIAIABFDQELIAAgBzYCGCADKAIQIgEEQCAAIAE2AhAgASAANgIYCyADQRRqKAIAIgFFDQAgAEEUaiABNgIAIAEgADYCGAsCQCAFQQ9NBEAgAyAEIAVqIgBBA3I2AgQgACADaiIAIAAoAgRBAXI2AgQMAQsgAyAEaiICIAVBAXI2AgQgAyAEQQNyNgIEIAIgBWogBTYCACAFQf8BTQRAIAVBeHFBtNAAaiEAAn9BjNAAKAIAIgFBASAFQQN2dCIFcUUEQEGM0AAgASAFcjYCACAADAELIAAoAggLIgEgAjYCDCAAIAI2AgggAiAANgIMIAIgATYCCAwBC0EfIQEgBUH///8HTQRAIAVBJiAFQQh2ZyIAa3ZBAXEgAEEBdGtBPmohAQsgAiABNgIcIAJCADcCECABQQJ0QbzSAGohAEEBIAF0IgQgCHFFBEAgACACNgIAQZDQACAEIAhyNgIAIAIgADYCGCACIAI2AgggAiACNgIMDAELIAVBGSABQQF2a0EAIAFBH0cbdCEBIAAoAgAhBAJAA0AgBCIAKAIEQXhxIAVGDQEgAUEddiEEIAFBAXQhASAAIARBBHFqQRBqIgYoAgAiBA0ACyAGIAI2AgAgAiAANgIYIAIgAjYCDCACIAI2AggMAQsgACgCCCIBIAI2AgwgACACNgIIIAJBADYCGCACIAA2AgwgAiABNgIICyADQQhqIQEMAQsCQCAJRQ0AAkAgACgCHCIBQQJ0QbzSAGoiAigCACAARgRAIAIgAzYCACADDQFBkNAAIAtBfiABd3E2AgAMAgsgCUEQQRQgCSgCECAARhtqIAM2AgAgA0UNAQsgAyAJNgIYIAAoAhAiAQRAIAMgATYCECABIAM2AhgLIABBFGooAgAiAUUNACADQRRqIAE2AgAgASADNgIYCwJAIAVBD00EQCAAIAQgBWoiAUEDcjYCBCAAIAFqIgEgASgCBEEBcjYCBAwBCyAAIARqIgcgBUEBcjYCBCAAIARBA3I2AgQgBSAHaiAFNgIAIAgEQCAIQXhxQbTQAGohAUGg0AAoAgAhAwJ/QQEgCEEDdnQiAiAGcUUEQEGM0AAgAiAGcjYCACABDAELIAEoAggLIgIgAzYCDCABIAM2AgggAyABNgIMIAMgAjYCCAtBoNAAIAc2AgBBlNAAIAU2AgALIABBCGohAQsgCkEQaiQAIAELQwAgAEUEQD8AQRB0DwsCQCAAQf//A3ENACAAQQBIDQAgAEEQdkAAIgBBf0YEQEH80wBBMDYCAEF/DwsgAEEQdA8LAAsL3D8iAEGACAsJAQAAAAIAAAADAEGUCAsFBAAAAAUAQaQICwkGAAAABwAAAAgAQdwIC4otSW52YWxpZCBjaGFyIGluIHVybCBxdWVyeQBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX2JvZHkAQ29udGVudC1MZW5ndGggb3ZlcmZsb3cAQ2h1bmsgc2l6ZSBvdmVyZmxvdwBSZXNwb25zZSBvdmVyZmxvdwBJbnZhbGlkIG1ldGhvZCBmb3IgSFRUUC94LnggcmVxdWVzdABJbnZhbGlkIG1ldGhvZCBmb3IgUlRTUC94LnggcmVxdWVzdABFeHBlY3RlZCBTT1VSQ0UgbWV0aG9kIGZvciBJQ0UveC54IHJlcXVlc3QASW52YWxpZCBjaGFyIGluIHVybCBmcmFnbWVudCBzdGFydABFeHBlY3RlZCBkb3QAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl9zdGF0dXMASW52YWxpZCByZXNwb25zZSBzdGF0dXMASW52YWxpZCBjaGFyYWN0ZXIgaW4gY2h1bmsgZXh0ZW5zaW9ucwBVc2VyIGNhbGxiYWNrIGVycm9yAGBvbl9yZXNldGAgY2FsbGJhY2sgZXJyb3IAYG9uX2NodW5rX2hlYWRlcmAgY2FsbGJhY2sgZXJyb3IAYG9uX21lc3NhZ2VfYmVnaW5gIGNhbGxiYWNrIGVycm9yAGBvbl9jaHVua19leHRlbnNpb25fdmFsdWVgIGNhbGxiYWNrIGVycm9yAGBvbl9zdGF0dXNfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl92ZXJzaW9uX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25fdXJsX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25fY2h1bmtfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl9oZWFkZXJfdmFsdWVfY29tcGxldGVgIGNhbGxiYWNrIGVycm9yAGBvbl9tZXNzYWdlX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25fbWV0aG9kX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25faGVhZGVyX2ZpZWxkX2NvbXBsZXRlYCBjYWxsYmFjayBlcnJvcgBgb25fY2h1bmtfZXh0ZW5zaW9uX25hbWVgIGNhbGxiYWNrIGVycm9yAFVuZXhwZWN0ZWQgY2hhciBpbiB1cmwgc2VydmVyAEludmFsaWQgaGVhZGVyIHZhbHVlIGNoYXIASW52YWxpZCBoZWFkZXIgZmllbGQgY2hhcgBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX3ZlcnNpb24ASW52YWxpZCBtaW5vciB2ZXJzaW9uAEludmFsaWQgbWFqb3IgdmVyc2lvbgBFeHBlY3RlZCBzcGFjZSBhZnRlciB2ZXJzaW9uAEV4cGVjdGVkIENSTEYgYWZ0ZXIgdmVyc2lvbgBJbnZhbGlkIEhUVFAgdmVyc2lvbgBJbnZhbGlkIGhlYWRlciB0b2tlbgBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX3VybABJbnZhbGlkIGNoYXJhY3RlcnMgaW4gdXJsAFVuZXhwZWN0ZWQgc3RhcnQgY2hhciBpbiB1cmwARG91YmxlIEAgaW4gdXJsAEVtcHR5IENvbnRlbnQtTGVuZ3RoAEludmFsaWQgY2hhcmFjdGVyIGluIENvbnRlbnQtTGVuZ3RoAER1cGxpY2F0ZSBDb250ZW50LUxlbmd0aABJbnZhbGlkIGNoYXIgaW4gdXJsIHBhdGgAQ29udGVudC1MZW5ndGggY2FuJ3QgYmUgcHJlc2VudCB3aXRoIFRyYW5zZmVyLUVuY29kaW5nAEludmFsaWQgY2hhcmFjdGVyIGluIGNodW5rIHNpemUAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl9oZWFkZXJfdmFsdWUAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl9jaHVua19leHRlbnNpb25fdmFsdWUASW52YWxpZCBjaGFyYWN0ZXIgaW4gY2h1bmsgZXh0ZW5zaW9ucyB2YWx1ZQBNaXNzaW5nIGV4cGVjdGVkIExGIGFmdGVyIGhlYWRlciB2YWx1ZQBJbnZhbGlkIGBUcmFuc2Zlci1FbmNvZGluZ2AgaGVhZGVyIHZhbHVlAEludmFsaWQgY2hhcmFjdGVyIGluIGNodW5rIGV4dGVuc2lvbnMgcXVvdGUgdmFsdWUASW52YWxpZCBjaGFyYWN0ZXIgaW4gY2h1bmsgZXh0ZW5zaW9ucyBxdW90ZWQgdmFsdWUAUGF1c2VkIGJ5IG9uX2hlYWRlcnNfY29tcGxldGUASW52YWxpZCBFT0Ygc3RhdGUAb25fcmVzZXQgcGF1c2UAb25fY2h1bmtfaGVhZGVyIHBhdXNlAG9uX21lc3NhZ2VfYmVnaW4gcGF1c2UAb25fY2h1bmtfZXh0ZW5zaW9uX3ZhbHVlIHBhdXNlAG9uX3N0YXR1c19jb21wbGV0ZSBwYXVzZQBvbl92ZXJzaW9uX2NvbXBsZXRlIHBhdXNlAG9uX3VybF9jb21wbGV0ZSBwYXVzZQBvbl9jaHVua19jb21wbGV0ZSBwYXVzZQBvbl9oZWFkZXJfdmFsdWVfY29tcGxldGUgcGF1c2UAb25fbWVzc2FnZV9jb21wbGV0ZSBwYXVzZQBvbl9tZXRob2RfY29tcGxldGUgcGF1c2UAb25faGVhZGVyX2ZpZWxkX2NvbXBsZXRlIHBhdXNlAG9uX2NodW5rX2V4dGVuc2lvbl9uYW1lIHBhdXNlAFVuZXhwZWN0ZWQgc3BhY2UgYWZ0ZXIgc3RhcnQgbGluZQBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX2NodW5rX2V4dGVuc2lvbl9uYW1lAEludmFsaWQgY2hhcmFjdGVyIGluIGNodW5rIGV4dGVuc2lvbnMgbmFtZQBQYXVzZSBvbiBDT05ORUNUL1VwZ3JhZGUAUGF1c2Ugb24gUFJJL1VwZ3JhZGUARXhwZWN0ZWQgSFRUUC8yIENvbm5lY3Rpb24gUHJlZmFjZQBTcGFuIGNhbGxiYWNrIGVycm9yIGluIG9uX21ldGhvZABFeHBlY3RlZCBzcGFjZSBhZnRlciBtZXRob2QAU3BhbiBjYWxsYmFjayBlcnJvciBpbiBvbl9oZWFkZXJfZmllbGQAUGF1c2VkAEludmFsaWQgd29yZCBlbmNvdW50ZXJlZABJbnZhbGlkIG1ldGhvZCBlbmNvdW50ZXJlZABVbmV4cGVjdGVkIGNoYXIgaW4gdXJsIHNjaGVtYQBSZXF1ZXN0IGhhcyBpbnZhbGlkIGBUcmFuc2Zlci1FbmNvZGluZ2AAU1dJVENIX1BST1hZAFVTRV9QUk9YWQBNS0FDVElWSVRZAFVOUFJPQ0VTU0FCTEVfRU5USVRZAENPUFkATU9WRURfUEVSTUFORU5UTFkAVE9PX0VBUkxZAE5PVElGWQBGQUlMRURfREVQRU5ERU5DWQBCQURfR0FURVdBWQBQTEFZAFBVVABDSEVDS09VVABHQVRFV0FZX1RJTUVPVVQAUkVRVUVTVF9USU1FT1VUAE5FVFdPUktfQ09OTkVDVF9USU1FT1VUAENPTk5FQ1RJT05fVElNRU9VVABMT0dJTl9USU1FT1VUAE5FVFdPUktfUkVBRF9USU1FT1VUAFBPU1QATUlTRElSRUNURURfUkVRVUVTVABDTElFTlRfQ0xPU0VEX1JFUVVFU1QAQ0xJRU5UX0NMT1NFRF9MT0FEX0JBTEFOQ0VEX1JFUVVFU1QAQkFEX1JFUVVFU1QASFRUUF9SRVFVRVNUX1NFTlRfVE9fSFRUUFNfUE9SVABSRVBPUlQASU1fQV9URUFQT1QAUkVTRVRfQ09OVEVOVABOT19DT05URU5UAFBBUlRJQUxfQ09OVEVOVABIUEVfSU5WQUxJRF9DT05TVEFOVABIUEVfQ0JfUkVTRVQAR0VUAEhQRV9TVFJJQ1QAQ09ORkxJQ1QAVEVNUE9SQVJZX1JFRElSRUNUAFBFUk1BTkVOVF9SRURJUkVDVABDT05ORUNUAE1VTFRJX1NUQVRVUwBIUEVfSU5WQUxJRF9TVEFUVVMAVE9PX01BTllfUkVRVUVTVFMARUFSTFlfSElOVFMAVU5BVkFJTEFCTEVfRk9SX0xFR0FMX1JFQVNPTlMAT1BUSU9OUwBTV0lUQ0hJTkdfUFJPVE9DT0xTAFZBUklBTlRfQUxTT19ORUdPVElBVEVTAE1VTFRJUExFX0NIT0lDRVMASU5URVJOQUxfU0VSVkVSX0VSUk9SAFdFQl9TRVJWRVJfVU5LTk9XTl9FUlJPUgBSQUlMR1VOX0VSUk9SAElERU5USVRZX1BST1ZJREVSX0FVVEhFTlRJQ0FUSU9OX0VSUk9SAFNTTF9DRVJUSUZJQ0FURV9FUlJPUgBJTlZBTElEX1hfRk9SV0FSREVEX0ZPUgBTRVRfUEFSQU1FVEVSAEdFVF9QQVJBTUVURVIASFBFX1VTRVIAU0VFX09USEVSAEhQRV9DQl9DSFVOS19IRUFERVIATUtDQUxFTkRBUgBTRVRVUABXRUJfU0VSVkVSX0lTX0RPV04AVEVBUkRPV04ASFBFX0NMT1NFRF9DT05ORUNUSU9OAEhFVVJJU1RJQ19FWFBJUkFUSU9OAERJU0NPTk5FQ1RFRF9PUEVSQVRJT04ATk9OX0FVVEhPUklUQVRJVkVfSU5GT1JNQVRJT04ASFBFX0lOVkFMSURfVkVSU0lPTgBIUEVfQ0JfTUVTU0FHRV9CRUdJTgBTSVRFX0lTX0ZST1pFTgBIUEVfSU5WQUxJRF9IRUFERVJfVE9LRU4ASU5WQUxJRF9UT0tFTgBGT1JCSURERU4ARU5IQU5DRV9ZT1VSX0NBTE0ASFBFX0lOVkFMSURfVVJMAEJMT0NLRURfQllfUEFSRU5UQUxfQ09OVFJPTABNS0NPTABBQ0wASFBFX0lOVEVSTkFMAFJFUVVFU1RfSEVBREVSX0ZJRUxEU19UT09fTEFSR0VfVU5PRkZJQ0lBTABIUEVfT0sAVU5MSU5LAFVOTE9DSwBQUkkAUkVUUllfV0lUSABIUEVfSU5WQUxJRF9DT05URU5UX0xFTkdUSABIUEVfVU5FWFBFQ1RFRF9DT05URU5UX0xFTkdUSABGTFVTSABQUk9QUEFUQ0gATS1TRUFSQ0gAVVJJX1RPT19MT05HAFBST0NFU1NJTkcATUlTQ0VMTEFORU9VU19QRVJTSVNURU5UX1dBUk5JTkcATUlTQ0VMTEFORU9VU19XQVJOSU5HAEhQRV9JTlZBTElEX1RSQU5TRkVSX0VOQ09ESU5HAEV4cGVjdGVkIENSTEYASFBFX0lOVkFMSURfQ0hVTktfU0laRQBNT1ZFAENPTlRJTlVFAEhQRV9DQl9TVEFUVVNfQ09NUExFVEUASFBFX0NCX0hFQURFUlNfQ09NUExFVEUASFBFX0NCX1ZFUlNJT05fQ09NUExFVEUASFBFX0NCX1VSTF9DT01QTEVURQBIUEVfQ0JfQ0hVTktfQ09NUExFVEUASFBFX0NCX0hFQURFUl9WQUxVRV9DT01QTEVURQBIUEVfQ0JfQ0hVTktfRVhURU5TSU9OX1ZBTFVFX0NPTVBMRVRFAEhQRV9DQl9DSFVOS19FWFRFTlNJT05fTkFNRV9DT01QTEVURQBIUEVfQ0JfTUVTU0FHRV9DT01QTEVURQBIUEVfQ0JfTUVUSE9EX0NPTVBMRVRFAEhQRV9DQl9IRUFERVJfRklFTERfQ09NUExFVEUAREVMRVRFAEhQRV9JTlZBTElEX0VPRl9TVEFURQBJTlZBTElEX1NTTF9DRVJUSUZJQ0FURQBQQVVTRQBOT19SRVNQT05TRQBVTlNVUFBPUlRFRF9NRURJQV9UWVBFAEdPTkUATk9UX0FDQ0VQVEFCTEUAU0VSVklDRV9VTkFWQUlMQUJMRQBSQU5HRV9OT1RfU0FUSVNGSUFCTEUAT1JJR0lOX0lTX1VOUkVBQ0hBQkxFAFJFU1BPTlNFX0lTX1NUQUxFAFBVUkdFAE1FUkdFAFJFUVVFU1RfSEVBREVSX0ZJRUxEU19UT09fTEFSR0UAUkVRVUVTVF9IRUFERVJfVE9PX0xBUkdFAFBBWUxPQURfVE9PX0xBUkdFAElOU1VGRklDSUVOVF9TVE9SQUdFAEhQRV9QQVVTRURfVVBHUkFERQBIUEVfUEFVU0VEX0gyX1VQR1JBREUAU09VUkNFAEFOTk9VTkNFAFRSQUNFAEhQRV9VTkVYUEVDVEVEX1NQQUNFAERFU0NSSUJFAFVOU1VCU0NSSUJFAFJFQ09SRABIUEVfSU5WQUxJRF9NRVRIT0QATk9UX0ZPVU5EAFBST1BGSU5EAFVOQklORABSRUJJTkQAVU5BVVRIT1JJWkVEAE1FVEhPRF9OT1RfQUxMT1dFRABIVFRQX1ZFUlNJT05fTk9UX1NVUFBPUlRFRABBTFJFQURZX1JFUE9SVEVEAEFDQ0VQVEVEAE5PVF9JTVBMRU1FTlRFRABMT09QX0RFVEVDVEVEAEhQRV9DUl9FWFBFQ1RFRABIUEVfTEZfRVhQRUNURUQAQ1JFQVRFRABJTV9VU0VEAEhQRV9QQVVTRUQAVElNRU9VVF9PQ0NVUkVEAFBBWU1FTlRfUkVRVUlSRUQAUFJFQ09ORElUSU9OX1JFUVVJUkVEAFBST1hZX0FVVEhFTlRJQ0FUSU9OX1JFUVVJUkVEAE5FVFdPUktfQVVUSEVOVElDQVRJT05fUkVRVUlSRUQATEVOR1RIX1JFUVVJUkVEAFNTTF9DRVJUSUZJQ0FURV9SRVFVSVJFRABVUEdSQURFX1JFUVVJUkVEAFBBR0VfRVhQSVJFRABQUkVDT05ESVRJT05fRkFJTEVEAEVYUEVDVEFUSU9OX0ZBSUxFRABSRVZBTElEQVRJT05fRkFJTEVEAFNTTF9IQU5EU0hBS0VfRkFJTEVEAExPQ0tFRABUUkFOU0ZPUk1BVElPTl9BUFBMSUVEAE5PVF9NT0RJRklFRABOT1RfRVhURU5ERUQAQkFORFdJRFRIX0xJTUlUX0VYQ0VFREVEAFNJVEVfSVNfT1ZFUkxPQURFRABIRUFEAEV4cGVjdGVkIEhUVFAvAABeEwAAJhMAADAQAADwFwAAnRMAABUSAAA5FwAA8BIAAAoQAAB1EgAArRIAAIITAABPFAAAfxAAAKAVAAAjFAAAiRIAAIsUAABNFQAA1BEAAM8UAAAQGAAAyRYAANwWAADBEQAA4BcAALsUAAB0FAAAfBUAAOUUAAAIFwAAHxAAAGUVAACjFAAAKBUAAAIVAACZFQAALBAAAIsZAABPDwAA1A4AAGoQAADOEAAAAhcAAIkOAABuEwAAHBMAAGYUAABWFwAAwRMAAM0TAABsEwAAaBcAAGYXAABfFwAAIhMAAM4PAABpDgAA2A4AAGMWAADLEwAAqg4AACgXAAAmFwAAxRMAAF0WAADoEQAAZxMAAGUTAADyFgAAcxMAAB0XAAD5FgAA8xEAAM8OAADOFQAADBIAALMRAAClEQAAYRAAADIXAAC7EwBB+TULAQEAQZA2C+ABAQECAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAQf03CwEBAEGROAteAgMCAgICAgAAAgIAAgIAAgICAgICAgICAgAEAAAAAAACAgICAgICAgICAgICAgICAgICAgICAgICAgAAAAICAgICAgICAgICAgICAgICAgICAgICAgICAgICAAIAAgBB/TkLAQEAQZE6C14CAAICAgICAAACAgACAgACAgICAgICAgICAAMABAAAAAICAgICAgICAgICAgICAgICAgICAgICAgICAAAAAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAAgACAEHwOwsNbG9zZWVlcC1hbGl2ZQBBiTwLAQEAQaA8C+ABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAQYk+CwEBAEGgPgvnAQEBAQEBAQEBAQEBAQIBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBY2h1bmtlZABBsMAAC18BAQABAQEBAQAAAQEAAQEAAQEBAQEBAQEBAQAAAAAAAAABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEAAQBBkMIACyFlY3Rpb25lbnQtbGVuZ3Rob25yb3h5LWNvbm5lY3Rpb24AQcDCAAstcmFuc2Zlci1lbmNvZGluZ3BncmFkZQ0KDQoNClNNDQoNClRUUC9DRS9UU1AvAEH5wgALBQECAAEDAEGQwwAL4AEEAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQBB+cQACwUBAgABAwBBkMUAC+ABBAEBBQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAQfnGAAsEAQAAAQBBkccAC98BAQEAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQBB+sgACwQBAAACAEGQyQALXwMEAAAEBAQEBAQEBAQEBAUEBAQEBAQEBAQEBAQABAAGBwQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAAEAAQABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQAAAAEAEH6ygALBAEAAAEAQZDLAAsBAQBBqssAC0ECAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAAAAAAAADAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwBB+swACwQBAAABAEGQzQALAQEAQZrNAAsGAgAAAAACAEGxzQALOgMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAAAAAAAAAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAQfDOAAuWAU5PVU5DRUVDS09VVE5FQ1RFVEVDUklCRUxVU0hFVEVBRFNFQVJDSFJHRUNUSVZJVFlMRU5EQVJWRU9USUZZUFRJT05TQ0hTRUFZU1RBVENIR0VPUkRJUkVDVE9SVFJDSFBBUkFNRVRFUlVSQ0VCU0NSSUJFQVJET1dOQUNFSU5ETktDS1VCU0NSSUJFSFRUUC9BRFRQLw==', 'base64') + + +/***/ }), + +/***/ 41891: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.enumToMap = void 0; +function enumToMap(obj) { + const res = {}; + Object.keys(obj).forEach((key) => { + const value = obj[key]; + if (typeof value === 'number') { + res[key] = value; } - }, - queryParameters: [timeoutInSeconds, comp19], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - contentLength, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags, - encryptionScope, - sourceIfModifiedSince, - sourceIfUnmodifiedSince, - sourceIfMatch, - sourceIfNoneMatch, - sourceContentMD5, - copySourceAuthorization, - pageWrite, - ifSequenceNumberLessThanOrEqualTo, - ifSequenceNumberLessThan, - ifSequenceNumberEqualTo, - sourceUrl, - sourceRange, - sourceContentCrc64, - range1 - ], - isXML: true, - serializer: xmlSerializer$2 -}; -const getPageRangesOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "GET", - responses: { - 200: { - bodyMapper: PageList, - headersMapper: PageBlobGetPageRangesHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: PageBlobGetPageRangesExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - snapshot, - comp20 - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - range, - ifMatch, - ifNoneMatch, - ifTags - ], - isXML: true, - serializer: xmlSerializer$2 -}; -const getPageRangesDiffOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "GET", - responses: { - 200: { - bodyMapper: PageList, - headersMapper: PageBlobGetPageRangesDiffHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: PageBlobGetPageRangesDiffExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - snapshot, - comp20, - prevsnapshot - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - range, - ifMatch, - ifNoneMatch, - ifTags, - prevSnapshotUrl - ], - isXML: true, - serializer: xmlSerializer$2 -}; -const resizeOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: PageBlobResizeHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: PageBlobResizeExceptionHeaders - } - }, - queryParameters: [comp, timeoutInSeconds], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags, - encryptionScope, - blobContentLength - ], - isXML: true, - serializer: xmlSerializer$2 -}; -const updateSequenceNumberOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: PageBlobUpdateSequenceNumberHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: PageBlobUpdateSequenceNumberExceptionHeaders - } - }, - queryParameters: [comp, timeoutInSeconds], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - ifMatch, - ifNoneMatch, - ifTags, - blobSequenceNumber, - sequenceNumberAction - ], - isXML: true, - serializer: xmlSerializer$2 -}; -const copyIncrementalOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 202: { - headersMapper: PageBlobCopyIncrementalHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: PageBlobCopyIncrementalExceptionHeaders - } - }, - queryParameters: [timeoutInSeconds, comp21], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - ifModifiedSince, - ifUnmodifiedSince, - ifMatch, - ifNoneMatch, - ifTags, - copySource - ], - isXML: true, - serializer: xmlSerializer$2 -}; + }); + return res; +} +exports.enumToMap = enumToMap; +//# sourceMappingURL=utils.js.map -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ -/** Class representing a AppendBlob. */ -class AppendBlob { - /** - * Initialize a new instance of the class AppendBlob class. - * @param client Reference to the service client - */ - constructor(client) { - this.client = client; - } - /** - * The Create Append Blob operation creates a new append blob. - * @param contentLength The length of the request. - * @param options The options parameters. - */ - create(contentLength, options) { - const operationArguments = { - contentLength, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, createOperationSpec); - } - /** - * The Append Block operation commits a new block of data to the end of an existing append blob. The - * Append Block operation is permitted only if the blob was created with x-ms-blob-type set to - * AppendBlob. Append Block is supported only on version 2015-02-21 version or later. - * @param contentLength The length of the request. - * @param body Initial data - * @param options The options parameters. - */ - appendBlock(contentLength, body, options) { - const operationArguments = { - contentLength, - body, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, appendBlockOperationSpec); - } - /** - * The Append Block operation commits a new block of data to the end of an existing append blob where - * the contents are read from a source url. The Append Block operation is permitted only if the blob - * was created with x-ms-blob-type set to AppendBlob. Append Block is supported only on version - * 2015-02-21 version or later. - * @param sourceUrl Specify a URL to the copy source. - * @param contentLength The length of the request. - * @param options The options parameters. - */ - appendBlockFromUrl(sourceUrl, contentLength, options) { - const operationArguments = { - sourceUrl, - contentLength, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, appendBlockFromUrlOperationSpec); - } - /** - * The Seal operation seals the Append Blob to make it read-only. Seal is supported only on version - * 2019-12-12 version or later. - * @param options The options parameters. - */ - seal(options) { - const operationArguments = { - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, sealOperationSpec); +/***/ }), + +/***/ 66771: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { kClients } = __nccwpck_require__(72785) +const Agent = __nccwpck_require__(71208) +const { + kAgent, + kMockAgentSet, + kMockAgentGet, + kDispatches, + kIsMockActive, + kNetConnect, + kGetNetConnect, + kOptions, + kFactory +} = __nccwpck_require__(24347) +const MockClient = __nccwpck_require__(58687) +const MockPool = __nccwpck_require__(26193) +const { matchValue, buildMockOptions } = __nccwpck_require__(79323) +const { InvalidArgumentError, UndiciError } = __nccwpck_require__(48045) +const Dispatcher = __nccwpck_require__(87781) +const Pluralizer = __nccwpck_require__(78891) +const PendingInterceptorsFormatter = __nccwpck_require__(86823) + +class MockAgent extends Dispatcher { + constructor (opts) { + super(opts) + + this[kNetConnect] = true + this[kIsMockActive] = true + + // Instantiate Agent and encapsulate + if ((opts?.agent && typeof opts.agent.dispatch !== 'function')) { + throw new InvalidArgumentError('Argument opts.agent must implement Agent') } -} -// Operation Specifications -const xmlSerializer$1 = new coreHttp__namespace.Serializer(Mappers, /* isXml */ true); -const serializer$1 = new coreHttp__namespace.Serializer(Mappers, /* isXml */ false); -const createOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: AppendBlobCreateHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: AppendBlobCreateExceptionHeaders - } - }, - queryParameters: [timeoutInSeconds], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - contentLength, - metadata, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags, - blobCacheControl, - blobContentType, - blobContentMD5, - blobContentEncoding, - blobContentLanguage, - blobContentDisposition, - immutabilityPolicyExpiry, - immutabilityPolicyMode, - encryptionScope, - blobTagsString, - legalHold1, - blobType1 - ], - isXML: true, - serializer: xmlSerializer$1 -}; -const appendBlockOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: AppendBlobAppendBlockHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: AppendBlobAppendBlockExceptionHeaders - } - }, - requestBody: body1, - queryParameters: [timeoutInSeconds, comp22], - urlParameters: [url], - headerParameters: [ - version, - requestId, - contentLength, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags, - encryptionScope, - transactionalContentMD5, - transactionalContentCrc64, - contentType1, - accept2, - maxSize, - appendPosition - ], - mediaType: "binary", - serializer: serializer$1 -}; -const appendBlockFromUrlOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: AppendBlobAppendBlockFromUrlHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: AppendBlobAppendBlockFromUrlExceptionHeaders - } - }, - queryParameters: [timeoutInSeconds, comp22], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - contentLength, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags, - encryptionScope, - sourceIfModifiedSince, - sourceIfUnmodifiedSince, - sourceIfMatch, - sourceIfNoneMatch, - sourceContentMD5, - copySourceAuthorization, - transactionalContentMD5, - sourceUrl, - sourceContentCrc64, - maxSize, - appendPosition, - sourceRange1 - ], - isXML: true, - serializer: xmlSerializer$1 -}; -const sealOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 200: { - headersMapper: AppendBlobSealHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: AppendBlobSealExceptionHeaders - } - }, - queryParameters: [timeoutInSeconds, comp23], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - ifMatch, - ifNoneMatch, - appendPosition - ], - isXML: true, - serializer: xmlSerializer$1 -}; + const agent = opts?.agent ? opts.agent : new Agent(opts) + this[kAgent] = agent -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ -/** Class representing a BlockBlob. */ -class BlockBlob { - /** - * Initialize a new instance of the class BlockBlob class. - * @param client Reference to the service client - */ - constructor(client) { - this.client = client; + this[kClients] = agent[kClients] + this[kOptions] = buildMockOptions(opts) + } + + get (origin) { + let dispatcher = this[kMockAgentGet](origin) + + if (!dispatcher) { + dispatcher = this[kFactory](origin) + this[kMockAgentSet](origin, dispatcher) } - /** - * The Upload Block Blob operation updates the content of an existing block blob. Updating an existing - * block blob overwrites any existing metadata on the blob. Partial updates are not supported with Put - * Blob; the content of the existing blob is overwritten with the content of the new blob. To perform a - * partial update of the content of a block blob, use the Put Block List operation. - * @param contentLength The length of the request. - * @param body Initial data - * @param options The options parameters. - */ - upload(contentLength, body, options) { - const operationArguments = { - contentLength, - body, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, uploadOperationSpec); + return dispatcher + } + + dispatch (opts, handler) { + // Call MockAgent.get to perform additional setup before dispatching as normal + this.get(opts.origin) + return this[kAgent].dispatch(opts, handler) + } + + async close () { + await this[kAgent].close() + this[kClients].clear() + } + + deactivate () { + this[kIsMockActive] = false + } + + activate () { + this[kIsMockActive] = true + } + + enableNetConnect (matcher) { + if (typeof matcher === 'string' || typeof matcher === 'function' || matcher instanceof RegExp) { + if (Array.isArray(this[kNetConnect])) { + this[kNetConnect].push(matcher) + } else { + this[kNetConnect] = [matcher] + } + } else if (typeof matcher === 'undefined') { + this[kNetConnect] = true + } else { + throw new InvalidArgumentError('Unsupported matcher. Must be one of String|Function|RegExp.') } - /** - * The Put Blob from URL operation creates a new Block Blob where the contents of the blob are read - * from a given URL. This API is supported beginning with the 2020-04-08 version. Partial updates are - * not supported with Put Blob from URL; the content of an existing blob is overwritten with the - * content of the new blob. To perform partial updates to a block blob’s contents using a source URL, - * use the Put Block from URL API in conjunction with Put Block List. - * @param contentLength The length of the request. - * @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to - * 2 KB in length that specifies a page blob snapshot. The value should be URL-encoded as it would - * appear in a request URI. The source blob must either be public or must be authenticated via a shared - * access signature. - * @param options The options parameters. - */ - putBlobFromUrl(contentLength, copySource, options) { - const operationArguments = { - contentLength, - copySource, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, putBlobFromUrlOperationSpec); + } + + disableNetConnect () { + this[kNetConnect] = false + } + + // This is required to bypass issues caused by using global symbols - see: + // https://github.com/nodejs/undici/issues/1447 + get isMockActive () { + return this[kIsMockActive] + } + + [kMockAgentSet] (origin, dispatcher) { + this[kClients].set(origin, dispatcher) + } + + [kFactory] (origin) { + const mockOptions = Object.assign({ agent: this }, this[kOptions]) + return this[kOptions] && this[kOptions].connections === 1 + ? new MockClient(origin, mockOptions) + : new MockPool(origin, mockOptions) + } + + [kMockAgentGet] (origin) { + // First check if we can immediately find it + const client = this[kClients].get(origin) + if (client) { + return client } - /** - * The Stage Block operation creates a new block to be committed as part of a blob - * @param blockId A valid Base64 string value that identifies the block. Prior to encoding, the string - * must be less than or equal to 64 bytes in size. For a given blob, the length of the value specified - * for the blockid parameter must be the same size for each block. - * @param contentLength The length of the request. - * @param body Initial data - * @param options The options parameters. - */ - stageBlock(blockId, contentLength, body, options) { - const operationArguments = { - blockId, - contentLength, - body, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, stageBlockOperationSpec); + + // If the origin is not a string create a dummy parent pool and return to user + if (typeof origin !== 'string') { + const dispatcher = this[kFactory]('http://localhost:9999') + this[kMockAgentSet](origin, dispatcher) + return dispatcher } - /** - * The Stage Block operation creates a new block to be committed as part of a blob where the contents - * are read from a URL. - * @param blockId A valid Base64 string value that identifies the block. Prior to encoding, the string - * must be less than or equal to 64 bytes in size. For a given blob, the length of the value specified - * for the blockid parameter must be the same size for each block. - * @param contentLength The length of the request. - * @param sourceUrl Specify a URL to the copy source. - * @param options The options parameters. - */ - stageBlockFromURL(blockId, contentLength, sourceUrl, options) { - const operationArguments = { - blockId, - contentLength, - sourceUrl, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, stageBlockFromURLOperationSpec); + + // If we match, create a pool and assign the same dispatches + for (const [keyMatcher, nonExplicitDispatcher] of Array.from(this[kClients])) { + if (nonExplicitDispatcher && typeof keyMatcher !== 'string' && matchValue(keyMatcher, origin)) { + const dispatcher = this[kFactory](origin) + this[kMockAgentSet](origin, dispatcher) + dispatcher[kDispatches] = nonExplicitDispatcher[kDispatches] + return dispatcher + } } - /** - * The Commit Block List operation writes a blob by specifying the list of block IDs that make up the - * blob. In order to be written as part of a blob, a block must have been successfully written to the - * server in a prior Put Block operation. You can call Put Block List to update a blob by uploading - * only those blocks that have changed, then committing the new and existing blocks together. You can - * do this by specifying whether to commit a block from the committed block list or from the - * uncommitted block list, or to commit the most recently uploaded version of the block, whichever list - * it may belong to. - * @param blocks Blob Blocks. - * @param options The options parameters. - */ - commitBlockList(blocks, options) { - const operationArguments = { - blocks, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, commitBlockListOperationSpec); + } + + [kGetNetConnect] () { + return this[kNetConnect] + } + + pendingInterceptors () { + const mockAgentClients = this[kClients] + + return Array.from(mockAgentClients.entries()) + .flatMap(([origin, scope]) => scope[kDispatches].map(dispatch => ({ ...dispatch, origin }))) + .filter(({ pending }) => pending) + } + + assertNoPendingInterceptors ({ pendingInterceptorsFormatter = new PendingInterceptorsFormatter() } = {}) { + const pending = this.pendingInterceptors() + + if (pending.length === 0) { + return } - /** - * The Get Block List operation retrieves the list of blocks that have been uploaded as part of a block - * blob - * @param listType Specifies whether to return the list of committed blocks, the list of uncommitted - * blocks, or both lists together. - * @param options The options parameters. - */ - getBlockList(listType, options) { - const operationArguments = { - listType, - options: coreHttp__namespace.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest(operationArguments, getBlockListOperationSpec); + + const pluralizer = new Pluralizer('interceptor', 'interceptors').pluralize(pending.length) + + throw new UndiciError(` +${pluralizer.count} ${pluralizer.noun} ${pluralizer.is} pending: + +${pendingInterceptorsFormatter.format(pending)} +`.trim()) + } +} + +module.exports = MockAgent + + +/***/ }), + +/***/ 58687: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { promisify } = __nccwpck_require__(47261) +const Client = __nccwpck_require__(8176) +const { buildMockDispatch } = __nccwpck_require__(79323) +const { + kDispatches, + kMockAgent, + kClose, + kOriginalClose, + kOrigin, + kOriginalDispatch, + kConnected +} = __nccwpck_require__(24347) +const { MockInterceptor } = __nccwpck_require__(90410) +const Symbols = __nccwpck_require__(72785) +const { InvalidArgumentError } = __nccwpck_require__(48045) + +/** + * MockClient provides an API that extends the Client to influence the mockDispatches. + */ +class MockClient extends Client { + constructor (origin, opts) { + super(origin, opts) + + if (!opts || !opts.agent || typeof opts.agent.dispatch !== 'function') { + throw new InvalidArgumentError('Argument opts.agent must implement Agent') } + + this[kMockAgent] = opts.agent + this[kOrigin] = origin + this[kDispatches] = [] + this[kConnected] = 1 + this[kOriginalDispatch] = this.dispatch + this[kOriginalClose] = this.close.bind(this) + + this.dispatch = buildMockDispatch.call(this) + this.close = this[kClose] + } + + get [Symbols.kConnected] () { + return this[kConnected] + } + + /** + * Sets up the base interceptor for mocking replies from undici. + */ + intercept (opts) { + return new MockInterceptor(opts, this[kDispatches]) + } + + async [kClose] () { + await promisify(this[kOriginalClose])() + this[kConnected] = 0 + this[kMockAgent][Symbols.kClients].delete(this[kOrigin]) + } } -// Operation Specifications -const xmlSerializer = new coreHttp__namespace.Serializer(Mappers, /* isXml */ true); -const serializer = new coreHttp__namespace.Serializer(Mappers, /* isXml */ false); -const uploadOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: BlockBlobUploadHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlockBlobUploadExceptionHeaders - } - }, - requestBody: body1, - queryParameters: [timeoutInSeconds], - urlParameters: [url], - headerParameters: [ - version, - requestId, - contentLength, - metadata, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags, - blobCacheControl, - blobContentType, - blobContentMD5, - blobContentEncoding, - blobContentLanguage, - blobContentDisposition, - immutabilityPolicyExpiry, - immutabilityPolicyMode, - encryptionScope, - tier, - blobTagsString, - legalHold1, - transactionalContentMD5, - contentType1, - accept2, - blobType2 - ], - mediaType: "binary", - serializer -}; -const putBlobFromUrlOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: BlockBlobPutBlobFromUrlHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlockBlobPutBlobFromUrlExceptionHeaders - } - }, - queryParameters: [timeoutInSeconds], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - contentLength, - metadata, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags, - blobCacheControl, - blobContentType, - blobContentMD5, - blobContentEncoding, - blobContentLanguage, - blobContentDisposition, - encryptionScope, - tier, - sourceIfModifiedSince, - sourceIfUnmodifiedSince, - sourceIfMatch, - sourceIfNoneMatch, - sourceIfTags, - copySource, - blobTagsString, - sourceContentMD5, - copySourceAuthorization, - transactionalContentMD5, - blobType2, - copySourceBlobProperties - ], - isXML: true, - serializer: xmlSerializer -}; -const stageBlockOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: BlockBlobStageBlockHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlockBlobStageBlockExceptionHeaders - } - }, - requestBody: body1, - queryParameters: [ - timeoutInSeconds, - comp24, - blockId - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - contentLength, - leaseId, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - encryptionScope, - transactionalContentMD5, - transactionalContentCrc64, - contentType1, - accept2 - ], - mediaType: "binary", - serializer -}; -const stageBlockFromURLOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: BlockBlobStageBlockFromURLHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlockBlobStageBlockFromURLExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - comp24, - blockId - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - contentLength, - leaseId, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - encryptionScope, - sourceIfModifiedSince, - sourceIfUnmodifiedSince, - sourceIfMatch, - sourceIfNoneMatch, - sourceContentMD5, - copySourceAuthorization, - sourceUrl, - sourceContentCrc64, - sourceRange1 - ], - isXML: true, - serializer: xmlSerializer -}; -const commitBlockListOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "PUT", - responses: { - 201: { - headersMapper: BlockBlobCommitBlockListHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlockBlobCommitBlockListExceptionHeaders - } - }, - requestBody: blocks, - queryParameters: [timeoutInSeconds, comp25], - urlParameters: [url], - headerParameters: [ - contentType, - accept, - version, - requestId, - metadata, - leaseId, - ifModifiedSince, - ifUnmodifiedSince, - encryptionKey, - encryptionKeySha256, - encryptionAlgorithm, - ifMatch, - ifNoneMatch, - ifTags, - blobCacheControl, - blobContentType, - blobContentMD5, - blobContentEncoding, - blobContentLanguage, - blobContentDisposition, - immutabilityPolicyExpiry, - immutabilityPolicyMode, - encryptionScope, - tier, - blobTagsString, - legalHold1, - transactionalContentMD5, - transactionalContentCrc64 - ], - isXML: true, - contentType: "application/xml; charset=utf-8", - mediaType: "xml", - serializer: xmlSerializer -}; -const getBlockListOperationSpec = { - path: "/{containerName}/{blob}", - httpMethod: "GET", - responses: { - 200: { - bodyMapper: BlockList, - headersMapper: BlockBlobGetBlockListHeaders - }, - default: { - bodyMapper: StorageError, - headersMapper: BlockBlobGetBlockListExceptionHeaders - } - }, - queryParameters: [ - timeoutInSeconds, - snapshot, - comp25, - listType - ], - urlParameters: [url], - headerParameters: [ - version, - requestId, - accept1, - leaseId, - ifTags - ], - isXML: true, - serializer: xmlSerializer -}; -// Copyright (c) Microsoft Corporation. +module.exports = MockClient + + +/***/ }), + +/***/ 50888: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { UndiciError } = __nccwpck_require__(48045) + +const kMockNotMatchedError = Symbol.for('undici.error.UND_MOCK_ERR_MOCK_NOT_MATCHED') + /** - * The `@azure/logger` configuration for this package. + * The request does not match any registered mock dispatches. */ -const logger = logger$1.createClientLogger("storage-blob"); +class MockNotMatchedError extends UndiciError { + constructor (message) { + super(message) + Error.captureStackTrace(this, MockNotMatchedError) + this.name = 'MockNotMatchedError' + this.message = message || 'The request does not match any registered mock dispatches' + this.code = 'UND_MOCK_ERR_MOCK_NOT_MATCHED' + } + + static [Symbol.hasInstance] (instance) { + return instance && instance[kMockNotMatchedError] === true + } + + [kMockNotMatchedError] = true +} + +module.exports = { + MockNotMatchedError +} + + +/***/ }), + +/***/ 90410: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { getResponseData, buildKey, addMockDispatch } = __nccwpck_require__(79323) +const { + kDispatches, + kDispatchKey, + kDefaultHeaders, + kDefaultTrailers, + kContentLength, + kMockDispatch +} = __nccwpck_require__(24347) +const { InvalidArgumentError } = __nccwpck_require__(48045) +const { buildURL } = __nccwpck_require__(83983) -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -const SDK_VERSION = "12.9.0"; -const SERVICE_VERSION = "2021-04-10"; -const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES = 256 * 1024 * 1024; // 256MB -const BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES = 4000 * 1024 * 1024; // 4000MB -const BLOCK_BLOB_MAX_BLOCKS = 50000; -const DEFAULT_BLOCK_BUFFER_SIZE_BYTES = 8 * 1024 * 1024; // 8MB -const DEFAULT_BLOB_DOWNLOAD_BLOCK_BYTES = 4 * 1024 * 1024; // 4MB -const DEFAULT_MAX_DOWNLOAD_RETRY_REQUESTS = 5; /** - * The OAuth scope to use with Azure Storage. + * Defines the scope API for an interceptor reply */ -const StorageOAuthScopes = "https://storage.azure.com/.default"; -const URLConstants = { - Parameters: { - FORCE_BROWSER_NO_CACHE: "_", - SIGNATURE: "sig", - SNAPSHOT: "snapshot", - VERSIONID: "versionid", - TIMEOUT: "timeout", - }, -}; -const HTTPURLConnection = { - HTTP_ACCEPTED: 202, - HTTP_CONFLICT: 409, - HTTP_NOT_FOUND: 404, - HTTP_PRECON_FAILED: 412, - HTTP_RANGE_NOT_SATISFIABLE: 416, -}; -const HeaderConstants = { - AUTHORIZATION: "Authorization", - AUTHORIZATION_SCHEME: "Bearer", - CONTENT_ENCODING: "Content-Encoding", - CONTENT_ID: "Content-ID", - CONTENT_LANGUAGE: "Content-Language", - CONTENT_LENGTH: "Content-Length", - CONTENT_MD5: "Content-Md5", - CONTENT_TRANSFER_ENCODING: "Content-Transfer-Encoding", - CONTENT_TYPE: "Content-Type", - COOKIE: "Cookie", - DATE: "date", - IF_MATCH: "if-match", - IF_MODIFIED_SINCE: "if-modified-since", - IF_NONE_MATCH: "if-none-match", - IF_UNMODIFIED_SINCE: "if-unmodified-since", - PREFIX_FOR_STORAGE: "x-ms-", - RANGE: "Range", - USER_AGENT: "User-Agent", - X_MS_CLIENT_REQUEST_ID: "x-ms-client-request-id", - X_MS_COPY_SOURCE: "x-ms-copy-source", - X_MS_DATE: "x-ms-date", - X_MS_ERROR_CODE: "x-ms-error-code", - X_MS_VERSION: "x-ms-version", -}; -const ETagNone = ""; -const ETagAny = "*"; -const SIZE_1_MB = 1 * 1024 * 1024; -const BATCH_MAX_REQUEST = 256; -const BATCH_MAX_PAYLOAD_IN_BYTES = 4 * SIZE_1_MB; -const HTTP_LINE_ENDING = "\r\n"; -const HTTP_VERSION_1_1 = "HTTP/1.1"; -const EncryptionAlgorithmAES25 = "AES256"; -const DevelopmentConnectionString = `DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;`; -const StorageBlobLoggingAllowedHeaderNames = [ - "Access-Control-Allow-Origin", - "Cache-Control", - "Content-Length", - "Content-Type", - "Date", - "Request-Id", - "traceparent", - "Transfer-Encoding", - "User-Agent", - "x-ms-client-request-id", - "x-ms-date", - "x-ms-error-code", - "x-ms-request-id", - "x-ms-return-client-request-id", - "x-ms-version", - "Accept-Ranges", - "Content-Disposition", - "Content-Encoding", - "Content-Language", - "Content-MD5", - "Content-Range", - "ETag", - "Last-Modified", - "Server", - "Vary", - "x-ms-content-crc64", - "x-ms-copy-action", - "x-ms-copy-completion-time", - "x-ms-copy-id", - "x-ms-copy-progress", - "x-ms-copy-status", - "x-ms-has-immutability-policy", - "x-ms-has-legal-hold", - "x-ms-lease-state", - "x-ms-lease-status", - "x-ms-range", - "x-ms-request-server-encrypted", - "x-ms-server-encrypted", - "x-ms-snapshot", - "x-ms-source-range", - "If-Match", - "If-Modified-Since", - "If-None-Match", - "If-Unmodified-Since", - "x-ms-access-tier", - "x-ms-access-tier-change-time", - "x-ms-access-tier-inferred", - "x-ms-account-kind", - "x-ms-archive-status", - "x-ms-blob-append-offset", - "x-ms-blob-cache-control", - "x-ms-blob-committed-block-count", - "x-ms-blob-condition-appendpos", - "x-ms-blob-condition-maxsize", - "x-ms-blob-content-disposition", - "x-ms-blob-content-encoding", - "x-ms-blob-content-language", - "x-ms-blob-content-length", - "x-ms-blob-content-md5", - "x-ms-blob-content-type", - "x-ms-blob-public-access", - "x-ms-blob-sequence-number", - "x-ms-blob-type", - "x-ms-copy-destination-snapshot", - "x-ms-creation-time", - "x-ms-default-encryption-scope", - "x-ms-delete-snapshots", - "x-ms-delete-type-permanent", - "x-ms-deny-encryption-scope-override", - "x-ms-encryption-algorithm", - "x-ms-if-sequence-number-eq", - "x-ms-if-sequence-number-le", - "x-ms-if-sequence-number-lt", - "x-ms-incremental-copy", - "x-ms-lease-action", - "x-ms-lease-break-period", - "x-ms-lease-duration", - "x-ms-lease-id", - "x-ms-lease-time", - "x-ms-page-write", - "x-ms-proposed-lease-id", - "x-ms-range-get-content-md5", - "x-ms-rehydrate-priority", - "x-ms-sequence-number-action", - "x-ms-sku-name", - "x-ms-source-content-md5", - "x-ms-source-if-match", - "x-ms-source-if-modified-since", - "x-ms-source-if-none-match", - "x-ms-source-if-unmodified-since", - "x-ms-tag-count", - "x-ms-encryption-key-sha256", - "x-ms-if-tags", - "x-ms-source-if-tags", -]; -const StorageBlobLoggingAllowedQueryParameters = [ - "comp", - "maxresults", - "rscc", - "rscd", - "rsce", - "rscl", - "rsct", - "se", - "si", - "sip", - "sp", - "spr", - "sr", - "srt", - "ss", - "st", - "sv", - "include", - "marker", - "prefix", - "copyid", - "restype", - "blockid", - "blocklisttype", - "delimiter", - "prevsnapshot", - "ske", - "skoid", - "sks", - "skt", - "sktid", - "skv", - "snapshot", -]; -const BlobUsesCustomerSpecifiedEncryptionMsg = "BlobUsesCustomerSpecifiedEncryption"; +class MockScope { + constructor (mockDispatch) { + this[kMockDispatch] = mockDispatch + } -// Copyright (c) Microsoft Corporation. -/** - * Reserved URL characters must be properly escaped for Storage services like Blob or File. - * - * ## URL encode and escape strategy for JS SDKs - * - * When customers pass a URL string into XxxClient classes constructor, the URL string may already be URL encoded or not. - * But before sending to Azure Storage server, the URL must be encoded. However, it's hard for a SDK to guess whether the URL - * string has been encoded or not. We have 2 potential strategies, and chose strategy two for the XxxClient constructors. - * - * ### Strategy One: Assume the customer URL string is not encoded, and always encode URL string in SDK. - * - * This is what legacy V2 SDK does, simple and works for most of the cases. - * - When customer URL string is "http://account.blob.core.windows.net/con/b:", - * SDK will encode it to "http://account.blob.core.windows.net/con/b%3A" and send to server. A blob named "b:" will be created. - * - When customer URL string is "http://account.blob.core.windows.net/con/b%3A", - * SDK will encode it to "http://account.blob.core.windows.net/con/b%253A" and send to server. A blob named "b%3A" will be created. - * - * But this strategy will make it not possible to create a blob with "?" in it's name. Because when customer URL string is - * "http://account.blob.core.windows.net/con/blob?name", the "?name" will be treated as URL paramter instead of blob name. - * If customer URL string is "http://account.blob.core.windows.net/con/blob%3Fname", a blob named "blob%3Fname" will be created. - * V2 SDK doesn't have this issue because it doesn't allow customer pass in a full URL, it accepts a separate blob name and encodeURIComponent for it. - * We cannot accept a SDK cannot create a blob name with "?". So we implement strategy two: - * - * ### Strategy Two: SDK doesn't assume the URL has been encoded or not. It will just escape the special characters. - * - * This is what V10 Blob Go SDK does. It accepts a URL type in Go, and call url.EscapedPath() to escape the special chars unescaped. - * - When customer URL string is "http://account.blob.core.windows.net/con/b:", - * SDK will escape ":" like "http://account.blob.core.windows.net/con/b%3A" and send to server. A blob named "b:" will be created. - * - When customer URL string is "http://account.blob.core.windows.net/con/b%3A", - * There is no special characters, so send "http://account.blob.core.windows.net/con/b%3A" to server. A blob named "b:" will be created. - * - When customer URL string is "http://account.blob.core.windows.net/con/b%253A", - * There is no special characters, so send "http://account.blob.core.windows.net/con/b%253A" to server. A blob named "b%3A" will be created. - * - * This strategy gives us flexibility to create with any special characters. But "%" will be treated as a special characters, if the URL string - * is not encoded, there shouldn't a "%" in the URL string, otherwise the URL is not a valid URL. - * If customer needs to create a blob with "%" in it's blob name, use "%25" instead of "%". Just like above 3rd sample. - * And following URL strings are invalid: - * - "http://account.blob.core.windows.net/con/b%" - * - "http://account.blob.core.windows.net/con/b%2" - * - "http://account.blob.core.windows.net/con/b%G" - * - * Another special character is "?", use "%2F" to represent a blob name with "?" in a URL string. - * - * ### Strategy for containerName, blobName or other specific XXXName parameters in methods such as `containerClient.getBlobClient(blobName)` - * - * We will apply strategy one, and call encodeURIComponent for these parameters like blobName. Because what customers passes in is a plain name instead of a URL. - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/naming-and-referencing-shares--directories--files--and-metadata - * - * @param url - - */ -function escapeURLPath(url) { - const urlParsed = coreHttp.URLBuilder.parse(url); - let path = urlParsed.getPath(); - path = path || "/"; - path = escape(path); - urlParsed.setPath(path); - return urlParsed.toString(); -} -function getProxyUriFromDevConnString(connectionString) { - // Development Connection String - // https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string#connect-to-the-emulator-account-using-the-well-known-account-name-and-key - let proxyUri = ""; - if (connectionString.search("DevelopmentStorageProxyUri=") !== -1) { - // CONNECTION_STRING=UseDevelopmentStorage=true;DevelopmentStorageProxyUri=http://myProxyUri - const matchCredentials = connectionString.split(";"); - for (const element of matchCredentials) { - if (element.trim().startsWith("DevelopmentStorageProxyUri=")) { - proxyUri = element.trim().match("DevelopmentStorageProxyUri=(.*)")[1]; - } - } + /** + * Delay a reply by a set amount in ms. + */ + delay (waitInMs) { + if (typeof waitInMs !== 'number' || !Number.isInteger(waitInMs) || waitInMs <= 0) { + throw new InvalidArgumentError('waitInMs must be a valid integer > 0') } - return proxyUri; -} -function getValueInConnString(connectionString, argument) { - const elements = connectionString.split(";"); - for (const element of elements) { - if (element.trim().startsWith(argument)) { - return element.trim().match(argument + "=(.*)")[1]; - } + + this[kMockDispatch].delay = waitInMs + return this + } + + /** + * For a defined reply, never mark as consumed. + */ + persist () { + this[kMockDispatch].persist = true + return this + } + + /** + * Allow one to define a reply for a set amount of matching requests. + */ + times (repeatTimes) { + if (typeof repeatTimes !== 'number' || !Number.isInteger(repeatTimes) || repeatTimes <= 0) { + throw new InvalidArgumentError('repeatTimes must be a valid integer > 0') } - return ""; + + this[kMockDispatch].times = repeatTimes + return this + } } + /** - * Extracts the parts of an Azure Storage account connection string. - * - * @param connectionString - Connection string. - * @returns String key value pairs of the storage account's url and credentials. + * Defines an interceptor for a Mock */ -function extractConnectionStringParts(connectionString) { - let proxyUri = ""; - if (connectionString.startsWith("UseDevelopmentStorage=true")) { - // Development connection string - proxyUri = getProxyUriFromDevConnString(connectionString); - connectionString = DevelopmentConnectionString; +class MockInterceptor { + constructor (opts, mockDispatches) { + if (typeof opts !== 'object') { + throw new InvalidArgumentError('opts must be an object') + } + if (typeof opts.path === 'undefined') { + throw new InvalidArgumentError('opts.path must be defined') + } + if (typeof opts.method === 'undefined') { + opts.method = 'GET' + } + // See https://github.com/nodejs/undici/issues/1245 + // As per RFC 3986, clients are not supposed to send URI + // fragments to servers when they retrieve a document, + if (typeof opts.path === 'string') { + if (opts.query) { + opts.path = buildURL(opts.path, opts.query) + } else { + // Matches https://github.com/nodejs/undici/blob/main/lib/web/fetch/index.js#L1811 + const parsedURL = new URL(opts.path, 'data://') + opts.path = parsedURL.pathname + parsedURL.search + } } - // Matching BlobEndpoint in the Account connection string - let blobEndpoint = getValueInConnString(connectionString, "BlobEndpoint"); - // Slicing off '/' at the end if exists - // (The methods that use `extractConnectionStringParts` expect the url to not have `/` at the end) - blobEndpoint = blobEndpoint.endsWith("/") ? blobEndpoint.slice(0, -1) : blobEndpoint; - if (connectionString.search("DefaultEndpointsProtocol=") !== -1 && - connectionString.search("AccountKey=") !== -1) { - // Account connection string - let defaultEndpointsProtocol = ""; - let accountName = ""; - let accountKey = Buffer.from("accountKey", "base64"); - let endpointSuffix = ""; - // Get account name and key - accountName = getValueInConnString(connectionString, "AccountName"); - accountKey = Buffer.from(getValueInConnString(connectionString, "AccountKey"), "base64"); - if (!blobEndpoint) { - // BlobEndpoint is not present in the Account connection string - // Can be obtained from `${defaultEndpointsProtocol}://${accountName}.blob.${endpointSuffix}` - defaultEndpointsProtocol = getValueInConnString(connectionString, "DefaultEndpointsProtocol"); - const protocol = defaultEndpointsProtocol.toLowerCase(); - if (protocol !== "https" && protocol !== "http") { - throw new Error("Invalid DefaultEndpointsProtocol in the provided Connection String. Expecting 'https' or 'http'"); - } - endpointSuffix = getValueInConnString(connectionString, "EndpointSuffix"); - if (!endpointSuffix) { - throw new Error("Invalid EndpointSuffix in the provided Connection String"); - } - blobEndpoint = `${defaultEndpointsProtocol}://${accountName}.blob.${endpointSuffix}`; - } - if (!accountName) { - throw new Error("Invalid AccountName in the provided Connection String"); - } - else if (accountKey.length === 0) { - throw new Error("Invalid AccountKey in the provided Connection String"); - } - return { - kind: "AccountConnString", - url: blobEndpoint, - accountName, - accountKey, - proxyUri, - }; + if (typeof opts.method === 'string') { + opts.method = opts.method.toUpperCase() } - else { - // SAS connection string - const accountSas = getValueInConnString(connectionString, "SharedAccessSignature"); - const accountName = getAccountNameFromUrl(blobEndpoint); - if (!blobEndpoint) { - throw new Error("Invalid BlobEndpoint in the provided SAS Connection String"); - } - else if (!accountSas) { - throw new Error("Invalid SharedAccessSignature in the provided SAS Connection String"); + + this[kDispatchKey] = buildKey(opts) + this[kDispatches] = mockDispatches + this[kDefaultHeaders] = {} + this[kDefaultTrailers] = {} + this[kContentLength] = false + } + + createMockScopeDispatchData ({ statusCode, data, responseOptions }) { + const responseData = getResponseData(data) + const contentLength = this[kContentLength] ? { 'content-length': responseData.length } : {} + const headers = { ...this[kDefaultHeaders], ...contentLength, ...responseOptions.headers } + const trailers = { ...this[kDefaultTrailers], ...responseOptions.trailers } + + return { statusCode, data, headers, trailers } + } + + validateReplyParameters (replyParameters) { + if (typeof replyParameters.statusCode === 'undefined') { + throw new InvalidArgumentError('statusCode must be defined') + } + if (typeof replyParameters.responseOptions !== 'object' || replyParameters.responseOptions === null) { + throw new InvalidArgumentError('responseOptions must be an object') + } + } + + /** + * Mock an undici request with a defined reply. + */ + reply (replyOptionsCallbackOrStatusCode) { + // Values of reply aren't available right now as they + // can only be available when the reply callback is invoked. + if (typeof replyOptionsCallbackOrStatusCode === 'function') { + // We'll first wrap the provided callback in another function, + // this function will properly resolve the data from the callback + // when invoked. + const wrappedDefaultsCallback = (opts) => { + // Our reply options callback contains the parameter for statusCode, data and options. + const resolvedData = replyOptionsCallbackOrStatusCode(opts) + + // Check if it is in the right format + if (typeof resolvedData !== 'object' || resolvedData === null) { + throw new InvalidArgumentError('reply options callback must return an object') + } + + const replyParameters = { data: '', responseOptions: {}, ...resolvedData } + this.validateReplyParameters(replyParameters) + // Since the values can be obtained immediately we return them + // from this higher order function that will be resolved later. + return { + ...this.createMockScopeDispatchData(replyParameters) } - return { kind: "SASConnString", url: blobEndpoint, accountName, accountSas }; + } + + // Add usual dispatch data, but this time set the data parameter to function that will eventually provide data. + const newMockDispatch = addMockDispatch(this[kDispatches], this[kDispatchKey], wrappedDefaultsCallback) + return new MockScope(newMockDispatch) } + + // We can have either one or three parameters, if we get here, + // we should have 1-3 parameters. So we spread the arguments of + // this function to obtain the parameters, since replyData will always + // just be the statusCode. + const replyParameters = { + statusCode: replyOptionsCallbackOrStatusCode, + data: arguments[1] === undefined ? '' : arguments[1], + responseOptions: arguments[2] === undefined ? {} : arguments[2] + } + this.validateReplyParameters(replyParameters) + + // Send in-already provided data like usual + const dispatchData = this.createMockScopeDispatchData(replyParameters) + const newMockDispatch = addMockDispatch(this[kDispatches], this[kDispatchKey], dispatchData) + return new MockScope(newMockDispatch) + } + + /** + * Mock an undici request with a defined error. + */ + replyWithError (error) { + if (typeof error === 'undefined') { + throw new InvalidArgumentError('error must be defined') + } + + const newMockDispatch = addMockDispatch(this[kDispatches], this[kDispatchKey], { error }) + return new MockScope(newMockDispatch) + } + + /** + * Set default reply headers on the interceptor for subsequent replies + */ + defaultReplyHeaders (headers) { + if (typeof headers === 'undefined') { + throw new InvalidArgumentError('headers must be defined') + } + + this[kDefaultHeaders] = headers + return this + } + + /** + * Set default reply trailers on the interceptor for subsequent replies + */ + defaultReplyTrailers (trailers) { + if (typeof trailers === 'undefined') { + throw new InvalidArgumentError('trailers must be defined') + } + + this[kDefaultTrailers] = trailers + return this + } + + /** + * Set reply content length header for replies on the interceptor + */ + replyContentLength () { + this[kContentLength] = true + return this + } } + +module.exports.MockInterceptor = MockInterceptor +module.exports.MockScope = MockScope + + +/***/ }), + +/***/ 26193: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { promisify } = __nccwpck_require__(47261) +const Pool = __nccwpck_require__(20177) +const { buildMockDispatch } = __nccwpck_require__(79323) +const { + kDispatches, + kMockAgent, + kClose, + kOriginalClose, + kOrigin, + kOriginalDispatch, + kConnected +} = __nccwpck_require__(24347) +const { MockInterceptor } = __nccwpck_require__(90410) +const Symbols = __nccwpck_require__(72785) +const { InvalidArgumentError } = __nccwpck_require__(48045) + /** - * Internal escape method implemented Strategy Two mentioned in escapeURL() description. - * - * @param text - - */ -function escape(text) { - return encodeURIComponent(text) - .replace(/%2F/g, "/") // Don't escape for "/" - .replace(/'/g, "%27") // Escape for "'" - .replace(/\+/g, "%20") - .replace(/%25/g, "%"); // Revert encoded "%" -} -/** - * Append a string to URL path. Will remove duplicated "/" in front of the string - * when URL path ends with a "/". - * - * @param url - Source URL string - * @param name - String to be appended to URL - * @returns An updated URL string + * MockPool provides an API that extends the Pool to influence the mockDispatches. */ -function appendToURLPath(url, name) { - const urlParsed = coreHttp.URLBuilder.parse(url); - let path = urlParsed.getPath(); - path = path ? (path.endsWith("/") ? `${path}${name}` : `${path}/${name}`) : name; - urlParsed.setPath(path); - return urlParsed.toString(); +class MockPool extends Pool { + constructor (origin, opts) { + super(origin, opts) + + if (!opts || !opts.agent || typeof opts.agent.dispatch !== 'function') { + throw new InvalidArgumentError('Argument opts.agent must implement Agent') + } + + this[kMockAgent] = opts.agent + this[kOrigin] = origin + this[kDispatches] = [] + this[kConnected] = 1 + this[kOriginalDispatch] = this.dispatch + this[kOriginalClose] = this.close.bind(this) + + this.dispatch = buildMockDispatch.call(this) + this.close = this[kClose] + } + + get [Symbols.kConnected] () { + return this[kConnected] + } + + /** + * Sets up the base interceptor for mocking replies from undici. + */ + intercept (opts) { + return new MockInterceptor(opts, this[kDispatches]) + } + + async [kClose] () { + await promisify(this[kOriginalClose])() + this[kConnected] = 0 + this[kMockAgent][Symbols.kClients].delete(this[kOrigin]) + } } -/** - * Set URL parameter name and value. If name exists in URL parameters, old value - * will be replaced by name key. If not provide value, the parameter will be deleted. - * - * @param url - Source URL string - * @param name - Parameter name - * @param value - Parameter value - * @returns An updated URL string - */ -function setURLParameter(url, name, value) { - const urlParsed = coreHttp.URLBuilder.parse(url); - urlParsed.setQueryParameter(name, value); - return urlParsed.toString(); + +module.exports = MockPool + + +/***/ }), + +/***/ 24347: +/***/ ((module) => { + +"use strict"; + + +module.exports = { + kAgent: Symbol('agent'), + kOptions: Symbol('options'), + kFactory: Symbol('factory'), + kDispatches: Symbol('dispatches'), + kDispatchKey: Symbol('dispatch key'), + kDefaultHeaders: Symbol('default headers'), + kDefaultTrailers: Symbol('default trailers'), + kContentLength: Symbol('content length'), + kMockAgent: Symbol('mock agent'), + kMockAgentSet: Symbol('mock agent set'), + kMockAgentGet: Symbol('mock agent get'), + kMockDispatch: Symbol('mock dispatch'), + kClose: Symbol('close'), + kOriginalClose: Symbol('original agent close'), + kOrigin: Symbol('origin'), + kIsMockActive: Symbol('is mock active'), + kNetConnect: Symbol('net connect'), + kGetNetConnect: Symbol('get net connect'), + kConnected: Symbol('connected') } -/** - * Get URL parameter by name. - * - * @param url - - * @param name - - */ -function getURLParameter(url, name) { - const urlParsed = coreHttp.URLBuilder.parse(url); - return urlParsed.getQueryParameterValue(name); + + +/***/ }), + +/***/ 79323: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { MockNotMatchedError } = __nccwpck_require__(50888) +const { + kDispatches, + kMockAgent, + kOriginalDispatch, + kOrigin, + kGetNetConnect +} = __nccwpck_require__(24347) +const { buildURL } = __nccwpck_require__(83983) +const { STATUS_CODES } = __nccwpck_require__(88849) +const { + types: { + isPromise + } +} = __nccwpck_require__(47261) + +function matchValue (match, value) { + if (typeof match === 'string') { + return match === value + } + if (match instanceof RegExp) { + return match.test(value) + } + if (typeof match === 'function') { + return match(value) === true + } + return false } -/** - * Set URL host. - * - * @param url - Source URL string - * @param host - New host string - * @returns An updated URL string - */ -function setURLHost(url, host) { - const urlParsed = coreHttp.URLBuilder.parse(url); - urlParsed.setHost(host); - return urlParsed.toString(); + +function lowerCaseEntries (headers) { + return Object.fromEntries( + Object.entries(headers).map(([headerName, headerValue]) => { + return [headerName.toLocaleLowerCase(), headerValue] + }) + ) } + /** - * Get URL path from an URL string. - * - * @param url - Source URL string + * @param {import('../../index').Headers|string[]|Record} headers + * @param {string} key */ -function getURLPath(url) { - const urlParsed = coreHttp.URLBuilder.parse(url); - return urlParsed.getPath(); +function getHeaderByName (headers, key) { + if (Array.isArray(headers)) { + for (let i = 0; i < headers.length; i += 2) { + if (headers[i].toLocaleLowerCase() === key.toLocaleLowerCase()) { + return headers[i + 1] + } + } + + return undefined + } else if (typeof headers.get === 'function') { + return headers.get(key) + } else { + return lowerCaseEntries(headers)[key.toLocaleLowerCase()] + } } -/** - * Get URL scheme from an URL string. - * - * @param url - Source URL string - */ -function getURLScheme(url) { - const urlParsed = coreHttp.URLBuilder.parse(url); - return urlParsed.getScheme(); + +/** @param {string[]} headers */ +function buildHeadersFromArray (headers) { // fetch HeadersList + const clone = headers.slice() + const entries = [] + for (let index = 0; index < clone.length; index += 2) { + entries.push([clone[index], clone[index + 1]]) + } + return Object.fromEntries(entries) } -/** - * Get URL path and query from an URL string. - * - * @param url - Source URL string - */ -function getURLPathAndQuery(url) { - const urlParsed = coreHttp.URLBuilder.parse(url); - const pathString = urlParsed.getPath(); - if (!pathString) { - throw new RangeError("Invalid url without valid path."); + +function matchHeaders (mockDispatch, headers) { + if (typeof mockDispatch.headers === 'function') { + if (Array.isArray(headers)) { // fetch HeadersList + headers = buildHeadersFromArray(headers) } - let queryString = urlParsed.getQuery() || ""; - queryString = queryString.trim(); - if (queryString !== "") { - queryString = queryString.startsWith("?") ? queryString : `?${queryString}`; // Ensure query string start with '?' + return mockDispatch.headers(headers ? lowerCaseEntries(headers) : {}) + } + if (typeof mockDispatch.headers === 'undefined') { + return true + } + if (typeof headers !== 'object' || typeof mockDispatch.headers !== 'object') { + return false + } + + for (const [matchHeaderName, matchHeaderValue] of Object.entries(mockDispatch.headers)) { + const headerValue = getHeaderByName(headers, matchHeaderName) + + if (!matchValue(matchHeaderValue, headerValue)) { + return false } - return `${pathString}${queryString}`; + } + return true } -/** - * Get URL query key value pairs from an URL string. - * - * @param url - - */ -function getURLQueries(url) { - let queryString = coreHttp.URLBuilder.parse(url).getQuery(); - if (!queryString) { - return {}; - } - queryString = queryString.trim(); - queryString = queryString.startsWith("?") ? queryString.substr(1) : queryString; - let querySubStrings = queryString.split("&"); - querySubStrings = querySubStrings.filter((value) => { - const indexOfEqual = value.indexOf("="); - const lastIndexOfEqual = value.lastIndexOf("="); - return (indexOfEqual > 0 && indexOfEqual === lastIndexOfEqual && lastIndexOfEqual < value.length - 1); - }); - const queries = {}; - for (const querySubString of querySubStrings) { - const splitResults = querySubString.split("="); - const key = splitResults[0]; - const value = splitResults[1]; - queries[key] = value; - } - return queries; + +function safeUrl (path) { + if (typeof path !== 'string') { + return path + } + + const pathSegments = path.split('?') + + if (pathSegments.length !== 2) { + return path + } + + const qp = new URLSearchParams(pathSegments.pop()) + qp.sort() + return [...pathSegments, qp.toString()].join('?') } -/** - * Append a string to URL query. - * - * @param url - Source URL string. - * @param queryParts - String to be appended to the URL query. - * @returns An updated URL string. - */ -function appendToURLQuery(url, queryParts) { - const urlParsed = coreHttp.URLBuilder.parse(url); - let query = urlParsed.getQuery(); - if (query) { - query += "&" + queryParts; + +function matchKey (mockDispatch, { path, method, body, headers }) { + const pathMatch = matchValue(mockDispatch.path, path) + const methodMatch = matchValue(mockDispatch.method, method) + const bodyMatch = typeof mockDispatch.body !== 'undefined' ? matchValue(mockDispatch.body, body) : true + const headersMatch = matchHeaders(mockDispatch, headers) + return pathMatch && methodMatch && bodyMatch && headersMatch +} + +function getResponseData (data) { + if (Buffer.isBuffer(data)) { + return data + } else if (data instanceof Uint8Array) { + return data + } else if (data instanceof ArrayBuffer) { + return data + } else if (typeof data === 'object') { + return JSON.stringify(data) + } else { + return data.toString() + } +} + +function getMockDispatch (mockDispatches, key) { + const basePath = key.query ? buildURL(key.path, key.query) : key.path + const resolvedPath = typeof basePath === 'string' ? safeUrl(basePath) : basePath + + // Match path + let matchedMockDispatches = mockDispatches.filter(({ consumed }) => !consumed).filter(({ path }) => matchValue(safeUrl(path), resolvedPath)) + if (matchedMockDispatches.length === 0) { + throw new MockNotMatchedError(`Mock dispatch not matched for path '${resolvedPath}'`) + } + + // Match method + matchedMockDispatches = matchedMockDispatches.filter(({ method }) => matchValue(method, key.method)) + if (matchedMockDispatches.length === 0) { + throw new MockNotMatchedError(`Mock dispatch not matched for method '${key.method}' on path '${resolvedPath}'`) + } + + // Match body + matchedMockDispatches = matchedMockDispatches.filter(({ body }) => typeof body !== 'undefined' ? matchValue(body, key.body) : true) + if (matchedMockDispatches.length === 0) { + throw new MockNotMatchedError(`Mock dispatch not matched for body '${key.body}' on path '${resolvedPath}'`) + } + + // Match headers + matchedMockDispatches = matchedMockDispatches.filter((mockDispatch) => matchHeaders(mockDispatch, key.headers)) + if (matchedMockDispatches.length === 0) { + const headers = typeof key.headers === 'object' ? JSON.stringify(key.headers) : key.headers + throw new MockNotMatchedError(`Mock dispatch not matched for headers '${headers}' on path '${resolvedPath}'`) + } + + return matchedMockDispatches[0] +} + +function addMockDispatch (mockDispatches, key, data) { + const baseData = { timesInvoked: 0, times: 1, persist: false, consumed: false } + const replyData = typeof data === 'function' ? { callback: data } : { ...data } + const newMockDispatch = { ...baseData, ...key, pending: true, data: { error: null, ...replyData } } + mockDispatches.push(newMockDispatch) + return newMockDispatch +} + +function deleteMockDispatch (mockDispatches, key) { + const index = mockDispatches.findIndex(dispatch => { + if (!dispatch.consumed) { + return false } - else { - query = queryParts; + return matchKey(dispatch, key) + }) + if (index !== -1) { + mockDispatches.splice(index, 1) + } +} + +function buildKey (opts) { + const { path, method, body, headers, query } = opts + return { + path, + method, + body, + headers, + query + } +} + +function generateKeyValues (data) { + const keys = Object.keys(data) + const result = [] + for (let i = 0; i < keys.length; ++i) { + const key = keys[i] + const value = data[key] + const name = Buffer.from(`${key}`) + if (Array.isArray(value)) { + for (let j = 0; j < value.length; ++j) { + result.push(name, Buffer.from(`${value[j]}`)) + } + } else { + result.push(name, Buffer.from(`${value}`)) } - urlParsed.setQuery(query); - return urlParsed.toString(); + } + return result } + /** - * Rounds a date off to seconds. - * - * @param date - - * @param withMilliseconds - If true, YYYY-MM-DDThh:mm:ss.fffffffZ will be returned; - * If false, YYYY-MM-DDThh:mm:ssZ will be returned. - * @returns Date string in ISO8061 format, with or without 7 milliseconds component + * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status + * @param {number} statusCode */ -function truncatedISO8061Date(date, withMilliseconds = true) { - // Date.toISOString() will return like "2018-10-29T06:34:36.139Z" - const dateString = date.toISOString(); - return withMilliseconds - ? dateString.substring(0, dateString.length - 1) + "0000" + "Z" - : dateString.substring(0, dateString.length - 5) + "Z"; +function getStatusText (statusCode) { + return STATUS_CODES[statusCode] || 'unknown' +} + +async function getResponse (body) { + const buffers = [] + for await (const data of body) { + buffers.push(data) + } + return Buffer.concat(buffers).toString('utf8') } + /** - * Base64 encode. - * - * @param content - + * Mock dispatch function used to simulate undici dispatches */ -function base64encode(content) { - return !coreHttp.isNode ? btoa(content) : Buffer.from(content).toString("base64"); +function mockDispatch (opts, handler) { + // Get mock dispatch from built key + const key = buildKey(opts) + const mockDispatch = getMockDispatch(this[kDispatches], key) + + mockDispatch.timesInvoked++ + + // Here's where we resolve a callback if a callback is present for the dispatch data. + if (mockDispatch.data.callback) { + mockDispatch.data = { ...mockDispatch.data, ...mockDispatch.data.callback(opts) } + } + + // Parse mockDispatch data + const { data: { statusCode, data, headers, trailers, error }, delay, persist } = mockDispatch + const { timesInvoked, times } = mockDispatch + + // If it's used up and not persistent, mark as consumed + mockDispatch.consumed = !persist && timesInvoked >= times + mockDispatch.pending = timesInvoked < times + + // If specified, trigger dispatch error + if (error !== null) { + deleteMockDispatch(this[kDispatches], key) + handler.onError(error) + return true + } + + // Handle the request with a delay if necessary + if (typeof delay === 'number' && delay > 0) { + setTimeout(() => { + handleReply(this[kDispatches]) + }, delay) + } else { + handleReply(this[kDispatches]) + } + + function handleReply (mockDispatches, _data = data) { + // fetch's HeadersList is a 1D string array + const optsHeaders = Array.isArray(opts.headers) + ? buildHeadersFromArray(opts.headers) + : opts.headers + const body = typeof _data === 'function' + ? _data({ ...opts, headers: optsHeaders }) + : _data + + // util.types.isPromise is likely needed for jest. + if (isPromise(body)) { + // If handleReply is asynchronous, throwing an error + // in the callback will reject the promise, rather than + // synchronously throw the error, which breaks some tests. + // Rather, we wait for the callback to resolve if it is a + // promise, and then re-run handleReply with the new body. + body.then((newData) => handleReply(mockDispatches, newData)) + return + } + + const responseData = getResponseData(body) + const responseHeaders = generateKeyValues(headers) + const responseTrailers = generateKeyValues(trailers) + + handler.onConnect?.(err => handler.onError(err), null) + handler.onHeaders?.(statusCode, responseHeaders, resume, getStatusText(statusCode)) + handler.onData?.(Buffer.from(responseData)) + handler.onComplete?.(responseTrailers) + deleteMockDispatch(mockDispatches, key) + } + + function resume () {} + + return true +} + +function buildMockDispatch () { + const agent = this[kMockAgent] + const origin = this[kOrigin] + const originalDispatch = this[kOriginalDispatch] + + return function dispatch (opts, handler) { + if (agent.isMockActive) { + try { + mockDispatch.call(this, opts, handler) + } catch (error) { + if (error instanceof MockNotMatchedError) { + const netConnect = agent[kGetNetConnect]() + if (netConnect === false) { + throw new MockNotMatchedError(`${error.message}: subsequent request to origin ${origin} was not allowed (net.connect disabled)`) + } + if (checkNetConnect(netConnect, origin)) { + originalDispatch.call(this, opts, handler) + } else { + throw new MockNotMatchedError(`${error.message}: subsequent request to origin ${origin} was not allowed (net.connect is not enabled for this origin)`) + } + } else { + throw error + } + } + } else { + originalDispatch.call(this, opts, handler) + } + } +} + +function checkNetConnect (netConnect, origin) { + const url = new URL(origin) + if (netConnect === true) { + return true + } else if (Array.isArray(netConnect) && netConnect.some((matcher) => matchValue(matcher, url.host))) { + return true + } + return false +} + +function buildMockOptions (opts) { + if (opts) { + const { agent, ...mockOptions } = opts + return mockOptions + } +} + +module.exports = { + getResponseData, + getMockDispatch, + addMockDispatch, + deleteMockDispatch, + buildKey, + generateKeyValues, + matchValue, + getResponse, + getStatusText, + mockDispatch, + buildMockDispatch, + checkNetConnect, + buildMockOptions, + getHeaderByName, + buildHeadersFromArray } + + +/***/ }), + +/***/ 86823: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { Transform } = __nccwpck_require__(84492) +const { Console } = __nccwpck_require__(40027) + +const PERSISTENT = process.versions.icu ? '✅' : 'Y ' +const NOT_PERSISTENT = process.versions.icu ? '❌' : 'N ' + /** - * Generate a 64 bytes base64 block ID string. - * - * @param blockIndex - + * Gets the output of `console.table(…)` as a string. */ -function generateBlockID(blockIDPrefix, blockIndex) { - // To generate a 64 bytes base64 string, source string should be 48 - const maxSourceStringLength = 48; - // A blob can have a maximum of 100,000 uncommitted blocks at any given time - const maxBlockIndexLength = 6; - const maxAllowedBlockIDPrefixLength = maxSourceStringLength - maxBlockIndexLength; - if (blockIDPrefix.length > maxAllowedBlockIDPrefixLength) { - blockIDPrefix = blockIDPrefix.slice(0, maxAllowedBlockIDPrefixLength); - } - const res = blockIDPrefix + - padStart(blockIndex.toString(), maxSourceStringLength - blockIDPrefix.length, "0"); - return base64encode(res); +module.exports = class PendingInterceptorsFormatter { + constructor ({ disableColors } = {}) { + this.transform = new Transform({ + transform (chunk, _enc, cb) { + cb(null, chunk) + } + }) + + this.logger = new Console({ + stdout: this.transform, + inspectOptions: { + colors: !disableColors && !process.env.CI + } + }) + } + + format (pendingInterceptors) { + const withPrettyHeaders = pendingInterceptors.map( + ({ method, path, data: { statusCode }, persist, times, timesInvoked, origin }) => ({ + Method: method, + Origin: origin, + Path: path, + 'Status code': statusCode, + Persistent: persist ? PERSISTENT : NOT_PERSISTENT, + Invocations: timesInvoked, + Remaining: persist ? Infinity : times - timesInvoked + })) + + this.logger.table(withPrettyHeaders) + return this.transform.read().toString() + } +} + + +/***/ }), + +/***/ 78891: +/***/ ((module) => { + +"use strict"; + + +const singulars = { + pronoun: 'it', + is: 'is', + was: 'was', + this: 'this' +} + +const plurals = { + pronoun: 'they', + is: 'are', + was: 'were', + this: 'these' +} + +module.exports = class Pluralizer { + constructor (singular, plural) { + this.singular = singular + this.plural = plural + } + + pluralize (count) { + const one = count === 1 + const keys = one ? singulars : plurals + const noun = one ? this.singular : this.plural + return { ...keys, count, noun } + } } + + +/***/ }), + +/***/ 85194: +/***/ ((module) => { + +"use strict"; + + /** - * Delay specified time interval. + * This module offers an optimized timer implementation designed for scenarios + * where high precision is not critical. * - * @param timeInMs - - * @param aborter - - * @param abortError - + * The timer achieves faster performance by using a low-resolution approach, + * with an accuracy target of within 500ms. This makes it particularly useful + * for timers with delays of 1 second or more, where exact timing is less + * crucial. + * + * It's important to note that Node.js timers are inherently imprecise, as + * delays can occur due to the event loop being blocked by other operations. + * Consequently, timers may trigger later than their scheduled time. */ -async function delay(timeInMs, aborter, abortError) { - return new Promise((resolve, reject) => { - /* eslint-disable-next-line prefer-const */ - let timeout; - const abortHandler = () => { - if (timeout !== undefined) { - clearTimeout(timeout); - } - reject(abortError); - }; - const resolveHandler = () => { - if (aborter !== undefined) { - aborter.removeEventListener("abort", abortHandler); - } - resolve(); - }; - timeout = setTimeout(resolveHandler, timeInMs); - if (aborter !== undefined) { - aborter.addEventListener("abort", abortHandler); - } - }); -} + /** - * String.prototype.padStart() + * The fastNow variable contains the internal fast timer clock value. * - * @param currentString - - * @param targetLength - - * @param padString - + * @type {number} */ -function padStart(currentString, targetLength, padString = " ") { - // @ts-expect-error: TS doesn't know this code needs to run downlevel sometimes - if (String.prototype.padStart) { - return currentString.padStart(targetLength, padString); - } - padString = padString || " "; - if (currentString.length > targetLength) { - return currentString; - } - else { - targetLength = targetLength - currentString.length; - if (targetLength > padString.length) { - padString += padString.repeat(targetLength / padString.length); - } - return padString.slice(0, targetLength) + currentString; - } -} +let fastNow = 0 + /** - * If two strings are equal when compared case insensitive. + * RESOLUTION_MS represents the target resolution time in milliseconds. * - * @param str1 - - * @param str2 - + * @type {number} + * @default 1000 */ -function iEqual(str1, str2) { - return str1.toLocaleLowerCase() === str2.toLocaleLowerCase(); -} +const RESOLUTION_MS = 1e3 + /** - * Extracts account name from the url - * @param url - url to extract the account name from - * @returns with the account name + * TICK_MS defines the desired interval in milliseconds between each tick. + * The target value is set to half the resolution time, minus 1 ms, to account + * for potential event loop overhead. + * + * @type {number} + * @default 499 */ -function getAccountNameFromUrl(url) { - const parsedUrl = coreHttp.URLBuilder.parse(url); - let accountName; - try { - if (parsedUrl.getHost().split(".")[1] === "blob") { - // `${defaultEndpointsProtocol}://${accountName}.blob.${endpointSuffix}`; - accountName = parsedUrl.getHost().split(".")[0]; - } - else if (isIpEndpointStyle(parsedUrl)) { - // IPv4/IPv6 address hosts... Example - http://192.0.0.10:10001/devstoreaccount1/ - // Single word domain without a [dot] in the endpoint... Example - http://localhost:10001/devstoreaccount1/ - // .getPath() -> /devstoreaccount1/ - accountName = parsedUrl.getPath().split("/")[1]; - } - else { - // Custom domain case: "https://customdomain.com/containername/blob". - accountName = ""; - } - return accountName; - } - catch (error) { - throw new Error("Unable to extract accountName with provided information."); - } -} -function isIpEndpointStyle(parsedUrl) { - if (parsedUrl.getHost() === undefined) { - return false; - } - const host = parsedUrl.getHost() + (parsedUrl.getPort() === undefined ? "" : ":" + parsedUrl.getPort()); - // Case 1: Ipv6, use a broad regex to find out candidates whose host contains two ':'. - // Case 2: localhost(:port), use broad regex to match port part. - // Case 3: Ipv4, use broad regex which just check if host contains Ipv4. - // For valid host please refer to https://man7.org/linux/man-pages/man7/hostname.7.html. - return /^.*:.*:.*$|^localhost(:[0-9]+)?$|^(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])(\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])){3}(:[0-9]+)?$/.test(host); -} +const TICK_MS = (RESOLUTION_MS >> 1) - 1 + /** - * Convert Tags to encoded string. + * fastNowTimeout is a Node.js timer used to manage and process + * the FastTimers stored in the `fastTimers` array. * - * @param tags - + * @type {NodeJS.Timeout} */ -function toBlobTagsString(tags) { - if (tags === undefined) { - return undefined; - } - const tagPairs = []; - for (const key in tags) { - if (Object.prototype.hasOwnProperty.call(tags, key)) { - const value = tags[key]; - tagPairs.push(`${encodeURIComponent(key)}=${encodeURIComponent(value)}`); - } - } - return tagPairs.join("&"); -} +let fastNowTimeout + /** - * Convert Tags type to BlobTags. + * The kFastTimer symbol is used to identify FastTimer instances. * - * @param tags - + * @type {Symbol} */ -function toBlobTags(tags) { - if (tags === undefined) { - return undefined; - } - const res = { - blobTagSet: [], - }; - for (const key in tags) { - if (Object.prototype.hasOwnProperty.call(tags, key)) { - const value = tags[key]; - res.blobTagSet.push({ - key, - value, - }); - } - } - return res; -} +const kFastTimer = Symbol('kFastTimer') + /** - * Covert BlobTags to Tags type. + * The fastTimers array contains all active FastTimers. * - * @param tags - + * @type {FastTimer[]} */ -function toTags(tags) { - if (tags === undefined) { - return undefined; - } - const res = {}; - for (const blobTag of tags.blobTagSet) { - res[blobTag.key] = blobTag.value; - } - return res; -} +const fastTimers = [] + /** - * Convert BlobQueryTextConfiguration to QuerySerialization type. + * These constants represent the various states of a FastTimer. + */ + +/** + * The `NOT_IN_LIST` constant indicates that the FastTimer is not included + * in the `fastTimers` array. Timers with this status will not be processed + * during the next tick by the `onTick` function. * - * @param textConfiguration - + * A FastTimer can be re-added to the `fastTimers` array by invoking the + * `refresh` method on the FastTimer instance. + * + * @type {-2} */ -function toQuerySerialization(textConfiguration) { - if (textConfiguration === undefined) { - return undefined; - } - switch (textConfiguration.kind) { - case "csv": - return { - format: { - type: "delimited", - delimitedTextConfiguration: { - columnSeparator: textConfiguration.columnSeparator || ",", - fieldQuote: textConfiguration.fieldQuote || "", - recordSeparator: textConfiguration.recordSeparator, - escapeChar: textConfiguration.escapeCharacter || "", - headersPresent: textConfiguration.hasHeaders || false, - }, - }, - }; - case "json": - return { - format: { - type: "json", - jsonTextConfiguration: { - recordSeparator: textConfiguration.recordSeparator, - }, - }, - }; - case "arrow": - return { - format: { - type: "arrow", - arrowConfiguration: { - schema: textConfiguration.schema, - }, - }, - }; - case "parquet": - return { - format: { - type: "parquet", - }, - }; - default: - throw Error("Invalid BlobQueryTextConfiguration."); - } -} -function parseObjectReplicationRecord(objectReplicationRecord) { - if (!objectReplicationRecord) { - return undefined; - } - if ("policy-id" in objectReplicationRecord) { - // If the dictionary contains a key with policy id, we are not required to do any parsing since - // the policy id should already be stored in the ObjectReplicationDestinationPolicyId. - return undefined; - } - const orProperties = []; - for (const key in objectReplicationRecord) { - const ids = key.split("_"); - const policyPrefix = "or-"; - if (ids[0].startsWith(policyPrefix)) { - ids[0] = ids[0].substring(policyPrefix.length); - } - const rule = { - ruleId: ids[1], - replicationStatus: objectReplicationRecord[key], - }; - const policyIndex = orProperties.findIndex((policy) => policy.policyId === ids[0]); - if (policyIndex > -1) { - orProperties[policyIndex].rules.push(rule); - } - else { - orProperties.push({ - policyId: ids[0], - rules: [rule], - }); - } - } - return orProperties; -} +const NOT_IN_LIST = -2 + /** - * Attach a TokenCredential to an object. + * The `TO_BE_CLEARED` constant indicates that the FastTimer is scheduled + * for removal from the `fastTimers` array. A FastTimer in this state will + * be removed in the next tick by the `onTick` function and will no longer + * be processed. * - * @param thing - - * @param credential - + * This status is also set when the `clear` method is called on the FastTimer instance. + * + * @type {-1} */ -function attachCredential(thing, credential) { - thing.credential = credential; - return thing; -} -function httpAuthorizationToString(httpAuthorization) { - return httpAuthorization ? httpAuthorization.scheme + " " + httpAuthorization.value : undefined; -} -function BlobNameToString(name) { - if (name.encoded) { - return decodeURIComponent(name.content); - } - else { - return name.content; - } -} -function ConvertInternalResponseOfListBlobFlat(internalResponse) { - return Object.assign(Object.assign({}, internalResponse), { segment: { - blobItems: internalResponse.segment.blobItems.map((blobItemInteral) => { - const blobItem = Object.assign(Object.assign({}, blobItemInteral), { name: BlobNameToString(blobItemInteral.name) }); - return blobItem; - }), - } }); -} -function ConvertInternalResponseOfListBlobHierarchy(internalResponse) { - var _a; - return Object.assign(Object.assign({}, internalResponse), { segment: { - blobPrefixes: (_a = internalResponse.segment.blobPrefixes) === null || _a === void 0 ? void 0 : _a.map((blobPrefixInternal) => { - const blobPrefix = { - name: BlobNameToString(blobPrefixInternal.name), - }; - return blobPrefix; - }), - blobItems: internalResponse.segment.blobItems.map((blobItemInteral) => { - const blobItem = Object.assign(Object.assign({}, blobItemInteral), { name: BlobNameToString(blobItemInteral.name) }); - return blobItem; - }), - } }); -} -function decodeBase64String(value) { - if (coreHttp.isNode) { - return Buffer.from(value, "base64"); - } - else { - const byteString = atob(value); - const arr = new Uint8Array(byteString.length); - for (let i = 0; i < byteString.length; i++) { - arr[i] = byteString.charCodeAt(i); - } - return arr; - } -} -function ParseBoolean(content) { - if (content === undefined) - return undefined; - if (content === "true") - return true; - if (content === "false") - return false; - return undefined; -} -function ParseBlobName(blobNameInXML) { - if (blobNameInXML["$"] !== undefined && blobNameInXML["#"] !== undefined) { - return { - encoded: ParseBoolean(blobNameInXML["$"]["Encoded"]), - content: blobNameInXML["#"], - }; - } - else { - return { - encoded: false, - content: blobNameInXML, - }; - } -} -function ParseBlobItem(blobInXML) { - const blobPropertiesInXML = blobInXML["Properties"]; - const blobProperties = { - createdOn: new Date(blobPropertiesInXML["Creation-Time"]), - lastModified: new Date(blobPropertiesInXML["Last-Modified"]), - etag: blobPropertiesInXML["Etag"], - contentLength: blobPropertiesInXML["Content-Length"] === undefined - ? undefined - : parseFloat(blobPropertiesInXML["Content-Length"]), - contentType: blobPropertiesInXML["Content-Type"], - contentEncoding: blobPropertiesInXML["Content-Encoding"], - contentLanguage: blobPropertiesInXML["Content-Language"], - contentMD5: decodeBase64String(blobPropertiesInXML["Content-MD5"]), - contentDisposition: blobPropertiesInXML["Content-Disposition"], - cacheControl: blobPropertiesInXML["Cache-Control"], - blobSequenceNumber: blobPropertiesInXML["x-ms-blob-sequence-number"] === undefined - ? undefined - : parseFloat(blobPropertiesInXML["x-ms-blob-sequence-number"]), - blobType: blobPropertiesInXML["BlobType"], - leaseStatus: blobPropertiesInXML["LeaseStatus"], - leaseState: blobPropertiesInXML["LeaseState"], - leaseDuration: blobPropertiesInXML["LeaseDuration"], - copyId: blobPropertiesInXML["CopyId"], - copyStatus: blobPropertiesInXML["CopyStatus"], - copySource: blobPropertiesInXML["CopySource"], - copyProgress: blobPropertiesInXML["CopyProgress"], - copyCompletedOn: blobPropertiesInXML["CopyCompletionTime"] === undefined - ? undefined - : new Date(blobPropertiesInXML["CopyCompletionTime"]), - copyStatusDescription: blobPropertiesInXML["CopyStatusDescription"], - serverEncrypted: ParseBoolean(blobPropertiesInXML["ServerEncrypted"]), - incrementalCopy: ParseBoolean(blobPropertiesInXML["IncrementalCopy"]), - destinationSnapshot: blobPropertiesInXML["DestinationSnapshot"], - deletedOn: blobPropertiesInXML["DeletedTime"] === undefined - ? undefined - : new Date(blobPropertiesInXML["DeletedTime"]), - remainingRetentionDays: blobPropertiesInXML["RemainingRetentionDays"] === undefined - ? undefined - : parseFloat(blobPropertiesInXML["RemainingRetentionDays"]), - accessTier: blobPropertiesInXML["AccessTier"], - accessTierInferred: ParseBoolean(blobPropertiesInXML["AccessTierInferred"]), - archiveStatus: blobPropertiesInXML["ArchiveStatus"], - customerProvidedKeySha256: blobPropertiesInXML["CustomerProvidedKeySha256"], - encryptionScope: blobPropertiesInXML["EncryptionScope"], - accessTierChangedOn: blobPropertiesInXML["AccessTierChangeTime"] === undefined - ? undefined - : new Date(blobPropertiesInXML["AccessTierChangeTime"]), - tagCount: blobPropertiesInXML["TagCount"] === undefined - ? undefined - : parseFloat(blobPropertiesInXML["TagCount"]), - expiresOn: blobPropertiesInXML["Expiry-Time"] === undefined - ? undefined - : new Date(blobPropertiesInXML["Expiry-Time"]), - isSealed: ParseBoolean(blobPropertiesInXML["Sealed"]), - rehydratePriority: blobPropertiesInXML["RehydratePriority"], - lastAccessedOn: blobPropertiesInXML["LastAccessTime"] === undefined - ? undefined - : new Date(blobPropertiesInXML["LastAccessTime"]), - immutabilityPolicyExpiresOn: blobPropertiesInXML["ImmutabilityPolicyUntilDate"] === undefined - ? undefined - : new Date(blobPropertiesInXML["ImmutabilityPolicyUntilDate"]), - immutabilityPolicyMode: blobPropertiesInXML["ImmutabilityPolicyMode"], - legalHold: ParseBoolean(blobPropertiesInXML["LegalHold"]), - }; - return { - name: ParseBlobName(blobInXML["Name"]), - deleted: ParseBoolean(blobInXML["Deleted"]), - snapshot: blobInXML["Snapshot"], - versionId: blobInXML["VersionId"], - isCurrentVersion: ParseBoolean(blobInXML["IsCurrentVersion"]), - properties: blobProperties, - metadata: blobInXML["Metadata"], - blobTags: ParseBlobTags(blobInXML["Tags"]), - objectReplicationMetadata: blobInXML["OrMetadata"], - hasVersionsOnly: ParseBoolean(blobInXML["HasVersionsOnly"]), - }; -} -function ParseBlobPrefix(blobPrefixInXML) { - return { - name: ParseBlobName(blobPrefixInXML["Name"]), - }; -} -function ParseBlobTag(blobTagInXML) { - return { - key: blobTagInXML["Key"], - value: blobTagInXML["Value"], - }; -} -function ParseBlobTags(blobTagsInXML) { - if (blobTagsInXML === undefined || - blobTagsInXML["TagSet"] === undefined || - blobTagsInXML["TagSet"]["Tag"] === undefined) { - return undefined; - } - const blobTagSet = []; - if (blobTagsInXML["TagSet"]["Tag"] instanceof Array) { - blobTagsInXML["TagSet"]["Tag"].forEach((blobTagInXML) => { - blobTagSet.push(ParseBlobTag(blobTagInXML)); - }); - } - else { - blobTagSet.push(ParseBlobTag(blobTagsInXML["TagSet"]["Tag"])); - } - return { blobTagSet: blobTagSet }; -} -function ProcessBlobItems(blobArrayInXML) { - const blobItems = []; - if (blobArrayInXML instanceof Array) { - blobArrayInXML.forEach((blobInXML) => { - blobItems.push(ParseBlobItem(blobInXML)); - }); - } - else { - blobItems.push(ParseBlobItem(blobArrayInXML)); - } - return blobItems; -} -function ProcessBlobPrefixes(blobPrefixesInXML) { - const blobPrefixes = []; - if (blobPrefixesInXML instanceof Array) { - blobPrefixesInXML.forEach((blobPrefixInXML) => { - blobPrefixes.push(ParseBlobPrefix(blobPrefixInXML)); - }); - } - else { - blobPrefixes.push(ParseBlobPrefix(blobPrefixesInXML)); - } - return blobPrefixes; -} +const TO_BE_CLEARED = -1 -// Copyright (c) Microsoft Corporation. /** - * StorageBrowserPolicy will handle differences between Node.js and browser runtime, including: + * The `PENDING` constant signifies that the FastTimer is awaiting processing + * in the next tick by the `onTick` function. Timers with this status will have + * their `_idleStart` value set and their status updated to `ACTIVE` in the next tick. * - * 1. Browsers cache GET/HEAD requests by adding conditional headers such as 'IF_MODIFIED_SINCE'. - * StorageBrowserPolicy is a policy used to add a timestamp query to GET/HEAD request URL - * thus avoid the browser cache. + * @type {0} + */ +const PENDING = 0 + +/** + * The `ACTIVE` constant indicates that the FastTimer is active and waiting + * for its timer to expire. During the next tick, the `onTick` function will + * check if the timer has expired, and if so, it will execute the associated callback. * - * 2. Remove cookie header for security + * @type {1} + */ +const ACTIVE = 1 + +/** + * The onTick function processes the fastTimers array. * - * 3. Remove content-length header to avoid browsers warning + * @returns {void} */ -class StorageBrowserPolicy extends coreHttp.BaseRequestPolicy { +function onTick () { + /** + * Increment the fastNow value by the TICK_MS value, despite the actual time + * that has passed since the last tick. This approach ensures independence + * from the system clock and delays caused by a blocked event loop. + * + * @type {number} + */ + fastNow += TICK_MS + + /** + * The `idx` variable is used to iterate over the `fastTimers` array. + * Expired timers are removed by replacing them with the last element in the array. + * Consequently, `idx` is only incremented when the current element is not removed. + * + * @type {number} + */ + let idx = 0 + + /** + * The len variable will contain the length of the fastTimers array + * and will be decremented when a FastTimer should be removed from the + * fastTimers array. + * + * @type {number} + */ + let len = fastTimers.length + + while (idx < len) { /** - * Creates an instance of StorageBrowserPolicy. - * @param nextPolicy - - * @param options - + * @type {FastTimer} */ - // The base class has a protected constructor. Adding a public one to enable constructing of this class. - /* eslint-disable-next-line @typescript-eslint/no-useless-constructor*/ - constructor(nextPolicy, options) { - super(nextPolicy, options); + const timer = fastTimers[idx] + + // If the timer is in the ACTIVE state and the timer has expired, it will + // be processed in the next tick. + if (timer._state === PENDING) { + // Set the _idleStart value to the fastNow value minus the TICK_MS value + // to account for the time the timer was in the PENDING state. + timer._idleStart = fastNow - TICK_MS + timer._state = ACTIVE + } else if ( + timer._state === ACTIVE && + fastNow >= timer._idleStart + timer._idleTimeout + ) { + timer._state = TO_BE_CLEARED + timer._idleStart = -1 + timer._onTimeout(timer._timerArg) } - /** - * Sends out request. - * - * @param request - - */ - async sendRequest(request) { - if (coreHttp.isNode) { - return this._nextPolicy.sendRequest(request); - } - if (request.method.toUpperCase() === "GET" || request.method.toUpperCase() === "HEAD") { - request.url = setURLParameter(request.url, URLConstants.Parameters.FORCE_BROWSER_NO_CACHE, new Date().getTime().toString()); - } - request.headers.remove(HeaderConstants.COOKIE); - // According to XHR standards, content-length should be fully controlled by browsers - request.headers.remove(HeaderConstants.CONTENT_LENGTH); - return this._nextPolicy.sendRequest(request); + + if (timer._state === TO_BE_CLEARED) { + timer._state = NOT_IN_LIST + + // Move the last element to the current index and decrement len if it is + // not the only element in the array. + if (--len !== 0) { + fastTimers[idx] = fastTimers[len] + } + } else { + ++idx } + } + + // Set the length of the fastTimers array to the new length and thus + // removing the excess FastTimers elements from the array. + fastTimers.length = len + + // If there are still active FastTimers in the array, refresh the Timer. + // If there are no active FastTimers, the timer will be refreshed again + // when a new FastTimer is instantiated. + if (fastTimers.length !== 0) { + refreshTimeout() + } +} + +function refreshTimeout () { + // If the fastNowTimeout is already set, refresh it. + if (fastNowTimeout) { + fastNowTimeout.refresh() + // fastNowTimeout is not instantiated yet, create a new Timer. + } else { + clearTimeout(fastNowTimeout) + fastNowTimeout = setTimeout(onTick, TICK_MS) + + // If the Timer has an unref method, call it to allow the process to exit if + // there are no other active handles. + if (fastNowTimeout.unref) { + fastNowTimeout.unref() + } + } } -// Copyright (c) Microsoft Corporation. /** - * StorageBrowserPolicyFactory is a factory class helping generating StorageBrowserPolicy objects. + * The `FastTimer` class is a data structure designed to store and manage + * timer information. */ -class StorageBrowserPolicyFactory { - /** - * Creates a StorageBrowserPolicyFactory object. - * - * @param nextPolicy - - * @param options - - */ - create(nextPolicy, options) { - return new StorageBrowserPolicy(nextPolicy, options); +class FastTimer { + [kFastTimer] = true + + /** + * The state of the timer, which can be one of the following: + * - NOT_IN_LIST (-2) + * - TO_BE_CLEARED (-1) + * - PENDING (0) + * - ACTIVE (1) + * + * @type {-2|-1|0|1} + * @private + */ + _state = NOT_IN_LIST + + /** + * The number of milliseconds to wait before calling the callback. + * + * @type {number} + * @private + */ + _idleTimeout = -1 + + /** + * The time in milliseconds when the timer was started. This value is used to + * calculate when the timer should expire. + * + * @type {number} + * @default -1 + * @private + */ + _idleStart = -1 + + /** + * The function to be executed when the timer expires. + * @type {Function} + * @private + */ + _onTimeout + + /** + * The argument to be passed to the callback when the timer expires. + * + * @type {*} + * @private + */ + _timerArg + + /** + * @constructor + * @param {Function} callback A function to be executed after the timer + * expires. + * @param {number} delay The time, in milliseconds that the timer should wait + * before the specified function or code is executed. + * @param {*} arg + */ + constructor (callback, delay, arg) { + this._onTimeout = callback + this._idleTimeout = delay + this._timerArg = arg + + this.refresh() + } + + /** + * Sets the timer's start time to the current time, and reschedules the timer + * to call its callback at the previously specified duration adjusted to the + * current time. + * Using this on a timer that has already called its callback will reactivate + * the timer. + * + * @returns {void} + */ + refresh () { + // In the special case that the timer is not in the list of active timers, + // add it back to the array to be processed in the next tick by the onTick + // function. + if (this._state === NOT_IN_LIST) { + fastTimers.push(this) + } + + // If the timer is the only active timer, refresh the fastNowTimeout for + // better resolution. + if (!fastNowTimeout || fastTimers.length === 1) { + refreshTimeout() } + + // Setting the state to PENDING will cause the timer to be reset in the + // next tick by the onTick function. + this._state = PENDING + } + + /** + * The `clear` method cancels the timer, preventing it from executing. + * + * @returns {void} + * @private + */ + clear () { + // Set the state to TO_BE_CLEARED to mark the timer for removal in the next + // tick by the onTick function. + this._state = TO_BE_CLEARED + + // Reset the _idleStart value to -1 to indicate that the timer is no longer + // active. + this._idleStart = -1 + } } -// Copyright (c) Microsoft Corporation. /** - * RetryPolicy types. + * This module exports a setTimeout and clearTimeout function that can be + * used as a drop-in replacement for the native functions. */ -exports.StorageRetryPolicyType = void 0; -(function (StorageRetryPolicyType) { - /** - * Exponential retry. Retry time delay grows exponentially. - */ - StorageRetryPolicyType[StorageRetryPolicyType["EXPONENTIAL"] = 0] = "EXPONENTIAL"; - /** - * Linear retry. Retry time delay grows linearly. - */ - StorageRetryPolicyType[StorageRetryPolicyType["FIXED"] = 1] = "FIXED"; -})(exports.StorageRetryPolicyType || (exports.StorageRetryPolicyType = {})); -// Default values of StorageRetryOptions -const DEFAULT_RETRY_OPTIONS = { - maxRetryDelayInMs: 120 * 1000, - maxTries: 4, - retryDelayInMs: 4 * 1000, - retryPolicyType: exports.StorageRetryPolicyType.EXPONENTIAL, - secondaryHost: "", - tryTimeoutInMs: undefined, // Use server side default timeout strategy -}; -const RETRY_ABORT_ERROR = new abortController.AbortError("The operation was aborted."); +module.exports = { + /** + * The setTimeout() method sets a timer which executes a function once the + * timer expires. + * @param {Function} callback A function to be executed after the timer + * expires. + * @param {number} delay The time, in milliseconds that the timer should + * wait before the specified function or code is executed. + * @param {*} [arg] An optional argument to be passed to the callback function + * when the timer expires. + * @returns {NodeJS.Timeout|FastTimer} + */ + setTimeout (callback, delay, arg) { + // If the delay is less than or equal to the RESOLUTION_MS value return a + // native Node.js Timer instance. + return delay <= RESOLUTION_MS + ? setTimeout(callback, delay, arg) + : new FastTimer(callback, delay, arg) + }, + /** + * The clearTimeout method cancels an instantiated Timer previously created + * by calling setTimeout. + * + * @param {NodeJS.Timeout|FastTimer} timeout + */ + clearTimeout (timeout) { + // If the timeout is a FastTimer, call its own clear method. + if (timeout[kFastTimer]) { + /** + * @type {FastTimer} + */ + timeout.clear() + // Otherwise it is an instance of a native NodeJS.Timeout, so call the + // Node.js native clearTimeout function. + } else { + clearTimeout(timeout) + } + }, + /** + * The setFastTimeout() method sets a fastTimer which executes a function once + * the timer expires. + * @param {Function} callback A function to be executed after the timer + * expires. + * @param {number} delay The time, in milliseconds that the timer should + * wait before the specified function or code is executed. + * @param {*} [arg] An optional argument to be passed to the callback function + * when the timer expires. + * @returns {FastTimer} + */ + setFastTimeout (callback, delay, arg) { + return new FastTimer(callback, delay, arg) + }, + /** + * The clearTimeout method cancels an instantiated FastTimer previously + * created by calling setFastTimeout. + * + * @param {FastTimer} timeout + */ + clearFastTimeout (timeout) { + timeout.clear() + }, + /** + * The now method returns the value of the internal fast timer clock. + * + * @returns {number} + */ + now () { + return fastNow + }, + /** + * Trigger the onTick function to process the fastTimers array. + * Exported for testing purposes only. + * Marking as deprecated to discourage any use outside of testing. + * @deprecated + * @param {number} [delay=0] The delay in milliseconds to add to the now value. + */ + tick (delay = 0) { + fastNow += delay - RESOLUTION_MS + 1 + onTick() + onTick() + }, + /** + * Reset FastTimers. + * Exported for testing purposes only. + * Marking as deprecated to discourage any use outside of testing. + * @deprecated + */ + reset () { + fastNow = 0 + fastTimers.length = 0 + clearTimeout(fastNowTimeout) + fastNowTimeout = null + }, + /** + * Exporting for testing purposes only. + * Marking as deprecated to discourage any use outside of testing. + * @deprecated + */ + kFastTimer +} + + +/***/ }), + +/***/ 31028: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { kConstruct } = __nccwpck_require__(92562) +const { urlEquals, getFieldValues } = __nccwpck_require__(38531) +const { kEnumerableProperty, isDisturbed } = __nccwpck_require__(83983) +const { webidl } = __nccwpck_require__(44890) +const { Response, cloneResponse, fromInnerResponse } = __nccwpck_require__(12583) +const { Request, fromInnerRequest } = __nccwpck_require__(20610) +const { kState } = __nccwpck_require__(749) +const { fetching } = __nccwpck_require__(85170) +const { urlIsHttpHttpsScheme, createDeferredPromise, readAllBytes } = __nccwpck_require__(1310) +const assert = __nccwpck_require__(98061) + /** - * Retry policy with exponential retry and linear retry implemented. + * @see https://w3c.github.io/ServiceWorker/#dfn-cache-batch-operation + * @typedef {Object} CacheBatchOperation + * @property {'delete' | 'put'} type + * @property {any} request + * @property {any} response + * @property {import('../../types/cache').CacheQueryOptions} options */ -class StorageRetryPolicy extends coreHttp.BaseRequestPolicy { - /** - * Creates an instance of RetryPolicy. - * - * @param nextPolicy - - * @param options - - * @param retryOptions - - */ - constructor(nextPolicy, options, retryOptions = DEFAULT_RETRY_OPTIONS) { - super(nextPolicy, options); - // Initialize retry options - this.retryOptions = { - retryPolicyType: retryOptions.retryPolicyType - ? retryOptions.retryPolicyType - : DEFAULT_RETRY_OPTIONS.retryPolicyType, - maxTries: retryOptions.maxTries && retryOptions.maxTries >= 1 - ? Math.floor(retryOptions.maxTries) - : DEFAULT_RETRY_OPTIONS.maxTries, - tryTimeoutInMs: retryOptions.tryTimeoutInMs && retryOptions.tryTimeoutInMs >= 0 - ? retryOptions.tryTimeoutInMs - : DEFAULT_RETRY_OPTIONS.tryTimeoutInMs, - retryDelayInMs: retryOptions.retryDelayInMs && retryOptions.retryDelayInMs >= 0 - ? Math.min(retryOptions.retryDelayInMs, retryOptions.maxRetryDelayInMs - ? retryOptions.maxRetryDelayInMs - : DEFAULT_RETRY_OPTIONS.maxRetryDelayInMs) - : DEFAULT_RETRY_OPTIONS.retryDelayInMs, - maxRetryDelayInMs: retryOptions.maxRetryDelayInMs && retryOptions.maxRetryDelayInMs >= 0 - ? retryOptions.maxRetryDelayInMs - : DEFAULT_RETRY_OPTIONS.maxRetryDelayInMs, - secondaryHost: retryOptions.secondaryHost - ? retryOptions.secondaryHost - : DEFAULT_RETRY_OPTIONS.secondaryHost, - }; + +/** + * @see https://w3c.github.io/ServiceWorker/#dfn-request-response-list + * @typedef {[any, any][]} requestResponseList + */ + +class Cache { + /** + * @see https://w3c.github.io/ServiceWorker/#dfn-relevant-request-response-list + * @type {requestResponseList} + */ + #relevantRequestResponseList + + constructor () { + if (arguments[0] !== kConstruct) { + webidl.illegalConstructor() } - /** - * Sends request. - * - * @param request - - */ - async sendRequest(request) { - return this.attemptSendRequest(request, false, 1); + + webidl.util.markAsUncloneable(this) + this.#relevantRequestResponseList = arguments[1] + } + + async match (request, options = {}) { + webidl.brandCheck(this, Cache) + + const prefix = 'Cache.match' + webidl.argumentLengthCheck(arguments, 1, prefix) + + request = webidl.converters.RequestInfo(request, prefix, 'request') + options = webidl.converters.CacheQueryOptions(options, prefix, 'options') + + const p = this.#internalMatchAll(request, options, 1) + + if (p.length === 0) { + return } - /** - * Decide and perform next retry. Won't mutate request parameter. - * - * @param request - - * @param secondaryHas404 - If attempt was against the secondary & it returned a StatusNotFound (404), then - * the resource was not found. This may be due to replication delay. So, in this - * case, we'll never try the secondary again for this operation. - * @param attempt - How many retries has been attempted to performed, starting from 1, which includes - * the attempt will be performed by this method call. - */ - async attemptSendRequest(request, secondaryHas404, attempt) { - const newRequest = request.clone(); - const isPrimaryRetry = secondaryHas404 || - !this.retryOptions.secondaryHost || - !(request.method === "GET" || request.method === "HEAD" || request.method === "OPTIONS") || - attempt % 2 === 1; - if (!isPrimaryRetry) { - newRequest.url = setURLHost(newRequest.url, this.retryOptions.secondaryHost); - } - // Set the server-side timeout query parameter "timeout=[seconds]" - if (this.retryOptions.tryTimeoutInMs) { - newRequest.url = setURLParameter(newRequest.url, URLConstants.Parameters.TIMEOUT, Math.floor(this.retryOptions.tryTimeoutInMs / 1000).toString()); - } - let response; - try { - logger.info(`RetryPolicy: =====> Try=${attempt} ${isPrimaryRetry ? "Primary" : "Secondary"}`); - response = await this._nextPolicy.sendRequest(newRequest); - if (!this.shouldRetry(isPrimaryRetry, attempt, response)) { - return response; - } - secondaryHas404 = secondaryHas404 || (!isPrimaryRetry && response.status === 404); - } - catch (err) { - logger.error(`RetryPolicy: Caught error, message: ${err.message}, code: ${err.code}`); - if (!this.shouldRetry(isPrimaryRetry, attempt, response, err)) { - throw err; - } - } - await this.delay(isPrimaryRetry, attempt, request.abortSignal); - return this.attemptSendRequest(request, secondaryHas404, ++attempt); + + return p[0] + } + + async matchAll (request = undefined, options = {}) { + webidl.brandCheck(this, Cache) + + const prefix = 'Cache.matchAll' + if (request !== undefined) request = webidl.converters.RequestInfo(request, prefix, 'request') + options = webidl.converters.CacheQueryOptions(options, prefix, 'options') + + return this.#internalMatchAll(request, options) + } + + async add (request) { + webidl.brandCheck(this, Cache) + + const prefix = 'Cache.add' + webidl.argumentLengthCheck(arguments, 1, prefix) + + request = webidl.converters.RequestInfo(request, prefix, 'request') + + // 1. + const requests = [request] + + // 2. + const responseArrayPromise = this.addAll(requests) + + // 3. + return await responseArrayPromise + } + + async addAll (requests) { + webidl.brandCheck(this, Cache) + + const prefix = 'Cache.addAll' + webidl.argumentLengthCheck(arguments, 1, prefix) + + // 1. + const responsePromises = [] + + // 2. + const requestList = [] + + // 3. + for (let request of requests) { + if (request === undefined) { + throw webidl.errors.conversionFailed({ + prefix, + argument: 'Argument 1', + types: ['undefined is not allowed'] + }) + } + + request = webidl.converters.RequestInfo(request) + + if (typeof request === 'string') { + continue + } + + // 3.1 + const r = request[kState] + + // 3.2 + if (!urlIsHttpHttpsScheme(r.url) || r.method !== 'GET') { + throw webidl.errors.exception({ + header: prefix, + message: 'Expected http/s scheme when method is not GET.' + }) + } } - /** - * Decide whether to retry according to last HTTP response and retry counters. - * - * @param isPrimaryRetry - - * @param attempt - - * @param response - - * @param err - - */ - shouldRetry(isPrimaryRetry, attempt, response, err) { - if (attempt >= this.retryOptions.maxTries) { - logger.info(`RetryPolicy: Attempt(s) ${attempt} >= maxTries ${this.retryOptions - .maxTries}, no further try.`); - return false; - } - // Handle network failures, you may need to customize the list when you implement - // your own http client - const retriableErrors = [ - "ETIMEDOUT", - "ESOCKETTIMEDOUT", - "ECONNREFUSED", - "ECONNRESET", - "ENOENT", - "ENOTFOUND", - "TIMEOUT", - "EPIPE", - "REQUEST_SEND_ERROR", // For default xhr based http client provided in ms-rest-js - ]; - if (err) { - for (const retriableError of retriableErrors) { - if (err.name.toUpperCase().includes(retriableError) || - err.message.toUpperCase().includes(retriableError) || - (err.code && err.code.toString().toUpperCase() === retriableError)) { - logger.info(`RetryPolicy: Network error ${retriableError} found, will retry.`); - return true; - } - } - } - // If attempt was against the secondary & it returned a StatusNotFound (404), then - // the resource was not found. This may be due to replication delay. So, in this - // case, we'll never try the secondary again for this operation. - if (response || err) { - const statusCode = response ? response.status : err ? err.statusCode : 0; - if (!isPrimaryRetry && statusCode === 404) { - logger.info(`RetryPolicy: Secondary access with 404, will retry.`); - return true; - } - // Server internal error or server timeout - if (statusCode === 503 || statusCode === 500) { - logger.info(`RetryPolicy: Will retry for status code ${statusCode}.`); - return true; + + // 4. + /** @type {ReturnType[]} */ + const fetchControllers = [] + + // 5. + for (const request of requests) { + // 5.1 + const r = new Request(request)[kState] + + // 5.2 + if (!urlIsHttpHttpsScheme(r.url)) { + throw webidl.errors.exception({ + header: prefix, + message: 'Expected http/s scheme.' + }) + } + + // 5.4 + r.initiator = 'fetch' + r.destination = 'subresource' + + // 5.5 + requestList.push(r) + + // 5.6 + const responsePromise = createDeferredPromise() + + // 5.7 + fetchControllers.push(fetching({ + request: r, + processResponse (response) { + // 1. + if (response.type === 'error' || response.status === 206 || response.status < 200 || response.status > 299) { + responsePromise.reject(webidl.errors.exception({ + header: 'Cache.addAll', + message: 'Received an invalid status code or the request failed.' + })) + } else if (response.headersList.contains('vary')) { // 2. + // 2.1 + const fieldValues = getFieldValues(response.headersList.get('vary')) + + // 2.2 + for (const fieldValue of fieldValues) { + // 2.2.1 + if (fieldValue === '*') { + responsePromise.reject(webidl.errors.exception({ + header: 'Cache.addAll', + message: 'invalid vary field value' + })) + + for (const controller of fetchControllers) { + controller.abort() + } + + return + } } + } + }, + processResponseEndOfBody (response) { + // 1. + if (response.aborted) { + responsePromise.reject(new DOMException('aborted', 'AbortError')) + return + } + + // 2. + responsePromise.resolve(response) } - if ((err === null || err === void 0 ? void 0 : err.code) === "PARSE_ERROR" && (err === null || err === void 0 ? void 0 : err.message.startsWith(`Error "Error: Unclosed root tag`))) { - logger.info("RetryPolicy: Incomplete XML response likely due to service timeout, will retry."); - return true; - } - return false; + })) + + // 5.8 + responsePromises.push(responsePromise.promise) } - /** - * Delay a calculated time between retries. - * - * @param isPrimaryRetry - - * @param attempt - - * @param abortSignal - - */ - async delay(isPrimaryRetry, attempt, abortSignal) { - let delayTimeInMs = 0; - if (isPrimaryRetry) { - switch (this.retryOptions.retryPolicyType) { - case exports.StorageRetryPolicyType.EXPONENTIAL: - delayTimeInMs = Math.min((Math.pow(2, attempt - 1) - 1) * this.retryOptions.retryDelayInMs, this.retryOptions.maxRetryDelayInMs); - break; - case exports.StorageRetryPolicyType.FIXED: - delayTimeInMs = this.retryOptions.retryDelayInMs; - break; - } - } - else { - delayTimeInMs = Math.random() * 1000; - } - logger.info(`RetryPolicy: Delay for ${delayTimeInMs}ms`); - return delay(delayTimeInMs, abortSignal, RETRY_ABORT_ERROR); + + // 6. + const p = Promise.all(responsePromises) + + // 7. + const responses = await p + + // 7.1 + const operations = [] + + // 7.2 + let index = 0 + + // 7.3 + for (const response of responses) { + // 7.3.1 + /** @type {CacheBatchOperation} */ + const operation = { + type: 'put', // 7.3.2 + request: requestList[index], // 7.3.3 + response // 7.3.4 + } + + operations.push(operation) // 7.3.5 + + index++ // 7.3.6 } -} -// Copyright (c) Microsoft Corporation. -/** - * StorageRetryPolicyFactory is a factory class helping generating {@link StorageRetryPolicy} objects. - */ -class StorageRetryPolicyFactory { - /** - * Creates an instance of StorageRetryPolicyFactory. - * @param retryOptions - - */ - constructor(retryOptions) { - this.retryOptions = retryOptions; + // 7.5 + const cacheJobPromise = createDeferredPromise() + + // 7.6.1 + let errorData = null + + // 7.6.2 + try { + this.#batchCacheOperations(operations) + } catch (e) { + errorData = e } - /** - * Creates a StorageRetryPolicy object. - * - * @param nextPolicy - - * @param options - - */ - create(nextPolicy, options) { - return new StorageRetryPolicy(nextPolicy, options, this.retryOptions); + + // 7.6.3 + queueMicrotask(() => { + // 7.6.3.1 + if (errorData === null) { + cacheJobPromise.resolve(undefined) + } else { + // 7.6.3.2 + cacheJobPromise.reject(errorData) + } + }) + + // 7.7 + return cacheJobPromise.promise + } + + async put (request, response) { + webidl.brandCheck(this, Cache) + + const prefix = 'Cache.put' + webidl.argumentLengthCheck(arguments, 2, prefix) + + request = webidl.converters.RequestInfo(request, prefix, 'request') + response = webidl.converters.Response(response, prefix, 'response') + + // 1. + let innerRequest = null + + // 2. + if (request instanceof Request) { + innerRequest = request[kState] + } else { // 3. + innerRequest = new Request(request)[kState] } -} -// Copyright (c) Microsoft Corporation. -/** - * Credential policy used to sign HTTP(S) requests before sending. This is an - * abstract class. - */ -class CredentialPolicy extends coreHttp.BaseRequestPolicy { - /** - * Sends out request. - * - * @param request - - */ - sendRequest(request) { - return this._nextPolicy.sendRequest(this.signRequest(request)); + // 4. + if (!urlIsHttpHttpsScheme(innerRequest.url) || innerRequest.method !== 'GET') { + throw webidl.errors.exception({ + header: prefix, + message: 'Expected an http/s scheme when method is not GET' + }) } - /** - * Child classes must implement this method with request signing. This method - * will be executed in {@link sendRequest}. - * - * @param request - - */ - signRequest(request) { - // Child classes must override this method with request signing. This method - // will be executed in sendRequest(). - return request; + + // 5. + const innerResponse = response[kState] + + // 6. + if (innerResponse.status === 206) { + throw webidl.errors.exception({ + header: prefix, + message: 'Got 206 status' + }) } -} -// Copyright (c) Microsoft Corporation. -/** - * AnonymousCredentialPolicy is used with HTTP(S) requests that read public resources - * or for use with Shared Access Signatures (SAS). - */ -class AnonymousCredentialPolicy extends CredentialPolicy { - /** - * Creates an instance of AnonymousCredentialPolicy. - * @param nextPolicy - - * @param options - - */ - // The base class has a protected constructor. Adding a public one to enable constructing of this class. - /* eslint-disable-next-line @typescript-eslint/no-useless-constructor*/ - constructor(nextPolicy, options) { - super(nextPolicy, options); + // 7. + if (innerResponse.headersList.contains('vary')) { + // 7.1. + const fieldValues = getFieldValues(innerResponse.headersList.get('vary')) + + // 7.2. + for (const fieldValue of fieldValues) { + // 7.2.1 + if (fieldValue === '*') { + throw webidl.errors.exception({ + header: prefix, + message: 'Got * vary field value' + }) + } + } } -} -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -/** - * Credential is an abstract class for Azure Storage HTTP requests signing. This - * class will host an credentialPolicyCreator factory which generates CredentialPolicy. - */ -class Credential { - /** - * Creates a RequestPolicy object. - * - * @param _nextPolicy - - * @param _options - - */ - create(_nextPolicy, _options) { - throw new Error("Method should be implemented in children classes."); + // 8. + if (innerResponse.body && (isDisturbed(innerResponse.body.stream) || innerResponse.body.stream.locked)) { + throw webidl.errors.exception({ + header: prefix, + message: 'Response body is locked or disturbed' + }) } -} -// Copyright (c) Microsoft Corporation. -/** - * AnonymousCredential provides a credentialPolicyCreator member used to create - * AnonymousCredentialPolicy objects. AnonymousCredentialPolicy is used with - * HTTP(S) requests that read public resources or for use with Shared Access - * Signatures (SAS). - */ -class AnonymousCredential extends Credential { - /** - * Creates an {@link AnonymousCredentialPolicy} object. - * - * @param nextPolicy - - * @param options - - */ - create(nextPolicy, options) { - return new AnonymousCredentialPolicy(nextPolicy, options); + // 9. + const clonedResponse = cloneResponse(innerResponse) + + // 10. + const bodyReadPromise = createDeferredPromise() + + // 11. + if (innerResponse.body != null) { + // 11.1 + const stream = innerResponse.body.stream + + // 11.2 + const reader = stream.getReader() + + // 11.3 + readAllBytes(reader).then(bodyReadPromise.resolve, bodyReadPromise.reject) + } else { + bodyReadPromise.resolve(undefined) } -} -// Copyright (c) Microsoft Corporation. -/** - * TelemetryPolicy is a policy used to tag user-agent header for every requests. - */ -class TelemetryPolicy extends coreHttp.BaseRequestPolicy { - /** - * Creates an instance of TelemetryPolicy. - * @param nextPolicy - - * @param options - - * @param telemetry - - */ - constructor(nextPolicy, options, telemetry) { - super(nextPolicy, options); - this.telemetry = telemetry; + // 12. + /** @type {CacheBatchOperation[]} */ + const operations = [] + + // 13. + /** @type {CacheBatchOperation} */ + const operation = { + type: 'put', // 14. + request: innerRequest, // 15. + response: clonedResponse // 16. } - /** - * Sends out request. - * - * @param request - - */ - async sendRequest(request) { - if (coreHttp.isNode) { - if (!request.headers) { - request.headers = new coreHttp.HttpHeaders(); - } - if (!request.headers.get(HeaderConstants.USER_AGENT)) { - request.headers.set(HeaderConstants.USER_AGENT, this.telemetry); - } - } - return this._nextPolicy.sendRequest(request); + + // 17. + operations.push(operation) + + // 19. + const bytes = await bodyReadPromise.promise + + if (clonedResponse.body != null) { + clonedResponse.body.source = bytes } -} -// Copyright (c) Microsoft Corporation. -/** - * TelemetryPolicyFactory is a factory class helping generating {@link TelemetryPolicy} objects. - */ -class TelemetryPolicyFactory { + // 19.1 + const cacheJobPromise = createDeferredPromise() + + // 19.2.1 + let errorData = null + + // 19.2.2 + try { + this.#batchCacheOperations(operations) + } catch (e) { + errorData = e + } + + // 19.2.3 + queueMicrotask(() => { + // 19.2.3.1 + if (errorData === null) { + cacheJobPromise.resolve() + } else { // 19.2.3.2 + cacheJobPromise.reject(errorData) + } + }) + + return cacheJobPromise.promise + } + + async delete (request, options = {}) { + webidl.brandCheck(this, Cache) + + const prefix = 'Cache.delete' + webidl.argumentLengthCheck(arguments, 1, prefix) + + request = webidl.converters.RequestInfo(request, prefix, 'request') + options = webidl.converters.CacheQueryOptions(options, prefix, 'options') + /** - * Creates an instance of TelemetryPolicyFactory. - * @param telemetry - + * @type {Request} */ - constructor(telemetry) { - const userAgentInfo = []; - if (coreHttp.isNode) { - if (telemetry) { - const telemetryString = telemetry.userAgentPrefix || ""; - if (telemetryString.length > 0 && userAgentInfo.indexOf(telemetryString) === -1) { - userAgentInfo.push(telemetryString); - } - } - // e.g. azsdk-js-storageblob/10.0.0 - const libInfo = `azsdk-js-storageblob/${SDK_VERSION}`; - if (userAgentInfo.indexOf(libInfo) === -1) { - userAgentInfo.push(libInfo); - } - // e.g. (NODE-VERSION 4.9.1; Windows_NT 10.0.16299) - const runtimeInfo = `(NODE-VERSION ${process.version}; ${os__namespace.type()} ${os__namespace.release()})`; - if (userAgentInfo.indexOf(runtimeInfo) === -1) { - userAgentInfo.push(runtimeInfo); - } - } - this.telemetryString = userAgentInfo.join(" "); + let r = null + + if (request instanceof Request) { + r = request[kState] + + if (r.method !== 'GET' && !options.ignoreMethod) { + return false + } + } else { + assert(typeof request === 'string') + + r = new Request(request)[kState] } - /** - * Creates a TelemetryPolicy object. - * - * @param nextPolicy - - * @param options - - */ - create(nextPolicy, options) { - return new TelemetryPolicy(nextPolicy, options, this.telemetryString); + + /** @type {CacheBatchOperation[]} */ + const operations = [] + + /** @type {CacheBatchOperation} */ + const operation = { + type: 'delete', + request: r, + options } -} -// Copyright (c) Microsoft Corporation. -const _defaultHttpClient = new coreHttp.DefaultHttpClient(); -function getCachedDefaultHttpClient() { - return _defaultHttpClient; -} + operations.push(operation) -// Copyright (c) Microsoft Corporation. -/** - * A set of constants used internally when processing requests. - */ -const Constants = { - DefaultScope: "/.default", - /** - * Defines constants for use with HTTP headers. - */ - HeaderConstants: { - /** - * The Authorization header. - */ - AUTHORIZATION: "authorization", - }, -}; -// Default options for the cycler if none are provided -const DEFAULT_CYCLER_OPTIONS = { - forcedRefreshWindowInMs: 1000, - retryIntervalInMs: 3000, - refreshWindowInMs: 1000 * 60 * 2, // Start refreshing 2m before expiry -}; -/** - * Converts an an unreliable access token getter (which may resolve with null) - * into an AccessTokenGetter by retrying the unreliable getter in a regular - * interval. - * - * @param getAccessToken - a function that produces a promise of an access - * token that may fail by returning null - * @param retryIntervalInMs - the time (in milliseconds) to wait between retry - * attempts - * @param timeoutInMs - the timestamp after which the refresh attempt will fail, - * throwing an exception - * @returns - a promise that, if it resolves, will resolve with an access token - */ -async function beginRefresh(getAccessToken, retryIntervalInMs, timeoutInMs) { - // This wrapper handles exceptions gracefully as long as we haven't exceeded - // the timeout. - async function tryGetAccessToken() { - if (Date.now() < timeoutInMs) { - try { - return await getAccessToken(); - } - catch (_a) { - return null; - } - } - else { - const finalToken = await getAccessToken(); - // Timeout is up, so throw if it's still null - if (finalToken === null) { - throw new Error("Failed to refresh access token."); - } - return finalToken; + const cacheJobPromise = createDeferredPromise() + + let errorData = null + let requestResponses + + try { + requestResponses = this.#batchCacheOperations(operations) + } catch (e) { + errorData = e + } + + queueMicrotask(() => { + if (errorData === null) { + cacheJobPromise.resolve(!!requestResponses?.length) + } else { + cacheJobPromise.reject(errorData) + } + }) + + return cacheJobPromise.promise + } + + /** + * @see https://w3c.github.io/ServiceWorker/#dom-cache-keys + * @param {any} request + * @param {import('../../types/cache').CacheQueryOptions} options + * @returns {Promise} + */ + async keys (request = undefined, options = {}) { + webidl.brandCheck(this, Cache) + + const prefix = 'Cache.keys' + + if (request !== undefined) request = webidl.converters.RequestInfo(request, prefix, 'request') + options = webidl.converters.CacheQueryOptions(options, prefix, 'options') + + // 1. + let r = null + + // 2. + if (request !== undefined) { + // 2.1 + if (request instanceof Request) { + // 2.1.1 + r = request[kState] + + // 2.1.2 + if (r.method !== 'GET' && !options.ignoreMethod) { + return [] } + } else if (typeof request === 'string') { // 2.2 + r = new Request(request)[kState] + } } - let token = await tryGetAccessToken(); - while (token === null) { - await coreHttp.delay(retryIntervalInMs); - token = await tryGetAccessToken(); + + // 4. + const promise = createDeferredPromise() + + // 5. + // 5.1 + const requests = [] + + // 5.2 + if (request === undefined) { + // 5.2.1 + for (const requestResponse of this.#relevantRequestResponseList) { + // 5.2.1.1 + requests.push(requestResponse[0]) + } + } else { // 5.3 + // 5.3.1 + const requestResponses = this.#queryCache(r, options) + + // 5.3.2 + for (const requestResponse of requestResponses) { + // 5.3.2.1 + requests.push(requestResponse[0]) + } } - return token; -} -/** - * Creates a token cycler from a credential, scopes, and optional settings. - * - * A token cycler represents a way to reliably retrieve a valid access token - * from a TokenCredential. It will handle initializing the token, refreshing it - * when it nears expiration, and synchronizes refresh attempts to avoid - * concurrency hazards. - * - * @param credential - the underlying TokenCredential that provides the access - * token - * @param scopes - the scopes to request authorization for - * @param tokenCyclerOptions - optionally override default settings for the cycler - * - * @returns - a function that reliably produces a valid access token - */ -function createTokenCycler(credential, scopes, tokenCyclerOptions) { - let refreshWorker = null; - let token = null; - const options = Object.assign(Object.assign({}, DEFAULT_CYCLER_OPTIONS), tokenCyclerOptions); - /** - * This little holder defines several predicates that we use to construct - * the rules of refreshing the token. - */ - const cycler = { - /** - * Produces true if a refresh job is currently in progress. - */ - get isRefreshing() { - return refreshWorker !== null; - }, - /** - * Produces true if the cycler SHOULD refresh (we are within the refresh - * window and not already refreshing) - */ - get shouldRefresh() { - var _a; - return (!cycler.isRefreshing && - ((_a = token === null || token === void 0 ? void 0 : token.expiresOnTimestamp) !== null && _a !== void 0 ? _a : 0) - options.refreshWindowInMs < Date.now()); - }, - /** - * Produces true if the cycler MUST refresh (null or nearly-expired - * token). - */ - get mustRefresh() { - return (token === null || token.expiresOnTimestamp - options.forcedRefreshWindowInMs < Date.now()); - }, - }; - /** - * Starts a refresh job or returns the existing job if one is already - * running. - */ - function refresh(getTokenOptions) { - var _a; - if (!cycler.isRefreshing) { - // We bind `scopes` here to avoid passing it around a lot - const tryGetAccessToken = () => credential.getToken(scopes, getTokenOptions); - // Take advantage of promise chaining to insert an assignment to `token` - // before the refresh can be considered done. - refreshWorker = beginRefresh(tryGetAccessToken, options.retryIntervalInMs, - // If we don't have a token, then we should timeout immediately - (_a = token === null || token === void 0 ? void 0 : token.expiresOnTimestamp) !== null && _a !== void 0 ? _a : Date.now()) - .then((_token) => { - refreshWorker = null; - token = _token; - return token; + + // 5.4 + queueMicrotask(() => { + // 5.4.1 + const requestList = [] + + // 5.4.2 + for (const request of requests) { + const requestObject = fromInnerRequest( + request, + new AbortController().signal, + 'immutable' + ) + // 5.4.2.1 + requestList.push(requestObject) + } + + // 5.4.3 + promise.resolve(Object.freeze(requestList)) + }) + + return promise.promise + } + + /** + * @see https://w3c.github.io/ServiceWorker/#batch-cache-operations-algorithm + * @param {CacheBatchOperation[]} operations + * @returns {requestResponseList} + */ + #batchCacheOperations (operations) { + // 1. + const cache = this.#relevantRequestResponseList + + // 2. + const backupCache = [...cache] + + // 3. + const addedItems = [] + + // 4.1 + const resultList = [] + + try { + // 4.2 + for (const operation of operations) { + // 4.2.1 + if (operation.type !== 'delete' && operation.type !== 'put') { + throw webidl.errors.exception({ + header: 'Cache.#batchCacheOperations', + message: 'operation type does not match "delete" or "put"' + }) + } + + // 4.2.2 + if (operation.type === 'delete' && operation.response != null) { + throw webidl.errors.exception({ + header: 'Cache.#batchCacheOperations', + message: 'delete operation should not have an associated response' + }) + } + + // 4.2.3 + if (this.#queryCache(operation.request, operation.options, addedItems).length) { + throw new DOMException('???', 'InvalidStateError') + } + + // 4.2.4 + let requestResponses + + // 4.2.5 + if (operation.type === 'delete') { + // 4.2.5.1 + requestResponses = this.#queryCache(operation.request, operation.options) + + // TODO: the spec is wrong, this is needed to pass WPTs + if (requestResponses.length === 0) { + return [] + } + + // 4.2.5.2 + for (const requestResponse of requestResponses) { + const idx = cache.indexOf(requestResponse) + assert(idx !== -1) + + // 4.2.5.2.1 + cache.splice(idx, 1) + } + } else if (operation.type === 'put') { // 4.2.6 + // 4.2.6.1 + if (operation.response == null) { + throw webidl.errors.exception({ + header: 'Cache.#batchCacheOperations', + message: 'put operation should have an associated response' }) - .catch((reason) => { - // We also should reset the refresher if we enter a failed state. All - // existing awaiters will throw, but subsequent requests will start a - // new retry chain. - refreshWorker = null; - token = null; - throw reason; - }); + } + + // 4.2.6.2 + const r = operation.request + + // 4.2.6.3 + if (!urlIsHttpHttpsScheme(r.url)) { + throw webidl.errors.exception({ + header: 'Cache.#batchCacheOperations', + message: 'expected http or https scheme' + }) + } + + // 4.2.6.4 + if (r.method !== 'GET') { + throw webidl.errors.exception({ + header: 'Cache.#batchCacheOperations', + message: 'not get method' + }) + } + + // 4.2.6.5 + if (operation.options != null) { + throw webidl.errors.exception({ + header: 'Cache.#batchCacheOperations', + message: 'options must not be defined' + }) + } + + // 4.2.6.6 + requestResponses = this.#queryCache(operation.request) + + // 4.2.6.7 + for (const requestResponse of requestResponses) { + const idx = cache.indexOf(requestResponse) + assert(idx !== -1) + + // 4.2.6.7.1 + cache.splice(idx, 1) + } + + // 4.2.6.8 + cache.push([operation.request, operation.response]) + + // 4.2.6.10 + addedItems.push([operation.request, operation.response]) } - return refreshWorker; + + // 4.2.7 + resultList.push([operation.request, operation.response]) + } + + // 4.3 + return resultList + } catch (e) { // 5. + // 5.1 + this.#relevantRequestResponseList.length = 0 + + // 5.2 + this.#relevantRequestResponseList = backupCache + + // 5.3 + throw e } - return async (tokenOptions) => { - // - // Simple rules: - // - If we MUST refresh, then return the refresh task, blocking - // the pipeline until a token is available. - // - If we SHOULD refresh, then run refresh but don't return it - // (we can still use the cached token). - // - Return the token, since it's fine if we didn't return in - // step 1. - // - if (cycler.mustRefresh) - return refresh(tokenOptions); - if (cycler.shouldRefresh) { - refresh(tokenOptions); + } + + /** + * @see https://w3c.github.io/ServiceWorker/#query-cache + * @param {any} requestQuery + * @param {import('../../types/cache').CacheQueryOptions} options + * @param {requestResponseList} targetStorage + * @returns {requestResponseList} + */ + #queryCache (requestQuery, options, targetStorage) { + /** @type {requestResponseList} */ + const resultList = [] + + const storage = targetStorage ?? this.#relevantRequestResponseList + + for (const requestResponse of storage) { + const [cachedRequest, cachedResponse] = requestResponse + if (this.#requestMatchesCachedItem(requestQuery, cachedRequest, cachedResponse, options)) { + resultList.push(requestResponse) + } + } + + return resultList + } + + /** + * @see https://w3c.github.io/ServiceWorker/#request-matches-cached-item-algorithm + * @param {any} requestQuery + * @param {any} request + * @param {any | null} response + * @param {import('../../types/cache').CacheQueryOptions | undefined} options + * @returns {boolean} + */ + #requestMatchesCachedItem (requestQuery, request, response = null, options) { + // if (options?.ignoreMethod === false && request.method === 'GET') { + // return false + // } + + const queryURL = new URL(requestQuery.url) + + const cachedURL = new URL(request.url) + + if (options?.ignoreSearch) { + cachedURL.search = '' + + queryURL.search = '' + } + + if (!urlEquals(queryURL, cachedURL, true)) { + return false + } + + if ( + response == null || + options?.ignoreVary || + !response.headersList.contains('vary') + ) { + return true + } + + const fieldValues = getFieldValues(response.headersList.get('vary')) + + for (const fieldValue of fieldValues) { + if (fieldValue === '*') { + return false + } + + const requestValue = request.headersList.get(fieldValue) + const queryValue = requestQuery.headersList.get(fieldValue) + + // If one has the header and the other doesn't, or one has + // a different value than the other, return false + if (requestValue !== queryValue) { + return false + } + } + + return true + } + + #internalMatchAll (request, options, maxResponses = Infinity) { + // 1. + let r = null + + // 2. + if (request !== undefined) { + if (request instanceof Request) { + // 2.1.1 + r = request[kState] + + // 2.1.2 + if (r.method !== 'GET' && !options.ignoreMethod) { + return [] } - return token; - }; + } else if (typeof request === 'string') { + // 2.2.1 + r = new Request(request)[kState] + } + } + + // 5. + // 5.1 + const responses = [] + + // 5.2 + if (request === undefined) { + // 5.2.1 + for (const requestResponse of this.#relevantRequestResponseList) { + responses.push(requestResponse[1]) + } + } else { // 5.3 + // 5.3.1 + const requestResponses = this.#queryCache(r, options) + + // 5.3.2 + for (const requestResponse of requestResponses) { + responses.push(requestResponse[1]) + } + } + + // 5.4 + // We don't implement CORs so we don't need to loop over the responses, yay! + + // 5.5.1 + const responseList = [] + + // 5.5.2 + for (const response of responses) { + // 5.5.2.1 + const responseObject = fromInnerResponse(response, 'immutable') + + responseList.push(responseObject.clone()) + + if (responseList.length >= maxResponses) { + break + } + } + + // 6. + return Object.freeze(responseList) + } } -/** - * We will retrieve the challenge only if the response status code was 401, - * and if the response contained the header "WWW-Authenticate" with a non-empty value. - */ -function getChallenge(response) { - const challenge = response.headers.get("WWW-Authenticate"); - if (response.status === 401 && challenge) { - return challenge; + +Object.defineProperties(Cache.prototype, { + [Symbol.toStringTag]: { + value: 'Cache', + configurable: true + }, + match: kEnumerableProperty, + matchAll: kEnumerableProperty, + add: kEnumerableProperty, + addAll: kEnumerableProperty, + put: kEnumerableProperty, + delete: kEnumerableProperty, + keys: kEnumerableProperty +}) + +const cacheQueryOptionConverters = [ + { + key: 'ignoreSearch', + converter: webidl.converters.boolean, + defaultValue: () => false + }, + { + key: 'ignoreMethod', + converter: webidl.converters.boolean, + defaultValue: () => false + }, + { + key: 'ignoreVary', + converter: webidl.converters.boolean, + defaultValue: () => false + } +] + +webidl.converters.CacheQueryOptions = webidl.dictionaryConverter(cacheQueryOptionConverters) + +webidl.converters.MultiCacheQueryOptions = webidl.dictionaryConverter([ + ...cacheQueryOptionConverters, + { + key: 'cacheName', + converter: webidl.converters.DOMString + } +]) + +webidl.converters.Response = webidl.interfaceConverter(Response) + +webidl.converters['sequence'] = webidl.sequenceConverter( + webidl.converters.RequestInfo +) + +module.exports = { + Cache +} + + +/***/ }), + +/***/ 76847: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { kConstruct } = __nccwpck_require__(92562) +const { Cache } = __nccwpck_require__(31028) +const { webidl } = __nccwpck_require__(44890) +const { kEnumerableProperty } = __nccwpck_require__(83983) + +class CacheStorage { + /** + * @see https://w3c.github.io/ServiceWorker/#dfn-relevant-name-to-cache-map + * @type {Map} + */ + async has (cacheName) { + webidl.brandCheck(this, CacheStorage) + + const prefix = 'CacheStorage.has' + webidl.argumentLengthCheck(arguments, 1, prefix) + + cacheName = webidl.converters.DOMString(cacheName, prefix, 'cacheName') + + // 2.1.1 + // 2.2 + return this.#caches.has(cacheName) + } + + /** + * @see https://w3c.github.io/ServiceWorker/#dom-cachestorage-open + * @param {string} cacheName + * @returns {Promise} + */ + async open (cacheName) { + webidl.brandCheck(this, CacheStorage) + + const prefix = 'CacheStorage.open' + webidl.argumentLengthCheck(arguments, 1, prefix) + + cacheName = webidl.converters.DOMString(cacheName, prefix, 'cacheName') + + // 2.1 + if (this.#caches.has(cacheName)) { + // await caches.open('v1') !== await caches.open('v1') + + // 2.1.1 + const cache = this.#caches.get(cacheName) + + // 2.1.1.1 + return new Cache(kConstruct, cache) + } + + // 2.2 + const cache = [] + + // 2.3 + this.#caches.set(cacheName, cache) + + // 2.4 + return new Cache(kConstruct, cache) + } + + /** + * @see https://w3c.github.io/ServiceWorker/#cache-storage-delete + * @param {string} cacheName + * @returns {Promise} + */ + async delete (cacheName) { + webidl.brandCheck(this, CacheStorage) + + const prefix = 'CacheStorage.delete' + webidl.argumentLengthCheck(arguments, 1, prefix) + + cacheName = webidl.converters.DOMString(cacheName, prefix, 'cacheName') + + return this.#caches.delete(cacheName) + } + + /** + * @see https://w3c.github.io/ServiceWorker/#cache-storage-keys + * @returns {Promise} + */ + async keys () { + webidl.brandCheck(this, CacheStorage) + + // 2.1 + const keys = this.#caches.keys() + + // 2.2 + return [...keys] + } +} + +Object.defineProperties(CacheStorage.prototype, { + [Symbol.toStringTag]: { + value: 'CacheStorage', + configurable: true + }, + match: kEnumerableProperty, + has: kEnumerableProperty, + open: kEnumerableProperty, + delete: kEnumerableProperty, + keys: kEnumerableProperty +}) + +module.exports = { + CacheStorage +} + + +/***/ }), + +/***/ 92562: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +module.exports = { + kConstruct: (__nccwpck_require__(72785).kConstruct) } + + +/***/ }), + +/***/ 38531: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const assert = __nccwpck_require__(98061) +const { URLSerializer } = __nccwpck_require__(17704) +const { isValidHeaderName } = __nccwpck_require__(1310) + /** - * Converts: `Bearer a="b" c="d"`. - * Into: `[ { a: 'b', c: 'd' }]`. - * - * @internal + * @see https://url.spec.whatwg.org/#concept-url-equals + * @param {URL} A + * @param {URL} B + * @param {boolean | undefined} excludeFragment + * @returns {boolean} */ -function parseChallenge(challenge) { - const bearerChallenge = challenge.slice("Bearer ".length); - const challengeParts = `${bearerChallenge.trim()} `.split(" ").filter((x) => x); - const keyValuePairs = challengeParts.map((keyValue) => (([key, value]) => ({ [key]: value }))(keyValue.trim().split("="))); - // Key-value pairs to plain object: - return keyValuePairs.reduce((a, b) => (Object.assign(Object.assign({}, a), b)), {}); +function urlEquals (A, B, excludeFragment = false) { + const serializedA = URLSerializer(A, excludeFragment) + + const serializedB = URLSerializer(B, excludeFragment) + + return serializedA === serializedB } -// #endregion + /** - * Creates a new factory for a RequestPolicy that applies a bearer token to - * the requests' `Authorization` headers. - * - * @param credential - The TokenCredential implementation that can supply the bearer token. - * @param scopes - The scopes for which the bearer token applies. - */ -function storageBearerTokenChallengeAuthenticationPolicy(credential, scopes) { - // This simple function encapsulates the entire process of reliably retrieving the token - let getToken = createTokenCycler(credential, scopes); - class StorageBearerTokenChallengeAuthenticationPolicy extends coreHttp.BaseRequestPolicy { - constructor(nextPolicy, options) { - super(nextPolicy, options); - } - async sendRequest(webResource) { - if (!webResource.url.toLowerCase().startsWith("https://")) { - throw new Error("Bearer token authentication is not permitted for non-TLS protected (non-https) URLs."); - } - const getTokenInternal = getToken; - const token = (await getTokenInternal({ - abortSignal: webResource.abortSignal, - tracingOptions: { - tracingContext: webResource.tracingContext, - }, - })).token; - webResource.headers.set(Constants.HeaderConstants.AUTHORIZATION, `Bearer ${token}`); - const response = await this._nextPolicy.sendRequest(webResource); - if ((response === null || response === void 0 ? void 0 : response.status) === 401) { - const challenge = getChallenge(response); - if (challenge) { - const challengeInfo = parseChallenge(challenge); - const challengeScopes = challengeInfo.resource_id + Constants.DefaultScope; - const parsedAuthUri = coreHttp.URLBuilder.parse(challengeInfo.authorization_uri); - const pathSegments = parsedAuthUri.getPath().split("/"); - const tenantId = pathSegments[1]; - const getTokenForChallenge = createTokenCycler(credential, challengeScopes); - const tokenForChallenge = (await getTokenForChallenge({ - abortSignal: webResource.abortSignal, - tracingOptions: { - tracingContext: webResource.tracingContext, - }, - tenantId: tenantId, - })).token; - getToken = getTokenForChallenge; - webResource.headers.set(Constants.HeaderConstants.AUTHORIZATION, `Bearer ${tokenForChallenge}`); - return this._nextPolicy.sendRequest(webResource); - } - } - return response; - } + * @see https://github.com/chromium/chromium/blob/694d20d134cb553d8d89e5500b9148012b1ba299/content/browser/cache_storage/cache_storage_cache.cc#L260-L262 + * @param {string} header + */ +function getFieldValues (header) { + assert(header !== null) + + const values = [] + + for (let value of header.split(',')) { + value = value.trim() + + if (isValidHeaderName(value)) { + values.push(value) } - return { - create: (nextPolicy, options) => { - return new StorageBearerTokenChallengeAuthenticationPolicy(nextPolicy, options); - }, - }; + } + + return values } -// Copyright (c) Microsoft Corporation. +module.exports = { + urlEquals, + getFieldValues +} + + +/***/ }), + +/***/ 7762: +/***/ ((module) => { + +"use strict"; + + +// https://wicg.github.io/cookie-store/#cookie-maximum-attribute-value-size +const maxAttributeValueSize = 1024 + +// https://wicg.github.io/cookie-store/#cookie-maximum-name-value-pair-size +const maxNameValuePairSize = 4096 + +module.exports = { + maxAttributeValueSize, + maxNameValuePairSize +} + + +/***/ }), + +/***/ 42193: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { parseSetCookie } = __nccwpck_require__(13903) +const { stringify } = __nccwpck_require__(54806) +const { webidl } = __nccwpck_require__(44890) +const { Headers } = __nccwpck_require__(52991) + /** - * A helper to decide if a given argument satisfies the Pipeline contract - * @param pipeline - An argument that may be a Pipeline - * @returns true when the argument satisfies the Pipeline contract + * @typedef {Object} Cookie + * @property {string} name + * @property {string} value + * @property {Date|number|undefined} expires + * @property {number|undefined} maxAge + * @property {string|undefined} domain + * @property {string|undefined} path + * @property {boolean|undefined} secure + * @property {boolean|undefined} httpOnly + * @property {'Strict'|'Lax'|'None'} sameSite + * @property {string[]} unparsed */ -function isPipelineLike(pipeline) { - if (!pipeline || typeof pipeline !== "object") { - return false; - } - const castPipeline = pipeline; - return (Array.isArray(castPipeline.factories) && - typeof castPipeline.options === "object" && - typeof castPipeline.toServiceClientOptions === "function"); + +/** + * @param {Headers} headers + * @returns {Record} + */ +function getCookies (headers) { + webidl.argumentLengthCheck(arguments, 1, 'getCookies') + + webidl.brandCheck(headers, Headers, { strict: false }) + + const cookie = headers.get('cookie') + const out = {} + + if (!cookie) { + return out + } + + for (const piece of cookie.split(';')) { + const [name, ...value] = piece.split('=') + + out[name.trim()] = value.join('=') + } + + return out } + /** - * A Pipeline class containing HTTP request policies. - * You can create a default Pipeline by calling {@link newPipeline}. - * Or you can create a Pipeline with your own policies by the constructor of Pipeline. - * - * Refer to {@link newPipeline} and provided policies before implementing your - * customized Pipeline. + * @param {Headers} headers + * @param {string} name + * @param {{ path?: string, domain?: string }|undefined} attributes + * @returns {void} */ -class Pipeline { - /** - * Creates an instance of Pipeline. Customize HTTPClient by implementing IHttpClient interface. - * - * @param factories - - * @param options - - */ - constructor(factories, options = {}) { - this.factories = factories; - // when options.httpClient is not specified, passing in a DefaultHttpClient instance to - // avoid each client creating its own http client. - this.options = Object.assign(Object.assign({}, options), { httpClient: options.httpClient || getCachedDefaultHttpClient() }); - } - /** - * Transfer Pipeline object to ServiceClientOptions object which is required by - * ServiceClient constructor. - * - * @returns The ServiceClientOptions object from this Pipeline. - */ - toServiceClientOptions() { - return { - httpClient: this.options.httpClient, - requestPolicyFactories: this.factories, - }; - } +function deleteCookie (headers, name, attributes) { + webidl.brandCheck(headers, Headers, { strict: false }) + + const prefix = 'deleteCookie' + webidl.argumentLengthCheck(arguments, 2, prefix) + + name = webidl.converters.DOMString(name, prefix, 'name') + attributes = webidl.converters.DeleteCookieAttributes(attributes) + + // Matches behavior of + // https://github.com/denoland/deno_std/blob/63827b16330b82489a04614027c33b7904e08be5/http/cookie.ts#L278 + setCookie(headers, { + name, + value: '', + expires: new Date(0), + ...attributes + }) } + /** - * Creates a new Pipeline object with Credential provided. - * - * @param credential - Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the `@azure/identity` package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used. - * @param pipelineOptions - Optional. Options. - * @returns A new Pipeline object. + * @param {Headers} headers + * @returns {Cookie[]} */ -function newPipeline(credential, pipelineOptions = {}) { - var _a; - if (credential === undefined) { - credential = new AnonymousCredential(); - } - // Order is important. Closer to the API at the top & closer to the network at the bottom. - // The credential's policy factory must appear close to the wire so it can sign any - // changes made by other factories (like UniqueRequestIDPolicyFactory) - const telemetryPolicy = new TelemetryPolicyFactory(pipelineOptions.userAgentOptions); - const factories = [ - coreHttp.tracingPolicy({ userAgent: telemetryPolicy.telemetryString }), - coreHttp.keepAlivePolicy(pipelineOptions.keepAliveOptions), - telemetryPolicy, - coreHttp.generateClientRequestIdPolicy(), - new StorageBrowserPolicyFactory(), - new StorageRetryPolicyFactory(pipelineOptions.retryOptions), - // Default deserializationPolicy is provided by protocol layer - // Use customized XML char key of "#" so we could deserialize metadata - // with "_" key - coreHttp.deserializationPolicy(undefined, { xmlCharKey: "#" }), - coreHttp.logPolicy({ - logger: logger.info, - allowedHeaderNames: StorageBlobLoggingAllowedHeaderNames, - allowedQueryParameters: StorageBlobLoggingAllowedQueryParameters, - }), - ]; - if (coreHttp.isNode) { - // policies only available in Node.js runtime, not in browsers - factories.push(coreHttp.proxyPolicy(pipelineOptions.proxyOptions)); - factories.push(coreHttp.disableResponseDecompressionPolicy()); - } - factories.push(coreHttp.isTokenCredential(credential) - ? attachCredential(storageBearerTokenChallengeAuthenticationPolicy(credential, (_a = pipelineOptions.audience) !== null && _a !== void 0 ? _a : StorageOAuthScopes), credential) - : credential); - return new Pipeline(factories, pipelineOptions); +function getSetCookies (headers) { + webidl.argumentLengthCheck(arguments, 1, 'getSetCookies') + + webidl.brandCheck(headers, Headers, { strict: false }) + + const cookies = headers.getSetCookie() + + if (!cookies) { + return [] + } + + return cookies.map((pair) => parseSetCookie(pair)) } -// Copyright (c) Microsoft Corporation. /** - * StorageSharedKeyCredentialPolicy is a policy used to sign HTTP request with a shared key. + * @param {Headers} headers + * @param {Cookie} cookie + * @returns {void} */ -class StorageSharedKeyCredentialPolicy extends CredentialPolicy { - /** - * Creates an instance of StorageSharedKeyCredentialPolicy. - * @param nextPolicy - - * @param options - - * @param factory - - */ - constructor(nextPolicy, options, factory) { - super(nextPolicy, options); - this.factory = factory; - } - /** - * Signs request. - * - * @param request - - */ - signRequest(request) { - request.headers.set(HeaderConstants.X_MS_DATE, new Date().toUTCString()); - if (request.body && - (typeof request.body === "string" || request.body !== undefined) && - request.body.length > 0) { - request.headers.set(HeaderConstants.CONTENT_LENGTH, Buffer.byteLength(request.body)); - } - const stringToSign = [ - request.method.toUpperCase(), - this.getHeaderValueToSign(request, HeaderConstants.CONTENT_LANGUAGE), - this.getHeaderValueToSign(request, HeaderConstants.CONTENT_ENCODING), - this.getHeaderValueToSign(request, HeaderConstants.CONTENT_LENGTH), - this.getHeaderValueToSign(request, HeaderConstants.CONTENT_MD5), - this.getHeaderValueToSign(request, HeaderConstants.CONTENT_TYPE), - this.getHeaderValueToSign(request, HeaderConstants.DATE), - this.getHeaderValueToSign(request, HeaderConstants.IF_MODIFIED_SINCE), - this.getHeaderValueToSign(request, HeaderConstants.IF_MATCH), - this.getHeaderValueToSign(request, HeaderConstants.IF_NONE_MATCH), - this.getHeaderValueToSign(request, HeaderConstants.IF_UNMODIFIED_SINCE), - this.getHeaderValueToSign(request, HeaderConstants.RANGE), - ].join("\n") + - "\n" + - this.getCanonicalizedHeadersString(request) + - this.getCanonicalizedResourceString(request); - const signature = this.factory.computeHMACSHA256(stringToSign); - request.headers.set(HeaderConstants.AUTHORIZATION, `SharedKey ${this.factory.accountName}:${signature}`); - // console.log(`[URL]:${request.url}`); - // console.log(`[HEADERS]:${request.headers.toString()}`); - // console.log(`[STRING TO SIGN]:${JSON.stringify(stringToSign)}`); - // console.log(`[KEY]: ${request.headers.get(HeaderConstants.AUTHORIZATION)}`); - return request; - } - /** - * Retrieve header value according to shared key sign rules. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/authenticate-with-shared-key - * - * @param request - - * @param headerName - - */ - getHeaderValueToSign(request, headerName) { - const value = request.headers.get(headerName); - if (!value) { - return ""; - } - // When using version 2015-02-21 or later, if Content-Length is zero, then - // set the Content-Length part of the StringToSign to an empty string. - // https://docs.microsoft.com/en-us/rest/api/storageservices/authenticate-with-shared-key - if (headerName === HeaderConstants.CONTENT_LENGTH && value === "0") { - return ""; - } - return value; +function setCookie (headers, cookie) { + webidl.argumentLengthCheck(arguments, 2, 'setCookie') + + webidl.brandCheck(headers, Headers, { strict: false }) + + cookie = webidl.converters.Cookie(cookie) + + const str = stringify(cookie) + + if (str) { + headers.append('Set-Cookie', str) + } +} + +webidl.converters.DeleteCookieAttributes = webidl.dictionaryConverter([ + { + converter: webidl.nullableConverter(webidl.converters.DOMString), + key: 'path', + defaultValue: () => null + }, + { + converter: webidl.nullableConverter(webidl.converters.DOMString), + key: 'domain', + defaultValue: () => null + } +]) + +webidl.converters.Cookie = webidl.dictionaryConverter([ + { + converter: webidl.converters.DOMString, + key: 'name' + }, + { + converter: webidl.converters.DOMString, + key: 'value' + }, + { + converter: webidl.nullableConverter((value) => { + if (typeof value === 'number') { + return webidl.converters['unsigned long long'](value) + } + + return new Date(value) + }), + key: 'expires', + defaultValue: () => null + }, + { + converter: webidl.nullableConverter(webidl.converters['long long']), + key: 'maxAge', + defaultValue: () => null + }, + { + converter: webidl.nullableConverter(webidl.converters.DOMString), + key: 'domain', + defaultValue: () => null + }, + { + converter: webidl.nullableConverter(webidl.converters.DOMString), + key: 'path', + defaultValue: () => null + }, + { + converter: webidl.nullableConverter(webidl.converters.boolean), + key: 'secure', + defaultValue: () => null + }, + { + converter: webidl.nullableConverter(webidl.converters.boolean), + key: 'httpOnly', + defaultValue: () => null + }, + { + converter: webidl.converters.USVString, + key: 'sameSite', + allowedValues: ['Strict', 'Lax', 'None'] + }, + { + converter: webidl.sequenceConverter(webidl.converters.DOMString), + key: 'unparsed', + defaultValue: () => new Array(0) + } +]) + +module.exports = { + getCookies, + deleteCookie, + getSetCookies, + setCookie +} + + +/***/ }), + +/***/ 13903: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { maxNameValuePairSize, maxAttributeValueSize } = __nccwpck_require__(7762) +const { isCTLExcludingHtab } = __nccwpck_require__(54806) +const { collectASequenceOfCodePointsFast } = __nccwpck_require__(17704) +const assert = __nccwpck_require__(98061) + +/** + * @description Parses the field-value attributes of a set-cookie header string. + * @see https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4 + * @param {string} header + * @returns if the header is invalid, null will be returned + */ +function parseSetCookie (header) { + // 1. If the set-cookie-string contains a %x00-08 / %x0A-1F / %x7F + // character (CTL characters excluding HTAB): Abort these steps and + // ignore the set-cookie-string entirely. + if (isCTLExcludingHtab(header)) { + return null + } + + let nameValuePair = '' + let unparsedAttributes = '' + let name = '' + let value = '' + + // 2. If the set-cookie-string contains a %x3B (";") character: + if (header.includes(';')) { + // 1. The name-value-pair string consists of the characters up to, + // but not including, the first %x3B (";"), and the unparsed- + // attributes consist of the remainder of the set-cookie-string + // (including the %x3B (";") in question). + const position = { position: 0 } + + nameValuePair = collectASequenceOfCodePointsFast(';', header, position) + unparsedAttributes = header.slice(position.position) + } else { + // Otherwise: + + // 1. The name-value-pair string consists of all the characters + // contained in the set-cookie-string, and the unparsed- + // attributes is the empty string. + nameValuePair = header + } + + // 3. If the name-value-pair string lacks a %x3D ("=") character, then + // the name string is empty, and the value string is the value of + // name-value-pair. + if (!nameValuePair.includes('=')) { + value = nameValuePair + } else { + // Otherwise, the name string consists of the characters up to, but + // not including, the first %x3D ("=") character, and the (possibly + // empty) value string consists of the characters after the first + // %x3D ("=") character. + const position = { position: 0 } + name = collectASequenceOfCodePointsFast( + '=', + nameValuePair, + position + ) + value = nameValuePair.slice(position.position + 1) + } + + // 4. Remove any leading or trailing WSP characters from the name + // string and the value string. + name = name.trim() + value = value.trim() + + // 5. If the sum of the lengths of the name string and the value string + // is more than 4096 octets, abort these steps and ignore the set- + // cookie-string entirely. + if (name.length + value.length > maxNameValuePairSize) { + return null + } + + // 6. The cookie-name is the name string, and the cookie-value is the + // value string. + return { + name, value, ...parseUnparsedAttributes(unparsedAttributes) + } +} + +/** + * Parses the remaining attributes of a set-cookie header + * @see https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4 + * @param {string} unparsedAttributes + * @param {[Object.]={}} cookieAttributeList + */ +function parseUnparsedAttributes (unparsedAttributes, cookieAttributeList = {}) { + // 1. If the unparsed-attributes string is empty, skip the rest of + // these steps. + if (unparsedAttributes.length === 0) { + return cookieAttributeList + } + + // 2. Discard the first character of the unparsed-attributes (which + // will be a %x3B (";") character). + assert(unparsedAttributes[0] === ';') + unparsedAttributes = unparsedAttributes.slice(1) + + let cookieAv = '' + + // 3. If the remaining unparsed-attributes contains a %x3B (";") + // character: + if (unparsedAttributes.includes(';')) { + // 1. Consume the characters of the unparsed-attributes up to, but + // not including, the first %x3B (";") character. + cookieAv = collectASequenceOfCodePointsFast( + ';', + unparsedAttributes, + { position: 0 } + ) + unparsedAttributes = unparsedAttributes.slice(cookieAv.length) + } else { + // Otherwise: + + // 1. Consume the remainder of the unparsed-attributes. + cookieAv = unparsedAttributes + unparsedAttributes = '' + } + + // Let the cookie-av string be the characters consumed in this step. + + let attributeName = '' + let attributeValue = '' + + // 4. If the cookie-av string contains a %x3D ("=") character: + if (cookieAv.includes('=')) { + // 1. The (possibly empty) attribute-name string consists of the + // characters up to, but not including, the first %x3D ("=") + // character, and the (possibly empty) attribute-value string + // consists of the characters after the first %x3D ("=") + // character. + const position = { position: 0 } + + attributeName = collectASequenceOfCodePointsFast( + '=', + cookieAv, + position + ) + attributeValue = cookieAv.slice(position.position + 1) + } else { + // Otherwise: + + // 1. The attribute-name string consists of the entire cookie-av + // string, and the attribute-value string is empty. + attributeName = cookieAv + } + + // 5. Remove any leading or trailing WSP characters from the attribute- + // name string and the attribute-value string. + attributeName = attributeName.trim() + attributeValue = attributeValue.trim() + + // 6. If the attribute-value is longer than 1024 octets, ignore the + // cookie-av string and return to Step 1 of this algorithm. + if (attributeValue.length > maxAttributeValueSize) { + return parseUnparsedAttributes(unparsedAttributes, cookieAttributeList) + } + + // 7. Process the attribute-name and attribute-value according to the + // requirements in the following subsections. (Notice that + // attributes with unrecognized attribute-names are ignored.) + const attributeNameLowercase = attributeName.toLowerCase() + + // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4.1 + // If the attribute-name case-insensitively matches the string + // "Expires", the user agent MUST process the cookie-av as follows. + if (attributeNameLowercase === 'expires') { + // 1. Let the expiry-time be the result of parsing the attribute-value + // as cookie-date (see Section 5.1.1). + const expiryTime = new Date(attributeValue) + + // 2. If the attribute-value failed to parse as a cookie date, ignore + // the cookie-av. + + cookieAttributeList.expires = expiryTime + } else if (attributeNameLowercase === 'max-age') { + // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4.2 + // If the attribute-name case-insensitively matches the string "Max- + // Age", the user agent MUST process the cookie-av as follows. + + // 1. If the first character of the attribute-value is not a DIGIT or a + // "-" character, ignore the cookie-av. + const charCode = attributeValue.charCodeAt(0) + + if ((charCode < 48 || charCode > 57) && attributeValue[0] !== '-') { + return parseUnparsedAttributes(unparsedAttributes, cookieAttributeList) + } + + // 2. If the remainder of attribute-value contains a non-DIGIT + // character, ignore the cookie-av. + if (!/^\d+$/.test(attributeValue)) { + return parseUnparsedAttributes(unparsedAttributes, cookieAttributeList) + } + + // 3. Let delta-seconds be the attribute-value converted to an integer. + const deltaSeconds = Number(attributeValue) + + // 4. Let cookie-age-limit be the maximum age of the cookie (which + // SHOULD be 400 days or less, see Section 4.1.2.2). + + // 5. Set delta-seconds to the smaller of its present value and cookie- + // age-limit. + // deltaSeconds = Math.min(deltaSeconds * 1000, maxExpiresMs) + + // 6. If delta-seconds is less than or equal to zero (0), let expiry- + // time be the earliest representable date and time. Otherwise, let + // the expiry-time be the current date and time plus delta-seconds + // seconds. + // const expiryTime = deltaSeconds <= 0 ? Date.now() : Date.now() + deltaSeconds + + // 7. Append an attribute to the cookie-attribute-list with an + // attribute-name of Max-Age and an attribute-value of expiry-time. + cookieAttributeList.maxAge = deltaSeconds + } else if (attributeNameLowercase === 'domain') { + // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4.3 + // If the attribute-name case-insensitively matches the string "Domain", + // the user agent MUST process the cookie-av as follows. + + // 1. Let cookie-domain be the attribute-value. + let cookieDomain = attributeValue + + // 2. If cookie-domain starts with %x2E ("."), let cookie-domain be + // cookie-domain without its leading %x2E ("."). + if (cookieDomain[0] === '.') { + cookieDomain = cookieDomain.slice(1) + } + + // 3. Convert the cookie-domain to lower case. + cookieDomain = cookieDomain.toLowerCase() + + // 4. Append an attribute to the cookie-attribute-list with an + // attribute-name of Domain and an attribute-value of cookie-domain. + cookieAttributeList.domain = cookieDomain + } else if (attributeNameLowercase === 'path') { + // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4.4 + // If the attribute-name case-insensitively matches the string "Path", + // the user agent MUST process the cookie-av as follows. + + // 1. If the attribute-value is empty or if the first character of the + // attribute-value is not %x2F ("/"): + let cookiePath = '' + if (attributeValue.length === 0 || attributeValue[0] !== '/') { + // 1. Let cookie-path be the default-path. + cookiePath = '/' + } else { + // Otherwise: + + // 1. Let cookie-path be the attribute-value. + cookiePath = attributeValue } - /** - * To construct the CanonicalizedHeaders portion of the signature string, follow these steps: - * 1. Retrieve all headers for the resource that begin with x-ms-, including the x-ms-date header. - * 2. Convert each HTTP header name to lowercase. - * 3. Sort the headers lexicographically by header name, in ascending order. - * Each header may appear only once in the string. - * 4. Replace any linear whitespace in the header value with a single space. - * 5. Trim any whitespace around the colon in the header. - * 6. Finally, append a new-line character to each canonicalized header in the resulting list. - * Construct the CanonicalizedHeaders string by concatenating all headers in this list into a single string. - * - * @param request - - */ - getCanonicalizedHeadersString(request) { - let headersArray = request.headers.headersArray().filter((value) => { - return value.name.toLowerCase().startsWith(HeaderConstants.PREFIX_FOR_STORAGE); - }); - headersArray.sort((a, b) => { - return a.name.toLowerCase().localeCompare(b.name.toLowerCase()); - }); - // Remove duplicate headers - headersArray = headersArray.filter((value, index, array) => { - if (index > 0 && value.name.toLowerCase() === array[index - 1].name.toLowerCase()) { - return false; - } - return true; - }); - let canonicalizedHeadersStringToSign = ""; - headersArray.forEach((header) => { - canonicalizedHeadersStringToSign += `${header.name - .toLowerCase() - .trimRight()}:${header.value.trimLeft()}\n`; - }); - return canonicalizedHeadersStringToSign; + + // 2. Append an attribute to the cookie-attribute-list with an + // attribute-name of Path and an attribute-value of cookie-path. + cookieAttributeList.path = cookiePath + } else if (attributeNameLowercase === 'secure') { + // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4.5 + // If the attribute-name case-insensitively matches the string "Secure", + // the user agent MUST append an attribute to the cookie-attribute-list + // with an attribute-name of Secure and an empty attribute-value. + + cookieAttributeList.secure = true + } else if (attributeNameLowercase === 'httponly') { + // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4.6 + // If the attribute-name case-insensitively matches the string + // "HttpOnly", the user agent MUST append an attribute to the cookie- + // attribute-list with an attribute-name of HttpOnly and an empty + // attribute-value. + + cookieAttributeList.httpOnly = true + } else if (attributeNameLowercase === 'samesite') { + // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis#section-5.4.7 + // If the attribute-name case-insensitively matches the string + // "SameSite", the user agent MUST process the cookie-av as follows: + + // 1. Let enforcement be "Default". + let enforcement = 'Default' + + const attributeValueLowercase = attributeValue.toLowerCase() + // 2. If cookie-av's attribute-value is a case-insensitive match for + // "None", set enforcement to "None". + if (attributeValueLowercase.includes('none')) { + enforcement = 'None' } - /** - * Retrieves the webResource canonicalized resource string. - * - * @param request - - */ - getCanonicalizedResourceString(request) { - const path = getURLPath(request.url) || "/"; - let canonicalizedResourceString = ""; - canonicalizedResourceString += `/${this.factory.accountName}${path}`; - const queries = getURLQueries(request.url); - const lowercaseQueries = {}; - if (queries) { - const queryKeys = []; - for (const key in queries) { - if (Object.prototype.hasOwnProperty.call(queries, key)) { - const lowercaseKey = key.toLowerCase(); - lowercaseQueries[lowercaseKey] = queries[key]; - queryKeys.push(lowercaseKey); - } - } - queryKeys.sort(); - for (const key of queryKeys) { - canonicalizedResourceString += `\n${key}:${decodeURIComponent(lowercaseQueries[key])}`; - } - } - return canonicalizedResourceString; + + // 3. If cookie-av's attribute-value is a case-insensitive match for + // "Strict", set enforcement to "Strict". + if (attributeValueLowercase.includes('strict')) { + enforcement = 'Strict' + } + + // 4. If cookie-av's attribute-value is a case-insensitive match for + // "Lax", set enforcement to "Lax". + if (attributeValueLowercase.includes('lax')) { + enforcement = 'Lax' } + + // 5. Append an attribute to the cookie-attribute-list with an + // attribute-name of "SameSite" and an attribute-value of + // enforcement. + cookieAttributeList.sameSite = enforcement + } else { + cookieAttributeList.unparsed ??= [] + + cookieAttributeList.unparsed.push(`${attributeName}=${attributeValue}`) + } + + // 8. Return to Step 1 of this algorithm. + return parseUnparsedAttributes(unparsedAttributes, cookieAttributeList) } -// Copyright (c) Microsoft Corporation. +module.exports = { + parseSetCookie, + parseUnparsedAttributes +} + + +/***/ }), + +/***/ 54806: +/***/ ((module) => { + +"use strict"; + + /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * StorageSharedKeyCredential for account key authorization of Azure Storage service. + * @param {string} value + * @returns {boolean} */ -class StorageSharedKeyCredential extends Credential { - /** - * Creates an instance of StorageSharedKeyCredential. - * @param accountName - - * @param accountKey - - */ - constructor(accountName, accountKey) { - super(); - this.accountName = accountName; - this.accountKey = Buffer.from(accountKey, "base64"); - } - /** - * Creates a StorageSharedKeyCredentialPolicy object. - * - * @param nextPolicy - - * @param options - - */ - create(nextPolicy, options) { - return new StorageSharedKeyCredentialPolicy(nextPolicy, options, this); +function isCTLExcludingHtab (value) { + for (let i = 0; i < value.length; ++i) { + const code = value.charCodeAt(i) + + if ( + (code >= 0x00 && code <= 0x08) || + (code >= 0x0A && code <= 0x1F) || + code === 0x7F + ) { + return true } - /** - * Generates a hash signature for an HTTP request or for a SAS. - * - * @param stringToSign - - */ - computeHMACSHA256(stringToSign) { - return crypto.createHmac("sha256", this.accountKey).update(stringToSign, "utf8").digest("base64"); + } + return false +} + +/** + CHAR = + token = 1* + separators = "(" | ")" | "<" | ">" | "@" + | "," | ";" | ":" | "\" | <"> + | "/" | "[" | "]" | "?" | "=" + | "{" | "}" | SP | HT + * @param {string} name + */ +function validateCookieName (name) { + for (let i = 0; i < name.length; ++i) { + const code = name.charCodeAt(i) + + if ( + code < 0x21 || // exclude CTLs (0-31), SP and HT + code > 0x7E || // exclude non-ascii and DEL + code === 0x22 || // " + code === 0x28 || // ( + code === 0x29 || // ) + code === 0x3C || // < + code === 0x3E || // > + code === 0x40 || // @ + code === 0x2C || // , + code === 0x3B || // ; + code === 0x3A || // : + code === 0x5C || // \ + code === 0x2F || // / + code === 0x5B || // [ + code === 0x5D || // ] + code === 0x3F || // ? + code === 0x3D || // = + code === 0x7B || // { + code === 0x7D // } + ) { + throw new Error('Invalid cookie name') } + } } -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. +/** + cookie-value = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE ) + cookie-octet = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E + ; US-ASCII characters excluding CTLs, + ; whitespace DQUOTE, comma, semicolon, + ; and backslash + * @param {string} value */ -const packageName = "azure-storage-blob"; -const packageVersion = "12.9.0"; -class StorageClientContext extends coreHttp__namespace.ServiceClient { - /** - * Initializes a new instance of the StorageClientContext class. - * @param url The URL of the service account, container, or blob that is the target of the desired - * operation. - * @param options The parameter options - */ - constructor(url, options) { - if (url === undefined) { - throw new Error("'url' cannot be null"); - } - // Initializing default values for options - if (!options) { - options = {}; - } - if (!options.userAgent) { - const defaultUserAgent = coreHttp__namespace.getDefaultUserAgentValue(); - options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`; - } - super(undefined, options); - this.requestContentType = "application/json; charset=utf-8"; - this.baseUri = options.endpoint || "{url}"; - // Parameter assignments - this.url = url; - // Assigning values to Constant parameters - this.version = options.version || "2021-04-10"; +function validateCookieValue (value) { + let len = value.length + let i = 0 + + // if the value is wrapped in DQUOTE + if (value[0] === '"') { + if (len === 1 || value[len - 1] !== '"') { + throw new Error('Invalid cookie value') + } + --len + ++i + } + + while (i < len) { + const code = value.charCodeAt(i++) + + if ( + code < 0x21 || // exclude CTLs (0-31) + code > 0x7E || // non-ascii and DEL (127) + code === 0x22 || // " + code === 0x2C || // , + code === 0x3B || // ; + code === 0x5C // \ + ) { + throw new Error('Invalid cookie value') } + } } -// Copyright (c) Microsoft Corporation. /** - * A StorageClient represents a based URL class for {@link BlobServiceClient}, {@link ContainerClient} - * and etc. + * path-value = + * @param {string} path */ -class StorageClient { - /** - * Creates an instance of StorageClient. - * @param url - url to resource - * @param pipeline - request policy pipeline. - */ - constructor(url, pipeline) { - // URL should be encoded and only once, protocol layer shouldn't encode URL again - this.url = escapeURLPath(url); - this.accountName = getAccountNameFromUrl(url); - this.pipeline = pipeline; - this.storageClientContext = new StorageClientContext(this.url, pipeline.toServiceClientOptions()); - this.isHttps = iEqual(getURLScheme(this.url) || "", "https"); - this.credential = new AnonymousCredential(); - for (const factory of this.pipeline.factories) { - if ((coreHttp.isNode && factory instanceof StorageSharedKeyCredential) || - factory instanceof AnonymousCredential) { - this.credential = factory; - } - else if (coreHttp.isTokenCredential(factory.credential)) { - // Only works if the factory has been attached a "credential" property. - // We do that in newPipeline() when using TokenCredential. - this.credential = factory.credential; - } - } - // Override protocol layer's default content-type - const storageClientContext = this.storageClientContext; - storageClientContext.requestContentType = undefined; +function validateCookiePath (path) { + for (let i = 0; i < path.length; ++i) { + const code = path.charCodeAt(i) + + if ( + code < 0x20 || // exclude CTLs (0-31) + code === 0x7F || // DEL + code === 0x3B // ; + ) { + throw new Error('Invalid cookie path') } + } } -// Copyright (c) Microsoft Corporation. /** - * Creates a span using the global tracer. - * @internal + * I have no idea why these values aren't allowed to be honest, + * but Deno tests these. - Khafra + * @param {string} domain */ -const createSpan = coreTracing.createSpanFunction({ - packagePrefix: "Azure.Storage.Blob", - namespace: "Microsoft.Storage", -}); +function validateCookieDomain (domain) { + if ( + domain.startsWith('-') || + domain.endsWith('.') || + domain.endsWith('-') + ) { + throw new Error('Invalid cookie domain') + } +} + +const IMFDays = [ + 'Sun', 'Mon', 'Tue', 'Wed', + 'Thu', 'Fri', 'Sat' +] + +const IMFMonths = [ + 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', + 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' +] + +const IMFPaddedNumbers = Array(61).fill(0).map((_, i) => i.toString().padStart(2, '0')) + /** - * @internal - * - * Adapt the tracing options from OperationOptions to what they need to be for - * RequestOptionsBase (when we update to later OpenTelemetry versions this is now - * two separate fields, not just one). + * @see https://www.rfc-editor.org/rfc/rfc7231#section-7.1.1.1 + * @param {number|Date} date + IMF-fixdate = day-name "," SP date1 SP time-of-day SP GMT + ; fixed length/zone/capitalization subset of the format + ; see Section 3.3 of [RFC5322] + + day-name = %x4D.6F.6E ; "Mon", case-sensitive + / %x54.75.65 ; "Tue", case-sensitive + / %x57.65.64 ; "Wed", case-sensitive + / %x54.68.75 ; "Thu", case-sensitive + / %x46.72.69 ; "Fri", case-sensitive + / %x53.61.74 ; "Sat", case-sensitive + / %x53.75.6E ; "Sun", case-sensitive + date1 = day SP month SP year + ; e.g., 02 Jun 1982 + + day = 2DIGIT + month = %x4A.61.6E ; "Jan", case-sensitive + / %x46.65.62 ; "Feb", case-sensitive + / %x4D.61.72 ; "Mar", case-sensitive + / %x41.70.72 ; "Apr", case-sensitive + / %x4D.61.79 ; "May", case-sensitive + / %x4A.75.6E ; "Jun", case-sensitive + / %x4A.75.6C ; "Jul", case-sensitive + / %x41.75.67 ; "Aug", case-sensitive + / %x53.65.70 ; "Sep", case-sensitive + / %x4F.63.74 ; "Oct", case-sensitive + / %x4E.6F.76 ; "Nov", case-sensitive + / %x44.65.63 ; "Dec", case-sensitive + year = 4DIGIT + + GMT = %x47.4D.54 ; "GMT", case-sensitive + + time-of-day = hour ":" minute ":" second + ; 00:00:00 - 23:59:60 (leap second) + + hour = 2DIGIT + minute = 2DIGIT + second = 2DIGIT */ -function convertTracingToRequestOptionsBase(options) { - var _a, _b; - return { - // By passing spanOptions if they exist at runtime, we're backwards compatible with @azure/core-tracing@preview.13 and earlier. - spanOptions: (_a = options === null || options === void 0 ? void 0 : options.tracingOptions) === null || _a === void 0 ? void 0 : _a.spanOptions, - tracingContext: (_b = options === null || options === void 0 ? void 0 : options.tracingOptions) === null || _b === void 0 ? void 0 : _b.tracingContext, - }; +function toIMFDate (date) { + if (typeof date === 'number') { + date = new Date(date) + } + + return `${IMFDays[date.getUTCDay()]}, ${IMFPaddedNumbers[date.getUTCDate()]} ${IMFMonths[date.getUTCMonth()]} ${date.getUTCFullYear()} ${IMFPaddedNumbers[date.getUTCHours()]}:${IMFPaddedNumbers[date.getUTCMinutes()]}:${IMFPaddedNumbers[date.getUTCSeconds()]} GMT` } -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * This is a helper class to construct a string representing the permissions granted by a ServiceSAS to a blob. Setting - * a value to true means that any SAS which uses these permissions will grant permissions for that operation. Once all - * the values are set, this should be serialized with toString and set as the permissions field on a - * {@link BlobSASSignatureValues} object. It is possible to construct the permissions string without this class, but - * the order of the permissions is particular and this class guarantees correctness. + max-age-av = "Max-Age=" non-zero-digit *DIGIT + ; In practice, both expires-av and max-age-av + ; are limited to dates representable by the + ; user agent. + * @param {number} maxAge */ -class BlobSASPermissions { - constructor() { - /** - * Specifies Read access granted. - */ - this.read = false; - /** - * Specifies Add access granted. - */ - this.add = false; - /** - * Specifies Create access granted. - */ - this.create = false; - /** - * Specifies Write access granted. - */ - this.write = false; - /** - * Specifies Delete access granted. - */ - this.delete = false; - /** - * Specifies Delete version access granted. - */ - this.deleteVersion = false; - /** - * Specfies Tag access granted. - */ - this.tag = false; - /** - * Specifies Move access granted. - */ - this.move = false; - /** - * Specifies Execute access granted. - */ - this.execute = false; - /** - * Specifies SetImmutabilityPolicy access granted. - */ - this.setImmutabilityPolicy = false; - /** - * Specifies that Permanent Delete is permitted. - */ - this.permanentDelete = false; - } - /** - * Creates a {@link BlobSASPermissions} from the specified permissions string. This method will throw an - * Error if it encounters a character that does not correspond to a valid permission. - * - * @param permissions - - */ - static parse(permissions) { - const blobSASPermissions = new BlobSASPermissions(); - for (const char of permissions) { - switch (char) { - case "r": - blobSASPermissions.read = true; - break; - case "a": - blobSASPermissions.add = true; - break; - case "c": - blobSASPermissions.create = true; - break; - case "w": - blobSASPermissions.write = true; - break; - case "d": - blobSASPermissions.delete = true; - break; - case "x": - blobSASPermissions.deleteVersion = true; - break; - case "t": - blobSASPermissions.tag = true; - break; - case "m": - blobSASPermissions.move = true; - break; - case "e": - blobSASPermissions.execute = true; - break; - case "i": - blobSASPermissions.setImmutabilityPolicy = true; - break; - case "y": - blobSASPermissions.permanentDelete = true; - break; - default: - throw new RangeError(`Invalid permission: ${char}`); - } - } - return blobSASPermissions; - } - /** - * Creates a {@link BlobSASPermissions} from a raw object which contains same keys as it - * and boolean values for them. - * - * @param permissionLike - - */ - static from(permissionLike) { - const blobSASPermissions = new BlobSASPermissions(); - if (permissionLike.read) { - blobSASPermissions.read = true; - } - if (permissionLike.add) { - blobSASPermissions.add = true; - } - if (permissionLike.create) { - blobSASPermissions.create = true; - } - if (permissionLike.write) { - blobSASPermissions.write = true; - } - if (permissionLike.delete) { - blobSASPermissions.delete = true; - } - if (permissionLike.deleteVersion) { - blobSASPermissions.deleteVersion = true; - } - if (permissionLike.tag) { - blobSASPermissions.tag = true; - } - if (permissionLike.move) { - blobSASPermissions.move = true; - } - if (permissionLike.execute) { - blobSASPermissions.execute = true; - } - if (permissionLike.setImmutabilityPolicy) { - blobSASPermissions.setImmutabilityPolicy = true; - } - if (permissionLike.permanentDelete) { - blobSASPermissions.permanentDelete = true; - } - return blobSASPermissions; - } - /** - * Converts the given permissions to a string. Using this method will guarantee the permissions are in an - * order accepted by the service. - * - * @returns A string which represents the BlobSASPermissions - */ - toString() { - const permissions = []; - if (this.read) { - permissions.push("r"); - } - if (this.add) { - permissions.push("a"); - } - if (this.create) { - permissions.push("c"); - } - if (this.write) { - permissions.push("w"); - } - if (this.delete) { - permissions.push("d"); - } - if (this.deleteVersion) { - permissions.push("x"); - } - if (this.tag) { - permissions.push("t"); - } - if (this.move) { - permissions.push("m"); - } - if (this.execute) { - permissions.push("e"); - } - if (this.setImmutabilityPolicy) { - permissions.push("i"); - } - if (this.permanentDelete) { - permissions.push("y"); - } - return permissions.join(""); +function validateCookieMaxAge (maxAge) { + if (maxAge < 0) { + throw new Error('Invalid cookie max-age') + } +} + +/** + * @see https://www.rfc-editor.org/rfc/rfc6265#section-4.1.1 + * @param {import('./index').Cookie} cookie + */ +function stringify (cookie) { + if (cookie.name.length === 0) { + return null + } + + validateCookieName(cookie.name) + validateCookieValue(cookie.value) + + const out = [`${cookie.name}=${cookie.value}`] + + // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-cookie-prefixes-00#section-3.1 + // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-cookie-prefixes-00#section-3.2 + if (cookie.name.startsWith('__Secure-')) { + cookie.secure = true + } + + if (cookie.name.startsWith('__Host-')) { + cookie.secure = true + cookie.domain = null + cookie.path = '/' + } + + if (cookie.secure) { + out.push('Secure') + } + + if (cookie.httpOnly) { + out.push('HttpOnly') + } + + if (typeof cookie.maxAge === 'number') { + validateCookieMaxAge(cookie.maxAge) + out.push(`Max-Age=${cookie.maxAge}`) + } + + if (cookie.domain) { + validateCookieDomain(cookie.domain) + out.push(`Domain=${cookie.domain}`) + } + + if (cookie.path) { + validateCookiePath(cookie.path) + out.push(`Path=${cookie.path}`) + } + + if (cookie.expires && cookie.expires.toString() !== 'Invalid Date') { + out.push(`Expires=${toIMFDate(cookie.expires)}`) + } + + if (cookie.sameSite) { + out.push(`SameSite=${cookie.sameSite}`) + } + + for (const part of cookie.unparsed) { + if (!part.includes('=')) { + throw new Error('Invalid unparsed') } + + const [key, ...value] = part.split('=') + + out.push(`${key.trim()}=${value.join('=')}`) + } + + return out.join('; ') } -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. +module.exports = { + isCTLExcludingHtab, + validateCookieName, + validateCookiePath, + validateCookieValue, + toIMFDate, + stringify +} + + +/***/ }), + +/***/ 24185: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + +const { Transform } = __nccwpck_require__(84492) +const { isASCIINumber, isValidLastEventId } = __nccwpck_require__(8865) + /** - * This is a helper class to construct a string representing the permissions granted by a ServiceSAS to a container. - * Setting a value to true means that any SAS which uses these permissions will grant permissions for that operation. - * Once all the values are set, this should be serialized with toString and set as the permissions field on a - * {@link BlobSASSignatureValues} object. It is possible to construct the permissions string without this class, but - * the order of the permissions is particular and this class guarantees correctness. + * @type {number[]} BOM */ -class ContainerSASPermissions { - constructor() { - /** - * Specifies Read access granted. - */ - this.read = false; - /** - * Specifies Add access granted. - */ - this.add = false; - /** - * Specifies Create access granted. - */ - this.create = false; - /** - * Specifies Write access granted. - */ - this.write = false; - /** - * Specifies Delete access granted. - */ - this.delete = false; - /** - * Specifies Delete version access granted. - */ - this.deleteVersion = false; - /** - * Specifies List access granted. - */ - this.list = false; - /** - * Specfies Tag access granted. - */ - this.tag = false; - /** - * Specifies Move access granted. - */ - this.move = false; - /** - * Specifies Execute access granted. - */ - this.execute = false; - /** - * Specifies SetImmutabilityPolicy access granted. - */ - this.setImmutabilityPolicy = false; - /** - * Specifies that Permanent Delete is permitted. - */ - this.permanentDelete = false; - /** - * Specifies that Filter Blobs by Tags is permitted. - */ - this.filterByTags = false; +const BOM = [0xEF, 0xBB, 0xBF] +/** + * @type {10} LF + */ +const LF = 0x0A +/** + * @type {13} CR + */ +const CR = 0x0D +/** + * @type {58} COLON + */ +const COLON = 0x3A +/** + * @type {32} SPACE + */ +const SPACE = 0x20 + +/** + * @typedef {object} EventSourceStreamEvent + * @type {object} + * @property {string} [event] The event type. + * @property {string} [data] The data of the message. + * @property {string} [id] A unique ID for the event. + * @property {string} [retry] The reconnection time, in milliseconds. + */ + +/** + * @typedef eventSourceSettings + * @type {object} + * @property {string} lastEventId The last event ID received from the server. + * @property {string} origin The origin of the event source. + * @property {number} reconnectionTime The reconnection time, in milliseconds. + */ + +class EventSourceStream extends Transform { + /** + * @type {eventSourceSettings} + */ + state = null + + /** + * Leading byte-order-mark check. + * @type {boolean} + */ + checkBOM = true + + /** + * @type {boolean} + */ + crlfCheck = false + + /** + * @type {boolean} + */ + eventEndCheck = false + + /** + * @type {Buffer} + */ + buffer = null + + pos = 0 + + event = { + data: undefined, + event: undefined, + id: undefined, + retry: undefined + } + + /** + * @param {object} options + * @param {eventSourceSettings} options.eventSourceSettings + * @param {Function} [options.push] + */ + constructor (options = {}) { + // Enable object mode as EventSourceStream emits objects of shape + // EventSourceStreamEvent + options.readableObjectMode = true + + super(options) + + this.state = options.eventSourceSettings || {} + if (options.push) { + this.push = options.push } - /** - * Creates an {@link ContainerSASPermissions} from the specified permissions string. This method will throw an - * Error if it encounters a character that does not correspond to a valid permission. - * - * @param permissions - - */ - static parse(permissions) { - const containerSASPermissions = new ContainerSASPermissions(); - for (const char of permissions) { - switch (char) { - case "r": - containerSASPermissions.read = true; - break; - case "a": - containerSASPermissions.add = true; - break; - case "c": - containerSASPermissions.create = true; - break; - case "w": - containerSASPermissions.write = true; - break; - case "d": - containerSASPermissions.delete = true; - break; - case "l": - containerSASPermissions.list = true; - break; - case "t": - containerSASPermissions.tag = true; - break; - case "x": - containerSASPermissions.deleteVersion = true; - break; - case "m": - containerSASPermissions.move = true; - break; - case "e": - containerSASPermissions.execute = true; - break; - case "i": - containerSASPermissions.setImmutabilityPolicy = true; - break; - case "y": - containerSASPermissions.permanentDelete = true; - break; - case "f": - containerSASPermissions.filterByTags = true; - break; - default: - throw new RangeError(`Invalid permission ${char}`); - } - } - return containerSASPermissions; + } + + /** + * @param {Buffer} chunk + * @param {string} _encoding + * @param {Function} callback + * @returns {void} + */ + _transform (chunk, _encoding, callback) { + if (chunk.length === 0) { + callback() + return } - /** - * Creates a {@link ContainerSASPermissions} from a raw object which contains same keys as it - * and boolean values for them. - * - * @param permissionLike - - */ - static from(permissionLike) { - const containerSASPermissions = new ContainerSASPermissions(); - if (permissionLike.read) { - containerSASPermissions.read = true; - } - if (permissionLike.add) { - containerSASPermissions.add = true; - } - if (permissionLike.create) { - containerSASPermissions.create = true; - } - if (permissionLike.write) { - containerSASPermissions.write = true; - } - if (permissionLike.delete) { - containerSASPermissions.delete = true; - } - if (permissionLike.list) { - containerSASPermissions.list = true; - } - if (permissionLike.deleteVersion) { - containerSASPermissions.deleteVersion = true; - } - if (permissionLike.tag) { - containerSASPermissions.tag = true; - } - if (permissionLike.move) { - containerSASPermissions.move = true; - } - if (permissionLike.execute) { - containerSASPermissions.execute = true; - } - if (permissionLike.setImmutabilityPolicy) { - containerSASPermissions.setImmutabilityPolicy = true; - } - if (permissionLike.permanentDelete) { - containerSASPermissions.permanentDelete = true; - } - if (permissionLike.filterByTags) { - containerSASPermissions.filterByTags = true; - } - return containerSASPermissions; + + // Cache the chunk in the buffer, as the data might not be complete while + // processing it + // TODO: Investigate if there is a more performant way to handle + // incoming chunks + // see: https://github.com/nodejs/undici/issues/2630 + if (this.buffer) { + this.buffer = Buffer.concat([this.buffer, chunk]) + } else { + this.buffer = chunk + } + + // Strip leading byte-order-mark if we opened the stream and started + // the processing of the incoming data + if (this.checkBOM) { + switch (this.buffer.length) { + case 1: + // Check if the first byte is the same as the first byte of the BOM + if (this.buffer[0] === BOM[0]) { + // If it is, we need to wait for more data + callback() + return + } + // Set the checkBOM flag to false as we don't need to check for the + // BOM anymore + this.checkBOM = false + + // The buffer only contains one byte so we need to wait for more data + callback() + return + case 2: + // Check if the first two bytes are the same as the first two bytes + // of the BOM + if ( + this.buffer[0] === BOM[0] && + this.buffer[1] === BOM[1] + ) { + // If it is, we need to wait for more data, because the third byte + // is needed to determine if it is the BOM or not + callback() + return + } + + // Set the checkBOM flag to false as we don't need to check for the + // BOM anymore + this.checkBOM = false + break + case 3: + // Check if the first three bytes are the same as the first three + // bytes of the BOM + if ( + this.buffer[0] === BOM[0] && + this.buffer[1] === BOM[1] && + this.buffer[2] === BOM[2] + ) { + // If it is, we can drop the buffered data, as it is only the BOM + this.buffer = Buffer.alloc(0) + // Set the checkBOM flag to false as we don't need to check for the + // BOM anymore + this.checkBOM = false + + // Await more data + callback() + return + } + // If it is not the BOM, we can start processing the data + this.checkBOM = false + break + default: + // The buffer is longer than 3 bytes, so we can drop the BOM if it is + // present + if ( + this.buffer[0] === BOM[0] && + this.buffer[1] === BOM[1] && + this.buffer[2] === BOM[2] + ) { + // Remove the BOM from the buffer + this.buffer = this.buffer.subarray(3) + } + + // Set the checkBOM flag to false as we don't need to check for the + this.checkBOM = false + break + } } - /** - * Converts the given permissions to a string. Using this method will guarantee the permissions are in an - * order accepted by the service. - * - * The order of the characters should be as specified here to ensure correctness. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/constructing-a-service-sas - * - */ - toString() { - const permissions = []; - if (this.read) { - permissions.push("r"); - } - if (this.add) { - permissions.push("a"); - } - if (this.create) { - permissions.push("c"); - } - if (this.write) { - permissions.push("w"); - } - if (this.delete) { - permissions.push("d"); - } - if (this.deleteVersion) { - permissions.push("x"); - } - if (this.list) { - permissions.push("l"); - } - if (this.tag) { - permissions.push("t"); + + while (this.pos < this.buffer.length) { + // If the previous line ended with an end-of-line, we need to check + // if the next character is also an end-of-line. + if (this.eventEndCheck) { + // If the the current character is an end-of-line, then the event + // is finished and we can process it + + // If the previous line ended with a carriage return, we need to + // check if the current character is a line feed and remove it + // from the buffer. + if (this.crlfCheck) { + // If the current character is a line feed, we can remove it + // from the buffer and reset the crlfCheck flag + if (this.buffer[this.pos] === LF) { + this.buffer = this.buffer.subarray(this.pos + 1) + this.pos = 0 + this.crlfCheck = false + + // It is possible that the line feed is not the end of the + // event. We need to check if the next character is an + // end-of-line character to determine if the event is + // finished. We simply continue the loop to check the next + // character. + + // As we removed the line feed from the buffer and set the + // crlfCheck flag to false, we basically don't make any + // distinction between a line feed and a carriage return. + continue + } + this.crlfCheck = false } - if (this.move) { - permissions.push("m"); + + if (this.buffer[this.pos] === LF || this.buffer[this.pos] === CR) { + // If the current character is a carriage return, we need to + // set the crlfCheck flag to true, as we need to check if the + // next character is a line feed so we can remove it from the + // buffer + if (this.buffer[this.pos] === CR) { + this.crlfCheck = true + } + + this.buffer = this.buffer.subarray(this.pos + 1) + this.pos = 0 + if ( + this.event.data !== undefined || this.event.event || this.event.id || this.event.retry) { + this.processEvent(this.event) + } + this.clearEvent() + continue } - if (this.execute) { - permissions.push("e"); + // If the current character is not an end-of-line, then the event + // is not finished and we have to reset the eventEndCheck flag + this.eventEndCheck = false + continue + } + + // If the current character is an end-of-line, we can process the + // line + if (this.buffer[this.pos] === LF || this.buffer[this.pos] === CR) { + // If the current character is a carriage return, we need to + // set the crlfCheck flag to true, as we need to check if the + // next character is a line feed + if (this.buffer[this.pos] === CR) { + this.crlfCheck = true + } + + // In any case, we can process the line as we reached an + // end-of-line character + this.parseLine(this.buffer.subarray(0, this.pos), this.event) + + // Remove the processed line from the buffer + this.buffer = this.buffer.subarray(this.pos + 1) + // Reset the position as we removed the processed line from the buffer + this.pos = 0 + // A line was processed and this could be the end of the event. We need + // to check if the next line is empty to determine if the event is + // finished. + this.eventEndCheck = true + continue + } + + this.pos++ + } + + callback() + } + + /** + * @param {Buffer} line + * @param {EventStreamEvent} event + */ + parseLine (line, event) { + // If the line is empty (a blank line) + // Dispatch the event, as defined below. + // This will be handled in the _transform method + if (line.length === 0) { + return + } + + // If the line starts with a U+003A COLON character (:) + // Ignore the line. + const colonPosition = line.indexOf(COLON) + if (colonPosition === 0) { + return + } + + let field = '' + let value = '' + + // If the line contains a U+003A COLON character (:) + if (colonPosition !== -1) { + // Collect the characters on the line before the first U+003A COLON + // character (:), and let field be that string. + // TODO: Investigate if there is a more performant way to extract the + // field + // see: https://github.com/nodejs/undici/issues/2630 + field = line.subarray(0, colonPosition).toString('utf8') + + // Collect the characters on the line after the first U+003A COLON + // character (:), and let value be that string. + // If value starts with a U+0020 SPACE character, remove it from value. + let valueStart = colonPosition + 1 + if (line[valueStart] === SPACE) { + ++valueStart + } + // TODO: Investigate if there is a more performant way to extract the + // value + // see: https://github.com/nodejs/undici/issues/2630 + value = line.subarray(valueStart).toString('utf8') + + // Otherwise, the string is not empty but does not contain a U+003A COLON + // character (:) + } else { + // Process the field using the steps described below, using the whole + // line as the field name, and the empty string as the field value. + field = line.toString('utf8') + value = '' + } + + // Modify the event with the field name and value. The value is also + // decoded as UTF-8 + switch (field) { + case 'data': + if (event[field] === undefined) { + event[field] = value + } else { + event[field] += `\n${value}` } - if (this.setImmutabilityPolicy) { - permissions.push("i"); + break + case 'retry': + if (isASCIINumber(value)) { + event[field] = value } - if (this.permanentDelete) { - permissions.push("y"); + break + case 'id': + if (isValidLastEventId(value)) { + event[field] = value } - if (this.filterByTags) { - permissions.push("f"); + break + case 'event': + if (value.length > 0) { + event[field] = value } - return permissions.join(""); + break } -} + } -// Copyright (c) Microsoft Corporation. -/** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * UserDelegationKeyCredential is only used for generation of user delegation SAS. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/create-user-delegation-sas - */ -class UserDelegationKeyCredential { - /** - * Creates an instance of UserDelegationKeyCredential. - * @param accountName - - * @param userDelegationKey - - */ - constructor(accountName, userDelegationKey) { - this.accountName = accountName; - this.userDelegationKey = userDelegationKey; - this.key = Buffer.from(userDelegationKey.value, "base64"); + /** + * @param {EventSourceStreamEvent} event + */ + processEvent (event) { + if (event.retry && isASCIINumber(event.retry)) { + this.state.reconnectionTime = parseInt(event.retry, 10) } - /** - * Generates a hash signature for an HTTP request or for a SAS. - * - * @param stringToSign - - */ - computeHMACSHA256(stringToSign) { - // console.log(`stringToSign: ${JSON.stringify(stringToSign)}`); - return crypto.createHmac("sha256", this.key).update(stringToSign, "utf8").digest("base64"); + + if (event.id && isValidLastEventId(event.id)) { + this.state.lastEventId = event.id + } + + // only dispatch event, when data is provided + if (event.data !== undefined) { + this.push({ + type: event.event || 'message', + options: { + data: event.data, + lastEventId: this.state.lastEventId, + origin: this.state.origin + } + }) + } + } + + clearEvent () { + this.event = { + data: undefined, + event: undefined, + id: undefined, + retry: undefined } + } } -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. +module.exports = { + EventSourceStream +} + + +/***/ }), + +/***/ 36127: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { pipeline } = __nccwpck_require__(84492) +const { fetching } = __nccwpck_require__(85170) +const { makeRequest } = __nccwpck_require__(20610) +const { webidl } = __nccwpck_require__(44890) +const { EventSourceStream } = __nccwpck_require__(24185) +const { parseMIMEType } = __nccwpck_require__(17704) +const { createFastMessageEvent } = __nccwpck_require__(55033) +const { isNetworkError } = __nccwpck_require__(12583) +const { delay } = __nccwpck_require__(8865) +const { kEnumerableProperty } = __nccwpck_require__(83983) +const { environmentSettingsObject } = __nccwpck_require__(1310) + +let experimentalWarned = false + /** - * Generate SasIPRange format string. For example: + * A reconnection time, in milliseconds. This must initially be an implementation-defined value, + * probably in the region of a few seconds. * - * "8.8.8.8" or "1.1.1.1-255.255.255.255" + * In Comparison: + * - Chrome uses 3000ms. + * - Deno uses 5000ms. * - * @param ipRange - + * @type {3000} */ -function ipRangeToString(ipRange) { - return ipRange.end ? `${ipRange.start}-${ipRange.end}` : ipRange.start; -} +const defaultReconnectionTime = 3000 -// Copyright (c) Microsoft Corporation. /** - * Protocols for generated SAS. + * The readyState attribute represents the state of the connection. + * @enum + * @readonly + * @see https://html.spec.whatwg.org/multipage/server-sent-events.html#dom-eventsource-readystate-dev */ -exports.SASProtocol = void 0; -(function (SASProtocol) { - /** - * Protocol that allows HTTPS only - */ - SASProtocol["Https"] = "https"; - /** - * Protocol that allows both HTTPS and HTTP - */ - SASProtocol["HttpsAndHttp"] = "https,http"; -})(exports.SASProtocol || (exports.SASProtocol = {})); + /** - * Represents the components that make up an Azure Storage SAS' query parameters. This type is not constructed directly - * by the user; it is only generated by the {@link AccountSASSignatureValues} and {@link BlobSASSignatureValues} - * types. Once generated, it can be encoded into a {@link String} and appended to a URL directly (though caution should - * be taken here in case there are existing query parameters, which might affect the appropriate means of appending - * these query parameters). - * - * NOTE: Instances of this class are immutable. + * The connection has not yet been established, or it was closed and the user + * agent is reconnecting. + * @type {0} */ -class SASQueryParameters { - constructor(version, signature, permissionsOrOptions, services, resourceTypes, protocol, startsOn, expiresOn, ipRange, identifier, resource, cacheControl, contentDisposition, contentEncoding, contentLanguage, contentType, userDelegationKey, preauthorizedAgentObjectId, correlationId, encryptionScope) { - this.version = version; - this.signature = signature; - if (permissionsOrOptions !== undefined && typeof permissionsOrOptions !== "string") { - // SASQueryParametersOptions - this.permissions = permissionsOrOptions.permissions; - this.services = permissionsOrOptions.services; - this.resourceTypes = permissionsOrOptions.resourceTypes; - this.protocol = permissionsOrOptions.protocol; - this.startsOn = permissionsOrOptions.startsOn; - this.expiresOn = permissionsOrOptions.expiresOn; - this.ipRangeInner = permissionsOrOptions.ipRange; - this.identifier = permissionsOrOptions.identifier; - this.encryptionScope = permissionsOrOptions.encryptionScope; - this.resource = permissionsOrOptions.resource; - this.cacheControl = permissionsOrOptions.cacheControl; - this.contentDisposition = permissionsOrOptions.contentDisposition; - this.contentEncoding = permissionsOrOptions.contentEncoding; - this.contentLanguage = permissionsOrOptions.contentLanguage; - this.contentType = permissionsOrOptions.contentType; - if (permissionsOrOptions.userDelegationKey) { - this.signedOid = permissionsOrOptions.userDelegationKey.signedObjectId; - this.signedTenantId = permissionsOrOptions.userDelegationKey.signedTenantId; - this.signedStartsOn = permissionsOrOptions.userDelegationKey.signedStartsOn; - this.signedExpiresOn = permissionsOrOptions.userDelegationKey.signedExpiresOn; - this.signedService = permissionsOrOptions.userDelegationKey.signedService; - this.signedVersion = permissionsOrOptions.userDelegationKey.signedVersion; - this.preauthorizedAgentObjectId = permissionsOrOptions.preauthorizedAgentObjectId; - this.correlationId = permissionsOrOptions.correlationId; - } +const CONNECTING = 0 + +/** + * The user agent has an open connection and is dispatching events as it + * receives them. + * @type {1} + */ +const OPEN = 1 + +/** + * The connection is not open, and the user agent is not trying to reconnect. + * @type {2} + */ +const CLOSED = 2 + +/** + * Requests for the element will have their mode set to "cors" and their credentials mode set to "same-origin". + * @type {'anonymous'} + */ +const ANONYMOUS = 'anonymous' + +/** + * Requests for the element will have their mode set to "cors" and their credentials mode set to "include". + * @type {'use-credentials'} + */ +const USE_CREDENTIALS = 'use-credentials' + +/** + * The EventSource interface is used to receive server-sent events. It + * connects to a server over HTTP and receives events in text/event-stream + * format without closing the connection. + * @extends {EventTarget} + * @see https://html.spec.whatwg.org/multipage/server-sent-events.html#server-sent-events + * @api public + */ +class EventSource extends EventTarget { + #events = { + open: null, + error: null, + message: null + } + + #url = null + #withCredentials = false + + #readyState = CONNECTING + + #request = null + #controller = null + + #dispatcher + + /** + * @type {import('./eventsource-stream').eventSourceSettings} + */ + #state + + /** + * Creates a new EventSource object. + * @param {string} url + * @param {EventSourceInit} [eventSourceInitDict] + * @see https://html.spec.whatwg.org/multipage/server-sent-events.html#the-eventsource-interface + */ + constructor (url, eventSourceInitDict = {}) { + // 1. Let ev be a new EventSource object. + super() + + webidl.util.markAsUncloneable(this) + + const prefix = 'EventSource constructor' + webidl.argumentLengthCheck(arguments, 1, prefix) + + if (!experimentalWarned) { + experimentalWarned = true + process.emitWarning('EventSource is experimental, expect them to change at any time.', { + code: 'UNDICI-ES' + }) + } + + url = webidl.converters.USVString(url, prefix, 'url') + eventSourceInitDict = webidl.converters.EventSourceInitDict(eventSourceInitDict, prefix, 'eventSourceInitDict') + + this.#dispatcher = eventSourceInitDict.dispatcher + this.#state = { + lastEventId: '', + reconnectionTime: defaultReconnectionTime + } + + // 2. Let settings be ev's relevant settings object. + // https://html.spec.whatwg.org/multipage/webappapis.html#environment-settings-object + const settings = environmentSettingsObject + + let urlRecord + + try { + // 3. Let urlRecord be the result of encoding-parsing a URL given url, relative to settings. + urlRecord = new URL(url, settings.settingsObject.baseUrl) + this.#state.origin = urlRecord.origin + } catch (e) { + // 4. If urlRecord is failure, then throw a "SyntaxError" DOMException. + throw new DOMException(e, 'SyntaxError') + } + + // 5. Set ev's url to urlRecord. + this.#url = urlRecord.href + + // 6. Let corsAttributeState be Anonymous. + let corsAttributeState = ANONYMOUS + + // 7. If the value of eventSourceInitDict's withCredentials member is true, + // then set corsAttributeState to Use Credentials and set ev's + // withCredentials attribute to true. + if (eventSourceInitDict.withCredentials) { + corsAttributeState = USE_CREDENTIALS + this.#withCredentials = true + } + + // 8. Let request be the result of creating a potential-CORS request given + // urlRecord, the empty string, and corsAttributeState. + const initRequest = { + redirect: 'follow', + keepalive: true, + // @see https://html.spec.whatwg.org/multipage/urls-and-fetching.html#cors-settings-attributes + mode: 'cors', + credentials: corsAttributeState === 'anonymous' + ? 'same-origin' + : 'omit', + referrer: 'no-referrer' + } + + // 9. Set request's client to settings. + initRequest.client = environmentSettingsObject.settingsObject + + // 10. User agents may set (`Accept`, `text/event-stream`) in request's header list. + initRequest.headersList = [['accept', { name: 'accept', value: 'text/event-stream' }]] + + // 11. Set request's cache mode to "no-store". + initRequest.cache = 'no-store' + + // 12. Set request's initiator type to "other". + initRequest.initiator = 'other' + + initRequest.urlList = [new URL(this.#url)] + + // 13. Set ev's request to request. + this.#request = makeRequest(initRequest) + + this.#connect() + } + + /** + * Returns the state of this EventSource object's connection. It can have the + * values described below. + * @returns {0|1|2} + * @readonly + */ + get readyState () { + return this.#readyState + } + + /** + * Returns the URL providing the event stream. + * @readonly + * @returns {string} + */ + get url () { + return this.#url + } + + /** + * Returns a boolean indicating whether the EventSource object was + * instantiated with CORS credentials set (true), or not (false, the default). + */ + get withCredentials () { + return this.#withCredentials + } + + #connect () { + if (this.#readyState === CLOSED) return + + this.#readyState = CONNECTING + + const fetchParams = { + request: this.#request, + dispatcher: this.#dispatcher + } + + // 14. Let processEventSourceEndOfBody given response res be the following step: if res is not a network error, then reestablish the connection. + const processEventSourceEndOfBody = (response) => { + if (isNetworkError(response)) { + this.dispatchEvent(new Event('error')) + this.close() + } + + this.#reconnect() + } + + // 15. Fetch request, with processResponseEndOfBody set to processEventSourceEndOfBody... + fetchParams.processResponseEndOfBody = processEventSourceEndOfBody + + // and processResponse set to the following steps given response res: + fetchParams.processResponse = (response) => { + // 1. If res is an aborted network error, then fail the connection. + + if (isNetworkError(response)) { + // 1. When a user agent is to fail the connection, the user agent + // must queue a task which, if the readyState attribute is set to a + // value other than CLOSED, sets the readyState attribute to CLOSED + // and fires an event named error at the EventSource object. Once the + // user agent has failed the connection, it does not attempt to + // reconnect. + if (response.aborted) { + this.close() + this.dispatchEvent(new Event('error')) + return + // 2. Otherwise, if res is a network error, then reestablish the + // connection, unless the user agent knows that to be futile, in + // which case the user agent may fail the connection. + } else { + this.#reconnect() + return } - else { - this.services = services; - this.resourceTypes = resourceTypes; - this.expiresOn = expiresOn; - this.permissions = permissionsOrOptions; - this.protocol = protocol; - this.startsOn = startsOn; - this.ipRangeInner = ipRange; - this.encryptionScope = encryptionScope; - this.identifier = identifier; - this.resource = resource; - this.cacheControl = cacheControl; - this.contentDisposition = contentDisposition; - this.contentEncoding = contentEncoding; - this.contentLanguage = contentLanguage; - this.contentType = contentType; - if (userDelegationKey) { - this.signedOid = userDelegationKey.signedObjectId; - this.signedTenantId = userDelegationKey.signedTenantId; - this.signedStartsOn = userDelegationKey.signedStartsOn; - this.signedExpiresOn = userDelegationKey.signedExpiresOn; - this.signedService = userDelegationKey.signedService; - this.signedVersion = userDelegationKey.signedVersion; - this.preauthorizedAgentObjectId = preauthorizedAgentObjectId; - this.correlationId = correlationId; - } + } + + // 3. Otherwise, if res's status is not 200, or if res's `Content-Type` + // is not `text/event-stream`, then fail the connection. + const contentType = response.headersList.get('content-type', true) + const mimeType = contentType !== null ? parseMIMEType(contentType) : 'failure' + const contentTypeValid = mimeType !== 'failure' && mimeType.essence === 'text/event-stream' + if ( + response.status !== 200 || + contentTypeValid === false + ) { + this.close() + this.dispatchEvent(new Event('error')) + return + } + + // 4. Otherwise, announce the connection and interpret res's body + // line by line. + + // When a user agent is to announce the connection, the user agent + // must queue a task which, if the readyState attribute is set to a + // value other than CLOSED, sets the readyState attribute to OPEN + // and fires an event named open at the EventSource object. + // @see https://html.spec.whatwg.org/multipage/server-sent-events.html#sse-processing-model + this.#readyState = OPEN + this.dispatchEvent(new Event('open')) + + // If redirected to a different origin, set the origin to the new origin. + this.#state.origin = response.urlList[response.urlList.length - 1].origin + + const eventSourceStream = new EventSourceStream({ + eventSourceSettings: this.#state, + push: (event) => { + this.dispatchEvent(createFastMessageEvent( + event.type, + event.options + )) } + }) + + pipeline(response.body.stream, + eventSourceStream, + (error) => { + if ( + error?.aborted === false + ) { + this.close() + this.dispatchEvent(new Event('error')) + } + }) } - /** - * Optional. IP range allowed for this SAS. - * - * @readonly - */ - get ipRange() { - if (this.ipRangeInner) { - return { - end: this.ipRangeInner.end, - start: this.ipRangeInner.start, - }; - } - return undefined; + + this.#controller = fetching(fetchParams) + } + + /** + * @see https://html.spec.whatwg.org/multipage/server-sent-events.html#sse-processing-model + * @returns {Promise} + */ + async #reconnect () { + // When a user agent is to reestablish the connection, the user agent must + // run the following steps. These steps are run in parallel, not as part of + // a task. (The tasks that it queues, of course, are run like normal tasks + // and not themselves in parallel.) + + // 1. Queue a task to run the following steps: + + // 1. If the readyState attribute is set to CLOSED, abort the task. + if (this.#readyState === CLOSED) return + + // 2. Set the readyState attribute to CONNECTING. + this.#readyState = CONNECTING + + // 3. Fire an event named error at the EventSource object. + this.dispatchEvent(new Event('error')) + + // 2. Wait a delay equal to the reconnection time of the event source. + await delay(this.#state.reconnectionTime) + + // 5. Queue a task to run the following steps: + + // 1. If the EventSource object's readyState attribute is not set to + // CONNECTING, then return. + if (this.#readyState !== CONNECTING) return + + // 2. Let request be the EventSource object's request. + // 3. If the EventSource object's last event ID string is not the empty + // string, then: + // 1. Let lastEventIDValue be the EventSource object's last event ID + // string, encoded as UTF-8. + // 2. Set (`Last-Event-ID`, lastEventIDValue) in request's header + // list. + if (this.#state.lastEventId.length) { + this.#request.headersList.set('last-event-id', this.#state.lastEventId, true) } - /** - * Encodes all SAS query parameters into a string that can be appended to a URL. - * - */ - toString() { - const params = [ - "sv", - "ss", - "srt", - "spr", - "st", - "se", - "sip", - "si", - "ses", - "skoid", - "sktid", - "skt", - "ske", - "sks", - "skv", - "sr", - "sp", - "sig", - "rscc", - "rscd", - "rsce", - "rscl", - "rsct", - "saoid", - "scid", - ]; - const queries = []; - for (const param of params) { - switch (param) { - case "sv": - this.tryAppendQueryParameter(queries, param, this.version); - break; - case "ss": - this.tryAppendQueryParameter(queries, param, this.services); - break; - case "srt": - this.tryAppendQueryParameter(queries, param, this.resourceTypes); - break; - case "spr": - this.tryAppendQueryParameter(queries, param, this.protocol); - break; - case "st": - this.tryAppendQueryParameter(queries, param, this.startsOn ? truncatedISO8061Date(this.startsOn, false) : undefined); - break; - case "se": - this.tryAppendQueryParameter(queries, param, this.expiresOn ? truncatedISO8061Date(this.expiresOn, false) : undefined); - break; - case "sip": - this.tryAppendQueryParameter(queries, param, this.ipRange ? ipRangeToString(this.ipRange) : undefined); - break; - case "si": - this.tryAppendQueryParameter(queries, param, this.identifier); - break; - case "ses": - this.tryAppendQueryParameter(queries, param, this.encryptionScope); - break; - case "skoid": // Signed object ID - this.tryAppendQueryParameter(queries, param, this.signedOid); - break; - case "sktid": // Signed tenant ID - this.tryAppendQueryParameter(queries, param, this.signedTenantId); - break; - case "skt": // Signed key start time - this.tryAppendQueryParameter(queries, param, this.signedStartsOn ? truncatedISO8061Date(this.signedStartsOn, false) : undefined); - break; - case "ske": // Signed key expiry time - this.tryAppendQueryParameter(queries, param, this.signedExpiresOn ? truncatedISO8061Date(this.signedExpiresOn, false) : undefined); - break; - case "sks": // Signed key service - this.tryAppendQueryParameter(queries, param, this.signedService); - break; - case "skv": // Signed key version - this.tryAppendQueryParameter(queries, param, this.signedVersion); - break; - case "sr": - this.tryAppendQueryParameter(queries, param, this.resource); - break; - case "sp": - this.tryAppendQueryParameter(queries, param, this.permissions); - break; - case "sig": - this.tryAppendQueryParameter(queries, param, this.signature); - break; - case "rscc": - this.tryAppendQueryParameter(queries, param, this.cacheControl); - break; - case "rscd": - this.tryAppendQueryParameter(queries, param, this.contentDisposition); - break; - case "rsce": - this.tryAppendQueryParameter(queries, param, this.contentEncoding); - break; - case "rscl": - this.tryAppendQueryParameter(queries, param, this.contentLanguage); - break; - case "rsct": - this.tryAppendQueryParameter(queries, param, this.contentType); - break; - case "saoid": - this.tryAppendQueryParameter(queries, param, this.preauthorizedAgentObjectId); - break; - case "scid": - this.tryAppendQueryParameter(queries, param, this.correlationId); - break; - } - } - return queries.join("&"); - } - /** - * A private helper method used to filter and append query key/value pairs into an array. - * - * @param queries - - * @param key - - * @param value - - */ - tryAppendQueryParameter(queries, key, value) { - if (!value) { - return; - } - key = encodeURIComponent(key); - value = encodeURIComponent(value); - if (key.length > 0 && value.length > 0) { - queries.push(`${key}=${value}`); - } + + // 4. Fetch request and process the response obtained in this fashion, if any, as described earlier in this section. + this.#connect() + } + + /** + * Closes the connection, if any, and sets the readyState attribute to + * CLOSED. + */ + close () { + webidl.brandCheck(this, EventSource) + + if (this.#readyState === CLOSED) return + this.#readyState = CLOSED + this.#controller.abort() + this.#request = null + } + + get onopen () { + return this.#events.open + } + + set onopen (fn) { + if (this.#events.open) { + this.removeEventListener('open', this.#events.open) } -} -// Copyright (c) Microsoft Corporation. -function generateBlobSASQueryParameters(blobSASSignatureValues, sharedKeyCredentialOrUserDelegationKey, accountName) { - const version = blobSASSignatureValues.version ? blobSASSignatureValues.version : SERVICE_VERSION; - const sharedKeyCredential = sharedKeyCredentialOrUserDelegationKey instanceof StorageSharedKeyCredential - ? sharedKeyCredentialOrUserDelegationKey - : undefined; - let userDelegationKeyCredential; - if (sharedKeyCredential === undefined && accountName !== undefined) { - userDelegationKeyCredential = new UserDelegationKeyCredential(accountName, sharedKeyCredentialOrUserDelegationKey); + if (typeof fn === 'function') { + this.#events.open = fn + this.addEventListener('open', fn) + } else { + this.#events.open = null } - if (sharedKeyCredential === undefined && userDelegationKeyCredential === undefined) { - throw TypeError("Invalid sharedKeyCredential, userDelegationKey or accountName."); + } + + get onmessage () { + return this.#events.message + } + + set onmessage (fn) { + if (this.#events.message) { + this.removeEventListener('message', this.#events.message) } - // Version 2020-12-06 adds support for encryptionscope in SAS. - if (version >= "2020-12-06") { - if (sharedKeyCredential !== undefined) { - return generateBlobSASQueryParameters20201206(blobSASSignatureValues, sharedKeyCredential); - } - else { - return generateBlobSASQueryParametersUDK20201206(blobSASSignatureValues, userDelegationKeyCredential); - } + + if (typeof fn === 'function') { + this.#events.message = fn + this.addEventListener('message', fn) + } else { + this.#events.message = null } - // Version 2019-12-12 adds support for the blob tags permission. - // Version 2018-11-09 adds support for the signed resource and signed blob snapshot time fields. - // https://docs.microsoft.com/en-us/rest/api/storageservices/constructing-a-service-sas#constructing-the-signature-string - if (version >= "2018-11-09") { - if (sharedKeyCredential !== undefined) { - return generateBlobSASQueryParameters20181109(blobSASSignatureValues, sharedKeyCredential); - } - else { - // Version 2020-02-10 delegation SAS signature construction includes preauthorizedAgentObjectId, agentObjectId, correlationId. - if (version >= "2020-02-10") { - return generateBlobSASQueryParametersUDK20200210(blobSASSignatureValues, userDelegationKeyCredential); - } - else { - return generateBlobSASQueryParametersUDK20181109(blobSASSignatureValues, userDelegationKeyCredential); - } - } + } + + get onerror () { + return this.#events.error + } + + set onerror (fn) { + if (this.#events.error) { + this.removeEventListener('error', this.#events.error) } - if (version >= "2015-04-05") { - if (sharedKeyCredential !== undefined) { - return generateBlobSASQueryParameters20150405(blobSASSignatureValues, sharedKeyCredential); - } - else { - throw new RangeError("'version' must be >= '2018-11-09' when generating user delegation SAS using user delegation key."); - } + + if (typeof fn === 'function') { + this.#events.error = fn + this.addEventListener('error', fn) + } else { + this.#events.error = null } - throw new RangeError("'version' must be >= '2015-04-05'."); + } +} + +const constantsPropertyDescriptors = { + CONNECTING: { + __proto__: null, + configurable: false, + enumerable: true, + value: CONNECTING, + writable: false + }, + OPEN: { + __proto__: null, + configurable: false, + enumerable: true, + value: OPEN, + writable: false + }, + CLOSED: { + __proto__: null, + configurable: false, + enumerable: true, + value: CLOSED, + writable: false + } } + +Object.defineProperties(EventSource, constantsPropertyDescriptors) +Object.defineProperties(EventSource.prototype, constantsPropertyDescriptors) + +Object.defineProperties(EventSource.prototype, { + close: kEnumerableProperty, + onerror: kEnumerableProperty, + onmessage: kEnumerableProperty, + onopen: kEnumerableProperty, + readyState: kEnumerableProperty, + url: kEnumerableProperty, + withCredentials: kEnumerableProperty +}) + +webidl.converters.EventSourceInitDict = webidl.dictionaryConverter([ + { + key: 'withCredentials', + converter: webidl.converters.boolean, + defaultValue: () => false + }, + { + key: 'dispatcher', // undici only + converter: webidl.converters.any + } +]) + +module.exports = { + EventSource, + defaultReconnectionTime +} + + +/***/ }), + +/***/ 8865: +/***/ ((module) => { + +"use strict"; + + /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * IMPLEMENTATION FOR API VERSION FROM 2015-04-05 AND BEFORE 2018-11-09. - * - * Creates an instance of SASQueryParameters. - * - * Only accepts required settings needed to create a SAS. For optional settings please - * set corresponding properties directly, such as permissions, startsOn and identifier. - * - * WARNING: When identifier is not provided, permissions and expiresOn are required. - * You MUST assign value to identifier or expiresOn & permissions manually if you initial with - * this constructor. - * - * @param blobSASSignatureValues - - * @param sharedKeyCredential - + * Checks if the given value is a valid LastEventId. + * @param {string} value + * @returns {boolean} */ -function generateBlobSASQueryParameters20150405(blobSASSignatureValues, sharedKeyCredential) { - blobSASSignatureValues = SASSignatureValuesSanityCheckAndAutofill(blobSASSignatureValues); - if (!blobSASSignatureValues.identifier && - !(blobSASSignatureValues.permissions && blobSASSignatureValues.expiresOn)) { - throw new RangeError("Must provide 'permissions' and 'expiresOn' for Blob SAS generation when 'identifier' is not provided."); - } - let resource = "c"; - if (blobSASSignatureValues.blobName) { - resource = "b"; - } - // Calling parse and toString guarantees the proper ordering and throws on invalid characters. - let verifiedPermissions; - if (blobSASSignatureValues.permissions) { - if (blobSASSignatureValues.blobName) { - verifiedPermissions = BlobSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString(); - } - else { - verifiedPermissions = ContainerSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString(); - } - } - // Signature is generated on the un-url-encoded values. - const stringToSign = [ - verifiedPermissions ? verifiedPermissions : "", - blobSASSignatureValues.startsOn - ? truncatedISO8061Date(blobSASSignatureValues.startsOn, false) - : "", - blobSASSignatureValues.expiresOn - ? truncatedISO8061Date(blobSASSignatureValues.expiresOn, false) - : "", - getCanonicalName(sharedKeyCredential.accountName, blobSASSignatureValues.containerName, blobSASSignatureValues.blobName), - blobSASSignatureValues.identifier, - blobSASSignatureValues.ipRange ? ipRangeToString(blobSASSignatureValues.ipRange) : "", - blobSASSignatureValues.protocol ? blobSASSignatureValues.protocol : "", - blobSASSignatureValues.version, - blobSASSignatureValues.cacheControl ? blobSASSignatureValues.cacheControl : "", - blobSASSignatureValues.contentDisposition ? blobSASSignatureValues.contentDisposition : "", - blobSASSignatureValues.contentEncoding ? blobSASSignatureValues.contentEncoding : "", - blobSASSignatureValues.contentLanguage ? blobSASSignatureValues.contentLanguage : "", - blobSASSignatureValues.contentType ? blobSASSignatureValues.contentType : "", - ].join("\n"); - const signature = sharedKeyCredential.computeHMACSHA256(stringToSign); - return new SASQueryParameters(blobSASSignatureValues.version, signature, verifiedPermissions, undefined, undefined, blobSASSignatureValues.protocol, blobSASSignatureValues.startsOn, blobSASSignatureValues.expiresOn, blobSASSignatureValues.ipRange, blobSASSignatureValues.identifier, resource, blobSASSignatureValues.cacheControl, blobSASSignatureValues.contentDisposition, blobSASSignatureValues.contentEncoding, blobSASSignatureValues.contentLanguage, blobSASSignatureValues.contentType); +function isValidLastEventId (value) { + // LastEventId should not contain U+0000 NULL + return value.indexOf('\u0000') === -1 } + /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * IMPLEMENTATION FOR API VERSION FROM 2018-11-09. - * - * Creates an instance of SASQueryParameters. - * - * Only accepts required settings needed to create a SAS. For optional settings please - * set corresponding properties directly, such as permissions, startsOn and identifier. - * - * WARNING: When identifier is not provided, permissions and expiresOn are required. - * You MUST assign value to identifier or expiresOn & permissions manually if you initial with - * this constructor. - * - * @param blobSASSignatureValues - - * @param sharedKeyCredential - + * Checks if the given value is a base 10 digit. + * @param {string} value + * @returns {boolean} */ -function generateBlobSASQueryParameters20181109(blobSASSignatureValues, sharedKeyCredential) { - blobSASSignatureValues = SASSignatureValuesSanityCheckAndAutofill(blobSASSignatureValues); - if (!blobSASSignatureValues.identifier && - !(blobSASSignatureValues.permissions && blobSASSignatureValues.expiresOn)) { - throw new RangeError("Must provide 'permissions' and 'expiresOn' for Blob SAS generation when 'identifier' is not provided."); +function isASCIINumber (value) { + if (value.length === 0) return false + for (let i = 0; i < value.length; i++) { + if (value.charCodeAt(i) < 0x30 || value.charCodeAt(i) > 0x39) return false + } + return true +} + +// https://github.com/nodejs/undici/issues/2664 +function delay (ms) { + return new Promise((resolve) => { + setTimeout(resolve, ms).unref() + }) +} + +module.exports = { + isValidLastEventId, + isASCIINumber, + delay +} + + +/***/ }), + +/***/ 36682: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const util = __nccwpck_require__(83983) +const { + ReadableStreamFrom, + isBlobLike, + isReadableStreamLike, + readableStreamClose, + createDeferredPromise, + fullyReadBody, + extractMimeType, + utf8DecodeBytes +} = __nccwpck_require__(1310) +const { FormData } = __nccwpck_require__(73162) +const { kState } = __nccwpck_require__(749) +const { webidl } = __nccwpck_require__(44890) +const { Blob } = __nccwpck_require__(72254) +const assert = __nccwpck_require__(98061) +const { isErrored, isDisturbed } = __nccwpck_require__(84492) +const { isArrayBuffer } = __nccwpck_require__(93746) +const { serializeAMimeType } = __nccwpck_require__(17704) +const { multipartFormDataParser } = __nccwpck_require__(87991) +let random + +try { + const crypto = __nccwpck_require__(6005) + random = (max) => crypto.randomInt(0, max) +} catch { + random = (max) => Math.floor(Math.random(max)) +} + +const textEncoder = new TextEncoder() +function noop () {} + +const hasFinalizationRegistry = globalThis.FinalizationRegistry && process.version.indexOf('v18') !== 0 +let streamRegistry + +if (hasFinalizationRegistry) { + streamRegistry = new FinalizationRegistry((weakRef) => { + const stream = weakRef.deref() + if (stream && !stream.locked && !isDisturbed(stream) && !isErrored(stream)) { + stream.cancel('Response object has been garbage collected').catch(noop) } - let resource = "c"; - let timestamp = blobSASSignatureValues.snapshotTime; - if (blobSASSignatureValues.blobName) { - resource = "b"; - if (blobSASSignatureValues.snapshotTime) { - resource = "bs"; + }) +} + +// https://fetch.spec.whatwg.org/#concept-bodyinit-extract +function extractBody (object, keepalive = false) { + // 1. Let stream be null. + let stream = null + + // 2. If object is a ReadableStream object, then set stream to object. + if (object instanceof ReadableStream) { + stream = object + } else if (isBlobLike(object)) { + // 3. Otherwise, if object is a Blob object, set stream to the + // result of running object’s get stream. + stream = object.stream() + } else { + // 4. Otherwise, set stream to a new ReadableStream object, and set + // up stream with byte reading support. + stream = new ReadableStream({ + async pull (controller) { + const buffer = typeof source === 'string' ? textEncoder.encode(source) : source + + if (buffer.byteLength) { + controller.enqueue(buffer) } - else if (blobSASSignatureValues.versionId) { - resource = "bv"; - timestamp = blobSASSignatureValues.versionId; + + queueMicrotask(() => readableStreamClose(controller)) + }, + start () {}, + type: 'bytes' + }) + } + + // 5. Assert: stream is a ReadableStream object. + assert(isReadableStreamLike(stream)) + + // 6. Let action be null. + let action = null + + // 7. Let source be null. + let source = null + + // 8. Let length be null. + let length = null + + // 9. Let type be null. + let type = null + + // 10. Switch on object: + if (typeof object === 'string') { + // Set source to the UTF-8 encoding of object. + // Note: setting source to a Uint8Array here breaks some mocking assumptions. + source = object + + // Set type to `text/plain;charset=UTF-8`. + type = 'text/plain;charset=UTF-8' + } else if (object instanceof URLSearchParams) { + // URLSearchParams + + // spec says to run application/x-www-form-urlencoded on body.list + // this is implemented in Node.js as apart of an URLSearchParams instance toString method + // See: https://github.com/nodejs/node/blob/e46c680bf2b211bbd52cf959ca17ee98c7f657f5/lib/internal/url.js#L490 + // and https://github.com/nodejs/node/blob/e46c680bf2b211bbd52cf959ca17ee98c7f657f5/lib/internal/url.js#L1100 + + // Set source to the result of running the application/x-www-form-urlencoded serializer with object’s list. + source = object.toString() + + // Set type to `application/x-www-form-urlencoded;charset=UTF-8`. + type = 'application/x-www-form-urlencoded;charset=UTF-8' + } else if (isArrayBuffer(object)) { + // BufferSource/ArrayBuffer + + // Set source to a copy of the bytes held by object. + source = new Uint8Array(object.slice()) + } else if (ArrayBuffer.isView(object)) { + // BufferSource/ArrayBufferView + + // Set source to a copy of the bytes held by object. + source = new Uint8Array(object.buffer.slice(object.byteOffset, object.byteOffset + object.byteLength)) + } else if (util.isFormDataLike(object)) { + const boundary = `----formdata-undici-0${`${random(1e11)}`.padStart(11, '0')}` + const prefix = `--${boundary}\r\nContent-Disposition: form-data` + + /*! formdata-polyfill. MIT License. Jimmy Wärting */ + const escape = (str) => + str.replace(/\n/g, '%0A').replace(/\r/g, '%0D').replace(/"/g, '%22') + const normalizeLinefeeds = (value) => value.replace(/\r?\n|\r/g, '\r\n') + + // Set action to this step: run the multipart/form-data + // encoding algorithm, with object’s entry list and UTF-8. + // - This ensures that the body is immutable and can't be changed afterwords + // - That the content-length is calculated in advance. + // - And that all parts are pre-encoded and ready to be sent. + + const blobParts = [] + const rn = new Uint8Array([13, 10]) // '\r\n' + length = 0 + let hasUnknownSizeValue = false + + for (const [name, value] of object) { + if (typeof value === 'string') { + const chunk = textEncoder.encode(prefix + + `; name="${escape(normalizeLinefeeds(name))}"` + + `\r\n\r\n${normalizeLinefeeds(value)}\r\n`) + blobParts.push(chunk) + length += chunk.byteLength + } else { + const chunk = textEncoder.encode(`${prefix}; name="${escape(normalizeLinefeeds(name))}"` + + (value.name ? `; filename="${escape(value.name)}"` : '') + '\r\n' + + `Content-Type: ${ + value.type || 'application/octet-stream' + }\r\n\r\n`) + blobParts.push(chunk, value, rn) + if (typeof value.size === 'number') { + length += chunk.byteLength + value.size + rn.byteLength + } else { + hasUnknownSizeValue = true } + } } - // Calling parse and toString guarantees the proper ordering and throws on invalid characters. - let verifiedPermissions; - if (blobSASSignatureValues.permissions) { - if (blobSASSignatureValues.blobName) { - verifiedPermissions = BlobSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString(); - } - else { - verifiedPermissions = ContainerSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString(); + + // CRLF is appended to the body to function with legacy servers and match other implementations. + // https://github.com/curl/curl/blob/3434c6b46e682452973972e8313613dfa58cd690/lib/mime.c#L1029-L1030 + // https://github.com/form-data/form-data/issues/63 + const chunk = textEncoder.encode(`--${boundary}--\r\n`) + blobParts.push(chunk) + length += chunk.byteLength + if (hasUnknownSizeValue) { + length = null + } + + // Set source to object. + source = object + + action = async function * () { + for (const part of blobParts) { + if (part.stream) { + yield * part.stream() + } else { + yield part } + } } - // Signature is generated on the un-url-encoded values. - const stringToSign = [ - verifiedPermissions ? verifiedPermissions : "", - blobSASSignatureValues.startsOn - ? truncatedISO8061Date(blobSASSignatureValues.startsOn, false) - : "", - blobSASSignatureValues.expiresOn - ? truncatedISO8061Date(blobSASSignatureValues.expiresOn, false) - : "", - getCanonicalName(sharedKeyCredential.accountName, blobSASSignatureValues.containerName, blobSASSignatureValues.blobName), - blobSASSignatureValues.identifier, - blobSASSignatureValues.ipRange ? ipRangeToString(blobSASSignatureValues.ipRange) : "", - blobSASSignatureValues.protocol ? blobSASSignatureValues.protocol : "", - blobSASSignatureValues.version, - resource, - timestamp, - blobSASSignatureValues.cacheControl ? blobSASSignatureValues.cacheControl : "", - blobSASSignatureValues.contentDisposition ? blobSASSignatureValues.contentDisposition : "", - blobSASSignatureValues.contentEncoding ? blobSASSignatureValues.contentEncoding : "", - blobSASSignatureValues.contentLanguage ? blobSASSignatureValues.contentLanguage : "", - blobSASSignatureValues.contentType ? blobSASSignatureValues.contentType : "", - ].join("\n"); - const signature = sharedKeyCredential.computeHMACSHA256(stringToSign); - return new SASQueryParameters(blobSASSignatureValues.version, signature, verifiedPermissions, undefined, undefined, blobSASSignatureValues.protocol, blobSASSignatureValues.startsOn, blobSASSignatureValues.expiresOn, blobSASSignatureValues.ipRange, blobSASSignatureValues.identifier, resource, blobSASSignatureValues.cacheControl, blobSASSignatureValues.contentDisposition, blobSASSignatureValues.contentEncoding, blobSASSignatureValues.contentLanguage, blobSASSignatureValues.contentType); -} -/** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * IMPLEMENTATION FOR API VERSION FROM 2020-12-06. - * - * Creates an instance of SASQueryParameters. - * - * Only accepts required settings needed to create a SAS. For optional settings please - * set corresponding properties directly, such as permissions, startsOn and identifier. - * - * WARNING: When identifier is not provided, permissions and expiresOn are required. - * You MUST assign value to identifier or expiresOn & permissions manually if you initial with - * this constructor. - * - * @param blobSASSignatureValues - - * @param sharedKeyCredential - - */ -function generateBlobSASQueryParameters20201206(blobSASSignatureValues, sharedKeyCredential) { - blobSASSignatureValues = SASSignatureValuesSanityCheckAndAutofill(blobSASSignatureValues); - if (!blobSASSignatureValues.identifier && - !(blobSASSignatureValues.permissions && blobSASSignatureValues.expiresOn)) { - throw new RangeError("Must provide 'permissions' and 'expiresOn' for Blob SAS generation when 'identifier' is not provided."); + + // Set type to `multipart/form-data; boundary=`, + // followed by the multipart/form-data boundary string generated + // by the multipart/form-data encoding algorithm. + type = `multipart/form-data; boundary=${boundary}` + } else if (isBlobLike(object)) { + // Blob + + // Set source to object. + source = object + + // Set length to object’s size. + length = object.size + + // If object’s type attribute is not the empty byte sequence, set + // type to its value. + if (object.type) { + type = object.type } - let resource = "c"; - let timestamp = blobSASSignatureValues.snapshotTime; - if (blobSASSignatureValues.blobName) { - resource = "b"; - if (blobSASSignatureValues.snapshotTime) { - resource = "bs"; - } - else if (blobSASSignatureValues.versionId) { - resource = "bv"; - timestamp = blobSASSignatureValues.versionId; - } + } else if (typeof object[Symbol.asyncIterator] === 'function') { + // If keepalive is true, then throw a TypeError. + if (keepalive) { + throw new TypeError('keepalive') } - // Calling parse and toString guarantees the proper ordering and throws on invalid characters. - let verifiedPermissions; - if (blobSASSignatureValues.permissions) { - if (blobSASSignatureValues.blobName) { - verifiedPermissions = BlobSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString(); + + // If object is disturbed or locked, then throw a TypeError. + if (util.isDisturbed(object) || object.locked) { + throw new TypeError( + 'Response body object should not be disturbed or locked' + ) + } + + stream = + object instanceof ReadableStream ? object : ReadableStreamFrom(object) + } + + // 11. If source is a byte sequence, then set action to a + // step that returns source and length to source’s length. + if (typeof source === 'string' || util.isBuffer(source)) { + length = Buffer.byteLength(source) + } + + // 12. If action is non-null, then run these steps in in parallel: + if (action != null) { + // Run action. + let iterator + stream = new ReadableStream({ + async start () { + iterator = action(object)[Symbol.asyncIterator]() + }, + async pull (controller) { + const { value, done } = await iterator.next() + if (done) { + // When running action is done, close stream. + queueMicrotask(() => { + controller.close() + controller.byobRequest?.respond(0) + }) + } else { + // Whenever one or more bytes are available and stream is not errored, + // enqueue a Uint8Array wrapping an ArrayBuffer containing the available + // bytes into stream. + if (!isErrored(stream)) { + const buffer = new Uint8Array(value) + if (buffer.byteLength) { + controller.enqueue(buffer) + } + } } - else { - verifiedPermissions = ContainerSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString(); + return controller.desiredSize > 0 + }, + async cancel (reason) { + await iterator.return() + }, + type: 'bytes' + }) + } + + // 13. Let body be a body whose stream is stream, source is source, + // and length is length. + const body = { stream, source, length } + + // 14. Return (body, type). + return [body, type] +} + +// https://fetch.spec.whatwg.org/#bodyinit-safely-extract +function safelyExtractBody (object, keepalive = false) { + // To safely extract a body and a `Content-Type` value from + // a byte sequence or BodyInit object object, run these steps: + + // 1. If object is a ReadableStream object, then: + if (object instanceof ReadableStream) { + // Assert: object is neither disturbed nor locked. + // istanbul ignore next + assert(!util.isDisturbed(object), 'The body has already been consumed.') + // istanbul ignore next + assert(!object.locked, 'The stream is locked.') + } + + // 2. Return the results of extracting object. + return extractBody(object, keepalive) +} + +function cloneBody (instance, body) { + // To clone a body body, run these steps: + + // https://fetch.spec.whatwg.org/#concept-body-clone + + // 1. Let « out1, out2 » be the result of teeing body’s stream. + const [out1, out2] = body.stream.tee() + + // 2. Set body’s stream to out1. + body.stream = out1 + + // 3. Return a body whose stream is out2 and other members are copied from body. + return { + stream: out2, + length: body.length, + source: body.source + } +} + +function throwIfAborted (state) { + if (state.aborted) { + throw new DOMException('The operation was aborted.', 'AbortError') + } +} + +function bodyMixinMethods (instance) { + const methods = { + blob () { + // The blob() method steps are to return the result of + // running consume body with this and the following step + // given a byte sequence bytes: return a Blob whose + // contents are bytes and whose type attribute is this’s + // MIME type. + return consumeBody(this, (bytes) => { + let mimeType = bodyMimeType(this) + + if (mimeType === null) { + mimeType = '' + } else if (mimeType) { + mimeType = serializeAMimeType(mimeType) + } + + // Return a Blob whose contents are bytes and type attribute + // is mimeType. + return new Blob([bytes], { type: mimeType }) + }, instance) + }, + + arrayBuffer () { + // The arrayBuffer() method steps are to return the result + // of running consume body with this and the following step + // given a byte sequence bytes: return a new ArrayBuffer + // whose contents are bytes. + return consumeBody(this, (bytes) => { + return new Uint8Array(bytes).buffer + }, instance) + }, + + text () { + // The text() method steps are to return the result of running + // consume body with this and UTF-8 decode. + return consumeBody(this, utf8DecodeBytes, instance) + }, + + json () { + // The json() method steps are to return the result of running + // consume body with this and parse JSON from bytes. + return consumeBody(this, parseJSONFromBytes, instance) + }, + + formData () { + // The formData() method steps are to return the result of running + // consume body with this and the following step given a byte sequence bytes: + return consumeBody(this, (value) => { + // 1. Let mimeType be the result of get the MIME type with this. + const mimeType = bodyMimeType(this) + + // 2. If mimeType is non-null, then switch on mimeType’s essence and run + // the corresponding steps: + if (mimeType !== null) { + switch (mimeType.essence) { + case 'multipart/form-data': { + // 1. ... [long step] + const parsed = multipartFormDataParser(value, mimeType) + + // 2. If that fails for some reason, then throw a TypeError. + if (parsed === 'failure') { + throw new TypeError('Failed to parse body as FormData.') + } + + // 3. Return a new FormData object, appending each entry, + // resulting from the parsing operation, to its entry list. + const fd = new FormData() + fd[kState] = parsed + + return fd + } + case 'application/x-www-form-urlencoded': { + // 1. Let entries be the result of parsing bytes. + const entries = new URLSearchParams(value.toString()) + + // 2. If entries is failure, then throw a TypeError. + + // 3. Return a new FormData object whose entry list is entries. + const fd = new FormData() + + for (const [name, value] of entries) { + fd.append(name, value) + } + + return fd + } + } } + + // 3. Throw a TypeError. + throw new TypeError( + 'Content-Type was not one of "multipart/form-data" or "application/x-www-form-urlencoded".' + ) + }, instance) + }, + + bytes () { + // The bytes() method steps are to return the result of running consume body + // with this and the following step given a byte sequence bytes: return the + // result of creating a Uint8Array from bytes in this’s relevant realm. + return consumeBody(this, (bytes) => { + return new Uint8Array(bytes) + }, instance) } - // Signature is generated on the un-url-encoded values. - const stringToSign = [ - verifiedPermissions ? verifiedPermissions : "", - blobSASSignatureValues.startsOn - ? truncatedISO8061Date(blobSASSignatureValues.startsOn, false) - : "", - blobSASSignatureValues.expiresOn - ? truncatedISO8061Date(blobSASSignatureValues.expiresOn, false) - : "", - getCanonicalName(sharedKeyCredential.accountName, blobSASSignatureValues.containerName, blobSASSignatureValues.blobName), - blobSASSignatureValues.identifier, - blobSASSignatureValues.ipRange ? ipRangeToString(blobSASSignatureValues.ipRange) : "", - blobSASSignatureValues.protocol ? blobSASSignatureValues.protocol : "", - blobSASSignatureValues.version, - resource, - timestamp, - blobSASSignatureValues.encryptionScope, - blobSASSignatureValues.cacheControl ? blobSASSignatureValues.cacheControl : "", - blobSASSignatureValues.contentDisposition ? blobSASSignatureValues.contentDisposition : "", - blobSASSignatureValues.contentEncoding ? blobSASSignatureValues.contentEncoding : "", - blobSASSignatureValues.contentLanguage ? blobSASSignatureValues.contentLanguage : "", - blobSASSignatureValues.contentType ? blobSASSignatureValues.contentType : "", - ].join("\n"); - const signature = sharedKeyCredential.computeHMACSHA256(stringToSign); - return new SASQueryParameters(blobSASSignatureValues.version, signature, verifiedPermissions, undefined, undefined, blobSASSignatureValues.protocol, blobSASSignatureValues.startsOn, blobSASSignatureValues.expiresOn, blobSASSignatureValues.ipRange, blobSASSignatureValues.identifier, resource, blobSASSignatureValues.cacheControl, blobSASSignatureValues.contentDisposition, blobSASSignatureValues.contentEncoding, blobSASSignatureValues.contentLanguage, blobSASSignatureValues.contentType, undefined, undefined, undefined, blobSASSignatureValues.encryptionScope); + } + + return methods +} + +function mixinBody (prototype) { + Object.assign(prototype.prototype, bodyMixinMethods(prototype)) } + /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * IMPLEMENTATION FOR API VERSION FROM 2018-11-09. - * - * Creates an instance of SASQueryParameters. - * - * Only accepts required settings needed to create a SAS. For optional settings please - * set corresponding properties directly, such as permissions, startsOn. - * - * WARNING: identifier will be ignored, permissions and expiresOn are required. - * - * @param blobSASSignatureValues - - * @param userDelegationKeyCredential - + * @see https://fetch.spec.whatwg.org/#concept-body-consume-body + * @param {Response|Request} object + * @param {(value: unknown) => unknown} convertBytesToJSValue + * @param {Response|Request} instance */ -function generateBlobSASQueryParametersUDK20181109(blobSASSignatureValues, userDelegationKeyCredential) { - blobSASSignatureValues = SASSignatureValuesSanityCheckAndAutofill(blobSASSignatureValues); - // Stored access policies are not supported for a user delegation SAS. - if (!blobSASSignatureValues.permissions || !blobSASSignatureValues.expiresOn) { - throw new RangeError("Must provide 'permissions' and 'expiresOn' for Blob SAS generation when generating user delegation SAS."); +async function consumeBody (object, convertBytesToJSValue, instance) { + webidl.brandCheck(object, instance) + + // 1. If object is unusable, then return a promise rejected + // with a TypeError. + if (bodyUnusable(object)) { + throw new TypeError('Body is unusable: Body has already been read') + } + + throwIfAborted(object[kState]) + + // 2. Let promise be a new promise. + const promise = createDeferredPromise() + + // 3. Let errorSteps given error be to reject promise with error. + const errorSteps = (error) => promise.reject(error) + + // 4. Let successSteps given a byte sequence data be to resolve + // promise with the result of running convertBytesToJSValue + // with data. If that threw an exception, then run errorSteps + // with that exception. + const successSteps = (data) => { + try { + promise.resolve(convertBytesToJSValue(data)) + } catch (e) { + errorSteps(e) } - let resource = "c"; - let timestamp = blobSASSignatureValues.snapshotTime; - if (blobSASSignatureValues.blobName) { - resource = "b"; - if (blobSASSignatureValues.snapshotTime) { - resource = "bs"; - } - else if (blobSASSignatureValues.versionId) { - resource = "bv"; - timestamp = blobSASSignatureValues.versionId; - } - } - // Calling parse and toString guarantees the proper ordering and throws on invalid characters. - let verifiedPermissions; - if (blobSASSignatureValues.permissions) { - if (blobSASSignatureValues.blobName) { - verifiedPermissions = BlobSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString(); - } - else { - verifiedPermissions = ContainerSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString(); - } - } - // Signature is generated on the un-url-encoded values. - const stringToSign = [ - verifiedPermissions ? verifiedPermissions : "", - blobSASSignatureValues.startsOn - ? truncatedISO8061Date(blobSASSignatureValues.startsOn, false) - : "", - blobSASSignatureValues.expiresOn - ? truncatedISO8061Date(blobSASSignatureValues.expiresOn, false) - : "", - getCanonicalName(userDelegationKeyCredential.accountName, blobSASSignatureValues.containerName, blobSASSignatureValues.blobName), - userDelegationKeyCredential.userDelegationKey.signedObjectId, - userDelegationKeyCredential.userDelegationKey.signedTenantId, - userDelegationKeyCredential.userDelegationKey.signedStartsOn - ? truncatedISO8061Date(userDelegationKeyCredential.userDelegationKey.signedStartsOn, false) - : "", - userDelegationKeyCredential.userDelegationKey.signedExpiresOn - ? truncatedISO8061Date(userDelegationKeyCredential.userDelegationKey.signedExpiresOn, false) - : "", - userDelegationKeyCredential.userDelegationKey.signedService, - userDelegationKeyCredential.userDelegationKey.signedVersion, - blobSASSignatureValues.ipRange ? ipRangeToString(blobSASSignatureValues.ipRange) : "", - blobSASSignatureValues.protocol ? blobSASSignatureValues.protocol : "", - blobSASSignatureValues.version, - resource, - timestamp, - blobSASSignatureValues.cacheControl, - blobSASSignatureValues.contentDisposition, - blobSASSignatureValues.contentEncoding, - blobSASSignatureValues.contentLanguage, - blobSASSignatureValues.contentType, - ].join("\n"); - const signature = userDelegationKeyCredential.computeHMACSHA256(stringToSign); - return new SASQueryParameters(blobSASSignatureValues.version, signature, verifiedPermissions, undefined, undefined, blobSASSignatureValues.protocol, blobSASSignatureValues.startsOn, blobSASSignatureValues.expiresOn, blobSASSignatureValues.ipRange, blobSASSignatureValues.identifier, resource, blobSASSignatureValues.cacheControl, blobSASSignatureValues.contentDisposition, blobSASSignatureValues.contentEncoding, blobSASSignatureValues.contentLanguage, blobSASSignatureValues.contentType, userDelegationKeyCredential.userDelegationKey); + } + + // 5. If object’s body is null, then run successSteps with an + // empty byte sequence. + if (object[kState].body == null) { + successSteps(Buffer.allocUnsafe(0)) + return promise.promise + } + + // 6. Otherwise, fully read object’s body given successSteps, + // errorSteps, and object’s relevant global object. + await fullyReadBody(object[kState].body, successSteps, errorSteps) + + // 7. Return promise. + return promise.promise +} + +// https://fetch.spec.whatwg.org/#body-unusable +function bodyUnusable (object) { + const body = object[kState].body + + // An object including the Body interface mixin is + // said to be unusable if its body is non-null and + // its body’s stream is disturbed or locked. + return body != null && (body.stream.locked || util.isDisturbed(body.stream)) } + /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * IMPLEMENTATION FOR API VERSION FROM 2020-02-10. - * - * Creates an instance of SASQueryParameters. - * - * Only accepts required settings needed to create a SAS. For optional settings please - * set corresponding properties directly, such as permissions, startsOn. - * - * WARNING: identifier will be ignored, permissions and expiresOn are required. - * - * @param blobSASSignatureValues - - * @param userDelegationKeyCredential - + * @see https://infra.spec.whatwg.org/#parse-json-bytes-to-a-javascript-value + * @param {Uint8Array} bytes */ -function generateBlobSASQueryParametersUDK20200210(blobSASSignatureValues, userDelegationKeyCredential) { - blobSASSignatureValues = SASSignatureValuesSanityCheckAndAutofill(blobSASSignatureValues); - // Stored access policies are not supported for a user delegation SAS. - if (!blobSASSignatureValues.permissions || !blobSASSignatureValues.expiresOn) { - throw new RangeError("Must provide 'permissions' and 'expiresOn' for Blob SAS generation when generating user delegation SAS."); - } - let resource = "c"; - let timestamp = blobSASSignatureValues.snapshotTime; - if (blobSASSignatureValues.blobName) { - resource = "b"; - if (blobSASSignatureValues.snapshotTime) { - resource = "bs"; - } - else if (blobSASSignatureValues.versionId) { - resource = "bv"; - timestamp = blobSASSignatureValues.versionId; - } - } - // Calling parse and toString guarantees the proper ordering and throws on invalid characters. - let verifiedPermissions; - if (blobSASSignatureValues.permissions) { - if (blobSASSignatureValues.blobName) { - verifiedPermissions = BlobSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString(); - } - else { - verifiedPermissions = ContainerSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString(); - } - } - // Signature is generated on the un-url-encoded values. - const stringToSign = [ - verifiedPermissions ? verifiedPermissions : "", - blobSASSignatureValues.startsOn - ? truncatedISO8061Date(blobSASSignatureValues.startsOn, false) - : "", - blobSASSignatureValues.expiresOn - ? truncatedISO8061Date(blobSASSignatureValues.expiresOn, false) - : "", - getCanonicalName(userDelegationKeyCredential.accountName, blobSASSignatureValues.containerName, blobSASSignatureValues.blobName), - userDelegationKeyCredential.userDelegationKey.signedObjectId, - userDelegationKeyCredential.userDelegationKey.signedTenantId, - userDelegationKeyCredential.userDelegationKey.signedStartsOn - ? truncatedISO8061Date(userDelegationKeyCredential.userDelegationKey.signedStartsOn, false) - : "", - userDelegationKeyCredential.userDelegationKey.signedExpiresOn - ? truncatedISO8061Date(userDelegationKeyCredential.userDelegationKey.signedExpiresOn, false) - : "", - userDelegationKeyCredential.userDelegationKey.signedService, - userDelegationKeyCredential.userDelegationKey.signedVersion, - blobSASSignatureValues.preauthorizedAgentObjectId, - undefined, - blobSASSignatureValues.correlationId, - blobSASSignatureValues.ipRange ? ipRangeToString(blobSASSignatureValues.ipRange) : "", - blobSASSignatureValues.protocol ? blobSASSignatureValues.protocol : "", - blobSASSignatureValues.version, - resource, - timestamp, - blobSASSignatureValues.cacheControl, - blobSASSignatureValues.contentDisposition, - blobSASSignatureValues.contentEncoding, - blobSASSignatureValues.contentLanguage, - blobSASSignatureValues.contentType, - ].join("\n"); - const signature = userDelegationKeyCredential.computeHMACSHA256(stringToSign); - return new SASQueryParameters(blobSASSignatureValues.version, signature, verifiedPermissions, undefined, undefined, blobSASSignatureValues.protocol, blobSASSignatureValues.startsOn, blobSASSignatureValues.expiresOn, blobSASSignatureValues.ipRange, blobSASSignatureValues.identifier, resource, blobSASSignatureValues.cacheControl, blobSASSignatureValues.contentDisposition, blobSASSignatureValues.contentEncoding, blobSASSignatureValues.contentLanguage, blobSASSignatureValues.contentType, userDelegationKeyCredential.userDelegationKey, blobSASSignatureValues.preauthorizedAgentObjectId, blobSASSignatureValues.correlationId); +function parseJSONFromBytes (bytes) { + return JSON.parse(utf8DecodeBytes(bytes)) } + /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * IMPLEMENTATION FOR API VERSION FROM 2020-12-06. - * - * Creates an instance of SASQueryParameters. - * - * Only accepts required settings needed to create a SAS. For optional settings please - * set corresponding properties directly, such as permissions, startsOn. - * - * WARNING: identifier will be ignored, permissions and expiresOn are required. - * - * @param blobSASSignatureValues - - * @param userDelegationKeyCredential - + * @see https://fetch.spec.whatwg.org/#concept-body-mime-type + * @param {import('./response').Response|import('./request').Request} requestOrResponse */ -function generateBlobSASQueryParametersUDK20201206(blobSASSignatureValues, userDelegationKeyCredential) { - blobSASSignatureValues = SASSignatureValuesSanityCheckAndAutofill(blobSASSignatureValues); - // Stored access policies are not supported for a user delegation SAS. - if (!blobSASSignatureValues.permissions || !blobSASSignatureValues.expiresOn) { - throw new RangeError("Must provide 'permissions' and 'expiresOn' for Blob SAS generation when generating user delegation SAS."); - } - let resource = "c"; - let timestamp = blobSASSignatureValues.snapshotTime; - if (blobSASSignatureValues.blobName) { - resource = "b"; - if (blobSASSignatureValues.snapshotTime) { - resource = "bs"; - } - else if (blobSASSignatureValues.versionId) { - resource = "bv"; - timestamp = blobSASSignatureValues.versionId; - } - } - // Calling parse and toString guarantees the proper ordering and throws on invalid characters. - let verifiedPermissions; - if (blobSASSignatureValues.permissions) { - if (blobSASSignatureValues.blobName) { - verifiedPermissions = BlobSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString(); - } - else { - verifiedPermissions = ContainerSASPermissions.parse(blobSASSignatureValues.permissions.toString()).toString(); - } - } - // Signature is generated on the un-url-encoded values. - const stringToSign = [ - verifiedPermissions ? verifiedPermissions : "", - blobSASSignatureValues.startsOn - ? truncatedISO8061Date(blobSASSignatureValues.startsOn, false) - : "", - blobSASSignatureValues.expiresOn - ? truncatedISO8061Date(blobSASSignatureValues.expiresOn, false) - : "", - getCanonicalName(userDelegationKeyCredential.accountName, blobSASSignatureValues.containerName, blobSASSignatureValues.blobName), - userDelegationKeyCredential.userDelegationKey.signedObjectId, - userDelegationKeyCredential.userDelegationKey.signedTenantId, - userDelegationKeyCredential.userDelegationKey.signedStartsOn - ? truncatedISO8061Date(userDelegationKeyCredential.userDelegationKey.signedStartsOn, false) - : "", - userDelegationKeyCredential.userDelegationKey.signedExpiresOn - ? truncatedISO8061Date(userDelegationKeyCredential.userDelegationKey.signedExpiresOn, false) - : "", - userDelegationKeyCredential.userDelegationKey.signedService, - userDelegationKeyCredential.userDelegationKey.signedVersion, - blobSASSignatureValues.preauthorizedAgentObjectId, - undefined, - blobSASSignatureValues.correlationId, - blobSASSignatureValues.ipRange ? ipRangeToString(blobSASSignatureValues.ipRange) : "", - blobSASSignatureValues.protocol ? blobSASSignatureValues.protocol : "", - blobSASSignatureValues.version, - resource, - timestamp, - blobSASSignatureValues.encryptionScope, - blobSASSignatureValues.cacheControl, - blobSASSignatureValues.contentDisposition, - blobSASSignatureValues.contentEncoding, - blobSASSignatureValues.contentLanguage, - blobSASSignatureValues.contentType, - ].join("\n"); - const signature = userDelegationKeyCredential.computeHMACSHA256(stringToSign); - return new SASQueryParameters(blobSASSignatureValues.version, signature, verifiedPermissions, undefined, undefined, blobSASSignatureValues.protocol, blobSASSignatureValues.startsOn, blobSASSignatureValues.expiresOn, blobSASSignatureValues.ipRange, blobSASSignatureValues.identifier, resource, blobSASSignatureValues.cacheControl, blobSASSignatureValues.contentDisposition, blobSASSignatureValues.contentEncoding, blobSASSignatureValues.contentLanguage, blobSASSignatureValues.contentType, userDelegationKeyCredential.userDelegationKey, blobSASSignatureValues.preauthorizedAgentObjectId, blobSASSignatureValues.correlationId, blobSASSignatureValues.encryptionScope); +function bodyMimeType (requestOrResponse) { + // 1. Let headers be null. + // 2. If requestOrResponse is a Request object, then set headers to requestOrResponse’s request’s header list. + // 3. Otherwise, set headers to requestOrResponse’s response’s header list. + /** @type {import('./headers').HeadersList} */ + const headers = requestOrResponse[kState].headersList + + // 4. Let mimeType be the result of extracting a MIME type from headers. + const mimeType = extractMimeType(headers) + + // 5. If mimeType is failure, then return null. + if (mimeType === 'failure') { + return null + } + + // 6. Return mimeType. + return mimeType } -function getCanonicalName(accountName, containerName, blobName) { - // Container: "/blob/account/containerName" - // Blob: "/blob/account/containerName/blobName" - const elements = [`/blob/${accountName}/${containerName}`]; - if (blobName) { - elements.push(`/${blobName}`); - } - return elements.join(""); + +module.exports = { + extractBody, + safelyExtractBody, + cloneBody, + mixinBody, + streamRegistry, + hasFinalizationRegistry, + bodyUnusable } -function SASSignatureValuesSanityCheckAndAutofill(blobSASSignatureValues) { - const version = blobSASSignatureValues.version ? blobSASSignatureValues.version : SERVICE_VERSION; - if (blobSASSignatureValues.snapshotTime && version < "2018-11-09") { - throw RangeError("'version' must be >= '2018-11-09' when providing 'snapshotTime'."); - } - if (blobSASSignatureValues.blobName === undefined && blobSASSignatureValues.snapshotTime) { - throw RangeError("Must provide 'blobName' when providing 'snapshotTime'."); - } - if (blobSASSignatureValues.versionId && version < "2019-10-10") { - throw RangeError("'version' must be >= '2019-10-10' when providing 'versionId'."); - } - if (blobSASSignatureValues.blobName === undefined && blobSASSignatureValues.versionId) { - throw RangeError("Must provide 'blobName' when providing 'versionId'."); + + +/***/ }), + +/***/ 68160: +/***/ ((module) => { + +"use strict"; + + +const corsSafeListedMethods = /** @type {const} */ (['GET', 'HEAD', 'POST']) +const corsSafeListedMethodsSet = new Set(corsSafeListedMethods) + +const nullBodyStatus = /** @type {const} */ ([101, 204, 205, 304]) + +const redirectStatus = /** @type {const} */ ([301, 302, 303, 307, 308]) +const redirectStatusSet = new Set(redirectStatus) + +/** + * @see https://fetch.spec.whatwg.org/#block-bad-port + */ +const badPorts = /** @type {const} */ ([ + '1', '7', '9', '11', '13', '15', '17', '19', '20', '21', '22', '23', '25', '37', '42', '43', '53', '69', '77', '79', + '87', '95', '101', '102', '103', '104', '109', '110', '111', '113', '115', '117', '119', '123', '135', '137', + '139', '143', '161', '179', '389', '427', '465', '512', '513', '514', '515', '526', '530', '531', '532', + '540', '548', '554', '556', '563', '587', '601', '636', '989', '990', '993', '995', '1719', '1720', '1723', + '2049', '3659', '4045', '4190', '5060', '5061', '6000', '6566', '6665', '6666', '6667', '6668', '6669', '6679', + '6697', '10080' +]) +const badPortsSet = new Set(badPorts) + +/** + * @see https://w3c.github.io/webappsec-referrer-policy/#referrer-policies + */ +const referrerPolicy = /** @type {const} */ ([ + '', + 'no-referrer', + 'no-referrer-when-downgrade', + 'same-origin', + 'origin', + 'strict-origin', + 'origin-when-cross-origin', + 'strict-origin-when-cross-origin', + 'unsafe-url' +]) +const referrerPolicySet = new Set(referrerPolicy) + +const requestRedirect = /** @type {const} */ (['follow', 'manual', 'error']) + +const safeMethods = /** @type {const} */ (['GET', 'HEAD', 'OPTIONS', 'TRACE']) +const safeMethodsSet = new Set(safeMethods) + +const requestMode = /** @type {const} */ (['navigate', 'same-origin', 'no-cors', 'cors']) + +const requestCredentials = /** @type {const} */ (['omit', 'same-origin', 'include']) + +const requestCache = /** @type {const} */ ([ + 'default', + 'no-store', + 'reload', + 'no-cache', + 'force-cache', + 'only-if-cached' +]) + +/** + * @see https://fetch.spec.whatwg.org/#request-body-header-name + */ +const requestBodyHeader = /** @type {const} */ ([ + 'content-encoding', + 'content-language', + 'content-location', + 'content-type', + // See https://github.com/nodejs/undici/issues/2021 + // 'Content-Length' is a forbidden header name, which is typically + // removed in the Headers implementation. However, undici doesn't + // filter out headers, so we add it here. + 'content-length' +]) + +/** + * @see https://fetch.spec.whatwg.org/#enumdef-requestduplex + */ +const requestDuplex = /** @type {const} */ ([ + 'half' +]) + +/** + * @see http://fetch.spec.whatwg.org/#forbidden-method + */ +const forbiddenMethods = /** @type {const} */ (['CONNECT', 'TRACE', 'TRACK']) +const forbiddenMethodsSet = new Set(forbiddenMethods) + +const subresource = /** @type {const} */ ([ + 'audio', + 'audioworklet', + 'font', + 'image', + 'manifest', + 'paintworklet', + 'script', + 'style', + 'track', + 'video', + 'xslt', + '' +]) +const subresourceSet = new Set(subresource) + +module.exports = { + subresource, + forbiddenMethods, + requestBodyHeader, + referrerPolicy, + requestRedirect, + requestMode, + requestCredentials, + requestCache, + redirectStatus, + corsSafeListedMethods, + nullBodyStatus, + safeMethods, + badPorts, + requestDuplex, + subresourceSet, + badPortsSet, + redirectStatusSet, + corsSafeListedMethodsSet, + safeMethodsSet, + forbiddenMethodsSet, + referrerPolicySet +} + + +/***/ }), + +/***/ 17704: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const assert = __nccwpck_require__(98061) + +const encoder = new TextEncoder() + +/** + * @see https://mimesniff.spec.whatwg.org/#http-token-code-point + */ +const HTTP_TOKEN_CODEPOINTS = /^[!#$%&'*+\-.^_|~A-Za-z0-9]+$/ +const HTTP_WHITESPACE_REGEX = /[\u000A\u000D\u0009\u0020]/ // eslint-disable-line +const ASCII_WHITESPACE_REPLACE_REGEX = /[\u0009\u000A\u000C\u000D\u0020]/g // eslint-disable-line +/** + * @see https://mimesniff.spec.whatwg.org/#http-quoted-string-token-code-point + */ +const HTTP_QUOTED_STRING_TOKENS = /^[\u0009\u0020-\u007E\u0080-\u00FF]+$/ // eslint-disable-line + +// https://fetch.spec.whatwg.org/#data-url-processor +/** @param {URL} dataURL */ +function dataURLProcessor (dataURL) { + // 1. Assert: dataURL’s scheme is "data". + assert(dataURL.protocol === 'data:') + + // 2. Let input be the result of running the URL + // serializer on dataURL with exclude fragment + // set to true. + let input = URLSerializer(dataURL, true) + + // 3. Remove the leading "data:" string from input. + input = input.slice(5) + + // 4. Let position point at the start of input. + const position = { position: 0 } + + // 5. Let mimeType be the result of collecting a + // sequence of code points that are not equal + // to U+002C (,), given position. + let mimeType = collectASequenceOfCodePointsFast( + ',', + input, + position + ) + + // 6. Strip leading and trailing ASCII whitespace + // from mimeType. + // Undici implementation note: we need to store the + // length because if the mimetype has spaces removed, + // the wrong amount will be sliced from the input in + // step #9 + const mimeTypeLength = mimeType.length + mimeType = removeASCIIWhitespace(mimeType, true, true) + + // 7. If position is past the end of input, then + // return failure + if (position.position >= input.length) { + return 'failure' + } + + // 8. Advance position by 1. + position.position++ + + // 9. Let encodedBody be the remainder of input. + const encodedBody = input.slice(mimeTypeLength + 1) + + // 10. Let body be the percent-decoding of encodedBody. + let body = stringPercentDecode(encodedBody) + + // 11. If mimeType ends with U+003B (;), followed by + // zero or more U+0020 SPACE, followed by an ASCII + // case-insensitive match for "base64", then: + if (/;(\u0020){0,}base64$/i.test(mimeType)) { + // 1. Let stringBody be the isomorphic decode of body. + const stringBody = isomorphicDecode(body) + + // 2. Set body to the forgiving-base64 decode of + // stringBody. + body = forgivingBase64(stringBody) + + // 3. If body is failure, then return failure. + if (body === 'failure') { + return 'failure' } - if (blobSASSignatureValues.permissions && - blobSASSignatureValues.permissions.setImmutabilityPolicy && - version < "2020-08-04") { - throw RangeError("'version' must be >= '2020-08-04' when provided 'i' permission."); + + // 4. Remove the last 6 code points from mimeType. + mimeType = mimeType.slice(0, -6) + + // 5. Remove trailing U+0020 SPACE code points from mimeType, + // if any. + mimeType = mimeType.replace(/(\u0020)+$/, '') + + // 6. Remove the last U+003B (;) code point from mimeType. + mimeType = mimeType.slice(0, -1) + } + + // 12. If mimeType starts with U+003B (;), then prepend + // "text/plain" to mimeType. + if (mimeType.startsWith(';')) { + mimeType = 'text/plain' + mimeType + } + + // 13. Let mimeTypeRecord be the result of parsing + // mimeType. + let mimeTypeRecord = parseMIMEType(mimeType) + + // 14. If mimeTypeRecord is failure, then set + // mimeTypeRecord to text/plain;charset=US-ASCII. + if (mimeTypeRecord === 'failure') { + mimeTypeRecord = parseMIMEType('text/plain;charset=US-ASCII') + } + + // 15. Return a new data: URL struct whose MIME + // type is mimeTypeRecord and body is body. + // https://fetch.spec.whatwg.org/#data-url-struct + return { mimeType: mimeTypeRecord, body } +} + +// https://url.spec.whatwg.org/#concept-url-serializer +/** + * @param {URL} url + * @param {boolean} excludeFragment + */ +function URLSerializer (url, excludeFragment = false) { + if (!excludeFragment) { + return url.href + } + + const href = url.href + const hashLength = url.hash.length + + const serialized = hashLength === 0 ? href : href.substring(0, href.length - hashLength) + + if (!hashLength && href.endsWith('#')) { + return serialized.slice(0, -1) + } + + return serialized +} + +// https://infra.spec.whatwg.org/#collect-a-sequence-of-code-points +/** + * @param {(char: string) => boolean} condition + * @param {string} input + * @param {{ position: number }} position + */ +function collectASequenceOfCodePoints (condition, input, position) { + // 1. Let result be the empty string. + let result = '' + + // 2. While position doesn’t point past the end of input and the + // code point at position within input meets the condition condition: + while (position.position < input.length && condition(input[position.position])) { + // 1. Append that code point to the end of result. + result += input[position.position] + + // 2. Advance position by 1. + position.position++ + } + + // 3. Return result. + return result +} + +/** + * A faster collectASequenceOfCodePoints that only works when comparing a single character. + * @param {string} char + * @param {string} input + * @param {{ position: number }} position + */ +function collectASequenceOfCodePointsFast (char, input, position) { + const idx = input.indexOf(char, position.position) + const start = position.position + + if (idx === -1) { + position.position = input.length + return input.slice(start) + } + + position.position = idx + return input.slice(start, position.position) +} + +// https://url.spec.whatwg.org/#string-percent-decode +/** @param {string} input */ +function stringPercentDecode (input) { + // 1. Let bytes be the UTF-8 encoding of input. + const bytes = encoder.encode(input) + + // 2. Return the percent-decoding of bytes. + return percentDecode(bytes) +} + +/** + * @param {number} byte + */ +function isHexCharByte (byte) { + // 0-9 A-F a-f + return (byte >= 0x30 && byte <= 0x39) || (byte >= 0x41 && byte <= 0x46) || (byte >= 0x61 && byte <= 0x66) +} + +/** + * @param {number} byte + */ +function hexByteToNumber (byte) { + return ( + // 0-9 + byte >= 0x30 && byte <= 0x39 + ? (byte - 48) + // Convert to uppercase + // ((byte & 0xDF) - 65) + 10 + : ((byte & 0xDF) - 55) + ) +} + +// https://url.spec.whatwg.org/#percent-decode +/** @param {Uint8Array} input */ +function percentDecode (input) { + const length = input.length + // 1. Let output be an empty byte sequence. + /** @type {Uint8Array} */ + const output = new Uint8Array(length) + let j = 0 + // 2. For each byte byte in input: + for (let i = 0; i < length; ++i) { + const byte = input[i] + + // 1. If byte is not 0x25 (%), then append byte to output. + if (byte !== 0x25) { + output[j++] = byte + + // 2. Otherwise, if byte is 0x25 (%) and the next two bytes + // after byte in input are not in the ranges + // 0x30 (0) to 0x39 (9), 0x41 (A) to 0x46 (F), + // and 0x61 (a) to 0x66 (f), all inclusive, append byte + // to output. + } else if ( + byte === 0x25 && + !(isHexCharByte(input[i + 1]) && isHexCharByte(input[i + 2])) + ) { + output[j++] = 0x25 + + // 3. Otherwise: + } else { + // 1. Let bytePoint be the two bytes after byte in input, + // decoded, and then interpreted as hexadecimal number. + // 2. Append a byte whose value is bytePoint to output. + output[j++] = (hexByteToNumber(input[i + 1]) << 4) | hexByteToNumber(input[i + 2]) + + // 3. Skip the next two bytes in input. + i += 2 + } + } + + // 3. Return output. + return length === j ? output : output.subarray(0, j) +} + +// https://mimesniff.spec.whatwg.org/#parse-a-mime-type +/** @param {string} input */ +function parseMIMEType (input) { + // 1. Remove any leading and trailing HTTP whitespace + // from input. + input = removeHTTPWhitespace(input, true, true) + + // 2. Let position be a position variable for input, + // initially pointing at the start of input. + const position = { position: 0 } + + // 3. Let type be the result of collecting a sequence + // of code points that are not U+002F (/) from + // input, given position. + const type = collectASequenceOfCodePointsFast( + '/', + input, + position + ) + + // 4. If type is the empty string or does not solely + // contain HTTP token code points, then return failure. + // https://mimesniff.spec.whatwg.org/#http-token-code-point + if (type.length === 0 || !HTTP_TOKEN_CODEPOINTS.test(type)) { + return 'failure' + } + + // 5. If position is past the end of input, then return + // failure + if (position.position > input.length) { + return 'failure' + } + + // 6. Advance position by 1. (This skips past U+002F (/).) + position.position++ + + // 7. Let subtype be the result of collecting a sequence of + // code points that are not U+003B (;) from input, given + // position. + let subtype = collectASequenceOfCodePointsFast( + ';', + input, + position + ) + + // 8. Remove any trailing HTTP whitespace from subtype. + subtype = removeHTTPWhitespace(subtype, false, true) + + // 9. If subtype is the empty string or does not solely + // contain HTTP token code points, then return failure. + if (subtype.length === 0 || !HTTP_TOKEN_CODEPOINTS.test(subtype)) { + return 'failure' + } + + const typeLowercase = type.toLowerCase() + const subtypeLowercase = subtype.toLowerCase() + + // 10. Let mimeType be a new MIME type record whose type + // is type, in ASCII lowercase, and subtype is subtype, + // in ASCII lowercase. + // https://mimesniff.spec.whatwg.org/#mime-type + const mimeType = { + type: typeLowercase, + subtype: subtypeLowercase, + /** @type {Map} */ + parameters: new Map(), + // https://mimesniff.spec.whatwg.org/#mime-type-essence + essence: `${typeLowercase}/${subtypeLowercase}` + } + + // 11. While position is not past the end of input: + while (position.position < input.length) { + // 1. Advance position by 1. (This skips past U+003B (;).) + position.position++ + + // 2. Collect a sequence of code points that are HTTP + // whitespace from input given position. + collectASequenceOfCodePoints( + // https://fetch.spec.whatwg.org/#http-whitespace + char => HTTP_WHITESPACE_REGEX.test(char), + input, + position + ) + + // 3. Let parameterName be the result of collecting a + // sequence of code points that are not U+003B (;) + // or U+003D (=) from input, given position. + let parameterName = collectASequenceOfCodePoints( + (char) => char !== ';' && char !== '=', + input, + position + ) + + // 4. Set parameterName to parameterName, in ASCII + // lowercase. + parameterName = parameterName.toLowerCase() + + // 5. If position is not past the end of input, then: + if (position.position < input.length) { + // 1. If the code point at position within input is + // U+003B (;), then continue. + if (input[position.position] === ';') { + continue + } + + // 2. Advance position by 1. (This skips past U+003D (=).) + position.position++ } - if (blobSASSignatureValues.permissions && - blobSASSignatureValues.permissions.deleteVersion && - version < "2019-10-10") { - throw RangeError("'version' must be >= '2019-10-10' when providing 'x' permission."); + + // 6. If position is past the end of input, then break. + if (position.position > input.length) { + break } - if (blobSASSignatureValues.permissions && - blobSASSignatureValues.permissions.permanentDelete && - version < "2019-10-10") { - throw RangeError("'version' must be >= '2019-10-10' when providing 'y' permission."); + + // 7. Let parameterValue be null. + let parameterValue = null + + // 8. If the code point at position within input is + // U+0022 ("), then: + if (input[position.position] === '"') { + // 1. Set parameterValue to the result of collecting + // an HTTP quoted string from input, given position + // and the extract-value flag. + parameterValue = collectAnHTTPQuotedString(input, position, true) + + // 2. Collect a sequence of code points that are not + // U+003B (;) from input, given position. + collectASequenceOfCodePointsFast( + ';', + input, + position + ) + + // 9. Otherwise: + } else { + // 1. Set parameterValue to the result of collecting + // a sequence of code points that are not U+003B (;) + // from input, given position. + parameterValue = collectASequenceOfCodePointsFast( + ';', + input, + position + ) + + // 2. Remove any trailing HTTP whitespace from parameterValue. + parameterValue = removeHTTPWhitespace(parameterValue, false, true) + + // 3. If parameterValue is the empty string, then continue. + if (parameterValue.length === 0) { + continue + } } - if (blobSASSignatureValues.permissions && - blobSASSignatureValues.permissions.tag && - version < "2019-12-12") { - throw RangeError("'version' must be >= '2019-12-12' when providing 't' permission."); + + // 10. If all of the following are true + // - parameterName is not the empty string + // - parameterName solely contains HTTP token code points + // - parameterValue solely contains HTTP quoted-string token code points + // - mimeType’s parameters[parameterName] does not exist + // then set mimeType’s parameters[parameterName] to parameterValue. + if ( + parameterName.length !== 0 && + HTTP_TOKEN_CODEPOINTS.test(parameterName) && + (parameterValue.length === 0 || HTTP_QUOTED_STRING_TOKENS.test(parameterValue)) && + !mimeType.parameters.has(parameterName) + ) { + mimeType.parameters.set(parameterName, parameterValue) } - if (version < "2020-02-10" && - blobSASSignatureValues.permissions && - (blobSASSignatureValues.permissions.move || blobSASSignatureValues.permissions.execute)) { - throw RangeError("'version' must be >= '2020-02-10' when providing the 'm' or 'e' permission."); + } + + // 12. Return mimeType. + return mimeType +} + +// https://infra.spec.whatwg.org/#forgiving-base64-decode +/** @param {string} data */ +function forgivingBase64 (data) { + // 1. Remove all ASCII whitespace from data. + data = data.replace(ASCII_WHITESPACE_REPLACE_REGEX, '') // eslint-disable-line + + let dataLength = data.length + // 2. If data’s code point length divides by 4 leaving + // no remainder, then: + if (dataLength % 4 === 0) { + // 1. If data ends with one or two U+003D (=) code points, + // then remove them from data. + if (data.charCodeAt(dataLength - 1) === 0x003D) { + --dataLength + if (data.charCodeAt(dataLength - 1) === 0x003D) { + --dataLength + } } - if (version < "2021-04-10" && - blobSASSignatureValues.permissions && - blobSASSignatureValues.permissions.filterByTags) { - throw RangeError("'version' must be >= '2021-04-10' when providing the 'f' permission."); + } + + // 3. If data’s code point length divides by 4 leaving + // a remainder of 1, then return failure. + if (dataLength % 4 === 1) { + return 'failure' + } + + // 4. If data contains a code point that is not one of + // U+002B (+) + // U+002F (/) + // ASCII alphanumeric + // then return failure. + if (/[^+/0-9A-Za-z]/.test(data.length === dataLength ? data : data.substring(0, dataLength))) { + return 'failure' + } + + const buffer = Buffer.from(data, 'base64') + return new Uint8Array(buffer.buffer, buffer.byteOffset, buffer.byteLength) +} + +// https://fetch.spec.whatwg.org/#collect-an-http-quoted-string +// tests: https://fetch.spec.whatwg.org/#example-http-quoted-string +/** + * @param {string} input + * @param {{ position: number }} position + * @param {boolean?} extractValue + */ +function collectAnHTTPQuotedString (input, position, extractValue) { + // 1. Let positionStart be position. + const positionStart = position.position + + // 2. Let value be the empty string. + let value = '' + + // 3. Assert: the code point at position within input + // is U+0022 ("). + assert(input[position.position] === '"') + + // 4. Advance position by 1. + position.position++ + + // 5. While true: + while (true) { + // 1. Append the result of collecting a sequence of code points + // that are not U+0022 (") or U+005C (\) from input, given + // position, to value. + value += collectASequenceOfCodePoints( + (char) => char !== '"' && char !== '\\', + input, + position + ) + + // 2. If position is past the end of input, then break. + if (position.position >= input.length) { + break } - if (version < "2020-02-10" && - (blobSASSignatureValues.preauthorizedAgentObjectId || blobSASSignatureValues.correlationId)) { - throw RangeError("'version' must be >= '2020-02-10' when providing 'preauthorizedAgentObjectId' or 'correlationId'."); + + // 3. Let quoteOrBackslash be the code point at position within + // input. + const quoteOrBackslash = input[position.position] + + // 4. Advance position by 1. + position.position++ + + // 5. If quoteOrBackslash is U+005C (\), then: + if (quoteOrBackslash === '\\') { + // 1. If position is past the end of input, then append + // U+005C (\) to value and break. + if (position.position >= input.length) { + value += '\\' + break + } + + // 2. Append the code point at position within input to value. + value += input[position.position] + + // 3. Advance position by 1. + position.position++ + + // 6. Otherwise: + } else { + // 1. Assert: quoteOrBackslash is U+0022 ("). + assert(quoteOrBackslash === '"') + + // 2. Break. + break } - if (blobSASSignatureValues.encryptionScope && version < "2020-12-06") { - throw RangeError("'version' must be >= '2020-12-06' when provided 'encryptionScope' in SAS."); + } + + // 6. If the extract-value flag is set, then return value. + if (extractValue) { + return value + } + + // 7. Return the code points from positionStart to position, + // inclusive, within input. + return input.slice(positionStart, position.position) +} + +/** + * @see https://mimesniff.spec.whatwg.org/#serialize-a-mime-type + */ +function serializeAMimeType (mimeType) { + assert(mimeType !== 'failure') + const { parameters, essence } = mimeType + + // 1. Let serialization be the concatenation of mimeType’s + // type, U+002F (/), and mimeType’s subtype. + let serialization = essence + + // 2. For each name → value of mimeType’s parameters: + for (let [name, value] of parameters.entries()) { + // 1. Append U+003B (;) to serialization. + serialization += ';' + + // 2. Append name to serialization. + serialization += name + + // 3. Append U+003D (=) to serialization. + serialization += '=' + + // 4. If value does not solely contain HTTP token code + // points or value is the empty string, then: + if (!HTTP_TOKEN_CODEPOINTS.test(value)) { + // 1. Precede each occurrence of U+0022 (") or + // U+005C (\) in value with U+005C (\). + value = value.replace(/(\\|")/g, '\\$1') + + // 2. Prepend U+0022 (") to value. + value = '"' + value + + // 3. Append U+0022 (") to value. + value += '"' } - blobSASSignatureValues.version = version; - return blobSASSignatureValues; + + // 5. Append value to serialization. + serialization += value + } + + // 3. Return serialization. + return serialization } -// Copyright (c) Microsoft Corporation. /** - * A client that manages leases for a {@link ContainerClient} or a {@link BlobClient}. + * @see https://fetch.spec.whatwg.org/#http-whitespace + * @param {number} char */ -class BlobLeaseClient { - /** - * Creates an instance of BlobLeaseClient. - * @param client - The client to make the lease operation requests. - * @param leaseId - Initial proposed lease id. - */ - constructor(client, leaseId) { - const clientContext = new StorageClientContext(client.url, client.pipeline.toServiceClientOptions()); - this._url = client.url; - if (client.name === undefined) { - this._isContainer = true; - this._containerOrBlobOperation = new Container(clientContext); - } - else { - this._isContainer = false; - this._containerOrBlobOperation = new Blob$1(clientContext); - } - if (!leaseId) { - leaseId = coreHttp.generateUuid(); +function isHTTPWhiteSpace (char) { + // "\r\n\t " + return char === 0x00d || char === 0x00a || char === 0x009 || char === 0x020 +} + +/** + * @see https://fetch.spec.whatwg.org/#http-whitespace + * @param {string} str + * @param {boolean} [leading=true] + * @param {boolean} [trailing=true] + */ +function removeHTTPWhitespace (str, leading = true, trailing = true) { + return removeChars(str, leading, trailing, isHTTPWhiteSpace) +} + +/** + * @see https://infra.spec.whatwg.org/#ascii-whitespace + * @param {number} char + */ +function isASCIIWhitespace (char) { + // "\r\n\t\f " + return char === 0x00d || char === 0x00a || char === 0x009 || char === 0x00c || char === 0x020 +} + +/** + * @see https://infra.spec.whatwg.org/#strip-leading-and-trailing-ascii-whitespace + * @param {string} str + * @param {boolean} [leading=true] + * @param {boolean} [trailing=true] + */ +function removeASCIIWhitespace (str, leading = true, trailing = true) { + return removeChars(str, leading, trailing, isASCIIWhitespace) +} + +/** + * @param {string} str + * @param {boolean} leading + * @param {boolean} trailing + * @param {(charCode: number) => boolean} predicate + * @returns + */ +function removeChars (str, leading, trailing, predicate) { + let lead = 0 + let trail = str.length - 1 + + if (leading) { + while (lead < str.length && predicate(str.charCodeAt(lead))) lead++ + } + + if (trailing) { + while (trail > 0 && predicate(str.charCodeAt(trail))) trail-- + } + + return lead === 0 && trail === str.length - 1 ? str : str.slice(lead, trail + 1) +} + +/** + * @see https://infra.spec.whatwg.org/#isomorphic-decode + * @param {Uint8Array} input + * @returns {string} + */ +function isomorphicDecode (input) { + // 1. To isomorphic decode a byte sequence input, return a string whose code point + // length is equal to input’s length and whose code points have the same values + // as the values of input’s bytes, in the same order. + const length = input.length + if ((2 << 15) - 1 > length) { + return String.fromCharCode.apply(null, input) + } + let result = ''; let i = 0 + let addition = (2 << 15) - 1 + while (i < length) { + if (i + addition > length) { + addition = length - i + } + result += String.fromCharCode.apply(null, input.subarray(i, i += addition)) + } + return result +} + +/** + * @see https://mimesniff.spec.whatwg.org/#minimize-a-supported-mime-type + * @param {Exclude, 'failure'>} mimeType + */ +function minimizeSupportedMimeType (mimeType) { + switch (mimeType.essence) { + case 'application/ecmascript': + case 'application/javascript': + case 'application/x-ecmascript': + case 'application/x-javascript': + case 'text/ecmascript': + case 'text/javascript': + case 'text/javascript1.0': + case 'text/javascript1.1': + case 'text/javascript1.2': + case 'text/javascript1.3': + case 'text/javascript1.4': + case 'text/javascript1.5': + case 'text/jscript': + case 'text/livescript': + case 'text/x-ecmascript': + case 'text/x-javascript': + // 1. If mimeType is a JavaScript MIME type, then return "text/javascript". + return 'text/javascript' + case 'application/json': + case 'text/json': + // 2. If mimeType is a JSON MIME type, then return "application/json". + return 'application/json' + case 'image/svg+xml': + // 3. If mimeType’s essence is "image/svg+xml", then return "image/svg+xml". + return 'image/svg+xml' + case 'text/xml': + case 'application/xml': + // 4. If mimeType is an XML MIME type, then return "application/xml". + return 'application/xml' + } + + // 2. If mimeType is a JSON MIME type, then return "application/json". + if (mimeType.subtype.endsWith('+json')) { + return 'application/json' + } + + // 4. If mimeType is an XML MIME type, then return "application/xml". + if (mimeType.subtype.endsWith('+xml')) { + return 'application/xml' + } + + // 5. If mimeType is supported by the user agent, then return mimeType’s essence. + // Technically, node doesn't support any mimetypes. + + // 6. Return the empty string. + return '' +} + +module.exports = { + dataURLProcessor, + URLSerializer, + collectASequenceOfCodePoints, + collectASequenceOfCodePointsFast, + stringPercentDecode, + parseMIMEType, + collectAnHTTPQuotedString, + serializeAMimeType, + removeChars, + removeHTTPWhitespace, + minimizeSupportedMimeType, + HTTP_TOKEN_CODEPOINTS, + isomorphicDecode +} + + +/***/ }), + +/***/ 21922: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { kConnected, kSize } = __nccwpck_require__(72785) + +class CompatWeakRef { + constructor (value) { + this.value = value + } + + deref () { + return this.value[kConnected] === 0 && this.value[kSize] === 0 + ? undefined + : this.value + } +} + +class CompatFinalizer { + constructor (finalizer) { + this.finalizer = finalizer + } + + register (dispatcher, key) { + if (dispatcher.on) { + dispatcher.on('disconnect', () => { + if (dispatcher[kConnected] === 0 && dispatcher[kSize] === 0) { + this.finalizer(key) } - this._leaseId = leaseId; + }) } - /** - * Gets the lease Id. - * - * @readonly - */ - get leaseId() { - return this._leaseId; + } + + unregister (key) {} +} + +module.exports = function () { + // FIXME: remove workaround when the Node bug is backported to v18 + // https://github.com/nodejs/node/issues/49344#issuecomment-1741776308 + if (process.env.NODE_V8_COVERAGE && process.version.startsWith('v18')) { + process._rawDebug('Using compatibility WeakRef and FinalizationRegistry') + return { + WeakRef: CompatWeakRef, + FinalizationRegistry: CompatFinalizer } - /** - * Gets the url. - * - * @readonly - */ - get url() { - return this._url; - } - /** - * Establishes and manages a lock on a container for delete operations, or on a blob - * for write and delete operations. - * The lock duration can be 15 to 60 seconds, or can be infinite. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/lease-container - * and - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/lease-blob - * - * @param duration - Must be between 15 to 60 seconds, or infinite (-1) - * @param options - option to configure lease management operations. - * @returns Response data for acquire lease operation. - */ - async acquireLease(duration, options = {}) { - var _a, _b, _c, _d, _e, _f; - const { span, updatedOptions } = createSpan("BlobLeaseClient-acquireLease", options); - if (this._isContainer && - ((((_a = options.conditions) === null || _a === void 0 ? void 0 : _a.ifMatch) && ((_b = options.conditions) === null || _b === void 0 ? void 0 : _b.ifMatch) !== ETagNone) || - (((_c = options.conditions) === null || _c === void 0 ? void 0 : _c.ifNoneMatch) && ((_d = options.conditions) === null || _d === void 0 ? void 0 : _d.ifNoneMatch) !== ETagNone) || - ((_e = options.conditions) === null || _e === void 0 ? void 0 : _e.tagConditions))) { - throw new RangeError("The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable."); - } - try { - return await this._containerOrBlobOperation.acquireLease(Object.assign({ abortSignal: options.abortSignal, duration, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_f = options.conditions) === null || _f === void 0 ? void 0 : _f.tagConditions }), proposedLeaseId: this._leaseId }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } - } - /** - * To change the ID of the lease. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/lease-container - * and - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/lease-blob - * - * @param proposedLeaseId - the proposed new lease Id. - * @param options - option to configure lease management operations. - * @returns Response data for change lease operation. - */ - async changeLease(proposedLeaseId, options = {}) { - var _a, _b, _c, _d, _e, _f; - const { span, updatedOptions } = createSpan("BlobLeaseClient-changeLease", options); - if (this._isContainer && - ((((_a = options.conditions) === null || _a === void 0 ? void 0 : _a.ifMatch) && ((_b = options.conditions) === null || _b === void 0 ? void 0 : _b.ifMatch) !== ETagNone) || - (((_c = options.conditions) === null || _c === void 0 ? void 0 : _c.ifNoneMatch) && ((_d = options.conditions) === null || _d === void 0 ? void 0 : _d.ifNoneMatch) !== ETagNone) || - ((_e = options.conditions) === null || _e === void 0 ? void 0 : _e.tagConditions))) { - throw new RangeError("The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable."); - } - try { - const response = await this._containerOrBlobOperation.changeLease(this._leaseId, proposedLeaseId, Object.assign({ abortSignal: options.abortSignal, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_f = options.conditions) === null || _f === void 0 ? void 0 : _f.tagConditions }) }, convertTracingToRequestOptionsBase(updatedOptions))); - this._leaseId = proposedLeaseId; - return response; - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } - } - /** - * To free the lease if it is no longer needed so that another client may - * immediately acquire a lease against the container or the blob. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/lease-container - * and - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/lease-blob - * - * @param options - option to configure lease management operations. - * @returns Response data for release lease operation. - */ - async releaseLease(options = {}) { - var _a, _b, _c, _d, _e, _f; - const { span, updatedOptions } = createSpan("BlobLeaseClient-releaseLease", options); - if (this._isContainer && - ((((_a = options.conditions) === null || _a === void 0 ? void 0 : _a.ifMatch) && ((_b = options.conditions) === null || _b === void 0 ? void 0 : _b.ifMatch) !== ETagNone) || - (((_c = options.conditions) === null || _c === void 0 ? void 0 : _c.ifNoneMatch) && ((_d = options.conditions) === null || _d === void 0 ? void 0 : _d.ifNoneMatch) !== ETagNone) || - ((_e = options.conditions) === null || _e === void 0 ? void 0 : _e.tagConditions))) { - throw new RangeError("The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable."); - } - try { - return await this._containerOrBlobOperation.releaseLease(this._leaseId, Object.assign({ abortSignal: options.abortSignal, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_f = options.conditions) === null || _f === void 0 ? void 0 : _f.tagConditions }) }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + } + return { WeakRef, FinalizationRegistry } +} + + +/***/ }), + +/***/ 51879: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { Blob, File } = __nccwpck_require__(72254) +const { kState } = __nccwpck_require__(749) +const { webidl } = __nccwpck_require__(44890) + +// TODO(@KhafraDev): remove +class FileLike { + constructor (blobLike, fileName, options = {}) { + // TODO: argument idl type check + + // The File constructor is invoked with two or three parameters, depending + // on whether the optional dictionary parameter is used. When the File() + // constructor is invoked, user agents must run the following steps: + + // 1. Let bytes be the result of processing blob parts given fileBits and + // options. + + // 2. Let n be the fileName argument to the constructor. + const n = fileName + + // 3. Process FilePropertyBag dictionary argument by running the following + // substeps: + + // 1. If the type member is provided and is not the empty string, let t + // be set to the type dictionary member. If t contains any characters + // outside the range U+0020 to U+007E, then set t to the empty string + // and return from these substeps. + // TODO + const t = options.type + + // 2. Convert every character in t to ASCII lowercase. + // TODO + + // 3. If the lastModified member is provided, let d be set to the + // lastModified dictionary member. If it is not provided, set d to the + // current date and time represented as the number of milliseconds since + // the Unix Epoch (which is the equivalent of Date.now() [ECMA-262]). + const d = options.lastModified ?? Date.now() + + // 4. Return a new File object F such that: + // F refers to the bytes byte sequence. + // F.size is set to the number of total bytes in bytes. + // F.name is set to n. + // F.type is set to t. + // F.lastModified is set to d. + + this[kState] = { + blobLike, + name: n, + type: t, + lastModified: d } - /** - * To renew the lease. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/lease-container - * and - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/lease-blob - * - * @param options - Optional option to configure lease management operations. - * @returns Response data for renew lease operation. - */ - async renewLease(options = {}) { - var _a, _b, _c, _d, _e, _f; - const { span, updatedOptions } = createSpan("BlobLeaseClient-renewLease", options); - if (this._isContainer && - ((((_a = options.conditions) === null || _a === void 0 ? void 0 : _a.ifMatch) && ((_b = options.conditions) === null || _b === void 0 ? void 0 : _b.ifMatch) !== ETagNone) || - (((_c = options.conditions) === null || _c === void 0 ? void 0 : _c.ifNoneMatch) && ((_d = options.conditions) === null || _d === void 0 ? void 0 : _d.ifNoneMatch) !== ETagNone) || - ((_e = options.conditions) === null || _e === void 0 ? void 0 : _e.tagConditions))) { - throw new RangeError("The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable."); - } - try { - return await this._containerOrBlobOperation.renewLease(this._leaseId, Object.assign({ abortSignal: options.abortSignal, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_f = options.conditions) === null || _f === void 0 ? void 0 : _f.tagConditions }) }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + } + + stream (...args) { + webidl.brandCheck(this, FileLike) + + return this[kState].blobLike.stream(...args) + } + + arrayBuffer (...args) { + webidl.brandCheck(this, FileLike) + + return this[kState].blobLike.arrayBuffer(...args) + } + + slice (...args) { + webidl.brandCheck(this, FileLike) + + return this[kState].blobLike.slice(...args) + } + + text (...args) { + webidl.brandCheck(this, FileLike) + + return this[kState].blobLike.text(...args) + } + + get size () { + webidl.brandCheck(this, FileLike) + + return this[kState].blobLike.size + } + + get type () { + webidl.brandCheck(this, FileLike) + + return this[kState].blobLike.type + } + + get name () { + webidl.brandCheck(this, FileLike) + + return this[kState].name + } + + get lastModified () { + webidl.brandCheck(this, FileLike) + + return this[kState].lastModified + } + + get [Symbol.toStringTag] () { + return 'File' + } +} + +webidl.converters.Blob = webidl.interfaceConverter(Blob) + +// If this function is moved to ./util.js, some tools (such as +// rollup) will warn about circular dependencies. See: +// https://github.com/nodejs/undici/issues/1629 +function isFileLike (object) { + return ( + (object instanceof File) || + ( + object && + (typeof object.stream === 'function' || + typeof object.arrayBuffer === 'function') && + object[Symbol.toStringTag] === 'File' + ) + ) +} + +module.exports = { FileLike, isFileLike } + + +/***/ }), + +/***/ 87991: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { isUSVString, bufferToLowerCasedHeaderName } = __nccwpck_require__(83983) +const { utf8DecodeBytes } = __nccwpck_require__(1310) +const { HTTP_TOKEN_CODEPOINTS, isomorphicDecode } = __nccwpck_require__(17704) +const { isFileLike } = __nccwpck_require__(51879) +const { makeEntry } = __nccwpck_require__(73162) +const assert = __nccwpck_require__(98061) +const { File: NodeFile } = __nccwpck_require__(72254) + +const File = globalThis.File ?? NodeFile + +const formDataNameBuffer = Buffer.from('form-data; name="') +const filenameBuffer = Buffer.from('; filename') +const dd = Buffer.from('--') +const ddcrlf = Buffer.from('--\r\n') + +/** + * @param {string} chars + */ +function isAsciiString (chars) { + for (let i = 0; i < chars.length; ++i) { + if ((chars.charCodeAt(i) & ~0x7F) !== 0) { + return false } - /** - * To end the lease but ensure that another client cannot acquire a new lease - * until the current lease period has expired. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/lease-container - * and - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/lease-blob - * - * @param breakPeriod - Break period - * @param options - Optional options to configure lease management operations. - * @returns Response data for break lease operation. - */ - async breakLease(breakPeriod, options = {}) { - var _a, _b, _c, _d, _e, _f; - const { span, updatedOptions } = createSpan("BlobLeaseClient-breakLease", options); - if (this._isContainer && - ((((_a = options.conditions) === null || _a === void 0 ? void 0 : _a.ifMatch) && ((_b = options.conditions) === null || _b === void 0 ? void 0 : _b.ifMatch) !== ETagNone) || - (((_c = options.conditions) === null || _c === void 0 ? void 0 : _c.ifNoneMatch) && ((_d = options.conditions) === null || _d === void 0 ? void 0 : _d.ifNoneMatch) !== ETagNone) || - ((_e = options.conditions) === null || _e === void 0 ? void 0 : _e.tagConditions))) { - throw new RangeError("The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable."); - } - try { - const operationOptions = Object.assign({ abortSignal: options.abortSignal, breakPeriod, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_f = options.conditions) === null || _f === void 0 ? void 0 : _f.tagConditions }) }, convertTracingToRequestOptionsBase(updatedOptions)); - return await this._containerOrBlobOperation.breakLease(operationOptions); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + } + return true +} + +/** + * @see https://andreubotella.github.io/multipart-form-data/#multipart-form-data-boundary + * @param {string} boundary + */ +function validateBoundary (boundary) { + const length = boundary.length + + // - its length is greater or equal to 27 and lesser or equal to 70, and + if (length < 27 || length > 70) { + return false + } + + // - it is composed by bytes in the ranges 0x30 to 0x39, 0x41 to 0x5A, or + // 0x61 to 0x7A, inclusive (ASCII alphanumeric), or which are 0x27 ('), + // 0x2D (-) or 0x5F (_). + for (let i = 0; i < length; ++i) { + const cp = boundary.charCodeAt(i) + + if (!( + (cp >= 0x30 && cp <= 0x39) || + (cp >= 0x41 && cp <= 0x5a) || + (cp >= 0x61 && cp <= 0x7a) || + cp === 0x27 || + cp === 0x2d || + cp === 0x5f + )) { + return false } + } + + return true } -// Copyright (c) Microsoft Corporation. /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * A Node.js ReadableStream will internally retry when internal ReadableStream unexpected ends. + * @see https://andreubotella.github.io/multipart-form-data/#multipart-form-data-parser + * @param {Buffer} input + * @param {ReturnType} mimeType */ -class RetriableReadableStream extends stream.Readable { - /** - * Creates an instance of RetriableReadableStream. - * - * @param source - The current ReadableStream returned from getter - * @param getter - A method calling downloading request returning - * a new ReadableStream from specified offset - * @param offset - Offset position in original data source to read - * @param count - How much data in original data source to read - * @param options - - */ - constructor(source, getter, offset, count, options = {}) { - super({ highWaterMark: options.highWaterMark }); - this.retries = 0; - this.sourceDataHandler = (data) => { - if (this.options.doInjectErrorOnce) { - this.options.doInjectErrorOnce = undefined; - this.source.pause(); - this.source.removeAllListeners("data"); - this.source.emit("end"); - return; - } - // console.log( - // `Offset: ${this.offset}, Received ${data.length} from internal stream` - // ); - this.offset += data.length; - if (this.onProgress) { - this.onProgress({ loadedBytes: this.offset - this.start }); - } - if (!this.push(data)) { - this.source.pause(); - } - }; - this.sourceErrorOrEndHandler = (err) => { - if (err && err.name === "AbortError") { - this.destroy(err); - return; - } - // console.log( - // `Source stream emits end or error, offset: ${ - // this.offset - // }, dest end : ${this.end}` - // ); - this.removeSourceEventHandlers(); - if (this.offset - 1 === this.end) { - this.push(null); - } - else if (this.offset <= this.end) { - // console.log( - // `retries: ${this.retries}, max retries: ${this.maxRetries}` - // ); - if (this.retries < this.maxRetryRequests) { - this.retries += 1; - this.getter(this.offset) - .then((newSource) => { - this.source = newSource; - this.setSourceEventHandlers(); - return; - }) - .catch((error) => { - this.destroy(error); - }); - } - else { - this.destroy(new Error(`Data corruption failure: received less data than required and reached maxRetires limitation. Received data offset: ${this.offset - 1}, data needed offset: ${this.end}, retries: ${this.retries}, max retries: ${this.maxRetryRequests}`)); - } - } - else { - this.destroy(new Error(`Data corruption failure: Received more data than original request, data needed offset is ${this.end}, received offset: ${this.offset - 1}`)); - } - }; - this.getter = getter; - this.source = source; - this.start = offset; - this.offset = offset; - this.end = offset + count - 1; - this.maxRetryRequests = - options.maxRetryRequests && options.maxRetryRequests >= 0 ? options.maxRetryRequests : 0; - this.onProgress = options.onProgress; - this.options = options; - this.setSourceEventHandlers(); +function multipartFormDataParser (input, mimeType) { + // 1. Assert: mimeType’s essence is "multipart/form-data". + assert(mimeType !== 'failure' && mimeType.essence === 'multipart/form-data') + + const boundaryString = mimeType.parameters.get('boundary') + + // 2. If mimeType’s parameters["boundary"] does not exist, return failure. + // Otherwise, let boundary be the result of UTF-8 decoding mimeType’s + // parameters["boundary"]. + if (boundaryString === undefined) { + return 'failure' + } + + const boundary = Buffer.from(`--${boundaryString}`, 'utf8') + + // 3. Let entry list be an empty entry list. + const entryList = [] + + // 4. Let position be a pointer to a byte in input, initially pointing at + // the first byte. + const position = { position: 0 } + + // Note: undici addition, allows leading and trailing CRLFs. + while (input[position.position] === 0x0d && input[position.position + 1] === 0x0a) { + position.position += 2 + } + + let trailing = input.length + + while (input[trailing - 1] === 0x0a && input[trailing - 2] === 0x0d) { + trailing -= 2 + } + + if (trailing !== input.length) { + input = input.subarray(0, trailing) + } + + // 5. While true: + while (true) { + // 5.1. If position points to a sequence of bytes starting with 0x2D 0x2D + // (`--`) followed by boundary, advance position by 2 + the length of + // boundary. Otherwise, return failure. + // Note: boundary is padded with 2 dashes already, no need to add 2. + if (input.subarray(position.position, position.position + boundary.length).equals(boundary)) { + position.position += boundary.length + } else { + return 'failure' } - _read() { - this.source.resume(); + + // 5.2. If position points to the sequence of bytes 0x2D 0x2D 0x0D 0x0A + // (`--` followed by CR LF) followed by the end of input, return entry list. + // Note: a body does NOT need to end with CRLF. It can end with --. + if ( + (position.position === input.length - 2 && bufferStartsWith(input, dd, position)) || + (position.position === input.length - 4 && bufferStartsWith(input, ddcrlf, position)) + ) { + return entryList } - setSourceEventHandlers() { - this.source.on("data", this.sourceDataHandler); - this.source.on("end", this.sourceErrorOrEndHandler); - this.source.on("error", this.sourceErrorOrEndHandler); + + // 5.3. If position does not point to a sequence of bytes starting with 0x0D + // 0x0A (CR LF), return failure. + if (input[position.position] !== 0x0d || input[position.position + 1] !== 0x0a) { + return 'failure' } - removeSourceEventHandlers() { - this.source.removeListener("data", this.sourceDataHandler); - this.source.removeListener("end", this.sourceErrorOrEndHandler); - this.source.removeListener("error", this.sourceErrorOrEndHandler); + + // 5.4. Advance position by 2. (This skips past the newline.) + position.position += 2 + + // 5.5. Let name, filename and contentType be the result of parsing + // multipart/form-data headers on input and position, if the result + // is not failure. Otherwise, return failure. + const result = parseMultipartFormDataHeaders(input, position) + + if (result === 'failure') { + return 'failure' } - _destroy(error, callback) { - // remove listener from source and release source - this.removeSourceEventHandlers(); - this.source.destroy(); - callback(error === null ? undefined : error); + + let { name, filename, contentType, encoding } = result + + // 5.6. Advance position by 2. (This skips past the empty line that marks + // the end of the headers.) + position.position += 2 + + // 5.7. Let body be the empty byte sequence. + let body + + // 5.8. Body loop: While position is not past the end of input: + // TODO: the steps here are completely wrong + { + const boundaryIndex = input.indexOf(boundary.subarray(2), position.position) + + if (boundaryIndex === -1) { + return 'failure' + } + + body = input.subarray(position.position, boundaryIndex - 4) + + position.position += body.length + + // Note: position must be advanced by the body's length before being + // decoded, otherwise the parsing will fail. + if (encoding === 'base64') { + body = Buffer.from(body.toString(), 'base64') + } + } + + // 5.9. If position does not point to a sequence of bytes starting with + // 0x0D 0x0A (CR LF), return failure. Otherwise, advance position by 2. + if (input[position.position] !== 0x0d || input[position.position + 1] !== 0x0a) { + return 'failure' + } else { + position.position += 2 + } + + // 5.10. If filename is not null: + let value + + if (filename !== null) { + // 5.10.1. If contentType is null, set contentType to "text/plain". + contentType ??= 'text/plain' + + // 5.10.2. If contentType is not an ASCII string, set contentType to the empty string. + + // Note: `buffer.isAscii` can be used at zero-cost, but converting a string to a buffer is a high overhead. + // Content-Type is a relatively small string, so it is faster to use `String#charCodeAt`. + if (!isAsciiString(contentType)) { + contentType = '' + } + + // 5.10.3. Let value be a new File object with name filename, type contentType, and body body. + value = new File([body], filename, { type: contentType }) + } else { + // 5.11. Otherwise: + + // 5.11.1. Let value be the UTF-8 decoding without BOM of body. + value = utf8DecodeBytes(Buffer.from(body)) } + + // 5.12. Assert: name is a scalar value string and value is either a scalar value string or a File object. + assert(isUSVString(name)) + assert((typeof value === 'string' && isUSVString(value)) || isFileLike(value)) + + // 5.13. Create an entry with name and value, and append it to entry list. + entryList.push(makeEntry(name, value, filename)) + } } -// Copyright (c) Microsoft Corporation. /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * BlobDownloadResponse implements BlobDownloadResponseParsed interface, and in Node.js runtime it will - * automatically retry when internal read stream unexpected ends. (This kind of unexpected ends cannot - * trigger retries defined in pipeline retry policy.) - * - * The {@link readableStreamBody} stream will retry underlayer, you can just use it as a normal Node.js - * Readable stream. + * @see https://andreubotella.github.io/multipart-form-data/#parse-multipart-form-data-headers + * @param {Buffer} input + * @param {{ position: number }} position */ -class BlobDownloadResponse { - /** - * Creates an instance of BlobDownloadResponse. - * - * @param originalResponse - - * @param getter - - * @param offset - - * @param count - - * @param options - - */ - constructor(originalResponse, getter, offset, count, options = {}) { - this.originalResponse = originalResponse; - this.blobDownloadStream = new RetriableReadableStream(this.originalResponse.readableStreamBody, getter, offset, count, options); - } - /** - * Indicates that the service supports - * requests for partial file content. - * - * @readonly - */ - get acceptRanges() { - return this.originalResponse.acceptRanges; +function parseMultipartFormDataHeaders (input, position) { + // 1. Let name, filename and contentType be null. + let name = null + let filename = null + let contentType = null + let encoding = null + + // 2. While true: + while (true) { + // 2.1. If position points to a sequence of bytes starting with 0x0D 0x0A (CR LF): + if (input[position.position] === 0x0d && input[position.position + 1] === 0x0a) { + // 2.1.1. If name is null, return failure. + if (name === null) { + return 'failure' + } + + // 2.1.2. Return name, filename and contentType. + return { name, filename, contentType, encoding } } - /** - * Returns if it was previously specified - * for the file. - * - * @readonly - */ - get cacheControl() { - return this.originalResponse.cacheControl; + + // 2.2. Let header name be the result of collecting a sequence of bytes that are + // not 0x0A (LF), 0x0D (CR) or 0x3A (:), given position. + let headerName = collectASequenceOfBytes( + (char) => char !== 0x0a && char !== 0x0d && char !== 0x3a, + input, + position + ) + + // 2.3. Remove any HTTP tab or space bytes from the start or end of header name. + headerName = removeChars(headerName, true, true, (char) => char === 0x9 || char === 0x20) + + // 2.4. If header name does not match the field-name token production, return failure. + if (!HTTP_TOKEN_CODEPOINTS.test(headerName.toString())) { + return 'failure' } - /** - * Returns the value that was specified - * for the 'x-ms-content-disposition' header and specifies how to process the - * response. - * - * @readonly - */ - get contentDisposition() { - return this.originalResponse.contentDisposition; + + // 2.5. If the byte at position is not 0x3A (:), return failure. + if (input[position.position] !== 0x3a) { + return 'failure' } - /** - * Returns the value that was specified - * for the Content-Encoding request header. - * - * @readonly - */ - get contentEncoding() { - return this.originalResponse.contentEncoding; + + // 2.6. Advance position by 1. + position.position++ + + // 2.7. Collect a sequence of bytes that are HTTP tab or space bytes given position. + // (Do nothing with those bytes.) + collectASequenceOfBytes( + (char) => char === 0x20 || char === 0x09, + input, + position + ) + + // 2.8. Byte-lowercase header name and switch on the result: + switch (bufferToLowerCasedHeaderName(headerName)) { + case 'content-disposition': { + // 1. Set name and filename to null. + name = filename = null + + // 2. If position does not point to a sequence of bytes starting with + // `form-data; name="`, return failure. + if (!bufferStartsWith(input, formDataNameBuffer, position)) { + return 'failure' + } + + // 3. Advance position so it points at the byte after the next 0x22 (") + // byte (the one in the sequence of bytes matched above). + position.position += 17 + + // 4. Set name to the result of parsing a multipart/form-data name given + // input and position, if the result is not failure. Otherwise, return + // failure. + name = parseMultipartFormDataName(input, position) + + if (name === null) { + return 'failure' + } + + // 5. If position points to a sequence of bytes starting with `; filename="`: + if (bufferStartsWith(input, filenameBuffer, position)) { + // Note: undici also handles filename* + let check = position.position + filenameBuffer.length + + if (input[check] === 0x2a) { + position.position += 1 + check += 1 + } + + if (input[check] !== 0x3d || input[check + 1] !== 0x22) { // =" + return 'failure' + } + + // 1. Advance position so it points at the byte after the next 0x22 (") byte + // (the one in the sequence of bytes matched above). + position.position += 12 + + // 2. Set filename to the result of parsing a multipart/form-data name given + // input and position, if the result is not failure. Otherwise, return failure. + filename = parseMultipartFormDataName(input, position) + + if (filename === null) { + return 'failure' + } + } + + break + } + case 'content-type': { + // 1. Let header value be the result of collecting a sequence of bytes that are + // not 0x0A (LF) or 0x0D (CR), given position. + let headerValue = collectASequenceOfBytes( + (char) => char !== 0x0a && char !== 0x0d, + input, + position + ) + + // 2. Remove any HTTP tab or space bytes from the end of header value. + headerValue = removeChars(headerValue, false, true, (char) => char === 0x9 || char === 0x20) + + // 3. Set contentType to the isomorphic decoding of header value. + contentType = isomorphicDecode(headerValue) + + break + } + case 'content-transfer-encoding': { + let headerValue = collectASequenceOfBytes( + (char) => char !== 0x0a && char !== 0x0d, + input, + position + ) + + headerValue = removeChars(headerValue, false, true, (char) => char === 0x9 || char === 0x20) + + encoding = isomorphicDecode(headerValue) + + break + } + default: { + // Collect a sequence of bytes that are not 0x0A (LF) or 0x0D (CR), given position. + // (Do nothing with those bytes.) + collectASequenceOfBytes( + (char) => char !== 0x0a && char !== 0x0d, + input, + position + ) + } } - /** - * Returns the value that was specified - * for the Content-Language request header. - * - * @readonly - */ - get contentLanguage() { - return this.originalResponse.contentLanguage; + + // 2.9. If position does not point to a sequence of bytes starting with 0x0D 0x0A + // (CR LF), return failure. Otherwise, advance position by 2 (past the newline). + if (input[position.position] !== 0x0d && input[position.position + 1] !== 0x0a) { + return 'failure' + } else { + position.position += 2 } - /** - * The current sequence number for a - * page blob. This header is not returned for block blobs or append blobs. - * - * @readonly - */ - get blobSequenceNumber() { - return this.originalResponse.blobSequenceNumber; + } +} + +/** + * @see https://andreubotella.github.io/multipart-form-data/#parse-a-multipart-form-data-name + * @param {Buffer} input + * @param {{ position: number }} position + */ +function parseMultipartFormDataName (input, position) { + // 1. Assert: The byte at (position - 1) is 0x22 ("). + assert(input[position.position - 1] === 0x22) + + // 2. Let name be the result of collecting a sequence of bytes that are not 0x0A (LF), 0x0D (CR) or 0x22 ("), given position. + /** @type {string | Buffer} */ + let name = collectASequenceOfBytes( + (char) => char !== 0x0a && char !== 0x0d && char !== 0x22, + input, + position + ) + + // 3. If the byte at position is not 0x22 ("), return failure. Otherwise, advance position by 1. + if (input[position.position] !== 0x22) { + return null // name could be 'failure' + } else { + position.position++ + } + + // 4. Replace any occurrence of the following subsequences in name with the given byte: + // - `%0A`: 0x0A (LF) + // - `%0D`: 0x0D (CR) + // - `%22`: 0x22 (") + name = new TextDecoder().decode(name) + .replace(/%0A/ig, '\n') + .replace(/%0D/ig, '\r') + .replace(/%22/g, '"') + + // 5. Return the UTF-8 decoding without BOM of name. + return name +} + +/** + * @param {(char: number) => boolean} condition + * @param {Buffer} input + * @param {{ position: number }} position + */ +function collectASequenceOfBytes (condition, input, position) { + let start = position.position + + while (start < input.length && condition(input[start])) { + ++start + } + + return input.subarray(position.position, (position.position = start)) +} + +/** + * @param {Buffer} buf + * @param {boolean} leading + * @param {boolean} trailing + * @param {(charCode: number) => boolean} predicate + * @returns {Buffer} + */ +function removeChars (buf, leading, trailing, predicate) { + let lead = 0 + let trail = buf.length - 1 + + if (leading) { + while (lead < buf.length && predicate(buf[lead])) lead++ + } + + if (trailing) { + while (trail > 0 && predicate(buf[trail])) trail-- + } + + return lead === 0 && trail === buf.length - 1 ? buf : buf.subarray(lead, trail + 1) +} + +/** + * Checks if {@param buffer} starts with {@param start} + * @param {Buffer} buffer + * @param {Buffer} start + * @param {{ position: number }} position + */ +function bufferStartsWith (buffer, start, position) { + if (buffer.length < start.length) { + return false + } + + for (let i = 0; i < start.length; i++) { + if (start[i] !== buffer[position.position + i]) { + return false } - /** - * The blob's type. Possible values include: - * 'BlockBlob', 'PageBlob', 'AppendBlob'. - * - * @readonly - */ - get blobType() { - return this.originalResponse.blobType; + } + + return true +} + +module.exports = { + multipartFormDataParser, + validateBoundary +} + + +/***/ }), + +/***/ 73162: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { isBlobLike, iteratorMixin } = __nccwpck_require__(1310) +const { kState } = __nccwpck_require__(749) +const { kEnumerableProperty } = __nccwpck_require__(83983) +const { FileLike, isFileLike } = __nccwpck_require__(51879) +const { webidl } = __nccwpck_require__(44890) +const { File: NativeFile } = __nccwpck_require__(72254) +const nodeUtil = __nccwpck_require__(47261) + +/** @type {globalThis['File']} */ +const File = globalThis.File ?? NativeFile + +// https://xhr.spec.whatwg.org/#formdata +class FormData { + constructor (form) { + webidl.util.markAsUncloneable(this) + + if (form !== undefined) { + throw webidl.errors.conversionFailed({ + prefix: 'FormData constructor', + argument: 'Argument 1', + types: ['undefined'] + }) } - /** - * The number of bytes present in the - * response body. - * - * @readonly - */ - get contentLength() { - return this.originalResponse.contentLength; + + this[kState] = [] + } + + append (name, value, filename = undefined) { + webidl.brandCheck(this, FormData) + + const prefix = 'FormData.append' + webidl.argumentLengthCheck(arguments, 2, prefix) + + if (arguments.length === 3 && !isBlobLike(value)) { + throw new TypeError( + "Failed to execute 'append' on 'FormData': parameter 2 is not of type 'Blob'" + ) } - /** - * If the file has an MD5 hash and the - * request is to read the full file, this response header is returned so that - * the client can check for message content integrity. If the request is to - * read a specified range and the 'x-ms-range-get-content-md5' is set to - * true, then the request returns an MD5 hash for the range, as long as the - * range size is less than or equal to 4 MB. If neither of these sets of - * conditions is true, then no value is returned for the 'Content-MD5' - * header. - * - * @readonly - */ - get contentMD5() { - return this.originalResponse.contentMD5; - } - /** - * Indicates the range of bytes returned if - * the client requested a subset of the file by setting the Range request - * header. - * - * @readonly - */ - get contentRange() { - return this.originalResponse.contentRange; + + // 1. Let value be value if given; otherwise blobValue. + + name = webidl.converters.USVString(name, prefix, 'name') + value = isBlobLike(value) + ? webidl.converters.Blob(value, prefix, 'value', { strict: false }) + : webidl.converters.USVString(value, prefix, 'value') + filename = arguments.length === 3 + ? webidl.converters.USVString(filename, prefix, 'filename') + : undefined + + // 2. Let entry be the result of creating an entry with + // name, value, and filename if given. + const entry = makeEntry(name, value, filename) + + // 3. Append entry to this’s entry list. + this[kState].push(entry) + } + + delete (name) { + webidl.brandCheck(this, FormData) + + const prefix = 'FormData.delete' + webidl.argumentLengthCheck(arguments, 1, prefix) + + name = webidl.converters.USVString(name, prefix, 'name') + + // The delete(name) method steps are to remove all entries whose name + // is name from this’s entry list. + this[kState] = this[kState].filter(entry => entry.name !== name) + } + + get (name) { + webidl.brandCheck(this, FormData) + + const prefix = 'FormData.get' + webidl.argumentLengthCheck(arguments, 1, prefix) + + name = webidl.converters.USVString(name, prefix, 'name') + + // 1. If there is no entry whose name is name in this’s entry list, + // then return null. + const idx = this[kState].findIndex((entry) => entry.name === name) + if (idx === -1) { + return null } - /** - * The content type specified for the file. - * The default content type is 'application/octet-stream' - * - * @readonly - */ - get contentType() { - return this.originalResponse.contentType; + + // 2. Return the value of the first entry whose name is name from + // this’s entry list. + return this[kState][idx].value + } + + getAll (name) { + webidl.brandCheck(this, FormData) + + const prefix = 'FormData.getAll' + webidl.argumentLengthCheck(arguments, 1, prefix) + + name = webidl.converters.USVString(name, prefix, 'name') + + // 1. If there is no entry whose name is name in this’s entry list, + // then return the empty list. + // 2. Return the values of all entries whose name is name, in order, + // from this’s entry list. + return this[kState] + .filter((entry) => entry.name === name) + .map((entry) => entry.value) + } + + has (name) { + webidl.brandCheck(this, FormData) + + const prefix = 'FormData.has' + webidl.argumentLengthCheck(arguments, 1, prefix) + + name = webidl.converters.USVString(name, prefix, 'name') + + // The has(name) method steps are to return true if there is an entry + // whose name is name in this’s entry list; otherwise false. + return this[kState].findIndex((entry) => entry.name === name) !== -1 + } + + set (name, value, filename = undefined) { + webidl.brandCheck(this, FormData) + + const prefix = 'FormData.set' + webidl.argumentLengthCheck(arguments, 2, prefix) + + if (arguments.length === 3 && !isBlobLike(value)) { + throw new TypeError( + "Failed to execute 'set' on 'FormData': parameter 2 is not of type 'Blob'" + ) } - /** - * Conclusion time of the last attempted - * Copy File operation where this file was the destination file. This value - * can specify the time of a completed, aborted, or failed copy attempt. - * - * @readonly - */ - get copyCompletedOn() { - return this.originalResponse.copyCompletedOn; + + // The set(name, value) and set(name, blobValue, filename) method steps + // are: + + // 1. Let value be value if given; otherwise blobValue. + + name = webidl.converters.USVString(name, prefix, 'name') + value = isBlobLike(value) + ? webidl.converters.Blob(value, prefix, 'name', { strict: false }) + : webidl.converters.USVString(value, prefix, 'name') + filename = arguments.length === 3 + ? webidl.converters.USVString(filename, prefix, 'name') + : undefined + + // 2. Let entry be the result of creating an entry with name, value, and + // filename if given. + const entry = makeEntry(name, value, filename) + + // 3. If there are entries in this’s entry list whose name is name, then + // replace the first such entry with entry and remove the others. + const idx = this[kState].findIndex((entry) => entry.name === name) + if (idx !== -1) { + this[kState] = [ + ...this[kState].slice(0, idx), + entry, + ...this[kState].slice(idx + 1).filter((entry) => entry.name !== name) + ] + } else { + // 4. Otherwise, append entry to this’s entry list. + this[kState].push(entry) } - /** - * String identifier for the last attempted Copy - * File operation where this file was the destination file. - * - * @readonly - */ - get copyId() { - return this.originalResponse.copyId; + } + + [nodeUtil.inspect.custom] (depth, options) { + const state = this[kState].reduce((a, b) => { + if (a[b.name]) { + if (Array.isArray(a[b.name])) { + a[b.name].push(b.value) + } else { + a[b.name] = [a[b.name], b.value] + } + } else { + a[b.name] = b.value + } + + return a + }, { __proto__: null }) + + options.depth ??= depth + options.colors ??= true + + const output = nodeUtil.formatWithOptions(options, state) + + // remove [Object null prototype] + return `FormData ${output.slice(output.indexOf(']') + 2)}` + } +} + +iteratorMixin('FormData', FormData, kState, 'name', 'value') + +Object.defineProperties(FormData.prototype, { + append: kEnumerableProperty, + delete: kEnumerableProperty, + get: kEnumerableProperty, + getAll: kEnumerableProperty, + has: kEnumerableProperty, + set: kEnumerableProperty, + [Symbol.toStringTag]: { + value: 'FormData', + configurable: true + } +}) + +/** + * @see https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#create-an-entry + * @param {string} name + * @param {string|Blob} value + * @param {?string} filename + * @returns + */ +function makeEntry (name, value, filename) { + // 1. Set name to the result of converting name into a scalar value string. + // Note: This operation was done by the webidl converter USVString. + + // 2. If value is a string, then set value to the result of converting + // value into a scalar value string. + if (typeof value === 'string') { + // Note: This operation was done by the webidl converter USVString. + } else { + // 3. Otherwise: + + // 1. If value is not a File object, then set value to a new File object, + // representing the same bytes, whose name attribute value is "blob" + if (!isFileLike(value)) { + value = value instanceof Blob + ? new File([value], 'blob', { type: value.type }) + : new FileLike(value, 'blob', { type: value.type }) + } + + // 2. If filename is given, then set value to a new File object, + // representing the same bytes, whose name attribute is filename. + if (filename !== undefined) { + /** @type {FilePropertyBag} */ + const options = { + type: value.type, + lastModified: value.lastModified + } + + value = value instanceof NativeFile + ? new File([value], filename, options) + : new FileLike(value, filename, options) } - /** - * Contains the number of bytes copied and - * the total bytes in the source in the last attempted Copy File operation - * where this file was the destination file. Can show between 0 and - * Content-Length bytes copied. - * - * @readonly - */ - get copyProgress() { - return this.originalResponse.copyProgress; + } + + // 4. Return an entry whose name is name and whose value is value. + return { name, value } +} + +module.exports = { FormData, makeEntry } + + +/***/ }), + +/***/ 52850: +/***/ ((module) => { + +"use strict"; + + +// In case of breaking changes, increase the version +// number to avoid conflicts. +const globalOrigin = Symbol.for('undici.globalOrigin.1') + +function getGlobalOrigin () { + return globalThis[globalOrigin] +} + +function setGlobalOrigin (newOrigin) { + if (newOrigin === undefined) { + Object.defineProperty(globalThis, globalOrigin, { + value: undefined, + writable: true, + enumerable: false, + configurable: false + }) + + return + } + + const parsedURL = new URL(newOrigin) + + if (parsedURL.protocol !== 'http:' && parsedURL.protocol !== 'https:') { + throw new TypeError(`Only http & https urls are allowed, received ${parsedURL.protocol}`) + } + + Object.defineProperty(globalThis, globalOrigin, { + value: parsedURL, + writable: true, + enumerable: false, + configurable: false + }) +} + +module.exports = { + getGlobalOrigin, + setGlobalOrigin +} + + +/***/ }), + +/***/ 52991: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; +// https://github.com/Ethan-Arrowood/undici-fetch + + + +const { kConstruct } = __nccwpck_require__(72785) +const { kEnumerableProperty } = __nccwpck_require__(83983) +const { + iteratorMixin, + isValidHeaderName, + isValidHeaderValue +} = __nccwpck_require__(1310) +const { webidl } = __nccwpck_require__(44890) +const assert = __nccwpck_require__(98061) +const util = __nccwpck_require__(47261) + +const kHeadersMap = Symbol('headers map') +const kHeadersSortedMap = Symbol('headers map sorted') + +/** + * @param {number} code + */ +function isHTTPWhiteSpaceCharCode (code) { + return code === 0x00a || code === 0x00d || code === 0x009 || code === 0x020 +} + +/** + * @see https://fetch.spec.whatwg.org/#concept-header-value-normalize + * @param {string} potentialValue + */ +function headerValueNormalize (potentialValue) { + // To normalize a byte sequence potentialValue, remove + // any leading and trailing HTTP whitespace bytes from + // potentialValue. + let i = 0; let j = potentialValue.length + + while (j > i && isHTTPWhiteSpaceCharCode(potentialValue.charCodeAt(j - 1))) --j + while (j > i && isHTTPWhiteSpaceCharCode(potentialValue.charCodeAt(i))) ++i + + return i === 0 && j === potentialValue.length ? potentialValue : potentialValue.substring(i, j) +} + +function fill (headers, object) { + // To fill a Headers object headers with a given object object, run these steps: + + // 1. If object is a sequence, then for each header in object: + // Note: webidl conversion to array has already been done. + if (Array.isArray(object)) { + for (let i = 0; i < object.length; ++i) { + const header = object[i] + // 1. If header does not contain exactly two items, then throw a TypeError. + if (header.length !== 2) { + throw webidl.errors.exception({ + header: 'Headers constructor', + message: `expected name/value pair to be length 2, found ${header.length}.` + }) + } + + // 2. Append (header’s first item, header’s second item) to headers. + appendHeader(headers, header[0], header[1]) } - /** - * URL up to 2KB in length that specifies the - * source file used in the last attempted Copy File operation where this file - * was the destination file. - * - * @readonly - */ - get copySource() { - return this.originalResponse.copySource; + } else if (typeof object === 'object' && object !== null) { + // Note: null should throw + + // 2. Otherwise, object is a record, then for each key → value in object, + // append (key, value) to headers + const keys = Object.keys(object) + for (let i = 0; i < keys.length; ++i) { + appendHeader(headers, keys[i], object[keys[i]]) } - /** - * State of the copy operation - * identified by 'x-ms-copy-id'. Possible values include: 'pending', - * 'success', 'aborted', 'failed' - * - * @readonly - */ - get copyStatus() { - return this.originalResponse.copyStatus; + } else { + throw webidl.errors.conversionFailed({ + prefix: 'Headers constructor', + argument: 'Argument 1', + types: ['sequence>', 'record'] + }) + } +} + +/** + * @see https://fetch.spec.whatwg.org/#concept-headers-append + */ +function appendHeader (headers, name, value) { + // 1. Normalize value. + value = headerValueNormalize(value) + + // 2. If name is not a header name or value is not a + // header value, then throw a TypeError. + if (!isValidHeaderName(name)) { + throw webidl.errors.invalidArgument({ + prefix: 'Headers.append', + value: name, + type: 'header name' + }) + } else if (!isValidHeaderValue(value)) { + throw webidl.errors.invalidArgument({ + prefix: 'Headers.append', + value, + type: 'header value' + }) + } + + // 3. If headers’s guard is "immutable", then throw a TypeError. + // 4. Otherwise, if headers’s guard is "request" and name is a + // forbidden header name, return. + // 5. Otherwise, if headers’s guard is "request-no-cors": + // TODO + // Note: undici does not implement forbidden header names + if (getHeadersGuard(headers) === 'immutable') { + throw new TypeError('immutable') + } + + // 6. Otherwise, if headers’s guard is "response" and name is a + // forbidden response-header name, return. + + // 7. Append (name, value) to headers’s header list. + return getHeadersList(headers).append(name, value, false) + + // 8. If headers’s guard is "request-no-cors", then remove + // privileged no-CORS request headers from headers +} + +function compareHeaderName (a, b) { + return a[0] < b[0] ? -1 : 1 +} + +class HeadersList { + /** @type {[string, string][]|null} */ + cookies = null + + constructor (init) { + if (init instanceof HeadersList) { + this[kHeadersMap] = new Map(init[kHeadersMap]) + this[kHeadersSortedMap] = init[kHeadersSortedMap] + this.cookies = init.cookies === null ? null : [...init.cookies] + } else { + this[kHeadersMap] = new Map(init) + this[kHeadersSortedMap] = null } - /** - * Only appears when - * x-ms-copy-status is failed or pending. Describes cause of fatal or - * non-fatal copy operation failure. - * - * @readonly - */ - get copyStatusDescription() { - return this.originalResponse.copyStatusDescription; + } + + /** + * @see https://fetch.spec.whatwg.org/#header-list-contains + * @param {string} name + * @param {boolean} isLowerCase + */ + contains (name, isLowerCase) { + // A header list list contains a header name name if list + // contains a header whose name is a byte-case-insensitive + // match for name. + + return this[kHeadersMap].has(isLowerCase ? name : name.toLowerCase()) + } + + clear () { + this[kHeadersMap].clear() + this[kHeadersSortedMap] = null + this.cookies = null + } + + /** + * @see https://fetch.spec.whatwg.org/#concept-header-list-append + * @param {string} name + * @param {string} value + * @param {boolean} isLowerCase + */ + append (name, value, isLowerCase) { + this[kHeadersSortedMap] = null + + // 1. If list contains name, then set name to the first such + // header’s name. + const lowercaseName = isLowerCase ? name : name.toLowerCase() + const exists = this[kHeadersMap].get(lowercaseName) + + // 2. Append (name, value) to list. + if (exists) { + const delimiter = lowercaseName === 'cookie' ? '; ' : ', ' + this[kHeadersMap].set(lowercaseName, { + name: exists.name, + value: `${exists.value}${delimiter}${value}` + }) + } else { + this[kHeadersMap].set(lowercaseName, { name, value }) } - /** - * When a blob is leased, - * specifies whether the lease is of infinite or fixed duration. Possible - * values include: 'infinite', 'fixed'. - * - * @readonly - */ - get leaseDuration() { - return this.originalResponse.leaseDuration; + + if (lowercaseName === 'set-cookie') { + (this.cookies ??= []).push(value) } - /** - * Lease state of the blob. Possible - * values include: 'available', 'leased', 'expired', 'breaking', 'broken'. - * - * @readonly - */ - get leaseState() { - return this.originalResponse.leaseState; + } + + /** + * @see https://fetch.spec.whatwg.org/#concept-header-list-set + * @param {string} name + * @param {string} value + * @param {boolean} isLowerCase + */ + set (name, value, isLowerCase) { + this[kHeadersSortedMap] = null + const lowercaseName = isLowerCase ? name : name.toLowerCase() + + if (lowercaseName === 'set-cookie') { + this.cookies = [value] } - /** - * The current lease status of the - * blob. Possible values include: 'locked', 'unlocked'. - * - * @readonly - */ - get leaseStatus() { - return this.originalResponse.leaseStatus; + + // 1. If list contains name, then set the value of + // the first such header to value and remove the + // others. + // 2. Otherwise, append header (name, value) to list. + this[kHeadersMap].set(lowercaseName, { name, value }) + } + + /** + * @see https://fetch.spec.whatwg.org/#concept-header-list-delete + * @param {string} name + * @param {boolean} isLowerCase + */ + delete (name, isLowerCase) { + this[kHeadersSortedMap] = null + if (!isLowerCase) name = name.toLowerCase() + + if (name === 'set-cookie') { + this.cookies = null } - /** - * A UTC date/time value generated by the service that - * indicates the time at which the response was initiated. - * - * @readonly - */ - get date() { - return this.originalResponse.date; + + this[kHeadersMap].delete(name) + } + + /** + * @see https://fetch.spec.whatwg.org/#concept-header-list-get + * @param {string} name + * @param {boolean} isLowerCase + * @returns {string | null} + */ + get (name, isLowerCase) { + // 1. If list does not contain name, then return null. + // 2. Return the values of all headers in list whose name + // is a byte-case-insensitive match for name, + // separated from each other by 0x2C 0x20, in order. + return this[kHeadersMap].get(isLowerCase ? name : name.toLowerCase())?.value ?? null + } + + * [Symbol.iterator] () { + // use the lowercased name + for (const { 0: name, 1: { value } } of this[kHeadersMap]) { + yield [name, value] } - /** - * The number of committed blocks - * present in the blob. This header is returned only for append blobs. - * - * @readonly - */ - get blobCommittedBlockCount() { - return this.originalResponse.blobCommittedBlockCount; + } + + get entries () { + const headers = {} + + if (this[kHeadersMap].size !== 0) { + for (const { name, value } of this[kHeadersMap].values()) { + headers[name] = value + } } - /** - * The ETag contains a value that you can use to - * perform operations conditionally, in quotes. - * - * @readonly - */ - get etag() { - return this.originalResponse.etag; + + return headers + } + + rawValues () { + return this[kHeadersMap].values() + } + + get entriesList () { + const headers = [] + + if (this[kHeadersMap].size !== 0) { + for (const { 0: lowerName, 1: { name, value } } of this[kHeadersMap]) { + if (lowerName === 'set-cookie') { + for (const cookie of this.cookies) { + headers.push([name, cookie]) + } + } else { + headers.push([name, value]) + } + } } - /** - * The number of tags associated with the blob - * - * @readonly - */ - get tagCount() { - return this.originalResponse.tagCount; + + return headers + } + + // https://fetch.spec.whatwg.org/#convert-header-names-to-a-sorted-lowercase-set + toSortedArray () { + const size = this[kHeadersMap].size + const array = new Array(size) + // In most cases, you will use the fast-path. + // fast-path: Use binary insertion sort for small arrays. + if (size <= 32) { + if (size === 0) { + // If empty, it is an empty array. To avoid the first index assignment. + return array + } + // Improve performance by unrolling loop and avoiding double-loop. + // Double-loop-less version of the binary insertion sort. + const iterator = this[kHeadersMap][Symbol.iterator]() + const firstValue = iterator.next().value + // set [name, value] to first index. + array[0] = [firstValue[0], firstValue[1].value] + // https://fetch.spec.whatwg.org/#concept-header-list-sort-and-combine + // 3.2.2. Assert: value is non-null. + assert(firstValue[1].value !== null) + for ( + let i = 1, j = 0, right = 0, left = 0, pivot = 0, x, value; + i < size; + ++i + ) { + // get next value + value = iterator.next().value + // set [name, value] to current index. + x = array[i] = [value[0], value[1].value] + // https://fetch.spec.whatwg.org/#concept-header-list-sort-and-combine + // 3.2.2. Assert: value is non-null. + assert(x[1] !== null) + left = 0 + right = i + // binary search + while (left < right) { + // middle index + pivot = left + ((right - left) >> 1) + // compare header name + if (array[pivot][0] <= x[0]) { + left = pivot + 1 + } else { + right = pivot + } + } + if (i !== pivot) { + j = i + while (j > left) { + array[j] = array[--j] + } + array[left] = x + } + } + /* c8 ignore next 4 */ + if (!iterator.next().done) { + // This is for debugging and will never be called. + throw new TypeError('Unreachable') + } + return array + } else { + // This case would be a rare occurrence. + // slow-path: fallback + let i = 0 + for (const { 0: name, 1: { value } } of this[kHeadersMap]) { + array[i++] = [name, value] + // https://fetch.spec.whatwg.org/#concept-header-list-sort-and-combine + // 3.2.2. Assert: value is non-null. + assert(value !== null) + } + return array.sort(compareHeaderName) } - /** - * The error code. - * - * @readonly - */ - get errorCode() { - return this.originalResponse.errorCode; + } +} + +// https://fetch.spec.whatwg.org/#headers-class +class Headers { + #guard + #headersList + + constructor (init = undefined) { + webidl.util.markAsUncloneable(this) + + if (init === kConstruct) { + return } - /** - * The value of this header is set to - * true if the file data and application metadata are completely encrypted - * using the specified algorithm. Otherwise, the value is set to false (when - * the file is unencrypted, or if only parts of the file/application metadata - * are encrypted). - * - * @readonly - */ - get isServerEncrypted() { - return this.originalResponse.isServerEncrypted; + + this.#headersList = new HeadersList() + + // The new Headers(init) constructor steps are: + + // 1. Set this’s guard to "none". + this.#guard = 'none' + + // 2. If init is given, then fill this with init. + if (init !== undefined) { + init = webidl.converters.HeadersInit(init, 'Headers contructor', 'init') + fill(this, init) } - /** - * If the blob has a MD5 hash, and if - * request contains range header (Range or x-ms-range), this response header - * is returned with the value of the whole blob's MD5 value. This value may - * or may not be equal to the value returned in Content-MD5 header, with the - * latter calculated from the requested range. - * - * @readonly - */ - get blobContentMD5() { - return this.originalResponse.blobContentMD5; + } + + // https://fetch.spec.whatwg.org/#dom-headers-append + append (name, value) { + webidl.brandCheck(this, Headers) + + webidl.argumentLengthCheck(arguments, 2, 'Headers.append') + + const prefix = 'Headers.append' + name = webidl.converters.ByteString(name, prefix, 'name') + value = webidl.converters.ByteString(value, prefix, 'value') + + return appendHeader(this, name, value) + } + + // https://fetch.spec.whatwg.org/#dom-headers-delete + delete (name) { + webidl.brandCheck(this, Headers) + + webidl.argumentLengthCheck(arguments, 1, 'Headers.delete') + + const prefix = 'Headers.delete' + name = webidl.converters.ByteString(name, prefix, 'name') + + // 1. If name is not a header name, then throw a TypeError. + if (!isValidHeaderName(name)) { + throw webidl.errors.invalidArgument({ + prefix: 'Headers.delete', + value: name, + type: 'header name' + }) } - /** - * Returns the date and time the file was last - * modified. Any operation that modifies the file or its properties updates - * the last modified time. - * - * @readonly - */ - get lastModified() { - return this.originalResponse.lastModified; + + // 2. If this’s guard is "immutable", then throw a TypeError. + // 3. Otherwise, if this’s guard is "request" and name is a + // forbidden header name, return. + // 4. Otherwise, if this’s guard is "request-no-cors", name + // is not a no-CORS-safelisted request-header name, and + // name is not a privileged no-CORS request-header name, + // return. + // 5. Otherwise, if this’s guard is "response" and name is + // a forbidden response-header name, return. + // Note: undici does not implement forbidden header names + if (this.#guard === 'immutable') { + throw new TypeError('immutable') } - /** - * Returns the UTC date and time generated by the service that indicates the time at which the blob was - * last read or written to. - * - * @readonly - */ - get lastAccessed() { - return this.originalResponse.lastAccessed; + + // 6. If this’s header list does not contain name, then + // return. + if (!this.#headersList.contains(name, false)) { + return } - /** - * A name-value pair - * to associate with a file storage object. - * - * @readonly - */ - get metadata() { - return this.originalResponse.metadata; + + // 7. Delete name from this’s header list. + // 8. If this’s guard is "request-no-cors", then remove + // privileged no-CORS request headers from this. + this.#headersList.delete(name, false) + } + + // https://fetch.spec.whatwg.org/#dom-headers-get + get (name) { + webidl.brandCheck(this, Headers) + + webidl.argumentLengthCheck(arguments, 1, 'Headers.get') + + const prefix = 'Headers.get' + name = webidl.converters.ByteString(name, prefix, 'name') + + // 1. If name is not a header name, then throw a TypeError. + if (!isValidHeaderName(name)) { + throw webidl.errors.invalidArgument({ + prefix, + value: name, + type: 'header name' + }) } - /** - * This header uniquely identifies the request - * that was made and can be used for troubleshooting the request. - * - * @readonly - */ - get requestId() { - return this.originalResponse.requestId; + + // 2. Return the result of getting name from this’s header + // list. + return this.#headersList.get(name, false) + } + + // https://fetch.spec.whatwg.org/#dom-headers-has + has (name) { + webidl.brandCheck(this, Headers) + + webidl.argumentLengthCheck(arguments, 1, 'Headers.has') + + const prefix = 'Headers.has' + name = webidl.converters.ByteString(name, prefix, 'name') + + // 1. If name is not a header name, then throw a TypeError. + if (!isValidHeaderName(name)) { + throw webidl.errors.invalidArgument({ + prefix, + value: name, + type: 'header name' + }) } - /** - * If a client request id header is sent in the request, this header will be present in the - * response with the same value. - * - * @readonly - */ - get clientRequestId() { - return this.originalResponse.clientRequestId; + + // 2. Return true if this’s header list contains name; + // otherwise false. + return this.#headersList.contains(name, false) + } + + // https://fetch.spec.whatwg.org/#dom-headers-set + set (name, value) { + webidl.brandCheck(this, Headers) + + webidl.argumentLengthCheck(arguments, 2, 'Headers.set') + + const prefix = 'Headers.set' + name = webidl.converters.ByteString(name, prefix, 'name') + value = webidl.converters.ByteString(value, prefix, 'value') + + // 1. Normalize value. + value = headerValueNormalize(value) + + // 2. If name is not a header name or value is not a + // header value, then throw a TypeError. + if (!isValidHeaderName(name)) { + throw webidl.errors.invalidArgument({ + prefix, + value: name, + type: 'header name' + }) + } else if (!isValidHeaderValue(value)) { + throw webidl.errors.invalidArgument({ + prefix, + value, + type: 'header value' + }) } - /** - * Indicates the version of the Blob service used - * to execute the request. - * - * @readonly - */ - get version() { - return this.originalResponse.version; + + // 3. If this’s guard is "immutable", then throw a TypeError. + // 4. Otherwise, if this’s guard is "request" and name is a + // forbidden header name, return. + // 5. Otherwise, if this’s guard is "request-no-cors" and + // name/value is not a no-CORS-safelisted request-header, + // return. + // 6. Otherwise, if this’s guard is "response" and name is a + // forbidden response-header name, return. + // Note: undici does not implement forbidden header names + if (this.#guard === 'immutable') { + throw new TypeError('immutable') } - /** - * Indicates the versionId of the downloaded blob version. - * - * @readonly - */ - get versionId() { - return this.originalResponse.versionId; + + // 7. Set (name, value) in this’s header list. + // 8. If this’s guard is "request-no-cors", then remove + // privileged no-CORS request headers from this + this.#headersList.set(name, value, false) + } + + // https://fetch.spec.whatwg.org/#dom-headers-getsetcookie + getSetCookie () { + webidl.brandCheck(this, Headers) + + // 1. If this’s header list does not contain `Set-Cookie`, then return « ». + // 2. Return the values of all headers in this’s header list whose name is + // a byte-case-insensitive match for `Set-Cookie`, in order. + + const list = this.#headersList.cookies + + if (list) { + return [...list] } - /** - * Indicates whether version of this blob is a current version. - * - * @readonly - */ - get isCurrentVersion() { - return this.originalResponse.isCurrentVersion; + + return [] + } + + // https://fetch.spec.whatwg.org/#concept-header-list-sort-and-combine + get [kHeadersSortedMap] () { + if (this.#headersList[kHeadersSortedMap]) { + return this.#headersList[kHeadersSortedMap] } - /** - * The SHA-256 hash of the encryption key used to encrypt the blob. This value is only returned - * when the blob was encrypted with a customer-provided key. - * - * @readonly - */ - get encryptionKeySha256() { - return this.originalResponse.encryptionKeySha256; + + // 1. Let headers be an empty list of headers with the key being the name + // and value the value. + const headers = [] + + // 2. Let names be the result of convert header names to a sorted-lowercase + // set with all the names of the headers in list. + const names = this.#headersList.toSortedArray() + + const cookies = this.#headersList.cookies + + // fast-path + if (cookies === null || cookies.length === 1) { + // Note: The non-null assertion of value has already been done by `HeadersList#toSortedArray` + return (this.#headersList[kHeadersSortedMap] = names) } - /** - * If the request is to read a specified range and the x-ms-range-get-content-crc64 is set to - * true, then the request returns a crc64 for the range, as long as the range size is less than - * or equal to 4 MB. If both x-ms-range-get-content-crc64 & x-ms-range-get-content-md5 is - * specified in the same request, it will fail with 400(Bad Request) - */ - get contentCrc64() { - return this.originalResponse.contentCrc64; + + // 3. For each name of names: + for (let i = 0; i < names.length; ++i) { + const { 0: name, 1: value } = names[i] + // 1. If name is `set-cookie`, then: + if (name === 'set-cookie') { + // 1. Let values be a list of all values of headers in list whose name + // is a byte-case-insensitive match for name, in order. + + // 2. For each value of values: + // 1. Append (name, value) to headers. + for (let j = 0; j < cookies.length; ++j) { + headers.push([name, cookies[j]]) + } + } else { + // 2. Otherwise: + + // 1. Let value be the result of getting name from list. + + // 2. Assert: value is non-null. + // Note: This operation was done by `HeadersList#toSortedArray`. + + // 3. Append (name, value) to headers. + headers.push([name, value]) + } } - /** - * Object Replication Policy Id of the destination blob. - * - * @readonly - */ - get objectReplicationDestinationPolicyId() { - return this.originalResponse.objectReplicationDestinationPolicyId; + + // 4. Return headers. + return (this.#headersList[kHeadersSortedMap] = headers) + } + + [util.inspect.custom] (depth, options) { + options.depth ??= depth + + return `Headers ${util.formatWithOptions(options, this.#headersList.entries)}` + } + + static getHeadersGuard (o) { + return o.#guard + } + + static setHeadersGuard (o, guard) { + o.#guard = guard + } + + static getHeadersList (o) { + return o.#headersList + } + + static setHeadersList (o, list) { + o.#headersList = list + } +} + +const { getHeadersGuard, setHeadersGuard, getHeadersList, setHeadersList } = Headers +Reflect.deleteProperty(Headers, 'getHeadersGuard') +Reflect.deleteProperty(Headers, 'setHeadersGuard') +Reflect.deleteProperty(Headers, 'getHeadersList') +Reflect.deleteProperty(Headers, 'setHeadersList') + +iteratorMixin('Headers', Headers, kHeadersSortedMap, 0, 1) + +Object.defineProperties(Headers.prototype, { + append: kEnumerableProperty, + delete: kEnumerableProperty, + get: kEnumerableProperty, + has: kEnumerableProperty, + set: kEnumerableProperty, + getSetCookie: kEnumerableProperty, + [Symbol.toStringTag]: { + value: 'Headers', + configurable: true + }, + [util.inspect.custom]: { + enumerable: false + } +}) + +webidl.converters.HeadersInit = function (V, prefix, argument) { + if (webidl.util.Type(V) === 'Object') { + const iterator = Reflect.get(V, Symbol.iterator) + + // A work-around to ensure we send the properly-cased Headers when V is a Headers object. + // Read https://github.com/nodejs/undici/pull/3159#issuecomment-2075537226 before touching, please. + if (!util.types.isProxy(V) && iterator === Headers.prototype.entries) { // Headers object + try { + return getHeadersList(V).entriesList + } catch { + // fall-through + } } - /** - * Parsed Object Replication Policy Id, Rule Id(s) and status of the source blob. - * - * @readonly - */ - get objectReplicationSourceProperties() { - return this.originalResponse.objectReplicationSourceProperties; + + if (typeof iterator === 'function') { + return webidl.converters['sequence>'](V, prefix, argument, iterator.bind(V)) } - /** - * If this blob has been sealed. - * - * @readonly - */ - get isSealed() { - return this.originalResponse.isSealed; + + return webidl.converters['record'](V, prefix, argument) + } + + throw webidl.errors.conversionFailed({ + prefix: 'Headers constructor', + argument: 'Argument 1', + types: ['sequence>', 'record'] + }) +} + +module.exports = { + fill, + // for test. + compareHeaderName, + Headers, + HeadersList, + getHeadersGuard, + setHeadersGuard, + setHeadersList, + getHeadersList +} + + +/***/ }), + +/***/ 85170: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; +// https://github.com/Ethan-Arrowood/undici-fetch + + + +const { + makeNetworkError, + makeAppropriateNetworkError, + filterResponse, + makeResponse, + fromInnerResponse +} = __nccwpck_require__(12583) +const { HeadersList } = __nccwpck_require__(52991) +const { Request, cloneRequest } = __nccwpck_require__(20610) +const zlib = __nccwpck_require__(65628) +const { + bytesMatch, + makePolicyContainer, + clonePolicyContainer, + requestBadPort, + TAOCheck, + appendRequestOriginHeader, + responseLocationURL, + requestCurrentURL, + setRequestReferrerPolicyOnRedirect, + tryUpgradeRequestToAPotentiallyTrustworthyURL, + createOpaqueTimingInfo, + appendFetchMetadata, + corsCheck, + crossOriginResourcePolicyCheck, + determineRequestsReferrer, + coarsenedSharedCurrentTime, + createDeferredPromise, + isBlobLike, + sameOrigin, + isCancelled, + isAborted, + isErrorLike, + fullyReadBody, + readableStreamClose, + isomorphicEncode, + urlIsLocal, + urlIsHttpHttpsScheme, + urlHasHttpsScheme, + clampAndCoarsenConnectionTimingInfo, + simpleRangeHeaderValue, + buildContentRange, + createInflate, + extractMimeType +} = __nccwpck_require__(1310) +const { kState, kDispatcher } = __nccwpck_require__(749) +const assert = __nccwpck_require__(98061) +const { safelyExtractBody, extractBody } = __nccwpck_require__(36682) +const { + redirectStatusSet, + nullBodyStatus, + safeMethodsSet, + requestBodyHeader, + subresourceSet +} = __nccwpck_require__(68160) +const EE = __nccwpck_require__(15673) +const { Readable, pipeline, finished } = __nccwpck_require__(84492) +const { addAbortListener, isErrored, isReadable, bufferToLowerCasedHeaderName } = __nccwpck_require__(83983) +const { dataURLProcessor, serializeAMimeType, minimizeSupportedMimeType } = __nccwpck_require__(17704) +const { getGlobalDispatcher } = __nccwpck_require__(21892) +const { webidl } = __nccwpck_require__(44890) +const { STATUS_CODES } = __nccwpck_require__(88849) +const GET_OR_HEAD = ['GET', 'HEAD'] + +const defaultUserAgent = typeof __UNDICI_IS_NODE__ !== 'undefined' || typeof esbuildDetection !== 'undefined' + ? 'node' + : 'undici' + +/** @type {import('buffer').resolveObjectURL} */ +let resolveObjectURL + +class Fetch extends EE { + constructor (dispatcher) { + super() + + this.dispatcher = dispatcher + this.connection = null + this.dump = false + this.state = 'ongoing' + } + + terminate (reason) { + if (this.state !== 'ongoing') { + return } - /** - * UTC date/time value generated by the service that indicates the time at which the blob immutability policy will expire. - * - * @readonly - */ - get immutabilityPolicyExpiresOn() { - return this.originalResponse.immutabilityPolicyExpiresOn; + + this.state = 'terminated' + this.connection?.destroy(reason) + this.emit('terminated', reason) + } + + // https://fetch.spec.whatwg.org/#fetch-controller-abort + abort (error) { + if (this.state !== 'ongoing') { + return } - /** - * Indicates immutability policy mode. - * - * @readonly - */ - get immutabilityPolicyMode() { - return this.originalResponse.immutabilityPolicyMode; + + // 1. Set controller’s state to "aborted". + this.state = 'aborted' + + // 2. Let fallbackError be an "AbortError" DOMException. + // 3. Set error to fallbackError if it is not given. + if (!error) { + error = new DOMException('The operation was aborted.', 'AbortError') } - /** - * Indicates if a legal hold is present on the blob. - * - * @readonly - */ - get legalHold() { - return this.originalResponse.legalHold; + + // 4. Let serializedError be StructuredSerialize(error). + // If that threw an exception, catch it, and let + // serializedError be StructuredSerialize(fallbackError). + + // 5. Set controller’s serialized abort reason to serializedError. + this.serializedAbortReason = error + + this.connection?.destroy(error) + this.emit('terminated', error) + } +} + +function handleFetchDone (response) { + finalizeAndReportTiming(response, 'fetch') +} + +// https://fetch.spec.whatwg.org/#fetch-method +function fetch (input, init = undefined) { + webidl.argumentLengthCheck(arguments, 1, 'globalThis.fetch') + + // 1. Let p be a new promise. + let p = createDeferredPromise() + + // 2. Let requestObject be the result of invoking the initial value of + // Request as constructor with input and init as arguments. If this throws + // an exception, reject p with it and return p. + let requestObject + + try { + requestObject = new Request(input, init) + } catch (e) { + p.reject(e) + return p.promise + } + + // 3. Let request be requestObject’s request. + const request = requestObject[kState] + + // 4. If requestObject’s signal’s aborted flag is set, then: + if (requestObject.signal.aborted) { + // 1. Abort the fetch() call with p, request, null, and + // requestObject’s signal’s abort reason. + abortFetch(p, request, null, requestObject.signal.reason) + + // 2. Return p. + return p.promise + } + + // 5. Let globalObject be request’s client’s global object. + const globalObject = request.client.globalObject + + // 6. If globalObject is a ServiceWorkerGlobalScope object, then set + // request’s service-workers mode to "none". + if (globalObject?.constructor?.name === 'ServiceWorkerGlobalScope') { + request.serviceWorkers = 'none' + } + + // 7. Let responseObject be null. + let responseObject = null + + // 8. Let relevantRealm be this’s relevant Realm. + + // 9. Let locallyAborted be false. + let locallyAborted = false + + // 10. Let controller be null. + let controller = null + + // 11. Add the following abort steps to requestObject’s signal: + addAbortListener( + requestObject.signal, + () => { + // 1. Set locallyAborted to true. + locallyAborted = true + + // 2. Assert: controller is non-null. + assert(controller != null) + + // 3. Abort controller with requestObject’s signal’s abort reason. + controller.abort(requestObject.signal.reason) + + const realResponse = responseObject?.deref() + + // 4. Abort the fetch() call with p, request, responseObject, + // and requestObject’s signal’s abort reason. + abortFetch(p, request, realResponse, requestObject.signal.reason) } - /** - * The response body as a browser Blob. - * Always undefined in node.js. - * - * @readonly - */ - get contentAsBlob() { - return this.originalResponse.blobBody; + ) + + // 12. Let handleFetchDone given response response be to finalize and + // report timing with response, globalObject, and "fetch". + // see function handleFetchDone + + // 13. Set controller to the result of calling fetch given request, + // with processResponseEndOfBody set to handleFetchDone, and processResponse + // given response being these substeps: + + const processResponse = (response) => { + // 1. If locallyAborted is true, terminate these substeps. + if (locallyAborted) { + return } - /** - * The response body as a node.js Readable stream. - * Always undefined in the browser. - * - * It will automatically retry when internal read stream unexpected ends. - * - * @readonly - */ - get readableStreamBody() { - return coreHttp.isNode ? this.blobDownloadStream : undefined; + + // 2. If response’s aborted flag is set, then: + if (response.aborted) { + // 1. Let deserializedError be the result of deserialize a serialized + // abort reason given controller’s serialized abort reason and + // relevantRealm. + + // 2. Abort the fetch() call with p, request, responseObject, and + // deserializedError. + + abortFetch(p, request, responseObject, controller.serializedAbortReason) + return } - /** - * The HTTP response. - */ - get _response() { - return this.originalResponse._response; + + // 3. If response is a network error, then reject p with a TypeError + // and terminate these substeps. + if (response.type === 'error') { + p.reject(new TypeError('fetch failed', { cause: response.error })) + return } + + // 4. Set responseObject to the result of creating a Response object, + // given response, "immutable", and relevantRealm. + responseObject = new WeakRef(fromInnerResponse(response, 'immutable')) + + // 5. Resolve p with responseObject. + p.resolve(responseObject.deref()) + p = null + } + + controller = fetching({ + request, + processResponseEndOfBody: handleFetchDone, + processResponse, + dispatcher: requestObject[kDispatcher] // undici + }) + + // 14. Return p. + return p.promise } -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -const AVRO_SYNC_MARKER_SIZE = 16; -const AVRO_INIT_BYTES = new Uint8Array([79, 98, 106, 1]); -const AVRO_CODEC_KEY = "avro.codec"; -const AVRO_SCHEMA_KEY = "avro.schema"; +// https://fetch.spec.whatwg.org/#finalize-and-report-timing +function finalizeAndReportTiming (response, initiatorType = 'other') { + // 1. If response is an aborted network error, then return. + if (response.type === 'error' && response.aborted) { + return + } -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -function arraysEqual(a, b) { - if (a === b) - return true; - if (a == null || b == null) - return false; - if (a.length != b.length) - return false; - for (let i = 0; i < a.length; ++i) { - if (a[i] !== b[i]) - return false; - } - return true; + // 2. If response’s URL list is null or empty, then return. + if (!response.urlList?.length) { + return + } + + // 3. Let originalURL be response’s URL list[0]. + const originalURL = response.urlList[0] + + // 4. Let timingInfo be response’s timing info. + let timingInfo = response.timingInfo + + // 5. Let cacheState be response’s cache state. + let cacheState = response.cacheState + + // 6. If originalURL’s scheme is not an HTTP(S) scheme, then return. + if (!urlIsHttpHttpsScheme(originalURL)) { + return + } + + // 7. If timingInfo is null, then return. + if (timingInfo === null) { + return + } + + // 8. If response’s timing allow passed flag is not set, then: + if (!response.timingAllowPassed) { + // 1. Set timingInfo to a the result of creating an opaque timing info for timingInfo. + timingInfo = createOpaqueTimingInfo({ + startTime: timingInfo.startTime + }) + + // 2. Set cacheState to the empty string. + cacheState = '' + } + + // 9. Set timingInfo’s end time to the coarsened shared current time + // given global’s relevant settings object’s cross-origin isolated + // capability. + // TODO: given global’s relevant settings object’s cross-origin isolated + // capability? + timingInfo.endTime = coarsenedSharedCurrentTime() + + // 10. Set response’s timing info to timingInfo. + response.timingInfo = timingInfo + + // 11. Mark resource timing for timingInfo, originalURL, initiatorType, + // global, and cacheState. + markResourceTiming( + timingInfo, + originalURL.href, + initiatorType, + globalThis, + cacheState + ) } -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -class AvroParser { - /** - * Reads a fixed number of bytes from the stream. - * - * @param stream - - * @param length - - * @param options - - */ - static async readFixedBytes(stream, length, options = {}) { - const bytes = await stream.read(length, { abortSignal: options.abortSignal }); - if (bytes.length != length) { - throw new Error("Hit stream end."); - } - return bytes; - } - /** - * Reads a single byte from the stream. - * - * @param stream - - * @param options - - */ - static async readByte(stream, options = {}) { - const buf = await AvroParser.readFixedBytes(stream, 1, options); - return buf[0]; +// https://w3c.github.io/resource-timing/#dfn-mark-resource-timing +const markResourceTiming = performance.markResourceTiming + +// https://fetch.spec.whatwg.org/#abort-fetch +function abortFetch (p, request, responseObject, error) { + // 1. Reject promise with error. + if (p) { + // We might have already resolved the promise at this stage + p.reject(error) + } + + // 2. If request’s body is not null and is readable, then cancel request’s + // body with error. + if (request.body != null && isReadable(request.body?.stream)) { + request.body.stream.cancel(error).catch((err) => { + if (err.code === 'ERR_INVALID_STATE') { + // Node bug? + return + } + throw err + }) + } + + // 3. If responseObject is null, then return. + if (responseObject == null) { + return + } + + // 4. Let response be responseObject’s response. + const response = responseObject[kState] + + // 5. If response’s body is not null and is readable, then error response’s + // body with error. + if (response.body != null && isReadable(response.body?.stream)) { + response.body.stream.cancel(error).catch((err) => { + if (err.code === 'ERR_INVALID_STATE') { + // Node bug? + return + } + throw err + }) + } +} + +// https://fetch.spec.whatwg.org/#fetching +function fetching ({ + request, + processRequestBodyChunkLength, + processRequestEndOfBody, + processResponse, + processResponseEndOfBody, + processResponseConsumeBody, + useParallelQueue = false, + dispatcher = getGlobalDispatcher() // undici +}) { + // Ensure that the dispatcher is set accordingly + assert(dispatcher) + + // 1. Let taskDestination be null. + let taskDestination = null + + // 2. Let crossOriginIsolatedCapability be false. + let crossOriginIsolatedCapability = false + + // 3. If request’s client is non-null, then: + if (request.client != null) { + // 1. Set taskDestination to request’s client’s global object. + taskDestination = request.client.globalObject + + // 2. Set crossOriginIsolatedCapability to request’s client’s cross-origin + // isolated capability. + crossOriginIsolatedCapability = + request.client.crossOriginIsolatedCapability + } + + // 4. If useParallelQueue is true, then set taskDestination to the result of + // starting a new parallel queue. + // TODO + + // 5. Let timingInfo be a new fetch timing info whose start time and + // post-redirect start time are the coarsened shared current time given + // crossOriginIsolatedCapability. + const currentTime = coarsenedSharedCurrentTime(crossOriginIsolatedCapability) + const timingInfo = createOpaqueTimingInfo({ + startTime: currentTime + }) + + // 6. Let fetchParams be a new fetch params whose + // request is request, + // timing info is timingInfo, + // process request body chunk length is processRequestBodyChunkLength, + // process request end-of-body is processRequestEndOfBody, + // process response is processResponse, + // process response consume body is processResponseConsumeBody, + // process response end-of-body is processResponseEndOfBody, + // task destination is taskDestination, + // and cross-origin isolated capability is crossOriginIsolatedCapability. + const fetchParams = { + controller: new Fetch(dispatcher), + request, + timingInfo, + processRequestBodyChunkLength, + processRequestEndOfBody, + processResponse, + processResponseConsumeBody, + processResponseEndOfBody, + taskDestination, + crossOriginIsolatedCapability + } + + // 7. If request’s body is a byte sequence, then set request’s body to + // request’s body as a body. + // NOTE: Since fetching is only called from fetch, body should already be + // extracted. + assert(!request.body || request.body.stream) + + // 8. If request’s window is "client", then set request’s window to request’s + // client, if request’s client’s global object is a Window object; otherwise + // "no-window". + if (request.window === 'client') { + // TODO: What if request.client is null? + request.window = + request.client?.globalObject?.constructor?.name === 'Window' + ? request.client + : 'no-window' + } + + // 9. If request’s origin is "client", then set request’s origin to request’s + // client’s origin. + if (request.origin === 'client') { + request.origin = request.client.origin + } + + // 10. If all of the following conditions are true: + // TODO + + // 11. If request’s policy container is "client", then: + if (request.policyContainer === 'client') { + // 1. If request’s client is non-null, then set request’s policy + // container to a clone of request’s client’s policy container. [HTML] + if (request.client != null) { + request.policyContainer = clonePolicyContainer( + request.client.policyContainer + ) + } else { + // 2. Otherwise, set request’s policy container to a new policy + // container. + request.policyContainer = makePolicyContainer() } - // int and long are stored in variable-length zig-zag coding. - // variable-length: https://lucene.apache.org/core/3_5_0/fileformats.html#VInt - // zig-zag: https://developers.google.com/protocol-buffers/docs/encoding?csw=1#types - static async readZigZagLong(stream, options = {}) { - let zigZagEncoded = 0; - let significanceInBit = 0; - let byte, haveMoreByte, significanceInFloat; - do { - byte = await AvroParser.readByte(stream, options); - haveMoreByte = byte & 0x80; - zigZagEncoded |= (byte & 0x7f) << significanceInBit; - significanceInBit += 7; - } while (haveMoreByte && significanceInBit < 28); // bitwise operation only works for 32-bit integers - if (haveMoreByte) { - // Switch to float arithmetic - zigZagEncoded = zigZagEncoded; - significanceInFloat = 268435456; // 2 ** 28. - do { - byte = await AvroParser.readByte(stream, options); - zigZagEncoded += (byte & 0x7f) * significanceInFloat; - significanceInFloat *= 128; // 2 ** 7 - } while (byte & 0x80); - const res = (zigZagEncoded % 2 ? -(zigZagEncoded + 1) : zigZagEncoded) / 2; - if (res < Number.MIN_SAFE_INTEGER || res > Number.MAX_SAFE_INTEGER) { - throw new Error("Integer overflow."); - } - return res; + } + + // 12. If request’s header list does not contain `Accept`, then: + if (!request.headersList.contains('accept', true)) { + // 1. Let value be `*/*`. + const value = '*/*' + + // 2. A user agent should set value to the first matching statement, if + // any, switching on request’s destination: + // "document" + // "frame" + // "iframe" + // `text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8` + // "image" + // `image/png,image/svg+xml,image/*;q=0.8,*/*;q=0.5` + // "style" + // `text/css,*/*;q=0.1` + // TODO + + // 3. Append `Accept`/value to request’s header list. + request.headersList.append('accept', value, true) + } + + // 13. If request’s header list does not contain `Accept-Language`, then + // user agents should append `Accept-Language`/an appropriate value to + // request’s header list. + if (!request.headersList.contains('accept-language', true)) { + request.headersList.append('accept-language', '*', true) + } + + // 14. If request’s priority is null, then use request’s initiator and + // destination appropriately in setting request’s priority to a + // user-agent-defined object. + if (request.priority === null) { + // TODO + } + + // 15. If request is a subresource request, then: + if (subresourceSet.has(request.destination)) { + // TODO + } + + // 16. Run main fetch given fetchParams. + mainFetch(fetchParams) + .catch(err => { + fetchParams.controller.terminate(err) + }) + + // 17. Return fetchParam's controller + return fetchParams.controller +} + +// https://fetch.spec.whatwg.org/#concept-main-fetch +async function mainFetch (fetchParams, recursive = false) { + // 1. Let request be fetchParams’s request. + const request = fetchParams.request + + // 2. Let response be null. + let response = null + + // 3. If request’s local-URLs-only flag is set and request’s current URL is + // not local, then set response to a network error. + if (request.localURLsOnly && !urlIsLocal(requestCurrentURL(request))) { + response = makeNetworkError('local URLs only') + } + + // 4. Run report Content Security Policy violations for request. + // TODO + + // 5. Upgrade request to a potentially trustworthy URL, if appropriate. + tryUpgradeRequestToAPotentiallyTrustworthyURL(request) + + // 6. If should request be blocked due to a bad port, should fetching request + // be blocked as mixed content, or should request be blocked by Content + // Security Policy returns blocked, then set response to a network error. + if (requestBadPort(request) === 'blocked') { + response = makeNetworkError('bad port') + } + // TODO: should fetching request be blocked as mixed content? + // TODO: should request be blocked by Content Security Policy? + + // 7. If request’s referrer policy is the empty string, then set request’s + // referrer policy to request’s policy container’s referrer policy. + if (request.referrerPolicy === '') { + request.referrerPolicy = request.policyContainer.referrerPolicy + } + + // 8. If request’s referrer is not "no-referrer", then set request’s + // referrer to the result of invoking determine request’s referrer. + if (request.referrer !== 'no-referrer') { + request.referrer = determineRequestsReferrer(request) + } + + // 9. Set request’s current URL’s scheme to "https" if all of the following + // conditions are true: + // - request’s current URL’s scheme is "http" + // - request’s current URL’s host is a domain + // - Matching request’s current URL’s host per Known HSTS Host Domain Name + // Matching results in either a superdomain match with an asserted + // includeSubDomains directive or a congruent match (with or without an + // asserted includeSubDomains directive). [HSTS] + // TODO + + // 10. If recursive is false, then run the remaining steps in parallel. + // TODO + + // 11. If response is null, then set response to the result of running + // the steps corresponding to the first matching statement: + if (response === null) { + response = await (async () => { + const currentURL = requestCurrentURL(request) + + if ( + // - request’s current URL’s origin is same origin with request’s origin, + // and request’s response tainting is "basic" + (sameOrigin(currentURL, request.url) && request.responseTainting === 'basic') || + // request’s current URL’s scheme is "data" + (currentURL.protocol === 'data:') || + // - request’s mode is "navigate" or "websocket" + (request.mode === 'navigate' || request.mode === 'websocket') + ) { + // 1. Set request’s response tainting to "basic". + request.responseTainting = 'basic' + + // 2. Return the result of running scheme fetch given fetchParams. + return await schemeFetch(fetchParams) + } + + // request’s mode is "same-origin" + if (request.mode === 'same-origin') { + // 1. Return a network error. + return makeNetworkError('request mode cannot be "same-origin"') + } + + // request’s mode is "no-cors" + if (request.mode === 'no-cors') { + // 1. If request’s redirect mode is not "follow", then return a network + // error. + if (request.redirect !== 'follow') { + return makeNetworkError( + 'redirect mode cannot be "follow" for "no-cors" request' + ) } - return (zigZagEncoded >> 1) ^ -(zigZagEncoded & 1); + + // 2. Set request’s response tainting to "opaque". + request.responseTainting = 'opaque' + + // 3. Return the result of running scheme fetch given fetchParams. + return await schemeFetch(fetchParams) + } + + // request’s current URL’s scheme is not an HTTP(S) scheme + if (!urlIsHttpHttpsScheme(requestCurrentURL(request))) { + // Return a network error. + return makeNetworkError('URL scheme must be a HTTP(S) scheme') + } + + // - request’s use-CORS-preflight flag is set + // - request’s unsafe-request flag is set and either request’s method is + // not a CORS-safelisted method or CORS-unsafe request-header names with + // request’s header list is not empty + // 1. Set request’s response tainting to "cors". + // 2. Let corsWithPreflightResponse be the result of running HTTP fetch + // given fetchParams and true. + // 3. If corsWithPreflightResponse is a network error, then clear cache + // entries using request. + // 4. Return corsWithPreflightResponse. + // TODO + + // Otherwise + // 1. Set request’s response tainting to "cors". + request.responseTainting = 'cors' + + // 2. Return the result of running HTTP fetch given fetchParams. + return await httpFetch(fetchParams) + })() + } + + // 12. If recursive is true, then return response. + if (recursive) { + return response + } + + // 13. If response is not a network error and response is not a filtered + // response, then: + if (response.status !== 0 && !response.internalResponse) { + // If request’s response tainting is "cors", then: + if (request.responseTainting === 'cors') { + // 1. Let headerNames be the result of extracting header list values + // given `Access-Control-Expose-Headers` and response’s header list. + // TODO + // 2. If request’s credentials mode is not "include" and headerNames + // contains `*`, then set response’s CORS-exposed header-name list to + // all unique header names in response’s header list. + // TODO + // 3. Otherwise, if headerNames is not null or failure, then set + // response’s CORS-exposed header-name list to headerNames. + // TODO + } + + // Set response to the following filtered response with response as its + // internal response, depending on request’s response tainting: + if (request.responseTainting === 'basic') { + response = filterResponse(response, 'basic') + } else if (request.responseTainting === 'cors') { + response = filterResponse(response, 'cors') + } else if (request.responseTainting === 'opaque') { + response = filterResponse(response, 'opaque') + } else { + assert(false) } - static async readLong(stream, options = {}) { - return AvroParser.readZigZagLong(stream, options); + } + + // 14. Let internalResponse be response, if response is a network error, + // and response’s internal response otherwise. + let internalResponse = + response.status === 0 ? response : response.internalResponse + + // 15. If internalResponse’s URL list is empty, then set it to a clone of + // request’s URL list. + if (internalResponse.urlList.length === 0) { + internalResponse.urlList.push(...request.urlList) + } + + // 16. If request’s timing allow failed flag is unset, then set + // internalResponse’s timing allow passed flag. + if (!request.timingAllowFailed) { + response.timingAllowPassed = true + } + + // 17. If response is not a network error and any of the following returns + // blocked + // - should internalResponse to request be blocked as mixed content + // - should internalResponse to request be blocked by Content Security Policy + // - should internalResponse to request be blocked due to its MIME type + // - should internalResponse to request be blocked due to nosniff + // TODO + + // 18. If response’s type is "opaque", internalResponse’s status is 206, + // internalResponse’s range-requested flag is set, and request’s header + // list does not contain `Range`, then set response and internalResponse + // to a network error. + if ( + response.type === 'opaque' && + internalResponse.status === 206 && + internalResponse.rangeRequested && + !request.headers.contains('range', true) + ) { + response = internalResponse = makeNetworkError() + } + + // 19. If response is not a network error and either request’s method is + // `HEAD` or `CONNECT`, or internalResponse’s status is a null body status, + // set internalResponse’s body to null and disregard any enqueuing toward + // it (if any). + if ( + response.status !== 0 && + (request.method === 'HEAD' || + request.method === 'CONNECT' || + nullBodyStatus.includes(internalResponse.status)) + ) { + internalResponse.body = null + fetchParams.controller.dump = true + } + + // 20. If request’s integrity metadata is not the empty string, then: + if (request.integrity) { + // 1. Let processBodyError be this step: run fetch finale given fetchParams + // and a network error. + const processBodyError = (reason) => + fetchFinale(fetchParams, makeNetworkError(reason)) + + // 2. If request’s response tainting is "opaque", or response’s body is null, + // then run processBodyError and abort these steps. + if (request.responseTainting === 'opaque' || response.body == null) { + processBodyError(response.error) + return } - static async readInt(stream, options = {}) { - return AvroParser.readZigZagLong(stream, options); + + // 3. Let processBody given bytes be these steps: + const processBody = (bytes) => { + // 1. If bytes do not match request’s integrity metadata, + // then run processBodyError and abort these steps. [SRI] + if (!bytesMatch(bytes, request.integrity)) { + processBodyError('integrity mismatch') + return + } + + // 2. Set response’s body to bytes as a body. + response.body = safelyExtractBody(bytes)[0] + + // 3. Run fetch finale given fetchParams and response. + fetchFinale(fetchParams, response) } - static async readNull() { - return null; + + // 4. Fully read response’s body given processBody and processBodyError. + await fullyReadBody(response.body, processBody, processBodyError) + } else { + // 21. Otherwise, run fetch finale given fetchParams and response. + fetchFinale(fetchParams, response) + } +} + +// https://fetch.spec.whatwg.org/#concept-scheme-fetch +// given a fetch params fetchParams +function schemeFetch (fetchParams) { + // Note: since the connection is destroyed on redirect, which sets fetchParams to a + // cancelled state, we do not want this condition to trigger *unless* there have been + // no redirects. See https://github.com/nodejs/undici/issues/1776 + // 1. If fetchParams is canceled, then return the appropriate network error for fetchParams. + if (isCancelled(fetchParams) && fetchParams.request.redirectCount === 0) { + return Promise.resolve(makeAppropriateNetworkError(fetchParams)) + } + + // 2. Let request be fetchParams’s request. + const { request } = fetchParams + + const { protocol: scheme } = requestCurrentURL(request) + + // 3. Switch on request’s current URL’s scheme and run the associated steps: + switch (scheme) { + case 'about:': { + // If request’s current URL’s path is the string "blank", then return a new response + // whose status message is `OK`, header list is « (`Content-Type`, `text/html;charset=utf-8`) », + // and body is the empty byte sequence as a body. + + // Otherwise, return a network error. + return Promise.resolve(makeNetworkError('about scheme is not supported')) } - static async readBoolean(stream, options = {}) { - const b = await AvroParser.readByte(stream, options); - if (b == 1) { - return true; - } - else if (b == 0) { - return false; + case 'blob:': { + if (!resolveObjectURL) { + resolveObjectURL = (__nccwpck_require__(72254).resolveObjectURL) + } + + // 1. Let blobURLEntry be request’s current URL’s blob URL entry. + const blobURLEntry = requestCurrentURL(request) + + // https://github.com/web-platform-tests/wpt/blob/7b0ebaccc62b566a1965396e5be7bb2bc06f841f/FileAPI/url/resources/fetch-tests.js#L52-L56 + // Buffer.resolveObjectURL does not ignore URL queries. + if (blobURLEntry.search.length !== 0) { + return Promise.resolve(makeNetworkError('NetworkError when attempting to fetch resource.')) + } + + const blob = resolveObjectURL(blobURLEntry.toString()) + + // 2. If request’s method is not `GET`, blobURLEntry is null, or blobURLEntry’s + // object is not a Blob object, then return a network error. + if (request.method !== 'GET' || !isBlobLike(blob)) { + return Promise.resolve(makeNetworkError('invalid method')) + } + + // 3. Let blob be blobURLEntry’s object. + // Note: done above + + // 4. Let response be a new response. + const response = makeResponse() + + // 5. Let fullLength be blob’s size. + const fullLength = blob.size + + // 6. Let serializedFullLength be fullLength, serialized and isomorphic encoded. + const serializedFullLength = isomorphicEncode(`${fullLength}`) + + // 7. Let type be blob’s type. + const type = blob.type + + // 8. If request’s header list does not contain `Range`: + // 9. Otherwise: + if (!request.headersList.contains('range', true)) { + // 1. Let bodyWithType be the result of safely extracting blob. + // Note: in the FileAPI a blob "object" is a Blob *or* a MediaSource. + // In node, this can only ever be a Blob. Therefore we can safely + // use extractBody directly. + const bodyWithType = extractBody(blob) + + // 2. Set response’s status message to `OK`. + response.statusText = 'OK' + + // 3. Set response’s body to bodyWithType’s body. + response.body = bodyWithType[0] + + // 4. Set response’s header list to « (`Content-Length`, serializedFullLength), (`Content-Type`, type) ». + response.headersList.set('content-length', serializedFullLength, true) + response.headersList.set('content-type', type, true) + } else { + // 1. Set response’s range-requested flag. + response.rangeRequested = true + + // 2. Let rangeHeader be the result of getting `Range` from request’s header list. + const rangeHeader = request.headersList.get('range', true) + + // 3. Let rangeValue be the result of parsing a single range header value given rangeHeader and true. + const rangeValue = simpleRangeHeaderValue(rangeHeader, true) + + // 4. If rangeValue is failure, then return a network error. + if (rangeValue === 'failure') { + return Promise.resolve(makeNetworkError('failed to fetch the data URL')) } - else { - throw new Error("Byte was not a boolean."); + + // 5. Let (rangeStart, rangeEnd) be rangeValue. + let { rangeStartValue: rangeStart, rangeEndValue: rangeEnd } = rangeValue + + // 6. If rangeStart is null: + // 7. Otherwise: + if (rangeStart === null) { + // 1. Set rangeStart to fullLength − rangeEnd. + rangeStart = fullLength - rangeEnd + + // 2. Set rangeEnd to rangeStart + rangeEnd − 1. + rangeEnd = rangeStart + rangeEnd - 1 + } else { + // 1. If rangeStart is greater than or equal to fullLength, then return a network error. + if (rangeStart >= fullLength) { + return Promise.resolve(makeNetworkError('Range start is greater than the blob\'s size.')) + } + + // 2. If rangeEnd is null or rangeEnd is greater than or equal to fullLength, then set + // rangeEnd to fullLength − 1. + if (rangeEnd === null || rangeEnd >= fullLength) { + rangeEnd = fullLength - 1 + } } + + // 8. Let slicedBlob be the result of invoking slice blob given blob, rangeStart, + // rangeEnd + 1, and type. + const slicedBlob = blob.slice(rangeStart, rangeEnd, type) + + // 9. Let slicedBodyWithType be the result of safely extracting slicedBlob. + // Note: same reason as mentioned above as to why we use extractBody + const slicedBodyWithType = extractBody(slicedBlob) + + // 10. Set response’s body to slicedBodyWithType’s body. + response.body = slicedBodyWithType[0] + + // 11. Let serializedSlicedLength be slicedBlob’s size, serialized and isomorphic encoded. + const serializedSlicedLength = isomorphicEncode(`${slicedBlob.size}`) + + // 12. Let contentRange be the result of invoking build a content range given rangeStart, + // rangeEnd, and fullLength. + const contentRange = buildContentRange(rangeStart, rangeEnd, fullLength) + + // 13. Set response’s status to 206. + response.status = 206 + + // 14. Set response’s status message to `Partial Content`. + response.statusText = 'Partial Content' + + // 15. Set response’s header list to « (`Content-Length`, serializedSlicedLength), + // (`Content-Type`, type), (`Content-Range`, contentRange) ». + response.headersList.set('content-length', serializedSlicedLength, true) + response.headersList.set('content-type', type, true) + response.headersList.set('content-range', contentRange, true) + } + + // 10. Return response. + return Promise.resolve(response) } - static async readFloat(stream, options = {}) { - const u8arr = await AvroParser.readFixedBytes(stream, 4, options); - const view = new DataView(u8arr.buffer, u8arr.byteOffset, u8arr.byteLength); - return view.getFloat32(0, true); // littleEndian = true + case 'data:': { + // 1. Let dataURLStruct be the result of running the + // data: URL processor on request’s current URL. + const currentURL = requestCurrentURL(request) + const dataURLStruct = dataURLProcessor(currentURL) + + // 2. If dataURLStruct is failure, then return a + // network error. + if (dataURLStruct === 'failure') { + return Promise.resolve(makeNetworkError('failed to fetch the data URL')) + } + + // 3. Let mimeType be dataURLStruct’s MIME type, serialized. + const mimeType = serializeAMimeType(dataURLStruct.mimeType) + + // 4. Return a response whose status message is `OK`, + // header list is « (`Content-Type`, mimeType) », + // and body is dataURLStruct’s body as a body. + return Promise.resolve(makeResponse({ + statusText: 'OK', + headersList: [ + ['content-type', { name: 'Content-Type', value: mimeType }] + ], + body: safelyExtractBody(dataURLStruct.body)[0] + })) } - static async readDouble(stream, options = {}) { - const u8arr = await AvroParser.readFixedBytes(stream, 8, options); - const view = new DataView(u8arr.buffer, u8arr.byteOffset, u8arr.byteLength); - return view.getFloat64(0, true); // littleEndian = true + case 'file:': { + // For now, unfortunate as it is, file URLs are left as an exercise for the reader. + // When in doubt, return a network error. + return Promise.resolve(makeNetworkError('not implemented... yet...')) } - static async readBytes(stream, options = {}) { - const size = await AvroParser.readLong(stream, options); - if (size < 0) { - throw new Error("Bytes size was negative."); - } - return await stream.read(size, { abortSignal: options.abortSignal }); + case 'http:': + case 'https:': { + // Return the result of running HTTP fetch given fetchParams. + + return httpFetch(fetchParams) + .catch((err) => makeNetworkError(err)) } - static async readString(stream, options = {}) { - const u8arr = await AvroParser.readBytes(stream, options); - // polyfill TextDecoder to be backward compatible with older - // nodejs that doesn't expose TextDecoder as a global variable - if (typeof TextDecoder === "undefined" && "function" !== "undefined") { - global.TextDecoder = (__nccwpck_require__(3837).TextDecoder); - } - // FUTURE: need TextDecoder polyfill for IE - const utf8decoder = new TextDecoder(); - return utf8decoder.decode(u8arr); + default: { + return Promise.resolve(makeNetworkError('unknown scheme')) } - static async readMapPair(stream, readItemMethod, options = {}) { - const key = await AvroParser.readString(stream, options); - // FUTURE: this won't work with readFixed (currently not supported) which needs a length as the parameter. - const value = await readItemMethod(stream, options); - return { key, value }; + } +} + +// https://fetch.spec.whatwg.org/#finalize-response +function finalizeResponse (fetchParams, response) { + // 1. Set fetchParams’s request’s done flag. + fetchParams.request.done = true + + // 2, If fetchParams’s process response done is not null, then queue a fetch + // task to run fetchParams’s process response done given response, with + // fetchParams’s task destination. + if (fetchParams.processResponseDone != null) { + queueMicrotask(() => fetchParams.processResponseDone(response)) + } +} + +// https://fetch.spec.whatwg.org/#fetch-finale +function fetchFinale (fetchParams, response) { + // 1. Let timingInfo be fetchParams’s timing info. + let timingInfo = fetchParams.timingInfo + + // 2. If response is not a network error and fetchParams’s request’s client is a secure context, + // then set timingInfo’s server-timing headers to the result of getting, decoding, and splitting + // `Server-Timing` from response’s internal response’s header list. + // TODO + + // 3. Let processResponseEndOfBody be the following steps: + const processResponseEndOfBody = () => { + // 1. Let unsafeEndTime be the unsafe shared current time. + const unsafeEndTime = Date.now() // ? + + // 2. If fetchParams’s request’s destination is "document", then set fetchParams’s controller’s + // full timing info to fetchParams’s timing info. + if (fetchParams.request.destination === 'document') { + fetchParams.controller.fullTimingInfo = timingInfo } - static async readMap(stream, readItemMethod, options = {}) { - const readPairMethod = async (stream, options = {}) => { - return await AvroParser.readMapPair(stream, readItemMethod, options); - }; - const pairs = await AvroParser.readArray(stream, readPairMethod, options); - const dict = {}; - for (const pair of pairs) { - dict[pair.key] = pair.value; + + // 3. Set fetchParams’s controller’s report timing steps to the following steps given a global object global: + fetchParams.controller.reportTimingSteps = () => { + // 1. If fetchParams’s request’s URL’s scheme is not an HTTP(S) scheme, then return. + if (fetchParams.request.url.protocol !== 'https:') { + return + } + + // 2. Set timingInfo’s end time to the relative high resolution time given unsafeEndTime and global. + timingInfo.endTime = unsafeEndTime + + // 3. Let cacheState be response’s cache state. + let cacheState = response.cacheState + + // 4. Let bodyInfo be response’s body info. + const bodyInfo = response.bodyInfo + + // 5. If response’s timing allow passed flag is not set, then set timingInfo to the result of creating an + // opaque timing info for timingInfo and set cacheState to the empty string. + if (!response.timingAllowPassed) { + timingInfo = createOpaqueTimingInfo(timingInfo) + + cacheState = '' + } + + // 6. Let responseStatus be 0. + let responseStatus = 0 + + // 7. If fetchParams’s request’s mode is not "navigate" or response’s has-cross-origin-redirects is false: + if (fetchParams.request.mode !== 'navigator' || !response.hasCrossOriginRedirects) { + // 1. Set responseStatus to response’s status. + responseStatus = response.status + + // 2. Let mimeType be the result of extracting a MIME type from response’s header list. + const mimeType = extractMimeType(response.headersList) + + // 3. If mimeType is not failure, then set bodyInfo’s content type to the result of minimizing a supported MIME type given mimeType. + if (mimeType !== 'failure') { + bodyInfo.contentType = minimizeSupportedMimeType(mimeType) } - return dict; + } + + // 8. If fetchParams’s request’s initiator type is non-null, then mark resource timing given timingInfo, + // fetchParams’s request’s URL, fetchParams’s request’s initiator type, global, cacheState, bodyInfo, + // and responseStatus. + if (fetchParams.request.initiatorType != null) { + // TODO: update markresourcetiming + markResourceTiming(timingInfo, fetchParams.request.url.href, fetchParams.request.initiatorType, globalThis, cacheState, bodyInfo, responseStatus) + } } - static async readArray(stream, readItemMethod, options = {}) { - const items = []; - for (let count = await AvroParser.readLong(stream, options); count != 0; count = await AvroParser.readLong(stream, options)) { - if (count < 0) { - // Ignore block sizes - await AvroParser.readLong(stream, options); - count = -count; - } - while (count--) { - const item = await readItemMethod(stream, options); - items.push(item); - } - } - return items; + + // 4. Let processResponseEndOfBodyTask be the following steps: + const processResponseEndOfBodyTask = () => { + // 1. Set fetchParams’s request’s done flag. + fetchParams.request.done = true + + // 2. If fetchParams’s process response end-of-body is non-null, then run fetchParams’s process + // response end-of-body given response. + if (fetchParams.processResponseEndOfBody != null) { + queueMicrotask(() => fetchParams.processResponseEndOfBody(response)) + } + + // 3. If fetchParams’s request’s initiator type is non-null and fetchParams’s request’s client’s + // global object is fetchParams’s task destination, then run fetchParams’s controller’s report + // timing steps given fetchParams’s request’s client’s global object. + if (fetchParams.request.initiatorType != null) { + fetchParams.controller.reportTimingSteps() + } } + + // 5. Queue a fetch task to run processResponseEndOfBodyTask with fetchParams’s task destination + queueMicrotask(() => processResponseEndOfBodyTask()) + } + + // 4. If fetchParams’s process response is non-null, then queue a fetch task to run fetchParams’s + // process response given response, with fetchParams’s task destination. + if (fetchParams.processResponse != null) { + queueMicrotask(() => { + fetchParams.processResponse(response) + fetchParams.processResponse = null + }) + } + + // 5. Let internalResponse be response, if response is a network error; otherwise response’s internal response. + const internalResponse = response.type === 'error' ? response : (response.internalResponse ?? response) + + // 6. If internalResponse’s body is null, then run processResponseEndOfBody. + // 7. Otherwise: + if (internalResponse.body == null) { + processResponseEndOfBody() + } else { + // mcollina: all the following steps of the specs are skipped. + // The internal transform stream is not needed. + // See https://github.com/nodejs/undici/pull/3093#issuecomment-2050198541 + + // 1. Let transformStream be a new TransformStream. + // 2. Let identityTransformAlgorithm be an algorithm which, given chunk, enqueues chunk in transformStream. + // 3. Set up transformStream with transformAlgorithm set to identityTransformAlgorithm and flushAlgorithm + // set to processResponseEndOfBody. + // 4. Set internalResponse’s body’s stream to the result of internalResponse’s body’s stream piped through transformStream. + + finished(internalResponse.body.stream, () => { + processResponseEndOfBody() + }) + } } -var AvroComplex; -(function (AvroComplex) { - AvroComplex["RECORD"] = "record"; - AvroComplex["ENUM"] = "enum"; - AvroComplex["ARRAY"] = "array"; - AvroComplex["MAP"] = "map"; - AvroComplex["UNION"] = "union"; - AvroComplex["FIXED"] = "fixed"; -})(AvroComplex || (AvroComplex = {})); -class AvroType { - /** - * Determines the AvroType from the Avro Schema. - */ - static fromSchema(schema) { - if (typeof schema === "string") { - return AvroType.fromStringSchema(schema); - } - else if (Array.isArray(schema)) { - return AvroType.fromArraySchema(schema); - } - else { - return AvroType.fromObjectSchema(schema); - } - } - static fromStringSchema(schema) { - switch (schema) { - case AvroPrimitive.NULL: - case AvroPrimitive.BOOLEAN: - case AvroPrimitive.INT: - case AvroPrimitive.LONG: - case AvroPrimitive.FLOAT: - case AvroPrimitive.DOUBLE: - case AvroPrimitive.BYTES: - case AvroPrimitive.STRING: - return new AvroPrimitiveType(schema); - default: - throw new Error(`Unexpected Avro type ${schema}`); - } - } - static fromArraySchema(schema) { - return new AvroUnionType(schema.map(AvroType.fromSchema)); + +// https://fetch.spec.whatwg.org/#http-fetch +async function httpFetch (fetchParams) { + // 1. Let request be fetchParams’s request. + const request = fetchParams.request + + // 2. Let response be null. + let response = null + + // 3. Let actualResponse be null. + let actualResponse = null + + // 4. Let timingInfo be fetchParams’s timing info. + const timingInfo = fetchParams.timingInfo + + // 5. If request’s service-workers mode is "all", then: + if (request.serviceWorkers === 'all') { + // TODO + } + + // 6. If response is null, then: + if (response === null) { + // 1. If makeCORSPreflight is true and one of these conditions is true: + // TODO + + // 2. If request’s redirect mode is "follow", then set request’s + // service-workers mode to "none". + if (request.redirect === 'follow') { + request.serviceWorkers = 'none' } - static fromObjectSchema(schema) { - const type = schema.type; - // Primitives can be defined as strings or objects - try { - return AvroType.fromStringSchema(type); - } - catch (err) { } - switch (type) { - case AvroComplex.RECORD: - if (schema.aliases) { - throw new Error(`aliases currently is not supported, schema: ${schema}`); - } - if (!schema.name) { - throw new Error(`Required attribute 'name' doesn't exist on schema: ${schema}`); - } - const fields = {}; - if (!schema.fields) { - throw new Error(`Required attribute 'fields' doesn't exist on schema: ${schema}`); - } - for (const field of schema.fields) { - fields[field.name] = AvroType.fromSchema(field.type); - } - return new AvroRecordType(fields, schema.name); - case AvroComplex.ENUM: - if (schema.aliases) { - throw new Error(`aliases currently is not supported, schema: ${schema}`); - } - if (!schema.symbols) { - throw new Error(`Required attribute 'symbols' doesn't exist on schema: ${schema}`); - } - return new AvroEnumType(schema.symbols); - case AvroComplex.MAP: - if (!schema.values) { - throw new Error(`Required attribute 'values' doesn't exist on schema: ${schema}`); - } - return new AvroMapType(AvroType.fromSchema(schema.values)); - case AvroComplex.ARRAY: // Unused today - case AvroComplex.FIXED: // Unused today - default: - throw new Error(`Unexpected Avro type ${type} in ${schema}`); - } + + // 3. Set response and actualResponse to the result of running + // HTTP-network-or-cache fetch given fetchParams. + actualResponse = response = await httpNetworkOrCacheFetch(fetchParams) + + // 4. If request’s response tainting is "cors" and a CORS check + // for request and response returns failure, then return a network error. + if ( + request.responseTainting === 'cors' && + corsCheck(request, response) === 'failure' + ) { + return makeNetworkError('cors failure') } -} -var AvroPrimitive; -(function (AvroPrimitive) { - AvroPrimitive["NULL"] = "null"; - AvroPrimitive["BOOLEAN"] = "boolean"; - AvroPrimitive["INT"] = "int"; - AvroPrimitive["LONG"] = "long"; - AvroPrimitive["FLOAT"] = "float"; - AvroPrimitive["DOUBLE"] = "double"; - AvroPrimitive["BYTES"] = "bytes"; - AvroPrimitive["STRING"] = "string"; -})(AvroPrimitive || (AvroPrimitive = {})); -class AvroPrimitiveType extends AvroType { - constructor(primitive) { - super(); - this._primitive = primitive; + + // 5. If the TAO check for request and response returns failure, then set + // request’s timing allow failed flag. + if (TAOCheck(request, response) === 'failure') { + request.timingAllowFailed = true } - async read(stream, options = {}) { - switch (this._primitive) { - case AvroPrimitive.NULL: - return await AvroParser.readNull(); - case AvroPrimitive.BOOLEAN: - return await AvroParser.readBoolean(stream, options); - case AvroPrimitive.INT: - return await AvroParser.readInt(stream, options); - case AvroPrimitive.LONG: - return await AvroParser.readLong(stream, options); - case AvroPrimitive.FLOAT: - return await AvroParser.readFloat(stream, options); - case AvroPrimitive.DOUBLE: - return await AvroParser.readDouble(stream, options); - case AvroPrimitive.BYTES: - return await AvroParser.readBytes(stream, options); - case AvroPrimitive.STRING: - return await AvroParser.readString(stream, options); - default: - throw new Error("Unknown Avro Primitive"); - } + } + + // 7. If either request’s response tainting or response’s type + // is "opaque", and the cross-origin resource policy check with + // request’s origin, request’s client, request’s destination, + // and actualResponse returns blocked, then return a network error. + if ( + (request.responseTainting === 'opaque' || response.type === 'opaque') && + crossOriginResourcePolicyCheck( + request.origin, + request.client, + request.destination, + actualResponse + ) === 'blocked' + ) { + return makeNetworkError('blocked') + } + + // 8. If actualResponse’s status is a redirect status, then: + if (redirectStatusSet.has(actualResponse.status)) { + // 1. If actualResponse’s status is not 303, request’s body is not null, + // and the connection uses HTTP/2, then user agents may, and are even + // encouraged to, transmit an RST_STREAM frame. + // See, https://github.com/whatwg/fetch/issues/1288 + if (request.redirect !== 'manual') { + fetchParams.controller.connection.destroy(undefined, false) + } + + // 2. Switch on request’s redirect mode: + if (request.redirect === 'error') { + // Set response to a network error. + response = makeNetworkError('unexpected redirect') + } else if (request.redirect === 'manual') { + // Set response to an opaque-redirect filtered response whose internal + // response is actualResponse. + // NOTE(spec): On the web this would return an `opaqueredirect` response, + // but that doesn't make sense server side. + // See https://github.com/nodejs/undici/issues/1193. + response = actualResponse + } else if (request.redirect === 'follow') { + // Set response to the result of running HTTP-redirect fetch given + // fetchParams and response. + response = await httpRedirectFetch(fetchParams, response) + } else { + assert(false) } + } + + // 9. Set response’s timing info to timingInfo. + response.timingInfo = timingInfo + + // 10. Return response. + return response } -class AvroEnumType extends AvroType { - constructor(symbols) { - super(); - this._symbols = symbols; + +// https://fetch.spec.whatwg.org/#http-redirect-fetch +function httpRedirectFetch (fetchParams, response) { + // 1. Let request be fetchParams’s request. + const request = fetchParams.request + + // 2. Let actualResponse be response, if response is not a filtered response, + // and response’s internal response otherwise. + const actualResponse = response.internalResponse + ? response.internalResponse + : response + + // 3. Let locationURL be actualResponse’s location URL given request’s current + // URL’s fragment. + let locationURL + + try { + locationURL = responseLocationURL( + actualResponse, + requestCurrentURL(request).hash + ) + + // 4. If locationURL is null, then return response. + if (locationURL == null) { + return response } - async read(stream, options = {}) { - const value = await AvroParser.readInt(stream, options); - return this._symbols[value]; + } catch (err) { + // 5. If locationURL is failure, then return a network error. + return Promise.resolve(makeNetworkError(err)) + } + + // 6. If locationURL’s scheme is not an HTTP(S) scheme, then return a network + // error. + if (!urlIsHttpHttpsScheme(locationURL)) { + return Promise.resolve(makeNetworkError('URL scheme must be a HTTP(S) scheme')) + } + + // 7. If request’s redirect count is 20, then return a network error. + if (request.redirectCount === 20) { + return Promise.resolve(makeNetworkError('redirect count exceeded')) + } + + // 8. Increase request’s redirect count by 1. + request.redirectCount += 1 + + // 9. If request’s mode is "cors", locationURL includes credentials, and + // request’s origin is not same origin with locationURL’s origin, then return + // a network error. + if ( + request.mode === 'cors' && + (locationURL.username || locationURL.password) && + !sameOrigin(request, locationURL) + ) { + return Promise.resolve(makeNetworkError('cross origin not allowed for request mode "cors"')) + } + + // 10. If request’s response tainting is "cors" and locationURL includes + // credentials, then return a network error. + if ( + request.responseTainting === 'cors' && + (locationURL.username || locationURL.password) + ) { + return Promise.resolve(makeNetworkError( + 'URL cannot contain credentials for request mode "cors"' + )) + } + + // 11. If actualResponse’s status is not 303, request’s body is non-null, + // and request’s body’s source is null, then return a network error. + if ( + actualResponse.status !== 303 && + request.body != null && + request.body.source == null + ) { + return Promise.resolve(makeNetworkError()) + } + + // 12. If one of the following is true + // - actualResponse’s status is 301 or 302 and request’s method is `POST` + // - actualResponse’s status is 303 and request’s method is not `GET` or `HEAD` + if ( + ([301, 302].includes(actualResponse.status) && request.method === 'POST') || + (actualResponse.status === 303 && + !GET_OR_HEAD.includes(request.method)) + ) { + // then: + // 1. Set request’s method to `GET` and request’s body to null. + request.method = 'GET' + request.body = null + + // 2. For each headerName of request-body-header name, delete headerName from + // request’s header list. + for (const headerName of requestBodyHeader) { + request.headersList.delete(headerName) } + } + + // 13. If request’s current URL’s origin is not same origin with locationURL’s + // origin, then for each headerName of CORS non-wildcard request-header name, + // delete headerName from request’s header list. + if (!sameOrigin(requestCurrentURL(request), locationURL)) { + // https://fetch.spec.whatwg.org/#cors-non-wildcard-request-header-name + request.headersList.delete('authorization', true) + + // https://fetch.spec.whatwg.org/#authentication-entries + request.headersList.delete('proxy-authorization', true) + + // "Cookie" and "Host" are forbidden request-headers, which undici doesn't implement. + request.headersList.delete('cookie', true) + request.headersList.delete('host', true) + } + + // 14. If request’s body is non-null, then set request’s body to the first return + // value of safely extracting request’s body’s source. + if (request.body != null) { + assert(request.body.source != null) + request.body = safelyExtractBody(request.body.source)[0] + } + + // 15. Let timingInfo be fetchParams’s timing info. + const timingInfo = fetchParams.timingInfo + + // 16. Set timingInfo’s redirect end time and post-redirect start time to the + // coarsened shared current time given fetchParams’s cross-origin isolated + // capability. + timingInfo.redirectEndTime = timingInfo.postRedirectStartTime = + coarsenedSharedCurrentTime(fetchParams.crossOriginIsolatedCapability) + + // 17. If timingInfo’s redirect start time is 0, then set timingInfo’s + // redirect start time to timingInfo’s start time. + if (timingInfo.redirectStartTime === 0) { + timingInfo.redirectStartTime = timingInfo.startTime + } + + // 18. Append locationURL to request’s URL list. + request.urlList.push(locationURL) + + // 19. Invoke set request’s referrer policy on redirect on request and + // actualResponse. + setRequestReferrerPolicyOnRedirect(request, actualResponse) + + // 20. Return the result of running main fetch given fetchParams and true. + return mainFetch(fetchParams, true) } -class AvroUnionType extends AvroType { - constructor(types) { - super(); - this._types = types; + +// https://fetch.spec.whatwg.org/#http-network-or-cache-fetch +async function httpNetworkOrCacheFetch ( + fetchParams, + isAuthenticationFetch = false, + isNewConnectionFetch = false +) { + // 1. Let request be fetchParams’s request. + const request = fetchParams.request + + // 2. Let httpFetchParams be null. + let httpFetchParams = null + + // 3. Let httpRequest be null. + let httpRequest = null + + // 4. Let response be null. + let response = null + + // 5. Let storedResponse be null. + // TODO: cache + + // 6. Let httpCache be null. + const httpCache = null + + // 7. Let the revalidatingFlag be unset. + const revalidatingFlag = false + + // 8. Run these steps, but abort when the ongoing fetch is terminated: + + // 1. If request’s window is "no-window" and request’s redirect mode is + // "error", then set httpFetchParams to fetchParams and httpRequest to + // request. + if (request.window === 'no-window' && request.redirect === 'error') { + httpFetchParams = fetchParams + httpRequest = request + } else { + // Otherwise: + + // 1. Set httpRequest to a clone of request. + httpRequest = cloneRequest(request) + + // 2. Set httpFetchParams to a copy of fetchParams. + httpFetchParams = { ...fetchParams } + + // 3. Set httpFetchParams’s request to httpRequest. + httpFetchParams.request = httpRequest + } + + // 3. Let includeCredentials be true if one of + const includeCredentials = + request.credentials === 'include' || + (request.credentials === 'same-origin' && + request.responseTainting === 'basic') + + // 4. Let contentLength be httpRequest’s body’s length, if httpRequest’s + // body is non-null; otherwise null. + const contentLength = httpRequest.body ? httpRequest.body.length : null + + // 5. Let contentLengthHeaderValue be null. + let contentLengthHeaderValue = null + + // 6. If httpRequest’s body is null and httpRequest’s method is `POST` or + // `PUT`, then set contentLengthHeaderValue to `0`. + if ( + httpRequest.body == null && + ['POST', 'PUT'].includes(httpRequest.method) + ) { + contentLengthHeaderValue = '0' + } + + // 7. If contentLength is non-null, then set contentLengthHeaderValue to + // contentLength, serialized and isomorphic encoded. + if (contentLength != null) { + contentLengthHeaderValue = isomorphicEncode(`${contentLength}`) + } + + // 8. If contentLengthHeaderValue is non-null, then append + // `Content-Length`/contentLengthHeaderValue to httpRequest’s header + // list. + if (contentLengthHeaderValue != null) { + httpRequest.headersList.append('content-length', contentLengthHeaderValue, true) + } + + // 9. If contentLengthHeaderValue is non-null, then append (`Content-Length`, + // contentLengthHeaderValue) to httpRequest’s header list. + + // 10. If contentLength is non-null and httpRequest’s keepalive is true, + // then: + if (contentLength != null && httpRequest.keepalive) { + // NOTE: keepalive is a noop outside of browser context. + } + + // 11. If httpRequest’s referrer is a URL, then append + // `Referer`/httpRequest’s referrer, serialized and isomorphic encoded, + // to httpRequest’s header list. + if (httpRequest.referrer instanceof URL) { + httpRequest.headersList.append('referer', isomorphicEncode(httpRequest.referrer.href), true) + } + + // 12. Append a request `Origin` header for httpRequest. + appendRequestOriginHeader(httpRequest) + + // 13. Append the Fetch metadata headers for httpRequest. [FETCH-METADATA] + appendFetchMetadata(httpRequest) + + // 14. If httpRequest’s header list does not contain `User-Agent`, then + // user agents should append `User-Agent`/default `User-Agent` value to + // httpRequest’s header list. + if (!httpRequest.headersList.contains('user-agent', true)) { + httpRequest.headersList.append('user-agent', defaultUserAgent) + } + + // 15. If httpRequest’s cache mode is "default" and httpRequest’s header + // list contains `If-Modified-Since`, `If-None-Match`, + // `If-Unmodified-Since`, `If-Match`, or `If-Range`, then set + // httpRequest’s cache mode to "no-store". + if ( + httpRequest.cache === 'default' && + (httpRequest.headersList.contains('if-modified-since', true) || + httpRequest.headersList.contains('if-none-match', true) || + httpRequest.headersList.contains('if-unmodified-since', true) || + httpRequest.headersList.contains('if-match', true) || + httpRequest.headersList.contains('if-range', true)) + ) { + httpRequest.cache = 'no-store' + } + + // 16. If httpRequest’s cache mode is "no-cache", httpRequest’s prevent + // no-cache cache-control header modification flag is unset, and + // httpRequest’s header list does not contain `Cache-Control`, then append + // `Cache-Control`/`max-age=0` to httpRequest’s header list. + if ( + httpRequest.cache === 'no-cache' && + !httpRequest.preventNoCacheCacheControlHeaderModification && + !httpRequest.headersList.contains('cache-control', true) + ) { + httpRequest.headersList.append('cache-control', 'max-age=0', true) + } + + // 17. If httpRequest’s cache mode is "no-store" or "reload", then: + if (httpRequest.cache === 'no-store' || httpRequest.cache === 'reload') { + // 1. If httpRequest’s header list does not contain `Pragma`, then append + // `Pragma`/`no-cache` to httpRequest’s header list. + if (!httpRequest.headersList.contains('pragma', true)) { + httpRequest.headersList.append('pragma', 'no-cache', true) } - async read(stream, options = {}) { - const typeIndex = await AvroParser.readInt(stream, options); - return await this._types[typeIndex].read(stream, options); + + // 2. If httpRequest’s header list does not contain `Cache-Control`, + // then append `Cache-Control`/`no-cache` to httpRequest’s header list. + if (!httpRequest.headersList.contains('cache-control', true)) { + httpRequest.headersList.append('cache-control', 'no-cache', true) } -} -class AvroMapType extends AvroType { - constructor(itemType) { - super(); - this._itemType = itemType; + } + + // 18. If httpRequest’s header list contains `Range`, then append + // `Accept-Encoding`/`identity` to httpRequest’s header list. + if (httpRequest.headersList.contains('range', true)) { + httpRequest.headersList.append('accept-encoding', 'identity', true) + } + + // 19. Modify httpRequest’s header list per HTTP. Do not append a given + // header if httpRequest’s header list contains that header’s name. + // TODO: https://github.com/whatwg/fetch/issues/1285#issuecomment-896560129 + if (!httpRequest.headersList.contains('accept-encoding', true)) { + if (urlHasHttpsScheme(requestCurrentURL(httpRequest))) { + httpRequest.headersList.append('accept-encoding', 'br, gzip, deflate', true) + } else { + httpRequest.headersList.append('accept-encoding', 'gzip, deflate', true) } - async read(stream, options = {}) { - const readItemMethod = async (s, options) => { - return await this._itemType.read(s, options); - }; - return await AvroParser.readMap(stream, readItemMethod, options); + } + + httpRequest.headersList.delete('host', true) + + // 20. If includeCredentials is true, then: + if (includeCredentials) { + // 1. If the user agent is not configured to block cookies for httpRequest + // (see section 7 of [COOKIES]), then: + // TODO: credentials + // 2. If httpRequest’s header list does not contain `Authorization`, then: + // TODO: credentials + } + + // 21. If there’s a proxy-authentication entry, use it as appropriate. + // TODO: proxy-authentication + + // 22. Set httpCache to the result of determining the HTTP cache + // partition, given httpRequest. + // TODO: cache + + // 23. If httpCache is null, then set httpRequest’s cache mode to + // "no-store". + if (httpCache == null) { + httpRequest.cache = 'no-store' + } + + // 24. If httpRequest’s cache mode is neither "no-store" nor "reload", + // then: + if (httpRequest.cache !== 'no-store' && httpRequest.cache !== 'reload') { + // TODO: cache + } + + // 9. If aborted, then return the appropriate network error for fetchParams. + // TODO + + // 10. If response is null, then: + if (response == null) { + // 1. If httpRequest’s cache mode is "only-if-cached", then return a + // network error. + if (httpRequest.cache === 'only-if-cached') { + return makeNetworkError('only if cached') } -} -class AvroRecordType extends AvroType { - constructor(fields, name) { - super(); - this._fields = fields; - this._name = name; + + // 2. Let forwardResponse be the result of running HTTP-network fetch + // given httpFetchParams, includeCredentials, and isNewConnectionFetch. + const forwardResponse = await httpNetworkFetch( + httpFetchParams, + includeCredentials, + isNewConnectionFetch + ) + + // 3. If httpRequest’s method is unsafe and forwardResponse’s status is + // in the range 200 to 399, inclusive, invalidate appropriate stored + // responses in httpCache, as per the "Invalidation" chapter of HTTP + // Caching, and set storedResponse to null. [HTTP-CACHING] + if ( + !safeMethodsSet.has(httpRequest.method) && + forwardResponse.status >= 200 && + forwardResponse.status <= 399 + ) { + // TODO: cache } - async read(stream, options = {}) { - const record = {}; - record["$schema"] = this._name; - for (const key in this._fields) { - if (this._fields.hasOwnProperty(key)) { - record[key] = await this._fields[key].read(stream, options); - } - } - return record; + + // 4. If the revalidatingFlag is set and forwardResponse’s status is 304, + // then: + if (revalidatingFlag && forwardResponse.status === 304) { + // TODO: cache } -} -// Copyright (c) Microsoft Corporation. -class AvroReader { - constructor(dataStream, headerStream, currentBlockOffset, indexWithinCurrentBlock) { - this._dataStream = dataStream; - this._headerStream = headerStream || dataStream; - this._initialized = false; - this._blockOffset = currentBlockOffset || 0; - this._objectIndex = indexWithinCurrentBlock || 0; - this._initialBlockOffset = currentBlockOffset || 0; + // 5. If response is null, then: + if (response == null) { + // 1. Set response to forwardResponse. + response = forwardResponse + + // 2. Store httpRequest and forwardResponse in httpCache, as per the + // "Storing Responses in Caches" chapter of HTTP Caching. [HTTP-CACHING] + // TODO: cache } - get blockOffset() { - return this._blockOffset; + } + + // 11. Set response’s URL list to a clone of httpRequest’s URL list. + response.urlList = [...httpRequest.urlList] + + // 12. If httpRequest’s header list contains `Range`, then set response’s + // range-requested flag. + if (httpRequest.headersList.contains('range', true)) { + response.rangeRequested = true + } + + // 13. Set response’s request-includes-credentials to includeCredentials. + response.requestIncludesCredentials = includeCredentials + + // 14. If response’s status is 401, httpRequest’s response tainting is not + // "cors", includeCredentials is true, and request’s window is an environment + // settings object, then: + // TODO + + // 15. If response’s status is 407, then: + if (response.status === 407) { + // 1. If request’s window is "no-window", then return a network error. + if (request.window === 'no-window') { + return makeNetworkError() } - get objectIndex() { - return this._objectIndex; + + // 2. ??? + + // 3. If fetchParams is canceled, then return the appropriate network error for fetchParams. + if (isCancelled(fetchParams)) { + return makeAppropriateNetworkError(fetchParams) } - async initialize(options = {}) { - const header = await AvroParser.readFixedBytes(this._headerStream, AVRO_INIT_BYTES.length, { - abortSignal: options.abortSignal, - }); - if (!arraysEqual(header, AVRO_INIT_BYTES)) { - throw new Error("Stream is not an Avro file."); - } - // File metadata is written as if defined by the following map schema: - // { "type": "map", "values": "bytes"} - this._metadata = await AvroParser.readMap(this._headerStream, AvroParser.readString, { - abortSignal: options.abortSignal, - }); - // Validate codec - const codec = this._metadata[AVRO_CODEC_KEY]; - if (!(codec == undefined || codec == "null")) { - throw new Error("Codecs are not supported"); - } - // The 16-byte, randomly-generated sync marker for this file. - this._syncMarker = await AvroParser.readFixedBytes(this._headerStream, AVRO_SYNC_MARKER_SIZE, { - abortSignal: options.abortSignal, - }); - // Parse the schema - const schema = JSON.parse(this._metadata[AVRO_SCHEMA_KEY]); - this._itemType = AvroType.fromSchema(schema); - if (this._blockOffset == 0) { - this._blockOffset = this._initialBlockOffset + this._dataStream.position; - } - this._itemsRemainingInBlock = await AvroParser.readLong(this._dataStream, { - abortSignal: options.abortSignal, - }); - // skip block length - await AvroParser.readLong(this._dataStream, { abortSignal: options.abortSignal }); - this._initialized = true; - if (this._objectIndex && this._objectIndex > 0) { - for (let i = 0; i < this._objectIndex; i++) { - await this._itemType.read(this._dataStream, { abortSignal: options.abortSignal }); - this._itemsRemainingInBlock--; - } + + // 4. Prompt the end user as appropriate in request’s window and store + // the result as a proxy-authentication entry. [HTTP-AUTH] + // TODO: Invoke some kind of callback? + + // 5. Set response to the result of running HTTP-network-or-cache fetch given + // fetchParams. + // TODO + return makeNetworkError('proxy authentication required') + } + + // 16. If all of the following are true + if ( + // response’s status is 421 + response.status === 421 && + // isNewConnectionFetch is false + !isNewConnectionFetch && + // request’s body is null, or request’s body is non-null and request’s body’s source is non-null + (request.body == null || request.body.source != null) + ) { + // then: + + // 1. If fetchParams is canceled, then return the appropriate network error for fetchParams. + if (isCancelled(fetchParams)) { + return makeAppropriateNetworkError(fetchParams) + } + + // 2. Set response to the result of running HTTP-network-or-cache + // fetch given fetchParams, isAuthenticationFetch, and true. + + // TODO (spec): The spec doesn't specify this but we need to cancel + // the active response before we can start a new one. + // https://github.com/whatwg/fetch/issues/1293 + fetchParams.controller.connection.destroy() + + response = await httpNetworkOrCacheFetch( + fetchParams, + isAuthenticationFetch, + true + ) + } + + // 17. If isAuthenticationFetch is true, then create an authentication entry + if (isAuthenticationFetch) { + // TODO + } + + // 18. Return response. + return response +} + +// https://fetch.spec.whatwg.org/#http-network-fetch +async function httpNetworkFetch ( + fetchParams, + includeCredentials = false, + forceNewConnection = false +) { + assert(!fetchParams.controller.connection || fetchParams.controller.connection.destroyed) + + fetchParams.controller.connection = { + abort: null, + destroyed: false, + destroy (err, abort = true) { + if (!this.destroyed) { + this.destroyed = true + if (abort) { + this.abort?.(err ?? new DOMException('The operation was aborted.', 'AbortError')) } + } } - hasNext() { - return !this._initialized || this._itemsRemainingInBlock > 0; + } + + // 1. Let request be fetchParams’s request. + const request = fetchParams.request + + // 2. Let response be null. + let response = null + + // 3. Let timingInfo be fetchParams’s timing info. + const timingInfo = fetchParams.timingInfo + + // 4. Let httpCache be the result of determining the HTTP cache partition, + // given request. + // TODO: cache + const httpCache = null + + // 5. If httpCache is null, then set request’s cache mode to "no-store". + if (httpCache == null) { + request.cache = 'no-store' + } + + // 6. Let networkPartitionKey be the result of determining the network + // partition key given request. + // TODO + + // 7. Let newConnection be "yes" if forceNewConnection is true; otherwise + // "no". + const newConnection = forceNewConnection ? 'yes' : 'no' // eslint-disable-line no-unused-vars + + // 8. Switch on request’s mode: + if (request.mode === 'websocket') { + // Let connection be the result of obtaining a WebSocket connection, + // given request’s current URL. + // TODO + } else { + // Let connection be the result of obtaining a connection, given + // networkPartitionKey, request’s current URL’s origin, + // includeCredentials, and forceNewConnection. + // TODO + } + + // 9. Run these steps, but abort when the ongoing fetch is terminated: + + // 1. If connection is failure, then return a network error. + + // 2. Set timingInfo’s final connection timing info to the result of + // calling clamp and coarsen connection timing info with connection’s + // timing info, timingInfo’s post-redirect start time, and fetchParams’s + // cross-origin isolated capability. + + // 3. If connection is not an HTTP/2 connection, request’s body is non-null, + // and request’s body’s source is null, then append (`Transfer-Encoding`, + // `chunked`) to request’s header list. + + // 4. Set timingInfo’s final network-request start time to the coarsened + // shared current time given fetchParams’s cross-origin isolated + // capability. + + // 5. Set response to the result of making an HTTP request over connection + // using request with the following caveats: + + // - Follow the relevant requirements from HTTP. [HTTP] [HTTP-SEMANTICS] + // [HTTP-COND] [HTTP-CACHING] [HTTP-AUTH] + + // - If request’s body is non-null, and request’s body’s source is null, + // then the user agent may have a buffer of up to 64 kibibytes and store + // a part of request’s body in that buffer. If the user agent reads from + // request’s body beyond that buffer’s size and the user agent needs to + // resend request, then instead return a network error. + + // - Set timingInfo’s final network-response start time to the coarsened + // shared current time given fetchParams’s cross-origin isolated capability, + // immediately after the user agent’s HTTP parser receives the first byte + // of the response (e.g., frame header bytes for HTTP/2 or response status + // line for HTTP/1.x). + + // - Wait until all the headers are transmitted. + + // - Any responses whose status is in the range 100 to 199, inclusive, + // and is not 101, are to be ignored, except for the purposes of setting + // timingInfo’s final network-response start time above. + + // - If request’s header list contains `Transfer-Encoding`/`chunked` and + // response is transferred via HTTP/1.0 or older, then return a network + // error. + + // - If the HTTP request results in a TLS client certificate dialog, then: + + // 1. If request’s window is an environment settings object, make the + // dialog available in request’s window. + + // 2. Otherwise, return a network error. + + // To transmit request’s body body, run these steps: + let requestBody = null + // 1. If body is null and fetchParams’s process request end-of-body is + // non-null, then queue a fetch task given fetchParams’s process request + // end-of-body and fetchParams’s task destination. + if (request.body == null && fetchParams.processRequestEndOfBody) { + queueMicrotask(() => fetchParams.processRequestEndOfBody()) + } else if (request.body != null) { + // 2. Otherwise, if body is non-null: + + // 1. Let processBodyChunk given bytes be these steps: + const processBodyChunk = async function * (bytes) { + // 1. If the ongoing fetch is terminated, then abort these steps. + if (isCancelled(fetchParams)) { + return + } + + // 2. Run this step in parallel: transmit bytes. + yield bytes + + // 3. If fetchParams’s process request body is non-null, then run + // fetchParams’s process request body given bytes’s length. + fetchParams.processRequestBodyChunkLength?.(bytes.byteLength) } - parseObjects(options = {}) { - return tslib.__asyncGenerator(this, arguments, function* parseObjects_1() { - if (!this._initialized) { - yield tslib.__await(this.initialize(options)); - } - while (this.hasNext()) { - const result = yield tslib.__await(this._itemType.read(this._dataStream, { - abortSignal: options.abortSignal, - })); - this._itemsRemainingInBlock--; - this._objectIndex++; - if (this._itemsRemainingInBlock == 0) { - const marker = yield tslib.__await(AvroParser.readFixedBytes(this._dataStream, AVRO_SYNC_MARKER_SIZE, { - abortSignal: options.abortSignal, - })); - this._blockOffset = this._initialBlockOffset + this._dataStream.position; - this._objectIndex = 0; - if (!arraysEqual(this._syncMarker, marker)) { - throw new Error("Stream is not a valid Avro file."); - } - try { - this._itemsRemainingInBlock = yield tslib.__await(AvroParser.readLong(this._dataStream, { - abortSignal: options.abortSignal, - })); - } - catch (err) { - // We hit the end of the stream. - this._itemsRemainingInBlock = 0; - } - if (this._itemsRemainingInBlock > 0) { - // Ignore block size - yield tslib.__await(AvroParser.readLong(this._dataStream, { abortSignal: options.abortSignal })); - } - } - yield yield tslib.__await(result); - } - }); + + // 2. Let processEndOfBody be these steps: + const processEndOfBody = () => { + // 1. If fetchParams is canceled, then abort these steps. + if (isCancelled(fetchParams)) { + return + } + + // 2. If fetchParams’s process request end-of-body is non-null, + // then run fetchParams’s process request end-of-body. + if (fetchParams.processRequestEndOfBody) { + fetchParams.processRequestEndOfBody() + } } -} -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -class AvroReadable { -} + // 3. Let processBodyError given e be these steps: + const processBodyError = (e) => { + // 1. If fetchParams is canceled, then abort these steps. + if (isCancelled(fetchParams)) { + return + } -// Copyright (c) Microsoft Corporation. -const ABORT_ERROR = new abortController.AbortError("Reading from the avro stream was aborted."); -class AvroReadableFromStream extends AvroReadable { - constructor(readable) { - super(); - this._readable = readable; - this._position = 0; + // 2. If e is an "AbortError" DOMException, then abort fetchParams’s controller. + if (e.name === 'AbortError') { + fetchParams.controller.abort() + } else { + fetchParams.controller.terminate(e) + } } - toUint8Array(data) { - if (typeof data === "string") { - return Buffer.from(data); + + // 4. Incrementally read request’s body given processBodyChunk, processEndOfBody, + // processBodyError, and fetchParams’s task destination. + requestBody = (async function * () { + try { + for await (const bytes of request.body.stream) { + yield * processBodyChunk(bytes) } - return data; + processEndOfBody() + } catch (err) { + processBodyError(err) + } + })() + } + + try { + // socket is only provided for websockets + const { body, status, statusText, headersList, socket } = await dispatch({ body: requestBody }) + + if (socket) { + response = makeResponse({ status, statusText, headersList, socket }) + } else { + const iterator = body[Symbol.asyncIterator]() + fetchParams.controller.next = () => iterator.next() + + response = makeResponse({ status, statusText, headersList }) } - get position() { - return this._position; + } catch (err) { + // 10. If aborted, then: + if (err.name === 'AbortError') { + // 1. If connection uses HTTP/2, then transmit an RST_STREAM frame. + fetchParams.controller.connection.destroy() + + // 2. Return the appropriate network error for fetchParams. + return makeAppropriateNetworkError(fetchParams, err) } - async read(size, options = {}) { - var _a; - if ((_a = options.abortSignal) === null || _a === void 0 ? void 0 : _a.aborted) { - throw ABORT_ERROR; - } - if (size < 0) { - throw new Error(`size parameter should be positive: ${size}`); - } - if (size === 0) { - return new Uint8Array(); - } - if (!this._readable.readable) { - throw new Error("Stream no longer readable."); - } - // See if there is already enough data. - const chunk = this._readable.read(size); - if (chunk) { - this._position += chunk.length; - // chunk.length maybe less than desired size if the stream ends. - return this.toUint8Array(chunk); - } - else { - // register callback to wait for enough data to read - return new Promise((resolve, reject) => { - const cleanUp = () => { - this._readable.removeListener("readable", readableCallback); - this._readable.removeListener("error", rejectCallback); - this._readable.removeListener("end", rejectCallback); - this._readable.removeListener("close", rejectCallback); - if (options.abortSignal) { - options.abortSignal.removeEventListener("abort", abortHandler); - } - }; - const readableCallback = () => { - const chunk = this._readable.read(size); - if (chunk) { - this._position += chunk.length; - cleanUp(); - // chunk.length maybe less than desired size if the stream ends. - resolve(this.toUint8Array(chunk)); - } - }; - const rejectCallback = () => { - cleanUp(); - reject(); - }; - const abortHandler = () => { - cleanUp(); - reject(ABORT_ERROR); - }; - this._readable.on("readable", readableCallback); - this._readable.once("error", rejectCallback); - this._readable.once("end", rejectCallback); - this._readable.once("close", rejectCallback); - if (options.abortSignal) { - options.abortSignal.addEventListener("abort", abortHandler); - } - }); - } + + return makeNetworkError(err) + } + + // 11. Let pullAlgorithm be an action that resumes the ongoing fetch + // if it is suspended. + const pullAlgorithm = async () => { + await fetchParams.controller.resume() + } + + // 12. Let cancelAlgorithm be an algorithm that aborts fetchParams’s + // controller with reason, given reason. + const cancelAlgorithm = (reason) => { + // If the aborted fetch was already terminated, then we do not + // need to do anything. + if (!isCancelled(fetchParams)) { + fetchParams.controller.abort(reason) } -} + } -// Copyright (c) Microsoft Corporation. -/** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * A Node.js BlobQuickQueryStream will internally parse avro data stream for blob query. - */ -class BlobQuickQueryStream extends stream.Readable { - /** - * Creates an instance of BlobQuickQueryStream. - * - * @param source - The current ReadableStream returned from getter - * @param options - - */ - constructor(source, options = {}) { - super(); - this.avroPaused = true; - this.source = source; - this.onProgress = options.onProgress; - this.onError = options.onError; - this.avroReader = new AvroReader(new AvroReadableFromStream(this.source)); - this.avroIter = this.avroReader.parseObjects({ abortSignal: options.abortSignal }); + // 13. Let highWaterMark be a non-negative, non-NaN number, chosen by + // the user agent. + // TODO + + // 14. Let sizeAlgorithm be an algorithm that accepts a chunk object + // and returns a non-negative, non-NaN, non-infinite number, chosen by the user agent. + // TODO + + // 15. Let stream be a new ReadableStream. + // 16. Set up stream with byte reading support with pullAlgorithm set to pullAlgorithm, + // cancelAlgorithm set to cancelAlgorithm. + const stream = new ReadableStream( + { + async start (controller) { + fetchParams.controller.controller = controller + }, + async pull (controller) { + await pullAlgorithm(controller) + }, + async cancel (reason) { + await cancelAlgorithm(reason) + }, + type: 'bytes' } - _read() { - if (this.avroPaused) { - this.readInternal().catch((err) => { - this.emit("error", err); - }); + ) + + // 17. Run these steps, but abort when the ongoing fetch is terminated: + + // 1. Set response’s body to a new body whose stream is stream. + response.body = { stream, source: null, length: null } + + // 2. If response is not a network error and request’s cache mode is + // not "no-store", then update response in httpCache for request. + // TODO + + // 3. If includeCredentials is true and the user agent is not configured + // to block cookies for request (see section 7 of [COOKIES]), then run the + // "set-cookie-string" parsing algorithm (see section 5.2 of [COOKIES]) on + // the value of each header whose name is a byte-case-insensitive match for + // `Set-Cookie` in response’s header list, if any, and request’s current URL. + // TODO + + // 18. If aborted, then: + // TODO + + // 19. Run these steps in parallel: + + // 1. Run these steps, but abort when fetchParams is canceled: + fetchParams.controller.onAborted = onAborted + fetchParams.controller.on('terminated', onAborted) + fetchParams.controller.resume = async () => { + // 1. While true + while (true) { + // 1-3. See onData... + + // 4. Set bytes to the result of handling content codings given + // codings and bytes. + let bytes + let isFailure + try { + const { done, value } = await fetchParams.controller.next() + + if (isAborted(fetchParams)) { + break } - } - async readInternal() { - this.avroPaused = false; - let avroNext; - do { - avroNext = await this.avroIter.next(); - if (avroNext.done) { - break; - } - const obj = avroNext.value; - const schema = obj.$schema; - if (typeof schema !== "string") { - throw Error("Missing schema in avro record."); + + bytes = done ? undefined : value + } catch (err) { + if (fetchParams.controller.ended && !timingInfo.encodedBodySize) { + // zlib doesn't like empty streams. + bytes = undefined + } else { + bytes = err + + // err may be propagated from the result of calling readablestream.cancel, + // which might not be an error. https://github.com/nodejs/undici/issues/2009 + isFailure = true + } + } + + if (bytes === undefined) { + // 2. Otherwise, if the bytes transmission for response’s message + // body is done normally and stream is readable, then close + // stream, finalize response for fetchParams and response, and + // abort these in-parallel steps. + readableStreamClose(fetchParams.controller.controller) + + finalizeResponse(fetchParams, response) + + return + } + + // 5. Increase timingInfo’s decoded body size by bytes’s length. + timingInfo.decodedBodySize += bytes?.byteLength ?? 0 + + // 6. If bytes is failure, then terminate fetchParams’s controller. + if (isFailure) { + fetchParams.controller.terminate(bytes) + return + } + + // 7. Enqueue a Uint8Array wrapping an ArrayBuffer containing bytes + // into stream. + const buffer = new Uint8Array(bytes) + if (buffer.byteLength) { + fetchParams.controller.controller.enqueue(buffer) + } + + // 8. If stream is errored, then terminate the ongoing fetch. + if (isErrored(stream)) { + fetchParams.controller.terminate() + return + } + + // 9. If stream doesn’t need more data ask the user agent to suspend + // the ongoing fetch. + if (fetchParams.controller.controller.desiredSize <= 0) { + return + } + } + } + + // 2. If aborted, then: + function onAborted (reason) { + // 2. If fetchParams is aborted, then: + if (isAborted(fetchParams)) { + // 1. Set response’s aborted flag. + response.aborted = true + + // 2. If stream is readable, then error stream with the result of + // deserialize a serialized abort reason given fetchParams’s + // controller’s serialized abort reason and an + // implementation-defined realm. + if (isReadable(stream)) { + fetchParams.controller.controller.error( + fetchParams.controller.serializedAbortReason + ) + } + } else { + // 3. Otherwise, if stream is readable, error stream with a TypeError. + if (isReadable(stream)) { + fetchParams.controller.controller.error(new TypeError('terminated', { + cause: isErrorLike(reason) ? reason : undefined + })) + } + } + + // 4. If connection uses HTTP/2, then transmit an RST_STREAM frame. + // 5. Otherwise, the user agent should close connection unless it would be bad for performance to do so. + fetchParams.controller.connection.destroy() + } + + // 20. Return response. + return response + + function dispatch ({ body }) { + const url = requestCurrentURL(request) + /** @type {import('../..').Agent} */ + const agent = fetchParams.controller.dispatcher + + return new Promise((resolve, reject) => agent.dispatch( + { + path: url.pathname + url.search, + origin: url.origin, + method: request.method, + body: agent.isMockActive ? request.body && (request.body.source || request.body.stream) : body, + headers: request.headersList.entries, + maxRedirections: 0, + upgrade: request.mode === 'websocket' ? 'websocket' : undefined + }, + { + body: null, + abort: null, + + onConnect (abort) { + // TODO (fix): Do we need connection here? + const { connection } = fetchParams.controller + + // Set timingInfo’s final connection timing info to the result of calling clamp and coarsen + // connection timing info with connection’s timing info, timingInfo’s post-redirect start + // time, and fetchParams’s cross-origin isolated capability. + // TODO: implement connection timing + timingInfo.finalConnectionTimingInfo = clampAndCoarsenConnectionTimingInfo(undefined, timingInfo.postRedirectStartTime, fetchParams.crossOriginIsolatedCapability) + + if (connection.destroyed) { + abort(new DOMException('The operation was aborted.', 'AbortError')) + } else { + fetchParams.controller.on('terminated', abort) + this.abort = connection.abort = abort + } + + // Set timingInfo’s final network-request start time to the coarsened shared current time given + // fetchParams’s cross-origin isolated capability. + timingInfo.finalNetworkRequestStartTime = coarsenedSharedCurrentTime(fetchParams.crossOriginIsolatedCapability) + }, + + onResponseStarted () { + // Set timingInfo’s final network-response start time to the coarsened shared current + // time given fetchParams’s cross-origin isolated capability, immediately after the + // user agent’s HTTP parser receives the first byte of the response (e.g., frame header + // bytes for HTTP/2 or response status line for HTTP/1.x). + timingInfo.finalNetworkResponseStartTime = coarsenedSharedCurrentTime(fetchParams.crossOriginIsolatedCapability) + }, + + onHeaders (status, rawHeaders, resume, statusText) { + if (status < 200) { + return + } + + let location = '' + + const headersList = new HeadersList() + + for (let i = 0; i < rawHeaders.length; i += 2) { + headersList.append(bufferToLowerCasedHeaderName(rawHeaders[i]), rawHeaders[i + 1].toString('latin1'), true) + } + location = headersList.get('location', true) + + this.body = new Readable({ read: resume }) + + const decoders = [] + + const willFollow = location && request.redirect === 'follow' && + redirectStatusSet.has(status) + + // https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Encoding + if (request.method !== 'HEAD' && request.method !== 'CONNECT' && !nullBodyStatus.includes(status) && !willFollow) { + // https://www.rfc-editor.org/rfc/rfc7231#section-3.1.2.1 + const contentEncoding = headersList.get('content-encoding', true) + // "All content-coding values are case-insensitive..." + /** @type {string[]} */ + const codings = contentEncoding ? contentEncoding.toLowerCase().split(',') : [] + + // Limit the number of content-encodings to prevent resource exhaustion. + // CVE fix similar to urllib3 (GHSA-gm62-xv2j-4w53) and curl (CVE-2022-32206). + const maxContentEncodings = 5 + if (codings.length > maxContentEncodings) { + reject(new Error(`too many content-encodings in response: ${codings.length}, maximum allowed is ${maxContentEncodings}`)) + return true + } + + for (let i = codings.length - 1; i >= 0; --i) { + const coding = codings[i].trim() + // https://www.rfc-editor.org/rfc/rfc9112.html#section-7.2 + if (coding === 'x-gzip' || coding === 'gzip') { + decoders.push(zlib.createGunzip({ + // Be less strict when decoding compressed responses, since sometimes + // servers send slightly invalid responses that are still accepted + // by common browsers. + // Always using Z_SYNC_FLUSH is what cURL does. + flush: zlib.constants.Z_SYNC_FLUSH, + finishFlush: zlib.constants.Z_SYNC_FLUSH + })) + } else if (coding === 'deflate') { + decoders.push(createInflate({ + flush: zlib.constants.Z_SYNC_FLUSH, + finishFlush: zlib.constants.Z_SYNC_FLUSH + })) + } else if (coding === 'br') { + decoders.push(zlib.createBrotliDecompress({ + flush: zlib.constants.BROTLI_OPERATION_FLUSH, + finishFlush: zlib.constants.BROTLI_OPERATION_FLUSH + })) + } else { + decoders.length = 0 + break + } } - switch (schema) { - case "com.microsoft.azure.storage.queryBlobContents.resultData": - { - const data = obj.data; - if (data instanceof Uint8Array === false) { - throw Error("Invalid data in avro result record."); - } - if (!this.push(Buffer.from(data))) { - this.avroPaused = true; - } - } - break; - case "com.microsoft.azure.storage.queryBlobContents.progress": - { - const bytesScanned = obj.bytesScanned; - if (typeof bytesScanned !== "number") { - throw Error("Invalid bytesScanned in avro progress record."); - } - if (this.onProgress) { - this.onProgress({ loadedBytes: bytesScanned }); - } - } - break; - case "com.microsoft.azure.storage.queryBlobContents.end": - if (this.onProgress) { - const totalBytes = obj.totalBytes; - if (typeof totalBytes !== "number") { - throw Error("Invalid totalBytes in avro end record."); - } - this.onProgress({ loadedBytes: totalBytes }); - } - this.push(null); - break; - case "com.microsoft.azure.storage.queryBlobContents.error": - if (this.onError) { - const fatal = obj.fatal; - if (typeof fatal !== "boolean") { - throw Error("Invalid fatal in avro error record."); - } - const name = obj.name; - if (typeof name !== "string") { - throw Error("Invalid name in avro error record."); - } - const description = obj.description; - if (typeof description !== "string") { - throw Error("Invalid description in avro error record."); - } - const position = obj.position; - if (typeof position !== "number") { - throw Error("Invalid position in avro error record."); - } - this.onError({ - position, - name, - isFatal: fatal, - description, - }); - } - break; - default: - throw Error(`Unknown schema ${schema} in avro progress record.`); + } + + const onError = this.onError.bind(this) + + resolve({ + status, + statusText, + headersList, + body: decoders.length + ? pipeline(this.body, ...decoders, (err) => { + if (err) { + this.onError(err) + } + }).on('error', onError) + : this.body.on('error', onError) + }) + + return true + }, + + onData (chunk) { + if (fetchParams.controller.dump) { + return + } + + // 1. If one or more bytes have been transmitted from response’s + // message body, then: + + // 1. Let bytes be the transmitted bytes. + const bytes = chunk + + // 2. Let codings be the result of extracting header list values + // given `Content-Encoding` and response’s header list. + // See pullAlgorithm. + + // 3. Increase timingInfo’s encoded body size by bytes’s length. + timingInfo.encodedBodySize += bytes.byteLength + + // 4. See pullAlgorithm... + + return this.body.push(bytes) + }, + + onComplete () { + if (this.abort) { + fetchParams.controller.off('terminated', this.abort) + } + + if (fetchParams.controller.onAborted) { + fetchParams.controller.off('terminated', fetchParams.controller.onAborted) + } + + fetchParams.controller.ended = true + + this.body.push(null) + }, + + onError (error) { + if (this.abort) { + fetchParams.controller.off('terminated', this.abort) + } + + this.body?.destroy(error) + + fetchParams.controller.terminate(error) + + reject(error) + }, + + onUpgrade (status, rawHeaders, socket) { + if (status !== 101) { + return + } + + const headersList = new HeadersList() + + for (let i = 0; i < rawHeaders.length; i += 2) { + headersList.append(bufferToLowerCasedHeaderName(rawHeaders[i]), rawHeaders[i + 1].toString('latin1'), true) + } + + resolve({ + status, + statusText: STATUS_CODES[status], + headersList, + socket + }) + + return true + } + } + )) + } +} + +module.exports = { + fetch, + Fetch, + fetching, + finalizeAndReportTiming +} + + +/***/ }), + +/***/ 20610: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; +/* globals AbortController */ + + + +const { extractBody, mixinBody, cloneBody, bodyUnusable } = __nccwpck_require__(36682) +const { Headers, fill: fillHeaders, HeadersList, setHeadersGuard, getHeadersGuard, setHeadersList, getHeadersList } = __nccwpck_require__(52991) +const { FinalizationRegistry } = __nccwpck_require__(21922)() +const util = __nccwpck_require__(83983) +const nodeUtil = __nccwpck_require__(47261) +const { + isValidHTTPToken, + sameOrigin, + environmentSettingsObject +} = __nccwpck_require__(1310) +const { + forbiddenMethodsSet, + corsSafeListedMethodsSet, + referrerPolicy, + requestRedirect, + requestMode, + requestCredentials, + requestCache, + requestDuplex +} = __nccwpck_require__(68160) +const { kEnumerableProperty, normalizedMethodRecordsBase, normalizedMethodRecords } = util +const { kHeaders, kSignal, kState, kDispatcher } = __nccwpck_require__(749) +const { webidl } = __nccwpck_require__(44890) +const { URLSerializer } = __nccwpck_require__(17704) +const { kConstruct } = __nccwpck_require__(72785) +const assert = __nccwpck_require__(98061) +const { getMaxListeners, setMaxListeners, getEventListeners, defaultMaxListeners } = __nccwpck_require__(15673) + +const kAbortController = Symbol('abortController') + +const requestFinalizer = new FinalizationRegistry(({ signal, abort }) => { + signal.removeEventListener('abort', abort) +}) + +const dependentControllerMap = new WeakMap() + +function buildAbort (acRef) { + return abort + + function abort () { + const ac = acRef.deref() + if (ac !== undefined) { + // Currently, there is a problem with FinalizationRegistry. + // https://github.com/nodejs/node/issues/49344 + // https://github.com/nodejs/node/issues/47748 + // In the case of abort, the first step is to unregister from it. + // If the controller can refer to it, it is still registered. + // It will be removed in the future. + requestFinalizer.unregister(abort) + + // Unsubscribe a listener. + // FinalizationRegistry will no longer be called, so this must be done. + this.removeEventListener('abort', abort) + + ac.abort(this.reason) + + const controllerList = dependentControllerMap.get(ac.signal) + + if (controllerList !== undefined) { + if (controllerList.size !== 0) { + for (const ref of controllerList) { + const ctrl = ref.deref() + if (ctrl !== undefined) { + ctrl.abort(this.reason) } - } while (!avroNext.done && !this.avroPaused); + } + controllerList.clear() + } + dependentControllerMap.delete(ac.signal) + } } + } } -// Copyright (c) Microsoft Corporation. -/** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * BlobQueryResponse implements BlobDownloadResponseModel interface, and in Node.js runtime it will - * parse avor data returned by blob query. - */ -class BlobQueryResponse { - /** - * Creates an instance of BlobQueryResponse. - * - * @param originalResponse - - * @param options - - */ - constructor(originalResponse, options = {}) { - this.originalResponse = originalResponse; - this.blobDownloadStream = new BlobQuickQueryStream(this.originalResponse.readableStreamBody, options); +let patchMethodWarning = false + +// https://fetch.spec.whatwg.org/#request-class +class Request { + // https://fetch.spec.whatwg.org/#dom-request + constructor (input, init = {}) { + webidl.util.markAsUncloneable(this) + if (input === kConstruct) { + return } - /** - * Indicates that the service supports - * requests for partial file content. - * - * @readonly - */ - get acceptRanges() { - return this.originalResponse.acceptRanges; + + const prefix = 'Request constructor' + webidl.argumentLengthCheck(arguments, 1, prefix) + + input = webidl.converters.RequestInfo(input, prefix, 'input') + init = webidl.converters.RequestInit(init, prefix, 'init') + + // 1. Let request be null. + let request = null + + // 2. Let fallbackMode be null. + let fallbackMode = null + + // 3. Let baseURL be this’s relevant settings object’s API base URL. + const baseUrl = environmentSettingsObject.settingsObject.baseUrl + + // 4. Let signal be null. + let signal = null + + // 5. If input is a string, then: + if (typeof input === 'string') { + this[kDispatcher] = init.dispatcher + + // 1. Let parsedURL be the result of parsing input with baseURL. + // 2. If parsedURL is failure, then throw a TypeError. + let parsedURL + try { + parsedURL = new URL(input, baseUrl) + } catch (err) { + throw new TypeError('Failed to parse URL from ' + input, { cause: err }) + } + + // 3. If parsedURL includes credentials, then throw a TypeError. + if (parsedURL.username || parsedURL.password) { + throw new TypeError( + 'Request cannot be constructed from a URL that includes credentials: ' + + input + ) + } + + // 4. Set request to a new request whose URL is parsedURL. + request = makeRequest({ urlList: [parsedURL] }) + + // 5. Set fallbackMode to "cors". + fallbackMode = 'cors' + } else { + this[kDispatcher] = init.dispatcher || input[kDispatcher] + + // 6. Otherwise: + + // 7. Assert: input is a Request object. + assert(input instanceof Request) + + // 8. Set request to input’s request. + request = input[kState] + + // 9. Set signal to input’s signal. + signal = input[kSignal] } - /** - * Returns if it was previously specified - * for the file. - * - * @readonly - */ - get cacheControl() { - return this.originalResponse.cacheControl; + + // 7. Let origin be this’s relevant settings object’s origin. + const origin = environmentSettingsObject.settingsObject.origin + + // 8. Let window be "client". + let window = 'client' + + // 9. If request’s window is an environment settings object and its origin + // is same origin with origin, then set window to request’s window. + if ( + request.window?.constructor?.name === 'EnvironmentSettingsObject' && + sameOrigin(request.window, origin) + ) { + window = request.window + } + + // 10. If init["window"] exists and is non-null, then throw a TypeError. + if (init.window != null) { + throw new TypeError(`'window' option '${window}' must be null`) + } + + // 11. If init["window"] exists, then set window to "no-window". + if ('window' in init) { + window = 'no-window' + } + + // 12. Set request to a new request with the following properties: + request = makeRequest({ + // URL request’s URL. + // undici implementation note: this is set as the first item in request's urlList in makeRequest + // method request’s method. + method: request.method, + // header list A copy of request’s header list. + // undici implementation note: headersList is cloned in makeRequest + headersList: request.headersList, + // unsafe-request flag Set. + unsafeRequest: request.unsafeRequest, + // client This’s relevant settings object. + client: environmentSettingsObject.settingsObject, + // window window. + window, + // priority request’s priority. + priority: request.priority, + // origin request’s origin. The propagation of the origin is only significant for navigation requests + // being handled by a service worker. In this scenario a request can have an origin that is different + // from the current client. + origin: request.origin, + // referrer request’s referrer. + referrer: request.referrer, + // referrer policy request’s referrer policy. + referrerPolicy: request.referrerPolicy, + // mode request’s mode. + mode: request.mode, + // credentials mode request’s credentials mode. + credentials: request.credentials, + // cache mode request’s cache mode. + cache: request.cache, + // redirect mode request’s redirect mode. + redirect: request.redirect, + // integrity metadata request’s integrity metadata. + integrity: request.integrity, + // keepalive request’s keepalive. + keepalive: request.keepalive, + // reload-navigation flag request’s reload-navigation flag. + reloadNavigation: request.reloadNavigation, + // history-navigation flag request’s history-navigation flag. + historyNavigation: request.historyNavigation, + // URL list A clone of request’s URL list. + urlList: [...request.urlList] + }) + + const initHasKey = Object.keys(init).length !== 0 + + // 13. If init is not empty, then: + if (initHasKey) { + // 1. If request’s mode is "navigate", then set it to "same-origin". + if (request.mode === 'navigate') { + request.mode = 'same-origin' + } + + // 2. Unset request’s reload-navigation flag. + request.reloadNavigation = false + + // 3. Unset request’s history-navigation flag. + request.historyNavigation = false + + // 4. Set request’s origin to "client". + request.origin = 'client' + + // 5. Set request’s referrer to "client" + request.referrer = 'client' + + // 6. Set request’s referrer policy to the empty string. + request.referrerPolicy = '' + + // 7. Set request’s URL to request’s current URL. + request.url = request.urlList[request.urlList.length - 1] + + // 8. Set request’s URL list to « request’s URL ». + request.urlList = [request.url] } - /** - * Returns the value that was specified - * for the 'x-ms-content-disposition' header and specifies how to process the - * response. - * - * @readonly - */ - get contentDisposition() { - return this.originalResponse.contentDisposition; + + // 14. If init["referrer"] exists, then: + if (init.referrer !== undefined) { + // 1. Let referrer be init["referrer"]. + const referrer = init.referrer + + // 2. If referrer is the empty string, then set request’s referrer to "no-referrer". + if (referrer === '') { + request.referrer = 'no-referrer' + } else { + // 1. Let parsedReferrer be the result of parsing referrer with + // baseURL. + // 2. If parsedReferrer is failure, then throw a TypeError. + let parsedReferrer + try { + parsedReferrer = new URL(referrer, baseUrl) + } catch (err) { + throw new TypeError(`Referrer "${referrer}" is not a valid URL.`, { cause: err }) + } + + // 3. If one of the following is true + // - parsedReferrer’s scheme is "about" and path is the string "client" + // - parsedReferrer’s origin is not same origin with origin + // then set request’s referrer to "client". + if ( + (parsedReferrer.protocol === 'about:' && parsedReferrer.hostname === 'client') || + (origin && !sameOrigin(parsedReferrer, environmentSettingsObject.settingsObject.baseUrl)) + ) { + request.referrer = 'client' + } else { + // 4. Otherwise, set request’s referrer to parsedReferrer. + request.referrer = parsedReferrer + } + } } - /** - * Returns the value that was specified - * for the Content-Encoding request header. - * - * @readonly - */ - get contentEncoding() { - return this.originalResponse.contentEncoding; + + // 15. If init["referrerPolicy"] exists, then set request’s referrer policy + // to it. + if (init.referrerPolicy !== undefined) { + request.referrerPolicy = init.referrerPolicy } - /** - * Returns the value that was specified - * for the Content-Language request header. - * - * @readonly - */ - get contentLanguage() { - return this.originalResponse.contentLanguage; + + // 16. Let mode be init["mode"] if it exists, and fallbackMode otherwise. + let mode + if (init.mode !== undefined) { + mode = init.mode + } else { + mode = fallbackMode } - /** - * The current sequence number for a - * page blob. This header is not returned for block blobs or append blobs. - * - * @readonly - */ - get blobSequenceNumber() { - return this.originalResponse.blobSequenceNumber; + + // 17. If mode is "navigate", then throw a TypeError. + if (mode === 'navigate') { + throw webidl.errors.exception({ + header: 'Request constructor', + message: 'invalid request mode navigate.' + }) } - /** - * The blob's type. Possible values include: - * 'BlockBlob', 'PageBlob', 'AppendBlob'. - * - * @readonly - */ - get blobType() { - return this.originalResponse.blobType; + + // 18. If mode is non-null, set request’s mode to mode. + if (mode != null) { + request.mode = mode } - /** - * The number of bytes present in the - * response body. - * - * @readonly - */ - get contentLength() { - return this.originalResponse.contentLength; + + // 19. If init["credentials"] exists, then set request’s credentials mode + // to it. + if (init.credentials !== undefined) { + request.credentials = init.credentials } - /** - * If the file has an MD5 hash and the - * request is to read the full file, this response header is returned so that - * the client can check for message content integrity. If the request is to - * read a specified range and the 'x-ms-range-get-content-md5' is set to - * true, then the request returns an MD5 hash for the range, as long as the - * range size is less than or equal to 4 MB. If neither of these sets of - * conditions is true, then no value is returned for the 'Content-MD5' - * header. - * - * @readonly - */ - get contentMD5() { - return this.originalResponse.contentMD5; + + // 18. If init["cache"] exists, then set request’s cache mode to it. + if (init.cache !== undefined) { + request.cache = init.cache } - /** - * Indicates the range of bytes returned if - * the client requested a subset of the file by setting the Range request - * header. - * - * @readonly - */ - get contentRange() { - return this.originalResponse.contentRange; + + // 21. If request’s cache mode is "only-if-cached" and request’s mode is + // not "same-origin", then throw a TypeError. + if (request.cache === 'only-if-cached' && request.mode !== 'same-origin') { + throw new TypeError( + "'only-if-cached' can be set only with 'same-origin' mode" + ) } - /** - * The content type specified for the file. - * The default content type is 'application/octet-stream' - * - * @readonly - */ - get contentType() { - return this.originalResponse.contentType; + + // 22. If init["redirect"] exists, then set request’s redirect mode to it. + if (init.redirect !== undefined) { + request.redirect = init.redirect } - /** - * Conclusion time of the last attempted - * Copy File operation where this file was the destination file. This value - * can specify the time of a completed, aborted, or failed copy attempt. - * - * @readonly - */ - get copyCompletedOn() { - return undefined; + + // 23. If init["integrity"] exists, then set request’s integrity metadata to it. + if (init.integrity != null) { + request.integrity = String(init.integrity) } - /** - * String identifier for the last attempted Copy - * File operation where this file was the destination file. - * - * @readonly - */ - get copyId() { - return this.originalResponse.copyId; + + // 24. If init["keepalive"] exists, then set request’s keepalive to it. + if (init.keepalive !== undefined) { + request.keepalive = Boolean(init.keepalive) } - /** - * Contains the number of bytes copied and - * the total bytes in the source in the last attempted Copy File operation - * where this file was the destination file. Can show between 0 and - * Content-Length bytes copied. - * - * @readonly - */ - get copyProgress() { - return this.originalResponse.copyProgress; + + // 25. If init["method"] exists, then: + if (init.method !== undefined) { + // 1. Let method be init["method"]. + let method = init.method + + const mayBeNormalized = normalizedMethodRecords[method] + + if (mayBeNormalized !== undefined) { + // Note: Bypass validation DELETE, GET, HEAD, OPTIONS, POST, PUT, PATCH and these lowercase ones + request.method = mayBeNormalized + } else { + // 2. If method is not a method or method is a forbidden method, then + // throw a TypeError. + if (!isValidHTTPToken(method)) { + throw new TypeError(`'${method}' is not a valid HTTP method.`) + } + + const upperCase = method.toUpperCase() + + if (forbiddenMethodsSet.has(upperCase)) { + throw new TypeError(`'${method}' HTTP method is unsupported.`) + } + + // 3. Normalize method. + // https://fetch.spec.whatwg.org/#concept-method-normalize + // Note: must be in uppercase + method = normalizedMethodRecordsBase[upperCase] ?? method + + // 4. Set request’s method to method. + request.method = method + } + + if (!patchMethodWarning && request.method === 'patch') { + process.emitWarning('Using `patch` is highly likely to result in a `405 Method Not Allowed`. `PATCH` is much more likely to succeed.', { + code: 'UNDICI-FETCH-patch' + }) + + patchMethodWarning = true + } } - /** - * URL up to 2KB in length that specifies the - * source file used in the last attempted Copy File operation where this file - * was the destination file. - * - * @readonly - */ - get copySource() { - return this.originalResponse.copySource; + + // 26. If init["signal"] exists, then set signal to it. + if (init.signal !== undefined) { + signal = init.signal } - /** - * State of the copy operation - * identified by 'x-ms-copy-id'. Possible values include: 'pending', - * 'success', 'aborted', 'failed' - * - * @readonly - */ - get copyStatus() { - return this.originalResponse.copyStatus; + + // 27. Set this’s request to request. + this[kState] = request + + // 28. Set this’s signal to a new AbortSignal object with this’s relevant + // Realm. + // TODO: could this be simplified with AbortSignal.any + // (https://dom.spec.whatwg.org/#dom-abortsignal-any) + const ac = new AbortController() + this[kSignal] = ac.signal + + // 29. If signal is not null, then make this’s signal follow signal. + if (signal != null) { + if ( + !signal || + typeof signal.aborted !== 'boolean' || + typeof signal.addEventListener !== 'function' + ) { + throw new TypeError( + "Failed to construct 'Request': member signal is not of type AbortSignal." + ) + } + + if (signal.aborted) { + ac.abort(signal.reason) + } else { + // Keep a strong ref to ac while request object + // is alive. This is needed to prevent AbortController + // from being prematurely garbage collected. + // See, https://github.com/nodejs/undici/issues/1926. + this[kAbortController] = ac + + const acRef = new WeakRef(ac) + const abort = buildAbort(acRef) + + // Third-party AbortControllers may not work with these. + // See, https://github.com/nodejs/undici/pull/1910#issuecomment-1464495619. + try { + // If the max amount of listeners is equal to the default, increase it + // This is only available in node >= v19.9.0 + if (typeof getMaxListeners === 'function' && getMaxListeners(signal) === defaultMaxListeners) { + setMaxListeners(1500, signal) + } else if (getEventListeners(signal, 'abort').length >= defaultMaxListeners) { + setMaxListeners(1500, signal) + } + } catch {} + + util.addAbortListener(signal, abort) + // The third argument must be a registry key to be unregistered. + // Without it, you cannot unregister. + // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/FinalizationRegistry + // abort is used as the unregister key. (because it is unique) + requestFinalizer.register(ac, { signal, abort }, abort) + } } - /** - * Only appears when - * x-ms-copy-status is failed or pending. Describes cause of fatal or - * non-fatal copy operation failure. - * - * @readonly - */ - get copyStatusDescription() { - return this.originalResponse.copyStatusDescription; + + // 30. Set this’s headers to a new Headers object with this’s relevant + // Realm, whose header list is request’s header list and guard is + // "request". + this[kHeaders] = new Headers(kConstruct) + setHeadersList(this[kHeaders], request.headersList) + setHeadersGuard(this[kHeaders], 'request') + + // 31. If this’s request’s mode is "no-cors", then: + if (mode === 'no-cors') { + // 1. If this’s request’s method is not a CORS-safelisted method, + // then throw a TypeError. + if (!corsSafeListedMethodsSet.has(request.method)) { + throw new TypeError( + `'${request.method} is unsupported in no-cors mode.` + ) + } + + // 2. Set this’s headers’s guard to "request-no-cors". + setHeadersGuard(this[kHeaders], 'request-no-cors') } - /** - * When a blob is leased, - * specifies whether the lease is of infinite or fixed duration. Possible - * values include: 'infinite', 'fixed'. - * - * @readonly - */ - get leaseDuration() { - return this.originalResponse.leaseDuration; + + // 32. If init is not empty, then: + if (initHasKey) { + /** @type {HeadersList} */ + const headersList = getHeadersList(this[kHeaders]) + // 1. Let headers be a copy of this’s headers and its associated header + // list. + // 2. If init["headers"] exists, then set headers to init["headers"]. + const headers = init.headers !== undefined ? init.headers : new HeadersList(headersList) + + // 3. Empty this’s headers’s header list. + headersList.clear() + + // 4. If headers is a Headers object, then for each header in its header + // list, append header’s name/header’s value to this’s headers. + if (headers instanceof HeadersList) { + for (const { name, value } of headers.rawValues()) { + headersList.append(name, value, false) + } + // Note: Copy the `set-cookie` meta-data. + headersList.cookies = headers.cookies + } else { + // 5. Otherwise, fill this’s headers with headers. + fillHeaders(this[kHeaders], headers) + } } - /** - * Lease state of the blob. Possible - * values include: 'available', 'leased', 'expired', 'breaking', 'broken'. - * - * @readonly - */ - get leaseState() { - return this.originalResponse.leaseState; + + // 33. Let inputBody be input’s request’s body if input is a Request + // object; otherwise null. + const inputBody = input instanceof Request ? input[kState].body : null + + // 34. If either init["body"] exists and is non-null or inputBody is + // non-null, and request’s method is `GET` or `HEAD`, then throw a + // TypeError. + if ( + (init.body != null || inputBody != null) && + (request.method === 'GET' || request.method === 'HEAD') + ) { + throw new TypeError('Request with GET/HEAD method cannot have body.') } - /** - * The current lease status of the - * blob. Possible values include: 'locked', 'unlocked'. - * - * @readonly - */ - get leaseStatus() { - return this.originalResponse.leaseStatus; + + // 35. Let initBody be null. + let initBody = null + + // 36. If init["body"] exists and is non-null, then: + if (init.body != null) { + // 1. Let Content-Type be null. + // 2. Set initBody and Content-Type to the result of extracting + // init["body"], with keepalive set to request’s keepalive. + const [extractedBody, contentType] = extractBody( + init.body, + request.keepalive + ) + initBody = extractedBody + + // 3, If Content-Type is non-null and this’s headers’s header list does + // not contain `Content-Type`, then append `Content-Type`/Content-Type to + // this’s headers. + if (contentType && !getHeadersList(this[kHeaders]).contains('content-type', true)) { + this[kHeaders].append('content-type', contentType) + } } - /** - * A UTC date/time value generated by the service that - * indicates the time at which the response was initiated. - * - * @readonly - */ - get date() { - return this.originalResponse.date; + + // 37. Let inputOrInitBody be initBody if it is non-null; otherwise + // inputBody. + const inputOrInitBody = initBody ?? inputBody + + // 38. If inputOrInitBody is non-null and inputOrInitBody’s source is + // null, then: + if (inputOrInitBody != null && inputOrInitBody.source == null) { + // 1. If initBody is non-null and init["duplex"] does not exist, + // then throw a TypeError. + if (initBody != null && init.duplex == null) { + throw new TypeError('RequestInit: duplex option is required when sending a body.') + } + + // 2. If this’s request’s mode is neither "same-origin" nor "cors", + // then throw a TypeError. + if (request.mode !== 'same-origin' && request.mode !== 'cors') { + throw new TypeError( + 'If request is made from ReadableStream, mode should be "same-origin" or "cors"' + ) + } + + // 3. Set this’s request’s use-CORS-preflight flag. + request.useCORSPreflightFlag = true } - /** - * The number of committed blocks - * present in the blob. This header is returned only for append blobs. - * - * @readonly - */ - get blobCommittedBlockCount() { - return this.originalResponse.blobCommittedBlockCount; + + // 39. Let finalBody be inputOrInitBody. + let finalBody = inputOrInitBody + + // 40. If initBody is null and inputBody is non-null, then: + if (initBody == null && inputBody != null) { + // 1. If input is unusable, then throw a TypeError. + if (bodyUnusable(input)) { + throw new TypeError( + 'Cannot construct a Request with a Request object that has already been used.' + ) + } + + // 2. Set finalBody to the result of creating a proxy for inputBody. + // https://streams.spec.whatwg.org/#readablestream-create-a-proxy + const identityTransform = new TransformStream() + inputBody.stream.pipeThrough(identityTransform) + finalBody = { + source: inputBody.source, + length: inputBody.length, + stream: identityTransform.readable + } } - /** - * The ETag contains a value that you can use to - * perform operations conditionally, in quotes. - * - * @readonly - */ - get etag() { - return this.originalResponse.etag; + + // 41. Set this’s request’s body to finalBody. + this[kState].body = finalBody + } + + // Returns request’s HTTP method, which is "GET" by default. + get method () { + webidl.brandCheck(this, Request) + + // The method getter steps are to return this’s request’s method. + return this[kState].method + } + + // Returns the URL of request as a string. + get url () { + webidl.brandCheck(this, Request) + + // The url getter steps are to return this’s request’s URL, serialized. + return URLSerializer(this[kState].url) + } + + // Returns a Headers object consisting of the headers associated with request. + // Note that headers added in the network layer by the user agent will not + // be accounted for in this object, e.g., the "Host" header. + get headers () { + webidl.brandCheck(this, Request) + + // The headers getter steps are to return this’s headers. + return this[kHeaders] + } + + // Returns the kind of resource requested by request, e.g., "document" + // or "script". + get destination () { + webidl.brandCheck(this, Request) + + // The destination getter are to return this’s request’s destination. + return this[kState].destination + } + + // Returns the referrer of request. Its value can be a same-origin URL if + // explicitly set in init, the empty string to indicate no referrer, and + // "about:client" when defaulting to the global’s default. This is used + // during fetching to determine the value of the `Referer` header of the + // request being made. + get referrer () { + webidl.brandCheck(this, Request) + + // 1. If this’s request’s referrer is "no-referrer", then return the + // empty string. + if (this[kState].referrer === 'no-referrer') { + return '' } - /** - * The error code. - * - * @readonly - */ - get errorCode() { - return this.originalResponse.errorCode; + + // 2. If this’s request’s referrer is "client", then return + // "about:client". + if (this[kState].referrer === 'client') { + return 'about:client' } - /** - * The value of this header is set to - * true if the file data and application metadata are completely encrypted - * using the specified algorithm. Otherwise, the value is set to false (when - * the file is unencrypted, or if only parts of the file/application metadata - * are encrypted). - * - * @readonly - */ - get isServerEncrypted() { - return this.originalResponse.isServerEncrypted; + + // Return this’s request’s referrer, serialized. + return this[kState].referrer.toString() + } + + // Returns the referrer policy associated with request. + // This is used during fetching to compute the value of the request’s + // referrer. + get referrerPolicy () { + webidl.brandCheck(this, Request) + + // The referrerPolicy getter steps are to return this’s request’s referrer policy. + return this[kState].referrerPolicy + } + + // Returns the mode associated with request, which is a string indicating + // whether the request will use CORS, or will be restricted to same-origin + // URLs. + get mode () { + webidl.brandCheck(this, Request) + + // The mode getter steps are to return this’s request’s mode. + return this[kState].mode + } + + // Returns the credentials mode associated with request, + // which is a string indicating whether credentials will be sent with the + // request always, never, or only when sent to a same-origin URL. + get credentials () { + // The credentials getter steps are to return this’s request’s credentials mode. + return this[kState].credentials + } + + // Returns the cache mode associated with request, + // which is a string indicating how the request will + // interact with the browser’s cache when fetching. + get cache () { + webidl.brandCheck(this, Request) + + // The cache getter steps are to return this’s request’s cache mode. + return this[kState].cache + } + + // Returns the redirect mode associated with request, + // which is a string indicating how redirects for the + // request will be handled during fetching. A request + // will follow redirects by default. + get redirect () { + webidl.brandCheck(this, Request) + + // The redirect getter steps are to return this’s request’s redirect mode. + return this[kState].redirect + } + + // Returns request’s subresource integrity metadata, which is a + // cryptographic hash of the resource being fetched. Its value + // consists of multiple hashes separated by whitespace. [SRI] + get integrity () { + webidl.brandCheck(this, Request) + + // The integrity getter steps are to return this’s request’s integrity + // metadata. + return this[kState].integrity + } + + // Returns a boolean indicating whether or not request can outlive the + // global in which it was created. + get keepalive () { + webidl.brandCheck(this, Request) + + // The keepalive getter steps are to return this’s request’s keepalive. + return this[kState].keepalive + } + + // Returns a boolean indicating whether or not request is for a reload + // navigation. + get isReloadNavigation () { + webidl.brandCheck(this, Request) + + // The isReloadNavigation getter steps are to return true if this’s + // request’s reload-navigation flag is set; otherwise false. + return this[kState].reloadNavigation + } + + // Returns a boolean indicating whether or not request is for a history + // navigation (a.k.a. back-forward navigation). + get isHistoryNavigation () { + webidl.brandCheck(this, Request) + + // The isHistoryNavigation getter steps are to return true if this’s request’s + // history-navigation flag is set; otherwise false. + return this[kState].historyNavigation + } + + // Returns the signal associated with request, which is an AbortSignal + // object indicating whether or not request has been aborted, and its + // abort event handler. + get signal () { + webidl.brandCheck(this, Request) + + // The signal getter steps are to return this’s signal. + return this[kSignal] + } + + get body () { + webidl.brandCheck(this, Request) + + return this[kState].body ? this[kState].body.stream : null + } + + get bodyUsed () { + webidl.brandCheck(this, Request) + + return !!this[kState].body && util.isDisturbed(this[kState].body.stream) + } + + get duplex () { + webidl.brandCheck(this, Request) + + return 'half' + } + + // Returns a clone of request. + clone () { + webidl.brandCheck(this, Request) + + // 1. If this is unusable, then throw a TypeError. + if (bodyUnusable(this)) { + throw new TypeError('unusable') } - /** - * If the blob has a MD5 hash, and if - * request contains range header (Range or x-ms-range), this response header - * is returned with the value of the whole blob's MD5 value. This value may - * or may not be equal to the value returned in Content-MD5 header, with the - * latter calculated from the requested range. - * - * @readonly - */ - get blobContentMD5() { - return this.originalResponse.blobContentMD5; + + // 2. Let clonedRequest be the result of cloning this’s request. + const clonedRequest = cloneRequest(this[kState]) + + // 3. Let clonedRequestObject be the result of creating a Request object, + // given clonedRequest, this’s headers’s guard, and this’s relevant Realm. + // 4. Make clonedRequestObject’s signal follow this’s signal. + const ac = new AbortController() + if (this.signal.aborted) { + ac.abort(this.signal.reason) + } else { + let list = dependentControllerMap.get(this.signal) + if (list === undefined) { + list = new Set() + dependentControllerMap.set(this.signal, list) + } + const acRef = new WeakRef(ac) + list.add(acRef) + util.addAbortListener( + ac.signal, + buildAbort(acRef) + ) } - /** - * Returns the date and time the file was last - * modified. Any operation that modifies the file or its properties updates - * the last modified time. - * - * @readonly - */ - get lastModified() { - return this.originalResponse.lastModified; + + // 4. Return clonedRequestObject. + return fromInnerRequest(clonedRequest, ac.signal, getHeadersGuard(this[kHeaders])) + } + + [nodeUtil.inspect.custom] (depth, options) { + if (options.depth === null) { + options.depth = 2 } - /** - * A name-value pair - * to associate with a file storage object. - * - * @readonly - */ - get metadata() { - return this.originalResponse.metadata; + + options.colors ??= true + + const properties = { + method: this.method, + url: this.url, + headers: this.headers, + destination: this.destination, + referrer: this.referrer, + referrerPolicy: this.referrerPolicy, + mode: this.mode, + credentials: this.credentials, + cache: this.cache, + redirect: this.redirect, + integrity: this.integrity, + keepalive: this.keepalive, + isReloadNavigation: this.isReloadNavigation, + isHistoryNavigation: this.isHistoryNavigation, + signal: this.signal } - /** - * This header uniquely identifies the request - * that was made and can be used for troubleshooting the request. - * - * @readonly - */ - get requestId() { - return this.originalResponse.requestId; + + return `Request ${nodeUtil.formatWithOptions(options, properties)}` + } +} + +mixinBody(Request) + +// https://fetch.spec.whatwg.org/#requests +function makeRequest (init) { + return { + method: init.method ?? 'GET', + localURLsOnly: init.localURLsOnly ?? false, + unsafeRequest: init.unsafeRequest ?? false, + body: init.body ?? null, + client: init.client ?? null, + reservedClient: init.reservedClient ?? null, + replacesClientId: init.replacesClientId ?? '', + window: init.window ?? 'client', + keepalive: init.keepalive ?? false, + serviceWorkers: init.serviceWorkers ?? 'all', + initiator: init.initiator ?? '', + destination: init.destination ?? '', + priority: init.priority ?? null, + origin: init.origin ?? 'client', + policyContainer: init.policyContainer ?? 'client', + referrer: init.referrer ?? 'client', + referrerPolicy: init.referrerPolicy ?? '', + mode: init.mode ?? 'no-cors', + useCORSPreflightFlag: init.useCORSPreflightFlag ?? false, + credentials: init.credentials ?? 'same-origin', + useCredentials: init.useCredentials ?? false, + cache: init.cache ?? 'default', + redirect: init.redirect ?? 'follow', + integrity: init.integrity ?? '', + cryptoGraphicsNonceMetadata: init.cryptoGraphicsNonceMetadata ?? '', + parserMetadata: init.parserMetadata ?? '', + reloadNavigation: init.reloadNavigation ?? false, + historyNavigation: init.historyNavigation ?? false, + userActivation: init.userActivation ?? false, + taintedOrigin: init.taintedOrigin ?? false, + redirectCount: init.redirectCount ?? 0, + responseTainting: init.responseTainting ?? 'basic', + preventNoCacheCacheControlHeaderModification: init.preventNoCacheCacheControlHeaderModification ?? false, + done: init.done ?? false, + timingAllowFailed: init.timingAllowFailed ?? false, + urlList: init.urlList, + url: init.urlList[0], + headersList: init.headersList + ? new HeadersList(init.headersList) + : new HeadersList() + } +} + +// https://fetch.spec.whatwg.org/#concept-request-clone +function cloneRequest (request) { + // To clone a request request, run these steps: + + // 1. Let newRequest be a copy of request, except for its body. + const newRequest = makeRequest({ ...request, body: null }) + + // 2. If request’s body is non-null, set newRequest’s body to the + // result of cloning request’s body. + if (request.body != null) { + newRequest.body = cloneBody(newRequest, request.body) + } + + // 3. Return newRequest. + return newRequest +} + +/** + * @see https://fetch.spec.whatwg.org/#request-create + * @param {any} innerRequest + * @param {AbortSignal} signal + * @param {'request' | 'immutable' | 'request-no-cors' | 'response' | 'none'} guard + * @returns {Request} + */ +function fromInnerRequest (innerRequest, signal, guard) { + const request = new Request(kConstruct) + request[kState] = innerRequest + request[kSignal] = signal + request[kHeaders] = new Headers(kConstruct) + setHeadersList(request[kHeaders], innerRequest.headersList) + setHeadersGuard(request[kHeaders], guard) + return request +} + +Object.defineProperties(Request.prototype, { + method: kEnumerableProperty, + url: kEnumerableProperty, + headers: kEnumerableProperty, + redirect: kEnumerableProperty, + clone: kEnumerableProperty, + signal: kEnumerableProperty, + duplex: kEnumerableProperty, + destination: kEnumerableProperty, + body: kEnumerableProperty, + bodyUsed: kEnumerableProperty, + isHistoryNavigation: kEnumerableProperty, + isReloadNavigation: kEnumerableProperty, + keepalive: kEnumerableProperty, + integrity: kEnumerableProperty, + cache: kEnumerableProperty, + credentials: kEnumerableProperty, + attribute: kEnumerableProperty, + referrerPolicy: kEnumerableProperty, + referrer: kEnumerableProperty, + mode: kEnumerableProperty, + [Symbol.toStringTag]: { + value: 'Request', + configurable: true + } +}) + +webidl.converters.Request = webidl.interfaceConverter( + Request +) + +// https://fetch.spec.whatwg.org/#requestinfo +webidl.converters.RequestInfo = function (V, prefix, argument) { + if (typeof V === 'string') { + return webidl.converters.USVString(V, prefix, argument) + } + + if (V instanceof Request) { + return webidl.converters.Request(V, prefix, argument) + } + + return webidl.converters.USVString(V, prefix, argument) +} + +webidl.converters.AbortSignal = webidl.interfaceConverter( + AbortSignal +) + +// https://fetch.spec.whatwg.org/#requestinit +webidl.converters.RequestInit = webidl.dictionaryConverter([ + { + key: 'method', + converter: webidl.converters.ByteString + }, + { + key: 'headers', + converter: webidl.converters.HeadersInit + }, + { + key: 'body', + converter: webidl.nullableConverter( + webidl.converters.BodyInit + ) + }, + { + key: 'referrer', + converter: webidl.converters.USVString + }, + { + key: 'referrerPolicy', + converter: webidl.converters.DOMString, + // https://w3c.github.io/webappsec-referrer-policy/#referrer-policy + allowedValues: referrerPolicy + }, + { + key: 'mode', + converter: webidl.converters.DOMString, + // https://fetch.spec.whatwg.org/#concept-request-mode + allowedValues: requestMode + }, + { + key: 'credentials', + converter: webidl.converters.DOMString, + // https://fetch.spec.whatwg.org/#requestcredentials + allowedValues: requestCredentials + }, + { + key: 'cache', + converter: webidl.converters.DOMString, + // https://fetch.spec.whatwg.org/#requestcache + allowedValues: requestCache + }, + { + key: 'redirect', + converter: webidl.converters.DOMString, + // https://fetch.spec.whatwg.org/#requestredirect + allowedValues: requestRedirect + }, + { + key: 'integrity', + converter: webidl.converters.DOMString + }, + { + key: 'keepalive', + converter: webidl.converters.boolean + }, + { + key: 'signal', + converter: webidl.nullableConverter( + (signal) => webidl.converters.AbortSignal( + signal, + 'RequestInit', + 'signal', + { strict: false } + ) + ) + }, + { + key: 'window', + converter: webidl.converters.any + }, + { + key: 'duplex', + converter: webidl.converters.DOMString, + allowedValues: requestDuplex + }, + { + key: 'dispatcher', // undici specific option + converter: webidl.converters.any + } +]) + +module.exports = { Request, makeRequest, fromInnerRequest, cloneRequest } + + +/***/ }), + +/***/ 12583: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { Headers, HeadersList, fill, getHeadersGuard, setHeadersGuard, setHeadersList } = __nccwpck_require__(52991) +const { extractBody, cloneBody, mixinBody, hasFinalizationRegistry, streamRegistry, bodyUnusable } = __nccwpck_require__(36682) +const util = __nccwpck_require__(83983) +const nodeUtil = __nccwpck_require__(47261) +const { kEnumerableProperty } = util +const { + isValidReasonPhrase, + isCancelled, + isAborted, + isBlobLike, + serializeJavascriptValueToJSONString, + isErrorLike, + isomorphicEncode, + environmentSettingsObject: relevantRealm +} = __nccwpck_require__(1310) +const { + redirectStatusSet, + nullBodyStatus +} = __nccwpck_require__(68160) +const { kState, kHeaders } = __nccwpck_require__(749) +const { webidl } = __nccwpck_require__(44890) +const { FormData } = __nccwpck_require__(73162) +const { URLSerializer } = __nccwpck_require__(17704) +const { kConstruct } = __nccwpck_require__(72785) +const assert = __nccwpck_require__(98061) +const { types } = __nccwpck_require__(47261) + +const textEncoder = new TextEncoder('utf-8') + +// https://fetch.spec.whatwg.org/#response-class +class Response { + // Creates network error Response. + static error () { + // The static error() method steps are to return the result of creating a + // Response object, given a new network error, "immutable", and this’s + // relevant Realm. + const responseObject = fromInnerResponse(makeNetworkError(), 'immutable') + + return responseObject + } + + // https://fetch.spec.whatwg.org/#dom-response-json + static json (data, init = {}) { + webidl.argumentLengthCheck(arguments, 1, 'Response.json') + + if (init !== null) { + init = webidl.converters.ResponseInit(init) } - /** - * If a client request id header is sent in the request, this header will be present in the - * response with the same value. - * - * @readonly - */ - get clientRequestId() { - return this.originalResponse.clientRequestId; + + // 1. Let bytes the result of running serialize a JavaScript value to JSON bytes on data. + const bytes = textEncoder.encode( + serializeJavascriptValueToJSONString(data) + ) + + // 2. Let body be the result of extracting bytes. + const body = extractBody(bytes) + + // 3. Let responseObject be the result of creating a Response object, given a new response, + // "response", and this’s relevant Realm. + const responseObject = fromInnerResponse(makeResponse({}), 'response') + + // 4. Perform initialize a response given responseObject, init, and (body, "application/json"). + initializeResponse(responseObject, init, { body: body[0], type: 'application/json' }) + + // 5. Return responseObject. + return responseObject + } + + // Creates a redirect Response that redirects to url with status status. + static redirect (url, status = 302) { + webidl.argumentLengthCheck(arguments, 1, 'Response.redirect') + + url = webidl.converters.USVString(url) + status = webidl.converters['unsigned short'](status) + + // 1. Let parsedURL be the result of parsing url with current settings + // object’s API base URL. + // 2. If parsedURL is failure, then throw a TypeError. + // TODO: base-URL? + let parsedURL + try { + parsedURL = new URL(url, relevantRealm.settingsObject.baseUrl) + } catch (err) { + throw new TypeError(`Failed to parse URL from ${url}`, { cause: err }) } - /** - * Indicates the version of the File service used - * to execute the request. - * - * @readonly - */ - get version() { - return this.originalResponse.version; + + // 3. If status is not a redirect status, then throw a RangeError. + if (!redirectStatusSet.has(status)) { + throw new RangeError(`Invalid status code ${status}`) } - /** - * The SHA-256 hash of the encryption key used to encrypt the blob. This value is only returned - * when the blob was encrypted with a customer-provided key. - * - * @readonly - */ - get encryptionKeySha256() { - return this.originalResponse.encryptionKeySha256; + + // 4. Let responseObject be the result of creating a Response object, + // given a new response, "immutable", and this’s relevant Realm. + const responseObject = fromInnerResponse(makeResponse({}), 'immutable') + + // 5. Set responseObject’s response’s status to status. + responseObject[kState].status = status + + // 6. Let value be parsedURL, serialized and isomorphic encoded. + const value = isomorphicEncode(URLSerializer(parsedURL)) + + // 7. Append `Location`/value to responseObject’s response’s header list. + responseObject[kState].headersList.append('location', value, true) + + // 8. Return responseObject. + return responseObject + } + + // https://fetch.spec.whatwg.org/#dom-response + constructor (body = null, init = {}) { + webidl.util.markAsUncloneable(this) + if (body === kConstruct) { + return } - /** - * If the request is to read a specified range and the x-ms-range-get-content-crc64 is set to - * true, then the request returns a crc64 for the range, as long as the range size is less than - * or equal to 4 MB. If both x-ms-range-get-content-crc64 & x-ms-range-get-content-md5 is - * specified in the same request, it will fail with 400(Bad Request) - */ - get contentCrc64() { - return this.originalResponse.contentCrc64; + + if (body !== null) { + body = webidl.converters.BodyInit(body) } - /** - * The response body as a browser Blob. - * Always undefined in node.js. - * - * @readonly - */ - get blobBody() { - return undefined; + + init = webidl.converters.ResponseInit(init) + + // 1. Set this’s response to a new response. + this[kState] = makeResponse({}) + + // 2. Set this’s headers to a new Headers object with this’s relevant + // Realm, whose header list is this’s response’s header list and guard + // is "response". + this[kHeaders] = new Headers(kConstruct) + setHeadersGuard(this[kHeaders], 'response') + setHeadersList(this[kHeaders], this[kState].headersList) + + // 3. Let bodyWithType be null. + let bodyWithType = null + + // 4. If body is non-null, then set bodyWithType to the result of extracting body. + if (body != null) { + const [extractedBody, type] = extractBody(body) + bodyWithType = { body: extractedBody, type } } - /** - * The response body as a node.js Readable stream. - * Always undefined in the browser. - * - * It will parse avor data returned by blob query. - * - * @readonly - */ - get readableStreamBody() { - return coreHttp.isNode ? this.blobDownloadStream : undefined; + + // 5. Perform initialize a response given this, init, and bodyWithType. + initializeResponse(this, init, bodyWithType) + } + + // Returns response’s type, e.g., "cors". + get type () { + webidl.brandCheck(this, Response) + + // The type getter steps are to return this’s response’s type. + return this[kState].type + } + + // Returns response’s URL, if it has one; otherwise the empty string. + get url () { + webidl.brandCheck(this, Response) + + const urlList = this[kState].urlList + + // The url getter steps are to return the empty string if this’s + // response’s URL is null; otherwise this’s response’s URL, + // serialized with exclude fragment set to true. + const url = urlList[urlList.length - 1] ?? null + + if (url === null) { + return '' } - /** - * The HTTP response. - */ - get _response() { - return this.originalResponse._response; + + return URLSerializer(url, true) + } + + // Returns whether response was obtained through a redirect. + get redirected () { + webidl.brandCheck(this, Response) + + // The redirected getter steps are to return true if this’s response’s URL + // list has more than one item; otherwise false. + return this[kState].urlList.length > 1 + } + + // Returns response’s status. + get status () { + webidl.brandCheck(this, Response) + + // The status getter steps are to return this’s response’s status. + return this[kState].status + } + + // Returns whether response’s status is an ok status. + get ok () { + webidl.brandCheck(this, Response) + + // The ok getter steps are to return true if this’s response’s status is an + // ok status; otherwise false. + return this[kState].status >= 200 && this[kState].status <= 299 + } + + // Returns response’s status message. + get statusText () { + webidl.brandCheck(this, Response) + + // The statusText getter steps are to return this’s response’s status + // message. + return this[kState].statusText + } + + // Returns response’s headers as Headers. + get headers () { + webidl.brandCheck(this, Response) + + // The headers getter steps are to return this’s headers. + return this[kHeaders] + } + + get body () { + webidl.brandCheck(this, Response) + + return this[kState].body ? this[kState].body.stream : null + } + + get bodyUsed () { + webidl.brandCheck(this, Response) + + return !!this[kState].body && util.isDisturbed(this[kState].body.stream) + } + + // Returns a clone of response. + clone () { + webidl.brandCheck(this, Response) + + // 1. If this is unusable, then throw a TypeError. + if (bodyUnusable(this)) { + throw webidl.errors.exception({ + header: 'Response.clone', + message: 'Body has already been consumed.' + }) } -} -// Copyright (c) Microsoft Corporation. -/** - * Represents the access tier on a blob. - * For detailed information about block blob level tiering see {@link https://docs.microsoft.com/azure/storage/blobs/storage-blob-storage-tiers|Hot, cool and archive storage tiers.} - */ -exports.BlockBlobTier = void 0; -(function (BlockBlobTier) { - /** - * Optimized for storing data that is accessed frequently. - */ - BlockBlobTier["Hot"] = "Hot"; - /** - * Optimized for storing data that is infrequently accessed and stored for at least 30 days. - */ - BlockBlobTier["Cool"] = "Cool"; - /** - * Optimized for storing data that is rarely accessed and stored for at least 180 days - * with flexible latency requirements (on the order of hours). - */ - BlockBlobTier["Archive"] = "Archive"; -})(exports.BlockBlobTier || (exports.BlockBlobTier = {})); -/** - * Specifies the page blob tier to set the blob to. This is only applicable to page blobs on premium storage accounts. - * Please see {@link https://docs.microsoft.com/azure/storage/storage-premium-storage#scalability-and-performance-targets|here} - * for detailed information on the corresponding IOPS and throughput per PageBlobTier. - */ -exports.PremiumPageBlobTier = void 0; -(function (PremiumPageBlobTier) { - /** - * P4 Tier. - */ - PremiumPageBlobTier["P4"] = "P4"; - /** - * P6 Tier. - */ - PremiumPageBlobTier["P6"] = "P6"; - /** - * P10 Tier. - */ - PremiumPageBlobTier["P10"] = "P10"; - /** - * P15 Tier. - */ - PremiumPageBlobTier["P15"] = "P15"; - /** - * P20 Tier. - */ - PremiumPageBlobTier["P20"] = "P20"; - /** - * P30 Tier. - */ - PremiumPageBlobTier["P30"] = "P30"; - /** - * P40 Tier. - */ - PremiumPageBlobTier["P40"] = "P40"; - /** - * P50 Tier. - */ - PremiumPageBlobTier["P50"] = "P50"; - /** - * P60 Tier. - */ - PremiumPageBlobTier["P60"] = "P60"; - /** - * P70 Tier. - */ - PremiumPageBlobTier["P70"] = "P70"; - /** - * P80 Tier. - */ - PremiumPageBlobTier["P80"] = "P80"; -})(exports.PremiumPageBlobTier || (exports.PremiumPageBlobTier = {})); -function toAccessTier(tier) { - if (tier === undefined) { - return undefined; + // 2. Let clonedResponse be the result of cloning this’s response. + const clonedResponse = cloneResponse(this[kState]) + + // Note: To re-register because of a new stream. + if (hasFinalizationRegistry && this[kState].body?.stream) { + streamRegistry.register(this, new WeakRef(this[kState].body.stream)) } - return tier; // No more check if string is a valid AccessTier, and left this to underlay logic to decide(service). -} -function ensureCpkIfSpecified(cpk, isHttps) { - if (cpk && !isHttps) { - throw new RangeError("Customer-provided encryption key must be used over HTTPS."); + + // 3. Return the result of creating a Response object, given + // clonedResponse, this’s headers’s guard, and this’s relevant Realm. + return fromInnerResponse(clonedResponse, getHeadersGuard(this[kHeaders])) + } + + [nodeUtil.inspect.custom] (depth, options) { + if (options.depth === null) { + options.depth = 2 } - if (cpk && !cpk.encryptionAlgorithm) { - cpk.encryptionAlgorithm = EncryptionAlgorithmAES25; + + options.colors ??= true + + const properties = { + status: this.status, + statusText: this.statusText, + headers: this.headers, + body: this.body, + bodyUsed: this.bodyUsed, + ok: this.ok, + redirected: this.redirected, + type: this.type, + url: this.url } + + return `Response ${nodeUtil.formatWithOptions(options, properties)}` + } } -/** - * Defines the known cloud audiences for Storage. - */ -exports.StorageBlobAudience = void 0; -(function (StorageBlobAudience) { - /** - * The OAuth scope to use to retrieve an AAD token for Azure Storage. - */ - StorageBlobAudience["StorageOAuthScopes"] = "https://storage.azure.com/.default"; - /** - * The OAuth scope to use to retrieve an AAD token for Azure Disk. - */ - StorageBlobAudience["DiskComputeOAuthScopes"] = "https://disk.compute.azure.com/.default"; -})(exports.StorageBlobAudience || (exports.StorageBlobAudience = {})); -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -/** - * Function that converts PageRange and ClearRange to a common Range object. - * PageRange and ClearRange have start and end while Range offset and count - * this function normalizes to Range. - * @param response - Model PageBlob Range response - */ -function rangeResponseFromModel(response) { - const pageRange = (response._response.parsedBody.pageRange || []).map((x) => ({ - offset: x.start, - count: x.end - x.start, - })); - const clearRange = (response._response.parsedBody.clearRange || []).map((x) => ({ - offset: x.start, - count: x.end - x.start, - })); - return Object.assign(Object.assign({}, response), { pageRange, - clearRange, _response: Object.assign(Object.assign({}, response._response), { parsedBody: { - pageRange, - clearRange, - } }) }); +mixinBody(Response) + +Object.defineProperties(Response.prototype, { + type: kEnumerableProperty, + url: kEnumerableProperty, + status: kEnumerableProperty, + ok: kEnumerableProperty, + redirected: kEnumerableProperty, + statusText: kEnumerableProperty, + headers: kEnumerableProperty, + clone: kEnumerableProperty, + body: kEnumerableProperty, + bodyUsed: kEnumerableProperty, + [Symbol.toStringTag]: { + value: 'Response', + configurable: true + } +}) + +Object.defineProperties(Response, { + json: kEnumerableProperty, + redirect: kEnumerableProperty, + error: kEnumerableProperty +}) + +// https://fetch.spec.whatwg.org/#concept-response-clone +function cloneResponse (response) { + // To clone a response response, run these steps: + + // 1. If response is a filtered response, then return a new identical + // filtered response whose internal response is a clone of response’s + // internal response. + if (response.internalResponse) { + return filterResponse( + cloneResponse(response.internalResponse), + response.type + ) + } + + // 2. Let newResponse be a copy of response, except for its body. + const newResponse = makeResponse({ ...response, body: null }) + + // 3. If response’s body is non-null, then set newResponse’s body to the + // result of cloning response’s body. + if (response.body != null) { + newResponse.body = cloneBody(newResponse, response.body) + } + + // 4. Return newResponse. + return newResponse } -// Copyright (c) Microsoft Corporation. -/** - * This is the poller returned by {@link BlobClient.beginCopyFromURL}. - * This can not be instantiated directly outside of this package. - * - * @hidden - */ -class BlobBeginCopyFromUrlPoller extends coreLro.Poller { - constructor(options) { - const { blobClient, copySource, intervalInMs = 15000, onProgress, resumeFrom, startCopyFromURLOptions, } = options; - let state; - if (resumeFrom) { - state = JSON.parse(resumeFrom).state; - } - const operation = makeBlobBeginCopyFromURLPollOperation(Object.assign(Object.assign({}, state), { blobClient, - copySource, - startCopyFromURLOptions })); - super(operation); - if (typeof onProgress === "function") { - this.onProgress(onProgress); - } - this.intervalInMs = intervalInMs; +function makeResponse (init) { + return { + aborted: false, + rangeRequested: false, + timingAllowPassed: false, + requestIncludesCredentials: false, + type: 'default', + status: 200, + timingInfo: null, + cacheState: '', + statusText: '', + ...init, + headersList: init?.headersList + ? new HeadersList(init?.headersList) + : new HeadersList(), + urlList: init?.urlList ? [...init.urlList] : [] + } +} + +function makeNetworkError (reason) { + const isError = isErrorLike(reason) + return makeResponse({ + type: 'error', + status: 0, + error: isError + ? reason + : new Error(reason ? String(reason) : reason), + aborted: reason && reason.name === 'AbortError' + }) +} + +// @see https://fetch.spec.whatwg.org/#concept-network-error +function isNetworkError (response) { + return ( + // A network error is a response whose type is "error", + response.type === 'error' && + // status is 0 + response.status === 0 + ) +} + +function makeFilteredResponse (response, state) { + state = { + internalResponse: response, + ...state + } + + return new Proxy(response, { + get (target, p) { + return p in state ? state[p] : target[p] + }, + set (target, p, value) { + assert(!(p in state)) + target[p] = value + return true } - delay() { - return coreHttp.delay(this.intervalInMs); + }) +} + +// https://fetch.spec.whatwg.org/#concept-filtered-response +function filterResponse (response, type) { + // Set response to the following filtered response with response as its + // internal response, depending on request’s response tainting: + if (type === 'basic') { + // A basic filtered response is a filtered response whose type is "basic" + // and header list excludes any headers in internal response’s header list + // whose name is a forbidden response-header name. + + // Note: undici does not implement forbidden response-header names + return makeFilteredResponse(response, { + type: 'basic', + headersList: response.headersList + }) + } else if (type === 'cors') { + // A CORS filtered response is a filtered response whose type is "cors" + // and header list excludes any headers in internal response’s header + // list whose name is not a CORS-safelisted response-header name, given + // internal response’s CORS-exposed header-name list. + + // Note: undici does not implement CORS-safelisted response-header names + return makeFilteredResponse(response, { + type: 'cors', + headersList: response.headersList + }) + } else if (type === 'opaque') { + // An opaque filtered response is a filtered response whose type is + // "opaque", URL list is the empty list, status is 0, status message + // is the empty byte sequence, header list is empty, and body is null. + + return makeFilteredResponse(response, { + type: 'opaque', + urlList: Object.freeze([]), + status: 0, + statusText: '', + body: null + }) + } else if (type === 'opaqueredirect') { + // An opaque-redirect filtered response is a filtered response whose type + // is "opaqueredirect", status is 0, status message is the empty byte + // sequence, header list is empty, and body is null. + + return makeFilteredResponse(response, { + type: 'opaqueredirect', + status: 0, + statusText: '', + headersList: [], + body: null + }) + } else { + assert(false) + } +} + +// https://fetch.spec.whatwg.org/#appropriate-network-error +function makeAppropriateNetworkError (fetchParams, err = null) { + // 1. Assert: fetchParams is canceled. + assert(isCancelled(fetchParams)) + + // 2. Return an aborted network error if fetchParams is aborted; + // otherwise return a network error. + return isAborted(fetchParams) + ? makeNetworkError(Object.assign(new DOMException('The operation was aborted.', 'AbortError'), { cause: err })) + : makeNetworkError(Object.assign(new DOMException('Request was cancelled.'), { cause: err })) +} + +// https://whatpr.org/fetch/1392.html#initialize-a-response +function initializeResponse (response, init, body) { + // 1. If init["status"] is not in the range 200 to 599, inclusive, then + // throw a RangeError. + if (init.status !== null && (init.status < 200 || init.status > 599)) { + throw new RangeError('init["status"] must be in the range of 200 to 599, inclusive.') + } + + // 2. If init["statusText"] does not match the reason-phrase token production, + // then throw a TypeError. + if ('statusText' in init && init.statusText != null) { + // See, https://datatracker.ietf.org/doc/html/rfc7230#section-3.1.2: + // reason-phrase = *( HTAB / SP / VCHAR / obs-text ) + if (!isValidReasonPhrase(String(init.statusText))) { + throw new TypeError('Invalid statusText') + } + } + + // 3. Set response’s response’s status to init["status"]. + if ('status' in init && init.status != null) { + response[kState].status = init.status + } + + // 4. Set response’s response’s status message to init["statusText"]. + if ('statusText' in init && init.statusText != null) { + response[kState].statusText = init.statusText + } + + // 5. If init["headers"] exists, then fill response’s headers with init["headers"]. + if ('headers' in init && init.headers != null) { + fill(response[kHeaders], init.headers) + } + + // 6. If body was given, then: + if (body) { + // 1. If response's status is a null body status, then throw a TypeError. + if (nullBodyStatus.includes(response.status)) { + throw webidl.errors.exception({ + header: 'Response constructor', + message: `Invalid response status code ${response.status}` + }) } + + // 2. Set response's body to body's body. + response[kState].body = body.body + + // 3. If body's type is non-null and response's header list does not contain + // `Content-Type`, then append (`Content-Type`, body's type) to response's header list. + if (body.type != null && !response[kState].headersList.contains('content-type', true)) { + response[kState].headersList.append('content-type', body.type, true) + } + } } + /** - * Note: Intentionally using function expression over arrow function expression - * so that the function can be invoked with a different context. - * This affects what `this` refers to. - * @hidden + * @see https://fetch.spec.whatwg.org/#response-create + * @param {any} innerResponse + * @param {'request' | 'immutable' | 'request-no-cors' | 'response' | 'none'} guard + * @returns {Response} */ -const cancel = async function cancel(options = {}) { - const state = this.state; - const { copyId } = state; - if (state.isCompleted) { - return makeBlobBeginCopyFromURLPollOperation(state); - } - if (!copyId) { - state.isCancelled = true; - return makeBlobBeginCopyFromURLPollOperation(state); +function fromInnerResponse (innerResponse, guard) { + const response = new Response(kConstruct) + response[kState] = innerResponse + response[kHeaders] = new Headers(kConstruct) + setHeadersList(response[kHeaders], innerResponse.headersList) + setHeadersGuard(response[kHeaders], guard) + + if (hasFinalizationRegistry && innerResponse.body?.stream) { + // If the target (response) is reclaimed, the cleanup callback may be called at some point with + // the held value provided for it (innerResponse.body.stream). The held value can be any value: + // a primitive or an object, even undefined. If the held value is an object, the registry keeps + // a strong reference to it (so it can pass it to the cleanup callback later). Reworded from + // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/FinalizationRegistry + streamRegistry.register(response, new WeakRef(innerResponse.body.stream)) + } + + return response +} + +webidl.converters.ReadableStream = webidl.interfaceConverter( + ReadableStream +) + +webidl.converters.FormData = webidl.interfaceConverter( + FormData +) + +webidl.converters.URLSearchParams = webidl.interfaceConverter( + URLSearchParams +) + +// https://fetch.spec.whatwg.org/#typedefdef-xmlhttprequestbodyinit +webidl.converters.XMLHttpRequestBodyInit = function (V, prefix, name) { + if (typeof V === 'string') { + return webidl.converters.USVString(V, prefix, name) + } + + if (isBlobLike(V)) { + return webidl.converters.Blob(V, prefix, name, { strict: false }) + } + + if (ArrayBuffer.isView(V) || types.isArrayBuffer(V)) { + return webidl.converters.BufferSource(V, prefix, name) + } + + if (util.isFormDataLike(V)) { + return webidl.converters.FormData(V, prefix, name, { strict: false }) + } + + if (V instanceof URLSearchParams) { + return webidl.converters.URLSearchParams(V, prefix, name) + } + + return webidl.converters.DOMString(V, prefix, name) +} + +// https://fetch.spec.whatwg.org/#bodyinit +webidl.converters.BodyInit = function (V, prefix, argument) { + if (V instanceof ReadableStream) { + return webidl.converters.ReadableStream(V, prefix, argument) + } + + // Note: the spec doesn't include async iterables, + // this is an undici extension. + if (V?.[Symbol.asyncIterator]) { + return V + } + + return webidl.converters.XMLHttpRequestBodyInit(V, prefix, argument) +} + +webidl.converters.ResponseInit = webidl.dictionaryConverter([ + { + key: 'status', + converter: webidl.converters['unsigned short'], + defaultValue: () => 200 + }, + { + key: 'statusText', + converter: webidl.converters.ByteString, + defaultValue: () => '' + }, + { + key: 'headers', + converter: webidl.converters.HeadersInit + } +]) + +module.exports = { + isNetworkError, + makeNetworkError, + makeResponse, + makeAppropriateNetworkError, + filterResponse, + Response, + cloneResponse, + fromInnerResponse +} + + +/***/ }), + +/***/ 749: +/***/ ((module) => { + +"use strict"; + + +module.exports = { + kUrl: Symbol('url'), + kHeaders: Symbol('headers'), + kSignal: Symbol('signal'), + kState: Symbol('state'), + kDispatcher: Symbol('dispatcher') +} + + +/***/ }), + +/***/ 1310: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { Transform } = __nccwpck_require__(84492) +const zlib = __nccwpck_require__(65628) +const { redirectStatusSet, referrerPolicySet: referrerPolicyTokens, badPortsSet } = __nccwpck_require__(68160) +const { getGlobalOrigin } = __nccwpck_require__(52850) +const { collectASequenceOfCodePoints, collectAnHTTPQuotedString, removeChars, parseMIMEType } = __nccwpck_require__(17704) +const { performance } = __nccwpck_require__(38846) +const { isBlobLike, ReadableStreamFrom, isValidHTTPToken, normalizedMethodRecordsBase } = __nccwpck_require__(83983) +const assert = __nccwpck_require__(98061) +const { isUint8Array } = __nccwpck_require__(93746) +const { webidl } = __nccwpck_require__(44890) + +let supportedHashes = [] + +// https://nodejs.org/api/crypto.html#determining-if-crypto-support-is-unavailable +/** @type {import('crypto')} */ +let crypto +try { + crypto = __nccwpck_require__(6005) + const possibleRelevantHashes = ['sha256', 'sha384', 'sha512'] + supportedHashes = crypto.getHashes().filter((hash) => possibleRelevantHashes.includes(hash)) +/* c8 ignore next 3 */ +} catch { + +} + +function responseURL (response) { + // https://fetch.spec.whatwg.org/#responses + // A response has an associated URL. It is a pointer to the last URL + // in response’s URL list and null if response’s URL list is empty. + const urlList = response.urlList + const length = urlList.length + return length === 0 ? null : urlList[length - 1].toString() +} + +// https://fetch.spec.whatwg.org/#concept-response-location-url +function responseLocationURL (response, requestFragment) { + // 1. If response’s status is not a redirect status, then return null. + if (!redirectStatusSet.has(response.status)) { + return null + } + + // 2. Let location be the result of extracting header list values given + // `Location` and response’s header list. + let location = response.headersList.get('location', true) + + // 3. If location is a header value, then set location to the result of + // parsing location with response’s URL. + if (location !== null && isValidHeaderValue(location)) { + if (!isValidEncodedURL(location)) { + // Some websites respond location header in UTF-8 form without encoding them as ASCII + // and major browsers redirect them to correctly UTF-8 encoded addresses. + // Here, we handle that behavior in the same way. + location = normalizeBinaryStringToUtf8(location) } - // if abortCopyFromURL throws, it will bubble up to user's poller.cancelOperation call - await state.blobClient.abortCopyFromURL(copyId, { - abortSignal: options.abortSignal, - }); - state.isCancelled = true; - return makeBlobBeginCopyFromURLPollOperation(state); -}; + location = new URL(location, responseURL(response)) + } + + // 4. If location is a URL whose fragment is null, then set location’s + // fragment to requestFragment. + if (location && !location.hash) { + location.hash = requestFragment + } + + // 5. Return location. + return location +} + /** - * Note: Intentionally using function expression over arrow function expression - * so that the function can be invoked with a different context. - * This affects what `this` refers to. - * @hidden + * @see https://www.rfc-editor.org/rfc/rfc1738#section-2.2 + * @param {string} url + * @returns {boolean} */ -const update = async function update(options = {}) { - const state = this.state; - const { blobClient, copySource, startCopyFromURLOptions } = state; - if (!state.isStarted) { - state.isStarted = true; - const result = await blobClient.startCopyFromURL(copySource, startCopyFromURLOptions); - // copyId is needed to abort - state.copyId = result.copyId; - if (result.copyStatus === "success") { - state.result = result; - state.isCompleted = true; - } - } - else if (!state.isCompleted) { - try { - const result = await state.blobClient.getProperties({ abortSignal: options.abortSignal }); - const { copyStatus, copyProgress } = result; - const prevCopyProgress = state.copyProgress; - if (copyProgress) { - state.copyProgress = copyProgress; - } - if (copyStatus === "pending" && - copyProgress !== prevCopyProgress && - typeof options.fireProgress === "function") { - // trigger in setTimeout, or swallow error? - options.fireProgress(state); - } - else if (copyStatus === "success") { - state.result = result; - state.isCompleted = true; - } - else if (copyStatus === "failed") { - state.error = new Error(`Blob copy failed with reason: "${result.copyStatusDescription || "unknown"}"`); - state.isCompleted = true; - } - } - catch (err) { - state.error = err; - state.isCompleted = true; - } +function isValidEncodedURL (url) { + for (let i = 0; i < url.length; ++i) { + const code = url.charCodeAt(i) + + if ( + code > 0x7E || // Non-US-ASCII + DEL + code < 0x20 // Control characters NUL - US + ) { + return false } - return makeBlobBeginCopyFromURLPollOperation(state); -}; -/** - * Note: Intentionally using function expression over arrow function expression - * so that the function can be invoked with a different context. - * This affects what `this` refers to. - * @hidden - */ -const toString = function toString() { - return JSON.stringify({ state: this.state }, (key, value) => { - // remove blobClient from serialized state since a client can't be hydrated from this info. - if (key === "blobClient") { - return undefined; - } - return value; - }); -}; -/** - * Creates a poll operation given the provided state. - * @hidden - */ -function makeBlobBeginCopyFromURLPollOperation(state) { - return { - state: Object.assign({}, state), - cancel, - toString, - update, - }; + } + return true } -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. /** - * Generate a range string. For example: - * - * "bytes=255-" or "bytes=0-511" - * - * @param iRange - + * If string contains non-ASCII characters, assumes it's UTF-8 encoded and decodes it. + * Since UTF-8 is a superset of ASCII, this will work for ASCII strings as well. + * @param {string} value + * @returns {string} */ -function rangeToString(iRange) { - if (iRange.offset < 0) { - throw new RangeError(`Range.offset cannot be smaller than 0.`); - } - if (iRange.count && iRange.count <= 0) { - throw new RangeError(`Range.count must be larger than 0. Leave it undefined if you want a range from offset to the end.`); +function normalizeBinaryStringToUtf8 (value) { + return Buffer.from(value, 'binary').toString('utf8') +} + +/** @returns {URL} */ +function requestCurrentURL (request) { + return request.urlList[request.urlList.length - 1] +} + +function requestBadPort (request) { + // 1. Let url be request’s current URL. + const url = requestCurrentURL(request) + + // 2. If url’s scheme is an HTTP(S) scheme and url’s port is a bad port, + // then return blocked. + if (urlIsHttpHttpsScheme(url) && badPortsSet.has(url.port)) { + return 'blocked' + } + + // 3. Return allowed. + return 'allowed' +} + +function isErrorLike (object) { + return object instanceof Error || ( + object?.constructor?.name === 'Error' || + object?.constructor?.name === 'DOMException' + ) +} + +// Check whether |statusText| is a ByteString and +// matches the Reason-Phrase token production. +// RFC 2616: https://tools.ietf.org/html/rfc2616 +// RFC 7230: https://tools.ietf.org/html/rfc7230 +// "reason-phrase = *( HTAB / SP / VCHAR / obs-text )" +// https://github.com/chromium/chromium/blob/94.0.4604.1/third_party/blink/renderer/core/fetch/response.cc#L116 +function isValidReasonPhrase (statusText) { + for (let i = 0; i < statusText.length; ++i) { + const c = statusText.charCodeAt(i) + if ( + !( + ( + c === 0x09 || // HTAB + (c >= 0x20 && c <= 0x7e) || // SP / VCHAR + (c >= 0x80 && c <= 0xff) + ) // obs-text + ) + ) { + return false } - return iRange.count - ? `bytes=${iRange.offset}-${iRange.offset + iRange.count - 1}` - : `bytes=${iRange.offset}-`; + } + return true } -// Copyright (c) Microsoft Corporation. /** - * States for Batch. + * @see https://fetch.spec.whatwg.org/#header-name + * @param {string} potentialValue */ -var BatchStates; -(function (BatchStates) { - BatchStates[BatchStates["Good"] = 0] = "Good"; - BatchStates[BatchStates["Error"] = 1] = "Error"; -})(BatchStates || (BatchStates = {})); +const isValidHeaderName = isValidHTTPToken + /** - * Batch provides basic parallel execution with concurrency limits. - * Will stop execute left operations when one of the executed operation throws an error. - * But Batch cannot cancel ongoing operations, you need to cancel them by yourself. + * @see https://fetch.spec.whatwg.org/#header-value + * @param {string} potentialValue */ -class Batch { - /** - * Creates an instance of Batch. - * @param concurrency - - */ - constructor(concurrency = 5) { - /** - * Number of active operations under execution. - */ - this.actives = 0; - /** - * Number of completed operations under execution. - */ - this.completed = 0; - /** - * Offset of next operation to be executed. - */ - this.offset = 0; - /** - * Operation array to be executed. - */ - this.operations = []; - /** - * States of Batch. When an error happens, state will turn into error. - * Batch will stop execute left operations. - */ - this.state = BatchStates.Good; - if (concurrency < 1) { - throw new RangeError("concurrency must be larger than 0"); - } - this.concurrency = concurrency; - this.emitter = new events.EventEmitter(); - } - /** - * Add a operation into queue. - * - * @param operation - - */ - addOperation(operation) { - this.operations.push(async () => { - try { - this.actives++; - await operation(); - this.actives--; - this.completed++; - this.parallelExecute(); - } - catch (error) { - this.emitter.emit("error", error); - } - }); +function isValidHeaderValue (potentialValue) { + // - Has no leading or trailing HTTP tab or space bytes. + // - Contains no 0x00 (NUL) or HTTP newline bytes. + return ( + potentialValue[0] === '\t' || + potentialValue[0] === ' ' || + potentialValue[potentialValue.length - 1] === '\t' || + potentialValue[potentialValue.length - 1] === ' ' || + potentialValue.includes('\n') || + potentialValue.includes('\r') || + potentialValue.includes('\0') + ) === false +} + +// https://w3c.github.io/webappsec-referrer-policy/#set-requests-referrer-policy-on-redirect +function setRequestReferrerPolicyOnRedirect (request, actualResponse) { + // Given a request request and a response actualResponse, this algorithm + // updates request’s referrer policy according to the Referrer-Policy + // header (if any) in actualResponse. + + // 1. Let policy be the result of executing § 8.1 Parse a referrer policy + // from a Referrer-Policy header on actualResponse. + + // 8.1 Parse a referrer policy from a Referrer-Policy header + // 1. Let policy-tokens be the result of extracting header list values given `Referrer-Policy` and response’s header list. + const { headersList } = actualResponse + // 2. Let policy be the empty string. + // 3. For each token in policy-tokens, if token is a referrer policy and token is not the empty string, then set policy to token. + // 4. Return policy. + const policyHeader = (headersList.get('referrer-policy', true) ?? '').split(',') + + // Note: As the referrer-policy can contain multiple policies + // separated by comma, we need to loop through all of them + // and pick the first valid one. + // Ref: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy#specify_a_fallback_policy + let policy = '' + if (policyHeader.length > 0) { + // The right-most policy takes precedence. + // The left-most policy is the fallback. + for (let i = policyHeader.length; i !== 0; i--) { + const token = policyHeader[i - 1].trim() + if (referrerPolicyTokens.has(token)) { + policy = token + break + } } - /** - * Start execute operations in the queue. - * - */ - async do() { - if (this.operations.length === 0) { - return Promise.resolve(); + } + + // 2. If policy is not the empty string, then set request’s referrer policy to policy. + if (policy !== '') { + request.referrerPolicy = policy + } +} + +// https://fetch.spec.whatwg.org/#cross-origin-resource-policy-check +function crossOriginResourcePolicyCheck () { + // TODO + return 'allowed' +} + +// https://fetch.spec.whatwg.org/#concept-cors-check +function corsCheck () { + // TODO + return 'success' +} + +// https://fetch.spec.whatwg.org/#concept-tao-check +function TAOCheck () { + // TODO + return 'success' +} + +function appendFetchMetadata (httpRequest) { + // https://w3c.github.io/webappsec-fetch-metadata/#sec-fetch-dest-header + // TODO + + // https://w3c.github.io/webappsec-fetch-metadata/#sec-fetch-mode-header + + // 1. Assert: r’s url is a potentially trustworthy URL. + // TODO + + // 2. Let header be a Structured Header whose value is a token. + let header = null + + // 3. Set header’s value to r’s mode. + header = httpRequest.mode + + // 4. Set a structured field value `Sec-Fetch-Mode`/header in r’s header list. + httpRequest.headersList.set('sec-fetch-mode', header, true) + + // https://w3c.github.io/webappsec-fetch-metadata/#sec-fetch-site-header + // TODO + + // https://w3c.github.io/webappsec-fetch-metadata/#sec-fetch-user-header + // TODO +} + +// https://fetch.spec.whatwg.org/#append-a-request-origin-header +function appendRequestOriginHeader (request) { + // 1. Let serializedOrigin be the result of byte-serializing a request origin + // with request. + // TODO: implement "byte-serializing a request origin" + let serializedOrigin = request.origin + + // - "'client' is changed to an origin during fetching." + // This doesn't happen in undici (in most cases) because undici, by default, + // has no concept of origin. + // - request.origin can also be set to request.client.origin (client being + // an environment settings object), which is undefined without using + // setGlobalOrigin. + if (serializedOrigin === 'client' || serializedOrigin === undefined) { + return + } + + // 2. If request’s response tainting is "cors" or request’s mode is "websocket", + // then append (`Origin`, serializedOrigin) to request’s header list. + // 3. Otherwise, if request’s method is neither `GET` nor `HEAD`, then: + if (request.responseTainting === 'cors' || request.mode === 'websocket') { + request.headersList.append('origin', serializedOrigin, true) + } else if (request.method !== 'GET' && request.method !== 'HEAD') { + // 1. Switch on request’s referrer policy: + switch (request.referrerPolicy) { + case 'no-referrer': + // Set serializedOrigin to `null`. + serializedOrigin = null + break + case 'no-referrer-when-downgrade': + case 'strict-origin': + case 'strict-origin-when-cross-origin': + // If request’s origin is a tuple origin, its scheme is "https", and + // request’s current URL’s scheme is not "https", then set + // serializedOrigin to `null`. + if (request.origin && urlHasHttpsScheme(request.origin) && !urlHasHttpsScheme(requestCurrentURL(request))) { + serializedOrigin = null } - this.parallelExecute(); - return new Promise((resolve, reject) => { - this.emitter.on("finish", resolve); - this.emitter.on("error", (error) => { - this.state = BatchStates.Error; - reject(error); - }); - }); - } - /** - * Get next operation to be executed. Return null when reaching ends. - * - */ - nextOperation() { - if (this.offset < this.operations.length) { - return this.operations[this.offset++]; + break + case 'same-origin': + // If request’s origin is not same origin with request’s current URL’s + // origin, then set serializedOrigin to `null`. + if (!sameOrigin(request, requestCurrentURL(request))) { + serializedOrigin = null } - return null; + break + default: + // Do nothing. } - /** - * Start execute operations. One one the most important difference between - * this method with do() is that do() wraps as an sync method. - * - */ - parallelExecute() { - if (this.state === BatchStates.Error) { - return; - } - if (this.completed >= this.operations.length) { - this.emitter.emit("finish"); - return; - } - while (this.actives < this.concurrency) { - const operation = this.nextOperation(); - if (operation) { - operation(); - } - else { - return; - } - } + + // 2. Append (`Origin`, serializedOrigin) to request’s header list. + request.headersList.append('origin', serializedOrigin, true) + } +} + +// https://w3c.github.io/hr-time/#dfn-coarsen-time +function coarsenTime (timestamp, crossOriginIsolatedCapability) { + // TODO + return timestamp +} + +// https://fetch.spec.whatwg.org/#clamp-and-coarsen-connection-timing-info +function clampAndCoarsenConnectionTimingInfo (connectionTimingInfo, defaultStartTime, crossOriginIsolatedCapability) { + if (!connectionTimingInfo?.startTime || connectionTimingInfo.startTime < defaultStartTime) { + return { + domainLookupStartTime: defaultStartTime, + domainLookupEndTime: defaultStartTime, + connectionStartTime: defaultStartTime, + connectionEndTime: defaultStartTime, + secureConnectionStartTime: defaultStartTime, + ALPNNegotiatedProtocol: connectionTimingInfo?.ALPNNegotiatedProtocol } + } + + return { + domainLookupStartTime: coarsenTime(connectionTimingInfo.domainLookupStartTime, crossOriginIsolatedCapability), + domainLookupEndTime: coarsenTime(connectionTimingInfo.domainLookupEndTime, crossOriginIsolatedCapability), + connectionStartTime: coarsenTime(connectionTimingInfo.connectionStartTime, crossOriginIsolatedCapability), + connectionEndTime: coarsenTime(connectionTimingInfo.connectionEndTime, crossOriginIsolatedCapability), + secureConnectionStartTime: coarsenTime(connectionTimingInfo.secureConnectionStartTime, crossOriginIsolatedCapability), + ALPNNegotiatedProtocol: connectionTimingInfo.ALPNNegotiatedProtocol + } +} + +// https://w3c.github.io/hr-time/#dfn-coarsened-shared-current-time +function coarsenedSharedCurrentTime (crossOriginIsolatedCapability) { + return coarsenTime(performance.now(), crossOriginIsolatedCapability) +} + +// https://fetch.spec.whatwg.org/#create-an-opaque-timing-info +function createOpaqueTimingInfo (timingInfo) { + return { + startTime: timingInfo.startTime ?? 0, + redirectStartTime: 0, + redirectEndTime: 0, + postRedirectStartTime: timingInfo.startTime ?? 0, + finalServiceWorkerStartTime: 0, + finalNetworkResponseStartTime: 0, + finalNetworkRequestStartTime: 0, + endTime: 0, + encodedBodySize: 0, + decodedBodySize: 0, + finalConnectionTimingInfo: null + } +} + +// https://html.spec.whatwg.org/multipage/origin.html#policy-container +function makePolicyContainer () { + // Note: the fetch spec doesn't make use of embedder policy or CSP list + return { + referrerPolicy: 'strict-origin-when-cross-origin' + } +} + +// https://html.spec.whatwg.org/multipage/origin.html#clone-a-policy-container +function clonePolicyContainer (policyContainer) { + return { + referrerPolicy: policyContainer.referrerPolicy + } +} + +// https://w3c.github.io/webappsec-referrer-policy/#determine-requests-referrer +function determineRequestsReferrer (request) { + // 1. Let policy be request's referrer policy. + const policy = request.referrerPolicy + + // Note: policy cannot (shouldn't) be null or an empty string. + assert(policy) + + // 2. Let environment be request’s client. + + let referrerSource = null + + // 3. Switch on request’s referrer: + if (request.referrer === 'client') { + // Note: node isn't a browser and doesn't implement document/iframes, + // so we bypass this step and replace it with our own. + + const globalOrigin = getGlobalOrigin() + + if (!globalOrigin || globalOrigin.origin === 'null') { + return 'no-referrer' + } + + // note: we need to clone it as it's mutated + referrerSource = new URL(globalOrigin) + } else if (request.referrer instanceof URL) { + // Let referrerSource be request’s referrer. + referrerSource = request.referrer + } + + // 4. Let request’s referrerURL be the result of stripping referrerSource for + // use as a referrer. + let referrerURL = stripURLForReferrer(referrerSource) + + // 5. Let referrerOrigin be the result of stripping referrerSource for use as + // a referrer, with the origin-only flag set to true. + const referrerOrigin = stripURLForReferrer(referrerSource, true) + + // 6. If the result of serializing referrerURL is a string whose length is + // greater than 4096, set referrerURL to referrerOrigin. + if (referrerURL.toString().length > 4096) { + referrerURL = referrerOrigin + } + + const areSameOrigin = sameOrigin(request, referrerURL) + const isNonPotentiallyTrustWorthy = isURLPotentiallyTrustworthy(referrerURL) && + !isURLPotentiallyTrustworthy(request.url) + + // 8. Execute the switch statements corresponding to the value of policy: + switch (policy) { + case 'origin': return referrerOrigin != null ? referrerOrigin : stripURLForReferrer(referrerSource, true) + case 'unsafe-url': return referrerURL + case 'same-origin': + return areSameOrigin ? referrerOrigin : 'no-referrer' + case 'origin-when-cross-origin': + return areSameOrigin ? referrerURL : referrerOrigin + case 'strict-origin-when-cross-origin': { + const currentURL = requestCurrentURL(request) + + // 1. If the origin of referrerURL and the origin of request’s current + // URL are the same, then return referrerURL. + if (sameOrigin(referrerURL, currentURL)) { + return referrerURL + } + + // 2. If referrerURL is a potentially trustworthy URL and request’s + // current URL is not a potentially trustworthy URL, then return no + // referrer. + if (isURLPotentiallyTrustworthy(referrerURL) && !isURLPotentiallyTrustworthy(currentURL)) { + return 'no-referrer' + } + + // 3. Return referrerOrigin. + return referrerOrigin + } + case 'strict-origin': // eslint-disable-line + /** + * 1. If referrerURL is a potentially trustworthy URL and + * request’s current URL is not a potentially trustworthy URL, + * then return no referrer. + * 2. Return referrerOrigin + */ + case 'no-referrer-when-downgrade': // eslint-disable-line + /** + * 1. If referrerURL is a potentially trustworthy URL and + * request’s current URL is not a potentially trustworthy URL, + * then return no referrer. + * 2. Return referrerOrigin + */ + + default: // eslint-disable-line + return isNonPotentiallyTrustWorthy ? 'no-referrer' : referrerOrigin + } } -// Copyright (c) Microsoft Corporation. /** - * This class generates a readable stream from the data in an array of buffers. + * @see https://w3c.github.io/webappsec-referrer-policy/#strip-url + * @param {URL} url + * @param {boolean|undefined} originOnly */ -class BuffersStream extends stream.Readable { - /** - * Creates an instance of BuffersStream that will emit the data - * contained in the array of buffers. - * - * @param buffers - Array of buffers containing the data - * @param byteLength - The total length of data contained in the buffers - */ - constructor(buffers, byteLength, options) { - super(options); - this.buffers = buffers; - this.byteLength = byteLength; - this.byteOffsetInCurrentBuffer = 0; - this.bufferIndex = 0; - this.pushedBytesLength = 0; - // check byteLength is no larger than buffers[] total length - let buffersLength = 0; - for (const buf of this.buffers) { - buffersLength += buf.byteLength; - } - if (buffersLength < this.byteLength) { - throw new Error("Data size shouldn't be larger than the total length of buffers."); - } +function stripURLForReferrer (url, originOnly) { + // 1. Assert: url is a URL. + assert(url instanceof URL) + + url = new URL(url) + + // 2. If url’s scheme is a local scheme, then return no referrer. + if (url.protocol === 'file:' || url.protocol === 'about:' || url.protocol === 'blank:') { + return 'no-referrer' + } + + // 3. Set url’s username to the empty string. + url.username = '' + + // 4. Set url’s password to the empty string. + url.password = '' + + // 5. Set url’s fragment to null. + url.hash = '' + + // 6. If the origin-only flag is true, then: + if (originOnly) { + // 1. Set url’s path to « the empty string ». + url.pathname = '' + + // 2. Set url’s query to null. + url.search = '' + } + + // 7. Return url. + return url +} + +function isURLPotentiallyTrustworthy (url) { + if (!(url instanceof URL)) { + return false + } + + // If child of about, return true + if (url.href === 'about:blank' || url.href === 'about:srcdoc') { + return true + } + + // If scheme is data, return true + if (url.protocol === 'data:') return true + + // If file, return true + if (url.protocol === 'file:') return true + + return isOriginPotentiallyTrustworthy(url.origin) + + function isOriginPotentiallyTrustworthy (origin) { + // If origin is explicitly null, return false + if (origin == null || origin === 'null') return false + + const originAsURL = new URL(origin) + + // If secure, return true + if (originAsURL.protocol === 'https:' || originAsURL.protocol === 'wss:') { + return true } - /** - * Internal _read() that will be called when the stream wants to pull more data in. - * - * @param size - Optional. The size of data to be read - */ - _read(size) { - if (this.pushedBytesLength >= this.byteLength) { - this.push(null); - } - if (!size) { - size = this.readableHighWaterMark; - } - const outBuffers = []; - let i = 0; - while (i < size && this.pushedBytesLength < this.byteLength) { - // The last buffer may be longer than the data it contains. - const remainingDataInAllBuffers = this.byteLength - this.pushedBytesLength; - const remainingCapacityInThisBuffer = this.buffers[this.bufferIndex].byteLength - this.byteOffsetInCurrentBuffer; - const remaining = Math.min(remainingCapacityInThisBuffer, remainingDataInAllBuffers); - if (remaining > size - i) { - // chunkSize = size - i - const end = this.byteOffsetInCurrentBuffer + size - i; - outBuffers.push(this.buffers[this.bufferIndex].slice(this.byteOffsetInCurrentBuffer, end)); - this.pushedBytesLength += size - i; - this.byteOffsetInCurrentBuffer = end; - i = size; - break; - } - else { - // chunkSize = remaining - const end = this.byteOffsetInCurrentBuffer + remaining; - outBuffers.push(this.buffers[this.bufferIndex].slice(this.byteOffsetInCurrentBuffer, end)); - if (remaining === remainingCapacityInThisBuffer) { - // this.buffers[this.bufferIndex] used up, shift to next one - this.byteOffsetInCurrentBuffer = 0; - this.bufferIndex++; - } - else { - this.byteOffsetInCurrentBuffer = end; - } - this.pushedBytesLength += remaining; - i += remaining; - } - } - if (outBuffers.length > 1) { - this.push(Buffer.concat(outBuffers)); - } - else if (outBuffers.length === 1) { - this.push(outBuffers[0]); - } + + // If localhost or variants, return true + if (/^127(?:\.[0-9]+){0,2}\.[0-9]+$|^\[(?:0*:)*?:?0*1\]$/.test(originAsURL.hostname) || + (originAsURL.hostname === 'localhost' || originAsURL.hostname.includes('localhost.')) || + (originAsURL.hostname.endsWith('.localhost'))) { + return true } + + // If any other, return false + return false + } } -// Copyright (c) Microsoft Corporation. /** - * maxBufferLength is max size of each buffer in the pooled buffers. + * @see https://w3c.github.io/webappsec-subresource-integrity/#does-response-match-metadatalist + * @param {Uint8Array} bytes + * @param {string} metadataList */ -// Can't use import as Typescript doesn't recognize "buffer". -const maxBufferLength = (__nccwpck_require__(4300).constants.MAX_LENGTH); +function bytesMatch (bytes, metadataList) { + // If node is not built with OpenSSL support, we cannot check + // a request's integrity, so allow it by default (the spec will + // allow requests if an invalid hash is given, as precedence). + /* istanbul ignore if: only if node is built with --without-ssl */ + if (crypto === undefined) { + return true + } + + // 1. Let parsedMetadata be the result of parsing metadataList. + const parsedMetadata = parseMetadata(metadataList) + + // 2. If parsedMetadata is no metadata, return true. + if (parsedMetadata === 'no metadata') { + return true + } + + // 3. If response is not eligible for integrity validation, return false. + // TODO + + // 4. If parsedMetadata is the empty set, return true. + if (parsedMetadata.length === 0) { + return true + } + + // 5. Let metadata be the result of getting the strongest + // metadata from parsedMetadata. + const strongest = getStrongestMetadata(parsedMetadata) + const metadata = filterMetadataListByAlgorithm(parsedMetadata, strongest) + + // 6. For each item in metadata: + for (const item of metadata) { + // 1. Let algorithm be the alg component of item. + const algorithm = item.algo + + // 2. Let expectedValue be the val component of item. + const expectedValue = item.hash + + // See https://github.com/web-platform-tests/wpt/commit/e4c5cc7a5e48093220528dfdd1c4012dc3837a0e + // "be liberal with padding". This is annoying, and it's not even in the spec. + + // 3. Let actualValue be the result of applying algorithm to bytes. + let actualValue = crypto.createHash(algorithm).update(bytes).digest('base64') + + if (actualValue[actualValue.length - 1] === '=') { + if (actualValue[actualValue.length - 2] === '=') { + actualValue = actualValue.slice(0, -2) + } else { + actualValue = actualValue.slice(0, -1) + } + } + + // 4. If actualValue is a case-sensitive match for expectedValue, + // return true. + if (compareBase64Mixed(actualValue, expectedValue)) { + return true + } + } + + // 7. Return false. + return false +} + +// https://w3c.github.io/webappsec-subresource-integrity/#grammardef-hash-with-options +// https://www.w3.org/TR/CSP2/#source-list-syntax +// https://www.rfc-editor.org/rfc/rfc5234#appendix-B.1 +const parseHashWithOptions = /(?sha256|sha384|sha512)-((?[A-Za-z0-9+/]+|[A-Za-z0-9_-]+)={0,2}(?:\s|$)( +[!-~]*)?)?/i + /** - * This class provides a buffer container which conceptually has no hard size limit. - * It accepts a capacity, an array of input buffers and the total length of input data. - * It will allocate an internal "buffer" of the capacity and fill the data in the input buffers - * into the internal "buffer" serially with respect to the total length. - * Then by calling PooledBuffer.getReadableStream(), you can get a readable stream - * assembled from all the data in the internal "buffer". + * @see https://w3c.github.io/webappsec-subresource-integrity/#parse-metadata + * @param {string} metadata */ -class PooledBuffer { - constructor(capacity, buffers, totalLength) { - /** - * Internal buffers used to keep the data. - * Each buffer has a length of the maxBufferLength except last one. - */ - this.buffers = []; - this.capacity = capacity; - this._size = 0; - // allocate - const bufferNum = Math.ceil(capacity / maxBufferLength); - for (let i = 0; i < bufferNum; i++) { - let len = i === bufferNum - 1 ? capacity % maxBufferLength : maxBufferLength; - if (len === 0) { - len = maxBufferLength; - } - this.buffers.push(Buffer.allocUnsafe(len)); - } - if (buffers) { - this.fill(buffers, totalLength); - } +function parseMetadata (metadata) { + // 1. Let result be the empty set. + /** @type {{ algo: string, hash: string }[]} */ + const result = [] + + // 2. Let empty be equal to true. + let empty = true + + // 3. For each token returned by splitting metadata on spaces: + for (const token of metadata.split(' ')) { + // 1. Set empty to false. + empty = false + + // 2. Parse token as a hash-with-options. + const parsedToken = parseHashWithOptions.exec(token) + + // 3. If token does not parse, continue to the next token. + if ( + parsedToken === null || + parsedToken.groups === undefined || + parsedToken.groups.algo === undefined + ) { + // Note: Chromium blocks the request at this point, but Firefox + // gives a warning that an invalid integrity was given. The + // correct behavior is to ignore these, and subsequently not + // check the integrity of the resource. + continue } - /** - * The size of the data contained in the pooled buffers. - */ - get size() { - return this._size; + + // 4. Let algorithm be the hash-algo component of token. + const algorithm = parsedToken.groups.algo.toLowerCase() + + // 5. If algorithm is a hash function recognized by the user + // agent, add the parsed token to result. + if (supportedHashes.includes(algorithm)) { + result.push(parsedToken.groups) } - /** - * Fill the internal buffers with data in the input buffers serially - * with respect to the total length and the total capacity of the internal buffers. - * Data copied will be shift out of the input buffers. - * - * @param buffers - Input buffers containing the data to be filled in the pooled buffer - * @param totalLength - Total length of the data to be filled in. - * - */ - fill(buffers, totalLength) { - this._size = Math.min(this.capacity, totalLength); - let i = 0, j = 0, targetOffset = 0, sourceOffset = 0, totalCopiedNum = 0; - while (totalCopiedNum < this._size) { - const source = buffers[i]; - const target = this.buffers[j]; - const copiedNum = source.copy(target, targetOffset, sourceOffset); - totalCopiedNum += copiedNum; - sourceOffset += copiedNum; - targetOffset += copiedNum; - if (sourceOffset === source.length) { - i++; - sourceOffset = 0; - } - if (targetOffset === target.length) { - j++; - targetOffset = 0; - } - } - // clear copied from source buffers - buffers.splice(0, i); - if (buffers.length > 0) { - buffers[0] = buffers[0].slice(sourceOffset); - } + } + + // 4. Return no metadata if empty is true, otherwise return result. + if (empty === true) { + return 'no metadata' + } + + return result +} + +/** + * @param {{ algo: 'sha256' | 'sha384' | 'sha512' }[]} metadataList + */ +function getStrongestMetadata (metadataList) { + // Let algorithm be the algo component of the first item in metadataList. + // Can be sha256 + let algorithm = metadataList[0].algo + // If the algorithm is sha512, then it is the strongest + // and we can return immediately + if (algorithm[3] === '5') { + return algorithm + } + + for (let i = 1; i < metadataList.length; ++i) { + const metadata = metadataList[i] + // If the algorithm is sha512, then it is the strongest + // and we can break the loop immediately + if (metadata.algo[3] === '5') { + algorithm = 'sha512' + break + // If the algorithm is sha384, then a potential sha256 or sha384 is ignored + } else if (algorithm[3] === '3') { + continue + // algorithm is sha256, check if algorithm is sha384 and if so, set it as + // the strongest + } else if (metadata.algo[3] === '3') { + algorithm = 'sha384' } - /** - * Get the readable stream assembled from all the data in the internal buffers. - * - */ - getReadableStream() { - return new BuffersStream(this.buffers, this.size); + } + return algorithm +} + +function filterMetadataListByAlgorithm (metadataList, algorithm) { + if (metadataList.length === 1) { + return metadataList + } + + let pos = 0 + for (let i = 0; i < metadataList.length; ++i) { + if (metadataList[i].algo === algorithm) { + metadataList[pos++] = metadataList[i] } + } + + metadataList.length = pos + + return metadataList } -// Copyright (c) Microsoft Corporation. /** - * This class accepts a Node.js Readable stream as input, and keeps reading data - * from the stream into the internal buffer structure, until it reaches maxBuffers. - * Every available buffer will try to trigger outgoingHandler. - * - * The internal buffer structure includes an incoming buffer array, and a outgoing - * buffer array. The incoming buffer array includes the "empty" buffers can be filled - * with new incoming data. The outgoing array includes the filled buffers to be - * handled by outgoingHandler. Every above buffer size is defined by parameter bufferSize. + * Compares two base64 strings, allowing for base64url + * in the second string. * - * NUM_OF_ALL_BUFFERS = BUFFERS_IN_INCOMING + BUFFERS_IN_OUTGOING + BUFFERS_UNDER_HANDLING - * - * NUM_OF_ALL_BUFFERS lesser than or equal to maxBuffers - * - * PERFORMANCE IMPROVEMENT TIPS: - * 1. Input stream highWaterMark is better to set a same value with bufferSize - * parameter, which will avoid Buffer.concat() operations. - * 2. concurrency should set a smaller value than maxBuffers, which is helpful to - * reduce the possibility when a outgoing handler waits for the stream data. - * in this situation, outgoing handlers are blocked. - * Outgoing queue shouldn't be empty. +* @param {string} actualValue always base64 + * @param {string} expectedValue base64 or base64url + * @returns {boolean} */ -class BufferScheduler { - /** - * Creates an instance of BufferScheduler. - * - * @param readable - A Node.js Readable stream - * @param bufferSize - Buffer size of every maintained buffer - * @param maxBuffers - How many buffers can be allocated - * @param outgoingHandler - An async function scheduled to be - * triggered when a buffer fully filled - * with stream data - * @param concurrency - Concurrency of executing outgoingHandlers (>0) - * @param encoding - [Optional] Encoding of Readable stream when it's a string stream - */ - constructor(readable, bufferSize, maxBuffers, outgoingHandler, concurrency, encoding) { - /** - * An internal event emitter. - */ - this.emitter = new events.EventEmitter(); - /** - * An internal offset marker to track data offset in bytes of next outgoingHandler. - */ - this.offset = 0; - /** - * An internal marker to track whether stream is end. - */ - this.isStreamEnd = false; - /** - * An internal marker to track whether stream or outgoingHandler returns error. - */ - this.isError = false; - /** - * How many handlers are executing. - */ - this.executingOutgoingHandlers = 0; - /** - * How many buffers have been allocated. - */ - this.numBuffers = 0; - /** - * Because this class doesn't know how much data every time stream pops, which - * is defined by highWaterMarker of the stream. So BufferScheduler will cache - * data received from the stream, when data in unresolvedDataArray exceeds the - * blockSize defined, it will try to concat a blockSize of buffer, fill into available - * buffers from incoming and push to outgoing array. - */ - this.unresolvedDataArray = []; - /** - * How much data consisted in unresolvedDataArray. - */ - this.unresolvedLength = 0; - /** - * The array includes all the available buffers can be used to fill data from stream. - */ - this.incoming = []; - /** - * The array (queue) includes all the buffers filled from stream data. - */ - this.outgoing = []; - if (bufferSize <= 0) { - throw new RangeError(`bufferSize must be larger than 0, current is ${bufferSize}`); - } - if (maxBuffers <= 0) { - throw new RangeError(`maxBuffers must be larger than 0, current is ${maxBuffers}`); - } - if (concurrency <= 0) { - throw new RangeError(`concurrency must be larger than 0, current is ${concurrency}`); - } - this.bufferSize = bufferSize; - this.maxBuffers = maxBuffers; - this.readable = readable; - this.outgoingHandler = outgoingHandler; - this.concurrency = concurrency; - this.encoding = encoding; - } - /** - * Start the scheduler, will return error when stream of any of the outgoingHandlers - * returns error. - * - */ - async do() { - return new Promise((resolve, reject) => { - this.readable.on("data", (data) => { - data = typeof data === "string" ? Buffer.from(data, this.encoding) : data; - this.appendUnresolvedData(data); - if (!this.resolveData()) { - this.readable.pause(); - } - }); - this.readable.on("error", (err) => { - this.emitter.emit("error", err); - }); - this.readable.on("end", () => { - this.isStreamEnd = true; - this.emitter.emit("checkEnd"); - }); - this.emitter.on("error", (err) => { - this.isError = true; - this.readable.pause(); - reject(err); - }); - this.emitter.on("checkEnd", () => { - if (this.outgoing.length > 0) { - this.triggerOutgoingHandlers(); - return; - } - if (this.isStreamEnd && this.executingOutgoingHandlers === 0) { - if (this.unresolvedLength > 0 && this.unresolvedLength < this.bufferSize) { - const buffer = this.shiftBufferFromUnresolvedDataArray(); - this.outgoingHandler(() => buffer.getReadableStream(), buffer.size, this.offset) - .then(resolve) - .catch(reject); - } - else if (this.unresolvedLength >= this.bufferSize) { - return; - } - else { - resolve(); - } - } - }); - }); - } - /** - * Insert a new data into unresolved array. - * - * @param data - - */ - appendUnresolvedData(data) { - this.unresolvedDataArray.push(data); - this.unresolvedLength += data.length; - } - /** - * Try to shift a buffer with size in blockSize. The buffer returned may be less - * than blockSize when data in unresolvedDataArray is less than bufferSize. - * - */ - shiftBufferFromUnresolvedDataArray(buffer) { - if (!buffer) { - buffer = new PooledBuffer(this.bufferSize, this.unresolvedDataArray, this.unresolvedLength); - } - else { - buffer.fill(this.unresolvedDataArray, this.unresolvedLength); - } - this.unresolvedLength -= buffer.size; - return buffer; +function compareBase64Mixed (actualValue, expectedValue) { + if (actualValue.length !== expectedValue.length) { + return false + } + for (let i = 0; i < actualValue.length; ++i) { + if (actualValue[i] !== expectedValue[i]) { + if ( + (actualValue[i] === '+' && expectedValue[i] === '-') || + (actualValue[i] === '/' && expectedValue[i] === '_') + ) { + continue + } + return false } - /** - * Resolve data in unresolvedDataArray. For every buffer with size in blockSize - * shifted, it will try to get (or allocate a buffer) from incoming, and fill it, - * then push it into outgoing to be handled by outgoing handler. - * - * Return false when available buffers in incoming are not enough, else true. - * - * @returns Return false when buffers in incoming are not enough, else true. - */ - resolveData() { - while (this.unresolvedLength >= this.bufferSize) { - let buffer; - if (this.incoming.length > 0) { - buffer = this.incoming.shift(); - this.shiftBufferFromUnresolvedDataArray(buffer); - } - else { - if (this.numBuffers < this.maxBuffers) { - buffer = this.shiftBufferFromUnresolvedDataArray(); - this.numBuffers++; - } - else { - // No available buffer, wait for buffer returned - return false; - } - } - this.outgoing.push(buffer); - this.triggerOutgoingHandlers(); + } + + return true +} + +// https://w3c.github.io/webappsec-upgrade-insecure-requests/#upgrade-request +function tryUpgradeRequestToAPotentiallyTrustworthyURL (request) { + // TODO +} + +/** + * @link {https://html.spec.whatwg.org/multipage/origin.html#same-origin} + * @param {URL} A + * @param {URL} B + */ +function sameOrigin (A, B) { + // 1. If A and B are the same opaque origin, then return true. + if (A.origin === B.origin && A.origin === 'null') { + return true + } + + // 2. If A and B are both tuple origins and their schemes, + // hosts, and port are identical, then return true. + if (A.protocol === B.protocol && A.hostname === B.hostname && A.port === B.port) { + return true + } + + // 3. Return false. + return false +} + +function createDeferredPromise () { + let res + let rej + const promise = new Promise((resolve, reject) => { + res = resolve + rej = reject + }) + + return { promise, resolve: res, reject: rej } +} + +function isAborted (fetchParams) { + return fetchParams.controller.state === 'aborted' +} + +function isCancelled (fetchParams) { + return fetchParams.controller.state === 'aborted' || + fetchParams.controller.state === 'terminated' +} + +/** + * @see https://fetch.spec.whatwg.org/#concept-method-normalize + * @param {string} method + */ +function normalizeMethod (method) { + return normalizedMethodRecordsBase[method.toLowerCase()] ?? method +} + +// https://infra.spec.whatwg.org/#serialize-a-javascript-value-to-a-json-string +function serializeJavascriptValueToJSONString (value) { + // 1. Let result be ? Call(%JSON.stringify%, undefined, « value »). + const result = JSON.stringify(value) + + // 2. If result is undefined, then throw a TypeError. + if (result === undefined) { + throw new TypeError('Value is not JSON serializable') + } + + // 3. Assert: result is a string. + assert(typeof result === 'string') + + // 4. Return result. + return result +} + +// https://tc39.es/ecma262/#sec-%25iteratorprototype%25-object +const esIteratorPrototype = Object.getPrototypeOf(Object.getPrototypeOf([][Symbol.iterator]())) + +/** + * @see https://webidl.spec.whatwg.org/#dfn-iterator-prototype-object + * @param {string} name name of the instance + * @param {symbol} kInternalIterator + * @param {string | number} [keyIndex] + * @param {string | number} [valueIndex] + */ +function createIterator (name, kInternalIterator, keyIndex = 0, valueIndex = 1) { + class FastIterableIterator { + /** @type {any} */ + #target + /** @type {'key' | 'value' | 'key+value'} */ + #kind + /** @type {number} */ + #index + + /** + * @see https://webidl.spec.whatwg.org/#dfn-default-iterator-object + * @param {unknown} target + * @param {'key' | 'value' | 'key+value'} kind + */ + constructor (target, kind) { + this.#target = target + this.#kind = kind + this.#index = 0 + } + + next () { + // 1. Let interface be the interface for which the iterator prototype object exists. + // 2. Let thisValue be the this value. + // 3. Let object be ? ToObject(thisValue). + // 4. If object is a platform object, then perform a security + // check, passing: + // 5. If object is not a default iterator object for interface, + // then throw a TypeError. + if (typeof this !== 'object' || this === null || !(#target in this)) { + throw new TypeError( + `'next' called on an object that does not implement interface ${name} Iterator.` + ) + } + + // 6. Let index be object’s index. + // 7. Let kind be object’s kind. + // 8. Let values be object’s target's value pairs to iterate over. + const index = this.#index + const values = this.#target[kInternalIterator] + + // 9. Let len be the length of values. + const len = values.length + + // 10. If index is greater than or equal to len, then return + // CreateIterResultObject(undefined, true). + if (index >= len) { + return { + value: undefined, + done: true } - return true; - } - /** - * Try to trigger a outgoing handler for every buffer in outgoing. Stop when - * concurrency reaches. - */ - async triggerOutgoingHandlers() { - let buffer; - do { - if (this.executingOutgoingHandlers >= this.concurrency) { - return; - } - buffer = this.outgoing.shift(); - if (buffer) { - this.triggerOutgoingHandler(buffer); - } - } while (buffer); + } + + // 11. Let pair be the entry in values at index index. + const { [keyIndex]: key, [valueIndex]: value } = values[index] + + // 12. Set object’s index to index + 1. + this.#index = index + 1 + + // 13. Return the iterator result for pair and kind. + + // https://webidl.spec.whatwg.org/#iterator-result + + // 1. Let result be a value determined by the value of kind: + let result + switch (this.#kind) { + case 'key': + // 1. Let idlKey be pair’s key. + // 2. Let key be the result of converting idlKey to an + // ECMAScript value. + // 3. result is key. + result = key + break + case 'value': + // 1. Let idlValue be pair’s value. + // 2. Let value be the result of converting idlValue to + // an ECMAScript value. + // 3. result is value. + result = value + break + case 'key+value': + // 1. Let idlKey be pair’s key. + // 2. Let idlValue be pair’s value. + // 3. Let key be the result of converting idlKey to an + // ECMAScript value. + // 4. Let value be the result of converting idlValue to + // an ECMAScript value. + // 5. Let array be ! ArrayCreate(2). + // 6. Call ! CreateDataProperty(array, "0", key). + // 7. Call ! CreateDataProperty(array, "1", value). + // 8. result is array. + result = [key, value] + break + } + + // 2. Return CreateIterResultObject(result, false). + return { + value: result, + done: false + } } - /** - * Trigger a outgoing handler for a buffer shifted from outgoing. - * - * @param buffer - - */ - async triggerOutgoingHandler(buffer) { - const bufferLength = buffer.size; - this.executingOutgoingHandlers++; - this.offset += bufferLength; - try { - await this.outgoingHandler(() => buffer.getReadableStream(), bufferLength, this.offset - bufferLength); + } + + // https://webidl.spec.whatwg.org/#dfn-iterator-prototype-object + // @ts-ignore + delete FastIterableIterator.prototype.constructor + + Object.setPrototypeOf(FastIterableIterator.prototype, esIteratorPrototype) + + Object.defineProperties(FastIterableIterator.prototype, { + [Symbol.toStringTag]: { + writable: false, + enumerable: false, + configurable: true, + value: `${name} Iterator` + }, + next: { writable: true, enumerable: true, configurable: true } + }) + + /** + * @param {unknown} target + * @param {'key' | 'value' | 'key+value'} kind + * @returns {IterableIterator} + */ + return function (target, kind) { + return new FastIterableIterator(target, kind) + } +} + +/** + * @see https://webidl.spec.whatwg.org/#dfn-iterator-prototype-object + * @param {string} name name of the instance + * @param {any} object class + * @param {symbol} kInternalIterator + * @param {string | number} [keyIndex] + * @param {string | number} [valueIndex] + */ +function iteratorMixin (name, object, kInternalIterator, keyIndex = 0, valueIndex = 1) { + const makeIterator = createIterator(name, kInternalIterator, keyIndex, valueIndex) + + const properties = { + keys: { + writable: true, + enumerable: true, + configurable: true, + value: function keys () { + webidl.brandCheck(this, object) + return makeIterator(this, 'key') + } + }, + values: { + writable: true, + enumerable: true, + configurable: true, + value: function values () { + webidl.brandCheck(this, object) + return makeIterator(this, 'value') + } + }, + entries: { + writable: true, + enumerable: true, + configurable: true, + value: function entries () { + webidl.brandCheck(this, object) + return makeIterator(this, 'key+value') + } + }, + forEach: { + writable: true, + enumerable: true, + configurable: true, + value: function forEach (callbackfn, thisArg = globalThis) { + webidl.brandCheck(this, object) + webidl.argumentLengthCheck(arguments, 1, `${name}.forEach`) + if (typeof callbackfn !== 'function') { + throw new TypeError( + `Failed to execute 'forEach' on '${name}': parameter 1 is not of type 'Function'.` + ) } - catch (err) { - this.emitter.emit("error", err); - return; + for (const { 0: key, 1: value } of makeIterator(this, 'key+value')) { + callbackfn.call(thisArg, value, key, this) } - this.executingOutgoingHandlers--; - this.reuseBuffer(buffer); - this.emitter.emit("checkEnd"); + } } - /** - * Return buffer used by outgoing handler into incoming. - * - * @param buffer - - */ - reuseBuffer(buffer) { - this.incoming.push(buffer); - if (!this.isError && this.resolveData() && !this.isStreamEnd) { - this.readable.resume(); - } + } + + return Object.defineProperties(object.prototype, { + ...properties, + [Symbol.iterator]: { + writable: true, + enumerable: false, + configurable: true, + value: properties.entries.value } + }) } -// Copyright (c) Microsoft Corporation. /** - * Reads a readable stream into buffer. Fill the buffer from offset to end. - * - * @param stream - A Node.js Readable stream - * @param buffer - Buffer to be filled, length must greater than or equal to offset - * @param offset - From which position in the buffer to be filled, inclusive - * @param end - To which position in the buffer to be filled, exclusive - * @param encoding - Encoding of the Readable stream + * @see https://fetch.spec.whatwg.org/#body-fully-read */ -async function streamToBuffer(stream, buffer, offset, end, encoding) { - let pos = 0; // Position in stream - const count = end - offset; // Total amount of data needed in stream - return new Promise((resolve, reject) => { - stream.on("readable", () => { - if (pos >= count) { - resolve(); - return; - } - let chunk = stream.read(); - if (!chunk) { - return; - } - if (typeof chunk === "string") { - chunk = Buffer.from(chunk, encoding); - } - // How much data needed in this chunk - const chunkLength = pos + chunk.length > count ? count - pos : chunk.length; - buffer.fill(chunk.slice(0, chunkLength), offset + pos, offset + pos + chunkLength); - pos += chunkLength; - }); - stream.on("end", () => { - if (pos < count) { - reject(new Error(`Stream drains before getting enough data needed. Data read: ${pos}, data need: ${count}`)); - } - resolve(); - }); - stream.on("error", reject); - }); +async function fullyReadBody (body, processBody, processBodyError) { + // 1. If taskDestination is null, then set taskDestination to + // the result of starting a new parallel queue. + + // 2. Let successSteps given a byte sequence bytes be to queue a + // fetch task to run processBody given bytes, with taskDestination. + const successSteps = processBody + + // 3. Let errorSteps be to queue a fetch task to run processBodyError, + // with taskDestination. + const errorSteps = processBodyError + + // 4. Let reader be the result of getting a reader for body’s stream. + // If that threw an exception, then run errorSteps with that + // exception and return. + let reader + + try { + reader = body.stream.getReader() + } catch (e) { + errorSteps(e) + return + } + + // 5. Read all bytes from reader, given successSteps and errorSteps. + try { + successSteps(await readAllBytes(reader)) + } catch (e) { + errorSteps(e) + } } -/** - * Reads a readable stream into buffer entirely. - * - * @param stream - A Node.js Readable stream - * @param buffer - Buffer to be filled, length must greater than or equal to offset - * @param encoding - Encoding of the Readable stream - * @returns with the count of bytes read. - * @throws `RangeError` If buffer size is not big enough. - */ -async function streamToBuffer2(stream, buffer, encoding) { - let pos = 0; // Position in stream - const bufferSize = buffer.length; - return new Promise((resolve, reject) => { - stream.on("readable", () => { - let chunk = stream.read(); - if (!chunk) { - return; - } - if (typeof chunk === "string") { - chunk = Buffer.from(chunk, encoding); - } - if (pos + chunk.length > bufferSize) { - reject(new Error(`Stream exceeds buffer size. Buffer size: ${bufferSize}`)); - return; - } - buffer.fill(chunk, pos, pos + chunk.length); - pos += chunk.length; - }); - stream.on("end", () => { - resolve(pos); - }); - stream.on("error", reject); - }); + +function isReadableStreamLike (stream) { + return stream instanceof ReadableStream || ( + stream[Symbol.toStringTag] === 'ReadableStream' && + typeof stream.tee === 'function' + ) } + /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * Writes the content of a readstream to a local file. Returns a Promise which is completed after the file handle is closed. - * - * @param rs - The read stream. - * @param file - Destination file path. + * @param {ReadableStreamController} controller */ -async function readStreamToLocalFile(rs, file) { - return new Promise((resolve, reject) => { - const ws = fs__namespace.createWriteStream(file); - rs.on("error", (err) => { - reject(err); - }); - ws.on("error", (err) => { - reject(err); - }); - ws.on("close", resolve); - rs.pipe(ws); - }); +function readableStreamClose (controller) { + try { + controller.close() + controller.byobRequest?.respond(0) + } catch (err) { + // TODO: add comment explaining why this error occurs. + if (!err.message.includes('Controller is already closed') && !err.message.includes('ReadableStream is already closed')) { + throw err + } + } } + +const invalidIsomorphicEncodeValueRegex = /[^\x00-\xFF]/ // eslint-disable-line + /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * Promisified version of fs.stat(). + * @see https://infra.spec.whatwg.org/#isomorphic-encode + * @param {string} input */ -const fsStat = util__namespace.promisify(fs__namespace.stat); -const fsCreateReadStream = fs__namespace.createReadStream; +function isomorphicEncode (input) { + // 1. Assert: input contains no code points greater than U+00FF. + assert(!invalidIsomorphicEncodeValueRegex.test(input)) + + // 2. Return a byte sequence whose length is equal to input’s code + // point length and whose bytes have the same values as the + // values of input’s code points, in the same order + return input +} /** - * A BlobClient represents a URL to an Azure Storage blob; the blob may be a block blob, - * append blob, or page blob. + * @see https://streams.spec.whatwg.org/#readablestreamdefaultreader-read-all-bytes + * @see https://streams.spec.whatwg.org/#read-loop + * @param {ReadableStreamDefaultReader} reader */ -class BlobClient extends StorageClient { - constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, - // Legacy, no fix for eslint error without breaking. Disable it for this interface. - /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ - options) { - options = options || {}; - let pipeline; - let url; - if (isPipelineLike(credentialOrPipelineOrContainerName)) { - // (url: string, pipeline: Pipeline) - url = urlOrConnectionString; - pipeline = credentialOrPipelineOrContainerName; - } - else if ((coreHttp.isNode && credentialOrPipelineOrContainerName instanceof StorageSharedKeyCredential) || - credentialOrPipelineOrContainerName instanceof AnonymousCredential || - coreHttp.isTokenCredential(credentialOrPipelineOrContainerName)) { - // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) - url = urlOrConnectionString; - options = blobNameOrOptions; - pipeline = newPipeline(credentialOrPipelineOrContainerName, options); - } - else if (!credentialOrPipelineOrContainerName && - typeof credentialOrPipelineOrContainerName !== "string") { - // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) - // The second parameter is undefined. Use anonymous credential. - url = urlOrConnectionString; - pipeline = newPipeline(new AnonymousCredential(), options); - } - else if (credentialOrPipelineOrContainerName && - typeof credentialOrPipelineOrContainerName === "string" && - blobNameOrOptions && - typeof blobNameOrOptions === "string") { - // (connectionString: string, containerName: string, blobName: string, options?: StoragePipelineOptions) - const containerName = credentialOrPipelineOrContainerName; - const blobName = blobNameOrOptions; - const extractedCreds = extractConnectionStringParts(urlOrConnectionString); - if (extractedCreds.kind === "AccountConnString") { - if (coreHttp.isNode) { - const sharedKeyCredential = new StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey); - url = appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)); - if (!options.proxyOptions) { - options.proxyOptions = coreHttp.getDefaultProxySettings(extractedCreds.proxyUri); - } - pipeline = newPipeline(sharedKeyCredential, options); - } - else { - throw new Error("Account connection string is only supported in Node.js environment"); - } - } - else if (extractedCreds.kind === "SASConnString") { - url = - appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)) + - "?" + - extractedCreds.accountSas; - pipeline = newPipeline(new AnonymousCredential(), options); - } - else { - throw new Error("Connection string must be either an Account connection string or a SAS connection string"); - } - } - else { - throw new Error("Expecting non-empty strings for containerName and blobName parameters"); - } - super(url, pipeline); - ({ blobName: this._name, containerName: this._containerName } = - this.getBlobAndContainerNamesFromUrl()); - this.blobContext = new Blob$1(this.storageClientContext); - this._snapshot = getURLParameter(this.url, URLConstants.Parameters.SNAPSHOT); - this._versionId = getURLParameter(this.url, URLConstants.Parameters.VERSIONID); +async function readAllBytes (reader) { + const bytes = [] + let byteLength = 0 + + while (true) { + const { done, value: chunk } = await reader.read() + + if (done) { + // 1. Call successSteps with bytes. + return Buffer.concat(bytes, byteLength) } - /** - * The name of the blob. - */ - get name() { - return this._name; + + // 1. If chunk is not a Uint8Array object, call failureSteps + // with a TypeError and abort these steps. + if (!isUint8Array(chunk)) { + throw new TypeError('Received non-Uint8Array chunk') } - /** - * The name of the storage container the blob is associated with. - */ - get containerName() { - return this._containerName; + + // 2. Append the bytes represented by chunk to bytes. + bytes.push(chunk) + byteLength += chunk.length + + // 3. Read-loop given reader, bytes, successSteps, and failureSteps. + } +} + +/** + * @see https://fetch.spec.whatwg.org/#is-local + * @param {URL} url + */ +function urlIsLocal (url) { + assert('protocol' in url) // ensure it's a url object + + const protocol = url.protocol + + return protocol === 'about:' || protocol === 'blob:' || protocol === 'data:' +} + +/** + * @param {string|URL} url + * @returns {boolean} + */ +function urlHasHttpsScheme (url) { + return ( + ( + typeof url === 'string' && + url[5] === ':' && + url[0] === 'h' && + url[1] === 't' && + url[2] === 't' && + url[3] === 'p' && + url[4] === 's' + ) || + url.protocol === 'https:' + ) +} + +/** + * @see https://fetch.spec.whatwg.org/#http-scheme + * @param {URL} url + */ +function urlIsHttpHttpsScheme (url) { + assert('protocol' in url) // ensure it's a url object + + const protocol = url.protocol + + return protocol === 'http:' || protocol === 'https:' +} + +/** + * @see https://fetch.spec.whatwg.org/#simple-range-header-value + * @param {string} value + * @param {boolean} allowWhitespace + */ +function simpleRangeHeaderValue (value, allowWhitespace) { + // 1. Let data be the isomorphic decoding of value. + // Note: isomorphic decoding takes a sequence of bytes (ie. a Uint8Array) and turns it into a string, + // nothing more. We obviously don't need to do that if value is a string already. + const data = value + + // 2. If data does not start with "bytes", then return failure. + if (!data.startsWith('bytes')) { + return 'failure' + } + + // 3. Let position be a position variable for data, initially pointing at the 5th code point of data. + const position = { position: 5 } + + // 4. If allowWhitespace is true, collect a sequence of code points that are HTTP tab or space, + // from data given position. + if (allowWhitespace) { + collectASequenceOfCodePoints( + (char) => char === '\t' || char === ' ', + data, + position + ) + } + + // 5. If the code point at position within data is not U+003D (=), then return failure. + if (data.charCodeAt(position.position) !== 0x3D) { + return 'failure' + } + + // 6. Advance position by 1. + position.position++ + + // 7. If allowWhitespace is true, collect a sequence of code points that are HTTP tab or space, from + // data given position. + if (allowWhitespace) { + collectASequenceOfCodePoints( + (char) => char === '\t' || char === ' ', + data, + position + ) + } + + // 8. Let rangeStart be the result of collecting a sequence of code points that are ASCII digits, + // from data given position. + const rangeStart = collectASequenceOfCodePoints( + (char) => { + const code = char.charCodeAt(0) + + return code >= 0x30 && code <= 0x39 + }, + data, + position + ) + + // 9. Let rangeStartValue be rangeStart, interpreted as decimal number, if rangeStart is not the + // empty string; otherwise null. + const rangeStartValue = rangeStart.length ? Number(rangeStart) : null + + // 10. If allowWhitespace is true, collect a sequence of code points that are HTTP tab or space, + // from data given position. + if (allowWhitespace) { + collectASequenceOfCodePoints( + (char) => char === '\t' || char === ' ', + data, + position + ) + } + + // 11. If the code point at position within data is not U+002D (-), then return failure. + if (data.charCodeAt(position.position) !== 0x2D) { + return 'failure' + } + + // 12. Advance position by 1. + position.position++ + + // 13. If allowWhitespace is true, collect a sequence of code points that are HTTP tab + // or space, from data given position. + // Note from Khafra: its the same step as in #8 again lol + if (allowWhitespace) { + collectASequenceOfCodePoints( + (char) => char === '\t' || char === ' ', + data, + position + ) + } + + // 14. Let rangeEnd be the result of collecting a sequence of code points that are + // ASCII digits, from data given position. + // Note from Khafra: you wouldn't guess it, but this is also the same step as #8 + const rangeEnd = collectASequenceOfCodePoints( + (char) => { + const code = char.charCodeAt(0) + + return code >= 0x30 && code <= 0x39 + }, + data, + position + ) + + // 15. Let rangeEndValue be rangeEnd, interpreted as decimal number, if rangeEnd + // is not the empty string; otherwise null. + // Note from Khafra: THE SAME STEP, AGAIN!!! + // Note: why interpret as a decimal if we only collect ascii digits? + const rangeEndValue = rangeEnd.length ? Number(rangeEnd) : null + + // 16. If position is not past the end of data, then return failure. + if (position.position < data.length) { + return 'failure' + } + + // 17. If rangeEndValue and rangeStartValue are null, then return failure. + if (rangeEndValue === null && rangeStartValue === null) { + return 'failure' + } + + // 18. If rangeStartValue and rangeEndValue are numbers, and rangeStartValue is + // greater than rangeEndValue, then return failure. + // Note: ... when can they not be numbers? + if (rangeStartValue > rangeEndValue) { + return 'failure' + } + + // 19. Return (rangeStartValue, rangeEndValue). + return { rangeStartValue, rangeEndValue } +} + +/** + * @see https://fetch.spec.whatwg.org/#build-a-content-range + * @param {number} rangeStart + * @param {number} rangeEnd + * @param {number} fullLength + */ +function buildContentRange (rangeStart, rangeEnd, fullLength) { + // 1. Let contentRange be `bytes `. + let contentRange = 'bytes ' + + // 2. Append rangeStart, serialized and isomorphic encoded, to contentRange. + contentRange += isomorphicEncode(`${rangeStart}`) + + // 3. Append 0x2D (-) to contentRange. + contentRange += '-' + + // 4. Append rangeEnd, serialized and isomorphic encoded to contentRange. + contentRange += isomorphicEncode(`${rangeEnd}`) + + // 5. Append 0x2F (/) to contentRange. + contentRange += '/' + + // 6. Append fullLength, serialized and isomorphic encoded to contentRange. + contentRange += isomorphicEncode(`${fullLength}`) + + // 7. Return contentRange. + return contentRange +} + +// A Stream, which pipes the response to zlib.createInflate() or +// zlib.createInflateRaw() depending on the first byte of the Buffer. +// If the lower byte of the first byte is 0x08, then the stream is +// interpreted as a zlib stream, otherwise it's interpreted as a +// raw deflate stream. +class InflateStream extends Transform { + #zlibOptions + + /** @param {zlib.ZlibOptions} [zlibOptions] */ + constructor (zlibOptions) { + super() + this.#zlibOptions = zlibOptions + } + + _transform (chunk, encoding, callback) { + if (!this._inflateStream) { + if (chunk.length === 0) { + callback() + return + } + this._inflateStream = (chunk[0] & 0x0F) === 0x08 + ? zlib.createInflate(this.#zlibOptions) + : zlib.createInflateRaw(this.#zlibOptions) + + this._inflateStream.on('data', this.push.bind(this)) + this._inflateStream.on('end', () => this.push(null)) + this._inflateStream.on('error', (err) => this.destroy(err)) } - /** - * Creates a new BlobClient object identical to the source but with the specified snapshot timestamp. - * Provide "" will remove the snapshot and return a Client to the base blob. - * - * @param snapshot - The snapshot timestamp. - * @returns A new BlobClient object identical to the source but with the specified snapshot timestamp - */ - withSnapshot(snapshot) { - return new BlobClient(setURLParameter(this.url, URLConstants.Parameters.SNAPSHOT, snapshot.length === 0 ? undefined : snapshot), this.pipeline); + + this._inflateStream.write(chunk, encoding, callback) + } + + _final (callback) { + if (this._inflateStream) { + this._inflateStream.end() + this._inflateStream = null } - /** - * Creates a new BlobClient object pointing to a version of this blob. - * Provide "" will remove the versionId and return a Client to the base blob. - * - * @param versionId - The versionId. - * @returns A new BlobClient object pointing to the version of this blob. - */ - withVersion(versionId) { - return new BlobClient(setURLParameter(this.url, URLConstants.Parameters.VERSIONID, versionId.length === 0 ? undefined : versionId), this.pipeline); + callback() + } +} + +/** + * @param {zlib.ZlibOptions} [zlibOptions] + * @returns {InflateStream} + */ +function createInflate (zlibOptions) { + return new InflateStream(zlibOptions) +} + +/** + * @see https://fetch.spec.whatwg.org/#concept-header-extract-mime-type + * @param {import('./headers').HeadersList} headers + */ +function extractMimeType (headers) { + // 1. Let charset be null. + let charset = null + + // 2. Let essence be null. + let essence = null + + // 3. Let mimeType be null. + let mimeType = null + + // 4. Let values be the result of getting, decoding, and splitting `Content-Type` from headers. + const values = getDecodeSplit('content-type', headers) + + // 5. If values is null, then return failure. + if (values === null) { + return 'failure' + } + + // 6. For each value of values: + for (const value of values) { + // 6.1. Let temporaryMimeType be the result of parsing value. + const temporaryMimeType = parseMIMEType(value) + + // 6.2. If temporaryMimeType is failure or its essence is "*/*", then continue. + if (temporaryMimeType === 'failure' || temporaryMimeType.essence === '*/*') { + continue } - /** - * Creates a AppendBlobClient object. - * - */ - getAppendBlobClient() { - return new AppendBlobClient(this.url, this.pipeline); + + // 6.3. Set mimeType to temporaryMimeType. + mimeType = temporaryMimeType + + // 6.4. If mimeType’s essence is not essence, then: + if (mimeType.essence !== essence) { + // 6.4.1. Set charset to null. + charset = null + + // 6.4.2. If mimeType’s parameters["charset"] exists, then set charset to + // mimeType’s parameters["charset"]. + if (mimeType.parameters.has('charset')) { + charset = mimeType.parameters.get('charset') + } + + // 6.4.3. Set essence to mimeType’s essence. + essence = mimeType.essence + } else if (!mimeType.parameters.has('charset') && charset !== null) { + // 6.5. Otherwise, if mimeType’s parameters["charset"] does not exist, and + // charset is non-null, set mimeType’s parameters["charset"] to charset. + mimeType.parameters.set('charset', charset) } - /** - * Creates a BlockBlobClient object. - * - */ - getBlockBlobClient() { - return new BlockBlobClient(this.url, this.pipeline); + } + + // 7. If mimeType is null, then return failure. + if (mimeType == null) { + return 'failure' + } + + // 8. Return mimeType. + return mimeType +} + +/** + * @see https://fetch.spec.whatwg.org/#header-value-get-decode-and-split + * @param {string|null} value + */ +function gettingDecodingSplitting (value) { + // 1. Let input be the result of isomorphic decoding value. + const input = value + + // 2. Let position be a position variable for input, initially pointing at the start of input. + const position = { position: 0 } + + // 3. Let values be a list of strings, initially empty. + const values = [] + + // 4. Let temporaryValue be the empty string. + let temporaryValue = '' + + // 5. While position is not past the end of input: + while (position.position < input.length) { + // 5.1. Append the result of collecting a sequence of code points that are not U+0022 (") + // or U+002C (,) from input, given position, to temporaryValue. + temporaryValue += collectASequenceOfCodePoints( + (char) => char !== '"' && char !== ',', + input, + position + ) + + // 5.2. If position is not past the end of input, then: + if (position.position < input.length) { + // 5.2.1. If the code point at position within input is U+0022 ("), then: + if (input.charCodeAt(position.position) === 0x22) { + // 5.2.1.1. Append the result of collecting an HTTP quoted string from input, given position, to temporaryValue. + temporaryValue += collectAnHTTPQuotedString( + input, + position + ) + + // 5.2.1.2. If position is not past the end of input, then continue. + if (position.position < input.length) { + continue + } + } else { + // 5.2.2. Otherwise: + + // 5.2.2.1. Assert: the code point at position within input is U+002C (,). + assert(input.charCodeAt(position.position) === 0x2C) + + // 5.2.2.2. Advance position by 1. + position.position++ + } } - /** - * Creates a PageBlobClient object. - * - */ - getPageBlobClient() { - return new PageBlobClient(this.url, this.pipeline); + + // 5.3. Remove all HTTP tab or space from the start and end of temporaryValue. + temporaryValue = removeChars(temporaryValue, true, true, (char) => char === 0x9 || char === 0x20) + + // 5.4. Append temporaryValue to values. + values.push(temporaryValue) + + // 5.6. Set temporaryValue to the empty string. + temporaryValue = '' + } + + // 6. Return values. + return values +} + +/** + * @see https://fetch.spec.whatwg.org/#concept-header-list-get-decode-split + * @param {string} name lowercase header name + * @param {import('./headers').HeadersList} list + */ +function getDecodeSplit (name, list) { + // 1. Let value be the result of getting name from list. + const value = list.get(name, true) + + // 2. If value is null, then return null. + if (value === null) { + return null + } + + // 3. Return the result of getting, decoding, and splitting value. + return gettingDecodingSplitting(value) +} + +const textDecoder = new TextDecoder() + +/** + * @see https://encoding.spec.whatwg.org/#utf-8-decode + * @param {Buffer} buffer + */ +function utf8DecodeBytes (buffer) { + if (buffer.length === 0) { + return '' + } + + // 1. Let buffer be the result of peeking three bytes from + // ioQueue, converted to a byte sequence. + + // 2. If buffer is 0xEF 0xBB 0xBF, then read three + // bytes from ioQueue. (Do nothing with those bytes.) + if (buffer[0] === 0xEF && buffer[1] === 0xBB && buffer[2] === 0xBF) { + buffer = buffer.subarray(3) + } + + // 3. Process a queue with an instance of UTF-8’s + // decoder, ioQueue, output, and "replacement". + const output = textDecoder.decode(buffer) + + // 4. Return output. + return output +} + +class EnvironmentSettingsObjectBase { + get baseUrl () { + return getGlobalOrigin() + } + + get origin () { + return this.baseUrl?.origin + } + + policyContainer = makePolicyContainer() +} + +class EnvironmentSettingsObject { + settingsObject = new EnvironmentSettingsObjectBase() +} + +const environmentSettingsObject = new EnvironmentSettingsObject() + +module.exports = { + isAborted, + isCancelled, + isValidEncodedURL, + createDeferredPromise, + ReadableStreamFrom, + tryUpgradeRequestToAPotentiallyTrustworthyURL, + clampAndCoarsenConnectionTimingInfo, + coarsenedSharedCurrentTime, + determineRequestsReferrer, + makePolicyContainer, + clonePolicyContainer, + appendFetchMetadata, + appendRequestOriginHeader, + TAOCheck, + corsCheck, + crossOriginResourcePolicyCheck, + createOpaqueTimingInfo, + setRequestReferrerPolicyOnRedirect, + isValidHTTPToken, + requestBadPort, + requestCurrentURL, + responseURL, + responseLocationURL, + isBlobLike, + isURLPotentiallyTrustworthy, + isValidReasonPhrase, + sameOrigin, + normalizeMethod, + serializeJavascriptValueToJSONString, + iteratorMixin, + createIterator, + isValidHeaderName, + isValidHeaderValue, + isErrorLike, + fullyReadBody, + bytesMatch, + isReadableStreamLike, + readableStreamClose, + isomorphicEncode, + urlIsLocal, + urlHasHttpsScheme, + urlIsHttpHttpsScheme, + readAllBytes, + simpleRangeHeaderValue, + buildContentRange, + parseMetadata, + createInflate, + extractMimeType, + getDecodeSplit, + utf8DecodeBytes, + environmentSettingsObject +} + + +/***/ }), + +/***/ 44890: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { types, inspect } = __nccwpck_require__(47261) +const { markAsUncloneable } = __nccwpck_require__(24086) +const { toUSVString } = __nccwpck_require__(83983) + +/** @type {import('../../../types/webidl').Webidl} */ +const webidl = {} +webidl.converters = {} +webidl.util = {} +webidl.errors = {} + +webidl.errors.exception = function (message) { + return new TypeError(`${message.header}: ${message.message}`) +} + +webidl.errors.conversionFailed = function (context) { + const plural = context.types.length === 1 ? '' : ' one of' + const message = + `${context.argument} could not be converted to` + + `${plural}: ${context.types.join(', ')}.` + + return webidl.errors.exception({ + header: context.prefix, + message + }) +} + +webidl.errors.invalidArgument = function (context) { + return webidl.errors.exception({ + header: context.prefix, + message: `"${context.value}" is an invalid ${context.type}.` + }) +} + +// https://webidl.spec.whatwg.org/#implements +webidl.brandCheck = function (V, I, opts) { + if (opts?.strict !== false) { + if (!(V instanceof I)) { + const err = new TypeError('Illegal invocation') + err.code = 'ERR_INVALID_THIS' // node compat. + throw err } - /** - * Reads or downloads a blob from the system, including its metadata and properties. - * You can also call Get Blob to read a snapshot. - * - * * In Node.js, data returns in a Readable stream readableStreamBody - * * In browsers, data returns in a promise blobBody - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/get-blob - * - * @param offset - From which position of the blob to download, greater than or equal to 0 - * @param count - How much data to be downloaded, greater than 0. Will download to the end when undefined - * @param options - Optional options to Blob Download operation. - * - * - * Example usage (Node.js): - * - * ```js - * // Download and convert a blob to a string - * const downloadBlockBlobResponse = await blobClient.download(); - * const downloaded = await streamToBuffer(downloadBlockBlobResponse.readableStreamBody); - * console.log("Downloaded blob content:", downloaded.toString()); - * - * async function streamToBuffer(readableStream) { - * return new Promise((resolve, reject) => { - * const chunks = []; - * readableStream.on("data", (data) => { - * chunks.push(data instanceof Buffer ? data : Buffer.from(data)); - * }); - * readableStream.on("end", () => { - * resolve(Buffer.concat(chunks)); - * }); - * readableStream.on("error", reject); - * }); - * } - * ``` - * - * Example usage (browser): - * - * ```js - * // Download and convert a blob to a string - * const downloadBlockBlobResponse = await blobClient.download(); - * const downloaded = await blobToString(await downloadBlockBlobResponse.blobBody); - * console.log( - * "Downloaded blob content", - * downloaded - * ); - * - * async function blobToString(blob: Blob): Promise { - * const fileReader = new FileReader(); - * return new Promise((resolve, reject) => { - * fileReader.onloadend = (ev: any) => { - * resolve(ev.target!.result); - * }; - * fileReader.onerror = reject; - * fileReader.readAsText(blob); - * }); - * } - * ``` - */ - async download(offset = 0, count, options = {}) { - var _a; - options.conditions = options.conditions || {}; - options.conditions = options.conditions || {}; - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - const { span, updatedOptions } = createSpan("BlobClient-download", options); - try { - const res = await this.blobContext.download(Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), requestOptions: { - onDownloadProgress: coreHttp.isNode ? undefined : options.onProgress, // for Node.js, progress is reported by RetriableReadableStream - }, range: offset === 0 && !count ? undefined : rangeToString({ offset, count }), rangeGetContentMD5: options.rangeGetContentMD5, rangeGetContentCRC64: options.rangeGetContentCrc64, snapshot: options.snapshot, cpkInfo: options.customerProvidedKey }, convertTracingToRequestOptionsBase(updatedOptions))); - const wrappedRes = Object.assign(Object.assign({}, res), { _response: res._response, objectReplicationDestinationPolicyId: res.objectReplicationPolicyId, objectReplicationSourceProperties: parseObjectReplicationRecord(res.objectReplicationRules) }); - // Return browser response immediately - if (!coreHttp.isNode) { - return wrappedRes; - } - // We support retrying when download stream unexpected ends in Node.js runtime - // Following code shouldn't be bundled into browser build, however some - // bundlers may try to bundle following code and "FileReadResponse.ts". - // In this case, "FileDownloadResponse.browser.ts" will be used as a shim of "FileDownloadResponse.ts" - // The config is in package.json "browser" field - if (options.maxRetryRequests === undefined || options.maxRetryRequests < 0) { - // TODO: Default value or make it a required parameter? - options.maxRetryRequests = DEFAULT_MAX_DOWNLOAD_RETRY_REQUESTS; - } - if (res.contentLength === undefined) { - throw new RangeError(`File download response doesn't contain valid content length header`); - } - if (!res.etag) { - throw new RangeError(`File download response doesn't contain valid etag header`); - } - return new BlobDownloadResponse(wrappedRes, async (start) => { - var _a; - const updatedDownloadOptions = { - leaseAccessConditions: options.conditions, - modifiedAccessConditions: { - ifMatch: options.conditions.ifMatch || res.etag, - ifModifiedSince: options.conditions.ifModifiedSince, - ifNoneMatch: options.conditions.ifNoneMatch, - ifUnmodifiedSince: options.conditions.ifUnmodifiedSince, - ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions, - }, - range: rangeToString({ - count: offset + res.contentLength - start, - offset: start, - }), - rangeGetContentMD5: options.rangeGetContentMD5, - rangeGetContentCRC64: options.rangeGetContentCrc64, - snapshot: options.snapshot, - cpkInfo: options.customerProvidedKey, - }; - // Debug purpose only - // console.log( - // `Read from internal stream, range: ${ - // updatedOptions.range - // }, options: ${JSON.stringify(updatedOptions)}` - // ); - return (await this.blobContext.download(Object.assign({ abortSignal: options.abortSignal }, updatedDownloadOptions))).readableStreamBody; - }, offset, res.contentLength, { - maxRetryRequests: options.maxRetryRequests, - onProgress: options.onProgress, - }); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + } else { + if (V?.[Symbol.toStringTag] !== I.prototype[Symbol.toStringTag]) { + const err = new TypeError('Illegal invocation') + err.code = 'ERR_INVALID_THIS' // node compat. + throw err } - /** - * Returns true if the Azure blob resource represented by this client exists; false otherwise. - * - * NOTE: use this function with care since an existing blob might be deleted by other clients or - * applications. Vice versa new blobs might be added by other clients or applications after this - * function completes. - * - * @param options - options to Exists operation. - */ - async exists(options = {}) { - const { span, updatedOptions } = createSpan("BlobClient-exists", options); - try { - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - await this.getProperties({ - abortSignal: options.abortSignal, - customerProvidedKey: options.customerProvidedKey, - conditions: options.conditions, - tracingOptions: updatedOptions.tracingOptions, - }); - return true; - } - catch (e) { - if (e.statusCode === 404) { - // Expected exception when checking blob existence - return false; - } - else if (e.statusCode === 409 && - e.details.errorCode === BlobUsesCustomerSpecifiedEncryptionMsg) { - // Expected exception when checking blob existence - return true; - } - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + } +} + +webidl.argumentLengthCheck = function ({ length }, min, ctx) { + if (length < min) { + throw webidl.errors.exception({ + message: `${min} argument${min !== 1 ? 's' : ''} required, ` + + `but${length ? ' only' : ''} ${length} found.`, + header: ctx + }) + } +} + +webidl.illegalConstructor = function () { + throw webidl.errors.exception({ + header: 'TypeError', + message: 'Illegal constructor' + }) +} + +// https://tc39.es/ecma262/#sec-ecmascript-data-types-and-values +webidl.util.Type = function (V) { + switch (typeof V) { + case 'undefined': return 'Undefined' + case 'boolean': return 'Boolean' + case 'string': return 'String' + case 'symbol': return 'Symbol' + case 'number': return 'Number' + case 'bigint': return 'BigInt' + case 'function': + case 'object': { + if (V === null) { + return 'Null' + } + + return 'Object' } - /** - * Returns all user-defined metadata, standard HTTP properties, and system properties - * for the blob. It does not return the content of the blob. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/get-blob-properties - * - * WARNING: The `metadata` object returned in the response will have its keys in lowercase, even if - * they originally contained uppercase characters. This differs from the metadata keys returned by - * the methods of {@link ContainerClient} that list blobs using the `includeMetadata` option, which - * will retain their original casing. - * - * @param options - Optional options to Get Properties operation. - */ - async getProperties(options = {}) { - var _a; - const { span, updatedOptions } = createSpan("BlobClient-getProperties", options); - try { - options.conditions = options.conditions || {}; - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - const res = await this.blobContext.getProperties(Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), cpkInfo: options.customerProvidedKey }, convertTracingToRequestOptionsBase(updatedOptions))); - return Object.assign(Object.assign({}, res), { _response: res._response, objectReplicationDestinationPolicyId: res.objectReplicationPolicyId, objectReplicationSourceProperties: parseObjectReplicationRecord(res.objectReplicationRules) }); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + } +} + +webidl.util.markAsUncloneable = markAsUncloneable || (() => {}) +// https://webidl.spec.whatwg.org/#abstract-opdef-converttoint +webidl.util.ConvertToInt = function (V, bitLength, signedness, opts) { + let upperBound + let lowerBound + + // 1. If bitLength is 64, then: + if (bitLength === 64) { + // 1. Let upperBound be 2^53 − 1. + upperBound = Math.pow(2, 53) - 1 + + // 2. If signedness is "unsigned", then let lowerBound be 0. + if (signedness === 'unsigned') { + lowerBound = 0 + } else { + // 3. Otherwise let lowerBound be −2^53 + 1. + lowerBound = Math.pow(-2, 53) + 1 } - /** - * Marks the specified blob or snapshot for deletion. The blob is later deleted - * during garbage collection. Note that in order to delete a blob, you must delete - * all of its snapshots. You can delete both at the same time with the Delete - * Blob operation. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/delete-blob - * - * @param options - Optional options to Blob Delete operation. - */ - async delete(options = {}) { - var _a; - const { span, updatedOptions } = createSpan("BlobClient-delete", options); - options.conditions = options.conditions || {}; - try { - return await this.blobContext.delete(Object.assign({ abortSignal: options.abortSignal, deleteSnapshots: options.deleteSnapshots, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }) }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + } else if (signedness === 'unsigned') { + // 2. Otherwise, if signedness is "unsigned", then: + + // 1. Let lowerBound be 0. + lowerBound = 0 + + // 2. Let upperBound be 2^bitLength − 1. + upperBound = Math.pow(2, bitLength) - 1 + } else { + // 3. Otherwise: + + // 1. Let lowerBound be -2^bitLength − 1. + lowerBound = Math.pow(-2, bitLength) - 1 + + // 2. Let upperBound be 2^bitLength − 1 − 1. + upperBound = Math.pow(2, bitLength - 1) - 1 + } + + // 4. Let x be ? ToNumber(V). + let x = Number(V) + + // 5. If x is −0, then set x to +0. + if (x === 0) { + x = 0 + } + + // 6. If the conversion is to an IDL type associated + // with the [EnforceRange] extended attribute, then: + if (opts?.enforceRange === true) { + // 1. If x is NaN, +∞, or −∞, then throw a TypeError. + if ( + Number.isNaN(x) || + x === Number.POSITIVE_INFINITY || + x === Number.NEGATIVE_INFINITY + ) { + throw webidl.errors.exception({ + header: 'Integer conversion', + message: `Could not convert ${webidl.util.Stringify(V)} to an integer.` + }) } - /** - * Marks the specified blob or snapshot for deletion if it exists. The blob is later deleted - * during garbage collection. Note that in order to delete a blob, you must delete - * all of its snapshots. You can delete both at the same time with the Delete - * Blob operation. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/delete-blob - * - * @param options - Optional options to Blob Delete operation. - */ - async deleteIfExists(options = {}) { - var _a, _b; - const { span, updatedOptions } = createSpan("BlobClient-deleteIfExists", options); - try { - const res = await this.delete(updatedOptions); - return Object.assign(Object.assign({ succeeded: true }, res), { _response: res._response }); - } - catch (e) { - if (((_a = e.details) === null || _a === void 0 ? void 0 : _a.errorCode) === "BlobNotFound") { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: "Expected exception when deleting a blob or snapshot only if it exists.", - }); - return Object.assign(Object.assign({ succeeded: false }, (_b = e.response) === null || _b === void 0 ? void 0 : _b.parsedHeaders), { _response: e.response }); - } - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // 2. Set x to IntegerPart(x). + x = webidl.util.IntegerPart(x) + + // 3. If x < lowerBound or x > upperBound, then + // throw a TypeError. + if (x < lowerBound || x > upperBound) { + throw webidl.errors.exception({ + header: 'Integer conversion', + message: `Value must be between ${lowerBound}-${upperBound}, got ${x}.` + }) } - /** - * Restores the contents and metadata of soft deleted blob and any associated - * soft deleted snapshots. Undelete Blob is supported only on version 2017-07-29 - * or later. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/undelete-blob - * - * @param options - Optional options to Blob Undelete operation. - */ - async undelete(options = {}) { - const { span, updatedOptions } = createSpan("BlobClient-undelete", options); - try { - return await this.blobContext.undelete(Object.assign({ abortSignal: options.abortSignal }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // 4. Return x. + return x + } + + // 7. If x is not NaN and the conversion is to an IDL + // type associated with the [Clamp] extended + // attribute, then: + if (!Number.isNaN(x) && opts?.clamp === true) { + // 1. Set x to min(max(x, lowerBound), upperBound). + x = Math.min(Math.max(x, lowerBound), upperBound) + + // 2. Round x to the nearest integer, choosing the + // even integer if it lies halfway between two, + // and choosing +0 rather than −0. + if (Math.floor(x) % 2 === 0) { + x = Math.floor(x) + } else { + x = Math.ceil(x) } - /** - * Sets system properties on the blob. - * - * If no value provided, or no value provided for the specified blob HTTP headers, - * these blob HTTP headers without a value will be cleared. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/set-blob-properties - * - * @param blobHTTPHeaders - If no value provided, or no value provided for - * the specified blob HTTP headers, these blob HTTP - * headers without a value will be cleared. - * A common header to set is `blobContentType` - * enabling the browser to provide functionality - * based on file type. - * @param options - Optional options to Blob Set HTTP Headers operation. - */ - async setHTTPHeaders(blobHTTPHeaders, options = {}) { - var _a; - const { span, updatedOptions } = createSpan("BlobClient-setHTTPHeaders", options); - options.conditions = options.conditions || {}; - try { - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - return await this.blobContext.setHttpHeaders(Object.assign({ abortSignal: options.abortSignal, blobHttpHeaders: blobHTTPHeaders, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }) }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } - } - /** - * Sets user-defined metadata for the specified blob as one or more name-value pairs. - * - * If no option provided, or no metadata defined in the parameter, the blob - * metadata will be removed. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/set-blob-metadata - * - * @param metadata - Replace existing metadata with this value. - * If no value provided the existing metadata will be removed. - * @param options - Optional options to Set Metadata operation. - */ - async setMetadata(metadata, options = {}) { - var _a; - const { span, updatedOptions } = createSpan("BlobClient-setMetadata", options); - options.conditions = options.conditions || {}; - try { - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - return await this.blobContext.setMetadata(Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, metadata, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), cpkInfo: options.customerProvidedKey, encryptionScope: options.encryptionScope }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } - } - /** - * Sets tags on the underlying blob. - * A blob can have up to 10 tags. Tag keys must be between 1 and 128 characters. Tag values must be between 0 and 256 characters. - * Valid tag key and value characters include lower and upper case letters, digits (0-9), - * space (' '), plus ('+'), minus ('-'), period ('.'), foward slash ('/'), colon (':'), equals ('='), and underscore ('_'). - * - * @param tags - - * @param options - - */ - async setTags(tags, options = {}) { - var _a; - const { span, updatedOptions } = createSpan("BlobClient-setTags", options); - try { - return await this.blobContext.setTags(Object.assign(Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }) }, convertTracingToRequestOptionsBase(updatedOptions)), { tags: toBlobTags(tags) })); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } - } - /** - * Gets the tags associated with the underlying blob. - * - * @param options - - */ - async getTags(options = {}) { - var _a; - const { span, updatedOptions } = createSpan("BlobClient-getTags", options); - try { - const response = await this.blobContext.getTags(Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }) }, convertTracingToRequestOptionsBase(updatedOptions))); - const wrappedResponse = Object.assign(Object.assign({}, response), { _response: response._response, tags: toTags({ blobTagSet: response.blobTagSet }) || {} }); - return wrappedResponse; - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // 3. Return x. + return x + } + + // 8. If x is NaN, +0, +∞, or −∞, then return +0. + if ( + Number.isNaN(x) || + (x === 0 && Object.is(0, x)) || + x === Number.POSITIVE_INFINITY || + x === Number.NEGATIVE_INFINITY + ) { + return 0 + } + + // 9. Set x to IntegerPart(x). + x = webidl.util.IntegerPart(x) + + // 10. Set x to x modulo 2^bitLength. + x = x % Math.pow(2, bitLength) + + // 11. If signedness is "signed" and x ≥ 2^bitLength − 1, + // then return x − 2^bitLength. + if (signedness === 'signed' && x >= Math.pow(2, bitLength) - 1) { + return x - Math.pow(2, bitLength) + } + + // 12. Otherwise, return x. + return x +} + +// https://webidl.spec.whatwg.org/#abstract-opdef-integerpart +webidl.util.IntegerPart = function (n) { + // 1. Let r be floor(abs(n)). + const r = Math.floor(Math.abs(n)) + + // 2. If n < 0, then return -1 × r. + if (n < 0) { + return -1 * r + } + + // 3. Otherwise, return r. + return r +} + +webidl.util.Stringify = function (V) { + const type = webidl.util.Type(V) + + switch (type) { + case 'Symbol': + return `Symbol(${V.description})` + case 'Object': + return inspect(V) + case 'String': + return `"${V}"` + default: + return `${V}` + } +} + +// https://webidl.spec.whatwg.org/#es-sequence +webidl.sequenceConverter = function (converter) { + return (V, prefix, argument, Iterable) => { + // 1. If Type(V) is not Object, throw a TypeError. + if (webidl.util.Type(V) !== 'Object') { + throw webidl.errors.exception({ + header: prefix, + message: `${argument} (${webidl.util.Stringify(V)}) is not iterable.` + }) } - /** - * Get a {@link BlobLeaseClient} that manages leases on the blob. - * - * @param proposeLeaseId - Initial proposed lease Id. - * @returns A new BlobLeaseClient object for managing leases on the blob. - */ - getBlobLeaseClient(proposeLeaseId) { - return new BlobLeaseClient(this, proposeLeaseId); + + // 2. Let method be ? GetMethod(V, @@iterator). + /** @type {Generator} */ + const method = typeof Iterable === 'function' ? Iterable() : V?.[Symbol.iterator]?.() + const seq = [] + let index = 0 + + // 3. If method is undefined, throw a TypeError. + if ( + method === undefined || + typeof method.next !== 'function' + ) { + throw webidl.errors.exception({ + header: prefix, + message: `${argument} is not iterable.` + }) } - /** - * Creates a read-only snapshot of a blob. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/snapshot-blob - * - * @param options - Optional options to the Blob Create Snapshot operation. - */ - async createSnapshot(options = {}) { - var _a; - const { span, updatedOptions } = createSpan("BlobClient-createSnapshot", options); - options.conditions = options.conditions || {}; - try { - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - return await this.blobContext.createSnapshot(Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, metadata: options.metadata, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), cpkInfo: options.customerProvidedKey, encryptionScope: options.encryptionScope }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // https://webidl.spec.whatwg.org/#create-sequence-from-iterable + while (true) { + const { done, value } = method.next() + + if (done) { + break + } + + seq.push(converter(value, prefix, `${argument}[${index++}]`)) } - /** - * Asynchronously copies a blob to a destination within the storage account. - * This method returns a long running operation poller that allows you to wait - * indefinitely until the copy is completed. - * You can also cancel a copy before it is completed by calling `cancelOperation` on the poller. - * Note that the onProgress callback will not be invoked if the operation completes in the first - * request, and attempting to cancel a completed copy will result in an error being thrown. - * - * In version 2012-02-12 and later, the source for a Copy Blob operation can be - * a committed blob in any Azure storage account. - * Beginning with version 2015-02-21, the source for a Copy Blob operation can be - * an Azure file in any Azure storage account. - * Only storage accounts created on or after June 7th, 2012 allow the Copy Blob - * operation to copy from another storage account. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/copy-blob - * - * Example using automatic polling: - * - * ```js - * const copyPoller = await blobClient.beginCopyFromURL('url'); - * const result = await copyPoller.pollUntilDone(); - * ``` - * - * Example using manual polling: - * - * ```js - * const copyPoller = await blobClient.beginCopyFromURL('url'); - * while (!poller.isDone()) { - * await poller.poll(); - * } - * const result = copyPoller.getResult(); - * ``` - * - * Example using progress updates: - * - * ```js - * const copyPoller = await blobClient.beginCopyFromURL('url', { - * onProgress(state) { - * console.log(`Progress: ${state.copyProgress}`); - * } - * }); - * const result = await copyPoller.pollUntilDone(); - * ``` - * - * Example using a changing polling interval (default 15 seconds): - * - * ```js - * const copyPoller = await blobClient.beginCopyFromURL('url', { - * intervalInMs: 1000 // poll blob every 1 second for copy progress - * }); - * const result = await copyPoller.pollUntilDone(); - * ``` - * - * Example using copy cancellation: - * - * ```js - * const copyPoller = await blobClient.beginCopyFromURL('url'); - * // cancel operation after starting it. - * try { - * await copyPoller.cancelOperation(); - * // calls to get the result now throw PollerCancelledError - * await copyPoller.getResult(); - * } catch (err) { - * if (err.name === 'PollerCancelledError') { - * console.log('The copy was cancelled.'); - * } - * } - * ``` - * - * @param copySource - url to the source Azure Blob/File. - * @param options - Optional options to the Blob Start Copy From URL operation. - */ - async beginCopyFromURL(copySource, options = {}) { - const client = { - abortCopyFromURL: (...args) => this.abortCopyFromURL(...args), - getProperties: (...args) => this.getProperties(...args), - startCopyFromURL: (...args) => this.startCopyFromURL(...args), - }; - const poller = new BlobBeginCopyFromUrlPoller({ - blobClient: client, - copySource, - intervalInMs: options.intervalInMs, - onProgress: options.onProgress, - resumeFrom: options.resumeFrom, - startCopyFromURLOptions: options, - }); - // Trigger the startCopyFromURL call by calling poll. - // Any errors from this method should be surfaced to the user. - await poller.poll(); - return poller; + + return seq + } +} + +// https://webidl.spec.whatwg.org/#es-to-record +webidl.recordConverter = function (keyConverter, valueConverter) { + return (O, prefix, argument) => { + // 1. If Type(O) is not Object, throw a TypeError. + if (webidl.util.Type(O) !== 'Object') { + throw webidl.errors.exception({ + header: prefix, + message: `${argument} ("${webidl.util.Type(O)}") is not an Object.` + }) } - /** - * Aborts a pending asynchronous Copy Blob operation, and leaves a destination blob with zero - * length and full metadata. Version 2012-02-12 and newer. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/abort-copy-blob - * - * @param copyId - Id of the Copy From URL operation. - * @param options - Optional options to the Blob Abort Copy From URL operation. - */ - async abortCopyFromURL(copyId, options = {}) { - const { span, updatedOptions } = createSpan("BlobClient-abortCopyFromURL", options); - try { - return await this.blobContext.abortCopyFromURL(copyId, Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // 2. Let result be a new empty instance of record. + const result = {} + + if (!types.isProxy(O)) { + // 1. Let desc be ? O.[[GetOwnProperty]](key). + const keys = [...Object.getOwnPropertyNames(O), ...Object.getOwnPropertySymbols(O)] + + for (const key of keys) { + // 1. Let typedKey be key converted to an IDL value of type K. + const typedKey = keyConverter(key, prefix, argument) + + // 2. Let value be ? Get(O, key). + // 3. Let typedValue be value converted to an IDL value of type V. + const typedValue = valueConverter(O[key], prefix, argument) + + // 4. Set result[typedKey] to typedValue. + result[typedKey] = typedValue + } + + // 5. Return result. + return result } - /** - * The synchronous Copy From URL operation copies a blob or an internet resource to a new blob. It will not - * return a response until the copy is complete. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/copy-blob-from-url - * - * @param copySource - The source URL to copy from, Shared Access Signature(SAS) maybe needed for authentication - * @param options - - */ - async syncCopyFromURL(copySource, options = {}) { - var _a, _b, _c; - const { span, updatedOptions } = createSpan("BlobClient-syncCopyFromURL", options); - options.conditions = options.conditions || {}; - options.sourceConditions = options.sourceConditions || {}; - try { - return await this.blobContext.copyFromURL(copySource, Object.assign({ abortSignal: options.abortSignal, metadata: options.metadata, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), sourceModifiedAccessConditions: { - sourceIfMatch: options.sourceConditions.ifMatch, - sourceIfModifiedSince: options.sourceConditions.ifModifiedSince, - sourceIfNoneMatch: options.sourceConditions.ifNoneMatch, - sourceIfUnmodifiedSince: options.sourceConditions.ifUnmodifiedSince, - }, sourceContentMD5: options.sourceContentMD5, copySourceAuthorization: httpAuthorizationToString(options.sourceAuthorization), blobTagsString: toBlobTagsString(options.tags), immutabilityPolicyExpiry: (_b = options.immutabilityPolicy) === null || _b === void 0 ? void 0 : _b.expiriesOn, immutabilityPolicyMode: (_c = options.immutabilityPolicy) === null || _c === void 0 ? void 0 : _c.policyMode, legalHold: options.legalHold, encryptionScope: options.encryptionScope }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // 3. Let keys be ? O.[[OwnPropertyKeys]](). + const keys = Reflect.ownKeys(O) + + // 4. For each key of keys. + for (const key of keys) { + // 1. Let desc be ? O.[[GetOwnProperty]](key). + const desc = Reflect.getOwnPropertyDescriptor(O, key) + + // 2. If desc is not undefined and desc.[[Enumerable]] is true: + if (desc?.enumerable) { + // 1. Let typedKey be key converted to an IDL value of type K. + const typedKey = keyConverter(key, prefix, argument) + + // 2. Let value be ? Get(O, key). + // 3. Let typedValue be value converted to an IDL value of type V. + const typedValue = valueConverter(O[key], prefix, argument) + + // 4. Set result[typedKey] to typedValue. + result[typedKey] = typedValue + } } - /** - * Sets the tier on a blob. The operation is allowed on a page blob in a premium - * storage account and on a block blob in a blob storage account (locally redundant - * storage only). A premium page blob's tier determines the allowed size, IOPS, - * and bandwidth of the blob. A block blob's tier determines Hot/Cool/Archive - * storage type. This operation does not update the blob's ETag. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/set-blob-tier - * - * @param tier - The tier to be set on the blob. Valid values are Hot, Cool, or Archive. - * @param options - Optional options to the Blob Set Tier operation. - */ - async setAccessTier(tier, options = {}) { - var _a; - const { span, updatedOptions } = createSpan("BlobClient-setAccessTier", options); - try { - return await this.blobContext.setTier(toAccessTier(tier), Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), rehydratePriority: options.rehydratePriority }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // 5. Return result. + return result + } +} + +webidl.interfaceConverter = function (i) { + return (V, prefix, argument, opts) => { + if (opts?.strict !== false && !(V instanceof i)) { + throw webidl.errors.exception({ + header: prefix, + message: `Expected ${argument} ("${webidl.util.Stringify(V)}") to be an instance of ${i.name}.` + }) } - async downloadToBuffer(param1, param2, param3, param4 = {}) { - let buffer; - let offset = 0; - let count = 0; - let options = param4; - if (param1 instanceof Buffer) { - buffer = param1; - offset = param2 || 0; - count = typeof param3 === "number" ? param3 : 0; - } - else { - offset = typeof param1 === "number" ? param1 : 0; - count = typeof param2 === "number" ? param2 : 0; - options = param3 || {}; - } - const { span, updatedOptions } = createSpan("BlobClient-downloadToBuffer", options); - try { - if (!options.blockSize) { - options.blockSize = 0; - } - if (options.blockSize < 0) { - throw new RangeError("blockSize option must be >= 0"); - } - if (options.blockSize === 0) { - options.blockSize = DEFAULT_BLOB_DOWNLOAD_BLOCK_BYTES; - } - if (offset < 0) { - throw new RangeError("offset option must be >= 0"); - } - if (count && count <= 0) { - throw new RangeError("count option must be greater than 0"); - } - if (!options.conditions) { - options.conditions = {}; - } - // Customer doesn't specify length, get it - if (!count) { - const response = await this.getProperties(Object.assign(Object.assign({}, options), { tracingOptions: Object.assign(Object.assign({}, options.tracingOptions), convertTracingToRequestOptionsBase(updatedOptions)) })); - count = response.contentLength - offset; - if (count < 0) { - throw new RangeError(`offset ${offset} shouldn't be larger than blob size ${response.contentLength}`); - } - } - // Allocate the buffer of size = count if the buffer is not provided - if (!buffer) { - try { - buffer = Buffer.alloc(count); - } - catch (error) { - throw new Error(`Unable to allocate the buffer of size: ${count}(in bytes). Please try passing your own buffer to the "downloadToBuffer" method or try using other methods like "download" or "downloadToFile".\t ${error.message}`); - } - } - if (buffer.length < count) { - throw new RangeError(`The buffer's size should be equal to or larger than the request count of bytes: ${count}`); - } - let transferProgress = 0; - const batch = new Batch(options.concurrency); - for (let off = offset; off < offset + count; off = off + options.blockSize) { - batch.addOperation(async () => { - // Exclusive chunk end position - let chunkEnd = offset + count; - if (off + options.blockSize < chunkEnd) { - chunkEnd = off + options.blockSize; - } - const response = await this.download(off, chunkEnd - off, { - abortSignal: options.abortSignal, - conditions: options.conditions, - maxRetryRequests: options.maxRetryRequestsPerBlock, - customerProvidedKey: options.customerProvidedKey, - tracingOptions: Object.assign(Object.assign({}, options.tracingOptions), convertTracingToRequestOptionsBase(updatedOptions)), - }); - const stream = response.readableStreamBody; - await streamToBuffer(stream, buffer, off - offset, chunkEnd - offset); - // Update progress after block is downloaded, in case of block trying - // Could provide finer grained progress updating inside HTTP requests, - // only if convenience layer download try is enabled - transferProgress += chunkEnd - off; - if (options.onProgress) { - options.onProgress({ loadedBytes: transferProgress }); - } - }); - } - await batch.do(); - return buffer; - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + return V + } +} + +webidl.dictionaryConverter = function (converters) { + return (dictionary, prefix, argument) => { + const type = webidl.util.Type(dictionary) + const dict = {} + + if (type === 'Null' || type === 'Undefined') { + return dict + } else if (type !== 'Object') { + throw webidl.errors.exception({ + header: prefix, + message: `Expected ${dictionary} to be one of: Null, Undefined, Object.` + }) } - /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * Downloads an Azure Blob to a local file. - * Fails if the the given file path already exits. - * Offset and count are optional, pass 0 and undefined respectively to download the entire blob. - * - * @param filePath - - * @param offset - From which position of the block blob to download. - * @param count - How much data to be downloaded. Will download to the end when passing undefined. - * @param options - Options to Blob download options. - * @returns The response data for blob download operation, - * but with readableStreamBody set to undefined since its - * content is already read and written into a local file - * at the specified path. - */ - async downloadToFile(filePath, offset = 0, count, options = {}) { - const { span, updatedOptions } = createSpan("BlobClient-downloadToFile", options); - try { - const response = await this.download(offset, count, Object.assign(Object.assign({}, options), { tracingOptions: Object.assign(Object.assign({}, options.tracingOptions), convertTracingToRequestOptionsBase(updatedOptions)) })); - if (response.readableStreamBody) { - await readStreamToLocalFile(response.readableStreamBody, filePath); - } - // The stream is no longer accessible so setting it to undefined. - response.blobDownloadStream = undefined; - return response; - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + + for (const options of converters) { + const { key, defaultValue, required, converter } = options + + if (required === true) { + if (!Object.hasOwn(dictionary, key)) { + throw webidl.errors.exception({ + header: prefix, + message: `Missing required key "${key}".` + }) } - finally { - span.end(); + } + + let value = dictionary[key] + const hasDefault = Object.hasOwn(options, 'defaultValue') + + // Only use defaultValue if value is undefined and + // a defaultValue options was provided. + if (hasDefault && value !== null) { + value ??= defaultValue() + } + + // A key can be optional and have no default value. + // When this happens, do not perform a conversion, + // and do not assign the key a value. + if (required || hasDefault || value !== undefined) { + value = converter(value, prefix, `${argument}.${key}`) + + if ( + options.allowedValues && + !options.allowedValues.includes(value) + ) { + throw webidl.errors.exception({ + header: prefix, + message: `${value} is not an accepted type. Expected one of ${options.allowedValues.join(', ')}.` + }) } + + dict[key] = value + } } - getBlobAndContainerNamesFromUrl() { - let containerName; - let blobName; - try { - // URL may look like the following - // "https://myaccount.blob.core.windows.net/mycontainer/blob?sasString"; - // "https://myaccount.blob.core.windows.net/mycontainer/blob"; - // "https://myaccount.blob.core.windows.net/mycontainer/blob/a.txt?sasString"; - // "https://myaccount.blob.core.windows.net/mycontainer/blob/a.txt"; - // IPv4/IPv6 address hosts, Endpoints - `http://127.0.0.1:10000/devstoreaccount1/containername/blob` - // http://localhost:10001/devstoreaccount1/containername/blob - const parsedUrl = coreHttp.URLBuilder.parse(this.url); - if (parsedUrl.getHost().split(".")[1] === "blob") { - // "https://myaccount.blob.core.windows.net/containername/blob". - // .getPath() -> /containername/blob - const pathComponents = parsedUrl.getPath().match("/([^/]*)(/(.*))?"); - containerName = pathComponents[1]; - blobName = pathComponents[3]; - } - else if (isIpEndpointStyle(parsedUrl)) { - // IPv4/IPv6 address hosts... Example - http://192.0.0.10:10001/devstoreaccount1/containername/blob - // Single word domain without a [dot] in the endpoint... Example - http://localhost:10001/devstoreaccount1/containername/blob - // .getPath() -> /devstoreaccount1/containername/blob - const pathComponents = parsedUrl.getPath().match("/([^/]*)/([^/]*)(/(.*))?"); - containerName = pathComponents[2]; - blobName = pathComponents[4]; - } - else { - // "https://customdomain.com/containername/blob". - // .getPath() -> /containername/blob - const pathComponents = parsedUrl.getPath().match("/([^/]*)(/(.*))?"); - containerName = pathComponents[1]; - blobName = pathComponents[3]; - } - // decode the encoded blobName, containerName - to get all the special characters that might be present in them - containerName = decodeURIComponent(containerName); - blobName = decodeURIComponent(blobName); - // Azure Storage Server will replace "\" with "/" in the blob names - // doing the same in the SDK side so that the user doesn't have to replace "\" instances in the blobName - blobName = blobName.replace(/\\/g, "/"); - if (!containerName) { - throw new Error("Provided containerName is invalid."); - } - return { blobName, containerName }; - } - catch (error) { - throw new Error("Unable to extract blobName and containerName with provided information."); - } + + return dict + } +} + +webidl.nullableConverter = function (converter) { + return (V, prefix, argument) => { + if (V === null) { + return V } - /** - * Asynchronously copies a blob to a destination within the storage account. - * In version 2012-02-12 and later, the source for a Copy Blob operation can be - * a committed blob in any Azure storage account. - * Beginning with version 2015-02-21, the source for a Copy Blob operation can be - * an Azure file in any Azure storage account. - * Only storage accounts created on or after June 7th, 2012 allow the Copy Blob - * operation to copy from another storage account. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/copy-blob - * - * @param copySource - url to the source Azure Blob/File. - * @param options - Optional options to the Blob Start Copy From URL operation. - */ - async startCopyFromURL(copySource, options = {}) { - var _a, _b, _c; - const { span, updatedOptions } = createSpan("BlobClient-startCopyFromURL", options); - options.conditions = options.conditions || {}; - options.sourceConditions = options.sourceConditions || {}; - try { - return await this.blobContext.startCopyFromURL(copySource, Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, metadata: options.metadata, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), sourceModifiedAccessConditions: { - sourceIfMatch: options.sourceConditions.ifMatch, - sourceIfModifiedSince: options.sourceConditions.ifModifiedSince, - sourceIfNoneMatch: options.sourceConditions.ifNoneMatch, - sourceIfUnmodifiedSince: options.sourceConditions.ifUnmodifiedSince, - sourceIfTags: options.sourceConditions.tagConditions, - }, immutabilityPolicyExpiry: (_b = options.immutabilityPolicy) === null || _b === void 0 ? void 0 : _b.expiriesOn, immutabilityPolicyMode: (_c = options.immutabilityPolicy) === null || _c === void 0 ? void 0 : _c.policyMode, legalHold: options.legalHold, rehydratePriority: options.rehydratePriority, tier: toAccessTier(options.tier), blobTagsString: toBlobTagsString(options.tags), sealBlob: options.sealBlob }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + return converter(V, prefix, argument) + } +} + +// https://webidl.spec.whatwg.org/#es-DOMString +webidl.converters.DOMString = function (V, prefix, argument, opts) { + // 1. If V is null and the conversion is to an IDL type + // associated with the [LegacyNullToEmptyString] + // extended attribute, then return the DOMString value + // that represents the empty string. + if (V === null && opts?.legacyNullToEmptyString) { + return '' + } + + // 2. Let x be ? ToString(V). + if (typeof V === 'symbol') { + throw webidl.errors.exception({ + header: prefix, + message: `${argument} is a symbol, which cannot be converted to a DOMString.` + }) + } + + // 3. Return the IDL DOMString value that represents the + // same sequence of code units as the one the + // ECMAScript String value x represents. + return String(V) +} + +// https://webidl.spec.whatwg.org/#es-ByteString +webidl.converters.ByteString = function (V, prefix, argument) { + // 1. Let x be ? ToString(V). + // Note: DOMString converter perform ? ToString(V) + const x = webidl.converters.DOMString(V, prefix, argument) + + // 2. If the value of any element of x is greater than + // 255, then throw a TypeError. + for (let index = 0; index < x.length; index++) { + if (x.charCodeAt(index) > 255) { + throw new TypeError( + 'Cannot convert argument to a ByteString because the character at ' + + `index ${index} has a value of ${x.charCodeAt(index)} which is greater than 255.` + ) } - /** - * Only available for BlobClient constructed with a shared key credential. - * - * Generates a Blob Service Shared Access Signature (SAS) URI based on the client properties - * and parameters passed in. The SAS is signed by the shared key credential of the client. - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/constructing-a-service-sas - * - * @param options - Optional parameters. - * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token. - */ - generateSasUrl(options) { - return new Promise((resolve) => { - if (!(this.credential instanceof StorageSharedKeyCredential)) { - throw new RangeError("Can only generate the SAS when the client is initialized with a shared key credential"); - } - const sas = generateBlobSASQueryParameters(Object.assign({ containerName: this._containerName, blobName: this._name, snapshotTime: this._snapshot, versionId: this._versionId }, options), this.credential).toString(); - resolve(appendToURLQuery(this.url, sas)); - }); + } + + // 3. Return an IDL ByteString value whose length is the + // length of x, and where the value of each element is + // the value of the corresponding element of x. + return x +} + +// https://webidl.spec.whatwg.org/#es-USVString +// TODO: rewrite this so we can control the errors thrown +webidl.converters.USVString = toUSVString + +// https://webidl.spec.whatwg.org/#es-boolean +webidl.converters.boolean = function (V) { + // 1. Let x be the result of computing ToBoolean(V). + const x = Boolean(V) + + // 2. Return the IDL boolean value that is the one that represents + // the same truth value as the ECMAScript Boolean value x. + return x +} + +// https://webidl.spec.whatwg.org/#es-any +webidl.converters.any = function (V) { + return V +} + +// https://webidl.spec.whatwg.org/#es-long-long +webidl.converters['long long'] = function (V, prefix, argument) { + // 1. Let x be ? ConvertToInt(V, 64, "signed"). + const x = webidl.util.ConvertToInt(V, 64, 'signed', undefined, prefix, argument) + + // 2. Return the IDL long long value that represents + // the same numeric value as x. + return x +} + +// https://webidl.spec.whatwg.org/#es-unsigned-long-long +webidl.converters['unsigned long long'] = function (V, prefix, argument) { + // 1. Let x be ? ConvertToInt(V, 64, "unsigned"). + const x = webidl.util.ConvertToInt(V, 64, 'unsigned', undefined, prefix, argument) + + // 2. Return the IDL unsigned long long value that + // represents the same numeric value as x. + return x +} + +// https://webidl.spec.whatwg.org/#es-unsigned-long +webidl.converters['unsigned long'] = function (V, prefix, argument) { + // 1. Let x be ? ConvertToInt(V, 32, "unsigned"). + const x = webidl.util.ConvertToInt(V, 32, 'unsigned', undefined, prefix, argument) + + // 2. Return the IDL unsigned long value that + // represents the same numeric value as x. + return x +} + +// https://webidl.spec.whatwg.org/#es-unsigned-short +webidl.converters['unsigned short'] = function (V, prefix, argument, opts) { + // 1. Let x be ? ConvertToInt(V, 16, "unsigned"). + const x = webidl.util.ConvertToInt(V, 16, 'unsigned', opts, prefix, argument) + + // 2. Return the IDL unsigned short value that represents + // the same numeric value as x. + return x +} + +// https://webidl.spec.whatwg.org/#idl-ArrayBuffer +webidl.converters.ArrayBuffer = function (V, prefix, argument, opts) { + // 1. If Type(V) is not Object, or V does not have an + // [[ArrayBufferData]] internal slot, then throw a + // TypeError. + // see: https://tc39.es/ecma262/#sec-properties-of-the-arraybuffer-instances + // see: https://tc39.es/ecma262/#sec-properties-of-the-sharedarraybuffer-instances + if ( + webidl.util.Type(V) !== 'Object' || + !types.isAnyArrayBuffer(V) + ) { + throw webidl.errors.conversionFailed({ + prefix, + argument: `${argument} ("${webidl.util.Stringify(V)}")`, + types: ['ArrayBuffer'] + }) + } + + // 2. If the conversion is not to an IDL type associated + // with the [AllowShared] extended attribute, and + // IsSharedArrayBuffer(V) is true, then throw a + // TypeError. + if (opts?.allowShared === false && types.isSharedArrayBuffer(V)) { + throw webidl.errors.exception({ + header: 'ArrayBuffer', + message: 'SharedArrayBuffer is not allowed.' + }) + } + + // 3. If the conversion is not to an IDL type associated + // with the [AllowResizable] extended attribute, and + // IsResizableArrayBuffer(V) is true, then throw a + // TypeError. + if (V.resizable || V.growable) { + throw webidl.errors.exception({ + header: 'ArrayBuffer', + message: 'Received a resizable ArrayBuffer.' + }) + } + + // 4. Return the IDL ArrayBuffer value that is a + // reference to the same object as V. + return V +} + +webidl.converters.TypedArray = function (V, T, prefix, name, opts) { + // 1. Let T be the IDL type V is being converted to. + + // 2. If Type(V) is not Object, or V does not have a + // [[TypedArrayName]] internal slot with a value + // equal to T’s name, then throw a TypeError. + if ( + webidl.util.Type(V) !== 'Object' || + !types.isTypedArray(V) || + V.constructor.name !== T.name + ) { + throw webidl.errors.conversionFailed({ + prefix, + argument: `${name} ("${webidl.util.Stringify(V)}")`, + types: [T.name] + }) + } + + // 3. If the conversion is not to an IDL type associated + // with the [AllowShared] extended attribute, and + // IsSharedArrayBuffer(V.[[ViewedArrayBuffer]]) is + // true, then throw a TypeError. + if (opts?.allowShared === false && types.isSharedArrayBuffer(V.buffer)) { + throw webidl.errors.exception({ + header: 'ArrayBuffer', + message: 'SharedArrayBuffer is not allowed.' + }) + } + + // 4. If the conversion is not to an IDL type associated + // with the [AllowResizable] extended attribute, and + // IsResizableArrayBuffer(V.[[ViewedArrayBuffer]]) is + // true, then throw a TypeError. + if (V.buffer.resizable || V.buffer.growable) { + throw webidl.errors.exception({ + header: 'ArrayBuffer', + message: 'Received a resizable ArrayBuffer.' + }) + } + + // 5. Return the IDL value of type T that is a reference + // to the same object as V. + return V +} + +webidl.converters.DataView = function (V, prefix, name, opts) { + // 1. If Type(V) is not Object, or V does not have a + // [[DataView]] internal slot, then throw a TypeError. + if (webidl.util.Type(V) !== 'Object' || !types.isDataView(V)) { + throw webidl.errors.exception({ + header: prefix, + message: `${name} is not a DataView.` + }) + } + + // 2. If the conversion is not to an IDL type associated + // with the [AllowShared] extended attribute, and + // IsSharedArrayBuffer(V.[[ViewedArrayBuffer]]) is true, + // then throw a TypeError. + if (opts?.allowShared === false && types.isSharedArrayBuffer(V.buffer)) { + throw webidl.errors.exception({ + header: 'ArrayBuffer', + message: 'SharedArrayBuffer is not allowed.' + }) + } + + // 3. If the conversion is not to an IDL type associated + // with the [AllowResizable] extended attribute, and + // IsResizableArrayBuffer(V.[[ViewedArrayBuffer]]) is + // true, then throw a TypeError. + if (V.buffer.resizable || V.buffer.growable) { + throw webidl.errors.exception({ + header: 'ArrayBuffer', + message: 'Received a resizable ArrayBuffer.' + }) + } + + // 4. Return the IDL DataView value that is a reference + // to the same object as V. + return V +} + +// https://webidl.spec.whatwg.org/#BufferSource +webidl.converters.BufferSource = function (V, prefix, name, opts) { + if (types.isAnyArrayBuffer(V)) { + return webidl.converters.ArrayBuffer(V, prefix, name, { ...opts, allowShared: false }) + } + + if (types.isTypedArray(V)) { + return webidl.converters.TypedArray(V, V.constructor, prefix, name, { ...opts, allowShared: false }) + } + + if (types.isDataView(V)) { + return webidl.converters.DataView(V, prefix, name, { ...opts, allowShared: false }) + } + + throw webidl.errors.conversionFailed({ + prefix, + argument: `${name} ("${webidl.util.Stringify(V)}")`, + types: ['BufferSource'] + }) +} + +webidl.converters['sequence'] = webidl.sequenceConverter( + webidl.converters.ByteString +) + +webidl.converters['sequence>'] = webidl.sequenceConverter( + webidl.converters['sequence'] +) + +webidl.converters['record'] = webidl.recordConverter( + webidl.converters.ByteString, + webidl.converters.ByteString +) + +module.exports = { + webidl +} + + +/***/ }), + +/***/ 60352: +/***/ ((module) => { + +"use strict"; + + +/** + * @see https://encoding.spec.whatwg.org/#concept-encoding-get + * @param {string|undefined} label + */ +function getEncoding (label) { + if (!label) { + return 'failure' + } + + // 1. Remove any leading and trailing ASCII whitespace from label. + // 2. If label is an ASCII case-insensitive match for any of the + // labels listed in the table below, then return the + // corresponding encoding; otherwise return failure. + switch (label.trim().toLowerCase()) { + case 'unicode-1-1-utf-8': + case 'unicode11utf8': + case 'unicode20utf8': + case 'utf-8': + case 'utf8': + case 'x-unicode20utf8': + return 'UTF-8' + case '866': + case 'cp866': + case 'csibm866': + case 'ibm866': + return 'IBM866' + case 'csisolatin2': + case 'iso-8859-2': + case 'iso-ir-101': + case 'iso8859-2': + case 'iso88592': + case 'iso_8859-2': + case 'iso_8859-2:1987': + case 'l2': + case 'latin2': + return 'ISO-8859-2' + case 'csisolatin3': + case 'iso-8859-3': + case 'iso-ir-109': + case 'iso8859-3': + case 'iso88593': + case 'iso_8859-3': + case 'iso_8859-3:1988': + case 'l3': + case 'latin3': + return 'ISO-8859-3' + case 'csisolatin4': + case 'iso-8859-4': + case 'iso-ir-110': + case 'iso8859-4': + case 'iso88594': + case 'iso_8859-4': + case 'iso_8859-4:1988': + case 'l4': + case 'latin4': + return 'ISO-8859-4' + case 'csisolatincyrillic': + case 'cyrillic': + case 'iso-8859-5': + case 'iso-ir-144': + case 'iso8859-5': + case 'iso88595': + case 'iso_8859-5': + case 'iso_8859-5:1988': + return 'ISO-8859-5' + case 'arabic': + case 'asmo-708': + case 'csiso88596e': + case 'csiso88596i': + case 'csisolatinarabic': + case 'ecma-114': + case 'iso-8859-6': + case 'iso-8859-6-e': + case 'iso-8859-6-i': + case 'iso-ir-127': + case 'iso8859-6': + case 'iso88596': + case 'iso_8859-6': + case 'iso_8859-6:1987': + return 'ISO-8859-6' + case 'csisolatingreek': + case 'ecma-118': + case 'elot_928': + case 'greek': + case 'greek8': + case 'iso-8859-7': + case 'iso-ir-126': + case 'iso8859-7': + case 'iso88597': + case 'iso_8859-7': + case 'iso_8859-7:1987': + case 'sun_eu_greek': + return 'ISO-8859-7' + case 'csiso88598e': + case 'csisolatinhebrew': + case 'hebrew': + case 'iso-8859-8': + case 'iso-8859-8-e': + case 'iso-ir-138': + case 'iso8859-8': + case 'iso88598': + case 'iso_8859-8': + case 'iso_8859-8:1988': + case 'visual': + return 'ISO-8859-8' + case 'csiso88598i': + case 'iso-8859-8-i': + case 'logical': + return 'ISO-8859-8-I' + case 'csisolatin6': + case 'iso-8859-10': + case 'iso-ir-157': + case 'iso8859-10': + case 'iso885910': + case 'l6': + case 'latin6': + return 'ISO-8859-10' + case 'iso-8859-13': + case 'iso8859-13': + case 'iso885913': + return 'ISO-8859-13' + case 'iso-8859-14': + case 'iso8859-14': + case 'iso885914': + return 'ISO-8859-14' + case 'csisolatin9': + case 'iso-8859-15': + case 'iso8859-15': + case 'iso885915': + case 'iso_8859-15': + case 'l9': + return 'ISO-8859-15' + case 'iso-8859-16': + return 'ISO-8859-16' + case 'cskoi8r': + case 'koi': + case 'koi8': + case 'koi8-r': + case 'koi8_r': + return 'KOI8-R' + case 'koi8-ru': + case 'koi8-u': + return 'KOI8-U' + case 'csmacintosh': + case 'mac': + case 'macintosh': + case 'x-mac-roman': + return 'macintosh' + case 'iso-8859-11': + case 'iso8859-11': + case 'iso885911': + case 'tis-620': + case 'windows-874': + return 'windows-874' + case 'cp1250': + case 'windows-1250': + case 'x-cp1250': + return 'windows-1250' + case 'cp1251': + case 'windows-1251': + case 'x-cp1251': + return 'windows-1251' + case 'ansi_x3.4-1968': + case 'ascii': + case 'cp1252': + case 'cp819': + case 'csisolatin1': + case 'ibm819': + case 'iso-8859-1': + case 'iso-ir-100': + case 'iso8859-1': + case 'iso88591': + case 'iso_8859-1': + case 'iso_8859-1:1987': + case 'l1': + case 'latin1': + case 'us-ascii': + case 'windows-1252': + case 'x-cp1252': + return 'windows-1252' + case 'cp1253': + case 'windows-1253': + case 'x-cp1253': + return 'windows-1253' + case 'cp1254': + case 'csisolatin5': + case 'iso-8859-9': + case 'iso-ir-148': + case 'iso8859-9': + case 'iso88599': + case 'iso_8859-9': + case 'iso_8859-9:1989': + case 'l5': + case 'latin5': + case 'windows-1254': + case 'x-cp1254': + return 'windows-1254' + case 'cp1255': + case 'windows-1255': + case 'x-cp1255': + return 'windows-1255' + case 'cp1256': + case 'windows-1256': + case 'x-cp1256': + return 'windows-1256' + case 'cp1257': + case 'windows-1257': + case 'x-cp1257': + return 'windows-1257' + case 'cp1258': + case 'windows-1258': + case 'x-cp1258': + return 'windows-1258' + case 'x-mac-cyrillic': + case 'x-mac-ukrainian': + return 'x-mac-cyrillic' + case 'chinese': + case 'csgb2312': + case 'csiso58gb231280': + case 'gb2312': + case 'gb_2312': + case 'gb_2312-80': + case 'gbk': + case 'iso-ir-58': + case 'x-gbk': + return 'GBK' + case 'gb18030': + return 'gb18030' + case 'big5': + case 'big5-hkscs': + case 'cn-big5': + case 'csbig5': + case 'x-x-big5': + return 'Big5' + case 'cseucpkdfmtjapanese': + case 'euc-jp': + case 'x-euc-jp': + return 'EUC-JP' + case 'csiso2022jp': + case 'iso-2022-jp': + return 'ISO-2022-JP' + case 'csshiftjis': + case 'ms932': + case 'ms_kanji': + case 'shift-jis': + case 'shift_jis': + case 'sjis': + case 'windows-31j': + case 'x-sjis': + return 'Shift_JIS' + case 'cseuckr': + case 'csksc56011987': + case 'euc-kr': + case 'iso-ir-149': + case 'korean': + case 'ks_c_5601-1987': + case 'ks_c_5601-1989': + case 'ksc5601': + case 'ksc_5601': + case 'windows-949': + return 'EUC-KR' + case 'csiso2022kr': + case 'hz-gb-2312': + case 'iso-2022-cn': + case 'iso-2022-cn-ext': + case 'iso-2022-kr': + case 'replacement': + return 'replacement' + case 'unicodefffe': + case 'utf-16be': + return 'UTF-16BE' + case 'csunicode': + case 'iso-10646-ucs-2': + case 'ucs-2': + case 'unicode': + case 'unicodefeff': + case 'utf-16': + case 'utf-16le': + return 'UTF-16LE' + case 'x-user-defined': + return 'x-user-defined' + default: return 'failure' + } +} + +module.exports = { + getEncoding +} + + +/***/ }), + +/***/ 35658: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { + staticPropertyDescriptors, + readOperation, + fireAProgressEvent +} = __nccwpck_require__(67445) +const { + kState, + kError, + kResult, + kEvents, + kAborted +} = __nccwpck_require__(26383) +const { webidl } = __nccwpck_require__(44890) +const { kEnumerableProperty } = __nccwpck_require__(83983) + +class FileReader extends EventTarget { + constructor () { + super() + + this[kState] = 'empty' + this[kResult] = null + this[kError] = null + this[kEvents] = { + loadend: null, + error: null, + abort: null, + load: null, + progress: null, + loadstart: null + } + } + + /** + * @see https://w3c.github.io/FileAPI/#dfn-readAsArrayBuffer + * @param {import('buffer').Blob} blob + */ + readAsArrayBuffer (blob) { + webidl.brandCheck(this, FileReader) + + webidl.argumentLengthCheck(arguments, 1, 'FileReader.readAsArrayBuffer') + + blob = webidl.converters.Blob(blob, { strict: false }) + + // The readAsArrayBuffer(blob) method, when invoked, + // must initiate a read operation for blob with ArrayBuffer. + readOperation(this, blob, 'ArrayBuffer') + } + + /** + * @see https://w3c.github.io/FileAPI/#readAsBinaryString + * @param {import('buffer').Blob} blob + */ + readAsBinaryString (blob) { + webidl.brandCheck(this, FileReader) + + webidl.argumentLengthCheck(arguments, 1, 'FileReader.readAsBinaryString') + + blob = webidl.converters.Blob(blob, { strict: false }) + + // The readAsBinaryString(blob) method, when invoked, + // must initiate a read operation for blob with BinaryString. + readOperation(this, blob, 'BinaryString') + } + + /** + * @see https://w3c.github.io/FileAPI/#readAsDataText + * @param {import('buffer').Blob} blob + * @param {string?} encoding + */ + readAsText (blob, encoding = undefined) { + webidl.brandCheck(this, FileReader) + + webidl.argumentLengthCheck(arguments, 1, 'FileReader.readAsText') + + blob = webidl.converters.Blob(blob, { strict: false }) + + if (encoding !== undefined) { + encoding = webidl.converters.DOMString(encoding, 'FileReader.readAsText', 'encoding') } - /** - * Delete the immutablility policy on the blob. - * - * @param options - Optional options to delete immutability policy on the blob. - */ - async deleteImmutabilityPolicy(options) { - const { span, updatedOptions } = createSpan("BlobClient-deleteImmutabilityPolicy", options); - try { - return await this.blobContext.deleteImmutabilityPolicy(Object.assign({ abortSignal: options === null || options === void 0 ? void 0 : options.abortSignal }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // The readAsText(blob, encoding) method, when invoked, + // must initiate a read operation for blob with Text and encoding. + readOperation(this, blob, 'Text', encoding) + } + + /** + * @see https://w3c.github.io/FileAPI/#dfn-readAsDataURL + * @param {import('buffer').Blob} blob + */ + readAsDataURL (blob) { + webidl.brandCheck(this, FileReader) + + webidl.argumentLengthCheck(arguments, 1, 'FileReader.readAsDataURL') + + blob = webidl.converters.Blob(blob, { strict: false }) + + // The readAsDataURL(blob) method, when invoked, must + // initiate a read operation for blob with DataURL. + readOperation(this, blob, 'DataURL') + } + + /** + * @see https://w3c.github.io/FileAPI/#dfn-abort + */ + abort () { + // 1. If this's state is "empty" or if this's state is + // "done" set this's result to null and terminate + // this algorithm. + if (this[kState] === 'empty' || this[kState] === 'done') { + this[kResult] = null + return } - /** - * Set immutablility policy on the blob. - * - * @param options - Optional options to set immutability policy on the blob. - */ - async setImmutabilityPolicy(immutabilityPolicy, options) { - const { span, updatedOptions } = createSpan("BlobClient-setImmutabilityPolicy", options); - try { - return await this.blobContext.setImmutabilityPolicy(Object.assign({ abortSignal: options === null || options === void 0 ? void 0 : options.abortSignal, immutabilityPolicyExpiry: immutabilityPolicy.expiriesOn, immutabilityPolicyMode: immutabilityPolicy.policyMode, modifiedAccessConditions: options === null || options === void 0 ? void 0 : options.modifiedAccessCondition }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // 2. If this's state is "loading" set this's state to + // "done" and set this's result to null. + if (this[kState] === 'loading') { + this[kState] = 'done' + this[kResult] = null } - /** - * Set legal hold on the blob. - * - * @param options - Optional options to set legal hold on the blob. - */ - async setLegalHold(legalHoldEnabled, options) { - const { span, updatedOptions } = createSpan("BlobClient-setLegalHold", options); - try { - return await this.blobContext.setLegalHold(legalHoldEnabled, Object.assign({ abortSignal: options === null || options === void 0 ? void 0 : options.abortSignal }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // 3. If there are any tasks from this on the file reading + // task source in an affiliated task queue, then remove + // those tasks from that task queue. + this[kAborted] = true + + // 4. Terminate the algorithm for the read method being processed. + // TODO + + // 5. Fire a progress event called abort at this. + fireAProgressEvent('abort', this) + + // 6. If this's state is not "loading", fire a progress + // event called loadend at this. + if (this[kState] !== 'loading') { + fireAProgressEvent('loadend', this) + } + } + + /** + * @see https://w3c.github.io/FileAPI/#dom-filereader-readystate + */ + get readyState () { + webidl.brandCheck(this, FileReader) + + switch (this[kState]) { + case 'empty': return this.EMPTY + case 'loading': return this.LOADING + case 'done': return this.DONE + } + } + + /** + * @see https://w3c.github.io/FileAPI/#dom-filereader-result + */ + get result () { + webidl.brandCheck(this, FileReader) + + // The result attribute’s getter, when invoked, must return + // this's result. + return this[kResult] + } + + /** + * @see https://w3c.github.io/FileAPI/#dom-filereader-error + */ + get error () { + webidl.brandCheck(this, FileReader) + + // The error attribute’s getter, when invoked, must return + // this's error. + return this[kError] + } + + get onloadend () { + webidl.brandCheck(this, FileReader) + + return this[kEvents].loadend + } + + set onloadend (fn) { + webidl.brandCheck(this, FileReader) + + if (this[kEvents].loadend) { + this.removeEventListener('loadend', this[kEvents].loadend) + } + + if (typeof fn === 'function') { + this[kEvents].loadend = fn + this.addEventListener('loadend', fn) + } else { + this[kEvents].loadend = null + } + } + + get onerror () { + webidl.brandCheck(this, FileReader) + + return this[kEvents].error + } + + set onerror (fn) { + webidl.brandCheck(this, FileReader) + + if (this[kEvents].error) { + this.removeEventListener('error', this[kEvents].error) + } + + if (typeof fn === 'function') { + this[kEvents].error = fn + this.addEventListener('error', fn) + } else { + this[kEvents].error = null + } + } + + get onloadstart () { + webidl.brandCheck(this, FileReader) + + return this[kEvents].loadstart + } + + set onloadstart (fn) { + webidl.brandCheck(this, FileReader) + + if (this[kEvents].loadstart) { + this.removeEventListener('loadstart', this[kEvents].loadstart) + } + + if (typeof fn === 'function') { + this[kEvents].loadstart = fn + this.addEventListener('loadstart', fn) + } else { + this[kEvents].loadstart = null + } + } + + get onprogress () { + webidl.brandCheck(this, FileReader) + + return this[kEvents].progress + } + + set onprogress (fn) { + webidl.brandCheck(this, FileReader) + + if (this[kEvents].progress) { + this.removeEventListener('progress', this[kEvents].progress) + } + + if (typeof fn === 'function') { + this[kEvents].progress = fn + this.addEventListener('progress', fn) + } else { + this[kEvents].progress = null + } + } + + get onload () { + webidl.brandCheck(this, FileReader) + + return this[kEvents].load + } + + set onload (fn) { + webidl.brandCheck(this, FileReader) + + if (this[kEvents].load) { + this.removeEventListener('load', this[kEvents].load) + } + + if (typeof fn === 'function') { + this[kEvents].load = fn + this.addEventListener('load', fn) + } else { + this[kEvents].load = null + } + } + + get onabort () { + webidl.brandCheck(this, FileReader) + + return this[kEvents].abort + } + + set onabort (fn) { + webidl.brandCheck(this, FileReader) + + if (this[kEvents].abort) { + this.removeEventListener('abort', this[kEvents].abort) } + + if (typeof fn === 'function') { + this[kEvents].abort = fn + this.addEventListener('abort', fn) + } else { + this[kEvents].abort = null + } + } +} + +// https://w3c.github.io/FileAPI/#dom-filereader-empty +FileReader.EMPTY = FileReader.prototype.EMPTY = 0 +// https://w3c.github.io/FileAPI/#dom-filereader-loading +FileReader.LOADING = FileReader.prototype.LOADING = 1 +// https://w3c.github.io/FileAPI/#dom-filereader-done +FileReader.DONE = FileReader.prototype.DONE = 2 + +Object.defineProperties(FileReader.prototype, { + EMPTY: staticPropertyDescriptors, + LOADING: staticPropertyDescriptors, + DONE: staticPropertyDescriptors, + readAsArrayBuffer: kEnumerableProperty, + readAsBinaryString: kEnumerableProperty, + readAsText: kEnumerableProperty, + readAsDataURL: kEnumerableProperty, + abort: kEnumerableProperty, + readyState: kEnumerableProperty, + result: kEnumerableProperty, + error: kEnumerableProperty, + onloadstart: kEnumerableProperty, + onprogress: kEnumerableProperty, + onload: kEnumerableProperty, + onabort: kEnumerableProperty, + onerror: kEnumerableProperty, + onloadend: kEnumerableProperty, + [Symbol.toStringTag]: { + value: 'FileReader', + writable: false, + enumerable: false, + configurable: true + } +}) + +Object.defineProperties(FileReader, { + EMPTY: staticPropertyDescriptors, + LOADING: staticPropertyDescriptors, + DONE: staticPropertyDescriptors +}) + +module.exports = { + FileReader } + + +/***/ }), + +/***/ 9231: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { webidl } = __nccwpck_require__(44890) + +const kState = Symbol('ProgressEvent state') + /** - * AppendBlobClient defines a set of operations applicable to append blobs. + * @see https://xhr.spec.whatwg.org/#progressevent */ -class AppendBlobClient extends BlobClient { - constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, - // Legacy, no fix for eslint error without breaking. Disable it for this interface. - /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ - options) { - // In TypeScript we cannot simply pass all parameters to super() like below so have to duplicate the code instead. - // super(s, credentialOrPipelineOrContainerNameOrOptions, blobNameOrOptions, options); - let pipeline; - let url; - options = options || {}; - if (isPipelineLike(credentialOrPipelineOrContainerName)) { - // (url: string, pipeline: Pipeline) - url = urlOrConnectionString; - pipeline = credentialOrPipelineOrContainerName; - } - else if ((coreHttp.isNode && credentialOrPipelineOrContainerName instanceof StorageSharedKeyCredential) || - credentialOrPipelineOrContainerName instanceof AnonymousCredential || - coreHttp.isTokenCredential(credentialOrPipelineOrContainerName)) { - // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) url = urlOrConnectionString; - url = urlOrConnectionString; - options = blobNameOrOptions; - pipeline = newPipeline(credentialOrPipelineOrContainerName, options); - } - else if (!credentialOrPipelineOrContainerName && - typeof credentialOrPipelineOrContainerName !== "string") { - // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) - url = urlOrConnectionString; - // The second parameter is undefined. Use anonymous credential. - pipeline = newPipeline(new AnonymousCredential(), options); +class ProgressEvent extends Event { + constructor (type, eventInitDict = {}) { + type = webidl.converters.DOMString(type, 'ProgressEvent constructor', 'type') + eventInitDict = webidl.converters.ProgressEventInit(eventInitDict ?? {}) + + super(type, eventInitDict) + + this[kState] = { + lengthComputable: eventInitDict.lengthComputable, + loaded: eventInitDict.loaded, + total: eventInitDict.total + } + } + + get lengthComputable () { + webidl.brandCheck(this, ProgressEvent) + + return this[kState].lengthComputable + } + + get loaded () { + webidl.brandCheck(this, ProgressEvent) + + return this[kState].loaded + } + + get total () { + webidl.brandCheck(this, ProgressEvent) + + return this[kState].total + } +} + +webidl.converters.ProgressEventInit = webidl.dictionaryConverter([ + { + key: 'lengthComputable', + converter: webidl.converters.boolean, + defaultValue: () => false + }, + { + key: 'loaded', + converter: webidl.converters['unsigned long long'], + defaultValue: () => 0 + }, + { + key: 'total', + converter: webidl.converters['unsigned long long'], + defaultValue: () => 0 + }, + { + key: 'bubbles', + converter: webidl.converters.boolean, + defaultValue: () => false + }, + { + key: 'cancelable', + converter: webidl.converters.boolean, + defaultValue: () => false + }, + { + key: 'composed', + converter: webidl.converters.boolean, + defaultValue: () => false + } +]) + +module.exports = { + ProgressEvent +} + + +/***/ }), + +/***/ 26383: +/***/ ((module) => { + +"use strict"; + + +module.exports = { + kState: Symbol('FileReader state'), + kResult: Symbol('FileReader result'), + kError: Symbol('FileReader error'), + kLastProgressEventFired: Symbol('FileReader last progress event fired timestamp'), + kEvents: Symbol('FileReader events'), + kAborted: Symbol('FileReader aborted') +} + + +/***/ }), + +/***/ 67445: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { + kState, + kError, + kResult, + kAborted, + kLastProgressEventFired +} = __nccwpck_require__(26383) +const { ProgressEvent } = __nccwpck_require__(9231) +const { getEncoding } = __nccwpck_require__(60352) +const { serializeAMimeType, parseMIMEType } = __nccwpck_require__(17704) +const { types } = __nccwpck_require__(47261) +const { StringDecoder } = __nccwpck_require__(71576) +const { btoa } = __nccwpck_require__(72254) + +/** @type {PropertyDescriptor} */ +const staticPropertyDescriptors = { + enumerable: true, + writable: false, + configurable: false +} + +/** + * @see https://w3c.github.io/FileAPI/#readOperation + * @param {import('./filereader').FileReader} fr + * @param {import('buffer').Blob} blob + * @param {string} type + * @param {string?} encodingName + */ +function readOperation (fr, blob, type, encodingName) { + // 1. If fr’s state is "loading", throw an InvalidStateError + // DOMException. + if (fr[kState] === 'loading') { + throw new DOMException('Invalid state', 'InvalidStateError') + } + + // 2. Set fr’s state to "loading". + fr[kState] = 'loading' + + // 3. Set fr’s result to null. + fr[kResult] = null + + // 4. Set fr’s error to null. + fr[kError] = null + + // 5. Let stream be the result of calling get stream on blob. + /** @type {import('stream/web').ReadableStream} */ + const stream = blob.stream() + + // 6. Let reader be the result of getting a reader from stream. + const reader = stream.getReader() + + // 7. Let bytes be an empty byte sequence. + /** @type {Uint8Array[]} */ + const bytes = [] + + // 8. Let chunkPromise be the result of reading a chunk from + // stream with reader. + let chunkPromise = reader.read() + + // 9. Let isFirstChunk be true. + let isFirstChunk = true + + // 10. In parallel, while true: + // Note: "In parallel" just means non-blocking + // Note 2: readOperation itself cannot be async as double + // reading the body would then reject the promise, instead + // of throwing an error. + ;(async () => { + while (!fr[kAborted]) { + // 1. Wait for chunkPromise to be fulfilled or rejected. + try { + const { done, value } = await chunkPromise + + // 2. If chunkPromise is fulfilled, and isFirstChunk is + // true, queue a task to fire a progress event called + // loadstart at fr. + if (isFirstChunk && !fr[kAborted]) { + queueMicrotask(() => { + fireAProgressEvent('loadstart', fr) + }) } - else if (credentialOrPipelineOrContainerName && - typeof credentialOrPipelineOrContainerName === "string" && - blobNameOrOptions && - typeof blobNameOrOptions === "string") { - // (connectionString: string, containerName: string, blobName: string, options?: StoragePipelineOptions) - const containerName = credentialOrPipelineOrContainerName; - const blobName = blobNameOrOptions; - const extractedCreds = extractConnectionStringParts(urlOrConnectionString); - if (extractedCreds.kind === "AccountConnString") { - if (coreHttp.isNode) { - const sharedKeyCredential = new StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey); - url = appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)); - if (!options.proxyOptions) { - options.proxyOptions = coreHttp.getDefaultProxySettings(extractedCreds.proxyUri); - } - pipeline = newPipeline(sharedKeyCredential, options); - } - else { - throw new Error("Account connection string is only supported in Node.js environment"); - } - } - else if (extractedCreds.kind === "SASConnString") { - url = - appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)) + - "?" + - extractedCreds.accountSas; - pipeline = newPipeline(new AnonymousCredential(), options); + + // 3. Set isFirstChunk to false. + isFirstChunk = false + + // 4. If chunkPromise is fulfilled with an object whose + // done property is false and whose value property is + // a Uint8Array object, run these steps: + if (!done && types.isUint8Array(value)) { + // 1. Let bs be the byte sequence represented by the + // Uint8Array object. + + // 2. Append bs to bytes. + bytes.push(value) + + // 3. If roughly 50ms have passed since these steps + // were last invoked, queue a task to fire a + // progress event called progress at fr. + if ( + ( + fr[kLastProgressEventFired] === undefined || + Date.now() - fr[kLastProgressEventFired] >= 50 + ) && + !fr[kAborted] + ) { + fr[kLastProgressEventFired] = Date.now() + queueMicrotask(() => { + fireAProgressEvent('progress', fr) + }) + } + + // 4. Set chunkPromise to the result of reading a + // chunk from stream with reader. + chunkPromise = reader.read() + } else if (done) { + // 5. Otherwise, if chunkPromise is fulfilled with an + // object whose done property is true, queue a task + // to run the following steps and abort this algorithm: + queueMicrotask(() => { + // 1. Set fr’s state to "done". + fr[kState] = 'done' + + // 2. Let result be the result of package data given + // bytes, type, blob’s type, and encodingName. + try { + const result = packageData(bytes, type, blob.type, encodingName) + + // 4. Else: + + if (fr[kAborted]) { + return + } + + // 1. Set fr’s result to result. + fr[kResult] = result + + // 2. Fire a progress event called load at the fr. + fireAProgressEvent('load', fr) + } catch (error) { + // 3. If package data threw an exception error: + + // 1. Set fr’s error to error. + fr[kError] = error + + // 2. Fire a progress event called error at fr. + fireAProgressEvent('error', fr) } - else { - throw new Error("Connection string must be either an Account connection string or a SAS connection string"); + + // 5. If fr’s state is not "loading", fire a progress + // event called loadend at the fr. + if (fr[kState] !== 'loading') { + fireAProgressEvent('loadend', fr) } + }) + + break } - else { - throw new Error("Expecting non-empty strings for containerName and blobName parameters"); + } catch (error) { + if (fr[kAborted]) { + return } - super(url, pipeline); - this.appendBlobContext = new AppendBlob(this.storageClientContext); + + // 6. Otherwise, if chunkPromise is rejected with an + // error error, queue a task to run the following + // steps and abort this algorithm: + queueMicrotask(() => { + // 1. Set fr’s state to "done". + fr[kState] = 'done' + + // 2. Set fr’s error to error. + fr[kError] = error + + // 3. Fire a progress event called error at fr. + fireAProgressEvent('error', fr) + + // 4. If fr’s state is not "loading", fire a progress + // event called loadend at fr. + if (fr[kState] !== 'loading') { + fireAProgressEvent('loadend', fr) + } + }) + + break + } } - /** - * Creates a new AppendBlobClient object identical to the source but with the - * specified snapshot timestamp. - * Provide "" will remove the snapshot and return a Client to the base blob. - * - * @param snapshot - The snapshot timestamp. - * @returns A new AppendBlobClient object identical to the source but with the specified snapshot timestamp. - */ - withSnapshot(snapshot) { - return new AppendBlobClient(setURLParameter(this.url, URLConstants.Parameters.SNAPSHOT, snapshot.length === 0 ? undefined : snapshot), this.pipeline); + })() +} + +/** + * @see https://w3c.github.io/FileAPI/#fire-a-progress-event + * @see https://dom.spec.whatwg.org/#concept-event-fire + * @param {string} e The name of the event + * @param {import('./filereader').FileReader} reader + */ +function fireAProgressEvent (e, reader) { + // The progress event e does not bubble. e.bubbles must be false + // The progress event e is NOT cancelable. e.cancelable must be false + const event = new ProgressEvent(e, { + bubbles: false, + cancelable: false + }) + + reader.dispatchEvent(event) +} + +/** + * @see https://w3c.github.io/FileAPI/#blob-package-data + * @param {Uint8Array[]} bytes + * @param {string} type + * @param {string?} mimeType + * @param {string?} encodingName + */ +function packageData (bytes, type, mimeType, encodingName) { + // 1. A Blob has an associated package data algorithm, given + // bytes, a type, a optional mimeType, and a optional + // encodingName, which switches on type and runs the + // associated steps: + + switch (type) { + case 'DataURL': { + // 1. Return bytes as a DataURL [RFC2397] subject to + // the considerations below: + // * Use mimeType as part of the Data URL if it is + // available in keeping with the Data URL + // specification [RFC2397]. + // * If mimeType is not available return a Data URL + // without a media-type. [RFC2397]. + + // https://datatracker.ietf.org/doc/html/rfc2397#section-3 + // dataurl := "data:" [ mediatype ] [ ";base64" ] "," data + // mediatype := [ type "/" subtype ] *( ";" parameter ) + // data := *urlchar + // parameter := attribute "=" value + let dataURL = 'data:' + + const parsed = parseMIMEType(mimeType || 'application/octet-stream') + + if (parsed !== 'failure') { + dataURL += serializeAMimeType(parsed) + } + + dataURL += ';base64,' + + const decoder = new StringDecoder('latin1') + + for (const chunk of bytes) { + dataURL += btoa(decoder.write(chunk)) + } + + dataURL += btoa(decoder.end()) + + return dataURL } - /** - * Creates a 0-length append blob. Call AppendBlock to append data to an append blob. - * @see https://docs.microsoft.com/rest/api/storageservices/put-blob - * - * @param options - Options to the Append Block Create operation. - * - * - * Example usage: - * - * ```js - * const appendBlobClient = containerClient.getAppendBlobClient(""); - * await appendBlobClient.create(); - * ``` - */ - async create(options = {}) { - var _a, _b, _c; - const { span, updatedOptions } = createSpan("AppendBlobClient-create", options); - options.conditions = options.conditions || {}; - try { - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - return await this.appendBlobContext.create(0, Object.assign({ abortSignal: options.abortSignal, blobHttpHeaders: options.blobHTTPHeaders, leaseAccessConditions: options.conditions, metadata: options.metadata, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), cpkInfo: options.customerProvidedKey, encryptionScope: options.encryptionScope, immutabilityPolicyExpiry: (_b = options.immutabilityPolicy) === null || _b === void 0 ? void 0 : _b.expiriesOn, immutabilityPolicyMode: (_c = options.immutabilityPolicy) === null || _c === void 0 ? void 0 : _c.policyMode, legalHold: options.legalHold, blobTagsString: toBlobTagsString(options.tags) }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); + case 'Text': { + // 1. Let encoding be failure + let encoding = 'failure' + + // 2. If the encodingName is present, set encoding to the + // result of getting an encoding from encodingName. + if (encodingName) { + encoding = getEncoding(encodingName) + } + + // 3. If encoding is failure, and mimeType is present: + if (encoding === 'failure' && mimeType) { + // 1. Let type be the result of parse a MIME type + // given mimeType. + const type = parseMIMEType(mimeType) + + // 2. If type is not failure, set encoding to the result + // of getting an encoding from type’s parameters["charset"]. + if (type !== 'failure') { + encoding = getEncoding(type.parameters.get('charset')) } + } + + // 4. If encoding is failure, then set encoding to UTF-8. + if (encoding === 'failure') { + encoding = 'UTF-8' + } + + // 5. Decode bytes using fallback encoding encoding, and + // return the result. + return decode(bytes, encoding) } - /** - * Creates a 0-length append blob. Call AppendBlock to append data to an append blob. - * If the blob with the same name already exists, the content of the existing blob will remain unchanged. - * @see https://docs.microsoft.com/rest/api/storageservices/put-blob - * - * @param options - - */ - async createIfNotExists(options = {}) { - var _a, _b; - const { span, updatedOptions } = createSpan("AppendBlobClient-createIfNotExists", options); - const conditions = { ifNoneMatch: ETagAny }; - try { - const res = await this.create(Object.assign(Object.assign({}, updatedOptions), { conditions })); - return Object.assign(Object.assign({ succeeded: true }, res), { _response: res._response }); - } - catch (e) { - if (((_a = e.details) === null || _a === void 0 ? void 0 : _a.errorCode) === "BlobAlreadyExists") { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: "Expected exception when creating a blob only if it does not already exist.", - }); - return Object.assign(Object.assign({ succeeded: false }, (_b = e.response) === null || _b === void 0 ? void 0 : _b.parsedHeaders), { _response: e.response }); - } - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + case 'ArrayBuffer': { + // Return a new ArrayBuffer whose contents are bytes. + const sequence = combineByteSequences(bytes) + + return sequence.buffer } - /** - * Seals the append blob, making it read only. - * - * @param options - - */ - async seal(options = {}) { - var _a; - const { span, updatedOptions } = createSpan("AppendBlobClient-seal", options); - options.conditions = options.conditions || {}; - try { - return await this.appendBlobContext.seal(Object.assign({ abortSignal: options.abortSignal, appendPositionAccessConditions: options.conditions, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }) }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + case 'BinaryString': { + // Return bytes as a binary string, in which every byte + // is represented by a code unit of equal value [0..255]. + let binaryString = '' + + const decoder = new StringDecoder('latin1') + + for (const chunk of bytes) { + binaryString += decoder.write(chunk) + } + + binaryString += decoder.end() + + return binaryString + } + } +} + +/** + * @see https://encoding.spec.whatwg.org/#decode + * @param {Uint8Array[]} ioQueue + * @param {string} encoding + */ +function decode (ioQueue, encoding) { + const bytes = combineByteSequences(ioQueue) + + // 1. Let BOMEncoding be the result of BOM sniffing ioQueue. + const BOMEncoding = BOMSniffing(bytes) + + let slice = 0 + + // 2. If BOMEncoding is non-null: + if (BOMEncoding !== null) { + // 1. Set encoding to BOMEncoding. + encoding = BOMEncoding + + // 2. Read three bytes from ioQueue, if BOMEncoding is + // UTF-8; otherwise read two bytes. + // (Do nothing with those bytes.) + slice = BOMEncoding === 'UTF-8' ? 3 : 2 + } + + // 3. Process a queue with an instance of encoding’s + // decoder, ioQueue, output, and "replacement". + + // 4. Return output. + + const sliced = bytes.slice(slice) + return new TextDecoder(encoding).decode(sliced) +} + +/** + * @see https://encoding.spec.whatwg.org/#bom-sniff + * @param {Uint8Array} ioQueue + */ +function BOMSniffing (ioQueue) { + // 1. Let BOM be the result of peeking 3 bytes from ioQueue, + // converted to a byte sequence. + const [a, b, c] = ioQueue + + // 2. For each of the rows in the table below, starting with + // the first one and going down, if BOM starts with the + // bytes given in the first column, then return the + // encoding given in the cell in the second column of that + // row. Otherwise, return null. + if (a === 0xEF && b === 0xBB && c === 0xBF) { + return 'UTF-8' + } else if (a === 0xFE && b === 0xFF) { + return 'UTF-16BE' + } else if (a === 0xFF && b === 0xFE) { + return 'UTF-16LE' + } + + return null +} + +/** + * @param {Uint8Array[]} sequences + */ +function combineByteSequences (sequences) { + const size = sequences.reduce((a, b) => { + return a + b.byteLength + }, 0) + + let offset = 0 + + return sequences.reduce((a, b) => { + a.set(b, offset) + offset += b.byteLength + return a + }, new Uint8Array(size)) +} + +module.exports = { + staticPropertyDescriptors, + readOperation, + fireAProgressEvent +} + + +/***/ }), + +/***/ 88380: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { uid, states, sentCloseFrameState, emptyBuffer, opcodes } = __nccwpck_require__(93587) +const { + kReadyState, + kSentClose, + kByteParser, + kReceivedClose, + kResponse +} = __nccwpck_require__(59769) +const { fireEvent, failWebsocketConnection, isClosing, isClosed, isEstablished, parseExtensions } = __nccwpck_require__(89902) +const { channels } = __nccwpck_require__(58438) +const { CloseEvent } = __nccwpck_require__(55033) +const { makeRequest } = __nccwpck_require__(20610) +const { fetching } = __nccwpck_require__(85170) +const { Headers, getHeadersList } = __nccwpck_require__(52991) +const { getDecodeSplit } = __nccwpck_require__(1310) +const { WebsocketFrameSend } = __nccwpck_require__(2391) + +/** @type {import('crypto')} */ +let crypto +try { + crypto = __nccwpck_require__(6005) +/* c8 ignore next 3 */ +} catch { + +} + +/** + * @see https://websockets.spec.whatwg.org/#concept-websocket-establish + * @param {URL} url + * @param {string|string[]} protocols + * @param {import('./websocket').WebSocket} ws + * @param {(response: any, extensions: string[] | undefined) => void} onEstablish + * @param {Partial} options + */ +function establishWebSocketConnection (url, protocols, client, ws, onEstablish, options) { + // 1. Let requestURL be a copy of url, with its scheme set to "http", if url’s + // scheme is "ws", and to "https" otherwise. + const requestURL = url + + requestURL.protocol = url.protocol === 'ws:' ? 'http:' : 'https:' + + // 2. Let request be a new request, whose URL is requestURL, client is client, + // service-workers mode is "none", referrer is "no-referrer", mode is + // "websocket", credentials mode is "include", cache mode is "no-store" , + // and redirect mode is "error". + const request = makeRequest({ + urlList: [requestURL], + client, + serviceWorkers: 'none', + referrer: 'no-referrer', + mode: 'websocket', + credentials: 'include', + cache: 'no-store', + redirect: 'error' + }) + + // Note: undici extension, allow setting custom headers. + if (options.headers) { + const headersList = getHeadersList(new Headers(options.headers)) + + request.headersList = headersList + } + + // 3. Append (`Upgrade`, `websocket`) to request’s header list. + // 4. Append (`Connection`, `Upgrade`) to request’s header list. + // Note: both of these are handled by undici currently. + // https://github.com/nodejs/undici/blob/68c269c4144c446f3f1220951338daef4a6b5ec4/lib/client.js#L1397 + + // 5. Let keyValue be a nonce consisting of a randomly selected + // 16-byte value that has been forgiving-base64-encoded and + // isomorphic encoded. + const keyValue = crypto.randomBytes(16).toString('base64') + + // 6. Append (`Sec-WebSocket-Key`, keyValue) to request’s + // header list. + request.headersList.append('sec-websocket-key', keyValue) + + // 7. Append (`Sec-WebSocket-Version`, `13`) to request’s + // header list. + request.headersList.append('sec-websocket-version', '13') + + // 8. For each protocol in protocols, combine + // (`Sec-WebSocket-Protocol`, protocol) in request’s header + // list. + for (const protocol of protocols) { + request.headersList.append('sec-websocket-protocol', protocol) + } + + // 9. Let permessageDeflate be a user-agent defined + // "permessage-deflate" extension header value. + // https://github.com/mozilla/gecko-dev/blob/ce78234f5e653a5d3916813ff990f053510227bc/netwerk/protocol/websocket/WebSocketChannel.cpp#L2673 + const permessageDeflate = 'permessage-deflate; client_max_window_bits' + + // 10. Append (`Sec-WebSocket-Extensions`, permessageDeflate) to + // request’s header list. + request.headersList.append('sec-websocket-extensions', permessageDeflate) + + // 11. Fetch request with useParallelQueue set to true, and + // processResponse given response being these steps: + const controller = fetching({ + request, + useParallelQueue: true, + dispatcher: options.dispatcher, + processResponse (response) { + // 1. If response is a network error or its status is not 101, + // fail the WebSocket connection. + if (response.type === 'error' || response.status !== 101) { + failWebsocketConnection(ws, 'Received network error or non-101 status code.') + return + } + + // 2. If protocols is not the empty list and extracting header + // list values given `Sec-WebSocket-Protocol` and response’s + // header list results in null, failure, or the empty byte + // sequence, then fail the WebSocket connection. + if (protocols.length !== 0 && !response.headersList.get('Sec-WebSocket-Protocol')) { + failWebsocketConnection(ws, 'Server did not respond with sent protocols.') + return + } + + // 3. Follow the requirements stated step 2 to step 6, inclusive, + // of the last set of steps in section 4.1 of The WebSocket + // Protocol to validate response. This either results in fail + // the WebSocket connection or the WebSocket connection is + // established. + + // 2. If the response lacks an |Upgrade| header field or the |Upgrade| + // header field contains a value that is not an ASCII case- + // insensitive match for the value "websocket", the client MUST + // _Fail the WebSocket Connection_. + if (response.headersList.get('Upgrade')?.toLowerCase() !== 'websocket') { + failWebsocketConnection(ws, 'Server did not set Upgrade header to "websocket".') + return + } + + // 3. If the response lacks a |Connection| header field or the + // |Connection| header field doesn't contain a token that is an + // ASCII case-insensitive match for the value "Upgrade", the client + // MUST _Fail the WebSocket Connection_. + if (response.headersList.get('Connection')?.toLowerCase() !== 'upgrade') { + failWebsocketConnection(ws, 'Server did not set Connection header to "upgrade".') + return + } + + // 4. If the response lacks a |Sec-WebSocket-Accept| header field or + // the |Sec-WebSocket-Accept| contains a value other than the + // base64-encoded SHA-1 of the concatenation of the |Sec-WebSocket- + // Key| (as a string, not base64-decoded) with the string "258EAFA5- + // E914-47DA-95CA-C5AB0DC85B11" but ignoring any leading and + // trailing whitespace, the client MUST _Fail the WebSocket + // Connection_. + const secWSAccept = response.headersList.get('Sec-WebSocket-Accept') + const digest = crypto.createHash('sha1').update(keyValue + uid).digest('base64') + if (secWSAccept !== digest) { + failWebsocketConnection(ws, 'Incorrect hash received in Sec-WebSocket-Accept header.') + return + } + + // 5. If the response includes a |Sec-WebSocket-Extensions| header + // field and this header field indicates the use of an extension + // that was not present in the client's handshake (the server has + // indicated an extension not requested by the client), the client + // MUST _Fail the WebSocket Connection_. (The parsing of this + // header field to determine which extensions are requested is + // discussed in Section 9.1.) + const secExtension = response.headersList.get('Sec-WebSocket-Extensions') + let extensions + + if (secExtension !== null) { + extensions = parseExtensions(secExtension) + + if (!extensions.has('permessage-deflate')) { + failWebsocketConnection(ws, 'Sec-WebSocket-Extensions header does not match.') + return } - finally { - span.end(); + } + + // 6. If the response includes a |Sec-WebSocket-Protocol| header field + // and this header field indicates the use of a subprotocol that was + // not present in the client's handshake (the server has indicated a + // subprotocol not requested by the client), the client MUST _Fail + // the WebSocket Connection_. + const secProtocol = response.headersList.get('Sec-WebSocket-Protocol') + + if (secProtocol !== null) { + const requestProtocols = getDecodeSplit('sec-websocket-protocol', request.headersList) + + // The client can request that the server use a specific subprotocol by + // including the |Sec-WebSocket-Protocol| field in its handshake. If it + // is specified, the server needs to include the same field and one of + // the selected subprotocol values in its response for the connection to + // be established. + if (!requestProtocols.includes(secProtocol)) { + failWebsocketConnection(ws, 'Protocol was not set in the opening handshake.') + return } + } + + response.socket.on('data', onSocketData) + response.socket.on('close', onSocketClose) + response.socket.on('error', onSocketError) + + if (channels.open.hasSubscribers) { + channels.open.publish({ + address: response.socket.address(), + protocol: secProtocol, + extensions: secExtension + }) + } + + onEstablish(response, extensions) } - /** - * Commits a new block of data to the end of the existing append blob. - * @see https://docs.microsoft.com/rest/api/storageservices/append-block - * - * @param body - Data to be appended. - * @param contentLength - Length of the body in bytes. - * @param options - Options to the Append Block operation. - * - * - * Example usage: - * - * ```js - * const content = "Hello World!"; - * - * // Create a new append blob and append data to the blob. - * const newAppendBlobClient = containerClient.getAppendBlobClient(""); - * await newAppendBlobClient.create(); - * await newAppendBlobClient.appendBlock(content, content.length); - * - * // Append data to an existing append blob. - * const existingAppendBlobClient = containerClient.getAppendBlobClient(""); - * await existingAppendBlobClient.appendBlock(content, content.length); - * ``` - */ - async appendBlock(body, contentLength, options = {}) { - var _a; - const { span, updatedOptions } = createSpan("AppendBlobClient-appendBlock", options); - options.conditions = options.conditions || {}; - try { - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - return await this.appendBlobContext.appendBlock(contentLength, body, Object.assign({ abortSignal: options.abortSignal, appendPositionAccessConditions: options.conditions, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), requestOptions: { - onUploadProgress: options.onProgress, - }, transactionalContentMD5: options.transactionalContentMD5, transactionalContentCrc64: options.transactionalContentCrc64, cpkInfo: options.customerProvidedKey, encryptionScope: options.encryptionScope }, convertTracingToRequestOptionsBase(updatedOptions))); + }) + + return controller +} + +function closeWebSocketConnection (ws, code, reason, reasonByteLength) { + if (isClosing(ws) || isClosed(ws)) { + // If this's ready state is CLOSING (2) or CLOSED (3) + // Do nothing. + } else if (!isEstablished(ws)) { + // If the WebSocket connection is not yet established + // Fail the WebSocket connection and set this's ready state + // to CLOSING (2). + failWebsocketConnection(ws, 'Connection was closed before it was established.') + ws[kReadyState] = states.CLOSING + } else if (ws[kSentClose] === sentCloseFrameState.NOT_SENT) { + // If the WebSocket closing handshake has not yet been started + // Start the WebSocket closing handshake and set this's ready + // state to CLOSING (2). + // - If neither code nor reason is present, the WebSocket Close + // message must not have a body. + // - If code is present, then the status code to use in the + // WebSocket Close message must be the integer given by code. + // - If reason is also present, then reasonBytes must be + // provided in the Close message after the status code. + + ws[kSentClose] = sentCloseFrameState.PROCESSING + + const frame = new WebsocketFrameSend() + + // If neither code nor reason is present, the WebSocket Close + // message must not have a body. + + // If code is present, then the status code to use in the + // WebSocket Close message must be the integer given by code. + if (code !== undefined && reason === undefined) { + frame.frameData = Buffer.allocUnsafe(2) + frame.frameData.writeUInt16BE(code, 0) + } else if (code !== undefined && reason !== undefined) { + // If reason is also present, then reasonBytes must be + // provided in the Close message after the status code. + frame.frameData = Buffer.allocUnsafe(2 + reasonByteLength) + frame.frameData.writeUInt16BE(code, 0) + // the body MAY contain UTF-8-encoded data with value /reason/ + frame.frameData.write(reason, 2, 'utf-8') + } else { + frame.frameData = emptyBuffer + } + + /** @type {import('stream').Duplex} */ + const socket = ws[kResponse].socket + + socket.write(frame.createFrame(opcodes.CLOSE)) + + ws[kSentClose] = sentCloseFrameState.SENT + + // Upon either sending or receiving a Close control frame, it is said + // that _The WebSocket Closing Handshake is Started_ and that the + // WebSocket connection is in the CLOSING state. + ws[kReadyState] = states.CLOSING + } else { + // Otherwise + // Set this's ready state to CLOSING (2). + ws[kReadyState] = states.CLOSING + } +} + +/** + * @param {Buffer} chunk + */ +function onSocketData (chunk) { + if (!this.ws[kByteParser].write(chunk)) { + this.pause() + } +} + +/** + * @see https://websockets.spec.whatwg.org/#feedback-from-the-protocol + * @see https://datatracker.ietf.org/doc/html/rfc6455#section-7.1.4 + */ +function onSocketClose () { + const { ws } = this + const { [kResponse]: response } = ws + + response.socket.off('data', onSocketData) + response.socket.off('close', onSocketClose) + response.socket.off('error', onSocketError) + + // If the TCP connection was closed after the + // WebSocket closing handshake was completed, the WebSocket connection + // is said to have been closed _cleanly_. + const wasClean = ws[kSentClose] === sentCloseFrameState.SENT && ws[kReceivedClose] + + let code = 1005 + let reason = '' + + const result = ws[kByteParser].closingInfo + + if (result && !result.error) { + code = result.code ?? 1005 + reason = result.reason + } else if (!ws[kReceivedClose]) { + // If _The WebSocket + // Connection is Closed_ and no Close control frame was received by the + // endpoint (such as could occur if the underlying transport connection + // is lost), _The WebSocket Connection Close Code_ is considered to be + // 1006. + code = 1006 + } + + // 1. Change the ready state to CLOSED (3). + ws[kReadyState] = states.CLOSED + + // 2. If the user agent was required to fail the WebSocket + // connection, or if the WebSocket connection was closed + // after being flagged as full, fire an event named error + // at the WebSocket object. + // TODO + + // 3. Fire an event named close at the WebSocket object, + // using CloseEvent, with the wasClean attribute + // initialized to true if the connection closed cleanly + // and false otherwise, the code attribute initialized to + // the WebSocket connection close code, and the reason + // attribute initialized to the result of applying UTF-8 + // decode without BOM to the WebSocket connection close + // reason. + // TODO: process.nextTick + fireEvent('close', ws, (type, init) => new CloseEvent(type, init), { + wasClean, code, reason + }) + + if (channels.close.hasSubscribers) { + channels.close.publish({ + websocket: ws, + code, + reason + }) + } +} + +function onSocketError (error) { + const { ws } = this + + ws[kReadyState] = states.CLOSING + + if (channels.socketError.hasSubscribers) { + channels.socketError.publish(error) + } + + this.destroy() +} + +module.exports = { + establishWebSocketConnection, + closeWebSocketConnection +} + + +/***/ }), + +/***/ 93587: +/***/ ((module) => { + +"use strict"; + + +// This is a Globally Unique Identifier unique used +// to validate that the endpoint accepts websocket +// connections. +// See https://www.rfc-editor.org/rfc/rfc6455.html#section-1.3 +const uid = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11' + +/** @type {PropertyDescriptor} */ +const staticPropertyDescriptors = { + enumerable: true, + writable: false, + configurable: false +} + +const states = { + CONNECTING: 0, + OPEN: 1, + CLOSING: 2, + CLOSED: 3 +} + +const sentCloseFrameState = { + NOT_SENT: 0, + PROCESSING: 1, + SENT: 2 +} + +const opcodes = { + CONTINUATION: 0x0, + TEXT: 0x1, + BINARY: 0x2, + CLOSE: 0x8, + PING: 0x9, + PONG: 0xA +} + +const maxUnsigned16Bit = 2 ** 16 - 1 // 65535 + +const parserStates = { + INFO: 0, + PAYLOADLENGTH_16: 2, + PAYLOADLENGTH_64: 3, + READ_DATA: 4 +} + +const emptyBuffer = Buffer.allocUnsafe(0) + +const sendHints = { + string: 1, + typedArray: 2, + arrayBuffer: 3, + blob: 4 +} + +module.exports = { + uid, + sentCloseFrameState, + staticPropertyDescriptors, + states, + opcodes, + maxUnsigned16Bit, + parserStates, + emptyBuffer, + sendHints +} + + +/***/ }), + +/***/ 55033: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { webidl } = __nccwpck_require__(44890) +const { kEnumerableProperty } = __nccwpck_require__(83983) +const { kConstruct } = __nccwpck_require__(72785) +const { MessagePort } = __nccwpck_require__(24086) + +/** + * @see https://html.spec.whatwg.org/multipage/comms.html#messageevent + */ +class MessageEvent extends Event { + #eventInit + + constructor (type, eventInitDict = {}) { + if (type === kConstruct) { + super(arguments[1], arguments[2]) + webidl.util.markAsUncloneable(this) + return + } + + const prefix = 'MessageEvent constructor' + webidl.argumentLengthCheck(arguments, 1, prefix) + + type = webidl.converters.DOMString(type, prefix, 'type') + eventInitDict = webidl.converters.MessageEventInit(eventInitDict, prefix, 'eventInitDict') + + super(type, eventInitDict) + + this.#eventInit = eventInitDict + webidl.util.markAsUncloneable(this) + } + + get data () { + webidl.brandCheck(this, MessageEvent) + + return this.#eventInit.data + } + + get origin () { + webidl.brandCheck(this, MessageEvent) + + return this.#eventInit.origin + } + + get lastEventId () { + webidl.brandCheck(this, MessageEvent) + + return this.#eventInit.lastEventId + } + + get source () { + webidl.brandCheck(this, MessageEvent) + + return this.#eventInit.source + } + + get ports () { + webidl.brandCheck(this, MessageEvent) + + if (!Object.isFrozen(this.#eventInit.ports)) { + Object.freeze(this.#eventInit.ports) + } + + return this.#eventInit.ports + } + + initMessageEvent ( + type, + bubbles = false, + cancelable = false, + data = null, + origin = '', + lastEventId = '', + source = null, + ports = [] + ) { + webidl.brandCheck(this, MessageEvent) + + webidl.argumentLengthCheck(arguments, 1, 'MessageEvent.initMessageEvent') + + return new MessageEvent(type, { + bubbles, cancelable, data, origin, lastEventId, source, ports + }) + } + + static createFastMessageEvent (type, init) { + const messageEvent = new MessageEvent(kConstruct, type, init) + messageEvent.#eventInit = init + messageEvent.#eventInit.data ??= null + messageEvent.#eventInit.origin ??= '' + messageEvent.#eventInit.lastEventId ??= '' + messageEvent.#eventInit.source ??= null + messageEvent.#eventInit.ports ??= [] + return messageEvent + } +} + +const { createFastMessageEvent } = MessageEvent +delete MessageEvent.createFastMessageEvent + +/** + * @see https://websockets.spec.whatwg.org/#the-closeevent-interface + */ +class CloseEvent extends Event { + #eventInit + + constructor (type, eventInitDict = {}) { + const prefix = 'CloseEvent constructor' + webidl.argumentLengthCheck(arguments, 1, prefix) + + type = webidl.converters.DOMString(type, prefix, 'type') + eventInitDict = webidl.converters.CloseEventInit(eventInitDict) + + super(type, eventInitDict) + + this.#eventInit = eventInitDict + webidl.util.markAsUncloneable(this) + } + + get wasClean () { + webidl.brandCheck(this, CloseEvent) + + return this.#eventInit.wasClean + } + + get code () { + webidl.brandCheck(this, CloseEvent) + + return this.#eventInit.code + } + + get reason () { + webidl.brandCheck(this, CloseEvent) + + return this.#eventInit.reason + } +} + +// https://html.spec.whatwg.org/multipage/webappapis.html#the-errorevent-interface +class ErrorEvent extends Event { + #eventInit + + constructor (type, eventInitDict) { + const prefix = 'ErrorEvent constructor' + webidl.argumentLengthCheck(arguments, 1, prefix) + + super(type, eventInitDict) + webidl.util.markAsUncloneable(this) + + type = webidl.converters.DOMString(type, prefix, 'type') + eventInitDict = webidl.converters.ErrorEventInit(eventInitDict ?? {}) + + this.#eventInit = eventInitDict + } + + get message () { + webidl.brandCheck(this, ErrorEvent) + + return this.#eventInit.message + } + + get filename () { + webidl.brandCheck(this, ErrorEvent) + + return this.#eventInit.filename + } + + get lineno () { + webidl.brandCheck(this, ErrorEvent) + + return this.#eventInit.lineno + } + + get colno () { + webidl.brandCheck(this, ErrorEvent) + + return this.#eventInit.colno + } + + get error () { + webidl.brandCheck(this, ErrorEvent) + + return this.#eventInit.error + } +} + +Object.defineProperties(MessageEvent.prototype, { + [Symbol.toStringTag]: { + value: 'MessageEvent', + configurable: true + }, + data: kEnumerableProperty, + origin: kEnumerableProperty, + lastEventId: kEnumerableProperty, + source: kEnumerableProperty, + ports: kEnumerableProperty, + initMessageEvent: kEnumerableProperty +}) + +Object.defineProperties(CloseEvent.prototype, { + [Symbol.toStringTag]: { + value: 'CloseEvent', + configurable: true + }, + reason: kEnumerableProperty, + code: kEnumerableProperty, + wasClean: kEnumerableProperty +}) + +Object.defineProperties(ErrorEvent.prototype, { + [Symbol.toStringTag]: { + value: 'ErrorEvent', + configurable: true + }, + message: kEnumerableProperty, + filename: kEnumerableProperty, + lineno: kEnumerableProperty, + colno: kEnumerableProperty, + error: kEnumerableProperty +}) + +webidl.converters.MessagePort = webidl.interfaceConverter(MessagePort) + +webidl.converters['sequence'] = webidl.sequenceConverter( + webidl.converters.MessagePort +) + +const eventInit = [ + { + key: 'bubbles', + converter: webidl.converters.boolean, + defaultValue: () => false + }, + { + key: 'cancelable', + converter: webidl.converters.boolean, + defaultValue: () => false + }, + { + key: 'composed', + converter: webidl.converters.boolean, + defaultValue: () => false + } +] + +webidl.converters.MessageEventInit = webidl.dictionaryConverter([ + ...eventInit, + { + key: 'data', + converter: webidl.converters.any, + defaultValue: () => null + }, + { + key: 'origin', + converter: webidl.converters.USVString, + defaultValue: () => '' + }, + { + key: 'lastEventId', + converter: webidl.converters.DOMString, + defaultValue: () => '' + }, + { + key: 'source', + // Node doesn't implement WindowProxy or ServiceWorker, so the only + // valid value for source is a MessagePort. + converter: webidl.nullableConverter(webidl.converters.MessagePort), + defaultValue: () => null + }, + { + key: 'ports', + converter: webidl.converters['sequence'], + defaultValue: () => new Array(0) + } +]) + +webidl.converters.CloseEventInit = webidl.dictionaryConverter([ + ...eventInit, + { + key: 'wasClean', + converter: webidl.converters.boolean, + defaultValue: () => false + }, + { + key: 'code', + converter: webidl.converters['unsigned short'], + defaultValue: () => 0 + }, + { + key: 'reason', + converter: webidl.converters.USVString, + defaultValue: () => '' + } +]) + +webidl.converters.ErrorEventInit = webidl.dictionaryConverter([ + ...eventInit, + { + key: 'message', + converter: webidl.converters.DOMString, + defaultValue: () => '' + }, + { + key: 'filename', + converter: webidl.converters.USVString, + defaultValue: () => '' + }, + { + key: 'lineno', + converter: webidl.converters['unsigned long'], + defaultValue: () => 0 + }, + { + key: 'colno', + converter: webidl.converters['unsigned long'], + defaultValue: () => 0 + }, + { + key: 'error', + converter: webidl.converters.any + } +]) + +module.exports = { + MessageEvent, + CloseEvent, + ErrorEvent, + createFastMessageEvent +} + + +/***/ }), + +/***/ 2391: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { maxUnsigned16Bit } = __nccwpck_require__(93587) + +const BUFFER_SIZE = 16386 + +/** @type {import('crypto')} */ +let crypto +let buffer = null +let bufIdx = BUFFER_SIZE + +try { + crypto = __nccwpck_require__(6005) +/* c8 ignore next 3 */ +} catch { + crypto = { + // not full compatibility, but minimum. + randomFillSync: function randomFillSync (buffer, _offset, _size) { + for (let i = 0; i < buffer.length; ++i) { + buffer[i] = Math.random() * 255 | 0 + } + return buffer + } + } +} + +function generateMask () { + if (bufIdx === BUFFER_SIZE) { + bufIdx = 0 + crypto.randomFillSync((buffer ??= Buffer.allocUnsafe(BUFFER_SIZE)), 0, BUFFER_SIZE) + } + return [buffer[bufIdx++], buffer[bufIdx++], buffer[bufIdx++], buffer[bufIdx++]] +} + +class WebsocketFrameSend { + /** + * @param {Buffer|undefined} data + */ + constructor (data) { + this.frameData = data + } + + createFrame (opcode) { + const frameData = this.frameData + const maskKey = generateMask() + const bodyLength = frameData?.byteLength ?? 0 + + /** @type {number} */ + let payloadLength = bodyLength // 0-125 + let offset = 6 + + if (bodyLength > maxUnsigned16Bit) { + offset += 8 // payload length is next 8 bytes + payloadLength = 127 + } else if (bodyLength > 125) { + offset += 2 // payload length is next 2 bytes + payloadLength = 126 + } + + const buffer = Buffer.allocUnsafe(bodyLength + offset) + + // Clear first 2 bytes, everything else is overwritten + buffer[0] = buffer[1] = 0 + buffer[0] |= 0x80 // FIN + buffer[0] = (buffer[0] & 0xF0) + opcode // opcode + + /*! ws. MIT License. Einar Otto Stangvik */ + buffer[offset - 4] = maskKey[0] + buffer[offset - 3] = maskKey[1] + buffer[offset - 2] = maskKey[2] + buffer[offset - 1] = maskKey[3] + + buffer[1] = payloadLength + + if (payloadLength === 126) { + buffer.writeUInt16BE(bodyLength, 2) + } else if (payloadLength === 127) { + // Clear extended payload length + buffer[2] = buffer[3] = 0 + buffer.writeUIntBE(bodyLength, 4, 6) + } + + buffer[1] |= 0x80 // MASK + + // mask body + for (let i = 0; i < bodyLength; ++i) { + buffer[offset + i] = frameData[i] ^ maskKey[i & 3] + } + + return buffer + } +} + +module.exports = { + WebsocketFrameSend +} + + +/***/ }), + +/***/ 68236: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { createInflateRaw, Z_DEFAULT_WINDOWBITS } = __nccwpck_require__(65628) +const { isValidClientWindowBits } = __nccwpck_require__(89902) +const { MessageSizeExceededError } = __nccwpck_require__(48045) + +const tail = Buffer.from([0x00, 0x00, 0xff, 0xff]) +const kBuffer = Symbol('kBuffer') +const kLength = Symbol('kLength') + +// Default maximum decompressed message size: 4 MB +const kDefaultMaxDecompressedSize = 4 * 1024 * 1024 + +class PerMessageDeflate { + /** @type {import('node:zlib').InflateRaw} */ + #inflate + + #options = {} + + /** @type {boolean} */ + #aborted = false + + /** @type {Function|null} */ + #currentCallback = null + + /** + * @param {Map} extensions + */ + constructor (extensions) { + this.#options.serverNoContextTakeover = extensions.has('server_no_context_takeover') + this.#options.serverMaxWindowBits = extensions.get('server_max_window_bits') + } + + decompress (chunk, fin, callback) { + // An endpoint uses the following algorithm to decompress a message. + // 1. Append 4 octets of 0x00 0x00 0xff 0xff to the tail end of the + // payload of the message. + // 2. Decompress the resulting data using DEFLATE. + + if (this.#aborted) { + callback(new MessageSizeExceededError()) + return + } + + if (!this.#inflate) { + let windowBits = Z_DEFAULT_WINDOWBITS + + if (this.#options.serverMaxWindowBits) { // empty values default to Z_DEFAULT_WINDOWBITS + if (!isValidClientWindowBits(this.#options.serverMaxWindowBits)) { + callback(new Error('Invalid server_max_window_bits')) + return } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + + windowBits = Number.parseInt(this.#options.serverMaxWindowBits) + } + + try { + this.#inflate = createInflateRaw({ windowBits }) + } catch (err) { + callback(err) + return + } + this.#inflate[kBuffer] = [] + this.#inflate[kLength] = 0 + + this.#inflate.on('data', (data) => { + if (this.#aborted) { + return } - finally { - span.end(); + + this.#inflate[kLength] += data.length + + if (this.#inflate[kLength] > kDefaultMaxDecompressedSize) { + this.#aborted = true + this.#inflate.removeAllListeners() + this.#inflate.destroy() + this.#inflate = null + + if (this.#currentCallback) { + const cb = this.#currentCallback + this.#currentCallback = null + cb(new MessageSizeExceededError()) + } + return } + + this.#inflate[kBuffer].push(data) + }) + + this.#inflate.on('error', (err) => { + this.#inflate = null + callback(err) + }) } - /** - * The Append Block operation commits a new block of data to the end of an existing append blob - * where the contents are read from a source url. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/append-block-from-url - * - * @param sourceURL - - * The url to the blob that will be the source of the copy. A source blob in the same storage account can - * be authenticated via Shared Key. However, if the source is a blob in another account, the source blob - * must either be public or must be authenticated via a shared access signature. If the source blob is - * public, no authentication is required to perform the operation. - * @param sourceOffset - Offset in source to be appended - * @param count - Number of bytes to be appended as a block - * @param options - - */ - async appendBlockFromURL(sourceURL, sourceOffset, count, options = {}) { - var _a; - const { span, updatedOptions } = createSpan("AppendBlobClient-appendBlockFromURL", options); - options.conditions = options.conditions || {}; - options.sourceConditions = options.sourceConditions || {}; - try { - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - return await this.appendBlobContext.appendBlockFromUrl(sourceURL, 0, Object.assign({ abortSignal: options.abortSignal, sourceRange: rangeToString({ offset: sourceOffset, count }), sourceContentMD5: options.sourceContentMD5, sourceContentCrc64: options.sourceContentCrc64, leaseAccessConditions: options.conditions, appendPositionAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), sourceModifiedAccessConditions: { - sourceIfMatch: options.sourceConditions.ifMatch, - sourceIfModifiedSince: options.sourceConditions.ifModifiedSince, - sourceIfNoneMatch: options.sourceConditions.ifNoneMatch, - sourceIfUnmodifiedSince: options.sourceConditions.ifUnmodifiedSince, - }, copySourceAuthorization: httpAuthorizationToString(options.sourceAuthorization), cpkInfo: options.customerProvidedKey, encryptionScope: options.encryptionScope }, convertTracingToRequestOptionsBase(updatedOptions))); + + this.#currentCallback = callback + this.#inflate.write(chunk) + if (fin) { + this.#inflate.write(tail) + } + + this.#inflate.flush(() => { + if (this.#aborted || !this.#inflate) { + return + } + + const full = Buffer.concat(this.#inflate[kBuffer], this.#inflate[kLength]) + + this.#inflate[kBuffer].length = 0 + this.#inflate[kLength] = 0 + this.#currentCallback = null + + callback(null, full) + }) + } +} + +module.exports = { PerMessageDeflate } + + +/***/ }), + +/***/ 85442: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { Writable } = __nccwpck_require__(84492) +const assert = __nccwpck_require__(98061) +const { parserStates, opcodes, states, emptyBuffer, sentCloseFrameState } = __nccwpck_require__(93587) +const { kReadyState, kSentClose, kResponse, kReceivedClose } = __nccwpck_require__(59769) +const { channels } = __nccwpck_require__(58438) +const { + isValidStatusCode, + isValidOpcode, + failWebsocketConnection, + websocketMessageReceived, + utf8Decode, + isControlFrame, + isTextBinaryFrame, + isContinuationFrame +} = __nccwpck_require__(89902) +const { WebsocketFrameSend } = __nccwpck_require__(2391) +const { closeWebSocketConnection } = __nccwpck_require__(88380) +const { PerMessageDeflate } = __nccwpck_require__(68236) + +// This code was influenced by ws released under the MIT license. +// Copyright (c) 2011 Einar Otto Stangvik +// Copyright (c) 2013 Arnout Kazemier and contributors +// Copyright (c) 2016 Luigi Pinca and contributors + +class ByteParser extends Writable { + #buffers = [] + #byteOffset = 0 + #loop = false + + #state = parserStates.INFO + + #info = {} + #fragments = [] + + /** @type {Map} */ + #extensions + + /** + * @param {import('./websocket').WebSocket} ws + * @param {Map|null} extensions + */ + constructor (ws, extensions) { + super() + + this.ws = ws + this.#extensions = extensions == null ? new Map() : extensions + + if (this.#extensions.has('permessage-deflate')) { + this.#extensions.set('permessage-deflate', new PerMessageDeflate(extensions)) + } + } + + /** + * @param {Buffer} chunk + * @param {() => void} callback + */ + _write (chunk, _, callback) { + this.#buffers.push(chunk) + this.#byteOffset += chunk.length + this.#loop = true + + this.run(callback) + } + + /** + * Runs whenever a new chunk is received. + * Callback is called whenever there are no more chunks buffering, + * or not enough bytes are buffered to parse. + */ + run (callback) { + while (this.#loop) { + if (this.#state === parserStates.INFO) { + // If there aren't enough bytes to parse the payload length, etc. + if (this.#byteOffset < 2) { + return callback() } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + + const buffer = this.consume(2) + const fin = (buffer[0] & 0x80) !== 0 + const opcode = buffer[0] & 0x0F + const masked = (buffer[1] & 0x80) === 0x80 + + const fragmented = !fin && opcode !== opcodes.CONTINUATION + const payloadLength = buffer[1] & 0x7F + + const rsv1 = buffer[0] & 0x40 + const rsv2 = buffer[0] & 0x20 + const rsv3 = buffer[0] & 0x10 + + if (!isValidOpcode(opcode)) { + failWebsocketConnection(this.ws, 'Invalid opcode received') + return callback() } - finally { - span.end(); + + if (masked) { + failWebsocketConnection(this.ws, 'Frame cannot be masked') + return callback() } - } -} -/** - * BlockBlobClient defines a set of operations applicable to block blobs. - */ -class BlockBlobClient extends BlobClient { - constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, - // Legacy, no fix for eslint error without breaking. Disable it for this interface. - /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ - options) { - // In TypeScript we cannot simply pass all parameters to super() like below so have to duplicate the code instead. - // super(s, credentialOrPipelineOrContainerNameOrOptions, blobNameOrOptions, options); - let pipeline; - let url; - options = options || {}; - if (isPipelineLike(credentialOrPipelineOrContainerName)) { - // (url: string, pipeline: Pipeline) - url = urlOrConnectionString; - pipeline = credentialOrPipelineOrContainerName; + + // MUST be 0 unless an extension is negotiated that defines meanings + // for non-zero values. If a nonzero value is received and none of + // the negotiated extensions defines the meaning of such a nonzero + // value, the receiving endpoint MUST _Fail the WebSocket + // Connection_. + // This document allocates the RSV1 bit of the WebSocket header for + // PMCEs and calls the bit the "Per-Message Compressed" bit. On a + // WebSocket connection where a PMCE is in use, this bit indicates + // whether a message is compressed or not. + if (rsv1 !== 0 && !this.#extensions.has('permessage-deflate')) { + failWebsocketConnection(this.ws, 'Expected RSV1 to be clear.') + return } - else if ((coreHttp.isNode && credentialOrPipelineOrContainerName instanceof StorageSharedKeyCredential) || - credentialOrPipelineOrContainerName instanceof AnonymousCredential || - coreHttp.isTokenCredential(credentialOrPipelineOrContainerName)) { - // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) - url = urlOrConnectionString; - options = blobNameOrOptions; - pipeline = newPipeline(credentialOrPipelineOrContainerName, options); + + if (rsv2 !== 0 || rsv3 !== 0) { + failWebsocketConnection(this.ws, 'RSV1, RSV2, RSV3 must be clear') + return } - else if (!credentialOrPipelineOrContainerName && - typeof credentialOrPipelineOrContainerName !== "string") { - // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) - // The second parameter is undefined. Use anonymous credential. - url = urlOrConnectionString; - pipeline = newPipeline(new AnonymousCredential(), options); + + if (fragmented && !isTextBinaryFrame(opcode)) { + // Only text and binary frames can be fragmented + failWebsocketConnection(this.ws, 'Invalid frame type was fragmented.') + return } - else if (credentialOrPipelineOrContainerName && - typeof credentialOrPipelineOrContainerName === "string" && - blobNameOrOptions && - typeof blobNameOrOptions === "string") { - // (connectionString: string, containerName: string, blobName: string, options?: StoragePipelineOptions) - const containerName = credentialOrPipelineOrContainerName; - const blobName = blobNameOrOptions; - const extractedCreds = extractConnectionStringParts(urlOrConnectionString); - if (extractedCreds.kind === "AccountConnString") { - if (coreHttp.isNode) { - const sharedKeyCredential = new StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey); - url = appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)); - if (!options.proxyOptions) { - options.proxyOptions = coreHttp.getDefaultProxySettings(extractedCreds.proxyUri); - } - pipeline = newPipeline(sharedKeyCredential, options); - } - else { - throw new Error("Account connection string is only supported in Node.js environment"); - } - } - else if (extractedCreds.kind === "SASConnString") { - url = - appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)) + - "?" + - extractedCreds.accountSas; - pipeline = newPipeline(new AnonymousCredential(), options); - } - else { - throw new Error("Connection string must be either an Account connection string or a SAS connection string"); - } + + // If we are already parsing a text/binary frame and do not receive either + // a continuation frame or close frame, fail the connection. + if (isTextBinaryFrame(opcode) && this.#fragments.length > 0) { + failWebsocketConnection(this.ws, 'Expected continuation frame') + return } - else { - throw new Error("Expecting non-empty strings for containerName and blobName parameters"); + + if (this.#info.fragmented && fragmented) { + // A fragmented frame can't be fragmented itself + failWebsocketConnection(this.ws, 'Fragmented frame exceeded 125 bytes.') + return } - super(url, pipeline); - this.blockBlobContext = new BlockBlob(this.storageClientContext); - this._blobContext = new Blob$1(this.storageClientContext); - } - /** - * Creates a new BlockBlobClient object identical to the source but with the - * specified snapshot timestamp. - * Provide "" will remove the snapshot and return a URL to the base blob. - * - * @param snapshot - The snapshot timestamp. - * @returns A new BlockBlobClient object identical to the source but with the specified snapshot timestamp. - */ - withSnapshot(snapshot) { - return new BlockBlobClient(setURLParameter(this.url, URLConstants.Parameters.SNAPSHOT, snapshot.length === 0 ? undefined : snapshot), this.pipeline); - } - /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * Quick query for a JSON or CSV formatted blob. - * - * Example usage (Node.js): - * - * ```js - * // Query and convert a blob to a string - * const queryBlockBlobResponse = await blockBlobClient.query("select * from BlobStorage"); - * const downloaded = (await streamToBuffer(queryBlockBlobResponse.readableStreamBody)).toString(); - * console.log("Query blob content:", downloaded); - * - * async function streamToBuffer(readableStream) { - * return new Promise((resolve, reject) => { - * const chunks = []; - * readableStream.on("data", (data) => { - * chunks.push(data instanceof Buffer ? data : Buffer.from(data)); - * }); - * readableStream.on("end", () => { - * resolve(Buffer.concat(chunks)); - * }); - * readableStream.on("error", reject); - * }); - * } - * ``` - * - * @param query - - * @param options - - */ - async query(query, options = {}) { - var _a; - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - const { span, updatedOptions } = createSpan("BlockBlobClient-query", options); - try { - if (!coreHttp.isNode) { - throw new Error("This operation currently is only supported in Node.js."); - } - const response = await this._blobContext.query(Object.assign({ abortSignal: options.abortSignal, queryRequest: { - queryType: "SQL", - expression: query, - inputSerialization: toQuerySerialization(options.inputTextConfiguration), - outputSerialization: toQuerySerialization(options.outputTextConfiguration), - }, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }) }, convertTracingToRequestOptionsBase(updatedOptions))); - return new BlobQueryResponse(response, { - abortSignal: options.abortSignal, - onProgress: options.onProgress, - onError: options.onError, - }); + + // "All control frames MUST have a payload length of 125 bytes or less + // and MUST NOT be fragmented." + if ((payloadLength > 125 || fragmented) && isControlFrame(opcode)) { + failWebsocketConnection(this.ws, 'Control frame either too large or fragmented') + return } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + + if (isContinuationFrame(opcode) && this.#fragments.length === 0 && !this.#info.compressed) { + failWebsocketConnection(this.ws, 'Unexpected continuation frame') + return } - finally { - span.end(); + + if (payloadLength <= 125) { + this.#info.payloadLength = payloadLength + this.#state = parserStates.READ_DATA + } else if (payloadLength === 126) { + this.#state = parserStates.PAYLOADLENGTH_16 + } else if (payloadLength === 127) { + this.#state = parserStates.PAYLOADLENGTH_64 } - } - /** - * Creates a new block blob, or updates the content of an existing block blob. - * Updating an existing block blob overwrites any existing metadata on the blob. - * Partial updates are not supported; the content of the existing blob is - * overwritten with the new content. To perform a partial update of a block blob's, - * use {@link stageBlock} and {@link commitBlockList}. - * - * This is a non-parallel uploading method, please use {@link uploadFile}, - * {@link uploadStream} or {@link uploadBrowserData} for better performance - * with concurrency uploading. - * - * @see https://docs.microsoft.com/rest/api/storageservices/put-blob - * - * @param body - Blob, string, ArrayBuffer, ArrayBufferView or a function - * which returns a new Readable stream whose offset is from data source beginning. - * @param contentLength - Length of body in bytes. Use Buffer.byteLength() to calculate body length for a - * string including non non-Base64/Hex-encoded characters. - * @param options - Options to the Block Blob Upload operation. - * @returns Response data for the Block Blob Upload operation. - * - * Example usage: - * - * ```js - * const content = "Hello world!"; - * const uploadBlobResponse = await blockBlobClient.upload(content, content.length); - * ``` - */ - async upload(body, contentLength, options = {}) { - var _a, _b, _c; - options.conditions = options.conditions || {}; - const { span, updatedOptions } = createSpan("BlockBlobClient-upload", options); - try { - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - return await this.blockBlobContext.upload(contentLength, body, Object.assign({ abortSignal: options.abortSignal, blobHttpHeaders: options.blobHTTPHeaders, leaseAccessConditions: options.conditions, metadata: options.metadata, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), requestOptions: { - onUploadProgress: options.onProgress, - }, cpkInfo: options.customerProvidedKey, encryptionScope: options.encryptionScope, immutabilityPolicyExpiry: (_b = options.immutabilityPolicy) === null || _b === void 0 ? void 0 : _b.expiriesOn, immutabilityPolicyMode: (_c = options.immutabilityPolicy) === null || _c === void 0 ? void 0 : _c.policyMode, legalHold: options.legalHold, tier: toAccessTier(options.tier), blobTagsString: toBlobTagsString(options.tags) }, convertTracingToRequestOptionsBase(updatedOptions))); + + if (isTextBinaryFrame(opcode)) { + this.#info.binaryType = opcode + this.#info.compressed = rsv1 !== 0 } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + + this.#info.opcode = opcode + this.#info.masked = masked + this.#info.fin = fin + this.#info.fragmented = fragmented + } else if (this.#state === parserStates.PAYLOADLENGTH_16) { + if (this.#byteOffset < 2) { + return callback() } - finally { - span.end(); + + const buffer = this.consume(2) + + this.#info.payloadLength = buffer.readUInt16BE(0) + this.#state = parserStates.READ_DATA + } else if (this.#state === parserStates.PAYLOADLENGTH_64) { + if (this.#byteOffset < 8) { + return callback() } - } - /** - * Creates a new Block Blob where the contents of the blob are read from a given URL. - * This API is supported beginning with the 2020-04-08 version. Partial updates - * are not supported with Put Blob from URL; the content of an existing blob is overwritten with - * the content of the new blob. To perform partial updates to a block blob’s contents using a - * source URL, use {@link stageBlockFromURL} and {@link commitBlockList}. - * - * @param sourceURL - Specifies the URL of the blob. The value - * may be a URL of up to 2 KB in length that specifies a blob. - * The value should be URL-encoded as it would appear - * in a request URI. The source blob must either be public - * or must be authenticated via a shared access signature. - * If the source blob is public, no authentication is required - * to perform the operation. Here are some examples of source object URLs: - * - https://myaccount.blob.core.windows.net/mycontainer/myblob - * - https://myaccount.blob.core.windows.net/mycontainer/myblob?snapshot= - * @param options - Optional parameters. - */ - async syncUploadFromURL(sourceURL, options = {}) { - var _a, _b, _c, _d, _e; - options.conditions = options.conditions || {}; - const { span, updatedOptions } = createSpan("BlockBlobClient-syncUploadFromURL", options); - try { - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - return await this.blockBlobContext.putBlobFromUrl(0, sourceURL, Object.assign(Object.assign(Object.assign({}, options), { blobHttpHeaders: options.blobHTTPHeaders, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: options.conditions.tagConditions }), sourceModifiedAccessConditions: { - sourceIfMatch: (_a = options.sourceConditions) === null || _a === void 0 ? void 0 : _a.ifMatch, - sourceIfModifiedSince: (_b = options.sourceConditions) === null || _b === void 0 ? void 0 : _b.ifModifiedSince, - sourceIfNoneMatch: (_c = options.sourceConditions) === null || _c === void 0 ? void 0 : _c.ifNoneMatch, - sourceIfUnmodifiedSince: (_d = options.sourceConditions) === null || _d === void 0 ? void 0 : _d.ifUnmodifiedSince, - sourceIfTags: (_e = options.sourceConditions) === null || _e === void 0 ? void 0 : _e.tagConditions, - }, cpkInfo: options.customerProvidedKey, copySourceAuthorization: httpAuthorizationToString(options.sourceAuthorization), tier: toAccessTier(options.tier), blobTagsString: toBlobTagsString(options.tags) }), convertTracingToRequestOptionsBase(updatedOptions))); + + const buffer = this.consume(8) + const upper = buffer.readUInt32BE(0) + const lower = buffer.readUInt32BE(4) + + // 2^31 is the maximum bytes an arraybuffer can contain + // on 32-bit systems. Although, on 64-bit systems, this is + // 2^53-1 bytes. + // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Invalid_array_length + // https://source.chromium.org/chromium/chromium/src/+/main:v8/src/common/globals.h;drc=1946212ac0100668f14eb9e2843bdd846e510a1e;bpv=1;bpt=1;l=1275 + // https://source.chromium.org/chromium/chromium/src/+/main:v8/src/objects/js-array-buffer.h;l=34;drc=1946212ac0100668f14eb9e2843bdd846e510a1e + if (upper !== 0 || lower > 2 ** 31 - 1) { + failWebsocketConnection(this.ws, 'Received payload length > 2^31 bytes.') + return } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + + this.#info.payloadLength = lower + this.#state = parserStates.READ_DATA + } else if (this.#state === parserStates.READ_DATA) { + if (this.#byteOffset < this.#info.payloadLength) { + return callback() } - finally { - span.end(); + + const body = this.consume(this.#info.payloadLength) + + if (isControlFrame(this.#info.opcode)) { + this.#loop = this.parseControlFrame(body) + this.#state = parserStates.INFO + } else { + if (!this.#info.compressed) { + this.#fragments.push(body) + + // If the frame is not fragmented, a message has been received. + // If the frame is fragmented, it will terminate with a fin bit set + // and an opcode of 0 (continuation), therefore we handle that when + // parsing continuation frames, not here. + if (!this.#info.fragmented && this.#info.fin) { + const fullMessage = Buffer.concat(this.#fragments) + websocketMessageReceived(this.ws, this.#info.binaryType, fullMessage) + this.#fragments.length = 0 + } + + this.#state = parserStates.INFO + } else { + this.#extensions.get('permessage-deflate').decompress(body, this.#info.fin, (error, data) => { + if (error) { + failWebsocketConnection(this.ws, error.message) + return + } + + this.#fragments.push(data) + + if (!this.#info.fin) { + this.#state = parserStates.INFO + this.#loop = true + this.run(callback) + return + } + + websocketMessageReceived(this.ws, this.#info.binaryType, Buffer.concat(this.#fragments)) + + this.#loop = true + this.#state = parserStates.INFO + this.#fragments.length = 0 + this.run(callback) + }) + + this.#loop = false + break + } } + } } - /** - * Uploads the specified block to the block blob's "staging area" to be later - * committed by a call to commitBlockList. - * @see https://docs.microsoft.com/rest/api/storageservices/put-block - * - * @param blockId - A 64-byte value that is base64-encoded - * @param body - Data to upload to the staging area. - * @param contentLength - Number of bytes to upload. - * @param options - Options to the Block Blob Stage Block operation. - * @returns Response data for the Block Blob Stage Block operation. - */ - async stageBlock(blockId, body, contentLength, options = {}) { - const { span, updatedOptions } = createSpan("BlockBlobClient-stageBlock", options); - try { - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - return await this.blockBlobContext.stageBlock(blockId, contentLength, body, Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, requestOptions: { - onUploadProgress: options.onProgress, - }, transactionalContentMD5: options.transactionalContentMD5, transactionalContentCrc64: options.transactionalContentCrc64, cpkInfo: options.customerProvidedKey, encryptionScope: options.encryptionScope }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + } + + /** + * Take n bytes from the buffered Buffers + * @param {number} n + * @returns {Buffer} + */ + consume (n) { + if (n > this.#byteOffset) { + throw new Error('Called consume() before buffers satiated.') + } else if (n === 0) { + return emptyBuffer } - /** - * The Stage Block From URL operation creates a new block to be committed as part - * of a blob where the contents are read from a URL. - * This API is available starting in version 2018-03-28. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/put-block-from-url - * - * @param blockId - A 64-byte value that is base64-encoded - * @param sourceURL - Specifies the URL of the blob. The value - * may be a URL of up to 2 KB in length that specifies a blob. - * The value should be URL-encoded as it would appear - * in a request URI. The source blob must either be public - * or must be authenticated via a shared access signature. - * If the source blob is public, no authentication is required - * to perform the operation. Here are some examples of source object URLs: - * - https://myaccount.blob.core.windows.net/mycontainer/myblob - * - https://myaccount.blob.core.windows.net/mycontainer/myblob?snapshot= - * @param offset - From which position of the blob to download, greater than or equal to 0 - * @param count - How much data to be downloaded, greater than 0. Will download to the end when undefined - * @param options - Options to the Block Blob Stage Block From URL operation. - * @returns Response data for the Block Blob Stage Block From URL operation. - */ - async stageBlockFromURL(blockId, sourceURL, offset = 0, count, options = {}) { - const { span, updatedOptions } = createSpan("BlockBlobClient-stageBlockFromURL", options); - try { - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - return await this.blockBlobContext.stageBlockFromURL(blockId, 0, sourceURL, Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, sourceContentMD5: options.sourceContentMD5, sourceContentCrc64: options.sourceContentCrc64, sourceRange: offset === 0 && !count ? undefined : rangeToString({ offset, count }), cpkInfo: options.customerProvidedKey, encryptionScope: options.encryptionScope, copySourceAuthorization: httpAuthorizationToString(options.sourceAuthorization) }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + if (this.#buffers[0].length === n) { + this.#byteOffset -= this.#buffers[0].length + return this.#buffers.shift() } - /** - * Writes a blob by specifying the list of block IDs that make up the blob. - * In order to be written as part of a blob, a block must have been successfully written - * to the server in a prior {@link stageBlock} operation. You can call {@link commitBlockList} to - * update a blob by uploading only those blocks that have changed, then committing the new and existing - * blocks together. Any blocks not specified in the block list and permanently deleted. - * @see https://docs.microsoft.com/rest/api/storageservices/put-block-list - * - * @param blocks - Array of 64-byte value that is base64-encoded - * @param options - Options to the Block Blob Commit Block List operation. - * @returns Response data for the Block Blob Commit Block List operation. - */ - async commitBlockList(blocks, options = {}) { - var _a, _b, _c; - options.conditions = options.conditions || {}; - const { span, updatedOptions } = createSpan("BlockBlobClient-commitBlockList", options); - try { - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - return await this.blockBlobContext.commitBlockList({ latest: blocks }, Object.assign({ abortSignal: options.abortSignal, blobHttpHeaders: options.blobHTTPHeaders, leaseAccessConditions: options.conditions, metadata: options.metadata, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), cpkInfo: options.customerProvidedKey, encryptionScope: options.encryptionScope, immutabilityPolicyExpiry: (_b = options.immutabilityPolicy) === null || _b === void 0 ? void 0 : _b.expiriesOn, immutabilityPolicyMode: (_c = options.immutabilityPolicy) === null || _c === void 0 ? void 0 : _c.policyMode, legalHold: options.legalHold, tier: toAccessTier(options.tier), blobTagsString: toBlobTagsString(options.tags) }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + const buffer = Buffer.allocUnsafe(n) + let offset = 0 + + while (offset !== n) { + const next = this.#buffers[0] + const { length } = next + + if (length + offset === n) { + buffer.set(this.#buffers.shift(), offset) + break + } else if (length + offset > n) { + buffer.set(next.subarray(0, n - offset), offset) + this.#buffers[0] = next.subarray(n - offset) + break + } else { + buffer.set(this.#buffers.shift(), offset) + offset += next.length + } } - /** - * Returns the list of blocks that have been uploaded as part of a block blob - * using the specified block list filter. - * @see https://docs.microsoft.com/rest/api/storageservices/get-block-list - * - * @param listType - Specifies whether to return the list of committed blocks, - * the list of uncommitted blocks, or both lists together. - * @param options - Options to the Block Blob Get Block List operation. - * @returns Response data for the Block Blob Get Block List operation. - */ - async getBlockList(listType, options = {}) { - var _a; - const { span, updatedOptions } = createSpan("BlockBlobClient-getBlockList", options); - try { - const res = await this.blockBlobContext.getBlockList(listType, Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }) }, convertTracingToRequestOptionsBase(updatedOptions))); - if (!res.committedBlocks) { - res.committedBlocks = []; - } - if (!res.uncommittedBlocks) { - res.uncommittedBlocks = []; - } - return res; - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + this.#byteOffset -= n + + return buffer + } + + parseCloseBody (data) { + assert(data.length !== 1) + + // https://datatracker.ietf.org/doc/html/rfc6455#section-7.1.5 + /** @type {number|undefined} */ + let code + + if (data.length >= 2) { + // _The WebSocket Connection Close Code_ is + // defined as the status code (Section 7.4) contained in the first Close + // control frame received by the application + code = data.readUInt16BE(0) } - // High level functions - /** - * Uploads a Buffer(Node.js)/Blob(browsers)/ArrayBuffer/ArrayBufferView object to a BlockBlob. - * - * When data length is no more than the specifiled {@link BlockBlobParallelUploadOptions.maxSingleShotSize} (default is - * {@link BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES}), this method will use 1 {@link upload} call to finish the upload. - * Otherwise, this method will call {@link stageBlock} to upload blocks, and finally call {@link commitBlockList} - * to commit the block list. - * - * A common {@link BlockBlobParallelUploadOptions.blobHTTPHeaders} option to set is - * `blobContentType`, enabling the browser to provide - * functionality based on file type. - * - * @param data - Buffer(Node.js), Blob, ArrayBuffer or ArrayBufferView - * @param options - - */ - async uploadData(data, options = {}) { - const { span, updatedOptions } = createSpan("BlockBlobClient-uploadData", options); - try { - if (coreHttp.isNode) { - let buffer; - if (data instanceof Buffer) { - buffer = data; - } - else if (data instanceof ArrayBuffer) { - buffer = Buffer.from(data); - } - else { - data = data; - buffer = Buffer.from(data.buffer, data.byteOffset, data.byteLength); - } - return this.uploadSeekableInternal((offset, size) => buffer.slice(offset, offset + size), buffer.byteLength, updatedOptions); - } - else { - const browserBlob = new Blob([data]); - return this.uploadSeekableInternal((offset, size) => browserBlob.slice(offset, offset + size), browserBlob.size, updatedOptions); - } - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + if (code !== undefined && !isValidStatusCode(code)) { + return { code: 1002, reason: 'Invalid status code', error: true } } - /** - * ONLY AVAILABLE IN BROWSERS. - * - * Uploads a browser Blob/File/ArrayBuffer/ArrayBufferView object to block blob. - * - * When buffer length lesser than or equal to 256MB, this method will use 1 upload call to finish the upload. - * Otherwise, this method will call {@link stageBlock} to upload blocks, and finally call - * {@link commitBlockList} to commit the block list. - * - * A common {@link BlockBlobParallelUploadOptions.blobHTTPHeaders} option to set is - * `blobContentType`, enabling the browser to provide - * functionality based on file type. - * - * @deprecated Use {@link uploadData} instead. - * - * @param browserData - Blob, File, ArrayBuffer or ArrayBufferView - * @param options - Options to upload browser data. - * @returns Response data for the Blob Upload operation. - */ - async uploadBrowserData(browserData, options = {}) { - const { span, updatedOptions } = createSpan("BlockBlobClient-uploadBrowserData", options); - try { - const browserBlob = new Blob([browserData]); - return await this.uploadSeekableInternal((offset, size) => browserBlob.slice(offset, offset + size), browserBlob.size, updatedOptions); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // https://datatracker.ietf.org/doc/html/rfc6455#section-7.1.6 + /** @type {Buffer} */ + let reason = data.subarray(2) + + // Remove BOM + if (reason[0] === 0xEF && reason[1] === 0xBB && reason[2] === 0xBF) { + reason = reason.subarray(3) } - /** - * - * Uploads data to block blob. Requires a bodyFactory as the data source, - * which need to return a {@link HttpRequestBody} object with the offset and size provided. - * - * When data length is no more than the specified {@link BlockBlobParallelUploadOptions.maxSingleShotSize} (default is - * {@link BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES}), this method will use 1 {@link upload} call to finish the upload. - * Otherwise, this method will call {@link stageBlock} to upload blocks, and finally call {@link commitBlockList} - * to commit the block list. - * - * @param bodyFactory - - * @param size - size of the data to upload. - * @param options - Options to Upload to Block Blob operation. - * @returns Response data for the Blob Upload operation. - */ - async uploadSeekableInternal(bodyFactory, size, options = {}) { - if (!options.blockSize) { - options.blockSize = 0; - } - if (options.blockSize < 0 || options.blockSize > BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES) { - throw new RangeError(`blockSize option must be >= 0 and <= ${BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES}`); - } - if (options.maxSingleShotSize !== 0 && !options.maxSingleShotSize) { - options.maxSingleShotSize = BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES; - } - if (options.maxSingleShotSize < 0 || - options.maxSingleShotSize > BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES) { - throw new RangeError(`maxSingleShotSize option must be >= 0 and <= ${BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES}`); - } - if (options.blockSize === 0) { - if (size > BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES * BLOCK_BLOB_MAX_BLOCKS) { - throw new RangeError(`${size} is too larger to upload to a block blob.`); - } - if (size > options.maxSingleShotSize) { - options.blockSize = Math.ceil(size / BLOCK_BLOB_MAX_BLOCKS); - if (options.blockSize < DEFAULT_BLOB_DOWNLOAD_BLOCK_BYTES) { - options.blockSize = DEFAULT_BLOB_DOWNLOAD_BLOCK_BYTES; - } - } - } - if (!options.blobHTTPHeaders) { - options.blobHTTPHeaders = {}; - } - if (!options.conditions) { - options.conditions = {}; + + try { + reason = utf8Decode(reason) + } catch { + return { code: 1007, reason: 'Invalid UTF-8', error: true } + } + + return { code, reason, error: false } + } + + /** + * Parses control frames. + * @param {Buffer} body + */ + parseControlFrame (body) { + const { opcode, payloadLength } = this.#info + + if (opcode === opcodes.CLOSE) { + if (payloadLength === 1) { + failWebsocketConnection(this.ws, 'Received close frame with a 1-byte body.') + return false + } + + this.#info.closeInfo = this.parseCloseBody(body) + + if (this.#info.closeInfo.error) { + const { code, reason } = this.#info.closeInfo + + closeWebSocketConnection(this.ws, code, reason, reason.length) + failWebsocketConnection(this.ws, reason) + return false + } + + if (this.ws[kSentClose] !== sentCloseFrameState.SENT) { + // If an endpoint receives a Close frame and did not previously send a + // Close frame, the endpoint MUST send a Close frame in response. (When + // sending a Close frame in response, the endpoint typically echos the + // status code it received.) + let body = emptyBuffer + if (this.#info.closeInfo.code) { + body = Buffer.allocUnsafe(2) + body.writeUInt16BE(this.#info.closeInfo.code, 0) } - const { span, updatedOptions } = createSpan("BlockBlobClient-uploadSeekableInternal", options); - try { - if (size <= options.maxSingleShotSize) { - return await this.upload(bodyFactory(0, size), size, updatedOptions); - } - const numBlocks = Math.floor((size - 1) / options.blockSize) + 1; - if (numBlocks > BLOCK_BLOB_MAX_BLOCKS) { - throw new RangeError(`The buffer's size is too big or the BlockSize is too small;` + - `the number of blocks must be <= ${BLOCK_BLOB_MAX_BLOCKS}`); - } - const blockList = []; - const blockIDPrefix = coreHttp.generateUuid(); - let transferProgress = 0; - const batch = new Batch(options.concurrency); - for (let i = 0; i < numBlocks; i++) { - batch.addOperation(async () => { - const blockID = generateBlockID(blockIDPrefix, i); - const start = options.blockSize * i; - const end = i === numBlocks - 1 ? size : start + options.blockSize; - const contentLength = end - start; - blockList.push(blockID); - await this.stageBlock(blockID, bodyFactory(start, contentLength), contentLength, { - abortSignal: options.abortSignal, - conditions: options.conditions, - encryptionScope: options.encryptionScope, - tracingOptions: updatedOptions.tracingOptions, - }); - // Update progress after block is successfully uploaded to server, in case of block trying - // TODO: Hook with convenience layer progress event in finer level - transferProgress += contentLength; - if (options.onProgress) { - options.onProgress({ - loadedBytes: transferProgress, - }); - } - }); + const closeFrame = new WebsocketFrameSend(body) + + this.ws[kResponse].socket.write( + closeFrame.createFrame(opcodes.CLOSE), + (err) => { + if (!err) { + this.ws[kSentClose] = sentCloseFrameState.SENT } - await batch.do(); - return this.commitBlockList(blockList, updatedOptions); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); + } + ) + } + + // Upon either sending or receiving a Close control frame, it is said + // that _The WebSocket Closing Handshake is Started_ and that the + // WebSocket connection is in the CLOSING state. + this.ws[kReadyState] = states.CLOSING + this.ws[kReceivedClose] = true + + return false + } else if (opcode === opcodes.PING) { + // Upon receipt of a Ping frame, an endpoint MUST send a Pong frame in + // response, unless it already received a Close frame. + // A Pong frame sent in response to a Ping frame must have identical + // "Application data" + + if (!this.ws[kReceivedClose]) { + const frame = new WebsocketFrameSend(body) + + this.ws[kResponse].socket.write(frame.createFrame(opcodes.PONG)) + + if (channels.ping.hasSubscribers) { + channels.ping.publish({ + payload: body + }) } + } + } else if (opcode === opcodes.PONG) { + // A Pong frame MAY be sent unsolicited. This serves as a + // unidirectional heartbeat. A response to an unsolicited Pong frame is + // not expected. + + if (channels.pong.hasSubscribers) { + channels.pong.publish({ + payload: body + }) + } } - /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * Uploads a local file in blocks to a block blob. - * - * When file size lesser than or equal to 256MB, this method will use 1 upload call to finish the upload. - * Otherwise, this method will call stageBlock to upload blocks, and finally call commitBlockList - * to commit the block list. - * - * @param filePath - Full path of local file - * @param options - Options to Upload to Block Blob operation. - * @returns Response data for the Blob Upload operation. - */ - async uploadFile(filePath, options = {}) { - const { span, updatedOptions } = createSpan("BlockBlobClient-uploadFile", options); - try { - const size = (await fsStat(filePath)).size; - return await this.uploadSeekableInternal((offset, count) => { - return () => fsCreateReadStream(filePath, { - autoClose: true, - end: count ? offset + count - 1 : Infinity, - start: offset, - }); - }, size, Object.assign(Object.assign({}, options), { tracingOptions: Object.assign(Object.assign({}, options.tracingOptions), convertTracingToRequestOptionsBase(updatedOptions)) })); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); + + return true + } + + get closingInfo () { + return this.#info.closeInfo + } +} + +module.exports = { + ByteParser +} + + +/***/ }), + +/***/ 4821: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { WebsocketFrameSend } = __nccwpck_require__(2391) +const { opcodes, sendHints } = __nccwpck_require__(93587) +const FixedQueue = __nccwpck_require__(75158) + +/** @type {typeof Uint8Array} */ +const FastBuffer = Buffer[Symbol.species] + +/** + * @typedef {object} SendQueueNode + * @property {Promise | null} promise + * @property {((...args: any[]) => any)} callback + * @property {Buffer | null} frame + */ + +class SendQueue { + /** + * @type {FixedQueue} + */ + #queue = new FixedQueue() + + /** + * @type {boolean} + */ + #running = false + + /** @type {import('node:net').Socket} */ + #socket + + constructor (socket) { + this.#socket = socket + } + + add (item, cb, hint) { + if (hint !== sendHints.blob) { + const frame = createFrame(item, hint) + if (!this.#running) { + // fast-path + this.#socket.write(frame, cb) + } else { + /** @type {SendQueueNode} */ + const node = { + promise: null, + callback: cb, + frame } + this.#queue.push(node) + } + return } - /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * Uploads a Node.js Readable stream into block blob. - * - * PERFORMANCE IMPROVEMENT TIPS: - * * Input stream highWaterMark is better to set a same value with bufferSize - * parameter, which will avoid Buffer.concat() operations. - * - * @param stream - Node.js Readable stream - * @param bufferSize - Size of every buffer allocated, also the block size in the uploaded block blob. Default value is 8MB - * @param maxConcurrency - Max concurrency indicates the max number of buffers that can be allocated, - * positive correlation with max uploading concurrency. Default value is 5 - * @param options - Options to Upload Stream to Block Blob operation. - * @returns Response data for the Blob Upload operation. - */ - async uploadStream(stream, bufferSize = DEFAULT_BLOCK_BUFFER_SIZE_BYTES, maxConcurrency = 5, options = {}) { - if (!options.blobHTTPHeaders) { - options.blobHTTPHeaders = {}; - } - if (!options.conditions) { - options.conditions = {}; - } - const { span, updatedOptions } = createSpan("BlockBlobClient-uploadStream", options); - try { - let blockNum = 0; - const blockIDPrefix = coreHttp.generateUuid(); - let transferProgress = 0; - const blockList = []; - const scheduler = new BufferScheduler(stream, bufferSize, maxConcurrency, async (body, length) => { - const blockID = generateBlockID(blockIDPrefix, blockNum); - blockList.push(blockID); - blockNum++; - await this.stageBlock(blockID, body, length, { - conditions: options.conditions, - encryptionScope: options.encryptionScope, - tracingOptions: updatedOptions.tracingOptions, - }); - // Update progress after block is successfully uploaded to server, in case of block trying - transferProgress += length; - if (options.onProgress) { - options.onProgress({ loadedBytes: transferProgress }); - } - }, - // concurrency should set a smaller value than maxConcurrency, which is helpful to - // reduce the possibility when a outgoing handler waits for stream data, in - // this situation, outgoing handlers are blocked. - // Outgoing queue shouldn't be empty. - Math.ceil((maxConcurrency / 4) * 3)); - await scheduler.do(); - return await this.commitBlockList(blockList, Object.assign(Object.assign({}, options), { tracingOptions: Object.assign(Object.assign({}, options.tracingOptions), convertTracingToRequestOptionsBase(updatedOptions)) })); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + /** @type {SendQueueNode} */ + const node = { + promise: item.arrayBuffer().then((ab) => { + node.promise = null + node.frame = createFrame(ab, hint) + }), + callback: cb, + frame: null } + + this.#queue.push(node) + + if (!this.#running) { + this.#run() + } + } + + async #run () { + this.#running = true + const queue = this.#queue + while (!queue.isEmpty()) { + const node = queue.shift() + // wait pending promise + if (node.promise !== null) { + await node.promise + } + // write + this.#socket.write(node.frame, node.callback) + // cleanup + node.callback = node.frame = null + } + this.#running = false + } +} + +function createFrame (data, hint) { + return new WebsocketFrameSend(toBuffer(data, hint)).createFrame(hint === sendHints.string ? opcodes.TEXT : opcodes.BINARY) +} + +function toBuffer (data, hint) { + switch (hint) { + case sendHints.string: + return Buffer.from(data) + case sendHints.arrayBuffer: + case sendHints.blob: + return new FastBuffer(data) + case sendHints.typedArray: + return new FastBuffer(data.buffer, data.byteOffset, data.byteLength) + } +} + +module.exports = { SendQueue } + + +/***/ }), + +/***/ 59769: +/***/ ((module) => { + +"use strict"; + + +module.exports = { + kWebSocketURL: Symbol('url'), + kReadyState: Symbol('ready state'), + kController: Symbol('controller'), + kResponse: Symbol('response'), + kBinaryType: Symbol('binary type'), + kSentClose: Symbol('sent close'), + kReceivedClose: Symbol('received close'), + kByteParser: Symbol('byte parser') } + + +/***/ }), + +/***/ 89902: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { kReadyState, kController, kResponse, kBinaryType, kWebSocketURL } = __nccwpck_require__(59769) +const { states, opcodes } = __nccwpck_require__(93587) +const { ErrorEvent, createFastMessageEvent } = __nccwpck_require__(55033) +const { isUtf8 } = __nccwpck_require__(72254) +const { collectASequenceOfCodePointsFast, removeHTTPWhitespace } = __nccwpck_require__(17704) + +/* globals Blob */ + /** - * PageBlobClient defines a set of operations applicable to page blobs. + * @param {import('./websocket').WebSocket} ws + * @returns {boolean} */ -class PageBlobClient extends BlobClient { - constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, - // Legacy, no fix for eslint error without breaking. Disable it for this interface. - /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ - options) { - // In TypeScript we cannot simply pass all parameters to super() like below so have to duplicate the code instead. - // super(s, credentialOrPipelineOrContainerNameOrOptions, blobNameOrOptions, options); - let pipeline; - let url; - options = options || {}; - if (isPipelineLike(credentialOrPipelineOrContainerName)) { - // (url: string, pipeline: Pipeline) - url = urlOrConnectionString; - pipeline = credentialOrPipelineOrContainerName; - } - else if ((coreHttp.isNode && credentialOrPipelineOrContainerName instanceof StorageSharedKeyCredential) || - credentialOrPipelineOrContainerName instanceof AnonymousCredential || - coreHttp.isTokenCredential(credentialOrPipelineOrContainerName)) { - // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) - url = urlOrConnectionString; - options = blobNameOrOptions; - pipeline = newPipeline(credentialOrPipelineOrContainerName, options); - } - else if (!credentialOrPipelineOrContainerName && - typeof credentialOrPipelineOrContainerName !== "string") { - // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) - // The second parameter is undefined. Use anonymous credential. - url = urlOrConnectionString; - pipeline = newPipeline(new AnonymousCredential(), options); - } - else if (credentialOrPipelineOrContainerName && - typeof credentialOrPipelineOrContainerName === "string" && - blobNameOrOptions && - typeof blobNameOrOptions === "string") { - // (connectionString: string, containerName: string, blobName: string, options?: StoragePipelineOptions) - const containerName = credentialOrPipelineOrContainerName; - const blobName = blobNameOrOptions; - const extractedCreds = extractConnectionStringParts(urlOrConnectionString); - if (extractedCreds.kind === "AccountConnString") { - if (coreHttp.isNode) { - const sharedKeyCredential = new StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey); - url = appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)); - if (!options.proxyOptions) { - options.proxyOptions = coreHttp.getDefaultProxySettings(extractedCreds.proxyUri); - } - pipeline = newPipeline(sharedKeyCredential, options); - } - else { - throw new Error("Account connection string is only supported in Node.js environment"); - } - } - else if (extractedCreds.kind === "SASConnString") { - url = - appendToURLPath(appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)) + - "?" + - extractedCreds.accountSas; - pipeline = newPipeline(new AnonymousCredential(), options); - } - else { - throw new Error("Connection string must be either an Account connection string or a SAS connection string"); - } - } - else { - throw new Error("Expecting non-empty strings for containerName and blobName parameters"); - } - super(url, pipeline); - this.pageBlobContext = new PageBlob(this.storageClientContext); +function isConnecting (ws) { + // If the WebSocket connection is not yet established, and the connection + // is not yet closed, then the WebSocket connection is in the CONNECTING state. + return ws[kReadyState] === states.CONNECTING +} + +/** + * @param {import('./websocket').WebSocket} ws + * @returns {boolean} + */ +function isEstablished (ws) { + // If the server's response is validated as provided for above, it is + // said that _The WebSocket Connection is Established_ and that the + // WebSocket Connection is in the OPEN state. + return ws[kReadyState] === states.OPEN +} + +/** + * @param {import('./websocket').WebSocket} ws + * @returns {boolean} + */ +function isClosing (ws) { + // Upon either sending or receiving a Close control frame, it is said + // that _The WebSocket Closing Handshake is Started_ and that the + // WebSocket connection is in the CLOSING state. + return ws[kReadyState] === states.CLOSING +} + +/** + * @param {import('./websocket').WebSocket} ws + * @returns {boolean} + */ +function isClosed (ws) { + return ws[kReadyState] === states.CLOSED +} + +/** + * @see https://dom.spec.whatwg.org/#concept-event-fire + * @param {string} e + * @param {EventTarget} target + * @param {(...args: ConstructorParameters) => Event} eventFactory + * @param {EventInit | undefined} eventInitDict + */ +function fireEvent (e, target, eventFactory = (type, init) => new Event(type, init), eventInitDict = {}) { + // 1. If eventConstructor is not given, then let eventConstructor be Event. + + // 2. Let event be the result of creating an event given eventConstructor, + // in the relevant realm of target. + // 3. Initialize event’s type attribute to e. + const event = eventFactory(e, eventInitDict) + + // 4. Initialize any other IDL attributes of event as described in the + // invocation of this algorithm. + + // 5. Return the result of dispatching event at target, with legacy target + // override flag set if set. + target.dispatchEvent(event) +} + +/** + * @see https://websockets.spec.whatwg.org/#feedback-from-the-protocol + * @param {import('./websocket').WebSocket} ws + * @param {number} type Opcode + * @param {Buffer} data application data + */ +function websocketMessageReceived (ws, type, data) { + // 1. If ready state is not OPEN (1), then return. + if (ws[kReadyState] !== states.OPEN) { + return + } + + // 2. Let dataForEvent be determined by switching on type and binary type: + let dataForEvent + + if (type === opcodes.TEXT) { + // -> type indicates that the data is Text + // a new DOMString containing data + try { + dataForEvent = utf8Decode(data) + } catch { + failWebsocketConnection(ws, 'Received invalid UTF-8 in text frame.') + return } - /** - * Creates a new PageBlobClient object identical to the source but with the - * specified snapshot timestamp. - * Provide "" will remove the snapshot and return a Client to the base blob. - * - * @param snapshot - The snapshot timestamp. - * @returns A new PageBlobClient object identical to the source but with the specified snapshot timestamp. - */ - withSnapshot(snapshot) { - return new PageBlobClient(setURLParameter(this.url, URLConstants.Parameters.SNAPSHOT, snapshot.length === 0 ? undefined : snapshot), this.pipeline); + } else if (type === opcodes.BINARY) { + if (ws[kBinaryType] === 'blob') { + // -> type indicates that the data is Binary and binary type is "blob" + // a new Blob object, created in the relevant Realm of the WebSocket + // object, that represents data as its raw data + dataForEvent = new Blob([data]) + } else { + // -> type indicates that the data is Binary and binary type is "arraybuffer" + // a new ArrayBuffer object, created in the relevant Realm of the + // WebSocket object, whose contents are data + dataForEvent = toArrayBuffer(data) } - /** - * Creates a page blob of the specified length. Call uploadPages to upload data - * data to a page blob. - * @see https://docs.microsoft.com/rest/api/storageservices/put-blob - * - * @param size - size of the page blob. - * @param options - Options to the Page Blob Create operation. - * @returns Response data for the Page Blob Create operation. - */ - async create(size, options = {}) { - var _a, _b, _c; - options.conditions = options.conditions || {}; - const { span, updatedOptions } = createSpan("PageBlobClient-create", options); - try { - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - return await this.pageBlobContext.create(0, size, Object.assign({ abortSignal: options.abortSignal, blobHttpHeaders: options.blobHTTPHeaders, blobSequenceNumber: options.blobSequenceNumber, leaseAccessConditions: options.conditions, metadata: options.metadata, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), cpkInfo: options.customerProvidedKey, encryptionScope: options.encryptionScope, immutabilityPolicyExpiry: (_b = options.immutabilityPolicy) === null || _b === void 0 ? void 0 : _b.expiriesOn, immutabilityPolicyMode: (_c = options.immutabilityPolicy) === null || _c === void 0 ? void 0 : _c.policyMode, legalHold: options.legalHold, tier: toAccessTier(options.tier), blobTagsString: toBlobTagsString(options.tags) }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + } + + // 3. Fire an event named message at the WebSocket object, using MessageEvent, + // with the origin attribute initialized to the serialization of the WebSocket + // object’s url's origin, and the data attribute initialized to dataForEvent. + fireEvent('message', ws, createFastMessageEvent, { + origin: ws[kWebSocketURL].origin, + data: dataForEvent + }) +} + +function toArrayBuffer (buffer) { + if (buffer.byteLength === buffer.buffer.byteLength) { + return buffer.buffer + } + return buffer.buffer.slice(buffer.byteOffset, buffer.byteOffset + buffer.byteLength) +} + +/** + * @see https://datatracker.ietf.org/doc/html/rfc6455 + * @see https://datatracker.ietf.org/doc/html/rfc2616 + * @see https://bugs.chromium.org/p/chromium/issues/detail?id=398407 + * @param {string} protocol + */ +function isValidSubprotocol (protocol) { + // If present, this value indicates one + // or more comma-separated subprotocol the client wishes to speak, + // ordered by preference. The elements that comprise this value + // MUST be non-empty strings with characters in the range U+0021 to + // U+007E not including separator characters as defined in + // [RFC2616] and MUST all be unique strings. + if (protocol.length === 0) { + return false + } + + for (let i = 0; i < protocol.length; ++i) { + const code = protocol.charCodeAt(i) + + if ( + code < 0x21 || // CTL, contains SP (0x20) and HT (0x09) + code > 0x7E || + code === 0x22 || // " + code === 0x28 || // ( + code === 0x29 || // ) + code === 0x2C || // , + code === 0x2F || // / + code === 0x3A || // : + code === 0x3B || // ; + code === 0x3C || // < + code === 0x3D || // = + code === 0x3E || // > + code === 0x3F || // ? + code === 0x40 || // @ + code === 0x5B || // [ + code === 0x5C || // \ + code === 0x5D || // ] + code === 0x7B || // { + code === 0x7D // } + ) { + return false } - /** - * Creates a page blob of the specified length. Call uploadPages to upload data - * data to a page blob. If the blob with the same name already exists, the content - * of the existing blob will remain unchanged. - * @see https://docs.microsoft.com/rest/api/storageservices/put-blob - * - * @param size - size of the page blob. - * @param options - - */ - async createIfNotExists(size, options = {}) { - var _a, _b; - const { span, updatedOptions } = createSpan("PageBlobClient-createIfNotExists", options); - try { - const conditions = { ifNoneMatch: ETagAny }; - const res = await this.create(size, Object.assign(Object.assign({}, options), { conditions, tracingOptions: updatedOptions.tracingOptions })); - return Object.assign(Object.assign({ succeeded: true }, res), { _response: res._response }); - } - catch (e) { - if (((_a = e.details) === null || _a === void 0 ? void 0 : _a.errorCode) === "BlobAlreadyExists") { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: "Expected exception when creating a blob only if it does not already exist.", - }); - return Object.assign(Object.assign({ succeeded: false }, (_b = e.response) === null || _b === void 0 ? void 0 : _b.parsedHeaders), { _response: e.response }); - } - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + } + + return true +} + +/** + * @see https://datatracker.ietf.org/doc/html/rfc6455#section-7-4 + * @param {number} code + */ +function isValidStatusCode (code) { + if (code >= 1000 && code < 1015) { + return ( + code !== 1004 && // reserved + code !== 1005 && // "MUST NOT be set as a status code" + code !== 1006 // "MUST NOT be set as a status code" + ) + } + + return code >= 3000 && code <= 4999 +} + +/** + * @param {import('./websocket').WebSocket} ws + * @param {string|undefined} reason + */ +function failWebsocketConnection (ws, reason) { + const { [kController]: controller, [kResponse]: response } = ws + + controller.abort() + + if (response?.socket && !response.socket.destroyed) { + response.socket.destroy() + } + + if (reason) { + // TODO: process.nextTick + fireEvent('error', ws, (type, init) => new ErrorEvent(type, init), { + error: new Error(reason), + message: reason + }) + } +} + +/** + * @see https://datatracker.ietf.org/doc/html/rfc6455#section-5.5 + * @param {number} opcode + */ +function isControlFrame (opcode) { + return ( + opcode === opcodes.CLOSE || + opcode === opcodes.PING || + opcode === opcodes.PONG + ) +} + +function isContinuationFrame (opcode) { + return opcode === opcodes.CONTINUATION +} + +function isTextBinaryFrame (opcode) { + return opcode === opcodes.TEXT || opcode === opcodes.BINARY +} + +function isValidOpcode (opcode) { + return isTextBinaryFrame(opcode) || isContinuationFrame(opcode) || isControlFrame(opcode) +} + +/** + * Parses a Sec-WebSocket-Extensions header value. + * @param {string} extensions + * @returns {Map} + */ +// TODO(@Uzlopak, @KhafraDev): make compliant https://datatracker.ietf.org/doc/html/rfc6455#section-9.1 +function parseExtensions (extensions) { + const position = { position: 0 } + const extensionList = new Map() + + while (position.position < extensions.length) { + const pair = collectASequenceOfCodePointsFast(';', extensions, position) + const [name, value = ''] = pair.split('=') + + extensionList.set( + removeHTTPWhitespace(name, true, false), + removeHTTPWhitespace(value, false, true) + ) + + position.position++ + } + + return extensionList +} + +/** + * @see https://www.rfc-editor.org/rfc/rfc7692#section-7.1.2.2 + * @description "client-max-window-bits = 1*DIGIT" + * @param {string} value + */ +function isValidClientWindowBits (value) { + // Must have at least one character + if (value.length === 0) { + return false + } + + // Check all characters are ASCII digits + for (let i = 0; i < value.length; i++) { + const byte = value.charCodeAt(i) + + if (byte < 0x30 || byte > 0x39) { + return false } - /** - * Writes 1 or more pages to the page blob. The start and end offsets must be a multiple of 512. - * @see https://docs.microsoft.com/rest/api/storageservices/put-page - * - * @param body - Data to upload - * @param offset - Offset of destination page blob - * @param count - Content length of the body, also number of bytes to be uploaded - * @param options - Options to the Page Blob Upload Pages operation. - * @returns Response data for the Page Blob Upload Pages operation. - */ - async uploadPages(body, offset, count, options = {}) { - var _a; - options.conditions = options.conditions || {}; - const { span, updatedOptions } = createSpan("PageBlobClient-uploadPages", options); - try { - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - return await this.pageBlobContext.uploadPages(count, body, Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), requestOptions: { - onUploadProgress: options.onProgress, - }, range: rangeToString({ offset, count }), sequenceNumberAccessConditions: options.conditions, transactionalContentMD5: options.transactionalContentMD5, transactionalContentCrc64: options.transactionalContentCrc64, cpkInfo: options.customerProvidedKey, encryptionScope: options.encryptionScope }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + } + + // Check numeric range: zlib requires windowBits in range 8-15 + const num = Number.parseInt(value, 10) + return num >= 8 && num <= 15 +} + +// https://nodejs.org/api/intl.html#detecting-internationalization-support +const hasIntl = typeof process.versions.icu === 'string' +const fatalDecoder = hasIntl ? new TextDecoder('utf-8', { fatal: true }) : undefined + +/** + * Converts a Buffer to utf-8, even on platforms without icu. + * @param {Buffer} buffer + */ +const utf8Decode = hasIntl + ? fatalDecoder.decode.bind(fatalDecoder) + : function (buffer) { + if (isUtf8(buffer)) { + return buffer.toString('utf-8') } - /** - * The Upload Pages operation writes a range of pages to a page blob where the - * contents are read from a URL. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/put-page-from-url - * - * @param sourceURL - Specify a URL to the copy source, Shared Access Signature(SAS) maybe needed for authentication - * @param sourceOffset - The source offset to copy from. Pass 0 to copy from the beginning of source page blob - * @param destOffset - Offset of destination page blob - * @param count - Number of bytes to be uploaded from source page blob - * @param options - - */ - async uploadPagesFromURL(sourceURL, sourceOffset, destOffset, count, options = {}) { - var _a; - options.conditions = options.conditions || {}; - options.sourceConditions = options.sourceConditions || {}; - const { span, updatedOptions } = createSpan("PageBlobClient-uploadPagesFromURL", options); - try { - ensureCpkIfSpecified(options.customerProvidedKey, this.isHttps); - return await this.pageBlobContext.uploadPagesFromURL(sourceURL, rangeToString({ offset: sourceOffset, count }), 0, rangeToString({ offset: destOffset, count }), Object.assign({ abortSignal: options.abortSignal, sourceContentMD5: options.sourceContentMD5, sourceContentCrc64: options.sourceContentCrc64, leaseAccessConditions: options.conditions, sequenceNumberAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), sourceModifiedAccessConditions: { - sourceIfMatch: options.sourceConditions.ifMatch, - sourceIfModifiedSince: options.sourceConditions.ifModifiedSince, - sourceIfNoneMatch: options.sourceConditions.ifNoneMatch, - sourceIfUnmodifiedSince: options.sourceConditions.ifUnmodifiedSince, - }, cpkInfo: options.customerProvidedKey, encryptionScope: options.encryptionScope, copySourceAuthorization: httpAuthorizationToString(options.sourceAuthorization) }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + throw new TypeError('Invalid utf-8 received.') + } + +module.exports = { + isConnecting, + isEstablished, + isClosing, + isClosed, + fireEvent, + isValidSubprotocol, + isValidStatusCode, + failWebsocketConnection, + websocketMessageReceived, + utf8Decode, + isControlFrame, + isContinuationFrame, + isTextBinaryFrame, + isValidOpcode, + parseExtensions, + isValidClientWindowBits +} + + +/***/ }), + +/***/ 92846: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +"use strict"; + + +const { webidl } = __nccwpck_require__(44890) +const { URLSerializer } = __nccwpck_require__(17704) +const { environmentSettingsObject } = __nccwpck_require__(1310) +const { staticPropertyDescriptors, states, sentCloseFrameState, sendHints } = __nccwpck_require__(93587) +const { + kWebSocketURL, + kReadyState, + kController, + kBinaryType, + kResponse, + kSentClose, + kByteParser +} = __nccwpck_require__(59769) +const { + isConnecting, + isEstablished, + isClosing, + isValidSubprotocol, + fireEvent +} = __nccwpck_require__(89902) +const { establishWebSocketConnection, closeWebSocketConnection } = __nccwpck_require__(88380) +const { ByteParser } = __nccwpck_require__(85442) +const { kEnumerableProperty, isBlobLike } = __nccwpck_require__(83983) +const { getGlobalDispatcher } = __nccwpck_require__(21892) +const { types } = __nccwpck_require__(47261) +const { ErrorEvent, CloseEvent } = __nccwpck_require__(55033) +const { SendQueue } = __nccwpck_require__(4821) + +// https://websockets.spec.whatwg.org/#interface-definition +class WebSocket extends EventTarget { + #events = { + open: null, + error: null, + close: null, + message: null + } + + #bufferedAmount = 0 + #protocol = '' + #extensions = '' + + /** @type {SendQueue} */ + #sendQueue + + /** + * @param {string} url + * @param {string|string[]} protocols + */ + constructor (url, protocols = []) { + super() + + webidl.util.markAsUncloneable(this) + + const prefix = 'WebSocket constructor' + webidl.argumentLengthCheck(arguments, 1, prefix) + + const options = webidl.converters['DOMString or sequence or WebSocketInit'](protocols, prefix, 'options') + + url = webidl.converters.USVString(url, prefix, 'url') + protocols = options.protocols + + // 1. Let baseURL be this's relevant settings object's API base URL. + const baseURL = environmentSettingsObject.settingsObject.baseUrl + + // 1. Let urlRecord be the result of applying the URL parser to url with baseURL. + let urlRecord + + try { + urlRecord = new URL(url, baseURL) + } catch (e) { + // 3. If urlRecord is failure, then throw a "SyntaxError" DOMException. + throw new DOMException(e, 'SyntaxError') } - /** - * Frees the specified pages from the page blob. - * @see https://docs.microsoft.com/rest/api/storageservices/put-page - * - * @param offset - Starting byte position of the pages to clear. - * @param count - Number of bytes to clear. - * @param options - Options to the Page Blob Clear Pages operation. - * @returns Response data for the Page Blob Clear Pages operation. - */ - async clearPages(offset = 0, count, options = {}) { - var _a; - options.conditions = options.conditions || {}; - const { span, updatedOptions } = createSpan("PageBlobClient-clearPages", options); - try { - return await this.pageBlobContext.clearPages(0, Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), range: rangeToString({ offset, count }), sequenceNumberAccessConditions: options.conditions, cpkInfo: options.customerProvidedKey, encryptionScope: options.encryptionScope }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // 4. If urlRecord’s scheme is "http", then set urlRecord’s scheme to "ws". + if (urlRecord.protocol === 'http:') { + urlRecord.protocol = 'ws:' + } else if (urlRecord.protocol === 'https:') { + // 5. Otherwise, if urlRecord’s scheme is "https", set urlRecord’s scheme to "wss". + urlRecord.protocol = 'wss:' } - /** - * Returns the list of valid page ranges for a page blob or snapshot of a page blob. - * @see https://docs.microsoft.com/rest/api/storageservices/get-page-ranges - * - * @param offset - Starting byte position of the page ranges. - * @param count - Number of bytes to get. - * @param options - Options to the Page Blob Get Ranges operation. - * @returns Response data for the Page Blob Get Ranges operation. - */ - async getPageRanges(offset = 0, count, options = {}) { - var _a; - options.conditions = options.conditions || {}; - const { span, updatedOptions } = createSpan("PageBlobClient-getPageRanges", options); - try { - return await this.pageBlobContext - .getPageRanges(Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), range: rangeToString({ offset, count }) }, convertTracingToRequestOptionsBase(updatedOptions))) - .then(rangeResponseFromModel); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // 6. If urlRecord’s scheme is not "ws" or "wss", then throw a "SyntaxError" DOMException. + if (urlRecord.protocol !== 'ws:' && urlRecord.protocol !== 'wss:') { + throw new DOMException( + `Expected a ws: or wss: protocol, got ${urlRecord.protocol}`, + 'SyntaxError' + ) } - /** - * Gets the collection of page ranges that differ between a specified snapshot and this page blob. - * @see https://docs.microsoft.com/rest/api/storageservices/get-page-ranges - * - * @param offset - Starting byte position of the page blob - * @param count - Number of bytes to get ranges diff. - * @param prevSnapshot - Timestamp of snapshot to retrieve the difference. - * @param options - Options to the Page Blob Get Page Ranges Diff operation. - * @returns Response data for the Page Blob Get Page Range Diff operation. - */ - async getPageRangesDiff(offset, count, prevSnapshot, options = {}) { - var _a; - options.conditions = options.conditions || {}; - const { span, updatedOptions } = createSpan("PageBlobClient-getPageRangesDiff", options); - try { - return await this.pageBlobContext - .getPageRangesDiff(Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), prevsnapshot: prevSnapshot, range: rangeToString({ offset, count }) }, convertTracingToRequestOptionsBase(updatedOptions))) - .then(rangeResponseFromModel); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // 7. If urlRecord’s fragment is non-null, then throw a "SyntaxError" + // DOMException. + if (urlRecord.hash || urlRecord.href.endsWith('#')) { + throw new DOMException('Got fragment', 'SyntaxError') } - /** - * Gets the collection of page ranges that differ between a specified snapshot and this page blob for managed disks. - * @see https://docs.microsoft.com/rest/api/storageservices/get-page-ranges - * - * @param offset - Starting byte position of the page blob - * @param count - Number of bytes to get ranges diff. - * @param prevSnapshotUrl - URL of snapshot to retrieve the difference. - * @param options - Options to the Page Blob Get Page Ranges Diff operation. - * @returns Response data for the Page Blob Get Page Range Diff operation. - */ - async getPageRangesDiffForManagedDisks(offset, count, prevSnapshotUrl, options = {}) { - var _a; - options.conditions = options.conditions || {}; - const { span, updatedOptions } = createSpan("PageBlobClient-GetPageRangesDiffForManagedDisks", options); - try { - return await this.pageBlobContext - .getPageRangesDiff(Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), prevSnapshotUrl, range: rangeToString({ offset, count }) }, convertTracingToRequestOptionsBase(updatedOptions))) - .then(rangeResponseFromModel); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // 8. If protocols is a string, set protocols to a sequence consisting + // of just that string. + if (typeof protocols === 'string') { + protocols = [protocols] } - /** - * Resizes the page blob to the specified size (which must be a multiple of 512). - * @see https://docs.microsoft.com/rest/api/storageservices/set-blob-properties - * - * @param size - Target size - * @param options - Options to the Page Blob Resize operation. - * @returns Response data for the Page Blob Resize operation. - */ - async resize(size, options = {}) { - var _a; - options.conditions = options.conditions || {}; - const { span, updatedOptions } = createSpan("PageBlobClient-resize", options); - try { - return await this.pageBlobContext.resize(size, Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }), encryptionScope: options.encryptionScope }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + // 9. If any of the values in protocols occur more than once or otherwise + // fail to match the requirements for elements that comprise the value + // of `Sec-WebSocket-Protocol` fields as defined by The WebSocket + // protocol, then throw a "SyntaxError" DOMException. + if (protocols.length !== new Set(protocols.map(p => p.toLowerCase())).size) { + throw new DOMException('Invalid Sec-WebSocket-Protocol value', 'SyntaxError') } - /** - * Sets a page blob's sequence number. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/set-blob-properties - * - * @param sequenceNumberAction - Indicates how the service should modify the blob's sequence number. - * @param sequenceNumber - Required if sequenceNumberAction is max or update - * @param options - Options to the Page Blob Update Sequence Number operation. - * @returns Response data for the Page Blob Update Sequence Number operation. - */ - async updateSequenceNumber(sequenceNumberAction, sequenceNumber, options = {}) { - var _a; - options.conditions = options.conditions || {}; - const { span, updatedOptions } = createSpan("PageBlobClient-updateSequenceNumber", options); - try { - return await this.pageBlobContext.updateSequenceNumber(sequenceNumberAction, Object.assign({ abortSignal: options.abortSignal, blobSequenceNumber: sequenceNumber, leaseAccessConditions: options.conditions, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }) }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + if (protocols.length > 0 && !protocols.every(p => isValidSubprotocol(p))) { + throw new DOMException('Invalid Sec-WebSocket-Protocol value', 'SyntaxError') } - /** - * Begins an operation to start an incremental copy from one page blob's snapshot to this page blob. - * The snapshot is copied such that only the differential changes between the previously - * copied snapshot are transferred to the destination. - * The copied snapshots are complete copies of the original snapshot and can be read or copied from as usual. - * @see https://docs.microsoft.com/rest/api/storageservices/incremental-copy-blob - * @see https://docs.microsoft.com/en-us/azure/virtual-machines/windows/incremental-snapshots - * - * @param copySource - Specifies the name of the source page blob snapshot. For example, - * https://myaccount.blob.core.windows.net/mycontainer/myblob?snapshot= - * @param options - Options to the Page Blob Copy Incremental operation. - * @returns Response data for the Page Blob Copy Incremental operation. - */ - async startCopyIncremental(copySource, options = {}) { - var _a; - const { span, updatedOptions } = createSpan("PageBlobClient-startCopyIncremental", options); - try { - return await this.pageBlobContext.copyIncremental(copySource, Object.assign({ abortSignal: options.abortSignal, modifiedAccessConditions: Object.assign(Object.assign({}, options.conditions), { ifTags: (_a = options.conditions) === null || _a === void 0 ? void 0 : _a.tagConditions }) }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } - } -} -// Copyright (c) Microsoft Corporation. -async function getBodyAsText(batchResponse) { - let buffer = Buffer.alloc(BATCH_MAX_PAYLOAD_IN_BYTES); - const responseLength = await streamToBuffer2(batchResponse.readableStreamBody, buffer); - // Slice the buffer to trim the empty ending. - buffer = buffer.slice(0, responseLength); - return buffer.toString(); -} -function utf8ByteLength(str) { - return Buffer.byteLength(str); -} + // 10. Set this's url to urlRecord. + this[kWebSocketURL] = new URL(urlRecord.href) -// Copyright (c) Microsoft Corporation. -const HTTP_HEADER_DELIMITER = ": "; -const SPACE_DELIMITER = " "; -const NOT_FOUND = -1; -/** - * Util class for parsing batch response. - */ -class BatchResponseParser { - constructor(batchResponse, subRequests) { - if (!batchResponse || !batchResponse.contentType) { - // In special case(reported), server may return invalid content-type which could not be parsed. - throw new RangeError("batchResponse is malformed or doesn't contain valid content-type."); - } - if (!subRequests || subRequests.size === 0) { - // This should be prevent during coding. - throw new RangeError("Invalid state: subRequests is not provided or size is 0."); - } - this.batchResponse = batchResponse; - this.subRequests = subRequests; - this.responseBatchBoundary = this.batchResponse.contentType.split("=")[1]; - this.perResponsePrefix = `--${this.responseBatchBoundary}${HTTP_LINE_ENDING}`; - this.batchResponseEnding = `--${this.responseBatchBoundary}--`; - } - // For example of response, please refer to https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch#response - async parseBatchResponse() { - // When logic reach here, suppose batch request has already succeeded with 202, so we can further parse - // sub request's response. - if (this.batchResponse._response.status !== HTTPURLConnection.HTTP_ACCEPTED) { - throw new Error(`Invalid state: batch request failed with status: '${this.batchResponse._response.status}'.`); - } - const responseBodyAsText = await getBodyAsText(this.batchResponse); - const subResponses = responseBodyAsText - .split(this.batchResponseEnding)[0] // string after ending is useless - .split(this.perResponsePrefix) - .slice(1); // string before first response boundary is useless - const subResponseCount = subResponses.length; - // Defensive coding in case of potential error parsing. - // Note: subResponseCount == 1 is special case where sub request is invalid. - // We try to prevent such cases through early validation, e.g. validate sub request count >= 1. - // While in unexpected sub request invalid case, we allow sub response to be parsed and return to user. - if (subResponseCount !== this.subRequests.size && subResponseCount !== 1) { - throw new Error("Invalid state: sub responses' count is not equal to sub requests' count."); - } - const deserializedSubResponses = new Array(subResponseCount); - let subResponsesSucceededCount = 0; - let subResponsesFailedCount = 0; - // Parse sub subResponses. - for (let index = 0; index < subResponseCount; index++) { - const subResponse = subResponses[index]; - const deserializedSubResponse = {}; - deserializedSubResponse.headers = new coreHttp.HttpHeaders(); - const responseLines = subResponse.split(`${HTTP_LINE_ENDING}`); - let subRespHeaderStartFound = false; - let subRespHeaderEndFound = false; - let subRespFailed = false; - let contentId = NOT_FOUND; - for (const responseLine of responseLines) { - if (!subRespHeaderStartFound) { - // Convention line to indicate content ID - if (responseLine.startsWith(HeaderConstants.CONTENT_ID)) { - contentId = parseInt(responseLine.split(HTTP_HEADER_DELIMITER)[1]); - } - // Http version line with status code indicates the start of sub request's response. - // Example: HTTP/1.1 202 Accepted - if (responseLine.startsWith(HTTP_VERSION_1_1)) { - subRespHeaderStartFound = true; - const tokens = responseLine.split(SPACE_DELIMITER); - deserializedSubResponse.status = parseInt(tokens[1]); - deserializedSubResponse.statusMessage = tokens.slice(2).join(SPACE_DELIMITER); - } - continue; // Skip convention headers not specifically for sub request i.e. Content-Type: application/http and Content-ID: * - } - if (responseLine.trim() === "") { - // Sub response's header start line already found, and the first empty line indicates header end line found. - if (!subRespHeaderEndFound) { - subRespHeaderEndFound = true; - } - continue; // Skip empty line - } - // Note: when code reach here, it indicates subRespHeaderStartFound == true - if (!subRespHeaderEndFound) { - if (responseLine.indexOf(HTTP_HEADER_DELIMITER) === -1) { - // Defensive coding to prevent from missing valuable lines. - throw new Error(`Invalid state: find non-empty line '${responseLine}' without HTTP header delimiter '${HTTP_HEADER_DELIMITER}'.`); - } - // Parse headers of sub response. - const tokens = responseLine.split(HTTP_HEADER_DELIMITER); - deserializedSubResponse.headers.set(tokens[0], tokens[1]); - if (tokens[0] === HeaderConstants.X_MS_ERROR_CODE) { - deserializedSubResponse.errorCode = tokens[1]; - subRespFailed = true; - } - } - else { - // Assemble body of sub response. - if (!deserializedSubResponse.bodyAsText) { - deserializedSubResponse.bodyAsText = ""; - } - deserializedSubResponse.bodyAsText += responseLine; - } - } // Inner for end - // The response will contain the Content-ID header for each corresponding subrequest response to use for tracking. - // The Content-IDs are set to a valid index in the subrequests we sent. In the status code 202 path, we could expect it - // to be 1-1 mapping from the [0, subRequests.size) to the Content-IDs returned. If not, we simply don't return that - // unexpected subResponse in the parsed reponse and we can always look it up in the raw response for debugging purpose. - if (contentId !== NOT_FOUND && - Number.isInteger(contentId) && - contentId >= 0 && - contentId < this.subRequests.size && - deserializedSubResponses[contentId] === undefined) { - deserializedSubResponse._request = this.subRequests.get(contentId); - deserializedSubResponses[contentId] = deserializedSubResponse; - } - else { - logger.error(`subResponses[${index}] is dropped as the Content-ID is not found or invalid, Content-ID: ${contentId}`); - } - if (subRespFailed) { - subResponsesFailedCount++; - } - else { - subResponsesSucceededCount++; - } - } - return { - subResponses: deserializedSubResponses, - subResponsesSucceededCount: subResponsesSucceededCount, - subResponsesFailedCount: subResponsesFailedCount, - }; - } -} + // 11. Let client be this's relevant settings object. + const client = environmentSettingsObject.settingsObject -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. -var MutexLockStatus; -(function (MutexLockStatus) { - MutexLockStatus[MutexLockStatus["LOCKED"] = 0] = "LOCKED"; - MutexLockStatus[MutexLockStatus["UNLOCKED"] = 1] = "UNLOCKED"; -})(MutexLockStatus || (MutexLockStatus = {})); -/** - * An async mutex lock. - */ -class Mutex { - /** - * Lock for a specific key. If the lock has been acquired by another customer, then - * will wait until getting the lock. - * - * @param key - lock key - */ - static async lock(key) { - return new Promise((resolve) => { - if (this.keys[key] === undefined || this.keys[key] === MutexLockStatus.UNLOCKED) { - this.keys[key] = MutexLockStatus.LOCKED; - resolve(); - } - else { - this.onUnlockEvent(key, () => { - this.keys[key] = MutexLockStatus.LOCKED; - resolve(); - }); - } - }); - } - /** - * Unlock a key. - * - * @param key - - */ - static async unlock(key) { - return new Promise((resolve) => { - if (this.keys[key] === MutexLockStatus.LOCKED) { - this.emitUnlockEvent(key); - } - delete this.keys[key]; - resolve(); - }); - } - static onUnlockEvent(key, handler) { - if (this.listeners[key] === undefined) { - this.listeners[key] = [handler]; - } - else { - this.listeners[key].push(handler); - } + // 12. Run this step in parallel: + + // 1. Establish a WebSocket connection given urlRecord, protocols, + // and client. + this[kController] = establishWebSocketConnection( + urlRecord, + protocols, + client, + this, + (response, extensions) => this.#onConnectionEstablished(response, extensions), + options + ) + + // Each WebSocket object has an associated ready state, which is a + // number representing the state of the connection. Initially it must + // be CONNECTING (0). + this[kReadyState] = WebSocket.CONNECTING + + this[kSentClose] = sentCloseFrameState.NOT_SENT + + // The extensions attribute must initially return the empty string. + + // The protocol attribute must initially return the empty string. + + // Each WebSocket object has an associated binary type, which is a + // BinaryType. Initially it must be "blob". + this[kBinaryType] = 'blob' + } + + /** + * @see https://websockets.spec.whatwg.org/#dom-websocket-close + * @param {number|undefined} code + * @param {string|undefined} reason + */ + close (code = undefined, reason = undefined) { + webidl.brandCheck(this, WebSocket) + + const prefix = 'WebSocket.close' + + if (code !== undefined) { + code = webidl.converters['unsigned short'](code, prefix, 'code', { clamp: true }) } - static emitUnlockEvent(key) { - if (this.listeners[key] !== undefined && this.listeners[key].length > 0) { - const handler = this.listeners[key].shift(); - setImmediate(() => { - handler.call(this); - }); - } + + if (reason !== undefined) { + reason = webidl.converters.USVString(reason, prefix, 'reason') } -} -Mutex.keys = {}; -Mutex.listeners = {}; -// Copyright (c) Microsoft Corporation. -/** - * A BlobBatch represents an aggregated set of operations on blobs. - * Currently, only `delete` and `setAccessTier` are supported. - */ -class BlobBatch { - constructor() { - this.batch = "batch"; - this.batchRequest = new InnerBatchRequest(); + // 1. If code is present, but is neither an integer equal to 1000 nor an + // integer in the range 3000 to 4999, inclusive, throw an + // "InvalidAccessError" DOMException. + if (code !== undefined) { + if (code !== 1000 && (code < 3000 || code > 4999)) { + throw new DOMException('invalid code', 'InvalidAccessError') + } } - /** - * Get the value of Content-Type for a batch request. - * The value must be multipart/mixed with a batch boundary. - * Example: multipart/mixed; boundary=batch_a81786c8-e301-4e42-a729-a32ca24ae252 - */ - getMultiPartContentType() { - return this.batchRequest.getMultipartContentType(); + + let reasonByteLength = 0 + + // 2. If reason is present, then run these substeps: + if (reason !== undefined) { + // 1. Let reasonBytes be the result of encoding reason. + // 2. If reasonBytes is longer than 123 bytes, then throw a + // "SyntaxError" DOMException. + reasonByteLength = Buffer.byteLength(reason) + + if (reasonByteLength > 123) { + throw new DOMException( + `Reason must be less than 123 bytes; received ${reasonByteLength}`, + 'SyntaxError' + ) + } } - /** - * Get assembled HTTP request body for sub requests. - */ - getHttpRequestBody() { - return this.batchRequest.getHttpRequestBody(); + + // 3. Run the first matching steps from the following list: + closeWebSocketConnection(this, code, reason, reasonByteLength) + } + + /** + * @see https://websockets.spec.whatwg.org/#dom-websocket-send + * @param {NodeJS.TypedArray|ArrayBuffer|Blob|string} data + */ + send (data) { + webidl.brandCheck(this, WebSocket) + + const prefix = 'WebSocket.send' + webidl.argumentLengthCheck(arguments, 1, prefix) + + data = webidl.converters.WebSocketSendData(data, prefix, 'data') + + // 1. If this's ready state is CONNECTING, then throw an + // "InvalidStateError" DOMException. + if (isConnecting(this)) { + throw new DOMException('Sent before connected.', 'InvalidStateError') } - /** - * Get sub requests that are added into the batch request. - */ - getSubRequests() { - return this.batchRequest.getSubRequests(); + + // 2. Run the appropriate set of steps from the following list: + // https://datatracker.ietf.org/doc/html/rfc6455#section-6.1 + // https://datatracker.ietf.org/doc/html/rfc6455#section-5.2 + + if (!isEstablished(this) || isClosing(this)) { + return } - async addSubRequestInternal(subRequest, assembleSubRequestFunc) { - await Mutex.lock(this.batch); - try { - this.batchRequest.preAddSubRequest(subRequest); - await assembleSubRequestFunc(); - this.batchRequest.postAddSubRequest(subRequest); - } - finally { - await Mutex.unlock(this.batch); - } + + // If data is a string + if (typeof data === 'string') { + // If the WebSocket connection is established and the WebSocket + // closing handshake has not yet started, then the user agent + // must send a WebSocket Message comprised of the data argument + // using a text frame opcode; if the data cannot be sent, e.g. + // because it would need to be buffered but the buffer is full, + // the user agent must flag the WebSocket as full and then close + // the WebSocket connection. Any invocation of this method with a + // string argument that does not throw an exception must increase + // the bufferedAmount attribute by the number of bytes needed to + // express the argument as UTF-8. + + const length = Buffer.byteLength(data) + + this.#bufferedAmount += length + this.#sendQueue.add(data, () => { + this.#bufferedAmount -= length + }, sendHints.string) + } else if (types.isArrayBuffer(data)) { + // If the WebSocket connection is established, and the WebSocket + // closing handshake has not yet started, then the user agent must + // send a WebSocket Message comprised of data using a binary frame + // opcode; if the data cannot be sent, e.g. because it would need + // to be buffered but the buffer is full, the user agent must flag + // the WebSocket as full and then close the WebSocket connection. + // The data to be sent is the data stored in the buffer described + // by the ArrayBuffer object. Any invocation of this method with an + // ArrayBuffer argument that does not throw an exception must + // increase the bufferedAmount attribute by the length of the + // ArrayBuffer in bytes. + + this.#bufferedAmount += data.byteLength + this.#sendQueue.add(data, () => { + this.#bufferedAmount -= data.byteLength + }, sendHints.arrayBuffer) + } else if (ArrayBuffer.isView(data)) { + // If the WebSocket connection is established, and the WebSocket + // closing handshake has not yet started, then the user agent must + // send a WebSocket Message comprised of data using a binary frame + // opcode; if the data cannot be sent, e.g. because it would need to + // be buffered but the buffer is full, the user agent must flag the + // WebSocket as full and then close the WebSocket connection. The + // data to be sent is the data stored in the section of the buffer + // described by the ArrayBuffer object that data references. Any + // invocation of this method with this kind of argument that does + // not throw an exception must increase the bufferedAmount attribute + // by the length of data’s buffer in bytes. + + this.#bufferedAmount += data.byteLength + this.#sendQueue.add(data, () => { + this.#bufferedAmount -= data.byteLength + }, sendHints.typedArray) + } else if (isBlobLike(data)) { + // If the WebSocket connection is established, and the WebSocket + // closing handshake has not yet started, then the user agent must + // send a WebSocket Message comprised of data using a binary frame + // opcode; if the data cannot be sent, e.g. because it would need to + // be buffered but the buffer is full, the user agent must flag the + // WebSocket as full and then close the WebSocket connection. The data + // to be sent is the raw data represented by the Blob object. Any + // invocation of this method with a Blob argument that does not throw + // an exception must increase the bufferedAmount attribute by the size + // of the Blob object’s raw data, in bytes. + + this.#bufferedAmount += data.size + this.#sendQueue.add(data, () => { + this.#bufferedAmount -= data.size + }, sendHints.blob) } - setBatchType(batchType) { - if (!this.batchType) { - this.batchType = batchType; - } - if (this.batchType !== batchType) { - throw new RangeError(`BlobBatch only supports one operation type per batch and it already is being used for ${this.batchType} operations.`); - } + } + + get readyState () { + webidl.brandCheck(this, WebSocket) + + // The readyState getter steps are to return this's ready state. + return this[kReadyState] + } + + get bufferedAmount () { + webidl.brandCheck(this, WebSocket) + + return this.#bufferedAmount + } + + get url () { + webidl.brandCheck(this, WebSocket) + + // The url getter steps are to return this's url, serialized. + return URLSerializer(this[kWebSocketURL]) + } + + get extensions () { + webidl.brandCheck(this, WebSocket) + + return this.#extensions + } + + get protocol () { + webidl.brandCheck(this, WebSocket) + + return this.#protocol + } + + get onopen () { + webidl.brandCheck(this, WebSocket) + + return this.#events.open + } + + set onopen (fn) { + webidl.brandCheck(this, WebSocket) + + if (this.#events.open) { + this.removeEventListener('open', this.#events.open) } - async deleteBlob(urlOrBlobClient, credentialOrOptions, options) { - let url; - let credential; - if (typeof urlOrBlobClient === "string" && - ((coreHttp.isNode && credentialOrOptions instanceof StorageSharedKeyCredential) || - credentialOrOptions instanceof AnonymousCredential || - coreHttp.isTokenCredential(credentialOrOptions))) { - // First overload - url = urlOrBlobClient; - credential = credentialOrOptions; - } - else if (urlOrBlobClient instanceof BlobClient) { - // Second overload - url = urlOrBlobClient.url; - credential = urlOrBlobClient.credential; - options = credentialOrOptions; - } - else { - throw new RangeError("Invalid arguments. Either url and credential, or BlobClient need be provided."); - } - if (!options) { - options = {}; - } - const { span, updatedOptions } = createSpan("BatchDeleteRequest-addSubRequest", options); - try { - this.setBatchType("delete"); - await this.addSubRequestInternal({ - url: url, - credential: credential, - }, async () => { - await new BlobClient(url, this.batchRequest.createPipeline(credential)).delete(updatedOptions); - }); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + + if (typeof fn === 'function') { + this.#events.open = fn + this.addEventListener('open', fn) + } else { + this.#events.open = null } - async setBlobAccessTier(urlOrBlobClient, credentialOrTier, tierOrOptions, options) { - let url; - let credential; - let tier; - if (typeof urlOrBlobClient === "string" && - ((coreHttp.isNode && credentialOrTier instanceof StorageSharedKeyCredential) || - credentialOrTier instanceof AnonymousCredential || - coreHttp.isTokenCredential(credentialOrTier))) { - // First overload - url = urlOrBlobClient; - credential = credentialOrTier; - tier = tierOrOptions; - } - else if (urlOrBlobClient instanceof BlobClient) { - // Second overload - url = urlOrBlobClient.url; - credential = urlOrBlobClient.credential; - tier = credentialOrTier; - options = tierOrOptions; - } - else { - throw new RangeError("Invalid arguments. Either url and credential, or BlobClient need be provided."); - } - if (!options) { - options = {}; - } - const { span, updatedOptions } = createSpan("BatchSetTierRequest-addSubRequest", options); - try { - this.setBatchType("setAccessTier"); - await this.addSubRequestInternal({ - url: url, - credential: credential, - }, async () => { - await new BlobClient(url, this.batchRequest.createPipeline(credential)).setAccessTier(tier, updatedOptions); - }); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + } + + get onerror () { + webidl.brandCheck(this, WebSocket) + + return this.#events.error + } + + set onerror (fn) { + webidl.brandCheck(this, WebSocket) + + if (this.#events.error) { + this.removeEventListener('error', this.#events.error) } -} -/** - * Inner batch request class which is responsible for assembling and serializing sub requests. - * See https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch#request-body for how requests are assembled. - */ -class InnerBatchRequest { - constructor() { - this.operationCount = 0; - this.body = ""; - const tempGuid = coreHttp.generateUuid(); - // batch_{batchid} - this.boundary = `batch_${tempGuid}`; - // --batch_{batchid} - // Content-Type: application/http - // Content-Transfer-Encoding: binary - this.subRequestPrefix = `--${this.boundary}${HTTP_LINE_ENDING}${HeaderConstants.CONTENT_TYPE}: application/http${HTTP_LINE_ENDING}${HeaderConstants.CONTENT_TRANSFER_ENCODING}: binary`; - // multipart/mixed; boundary=batch_{batchid} - this.multipartContentType = `multipart/mixed; boundary=${this.boundary}`; - // --batch_{batchid}-- - this.batchRequestEnding = `--${this.boundary}--`; - this.subRequests = new Map(); + + if (typeof fn === 'function') { + this.#events.error = fn + this.addEventListener('error', fn) + } else { + this.#events.error = null } - /** - * Create pipeline to assemble sub requests. The idea here is to use existing - * credential and serialization/deserialization components, with additional policies to - * filter unnecessary headers, assemble sub requests into request's body - * and intercept request from going to wire. - * @param credential - Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the `@azure/identity` package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used. - */ - createPipeline(credential) { - const isAnonymousCreds = credential instanceof AnonymousCredential; - const policyFactoryLength = 3 + (isAnonymousCreds ? 0 : 1); // [deserializationPolicy, BatchHeaderFilterPolicyFactory, (Optional)Credential, BatchRequestAssemblePolicyFactory] - const factories = new Array(policyFactoryLength); - factories[0] = coreHttp.deserializationPolicy(); // Default deserializationPolicy is provided by protocol layer - factories[1] = new BatchHeaderFilterPolicyFactory(); // Use batch header filter policy to exclude unnecessary headers - if (!isAnonymousCreds) { - factories[2] = coreHttp.isTokenCredential(credential) - ? attachCredential(coreHttp.bearerTokenAuthenticationPolicy(credential, StorageOAuthScopes), credential) - : credential; - } - factories[policyFactoryLength - 1] = new BatchRequestAssemblePolicyFactory(this); // Use batch assemble policy to assemble request and intercept request from going to wire - return new Pipeline(factories, {}); + } + + get onclose () { + webidl.brandCheck(this, WebSocket) + + return this.#events.close + } + + set onclose (fn) { + webidl.brandCheck(this, WebSocket) + + if (this.#events.close) { + this.removeEventListener('close', this.#events.close) } - appendSubRequestToBody(request) { - // Start to assemble sub request - this.body += [ - this.subRequestPrefix, - `${HeaderConstants.CONTENT_ID}: ${this.operationCount}`, - "", - `${request.method.toString()} ${getURLPathAndQuery(request.url)} ${HTTP_VERSION_1_1}${HTTP_LINE_ENDING}`, // sub request start line with method - ].join(HTTP_LINE_ENDING); - for (const header of request.headers.headersArray()) { - this.body += `${header.name}: ${header.value}${HTTP_LINE_ENDING}`; - } - this.body += HTTP_LINE_ENDING; // sub request's headers need be ending with an empty line - // No body to assemble for current batch request support - // End to assemble sub request + + if (typeof fn === 'function') { + this.#events.close = fn + this.addEventListener('close', fn) + } else { + this.#events.close = null } - preAddSubRequest(subRequest) { - if (this.operationCount >= BATCH_MAX_REQUEST) { - throw new RangeError(`Cannot exceed ${BATCH_MAX_REQUEST} sub requests in a single batch`); - } - // Fast fail if url for sub request is invalid - const path = getURLPath(subRequest.url); - if (!path || path === "") { - throw new RangeError(`Invalid url for sub request: '${subRequest.url}'`); - } + } + + get onmessage () { + webidl.brandCheck(this, WebSocket) + + return this.#events.message + } + + set onmessage (fn) { + webidl.brandCheck(this, WebSocket) + + if (this.#events.message) { + this.removeEventListener('message', this.#events.message) } - postAddSubRequest(subRequest) { - this.subRequests.set(this.operationCount, subRequest); - this.operationCount++; + + if (typeof fn === 'function') { + this.#events.message = fn + this.addEventListener('message', fn) + } else { + this.#events.message = null } - // Return the http request body with assembling the ending line to the sub request body. - getHttpRequestBody() { - return `${this.body}${this.batchRequestEnding}${HTTP_LINE_ENDING}`; + } + + get binaryType () { + webidl.brandCheck(this, WebSocket) + + return this[kBinaryType] + } + + set binaryType (type) { + webidl.brandCheck(this, WebSocket) + + if (type !== 'blob' && type !== 'arraybuffer') { + this[kBinaryType] = 'blob' + } else { + this[kBinaryType] = type } - getMultipartContentType() { - return this.multipartContentType; + } + + /** + * @see https://websockets.spec.whatwg.org/#feedback-from-the-protocol + */ + #onConnectionEstablished (response, parsedExtensions) { + // processResponse is called when the "response's header list has been received and initialized." + // once this happens, the connection is open + this[kResponse] = response + + const parser = new ByteParser(this, parsedExtensions) + parser.on('drain', onParserDrain) + parser.on('error', onParserError.bind(this)) + + response.socket.ws = this + this[kByteParser] = parser + + this.#sendQueue = new SendQueue(response.socket) + + // 1. Change the ready state to OPEN (1). + this[kReadyState] = states.OPEN + + // 2. Change the extensions attribute’s value to the extensions in use, if + // it is not the null value. + // https://datatracker.ietf.org/doc/html/rfc6455#section-9.1 + const extensions = response.headersList.get('sec-websocket-extensions') + + if (extensions !== null) { + this.#extensions = extensions } - getSubRequests() { - return this.subRequests; + + // 3. Change the protocol attribute’s value to the subprotocol in use, if + // it is not the null value. + // https://datatracker.ietf.org/doc/html/rfc6455#section-1.9 + const protocol = response.headersList.get('sec-websocket-protocol') + + if (protocol !== null) { + this.#protocol = protocol } + + // 4. Fire an event named open at the WebSocket object. + fireEvent('open', this) + } } -class BatchRequestAssemblePolicy extends coreHttp.BaseRequestPolicy { - constructor(batchRequest, nextPolicy, options) { - super(nextPolicy, options); - this.dummyResponse = { - request: new coreHttp.WebResource(), - status: 200, - headers: new coreHttp.HttpHeaders(), - }; - this.batchRequest = batchRequest; - } - async sendRequest(request) { - await this.batchRequest.appendSubRequestToBody(request); - return this.dummyResponse; // Intercept request from going to wire - } + +// https://websockets.spec.whatwg.org/#dom-websocket-connecting +WebSocket.CONNECTING = WebSocket.prototype.CONNECTING = states.CONNECTING +// https://websockets.spec.whatwg.org/#dom-websocket-open +WebSocket.OPEN = WebSocket.prototype.OPEN = states.OPEN +// https://websockets.spec.whatwg.org/#dom-websocket-closing +WebSocket.CLOSING = WebSocket.prototype.CLOSING = states.CLOSING +// https://websockets.spec.whatwg.org/#dom-websocket-closed +WebSocket.CLOSED = WebSocket.prototype.CLOSED = states.CLOSED + +Object.defineProperties(WebSocket.prototype, { + CONNECTING: staticPropertyDescriptors, + OPEN: staticPropertyDescriptors, + CLOSING: staticPropertyDescriptors, + CLOSED: staticPropertyDescriptors, + url: kEnumerableProperty, + readyState: kEnumerableProperty, + bufferedAmount: kEnumerableProperty, + onopen: kEnumerableProperty, + onerror: kEnumerableProperty, + onclose: kEnumerableProperty, + close: kEnumerableProperty, + onmessage: kEnumerableProperty, + binaryType: kEnumerableProperty, + send: kEnumerableProperty, + extensions: kEnumerableProperty, + protocol: kEnumerableProperty, + [Symbol.toStringTag]: { + value: 'WebSocket', + writable: false, + enumerable: false, + configurable: true + } +}) + +Object.defineProperties(WebSocket, { + CONNECTING: staticPropertyDescriptors, + OPEN: staticPropertyDescriptors, + CLOSING: staticPropertyDescriptors, + CLOSED: staticPropertyDescriptors +}) + +webidl.converters['sequence'] = webidl.sequenceConverter( + webidl.converters.DOMString +) + +webidl.converters['DOMString or sequence'] = function (V, prefix, argument) { + if (webidl.util.Type(V) === 'Object' && Symbol.iterator in V) { + return webidl.converters['sequence'](V) + } + + return webidl.converters.DOMString(V, prefix, argument) } -class BatchRequestAssemblePolicyFactory { - constructor(batchRequest) { - this.batchRequest = batchRequest; - } - create(nextPolicy, options) { - return new BatchRequestAssemblePolicy(this.batchRequest, nextPolicy, options); - } + +// This implements the proposal made in https://github.com/whatwg/websockets/issues/42 +webidl.converters.WebSocketInit = webidl.dictionaryConverter([ + { + key: 'protocols', + converter: webidl.converters['DOMString or sequence'], + defaultValue: () => new Array(0) + }, + { + key: 'dispatcher', + converter: webidl.converters.any, + defaultValue: () => getGlobalDispatcher() + }, + { + key: 'headers', + converter: webidl.nullableConverter(webidl.converters.HeadersInit) + } +]) + +webidl.converters['DOMString or sequence or WebSocketInit'] = function (V) { + if (webidl.util.Type(V) === 'Object' && !(Symbol.iterator in V)) { + return webidl.converters.WebSocketInit(V) + } + + return { protocols: webidl.converters['DOMString or sequence'](V) } } -class BatchHeaderFilterPolicy extends coreHttp.BaseRequestPolicy { - // The base class has a protected constructor. Adding a public one to enable constructing of this class. - /* eslint-disable-next-line @typescript-eslint/no-useless-constructor*/ - constructor(nextPolicy, options) { - super(nextPolicy, options); + +webidl.converters.WebSocketSendData = function (V) { + if (webidl.util.Type(V) === 'Object') { + if (isBlobLike(V)) { + return webidl.converters.Blob(V, { strict: false }) } - async sendRequest(request) { - let xMsHeaderName = ""; - for (const header of request.headers.headersArray()) { - if (iEqual(header.name, HeaderConstants.X_MS_VERSION)) { - xMsHeaderName = header.name; - } - } - if (xMsHeaderName !== "") { - request.headers.remove(xMsHeaderName); // The subrequests should not have the x-ms-version header. - } - return this._nextPolicy.sendRequest(request); + + if (ArrayBuffer.isView(V) || types.isArrayBuffer(V)) { + return webidl.converters.BufferSource(V) } + } + + return webidl.converters.USVString(V) } -class BatchHeaderFilterPolicyFactory { - create(nextPolicy, options) { - return new BatchHeaderFilterPolicy(nextPolicy, options); - } + +function onParserDrain () { + this.ws[kResponse].socket.resume() } -// Copyright (c) Microsoft Corporation. -/** - * A BlobBatchClient allows you to make batched requests to the Azure Storage Blob service. - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch - */ -class BlobBatchClient { - constructor(url, credentialOrPipeline, - // Legacy, no fix for eslint error without breaking. Disable it for this interface. - /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ - options) { - let pipeline; - if (isPipelineLike(credentialOrPipeline)) { - pipeline = credentialOrPipeline; - } - else if (!credentialOrPipeline) { - // no credential provided - pipeline = newPipeline(new AnonymousCredential(), options); - } - else { - pipeline = newPipeline(credentialOrPipeline, options); - } - const storageClientContext = new StorageClientContext(url, pipeline.toServiceClientOptions()); - const path = getURLPath(url); - if (path && path !== "/") { - // Container scoped. - this.serviceOrContainerContext = new Container(storageClientContext); - } - else { - this.serviceOrContainerContext = new Service(storageClientContext); - } - } - /** - * Creates a {@link BlobBatch}. - * A BlobBatch represents an aggregated set of operations on blobs. - */ - createBatch() { - return new BlobBatch(); +function onParserError (err) { + let message + let code + + if (err instanceof CloseEvent) { + message = err.reason + code = err.code + } else { + message = err.message + } + + fireEvent('error', this, () => new ErrorEvent('error', { error: err, message })) + + closeWebSocketConnection(this, code) +} + +module.exports = { + WebSocket +} + + +/***/ }), + +/***/ 64810: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +/** + * @fileoverview this file provides methods handling dependency cache + */ +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; } - async deleteBlobs(urlsOrBlobClients, credentialOrOptions, - // Legacy, no fix for eslint error without breaking. Disable it for this interface. - /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ - options) { - const batch = new BlobBatch(); - for (const urlOrBlobClient of urlsOrBlobClients) { - if (typeof urlOrBlobClient === "string") { - await batch.deleteBlob(urlOrBlobClient, credentialOrOptions, options); - } - else { - await batch.deleteBlob(urlOrBlobClient, credentialOrOptions); - } - } - return this.submitBatch(batch); + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.save = exports.restore = void 0; +const path_1 = __nccwpck_require__(71017); +const os_1 = __importDefault(__nccwpck_require__(22037)); +const cache = __importStar(__nccwpck_require__(27799)); +const core = __importStar(__nccwpck_require__(42186)); +const glob = __importStar(__nccwpck_require__(28090)); +const STATE_CACHE_PRIMARY_KEY = 'cache-primary-key'; +const CACHE_MATCHED_KEY = 'cache-matched-key'; +const CACHE_KEY_PREFIX = 'setup-java'; +const supportedPackageManager = [ + { + id: 'maven', + path: [(0, path_1.join)(os_1.default.homedir(), '.m2', 'repository')], + // https://github.com/actions/cache/blob/0638051e9af2c23d10bb70fa9beffcad6cff9ce3/examples.md#java---maven + pattern: ['**/pom.xml'] + }, + { + id: 'gradle', + path: [ + (0, path_1.join)(os_1.default.homedir(), '.gradle', 'caches'), + (0, path_1.join)(os_1.default.homedir(), '.gradle', 'wrapper') + ], + // https://github.com/actions/cache/blob/0638051e9af2c23d10bb70fa9beffcad6cff9ce3/examples.md#java---gradle + pattern: [ + '**/*.gradle*', + '**/gradle-wrapper.properties', + 'buildSrc/**/Versions.kt', + 'buildSrc/**/Dependencies.kt', + 'gradle/*.versions.toml', + '**/versions.properties' + ] + }, + { + id: 'sbt', + path: [ + (0, path_1.join)(os_1.default.homedir(), '.ivy2', 'cache'), + (0, path_1.join)(os_1.default.homedir(), '.sbt'), + getCoursierCachePath(), + // Some files should not be cached to avoid resolution problems. + // In particular the resolution of snapshots (ideological gap between maven/ivy). + '!' + (0, path_1.join)(os_1.default.homedir(), '.sbt', '*.lock'), + '!' + (0, path_1.join)(os_1.default.homedir(), '**', 'ivydata-*.properties') + ], + pattern: [ + '**/*.sbt', + '**/project/build.properties', + '**/project/**.scala', + '**/project/**.sbt' + ] } - async setBlobsAccessTier(urlsOrBlobClients, credentialOrTier, tierOrOptions, - // Legacy, no fix for eslint error without breaking. Disable it for this interface. - /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ - options) { - const batch = new BlobBatch(); - for (const urlOrBlobClient of urlsOrBlobClients) { - if (typeof urlOrBlobClient === "string") { - await batch.setBlobAccessTier(urlOrBlobClient, credentialOrTier, tierOrOptions, options); - } - else { - await batch.setBlobAccessTier(urlOrBlobClient, credentialOrTier, tierOrOptions); - } - } - return this.submitBatch(batch); +]; +function getCoursierCachePath() { + if (os_1.default.type() === 'Linux') + return (0, path_1.join)(os_1.default.homedir(), '.cache', 'coursier'); + if (os_1.default.type() === 'Darwin') + return (0, path_1.join)(os_1.default.homedir(), 'Library', 'Caches', 'Coursier'); + return (0, path_1.join)(os_1.default.homedir(), 'AppData', 'Local', 'Coursier', 'Cache'); +} +function findPackageManager(id) { + const packageManager = supportedPackageManager.find(packageManager => packageManager.id === id); + if (packageManager === undefined) { + throw new Error(`unknown package manager specified: ${id}`); } - /** - * Submit batch request which consists of multiple subrequests. - * - * Get `blobBatchClient` and other details before running the snippets. - * `blobServiceClient.getBlobBatchClient()` gives the `blobBatchClient` - * - * Example usage: - * - * ```js - * let batchRequest = new BlobBatch(); - * await batchRequest.deleteBlob(urlInString0, credential0); - * await batchRequest.deleteBlob(urlInString1, credential1, { - * deleteSnapshots: "include" - * }); - * const batchResp = await blobBatchClient.submitBatch(batchRequest); - * console.log(batchResp.subResponsesSucceededCount); - * ``` - * - * Example using a lease: - * - * ```js - * let batchRequest = new BlobBatch(); - * await batchRequest.setBlobAccessTier(blockBlobClient0, "Cool"); - * await batchRequest.setBlobAccessTier(blockBlobClient1, "Cool", { - * conditions: { leaseId: leaseId } - * }); - * const batchResp = await blobBatchClient.submitBatch(batchRequest); - * console.log(batchResp.subResponsesSucceededCount); - * ``` - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch - * - * @param batchRequest - A set of Delete or SetTier operations. - * @param options - - */ - async submitBatch(batchRequest, options = {}) { - if (!batchRequest || batchRequest.getSubRequests().size === 0) { - throw new RangeError("Batch request should contain one or more sub requests."); - } - const { span, updatedOptions } = createSpan("BlobBatchClient-submitBatch", options); - try { - const batchRequestBody = batchRequest.getHttpRequestBody(); - // ServiceSubmitBatchResponseModel and ContainerSubmitBatchResponse are compatible for now. - const rawBatchResponse = await this.serviceOrContainerContext.submitBatch(utf8ByteLength(batchRequestBody), batchRequest.getMultiPartContentType(), batchRequestBody, Object.assign(Object.assign({}, options), convertTracingToRequestOptionsBase(updatedOptions))); - // Parse the sub responses result, if logic reaches here(i.e. the batch request succeeded with status code 202). - const batchResponseParser = new BatchResponseParser(rawBatchResponse, batchRequest.getSubRequests()); - const responseSummary = await batchResponseParser.parseBatchResponse(); - const res = { - _response: rawBatchResponse._response, - contentType: rawBatchResponse.contentType, - errorCode: rawBatchResponse.errorCode, - requestId: rawBatchResponse.requestId, - clientRequestId: rawBatchResponse.clientRequestId, - version: rawBatchResponse.version, - subResponses: responseSummary.subResponses, - subResponsesSucceededCount: responseSummary.subResponsesSucceededCount, - subResponsesFailedCount: responseSummary.subResponsesFailedCount, - }; - return res; - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + return packageManager; +} +/** + * A function that generates a cache key to use. + * Format of the generated key will be "${{ platform }}-${{ id }}-${{ fileHash }}"". + * @see {@link https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows#matching-a-cache-key|spec of cache key} + */ +function computeCacheKey(packageManager, cacheDependencyPath) { + return __awaiter(this, void 0, void 0, function* () { + const pattern = cacheDependencyPath + ? cacheDependencyPath.trim().split('\n') + : packageManager.pattern; + const fileHash = yield glob.hashFiles(pattern.join('\n')); + if (!fileHash) { + throw new Error(`No file in ${process.cwd()} matched to [${pattern}], make sure you have checked out the target repository`); + } + return `${CACHE_KEY_PREFIX}-${process.env['RUNNER_OS']}-${process.arch}-${packageManager.id}-${fileHash}`; + }); +} +/** + * Restore the dependency cache + * @param id ID of the package manager, should be "maven" or "gradle" + * @param cacheDependencyPath The path to a dependency file + */ +function restore(id, cacheDependencyPath) { + return __awaiter(this, void 0, void 0, function* () { + const packageManager = findPackageManager(id); + const primaryKey = yield computeCacheKey(packageManager, cacheDependencyPath); + core.debug(`primary key is ${primaryKey}`); + core.saveState(STATE_CACHE_PRIMARY_KEY, primaryKey); + // No "restoreKeys" is set, to start with a clear cache after dependency update (see https://github.com/actions/setup-java/issues/269) + const matchedKey = yield cache.restoreCache(packageManager.path, primaryKey); + if (matchedKey) { + core.saveState(CACHE_MATCHED_KEY, matchedKey); + core.setOutput('cache-hit', matchedKey === primaryKey); + core.info(`Cache restored from key: ${matchedKey}`); } - finally { - span.end(); + else { + core.setOutput('cache-hit', false); + core.info(`${packageManager.id} cache is not found`); } - } + }); } - +exports.restore = restore; /** - * A ContainerClient represents a URL to the Azure Storage container allowing you to manipulate its blobs. + * Save the dependency cache + * @param id ID of the package manager, should be "maven" or "gradle" */ -class ContainerClient extends StorageClient { - constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, - // Legacy, no fix for eslint error without breaking. Disable it for this interface. - /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ - options) { - let pipeline; - let url; - options = options || {}; - if (isPipelineLike(credentialOrPipelineOrContainerName)) { - // (url: string, pipeline: Pipeline) - url = urlOrConnectionString; - pipeline = credentialOrPipelineOrContainerName; +function save(id) { + return __awaiter(this, void 0, void 0, function* () { + const packageManager = findPackageManager(id); + const matchedKey = core.getState(CACHE_MATCHED_KEY); + // Inputs are re-evaluated before the post action, so we want the original key used for restore + const primaryKey = core.getState(STATE_CACHE_PRIMARY_KEY); + if (!primaryKey) { + core.warning('Error retrieving key from state.'); + return; } - else if ((coreHttp.isNode && credentialOrPipelineOrContainerName instanceof StorageSharedKeyCredential) || - credentialOrPipelineOrContainerName instanceof AnonymousCredential || - coreHttp.isTokenCredential(credentialOrPipelineOrContainerName)) { - // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) - url = urlOrConnectionString; - pipeline = newPipeline(credentialOrPipelineOrContainerName, options); + else if (matchedKey === primaryKey) { + // no change in target directories + core.info(`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`); + return; } - else if (!credentialOrPipelineOrContainerName && - typeof credentialOrPipelineOrContainerName !== "string") { - // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) - // The second parameter is undefined. Use anonymous credential. - url = urlOrConnectionString; - pipeline = newPipeline(new AnonymousCredential(), options); + try { + yield cache.saveCache(packageManager.path, primaryKey); + core.info(`Cache saved with the key: ${primaryKey}`); } - else if (credentialOrPipelineOrContainerName && - typeof credentialOrPipelineOrContainerName === "string") { - // (connectionString: string, containerName: string, blobName: string, options?: StoragePipelineOptions) - const containerName = credentialOrPipelineOrContainerName; - const extractedCreds = extractConnectionStringParts(urlOrConnectionString); - if (extractedCreds.kind === "AccountConnString") { - if (coreHttp.isNode) { - const sharedKeyCredential = new StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey); - url = appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)); - if (!options.proxyOptions) { - options.proxyOptions = coreHttp.getDefaultProxySettings(extractedCreds.proxyUri); - } - pipeline = newPipeline(sharedKeyCredential, options); - } - else { - throw new Error("Account connection string is only supported in Node.js environment"); - } - } - else if (extractedCreds.kind === "SASConnString") { - url = - appendToURLPath(extractedCreds.url, encodeURIComponent(containerName)) + - "?" + - extractedCreds.accountSas; - pipeline = newPipeline(new AnonymousCredential(), options); + catch (error) { + const err = error; + if (err.name === cache.ReserveCacheError.name) { + core.info(err.message); } else { - throw new Error("Connection string must be either an Account connection string or a SAS connection string"); + if (isProbablyGradleDaemonProblem(packageManager, err)) { + core.warning('Failed to save Gradle cache on Windows. If tar.exe reported "Permission denied", try to run Gradle with `--no-daemon` option. Refer to https://github.com/actions/cache/issues/454 for details.'); + } + throw error; } } - else { - throw new Error("Expecting non-empty strings for containerName parameter"); - } - super(url, pipeline); - this._containerName = this.getContainerNameFromUrl(); - this.containerContext = new Container(this.storageClientContext); - } - /** - * The name of the container. - */ - get containerName() { - return this._containerName; + }); +} +exports.save = save; +/** + * @param packageManager the specified package manager by user + * @param error the error thrown by the saveCache + * @returns true if the given error seems related to the {@link https://github.com/actions/cache/issues/454|running Gradle Daemon issue}. + * @see {@link https://github.com/actions/cache/issues/454#issuecomment-840493935|why --no-daemon is necessary} + */ +function isProbablyGradleDaemonProblem(packageManager, error) { + if (packageManager.id !== 'gradle' || + process.env['RUNNER_OS'] !== 'Windows') { + return false; } - /** - * Creates a new container under the specified account. If the container with - * the same name already exists, the operation fails. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/create-container - * - * @param options - Options to Container Create operation. - * - * - * Example usage: - * - * ```js - * const containerClient = blobServiceClient.getContainerClient(""); - * const createContainerResponse = await containerClient.create(); - * console.log("Container was created successfully", createContainerResponse.requestId); - * ``` - */ - async create(options = {}) { - const { span, updatedOptions } = createSpan("ContainerClient-create", options); - try { - // Spread operator in destructuring assignments, - // this will filter out unwanted properties from the response object into result object - return await this.containerContext.create(Object.assign(Object.assign({}, options), convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + const message = error.message || ''; + return message.startsWith('Tar failed with error: '); +} + + +/***/ }), + +/***/ 85823: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; } - /** - * Creates a new container under the specified account. If the container with - * the same name already exists, it is not changed. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/create-container - * - * @param options - - */ - async createIfNotExists(options = {}) { - var _a, _b; - const { span, updatedOptions } = createSpan("ContainerClient-createIfNotExists", options); - try { - const res = await this.create(updatedOptions); - return Object.assign(Object.assign({ succeeded: true }, res), { _response: res._response }); - } - catch (e) { - if (((_a = e.details) === null || _a === void 0 ? void 0 : _a.errorCode) === "ContainerAlreadyExists") { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: "Expected exception when creating a container only if it does not already exist.", - }); - return Object.assign(Object.assign({ succeeded: false }, (_b = e.response) === null || _b === void 0 ? void 0 : _b.parsedHeaders), { _response: e.response }); + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.run = void 0; +const core = __importStar(__nccwpck_require__(42186)); +const gpg = __importStar(__nccwpck_require__(23759)); +const constants = __importStar(__nccwpck_require__(69042)); +const util_1 = __nccwpck_require__(92629); +const cache_1 = __nccwpck_require__(64810); +function removePrivateKeyFromKeychain() { + return __awaiter(this, void 0, void 0, function* () { + if (core.getInput(constants.INPUT_GPG_PRIVATE_KEY, { required: false })) { + core.info('Removing private key from keychain'); + try { + const keyFingerprint = core.getState(constants.STATE_GPG_PRIVATE_KEY_FINGERPRINT); + yield gpg.deleteKey(keyFingerprint); } - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } - } - /** - * Returns true if the Azure container resource represented by this client exists; false otherwise. - * - * NOTE: use this function with care since an existing container might be deleted by other clients or - * applications. Vice versa new containers with the same name might be added by other clients or - * applications after this function completes. - * - * @param options - - */ - async exists(options = {}) { - const { span, updatedOptions } = createSpan("ContainerClient-exists", options); - try { - await this.getProperties({ - abortSignal: options.abortSignal, - tracingOptions: updatedOptions.tracingOptions, - }); - return true; - } - catch (e) { - if (e.statusCode === 404) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: "Expected exception when checking container existence", - }); - return false; + catch (error) { + core.setFailed(`Failed to remove private key due to: ${error.message}`); } - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); } + }); +} +/** + * Check given input and run a save process for the specified package manager + * @returns Promise that will be resolved when the save process finishes + */ +function saveCache() { + return __awaiter(this, void 0, void 0, function* () { + const jobStatus = (0, util_1.isJobStatusSuccess)(); + const cache = core.getInput(constants.INPUT_CACHE); + return jobStatus && cache ? (0, cache_1.save)(cache) : Promise.resolve(); + }); +} +/** + * The save process is best-effort, and it should not make the workflow fail + * even though this process throws an error. + * @param promise the promise to ignore error from + * @returns Promise that will ignore error reported by the given promise + */ +function ignoreError(promise) { + return __awaiter(this, void 0, void 0, function* () { + return new Promise(resolve => { + promise + .catch(error => { + core.warning(error); + resolve(void 0); + }) + .then(resolve); + }); + }); +} +function run() { + return __awaiter(this, void 0, void 0, function* () { + yield removePrivateKeyFromKeychain(); + yield ignoreError(saveCache()); + }); +} +exports.run = run; +if (require.main === require.cache[eval('__filename')]) { + run(); +} +else { + // https://nodejs.org/api/modules.html#modules_accessing_the_main_module + core.info('the script is loaded as a module, so skipping the execution'); +} + + +/***/ }), + +/***/ 69042: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.DISTRIBUTIONS_ONLY_MAJOR_VERSION = exports.INPUT_MVN_TOOLCHAIN_VENDOR = exports.INPUT_MVN_TOOLCHAIN_ID = exports.MVN_TOOLCHAINS_FILE = exports.MVN_SETTINGS_FILE = exports.M2_DIR = exports.STATE_GPG_PRIVATE_KEY_FINGERPRINT = exports.INPUT_JOB_STATUS = exports.INPUT_CACHE_DEPENDENCY_PATH = exports.INPUT_CACHE = exports.INPUT_DEFAULT_GPG_PASSPHRASE = exports.INPUT_DEFAULT_GPG_PRIVATE_KEY = exports.INPUT_GPG_PASSPHRASE = exports.INPUT_GPG_PRIVATE_KEY = exports.INPUT_OVERWRITE_SETTINGS = exports.INPUT_SETTINGS_PATH = exports.INPUT_SERVER_PASSWORD = exports.INPUT_SERVER_USERNAME = exports.INPUT_SERVER_ID = exports.INPUT_CHECK_LATEST = exports.INPUT_JDK_FILE = exports.INPUT_DISTRIBUTION = exports.INPUT_JAVA_PACKAGE = exports.INPUT_ARCHITECTURE = exports.INPUT_JAVA_VERSION_FILE = exports.INPUT_JAVA_VERSION = exports.MACOS_JAVA_CONTENT_POSTFIX = void 0; +exports.MACOS_JAVA_CONTENT_POSTFIX = 'Contents/Home'; +exports.INPUT_JAVA_VERSION = 'java-version'; +exports.INPUT_JAVA_VERSION_FILE = 'java-version-file'; +exports.INPUT_ARCHITECTURE = 'architecture'; +exports.INPUT_JAVA_PACKAGE = 'java-package'; +exports.INPUT_DISTRIBUTION = 'distribution'; +exports.INPUT_JDK_FILE = 'jdkFile'; +exports.INPUT_CHECK_LATEST = 'check-latest'; +exports.INPUT_SERVER_ID = 'server-id'; +exports.INPUT_SERVER_USERNAME = 'server-username'; +exports.INPUT_SERVER_PASSWORD = 'server-password'; +exports.INPUT_SETTINGS_PATH = 'settings-path'; +exports.INPUT_OVERWRITE_SETTINGS = 'overwrite-settings'; +exports.INPUT_GPG_PRIVATE_KEY = 'gpg-private-key'; +exports.INPUT_GPG_PASSPHRASE = 'gpg-passphrase'; +exports.INPUT_DEFAULT_GPG_PRIVATE_KEY = undefined; +exports.INPUT_DEFAULT_GPG_PASSPHRASE = 'GPG_PASSPHRASE'; +exports.INPUT_CACHE = 'cache'; +exports.INPUT_CACHE_DEPENDENCY_PATH = 'cache-dependency-path'; +exports.INPUT_JOB_STATUS = 'job-status'; +exports.STATE_GPG_PRIVATE_KEY_FINGERPRINT = 'gpg-private-key-fingerprint'; +exports.M2_DIR = '.m2'; +exports.MVN_SETTINGS_FILE = 'settings.xml'; +exports.MVN_TOOLCHAINS_FILE = 'toolchains.xml'; +exports.INPUT_MVN_TOOLCHAIN_ID = 'mvn-toolchain-id'; +exports.INPUT_MVN_TOOLCHAIN_VENDOR = 'mvn-toolchain-vendor'; +exports.DISTRIBUTIONS_ONLY_MAJOR_VERSION = ['corretto']; + + +/***/ }), + +/***/ 23759: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; } - /** - * Creates a {@link BlobClient} - * - * @param blobName - A blob name - * @returns A new BlobClient object for the given blob name. - */ - getBlobClient(blobName) { - return new BlobClient(appendToURLPath(this.url, encodeURIComponent(blobName)), this.pipeline); - } - /** - * Creates an {@link AppendBlobClient} - * - * @param blobName - An append blob name - */ - getAppendBlobClient(blobName) { - return new AppendBlobClient(appendToURLPath(this.url, encodeURIComponent(blobName)), this.pipeline); - } - /** - * Creates a {@link BlockBlobClient} - * - * @param blobName - A block blob name - * - * - * Example usage: - * - * ```js - * const content = "Hello world!"; - * - * const blockBlobClient = containerClient.getBlockBlobClient(""); - * const uploadBlobResponse = await blockBlobClient.upload(content, content.length); - * ``` - */ - getBlockBlobClient(blobName) { - return new BlockBlobClient(appendToURLPath(this.url, encodeURIComponent(blobName)), this.pipeline); + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.deleteKey = exports.importKey = exports.PRIVATE_KEY_FILE = void 0; +const fs = __importStar(__nccwpck_require__(57147)); +const path = __importStar(__nccwpck_require__(71017)); +const io = __importStar(__nccwpck_require__(47351)); +const exec = __importStar(__nccwpck_require__(71514)); +const util = __importStar(__nccwpck_require__(92629)); +exports.PRIVATE_KEY_FILE = path.join(util.getTempDir(), 'private-key.asc'); +const PRIVATE_KEY_FINGERPRINT_REGEX = /\w{40}/; +function importKey(privateKey) { + return __awaiter(this, void 0, void 0, function* () { + fs.writeFileSync(exports.PRIVATE_KEY_FILE, privateKey, { + encoding: 'utf-8', + flag: 'w' + }); + let output = ''; + const options = { + silent: true, + listeners: { + stdout: (data) => { + output += data.toString(); + } + } + }; + yield exec.exec('gpg', [ + '--batch', + '--import-options', + 'import-show', + '--import', + exports.PRIVATE_KEY_FILE + ], options); + yield io.rmRF(exports.PRIVATE_KEY_FILE); + const match = output.match(PRIVATE_KEY_FINGERPRINT_REGEX); + return match && match[0]; + }); +} +exports.importKey = importKey; +function deleteKey(keyFingerprint) { + return __awaiter(this, void 0, void 0, function* () { + yield exec.exec('gpg', ['--batch', '--yes', '--delete-secret-and-public-key', keyFingerprint], { + silent: true + }); + }); +} +exports.deleteKey = deleteKey; + + +/***/ }), + +/***/ 92629: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; } - /** - * Creates a {@link PageBlobClient} - * - * @param blobName - A page blob name - */ - getPageBlobClient(blobName) { - return new PageBlobClient(appendToURLPath(this.url, encodeURIComponent(blobName)), this.pipeline); + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.renameWinArchive = exports.getGitHubHttpHeaders = exports.convertVersionToSemver = exports.getVersionFromFileContent = exports.isCacheFeatureAvailable = exports.isGhes = exports.isJobStatusSuccess = exports.getToolcachePath = exports.isVersionSatisfies = exports.getDownloadArchiveExtension = exports.extractJdkFile = exports.getVersionFromToolcachePath = exports.getBooleanInput = exports.getTempDir = void 0; +const os_1 = __importDefault(__nccwpck_require__(22037)); +const path_1 = __importDefault(__nccwpck_require__(71017)); +const fs = __importStar(__nccwpck_require__(57147)); +const semver = __importStar(__nccwpck_require__(11383)); +const cache = __importStar(__nccwpck_require__(27799)); +const core = __importStar(__nccwpck_require__(42186)); +const tc = __importStar(__nccwpck_require__(27784)); +const constants_1 = __nccwpck_require__(69042); +function getTempDir() { + const tempDirectory = process.env['RUNNER_TEMP'] || os_1.default.tmpdir(); + return tempDirectory; +} +exports.getTempDir = getTempDir; +function getBooleanInput(inputName, defaultValue = false) { + return ((core.getInput(inputName) || String(defaultValue)).toUpperCase() === 'TRUE'); +} +exports.getBooleanInput = getBooleanInput; +function getVersionFromToolcachePath(toolPath) { + if (toolPath) { + return path_1.default.basename(path_1.default.dirname(toolPath)); } - /** - * Returns all user-defined metadata and system properties for the specified - * container. The data returned does not include the container's list of blobs. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/get-container-properties - * - * WARNING: The `metadata` object returned in the response will have its keys in lowercase, even if - * they originally contained uppercase characters. This differs from the metadata keys returned by - * the `listContainers` method of {@link BlobServiceClient} using the `includeMetadata` option, which - * will retain their original casing. - * - * @param options - Options to Container Get Properties operation. - */ - async getProperties(options = {}) { - if (!options.conditions) { - options.conditions = {}; - } - const { span, updatedOptions } = createSpan("ContainerClient-getProperties", options); - try { - return await this.containerContext.getProperties(Object.assign(Object.assign({ abortSignal: options.abortSignal }, options.conditions), convertTracingToRequestOptionsBase(updatedOptions))); + return toolPath; +} +exports.getVersionFromToolcachePath = getVersionFromToolcachePath; +function extractJdkFile(toolPath, extension) { + return __awaiter(this, void 0, void 0, function* () { + if (!extension) { + extension = toolPath.endsWith('.tar.gz') + ? 'tar.gz' + : path_1.default.extname(toolPath); + if (extension.startsWith('.')) { + extension = extension.substring(1); + } } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + switch (extension) { + case 'tar.gz': + case 'tar': + return yield tc.extractTar(toolPath); + case 'zip': + return yield tc.extractZip(toolPath); + default: + return yield tc.extract7z(toolPath); } - finally { - span.end(); + }); +} +exports.extractJdkFile = extractJdkFile; +function getDownloadArchiveExtension() { + return process.platform === 'win32' ? 'zip' : 'tar.gz'; +} +exports.getDownloadArchiveExtension = getDownloadArchiveExtension; +function isVersionSatisfies(range, version) { + var _a; + if (semver.valid(range)) { + // if full version with build digit is provided as a range (such as '1.2.3+4') + // we should check for exact equal via compareBuild + // since semver.satisfies doesn't handle 4th digit + const semRange = semver.parse(range); + if (semRange && ((_a = semRange.build) === null || _a === void 0 ? void 0 : _a.length) > 0) { + return semver.compareBuild(range, version) === 0; } } - /** - * Marks the specified container for deletion. The container and any blobs - * contained within it are later deleted during garbage collection. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/delete-container - * - * @param options - Options to Container Delete operation. - */ - async delete(options = {}) { - if (!options.conditions) { - options.conditions = {}; - } - const { span, updatedOptions } = createSpan("ContainerClient-delete", options); - try { - return await this.containerContext.delete(Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, modifiedAccessConditions: options.conditions }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + return semver.satisfies(version, range); +} +exports.isVersionSatisfies = isVersionSatisfies; +function getToolcachePath(toolName, version, architecture) { + var _a; + const toolcacheRoot = (_a = process.env['RUNNER_TOOL_CACHE']) !== null && _a !== void 0 ? _a : ''; + const fullPath = path_1.default.join(toolcacheRoot, toolName, version, architecture); + if (fs.existsSync(fullPath)) { + return fullPath; } - /** - * Marks the specified container for deletion if it exists. The container and any blobs - * contained within it are later deleted during garbage collection. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/delete-container - * - * @param options - Options to Container Delete operation. - */ - async deleteIfExists(options = {}) { - var _a, _b; - const { span, updatedOptions } = createSpan("ContainerClient-deleteIfExists", options); - try { - const res = await this.delete(updatedOptions); - return Object.assign(Object.assign({ succeeded: true }, res), { _response: res._response }); - } - catch (e) { - if (((_a = e.details) === null || _a === void 0 ? void 0 : _a.errorCode) === "ContainerNotFound") { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: "Expected exception when deleting a container only if it exists.", - }); - return Object.assign(Object.assign({ succeeded: false }, (_b = e.response) === null || _b === void 0 ? void 0 : _b.parsedHeaders), { _response: e.response }); - } - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + return null; +} +exports.getToolcachePath = getToolcachePath; +function isJobStatusSuccess() { + const jobStatus = core.getInput(constants_1.INPUT_JOB_STATUS); + return jobStatus === 'success'; +} +exports.isJobStatusSuccess = isJobStatusSuccess; +function isGhes() { + const ghUrl = new URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com'); + const hostname = ghUrl.hostname.trimEnd().toUpperCase(); + const isGitHubHost = hostname === 'GITHUB.COM'; + const isGitHubEnterpriseCloudHost = hostname.endsWith('.GHE.COM'); + const isLocalHost = hostname.endsWith('.LOCALHOST'); + return !isGitHubHost && !isGitHubEnterpriseCloudHost && !isLocalHost; +} +exports.isGhes = isGhes; +function isCacheFeatureAvailable() { + if (cache.isFeatureAvailable()) { + return true; } - /** - * Sets one or more user-defined name-value pairs for the specified container. - * - * If no option provided, or no metadata defined in the parameter, the container - * metadata will be removed. - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/set-container-metadata - * - * @param metadata - Replace existing metadata with this value. - * If no value provided the existing metadata will be removed. - * @param options - Options to Container Set Metadata operation. - */ - async setMetadata(metadata, options = {}) { - if (!options.conditions) { - options.conditions = {}; - } - if (options.conditions.ifUnmodifiedSince) { - throw new RangeError("the IfUnmodifiedSince must have their default values because they are ignored by the blob service"); - } - const { span, updatedOptions } = createSpan("ContainerClient-setMetadata", options); - try { - return await this.containerContext.setMetadata(Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions, metadata, modifiedAccessConditions: options.conditions }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + if (isGhes()) { + core.warning('Caching is only supported on GHES version >= 3.5. If you are on a version >= 3.5, please check with your GHES admin if the Actions cache service is enabled or not.'); + return false; } - /** - * Gets the permissions for the specified container. The permissions indicate - * whether container data may be accessed publicly. - * - * WARNING: JavaScript Date will potentially lose precision when parsing startsOn and expiresOn strings. - * For example, new Date("2018-12-31T03:44:23.8827891Z").toISOString() will get "2018-12-31T03:44:23.882Z". - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/get-container-acl - * - * @param options - Options to Container Get Access Policy operation. - */ - async getAccessPolicy(options = {}) { - if (!options.conditions) { - options.conditions = {}; - } - const { span, updatedOptions } = createSpan("ContainerClient-getAccessPolicy", options); - try { - const response = await this.containerContext.getAccessPolicy(Object.assign({ abortSignal: options.abortSignal, leaseAccessConditions: options.conditions }, convertTracingToRequestOptionsBase(updatedOptions))); - const res = { - _response: response._response, - blobPublicAccess: response.blobPublicAccess, - date: response.date, - etag: response.etag, - errorCode: response.errorCode, - lastModified: response.lastModified, - requestId: response.requestId, - clientRequestId: response.clientRequestId, - signedIdentifiers: [], - version: response.version, - }; - for (const identifier of response) { - let accessPolicy = undefined; - if (identifier.accessPolicy) { - accessPolicy = { - permissions: identifier.accessPolicy.permissions, - }; - if (identifier.accessPolicy.expiresOn) { - accessPolicy.expiresOn = new Date(identifier.accessPolicy.expiresOn); - } - if (identifier.accessPolicy.startsOn) { - accessPolicy.startsOn = new Date(identifier.accessPolicy.startsOn); - } - } - res.signedIdentifiers.push({ - accessPolicy, - id: identifier.id, - }); - } - return res; - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + core.warning('The runner was not able to contact the cache service. Caching will be skipped'); + return false; +} +exports.isCacheFeatureAvailable = isCacheFeatureAvailable; +function getVersionFromFileContent(content, distributionName, versionFile) { + var _a, _b, _c, _d, _e; + let javaVersionRegExp; + function getFileName(versionFile) { + return path_1.default.basename(versionFile); } - /** - * Sets the permissions for the specified container. The permissions indicate - * whether blobs in a container may be accessed publicly. - * - * When you set permissions for a container, the existing permissions are replaced. - * If no access or containerAcl provided, the existing container ACL will be - * removed. - * - * When you establish a stored access policy on a container, it may take up to 30 seconds to take effect. - * During this interval, a shared access signature that is associated with the stored access policy will - * fail with status code 403 (Forbidden), until the access policy becomes active. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/set-container-acl - * - * @param access - The level of public access to data in the container. - * @param containerAcl - Array of elements each having a unique Id and details of the access policy. - * @param options - Options to Container Set Access Policy operation. - */ - async setAccessPolicy(access, containerAcl, options = {}) { - options.conditions = options.conditions || {}; - const { span, updatedOptions } = createSpan("ContainerClient-setAccessPolicy", options); - try { - const acl = []; - for (const identifier of containerAcl || []) { - acl.push({ - accessPolicy: { - expiresOn: identifier.accessPolicy.expiresOn - ? truncatedISO8061Date(identifier.accessPolicy.expiresOn) - : "", - permissions: identifier.accessPolicy.permissions, - startsOn: identifier.accessPolicy.startsOn - ? truncatedISO8061Date(identifier.accessPolicy.startsOn) - : "", - }, - id: identifier.id, - }); - } - return await this.containerContext.setAccessPolicy(Object.assign({ abortSignal: options.abortSignal, access, containerAcl: acl, leaseAccessConditions: options.conditions, modifiedAccessConditions: options.conditions }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + const versionFileName = getFileName(versionFile); + if (versionFileName == '.tool-versions') { + javaVersionRegExp = + /^java\s+(?:\S*-)?(?\d+(?:\.\d+)*([+_.-](?:openj9[-._]?\d[\w.-]*|java\d+|jre[-_\w]*|OpenJDK\d+[\w_.-]*|[a-z0-9]+))*)/im; } - /** - * Get a {@link BlobLeaseClient} that manages leases on the container. - * - * @param proposeLeaseId - Initial proposed lease Id. - * @returns A new BlobLeaseClient object for managing leases on the container. - */ - getBlobLeaseClient(proposeLeaseId) { - return new BlobLeaseClient(this, proposeLeaseId); + else if (versionFileName == '.sdkmanrc') { + javaVersionRegExp = /^java\s*=\s*(?[^-]+)/m; } - /** - * Creates a new block blob, or updates the content of an existing block blob. - * - * Updating an existing block blob overwrites any existing metadata on the blob. - * Partial updates are not supported; the content of the existing blob is - * overwritten with the new content. To perform a partial update of a block blob's, - * use {@link BlockBlobClient.stageBlock} and {@link BlockBlobClient.commitBlockList}. - * - * This is a non-parallel uploading method, please use {@link BlockBlobClient.uploadFile}, - * {@link BlockBlobClient.uploadStream} or {@link BlockBlobClient.uploadBrowserData} for better - * performance with concurrency uploading. - * - * @see https://docs.microsoft.com/rest/api/storageservices/put-blob - * - * @param blobName - Name of the block blob to create or update. - * @param body - Blob, string, ArrayBuffer, ArrayBufferView or a function - * which returns a new Readable stream whose offset is from data source beginning. - * @param contentLength - Length of body in bytes. Use Buffer.byteLength() to calculate body length for a - * string including non non-Base64/Hex-encoded characters. - * @param options - Options to configure the Block Blob Upload operation. - * @returns Block Blob upload response data and the corresponding BlockBlobClient instance. - */ - async uploadBlockBlob(blobName, body, contentLength, options = {}) { - const { span, updatedOptions } = createSpan("ContainerClient-uploadBlockBlob", options); - try { - const blockBlobClient = this.getBlockBlobClient(blobName); - const response = await blockBlobClient.upload(body, contentLength, updatedOptions); - return { - blockBlobClient, - response, - }; - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + else { + javaVersionRegExp = /(?(?<=(^|\s|-))(\d+\S*))(\s|$)/; } - /** - * Marks the specified blob or snapshot for deletion. The blob is later deleted - * during garbage collection. Note that in order to delete a blob, you must delete - * all of its snapshots. You can delete both at the same time with the Delete - * Blob operation. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/delete-blob - * - * @param blobName - - * @param options - Options to Blob Delete operation. - * @returns Block blob deletion response data. - */ - async deleteBlob(blobName, options = {}) { - const { span, updatedOptions } = createSpan("ContainerClient-deleteBlob", options); - try { - let blobClient = this.getBlobClient(blobName); - if (options.versionId) { - blobClient = blobClient.withVersion(options.versionId); - } - return await blobClient.delete(updatedOptions); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + const capturedVersion = ((_b = (_a = content.match(javaVersionRegExp)) === null || _a === void 0 ? void 0 : _a.groups) === null || _b === void 0 ? void 0 : _b.version) + ? (_d = (_c = content.match(javaVersionRegExp)) === null || _c === void 0 ? void 0 : _c.groups) === null || _d === void 0 ? void 0 : _d.version + : ''; + core.debug(`Parsed version '${capturedVersion}' from file '${versionFileName}'`); + if (!capturedVersion) { + return null; } - /** - * listBlobFlatSegment returns a single segment of blobs starting from the - * specified Marker. Use an empty Marker to start enumeration from the beginning. - * After getting a segment, process it, and then call listBlobsFlatSegment again - * (passing the the previously-returned Marker) to get the next segment. - * @see https://docs.microsoft.com/rest/api/storageservices/list-blobs - * - * @param marker - A string value that identifies the portion of the list to be returned with the next list operation. - * @param options - Options to Container List Blob Flat Segment operation. - */ - async listBlobFlatSegment(marker, options = {}) { - const { span, updatedOptions } = createSpan("ContainerClient-listBlobFlatSegment", options); - try { - const response = await this.containerContext.listBlobFlatSegment(Object.assign(Object.assign({ marker }, options), convertTracingToRequestOptionsBase(updatedOptions))); - response.segment.blobItems = []; - if (response.segment["Blob"] !== undefined) { - response.segment.blobItems = ProcessBlobItems(response.segment["Blob"]); - } - const wrappedResponse = Object.assign(Object.assign({}, response), { _response: Object.assign(Object.assign({}, response._response), { parsedBody: ConvertInternalResponseOfListBlobFlat(response._response.parsedBody) }), segment: Object.assign(Object.assign({}, response.segment), { blobItems: response.segment.blobItems.map((blobItemInteral) => { - const blobItem = Object.assign(Object.assign({}, blobItemInteral), { name: BlobNameToString(blobItemInteral.name), tags: toTags(blobItemInteral.blobTags), objectReplicationSourceProperties: parseObjectReplicationRecord(blobItemInteral.objectReplicationMetadata) }); - return blobItem; - }) }) }); - return wrappedResponse; - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + const tentativeVersion = avoidOldNotation(capturedVersion); + const rawVersion = tentativeVersion.split('-')[0]; + let version = semver.validRange(rawVersion) + ? tentativeVersion + : semver.coerce(tentativeVersion); + core.debug(`Range version from file is '${version}'`); + if (!version) { + return null; } - /** - * listBlobHierarchySegment returns a single segment of blobs starting from - * the specified Marker. Use an empty Marker to start enumeration from the - * beginning. After getting a segment, process it, and then call listBlobsHierarchicalSegment - * again (passing the the previously-returned Marker) to get the next segment. - * @see https://docs.microsoft.com/rest/api/storageservices/list-blobs - * - * @param delimiter - The character or string used to define the virtual hierarchy - * @param marker - A string value that identifies the portion of the list to be returned with the next list operation. - * @param options - Options to Container List Blob Hierarchy Segment operation. - */ - async listBlobHierarchySegment(delimiter, marker, options = {}) { - var _a; - const { span, updatedOptions } = createSpan("ContainerClient-listBlobHierarchySegment", options); - try { - const response = await this.containerContext.listBlobHierarchySegment(delimiter, Object.assign(Object.assign({ marker }, options), convertTracingToRequestOptionsBase(updatedOptions))); - response.segment.blobItems = []; - if (response.segment["Blob"] !== undefined) { - response.segment.blobItems = ProcessBlobItems(response.segment["Blob"]); - } - response.segment.blobPrefixes = []; - if (response.segment["BlobPrefix"] !== undefined) { - response.segment.blobPrefixes = ProcessBlobPrefixes(response.segment["BlobPrefix"]); - } - const wrappedResponse = Object.assign(Object.assign({}, response), { _response: Object.assign(Object.assign({}, response._response), { parsedBody: ConvertInternalResponseOfListBlobHierarchy(response._response.parsedBody) }), segment: Object.assign(Object.assign({}, response.segment), { blobItems: response.segment.blobItems.map((blobItemInteral) => { - const blobItem = Object.assign(Object.assign({}, blobItemInteral), { name: BlobNameToString(blobItemInteral.name), tags: toTags(blobItemInteral.blobTags), objectReplicationSourceProperties: parseObjectReplicationRecord(blobItemInteral.objectReplicationMetadata) }); - return blobItem; - }), blobPrefixes: (_a = response.segment.blobPrefixes) === null || _a === void 0 ? void 0 : _a.map((blobPrefixInternal) => { - const blobPrefix = { - name: BlobNameToString(blobPrefixInternal.name), - }; - return blobPrefix; - }) }) }); - return wrappedResponse; - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } + if (constants_1.DISTRIBUTIONS_ONLY_MAJOR_VERSION.includes(distributionName)) { + const coerceVersion = (_e = semver.coerce(version)) !== null && _e !== void 0 ? _e : version; + version = semver.major(coerceVersion).toString(); } - /** - * Returns an AsyncIterableIterator for ContainerListBlobFlatSegmentResponse - * - * @param marker - A string value that identifies the portion of - * the list of blobs to be returned with the next listing operation. The - * operation returns the ContinuationToken value within the response body if the - * listing operation did not return all blobs remaining to be listed - * with the current page. The ContinuationToken value can be used as the value for - * the marker parameter in a subsequent call to request the next page of list - * items. The marker value is opaque to the client. - * @param options - Options to list blobs operation. - */ - listSegments(marker, options = {}) { - return tslib.__asyncGenerator(this, arguments, function* listSegments_1() { - let listBlobsFlatSegmentResponse; - if (!!marker || marker === undefined) { - do { - listBlobsFlatSegmentResponse = yield tslib.__await(this.listBlobFlatSegment(marker, options)); - marker = listBlobsFlatSegmentResponse.continuationToken; - yield yield tslib.__await(yield tslib.__await(listBlobsFlatSegmentResponse)); - } while (marker); - } - }); + return version.toString(); +} +exports.getVersionFromFileContent = getVersionFromFileContent; +// By convention, action expects version 8 in the format `8.*` instead of `1.8` +function avoidOldNotation(content) { + return content.startsWith('1.') ? content.substring(2) : content; +} +function convertVersionToSemver(version) { + // Some distributions may use semver-like notation (12.10.2.1, 12.10.2.1.1) + const versionArray = Array.isArray(version) ? version : version.split('.'); + const mainVersion = versionArray.slice(0, 3).join('.'); + if (versionArray.length > 3) { + return `${mainVersion}+${versionArray.slice(3).join('.')}`; } - /** - * Returns an AsyncIterableIterator of {@link BlobItem} objects - * - * @param options - Options to list blobs operation. - */ - listItems(options = {}) { - return tslib.__asyncGenerator(this, arguments, function* listItems_1() { - var e_1, _a; - let marker; - try { - for (var _b = tslib.__asyncValues(this.listSegments(marker, options)), _c; _c = yield tslib.__await(_b.next()), !_c.done;) { - const listBlobsFlatSegmentResponse = _c.value; - yield tslib.__await(yield* tslib.__asyncDelegator(tslib.__asyncValues(listBlobsFlatSegmentResponse.segment.blobItems))); - } - } - catch (e_1_1) { e_1 = { error: e_1_1 }; } - finally { - try { - if (_c && !_c.done && (_a = _b.return)) yield tslib.__await(_a.call(_b)); - } - finally { if (e_1) throw e_1.error; } - } - }); + return mainVersion; +} +exports.convertVersionToSemver = convertVersionToSemver; +function getGitHubHttpHeaders() { + const resolvedToken = core.getInput('token') || process.env.GITHUB_TOKEN; + const auth = !resolvedToken ? undefined : `token ${resolvedToken}`; + const headers = { + accept: 'application/vnd.github.VERSION.raw' + }; + if (auth) { + headers.authorization = auth; + } + return headers; +} +exports.getGitHubHttpHeaders = getGitHubHttpHeaders; +// Rename archive to add extension because after downloading +// archive does not contain extension type and it leads to some issues +// on Windows runners without PowerShell Core. +// +// For default PowerShell Windows it should contain extension type to unpack it. +function renameWinArchive(javaArchivePath) { + const javaArchivePathRenamed = `${javaArchivePath}.zip`; + fs.renameSync(javaArchivePath, javaArchivePathRenamed); + return javaArchivePathRenamed; +} +exports.renameWinArchive = renameWinArchive; + + +/***/ }), + +/***/ 39491: +/***/ ((module) => { + +"use strict"; +module.exports = require("assert"); + +/***/ }), + +/***/ 14300: +/***/ ((module) => { + +"use strict"; +module.exports = require("buffer"); + +/***/ }), + +/***/ 32081: +/***/ ((module) => { + +"use strict"; +module.exports = require("child_process"); + +/***/ }), + +/***/ 6113: +/***/ ((module) => { + +"use strict"; +module.exports = require("crypto"); + +/***/ }), + +/***/ 82361: +/***/ ((module) => { + +"use strict"; +module.exports = require("events"); + +/***/ }), + +/***/ 57147: +/***/ ((module) => { + +"use strict"; +module.exports = require("fs"); + +/***/ }), + +/***/ 13685: +/***/ ((module) => { + +"use strict"; +module.exports = require("http"); + +/***/ }), + +/***/ 95687: +/***/ ((module) => { + +"use strict"; +module.exports = require("https"); + +/***/ }), + +/***/ 41808: +/***/ ((module) => { + +"use strict"; +module.exports = require("net"); + +/***/ }), + +/***/ 98061: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:assert"); + +/***/ }), + +/***/ 92761: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:async_hooks"); + +/***/ }), + +/***/ 72254: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:buffer"); + +/***/ }), + +/***/ 40027: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:console"); + +/***/ }), + +/***/ 6005: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:crypto"); + +/***/ }), + +/***/ 65714: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:diagnostics_channel"); + +/***/ }), + +/***/ 30604: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:dns"); + +/***/ }), + +/***/ 15673: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:events"); + +/***/ }), + +/***/ 87561: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:fs"); + +/***/ }), + +/***/ 88849: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:http"); + +/***/ }), + +/***/ 42725: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:http2"); + +/***/ }), + +/***/ 22286: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:https"); + +/***/ }), + +/***/ 87503: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:net"); + +/***/ }), + +/***/ 70612: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:os"); + +/***/ }), + +/***/ 38846: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:perf_hooks"); + +/***/ }), + +/***/ 97742: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:process"); + +/***/ }), + +/***/ 39630: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:querystring"); + +/***/ }), + +/***/ 84492: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:stream"); + +/***/ }), + +/***/ 31764: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:tls"); + +/***/ }), + +/***/ 41041: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:url"); + +/***/ }), + +/***/ 47261: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:util"); + +/***/ }), + +/***/ 93746: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:util/types"); + +/***/ }), + +/***/ 24086: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:worker_threads"); + +/***/ }), + +/***/ 65628: +/***/ ((module) => { + +"use strict"; +module.exports = require("node:zlib"); + +/***/ }), + +/***/ 22037: +/***/ ((module) => { + +"use strict"; +module.exports = require("os"); + +/***/ }), + +/***/ 71017: +/***/ ((module) => { + +"use strict"; +module.exports = require("path"); + +/***/ }), + +/***/ 12781: +/***/ ((module) => { + +"use strict"; +module.exports = require("stream"); + +/***/ }), + +/***/ 71576: +/***/ ((module) => { + +"use strict"; +module.exports = require("string_decoder"); + +/***/ }), + +/***/ 39512: +/***/ ((module) => { + +"use strict"; +module.exports = require("timers"); + +/***/ }), + +/***/ 24404: +/***/ ((module) => { + +"use strict"; +module.exports = require("tls"); + +/***/ }), + +/***/ 76224: +/***/ ((module) => { + +"use strict"; +module.exports = require("tty"); + +/***/ }), + +/***/ 57310: +/***/ ((module) => { + +"use strict"; +module.exports = require("url"); + +/***/ }), + +/***/ 73837: +/***/ ((module) => { + +"use strict"; +module.exports = require("util"); + +/***/ }), + +/***/ 31875: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.AzureKeyCredential = void 0; +/** + * A static-key-based credential that supports updating + * the underlying key value. + */ +class AzureKeyCredential { + _key; + /** + * The value of the key to be used in authentication + */ + get key() { + return this._key; } /** - * Returns an async iterable iterator to list all the blobs - * under the specified account. - * - * .byPage() returns an async iterable iterator to list the blobs in pages. - * - * Example using `for await` syntax: - * - * ```js - * // Get the containerClient before you run these snippets, - * // Can be obtained from `blobServiceClient.getContainerClient("");` - * let i = 1; - * for await (const blob of containerClient.listBlobsFlat()) { - * console.log(`Blob ${i++}: ${blob.name}`); - * } - * ``` - * - * Example using `iter.next()`: - * - * ```js - * let i = 1; - * let iter = containerClient.listBlobsFlat(); - * let blobItem = await iter.next(); - * while (!blobItem.done) { - * console.log(`Blob ${i++}: ${blobItem.value.name}`); - * blobItem = await iter.next(); - * } - * ``` - * - * Example using `byPage()`: - * - * ```js - * // passing optional maxPageSize in the page settings - * let i = 1; - * for await (const response of containerClient.listBlobsFlat().byPage({ maxPageSize: 20 })) { - * for (const blob of response.segment.blobItems) { - * console.log(`Blob ${i++}: ${blob.name}`); - * } - * } - * ``` - * - * Example using paging with a marker: - * - * ```js - * let i = 1; - * let iterator = containerClient.listBlobsFlat().byPage({ maxPageSize: 2 }); - * let response = (await iterator.next()).value; - * - * // Prints 2 blob names - * for (const blob of response.segment.blobItems) { - * console.log(`Blob ${i++}: ${blob.name}`); - * } - * - * // Gets next marker - * let marker = response.continuationToken; - * - * // Passing next marker as continuationToken - * - * iterator = containerClient.listBlobsFlat().byPage({ continuationToken: marker, maxPageSize: 10 }); - * response = (await iterator.next()).value; - * - * // Prints 10 blob names - * for (const blob of response.segment.blobItems) { - * console.log(`Blob ${i++}: ${blob.name}`); - * } - * ``` + * Create an instance of an AzureKeyCredential for use + * with a service client. * - * @param options - Options to list blobs. - * @returns An asyncIterableIterator that supports paging. + * @param key - The initial value of the key to use in authentication */ - listBlobsFlat(options = {}) { - const include = []; - if (options.includeCopy) { - include.push("copy"); - } - if (options.includeDeleted) { - include.push("deleted"); - } - if (options.includeMetadata) { - include.push("metadata"); - } - if (options.includeSnapshots) { - include.push("snapshots"); - } - if (options.includeVersions) { - include.push("versions"); - } - if (options.includeUncommitedBlobs) { - include.push("uncommittedblobs"); - } - if (options.includeTags) { - include.push("tags"); - } - if (options.includeDeletedWithVersions) { - include.push("deletedwithversions"); - } - if (options.includeImmutabilityPolicy) { - include.push("immutabilitypolicy"); - } - if (options.includeLegalHold) { - include.push("legalhold"); - } - if (options.prefix === "") { - options.prefix = undefined; + constructor(key) { + if (!key) { + throw new Error("key must be a non-empty string"); } - const updatedOptions = Object.assign(Object.assign({}, options), (include.length > 0 ? { include: include } : {})); - // AsyncIterableIterator to iterate over blobs - const iter = this.listItems(updatedOptions); - return { - /** - * The next method, part of the iteration protocol - */ - next() { - return iter.next(); - }, - /** - * The connection to the async iterator, part of the iteration protocol - */ - [Symbol.asyncIterator]() { - return this; - }, - /** - * Return an AsyncIterableIterator that works a page at a time - */ - byPage: (settings = {}) => { - return this.listSegments(settings.continuationToken, Object.assign({ maxPageSize: settings.maxPageSize }, updatedOptions)); - }, - }; + this._key = key; } /** - * Returns an AsyncIterableIterator for ContainerListBlobHierarchySegmentResponse + * Change the value of the key. * - * @param delimiter - The character or string used to define the virtual hierarchy - * @param marker - A string value that identifies the portion of - * the list of blobs to be returned with the next listing operation. The - * operation returns the ContinuationToken value within the response body if the - * listing operation did not return all blobs remaining to be listed - * with the current page. The ContinuationToken value can be used as the value for - * the marker parameter in a subsequent call to request the next page of list - * items. The marker value is opaque to the client. - * @param options - Options to list blobs operation. + * Updates will take effect upon the next request after + * updating the key value. + * + * @param newKey - The new key value to be used */ - listHierarchySegments(delimiter, marker, options = {}) { - return tslib.__asyncGenerator(this, arguments, function* listHierarchySegments_1() { - let listBlobsHierarchySegmentResponse; - if (!!marker || marker === undefined) { - do { - listBlobsHierarchySegmentResponse = yield tslib.__await(this.listBlobHierarchySegment(delimiter, marker, options)); - marker = listBlobsHierarchySegmentResponse.continuationToken; - yield yield tslib.__await(yield tslib.__await(listBlobsHierarchySegmentResponse)); - } while (marker); - } - }); + update(newKey) { + this._key = newKey; } +} +exports.AzureKeyCredential = AzureKeyCredential; +//# sourceMappingURL=azureKeyCredential.js.map + +/***/ }), + +/***/ 51377: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.AzureNamedKeyCredential = void 0; +exports.isNamedKeyCredential = isNamedKeyCredential; +const core_util_1 = __nccwpck_require__(80637); +/** + * A static name/key-based credential that supports updating + * the underlying name and key values. + */ +class AzureNamedKeyCredential { + _key; + _name; /** - * Returns an AsyncIterableIterator for {@link BlobPrefix} and {@link BlobItem} objects. - * - * @param delimiter - The character or string used to define the virtual hierarchy - * @param options - Options to list blobs operation. + * The value of the key to be used in authentication. */ - listItemsByHierarchy(delimiter, options = {}) { - return tslib.__asyncGenerator(this, arguments, function* listItemsByHierarchy_1() { - var e_2, _a; - let marker; - try { - for (var _b = tslib.__asyncValues(this.listHierarchySegments(delimiter, marker, options)), _c; _c = yield tslib.__await(_b.next()), !_c.done;) { - const listBlobsHierarchySegmentResponse = _c.value; - const segment = listBlobsHierarchySegmentResponse.segment; - if (segment.blobPrefixes) { - for (const prefix of segment.blobPrefixes) { - yield yield tslib.__await(Object.assign({ kind: "prefix" }, prefix)); - } - } - for (const blob of segment.blobItems) { - yield yield tslib.__await(Object.assign({ kind: "blob" }, blob)); - } - } - } - catch (e_2_1) { e_2 = { error: e_2_1 }; } - finally { - try { - if (_c && !_c.done && (_a = _b.return)) yield tslib.__await(_a.call(_b)); - } - finally { if (e_2) throw e_2.error; } - } - }); + get key() { + return this._key; } /** - * Returns an async iterable iterator to list all the blobs by hierarchy. - * under the specified account. - * - * .byPage() returns an async iterable iterator to list the blobs by hierarchy in pages. - * - * Example using `for await` syntax: - * - * ```js - * for await (const item of containerClient.listBlobsByHierarchy("/")) { - * if (item.kind === "prefix") { - * console.log(`\tBlobPrefix: ${item.name}`); - * } else { - * console.log(`\tBlobItem: name - ${item.name}`); - * } - * } - * ``` - * - * Example using `iter.next()`: + * The value of the name to be used in authentication. + */ + get name() { + return this._name; + } + /** + * Create an instance of an AzureNamedKeyCredential for use + * with a service client. * - * ```js - * let iter = containerClient.listBlobsByHierarchy("/", { prefix: "prefix1/" }); - * let entity = await iter.next(); - * while (!entity.done) { - * let item = entity.value; - * if (item.kind === "prefix") { - * console.log(`\tBlobPrefix: ${item.name}`); - * } else { - * console.log(`\tBlobItem: name - ${item.name}`); - * } - * entity = await iter.next(); - * } - * ``` + * @param name - The initial value of the name to use in authentication. + * @param key - The initial value of the key to use in authentication. + */ + constructor(name, key) { + if (!name || !key) { + throw new TypeError("name and key must be non-empty strings"); + } + this._name = name; + this._key = key; + } + /** + * Change the value of the key. * - * Example using `byPage()`: + * Updates will take effect upon the next request after + * updating the key value. * - * ```js - * console.log("Listing blobs by hierarchy by page"); - * for await (const response of containerClient.listBlobsByHierarchy("/").byPage()) { - * const segment = response.segment; - * if (segment.blobPrefixes) { - * for (const prefix of segment.blobPrefixes) { - * console.log(`\tBlobPrefix: ${prefix.name}`); - * } - * } - * for (const blob of response.segment.blobItems) { - * console.log(`\tBlobItem: name - ${blob.name}`); - * } - * } - * ``` - * - * Example using paging with a max page size: - * - * ```js - * console.log("Listing blobs by hierarchy by page, specifying a prefix and a max page size"); - * - * let i = 1; - * for await (const response of containerClient - * .listBlobsByHierarchy("/", { prefix: "prefix2/sub1/" }) - * .byPage({ maxPageSize: 2 })) { - * console.log(`Page ${i++}`); - * const segment = response.segment; - * - * if (segment.blobPrefixes) { - * for (const prefix of segment.blobPrefixes) { - * console.log(`\tBlobPrefix: ${prefix.name}`); - * } - * } - * - * for (const blob of response.segment.blobItems) { - * console.log(`\tBlobItem: name - ${blob.name}`); - * } - * } - * ``` - * - * @param delimiter - The character or string used to define the virtual hierarchy - * @param options - Options to list blobs operation. - */ - listBlobsByHierarchy(delimiter, options = {}) { - if (delimiter === "") { - throw new RangeError("delimiter should contain one or more characters"); - } - const include = []; - if (options.includeCopy) { - include.push("copy"); - } - if (options.includeDeleted) { - include.push("deleted"); - } - if (options.includeMetadata) { - include.push("metadata"); - } - if (options.includeSnapshots) { - include.push("snapshots"); - } - if (options.includeVersions) { - include.push("versions"); - } - if (options.includeUncommitedBlobs) { - include.push("uncommittedblobs"); - } - if (options.includeTags) { - include.push("tags"); - } - if (options.includeDeletedWithVersions) { - include.push("deletedwithversions"); - } - if (options.includeImmutabilityPolicy) { - include.push("immutabilitypolicy"); - } - if (options.includeLegalHold) { - include.push("legalhold"); - } - if (options.prefix === "") { - options.prefix = undefined; - } - const updatedOptions = Object.assign(Object.assign({}, options), (include.length > 0 ? { include: include } : {})); - // AsyncIterableIterator to iterate over blob prefixes and blobs - const iter = this.listItemsByHierarchy(delimiter, updatedOptions); - return { - /** - * The next method, part of the iteration protocol - */ - async next() { - return iter.next(); - }, - /** - * The connection to the async iterator, part of the iteration protocol - */ - [Symbol.asyncIterator]() { - return this; - }, - /** - * Return an AsyncIterableIterator that works a page at a time - */ - byPage: (settings = {}) => { - return this.listHierarchySegments(delimiter, settings.continuationToken, Object.assign({ maxPageSize: settings.maxPageSize }, updatedOptions)); - }, - }; - } - /** - * The Filter Blobs operation enables callers to list blobs in the container whose tags - * match a given search expression. - * - * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. - * The given expression must evaluate to true for a blob to be returned in the results. - * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; - * however, only a subset of the OData filter syntax is supported in the Blob service. - * @param marker - A string value that identifies the portion of - * the list of blobs to be returned with the next listing operation. The - * operation returns the continuationToken value within the response body if the - * listing operation did not return all blobs remaining to be listed - * with the current page. The continuationToken value can be used as the value for - * the marker parameter in a subsequent call to request the next page of list - * items. The marker value is opaque to the client. - * @param options - Options to find blobs by tags. + * @param newName - The new name value to be used. + * @param newKey - The new key value to be used. */ - async findBlobsByTagsSegment(tagFilterSqlExpression, marker, options = {}) { - const { span, updatedOptions } = createSpan("ContainerClient-findBlobsByTagsSegment", options); - try { - const response = await this.containerContext.filterBlobs(Object.assign({ abortSignal: options.abortSignal, where: tagFilterSqlExpression, marker, maxPageSize: options.maxPageSize }, convertTracingToRequestOptionsBase(updatedOptions))); - const wrappedResponse = Object.assign(Object.assign({}, response), { _response: response._response, blobs: response.blobs.map((blob) => { - var _a; - let tagValue = ""; - if (((_a = blob.tags) === null || _a === void 0 ? void 0 : _a.blobTagSet.length) === 1) { - tagValue = blob.tags.blobTagSet[0].value; - } - return Object.assign(Object.assign({}, blob), { tags: toTags(blob.tags), tagValue }); - }) }); - return wrappedResponse; - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); + update(newName, newKey) { + if (!newName || !newKey) { + throw new TypeError("newName and newKey must be non-empty strings"); } + this._name = newName; + this._key = newKey; } +} +exports.AzureNamedKeyCredential = AzureNamedKeyCredential; +/** + * Tests an object to determine whether it implements NamedKeyCredential. + * + * @param credential - The assumed NamedKeyCredential to be tested. + */ +function isNamedKeyCredential(credential) { + return ((0, core_util_1.isObjectWithProperties)(credential, ["name", "key"]) && + typeof credential.key === "string" && + typeof credential.name === "string"); +} +//# sourceMappingURL=azureNamedKeyCredential.js.map + +/***/ }), + +/***/ 27182: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.AzureSASCredential = void 0; +exports.isSASCredential = isSASCredential; +const core_util_1 = __nccwpck_require__(80637); +/** + * A static-signature-based credential that supports updating + * the underlying signature value. + */ +class AzureSASCredential { + _signature; /** - * Returns an AsyncIterableIterator for ContainerFindBlobsByTagsSegmentResponse. - * - * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. - * The given expression must evaluate to true for a blob to be returned in the results. - * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; - * however, only a subset of the OData filter syntax is supported in the Blob service. - * @param marker - A string value that identifies the portion of - * the list of blobs to be returned with the next listing operation. The - * operation returns the continuationToken value within the response body if the - * listing operation did not return all blobs remaining to be listed - * with the current page. The continuationToken value can be used as the value for - * the marker parameter in a subsequent call to request the next page of list - * items. The marker value is opaque to the client. - * @param options - Options to find blobs by tags. + * The value of the shared access signature to be used in authentication */ - findBlobsByTagsSegments(tagFilterSqlExpression, marker, options = {}) { - return tslib.__asyncGenerator(this, arguments, function* findBlobsByTagsSegments_1() { - let response; - if (!!marker || marker === undefined) { - do { - response = yield tslib.__await(this.findBlobsByTagsSegment(tagFilterSqlExpression, marker, options)); - response.blobs = response.blobs || []; - marker = response.continuationToken; - yield yield tslib.__await(response); - } while (marker); - } - }); + get signature() { + return this._signature; } /** - * Returns an AsyncIterableIterator for blobs. + * Create an instance of an AzureSASCredential for use + * with a service client. * - * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. - * The given expression must evaluate to true for a blob to be returned in the results. - * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; - * however, only a subset of the OData filter syntax is supported in the Blob service. - * @param options - Options to findBlobsByTagsItems. + * @param signature - The initial value of the shared access signature to use in authentication */ - findBlobsByTagsItems(tagFilterSqlExpression, options = {}) { - return tslib.__asyncGenerator(this, arguments, function* findBlobsByTagsItems_1() { - var e_3, _a; - let marker; - try { - for (var _b = tslib.__asyncValues(this.findBlobsByTagsSegments(tagFilterSqlExpression, marker, options)), _c; _c = yield tslib.__await(_b.next()), !_c.done;) { - const segment = _c.value; - yield tslib.__await(yield* tslib.__asyncDelegator(tslib.__asyncValues(segment.blobs))); - } - } - catch (e_3_1) { e_3 = { error: e_3_1 }; } - finally { - try { - if (_c && !_c.done && (_a = _b.return)) yield tslib.__await(_a.call(_b)); - } - finally { if (e_3) throw e_3.error; } - } - }); + constructor(signature) { + if (!signature) { + throw new Error("shared access signature must be a non-empty string"); + } + this._signature = signature; } /** - * Returns an async iterable iterator to find all blobs with specified tag - * under the specified container. - * - * .byPage() returns an async iterable iterator to list the blobs in pages. - * - * Example using `for await` syntax: - * - * ```js - * let i = 1; - * for await (const blob of containerClient.findBlobsByTags("tagkey='tagvalue'")) { - * console.log(`Blob ${i++}: ${blob.name}`); - * } - * ``` - * - * Example using `iter.next()`: - * - * ```js - * let i = 1; - * const iter = containerClient.findBlobsByTags("tagkey='tagvalue'"); - * let blobItem = await iter.next(); - * while (!blobItem.done) { - * console.log(`Blob ${i++}: ${blobItem.value.name}`); - * blobItem = await iter.next(); - * } - * ``` - * - * Example using `byPage()`: - * - * ```js - * // passing optional maxPageSize in the page settings - * let i = 1; - * for await (const response of containerClient.findBlobsByTags("tagkey='tagvalue'").byPage({ maxPageSize: 20 })) { - * if (response.blobs) { - * for (const blob of response.blobs) { - * console.log(`Blob ${i++}: ${blob.name}`); - * } - * } - * } - * ``` - * - * Example using paging with a marker: - * - * ```js - * let i = 1; - * let iterator = containerClient.findBlobsByTags("tagkey='tagvalue'").byPage({ maxPageSize: 2 }); - * let response = (await iterator.next()).value; - * - * // Prints 2 blob names - * if (response.blobs) { - * for (const blob of response.blobs) { - * console.log(`Blob ${i++}: ${blob.name}`); - * } - * } - * - * // Gets next marker - * let marker = response.continuationToken; - * // Passing next marker as continuationToken - * iterator = containerClient - * .findBlobsByTags("tagkey='tagvalue'") - * .byPage({ continuationToken: marker, maxPageSize: 10 }); - * response = (await iterator.next()).value; + * Change the value of the signature. * - * // Prints blob names - * if (response.blobs) { - * for (const blob of response.blobs) { - * console.log(`Blob ${i++}: ${blob.name}`); - * } - * } - * ``` + * Updates will take effect upon the next request after + * updating the signature value. * - * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. - * The given expression must evaluate to true for a blob to be returned in the results. - * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; - * however, only a subset of the OData filter syntax is supported in the Blob service. - * @param options - Options to find blobs by tags. + * @param newSignature - The new shared access signature value to be used */ - findBlobsByTags(tagFilterSqlExpression, options = {}) { - // AsyncIterableIterator to iterate over blobs - const listSegmentOptions = Object.assign({}, options); - const iter = this.findBlobsByTagsItems(tagFilterSqlExpression, listSegmentOptions); - return { - /** - * The next method, part of the iteration protocol - */ - next() { - return iter.next(); - }, - /** - * The connection to the async iterator, part of the iteration protocol - */ - [Symbol.asyncIterator]() { - return this; - }, - /** - * Return an AsyncIterableIterator that works a page at a time - */ - byPage: (settings = {}) => { - return this.findBlobsByTagsSegments(tagFilterSqlExpression, settings.continuationToken, Object.assign({ maxPageSize: settings.maxPageSize }, listSegmentOptions)); - }, - }; - } - getContainerNameFromUrl() { - let containerName; - try { - // URL may look like the following - // "https://myaccount.blob.core.windows.net/mycontainer?sasString"; - // "https://myaccount.blob.core.windows.net/mycontainer"; - // IPv4/IPv6 address hosts, Endpoints - `http://127.0.0.1:10000/devstoreaccount1/containername` - // http://localhost:10001/devstoreaccount1/containername - const parsedUrl = coreHttp.URLBuilder.parse(this.url); - if (parsedUrl.getHost().split(".")[1] === "blob") { - // "https://myaccount.blob.core.windows.net/containername". - // "https://customdomain.com/containername". - // .getPath() -> /containername - containerName = parsedUrl.getPath().split("/")[1]; - } - else if (isIpEndpointStyle(parsedUrl)) { - // IPv4/IPv6 address hosts... Example - http://192.0.0.10:10001/devstoreaccount1/containername - // Single word domain without a [dot] in the endpoint... Example - http://localhost:10001/devstoreaccount1/containername - // .getPath() -> /devstoreaccount1/containername - containerName = parsedUrl.getPath().split("/")[2]; - } - else { - // "https://customdomain.com/containername". - // .getPath() -> /containername - containerName = parsedUrl.getPath().split("/")[1]; - } - // decode the encoded containerName - to get all the special characters that might be present in it - containerName = decodeURIComponent(containerName); - if (!containerName) { - throw new Error("Provided containerName is invalid."); - } - return containerName; - } - catch (error) { - throw new Error("Unable to extract containerName with provided information."); + update(newSignature) { + if (!newSignature) { + throw new Error("shared access signature must be a non-empty string"); } + this._signature = newSignature; } - /** - * Only available for ContainerClient constructed with a shared key credential. - * - * Generates a Blob Container Service Shared Access Signature (SAS) URI based on the client properties - * and parameters passed in. The SAS is signed by the shared key credential of the client. - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/constructing-a-service-sas - * - * @param options - Optional parameters. - * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token. - */ - generateSasUrl(options) { - return new Promise((resolve) => { - if (!(this.credential instanceof StorageSharedKeyCredential)) { - throw new RangeError("Can only generate the SAS when the client is initialized with a shared key credential"); - } - const sas = generateBlobSASQueryParameters(Object.assign({ containerName: this._containerName }, options), this.credential).toString(); - resolve(appendToURLQuery(this.url, sas)); - }); +} +exports.AzureSASCredential = AzureSASCredential; +/** + * Tests an object to determine whether it implements SASCredential. + * + * @param credential - The assumed SASCredential to be tested. + */ +function isSASCredential(credential) { + return ((0, core_util_1.isObjectWithProperties)(credential, ["signature"]) && typeof credential.signature === "string"); +} +//# sourceMappingURL=azureSASCredential.js.map + +/***/ }), + +/***/ 98834: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.isTokenCredential = exports.isSASCredential = exports.AzureSASCredential = exports.isNamedKeyCredential = exports.AzureNamedKeyCredential = exports.isKeyCredential = exports.AzureKeyCredential = void 0; +var azureKeyCredential_js_1 = __nccwpck_require__(31875); +Object.defineProperty(exports, "AzureKeyCredential", ({ enumerable: true, get: function () { return azureKeyCredential_js_1.AzureKeyCredential; } })); +var keyCredential_js_1 = __nccwpck_require__(59122); +Object.defineProperty(exports, "isKeyCredential", ({ enumerable: true, get: function () { return keyCredential_js_1.isKeyCredential; } })); +var azureNamedKeyCredential_js_1 = __nccwpck_require__(51377); +Object.defineProperty(exports, "AzureNamedKeyCredential", ({ enumerable: true, get: function () { return azureNamedKeyCredential_js_1.AzureNamedKeyCredential; } })); +Object.defineProperty(exports, "isNamedKeyCredential", ({ enumerable: true, get: function () { return azureNamedKeyCredential_js_1.isNamedKeyCredential; } })); +var azureSASCredential_js_1 = __nccwpck_require__(27182); +Object.defineProperty(exports, "AzureSASCredential", ({ enumerable: true, get: function () { return azureSASCredential_js_1.AzureSASCredential; } })); +Object.defineProperty(exports, "isSASCredential", ({ enumerable: true, get: function () { return azureSASCredential_js_1.isSASCredential; } })); +var tokenCredential_js_1 = __nccwpck_require__(39162); +Object.defineProperty(exports, "isTokenCredential", ({ enumerable: true, get: function () { return tokenCredential_js_1.isTokenCredential; } })); +//# sourceMappingURL=index.js.map + +/***/ }), + +/***/ 59122: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.isKeyCredential = isKeyCredential; +const core_util_1 = __nccwpck_require__(80637); +/** + * Tests an object to determine whether it implements KeyCredential. + * + * @param credential - The assumed KeyCredential to be tested. + */ +function isKeyCredential(credential) { + return (0, core_util_1.isObjectWithProperties)(credential, ["key"]) && typeof credential.key === "string"; +} +//# sourceMappingURL=keyCredential.js.map + +/***/ }), + +/***/ 39162: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.isBearerToken = isBearerToken; +exports.isPopToken = isPopToken; +exports.isTokenCredential = isTokenCredential; +/** + * @internal + * @param accessToken - Access token + * @returns Whether a token is bearer type or not + */ +function isBearerToken(accessToken) { + return !accessToken.tokenType || accessToken.tokenType === "Bearer"; +} +/** + * @internal + * @param accessToken - Access token + * @returns Whether a token is Pop token or not + */ +function isPopToken(accessToken) { + return accessToken.tokenType === "pop"; +} +/** + * Tests an object to determine whether it implements TokenCredential. + * + * @param credential - The assumed TokenCredential to be tested. + */ +function isTokenCredential(credential) { + // Check for an object with a 'getToken' function and possibly with + // a 'signRequest' function. We do this check to make sure that + // a ServiceClientCredentials implementor (like TokenClientCredentials + // in ms-rest-nodeauth) doesn't get mistaken for a TokenCredential if + // it doesn't actually implement TokenCredential also. + const castCredential = credential; + return (castCredential && + typeof castCredential.getToken === "function" && + (castCredential.signRequest === undefined || castCredential.getToken.length > 0)); +} +//# sourceMappingURL=tokenCredential.js.map + +/***/ }), + +/***/ 94873: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.parseCAEChallenge = parseCAEChallenge; +exports.authorizeRequestOnClaimChallenge = authorizeRequestOnClaimChallenge; +const log_js_1 = __nccwpck_require__(53776); +const base64_js_1 = __nccwpck_require__(23442); +/** + * Converts: `Bearer a="b", c="d", Bearer d="e", f="g"`. + * Into: `[ { a: 'b', c: 'd' }, { d: 'e', f: 'g' } ]`. + * + * @internal + */ +function parseCAEChallenge(challenges) { + const bearerChallenges = `, ${challenges.trim()}`.split(", Bearer ").filter((x) => x); + return bearerChallenges.map((challenge) => { + const challengeParts = `${challenge.trim()}, `.split('", ').filter((x) => x); + const keyValuePairs = challengeParts.map((keyValue) => (([key, value]) => ({ [key]: value }))(keyValue.trim().split('="'))); + // Key-value pairs to plain object: + return keyValuePairs.reduce((a, b) => ({ ...a, ...b }), {}); + }); +} +/** + * This function can be used as a callback for the `bearerTokenAuthenticationPolicy` of `@azure/core-rest-pipeline`, to support CAE challenges: + * [Continuous Access Evaluation](https://learn.microsoft.com/azure/active-directory/conditional-access/concept-continuous-access-evaluation). + * + * Call the `bearerTokenAuthenticationPolicy` with the following options: + * + * ```ts snippet:AuthorizeRequestOnClaimChallenge + * import { bearerTokenAuthenticationPolicy } from "@azure/core-rest-pipeline"; + * import { authorizeRequestOnClaimChallenge } from "@azure/core-client"; + * + * const policy = bearerTokenAuthenticationPolicy({ + * challengeCallbacks: { + * authorizeRequestOnChallenge: authorizeRequestOnClaimChallenge, + * }, + * scopes: ["https://service/.default"], + * }); + * ``` + * + * Once provided, the `bearerTokenAuthenticationPolicy` policy will internally handle Continuous Access Evaluation (CAE) challenges. + * When it can't complete a challenge it will return the 401 (unauthorized) response from ARM. + * + * Example challenge with claims: + * + * ``` + * Bearer authorization_uri="https://login.windows-ppe.net/", error="invalid_token", + * error_description="User session has been revoked", + * claims="eyJhY2Nlc3NfdG9rZW4iOnsibmJmIjp7ImVzc2VudGlhbCI6dHJ1ZSwgInZhbHVlIjoiMTYwMzc0MjgwMCJ9fX0=" + * ``` + */ +async function authorizeRequestOnClaimChallenge(onChallengeOptions) { + const { scopes, response } = onChallengeOptions; + const logger = onChallengeOptions.logger || log_js_1.logger; + const challenge = response.headers.get("WWW-Authenticate"); + if (!challenge) { + logger.info(`The WWW-Authenticate header was missing. Failed to perform the Continuous Access Evaluation authentication flow.`); + return false; } - /** - * Creates a BlobBatchClient object to conduct batch operations. - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch - * - * @returns A new BlobBatchClient object for this container. - */ - getBlobBatchClient() { - return new BlobBatchClient(this.url, this.pipeline); + const challenges = parseCAEChallenge(challenge) || []; + const parsedChallenge = challenges.find((x) => x.claims); + if (!parsedChallenge) { + logger.info(`The WWW-Authenticate header was missing the necessary "claims" to perform the Continuous Access Evaluation authentication flow.`); + return false; + } + const accessToken = await onChallengeOptions.getAccessToken(parsedChallenge.scope ? [parsedChallenge.scope] : scopes, { + claims: (0, base64_js_1.decodeStringToString)(parsedChallenge.claims), + }); + if (!accessToken) { + return false; } + onChallengeOptions.request.headers.set("Authorization", `${accessToken.tokenType ?? "Bearer"} ${accessToken.token}`); + return true; } +//# sourceMappingURL=authorizeRequestOnClaimChallenge.js.map + +/***/ }), + +/***/ 16576: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; // Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.authorizeRequestOnTenantChallenge = void 0; /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * This is a helper class to construct a string representing the permissions granted by an AccountSAS. Setting a value - * to true means that any SAS which uses these permissions will grant permissions for that operation. Once all the - * values are set, this should be serialized with toString and set as the permissions field on an - * {@link AccountSASSignatureValues} object. It is possible to construct the permissions string without this class, but - * the order of the permissions is particular and this class guarantees correctness. + * A set of constants used internally when processing requests. */ -class AccountSASPermissions { - constructor() { - /** - * Permission to read resources and list queues and tables granted. - */ - this.read = false; - /** - * Permission to write resources granted. - */ - this.write = false; - /** - * Permission to create blobs and files granted. - */ - this.delete = false; - /** - * Permission to delete versions granted. - */ - this.deleteVersion = false; - /** - * Permission to list blob containers, blobs, shares, directories, and files granted. - */ - this.list = false; - /** - * Permission to add messages, table entities, and append to blobs granted. - */ - this.add = false; - /** - * Permission to create blobs and files granted. - */ - this.create = false; - /** - * Permissions to update messages and table entities granted. - */ - this.update = false; - /** - * Permission to get and delete messages granted. - */ - this.process = false; - /** - * Specfies Tag access granted. - */ - this.tag = false; - /** - * Permission to filter blobs. - */ - this.filter = false; - /** - * Permission to set immutability policy. - */ - this.setImmutabilityPolicy = false; +const Constants = { + DefaultScope: "/.default", + /** + * Defines constants for use with HTTP headers. + */ + HeaderConstants: { /** - * Specifies that Permanent Delete is permitted. + * The Authorization header. */ - this.permanentDelete = false; + AUTHORIZATION: "authorization", + }, +}; +function isUuid(text) { + return /^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/.test(text); +} +/** + * Defines a callback to handle auth challenge for Storage APIs. + * This implements the bearer challenge process described here: https://learn.microsoft.com/rest/api/storageservices/authorize-with-azure-active-directory#bearer-challenge + * Handling has specific features for storage that departs to the general AAD challenge docs. + **/ +const authorizeRequestOnTenantChallenge = async (challengeOptions) => { + const requestOptions = requestToOptions(challengeOptions.request); + const challenge = getChallenge(challengeOptions.response); + if (challenge) { + const challengeInfo = parseChallenge(challenge); + const challengeScopes = buildScopes(challengeOptions, challengeInfo); + const tenantId = extractTenantId(challengeInfo); + if (!tenantId) { + return false; + } + const accessToken = await challengeOptions.getAccessToken(challengeScopes, { + ...requestOptions, + tenantId, + }); + if (!accessToken) { + return false; + } + challengeOptions.request.headers.set(Constants.HeaderConstants.AUTHORIZATION, `${accessToken.tokenType ?? "Bearer"} ${accessToken.token}`); + return true; } - /** - * Parse initializes the AccountSASPermissions fields from a string. - * - * @param permissions - - */ - static parse(permissions) { - const accountSASPermissions = new AccountSASPermissions(); - for (const c of permissions) { - switch (c) { - case "r": - accountSASPermissions.read = true; - break; - case "w": - accountSASPermissions.write = true; - break; - case "d": - accountSASPermissions.delete = true; - break; - case "x": - accountSASPermissions.deleteVersion = true; - break; - case "l": - accountSASPermissions.list = true; - break; - case "a": - accountSASPermissions.add = true; - break; - case "c": - accountSASPermissions.create = true; - break; - case "u": - accountSASPermissions.update = true; - break; - case "p": - accountSASPermissions.process = true; - break; - case "t": - accountSASPermissions.tag = true; - break; - case "f": - accountSASPermissions.filter = true; - break; - case "i": - accountSASPermissions.setImmutabilityPolicy = true; - break; - case "y": - accountSASPermissions.permanentDelete = true; - break; - default: - throw new RangeError(`Invalid permission character: ${c}`); - } - } - return accountSASPermissions; - } - /** - * Creates a {@link AccountSASPermissions} from a raw object which contains same keys as it - * and boolean values for them. - * - * @param permissionLike - - */ - static from(permissionLike) { - const accountSASPermissions = new AccountSASPermissions(); - if (permissionLike.read) { - accountSASPermissions.read = true; - } - if (permissionLike.write) { - accountSASPermissions.write = true; - } - if (permissionLike.delete) { - accountSASPermissions.delete = true; - } - if (permissionLike.deleteVersion) { - accountSASPermissions.deleteVersion = true; - } - if (permissionLike.filter) { - accountSASPermissions.filter = true; - } - if (permissionLike.tag) { - accountSASPermissions.tag = true; - } - if (permissionLike.list) { - accountSASPermissions.list = true; - } - if (permissionLike.add) { - accountSASPermissions.add = true; - } - if (permissionLike.create) { - accountSASPermissions.create = true; - } - if (permissionLike.update) { - accountSASPermissions.update = true; - } - if (permissionLike.process) { - accountSASPermissions.process = true; - } - if (permissionLike.setImmutabilityPolicy) { - accountSASPermissions.setImmutabilityPolicy = true; - } - if (permissionLike.permanentDelete) { - accountSASPermissions.permanentDelete = true; - } - return accountSASPermissions; - } - /** - * Produces the SAS permissions string for an Azure Storage account. - * Call this method to set AccountSASSignatureValues Permissions field. - * - * Using this method will guarantee the resource types are in - * an order accepted by the service. - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/constructing-an-account-sas - * - */ - toString() { - // The order of the characters should be as specified here to ensure correctness: - // https://docs.microsoft.com/en-us/rest/api/storageservices/constructing-an-account-sas - // Use a string array instead of string concatenating += operator for performance - const permissions = []; - if (this.read) { - permissions.push("r"); - } - if (this.write) { - permissions.push("w"); - } - if (this.delete) { - permissions.push("d"); - } - if (this.deleteVersion) { - permissions.push("x"); - } - if (this.filter) { - permissions.push("f"); - } - if (this.tag) { - permissions.push("t"); - } - if (this.list) { - permissions.push("l"); - } - if (this.add) { - permissions.push("a"); - } - if (this.create) { - permissions.push("c"); - } - if (this.update) { - permissions.push("u"); - } - if (this.process) { - permissions.push("p"); - } - if (this.setImmutabilityPolicy) { - permissions.push("i"); - } - if (this.permanentDelete) { - permissions.push("y"); - } - return permissions.join(""); + return false; +}; +exports.authorizeRequestOnTenantChallenge = authorizeRequestOnTenantChallenge; +/** + * Extracts the tenant id from the challenge information + * The tenant id is contained in the authorization_uri as the first + * path part. + */ +function extractTenantId(challengeInfo) { + const parsedAuthUri = new URL(challengeInfo.authorization_uri); + const pathSegments = parsedAuthUri.pathname.split("/"); + const tenantId = pathSegments[1]; + if (tenantId && isUuid(tenantId)) { + return tenantId; } + return undefined; } - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * This is a helper class to construct a string representing the resources accessible by an AccountSAS. Setting a value - * to true means that any SAS which uses these permissions will grant access to that resource type. Once all the - * values are set, this should be serialized with toString and set as the resources field on an - * {@link AccountSASSignatureValues} object. It is possible to construct the resources string without this class, but - * the order of the resources is particular and this class guarantees correctness. + * Builds the authentication scopes based on the information that comes in the + * challenge information. Scopes url is present in the resource_id, if it is empty + * we keep using the original scopes. */ -class AccountSASResourceTypes { - constructor() { - /** - * Permission to access service level APIs granted. - */ - this.service = false; - /** - * Permission to access container level APIs (Blob Containers, Tables, Queues, File Shares) granted. - */ - this.container = false; - /** - * Permission to access object level APIs (Blobs, Table Entities, Queue Messages, Files) granted. - */ - this.object = false; +function buildScopes(challengeOptions, challengeInfo) { + if (!challengeInfo.resource_id) { + return challengeOptions.scopes; } - /** - * Creates an {@link AccountSASResourceTypes} from the specified resource types string. This method will throw an - * Error if it encounters a character that does not correspond to a valid resource type. - * - * @param resourceTypes - - */ - static parse(resourceTypes) { - const accountSASResourceTypes = new AccountSASResourceTypes(); - for (const c of resourceTypes) { - switch (c) { - case "s": - accountSASResourceTypes.service = true; - break; - case "c": - accountSASResourceTypes.container = true; - break; - case "o": - accountSASResourceTypes.object = true; - break; - default: - throw new RangeError(`Invalid resource type: ${c}`); - } - } - return accountSASResourceTypes; + const challengeScopes = new URL(challengeInfo.resource_id); + challengeScopes.pathname = Constants.DefaultScope; + let scope = challengeScopes.toString(); + if (scope === "https://disk.azure.com/.default") { + // the extra slash is required by the service + scope = "https://disk.azure.com//.default"; } - /** - * Converts the given resource types to a string. - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/constructing-an-account-sas - * - */ - toString() { - const resourceTypes = []; - if (this.service) { - resourceTypes.push("s"); - } - if (this.container) { - resourceTypes.push("c"); - } - if (this.object) { - resourceTypes.push("o"); - } - return resourceTypes.join(""); + return [scope]; +} +/** + * We will retrieve the challenge only if the response status code was 401, + * and if the response contained the header "WWW-Authenticate" with a non-empty value. + */ +function getChallenge(response) { + const challenge = response.headers.get("WWW-Authenticate"); + if (response.status === 401 && challenge) { + return challenge; } + return; +} +/** + * Converts: `Bearer a="b" c="d"`. + * Into: `[ { a: 'b', c: 'd' }]`. + * + * @internal + */ +function parseChallenge(challenge) { + const bearerChallenge = challenge.slice("Bearer ".length); + const challengeParts = `${bearerChallenge.trim()} `.split(" ").filter((x) => x); + const keyValuePairs = challengeParts.map((keyValue) => (([key, value]) => ({ [key]: value }))(keyValue.trim().split("="))); + // Key-value pairs to plain object: + return keyValuePairs.reduce((a, b) => ({ ...a, ...b }), {}); +} +/** + * Extracts the options form a Pipeline Request for later re-use + */ +function requestToOptions(request) { + return { + abortSignal: request.abortSignal, + requestOptions: { + timeout: request.timeout, + }, + tracingOptions: request.tracingOptions, + }; } +//# sourceMappingURL=authorizeRequestOnTenantChallenge.js.map + +/***/ }), + +/***/ 23442: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; // Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.encodeString = encodeString; +exports.encodeByteArray = encodeByteArray; +exports.decodeString = decodeString; +exports.decodeStringToString = decodeStringToString; /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * This is a helper class to construct a string representing the services accessible by an AccountSAS. Setting a value - * to true means that any SAS which uses these permissions will grant access to that service. Once all the - * values are set, this should be serialized with toString and set as the services field on an - * {@link AccountSASSignatureValues} object. It is possible to construct the services string without this class, but - * the order of the services is particular and this class guarantees correctness. + * Encodes a string in base64 format. + * @param value - the string to encode + * @internal */ -class AccountSASServices { - constructor() { - /** - * Permission to access blob resources granted. - */ - this.blob = false; - /** - * Permission to access file resources granted. - */ - this.file = false; - /** - * Permission to access queue resources granted. - */ - this.queue = false; - /** - * Permission to access table resources granted. - */ - this.table = false; - } - /** - * Creates an {@link AccountSASServices} from the specified services string. This method will throw an - * Error if it encounters a character that does not correspond to a valid service. - * - * @param services - - */ - static parse(services) { - const accountSASServices = new AccountSASServices(); - for (const c of services) { - switch (c) { - case "b": - accountSASServices.blob = true; - break; - case "f": - accountSASServices.file = true; - break; - case "q": - accountSASServices.queue = true; - break; - case "t": - accountSASServices.table = true; - break; - default: - throw new RangeError(`Invalid service character: ${c}`); - } - } - return accountSASServices; - } - /** - * Converts the given services to a string. - * - */ - toString() { - const services = []; - if (this.blob) { - services.push("b"); - } - if (this.table) { - services.push("t"); - } - if (this.queue) { - services.push("q"); - } - if (this.file) { - services.push("f"); - } - return services.join(""); - } +function encodeString(value) { + return Buffer.from(value).toString("base64"); +} +/** + * Encodes a byte array in base64 format. + * @param value - the Uint8Aray to encode + * @internal + */ +function encodeByteArray(value) { + const bufferValue = value instanceof Buffer ? value : Buffer.from(value.buffer); + return bufferValue.toString("base64"); } +/** + * Decodes a base64 string into a byte array. + * @param value - the base64 string to decode + * @internal + */ +function decodeString(value) { + return Buffer.from(value, "base64"); +} +/** + * Decodes a base64 string into a string. + * @param value - the base64 string to decode + * @internal + */ +function decodeStringToString(value) { + return Buffer.from(value, "base64").toString(); +} +//# sourceMappingURL=base64.js.map + +/***/ }), + +/***/ 25315: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; // Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.deserializationPolicyName = void 0; +exports.deserializationPolicy = deserializationPolicy; +const interfaces_js_1 = __nccwpck_require__(8153); +const core_rest_pipeline_1 = __nccwpck_require__(29146); +const serializer_js_1 = __nccwpck_require__(63566); +const operationHelpers_js_1 = __nccwpck_require__(62074); +const defaultJsonContentTypes = ["application/json", "text/json"]; +const defaultXmlContentTypes = ["application/xml", "application/atom+xml"]; /** - * ONLY AVAILABLE IN NODE.JS RUNTIME. - * - * Generates a {@link SASQueryParameters} object which contains all SAS query parameters needed to make an actual - * REST request. - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/constructing-an-account-sas - * - * @param accountSASSignatureValues - - * @param sharedKeyCredential - + * The programmatic identifier of the deserializationPolicy. */ -function generateAccountSASQueryParameters(accountSASSignatureValues, sharedKeyCredential) { - const version = accountSASSignatureValues.version - ? accountSASSignatureValues.version - : SERVICE_VERSION; - if (accountSASSignatureValues.permissions && - accountSASSignatureValues.permissions.setImmutabilityPolicy && - version < "2020-08-04") { - throw RangeError("'version' must be >= '2020-08-04' when provided 'i' permission."); +exports.deserializationPolicyName = "deserializationPolicy"; +/** + * This policy handles parsing out responses according to OperationSpecs on the request. + */ +function deserializationPolicy(options = {}) { + const jsonContentTypes = options.expectedContentTypes?.json ?? defaultJsonContentTypes; + const xmlContentTypes = options.expectedContentTypes?.xml ?? defaultXmlContentTypes; + const parseXML = options.parseXML; + const serializerOptions = options.serializerOptions; + const updatedOptions = { + xml: { + rootName: serializerOptions?.xml.rootName ?? "", + includeRoot: serializerOptions?.xml.includeRoot ?? false, + xmlCharKey: serializerOptions?.xml.xmlCharKey ?? interfaces_js_1.XML_CHARKEY, + }, + }; + return { + name: exports.deserializationPolicyName, + async sendRequest(request, next) { + const response = await next(request); + return deserializeResponseBody(jsonContentTypes, xmlContentTypes, response, updatedOptions, parseXML); + }, + }; +} +function getOperationResponseMap(parsedResponse) { + let result; + const request = parsedResponse.request; + const operationInfo = (0, operationHelpers_js_1.getOperationRequestInfo)(request); + const operationSpec = operationInfo?.operationSpec; + if (operationSpec) { + if (!operationInfo?.operationResponseGetter) { + result = operationSpec.responses[parsedResponse.status]; + } + else { + result = operationInfo?.operationResponseGetter(operationSpec, parsedResponse); + } } - if (accountSASSignatureValues.permissions && - accountSASSignatureValues.permissions.deleteVersion && - version < "2019-10-10") { - throw RangeError("'version' must be >= '2019-10-10' when provided 'x' permission."); + return result; +} +function shouldDeserializeResponse(parsedResponse) { + const request = parsedResponse.request; + const operationInfo = (0, operationHelpers_js_1.getOperationRequestInfo)(request); + const shouldDeserialize = operationInfo?.shouldDeserialize; + let result; + if (shouldDeserialize === undefined) { + result = true; } - if (accountSASSignatureValues.permissions && - accountSASSignatureValues.permissions.permanentDelete && - version < "2019-10-10") { - throw RangeError("'version' must be >= '2019-10-10' when provided 'y' permission."); + else if (typeof shouldDeserialize === "boolean") { + result = shouldDeserialize; } - if (accountSASSignatureValues.permissions && - accountSASSignatureValues.permissions.tag && - version < "2019-12-12") { - throw RangeError("'version' must be >= '2019-12-12' when provided 't' permission."); + else { + result = shouldDeserialize(parsedResponse); } - if (accountSASSignatureValues.permissions && - accountSASSignatureValues.permissions.filter && - version < "2019-12-12") { - throw RangeError("'version' must be >= '2019-12-12' when provided 'f' permission."); + return result; +} +async function deserializeResponseBody(jsonContentTypes, xmlContentTypes, response, options, parseXML) { + const parsedResponse = await parse(jsonContentTypes, xmlContentTypes, response, options, parseXML); + if (!shouldDeserializeResponse(parsedResponse)) { + return parsedResponse; } - if (accountSASSignatureValues.encryptionScope && version < "2020-12-06") { - throw RangeError("'version' must be >= '2020-12-06' when provided 'encryptionScope' in SAS."); + const operationInfo = (0, operationHelpers_js_1.getOperationRequestInfo)(parsedResponse.request); + const operationSpec = operationInfo?.operationSpec; + if (!operationSpec || !operationSpec.responses) { + return parsedResponse; } - const parsedPermissions = AccountSASPermissions.parse(accountSASSignatureValues.permissions.toString()); - const parsedServices = AccountSASServices.parse(accountSASSignatureValues.services).toString(); - const parsedResourceTypes = AccountSASResourceTypes.parse(accountSASSignatureValues.resourceTypes).toString(); - let stringToSign; - if (version >= "2020-12-06") { - stringToSign = [ - sharedKeyCredential.accountName, - parsedPermissions, - parsedServices, - parsedResourceTypes, - accountSASSignatureValues.startsOn - ? truncatedISO8061Date(accountSASSignatureValues.startsOn, false) - : "", - truncatedISO8061Date(accountSASSignatureValues.expiresOn, false), - accountSASSignatureValues.ipRange ? ipRangeToString(accountSASSignatureValues.ipRange) : "", - accountSASSignatureValues.protocol ? accountSASSignatureValues.protocol : "", - version, - accountSASSignatureValues.encryptionScope ? accountSASSignatureValues.encryptionScope : "", - "", // Account SAS requires an additional newline character - ].join("\n"); + const responseSpec = getOperationResponseMap(parsedResponse); + const { error, shouldReturnResponse } = handleErrorResponse(parsedResponse, operationSpec, responseSpec, options); + if (error) { + throw error; } - else { - stringToSign = [ - sharedKeyCredential.accountName, - parsedPermissions, - parsedServices, - parsedResourceTypes, - accountSASSignatureValues.startsOn - ? truncatedISO8061Date(accountSASSignatureValues.startsOn, false) - : "", - truncatedISO8061Date(accountSASSignatureValues.expiresOn, false), - accountSASSignatureValues.ipRange ? ipRangeToString(accountSASSignatureValues.ipRange) : "", - accountSASSignatureValues.protocol ? accountSASSignatureValues.protocol : "", - version, - "", // Account SAS requires an additional newline character - ].join("\n"); + else if (shouldReturnResponse) { + return parsedResponse; } - const signature = sharedKeyCredential.computeHMACSHA256(stringToSign); - return new SASQueryParameters(version, signature, parsedPermissions.toString(), parsedServices, parsedResourceTypes, accountSASSignatureValues.protocol, accountSASSignatureValues.startsOn, accountSASSignatureValues.expiresOn, accountSASSignatureValues.ipRange, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, accountSASSignatureValues.encryptionScope); -} - -/** - * A BlobServiceClient represents a Client to the Azure Storage Blob service allowing you - * to manipulate blob containers. - */ -class BlobServiceClient extends StorageClient { - constructor(url, credentialOrPipeline, - // Legacy, no fix for eslint error without breaking. Disable it for this interface. - /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ - options) { - let pipeline; - if (isPipelineLike(credentialOrPipeline)) { - pipeline = credentialOrPipeline; + // An operation response spec does exist for current status code, so + // use it to deserialize the response. + if (responseSpec) { + if (responseSpec.bodyMapper) { + let valueToDeserialize = parsedResponse.parsedBody; + if (operationSpec.isXML && responseSpec.bodyMapper.type.name === serializer_js_1.MapperTypeNames.Sequence) { + valueToDeserialize = + typeof valueToDeserialize === "object" + ? valueToDeserialize[responseSpec.bodyMapper.xmlElementName] + : []; + } + try { + parsedResponse.parsedBody = operationSpec.serializer.deserialize(responseSpec.bodyMapper, valueToDeserialize, "operationRes.parsedBody", options); + } + catch (deserializeError) { + const restError = new core_rest_pipeline_1.RestError(`Error ${deserializeError} occurred in deserializing the responseBody - ${parsedResponse.bodyAsText}`, { + statusCode: parsedResponse.status, + request: parsedResponse.request, + response: parsedResponse, + }); + throw restError; + } + } + else if (operationSpec.httpMethod === "HEAD") { + // head methods never have a body, but we return a boolean to indicate presence/absence of the resource + parsedResponse.parsedBody = response.status >= 200 && response.status < 300; } - else if ((coreHttp.isNode && credentialOrPipeline instanceof StorageSharedKeyCredential) || - credentialOrPipeline instanceof AnonymousCredential || - coreHttp.isTokenCredential(credentialOrPipeline)) { - pipeline = newPipeline(credentialOrPipeline, options); + if (responseSpec.headersMapper) { + parsedResponse.parsedHeaders = operationSpec.serializer.deserialize(responseSpec.headersMapper, parsedResponse.headers.toJSON(), "operationRes.parsedHeaders", { xml: {}, ignoreUnknownProperties: true }); + } + } + return parsedResponse; +} +function isOperationSpecEmpty(operationSpec) { + const expectedStatusCodes = Object.keys(operationSpec.responses); + return (expectedStatusCodes.length === 0 || + (expectedStatusCodes.length === 1 && expectedStatusCodes[0] === "default")); +} +function handleErrorResponse(parsedResponse, operationSpec, responseSpec, options) { + const isSuccessByStatus = 200 <= parsedResponse.status && parsedResponse.status < 300; + const isExpectedStatusCode = isOperationSpecEmpty(operationSpec) + ? isSuccessByStatus + : !!responseSpec; + if (isExpectedStatusCode) { + if (responseSpec) { + if (!responseSpec.isError) { + return { error: null, shouldReturnResponse: false }; + } } else { - // The second parameter is undefined. Use anonymous credential - pipeline = newPipeline(new AnonymousCredential(), options); + return { error: null, shouldReturnResponse: false }; } - super(url, pipeline); - this.serviceContext = new Service(this.storageClientContext); } - /** - * - * Creates an instance of BlobServiceClient from connection string. - * - * @param connectionString - Account connection string or a SAS connection string of an Azure storage account. - * [ Note - Account connection string can only be used in NODE.JS runtime. ] - * Account connection string example - - * `DefaultEndpointsProtocol=https;AccountName=myaccount;AccountKey=accountKey;EndpointSuffix=core.windows.net` - * SAS connection string example - - * `BlobEndpoint=https://myaccount.blob.core.windows.net/;QueueEndpoint=https://myaccount.queue.core.windows.net/;FileEndpoint=https://myaccount.file.core.windows.net/;TableEndpoint=https://myaccount.table.core.windows.net/;SharedAccessSignature=sasString` - * @param options - Optional. Options to configure the HTTP pipeline. - */ - static fromConnectionString(connectionString, - // Legacy, no fix for eslint error without breaking. Disable it for this interface. - /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ - options) { - options = options || {}; - const extractedCreds = extractConnectionStringParts(connectionString); - if (extractedCreds.kind === "AccountConnString") { - if (coreHttp.isNode) { - const sharedKeyCredential = new StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey); - if (!options.proxyOptions) { - options.proxyOptions = coreHttp.getDefaultProxySettings(extractedCreds.proxyUri); + const errorResponseSpec = responseSpec ?? operationSpec.responses.default; + const initialErrorMessage = parsedResponse.request.streamResponseStatusCodes?.has(parsedResponse.status) + ? `Unexpected status code: ${parsedResponse.status}` + : parsedResponse.bodyAsText; + const error = new core_rest_pipeline_1.RestError(initialErrorMessage, { + statusCode: parsedResponse.status, + request: parsedResponse.request, + response: parsedResponse, + }); + // If the item failed but there's no error spec or default spec to deserialize the error, + // and the parsed body doesn't look like an error object, + // we should fail so we just throw the parsed response + if (!errorResponseSpec && + !(parsedResponse.parsedBody?.error?.code && parsedResponse.parsedBody?.error?.message)) { + throw error; + } + const defaultBodyMapper = errorResponseSpec?.bodyMapper; + const defaultHeadersMapper = errorResponseSpec?.headersMapper; + try { + // If error response has a body, try to deserialize it using default body mapper. + // Then try to extract error code & message from it + if (parsedResponse.parsedBody) { + const parsedBody = parsedResponse.parsedBody; + let deserializedError; + if (defaultBodyMapper) { + let valueToDeserialize = parsedBody; + if (operationSpec.isXML && defaultBodyMapper.type.name === serializer_js_1.MapperTypeNames.Sequence) { + valueToDeserialize = []; + const elementName = defaultBodyMapper.xmlElementName; + if (typeof parsedBody === "object" && elementName) { + valueToDeserialize = parsedBody[elementName]; + } } - const pipeline = newPipeline(sharedKeyCredential, options); - return new BlobServiceClient(extractedCreds.url, pipeline); + deserializedError = operationSpec.serializer.deserialize(defaultBodyMapper, valueToDeserialize, "error.response.parsedBody", options); } - else { - throw new Error("Account connection string is only supported in Node.js environment"); + const internalError = parsedBody.error || deserializedError || parsedBody; + error.code = internalError.code; + if (internalError.message) { + error.message = internalError.message; + } + if (defaultBodyMapper) { + error.response.parsedBody = deserializedError; } } - else if (extractedCreds.kind === "SASConnString") { - const pipeline = newPipeline(new AnonymousCredential(), options); - return new BlobServiceClient(extractedCreds.url + "?" + extractedCreds.accountSas, pipeline); - } - else { - throw new Error("Connection string must be either an Account connection string or a SAS connection string"); + // If error response has headers, try to deserialize it using default header mapper + if (parsedResponse.headers && defaultHeadersMapper) { + error.response.parsedHeaders = + operationSpec.serializer.deserialize(defaultHeadersMapper, parsedResponse.headers.toJSON(), "operationRes.parsedHeaders"); } } - /** - * Creates a {@link ContainerClient} object - * - * @param containerName - A container name - * @returns A new ContainerClient object for the given container name. - * - * Example usage: - * - * ```js - * const containerClient = blobServiceClient.getContainerClient(""); - * ``` - */ - getContainerClient(containerName) { - return new ContainerClient(appendToURLPath(this.url, encodeURIComponent(containerName)), this.pipeline); + catch (defaultError) { + error.message = `Error "${defaultError.message}" occurred in deserializing the responseBody - "${parsedResponse.bodyAsText}" for the default response.`; } - /** - * Create a Blob container. - * - * @param containerName - Name of the container to create. - * @param options - Options to configure Container Create operation. - * @returns Container creation response and the corresponding container client. - */ - async createContainer(containerName, options = {}) { - const { span, updatedOptions } = createSpan("BlobServiceClient-createContainer", options); + return { error, shouldReturnResponse: false }; +} +async function parse(jsonContentTypes, xmlContentTypes, operationResponse, opts, parseXML) { + if (!operationResponse.request.streamResponseStatusCodes?.has(operationResponse.status) && + operationResponse.bodyAsText) { + const text = operationResponse.bodyAsText; + const contentType = operationResponse.headers.get("Content-Type") || ""; + const contentComponents = !contentType + ? [] + : contentType.split(";").map((component) => component.toLowerCase()); try { - const containerClient = this.getContainerClient(containerName); - const containerCreateResponse = await containerClient.create(updatedOptions); - return { - containerClient, - containerCreateResponse, - }; + if (contentComponents.length === 0 || + contentComponents.some((component) => jsonContentTypes.indexOf(component) !== -1)) { + operationResponse.parsedBody = JSON.parse(text); + return operationResponse; + } + else if (contentComponents.some((component) => xmlContentTypes.indexOf(component) !== -1)) { + if (!parseXML) { + throw new Error("Parsing XML not supported."); + } + const body = await parseXML(text, opts.xml); + operationResponse.parsedBody = body; + return operationResponse; + } } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, + catch (err) { + const msg = `Error "${err}" occurred while parsing the response body - ${operationResponse.bodyAsText}.`; + const errCode = err.code || core_rest_pipeline_1.RestError.PARSE_ERROR; + const e = new core_rest_pipeline_1.RestError(msg, { + code: errCode, + statusCode: operationResponse.status, + request: operationResponse.request, + response: operationResponse, }); throw e; } - finally { - span.end(); + } + return operationResponse; +} +//# sourceMappingURL=deserializationPolicy.js.map + +/***/ }), + +/***/ 30308: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getCachedDefaultHttpClient = getCachedDefaultHttpClient; +const core_rest_pipeline_1 = __nccwpck_require__(29146); +let cachedHttpClient; +function getCachedDefaultHttpClient() { + if (!cachedHttpClient) { + cachedHttpClient = (0, core_rest_pipeline_1.createDefaultHttpClient)(); + } + return cachedHttpClient; +} +//# sourceMappingURL=httpClientCache.js.map + +/***/ }), + +/***/ 7611: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.authorizeRequestOnTenantChallenge = exports.authorizeRequestOnClaimChallenge = exports.serializationPolicyName = exports.serializationPolicy = exports.deserializationPolicyName = exports.deserializationPolicy = exports.XML_CHARKEY = exports.XML_ATTRKEY = exports.createClientPipeline = exports.ServiceClient = exports.MapperTypeNames = exports.createSerializer = void 0; +var serializer_js_1 = __nccwpck_require__(63566); +Object.defineProperty(exports, "createSerializer", ({ enumerable: true, get: function () { return serializer_js_1.createSerializer; } })); +Object.defineProperty(exports, "MapperTypeNames", ({ enumerable: true, get: function () { return serializer_js_1.MapperTypeNames; } })); +var serviceClient_js_1 = __nccwpck_require__(28927); +Object.defineProperty(exports, "ServiceClient", ({ enumerable: true, get: function () { return serviceClient_js_1.ServiceClient; } })); +var pipeline_js_1 = __nccwpck_require__(33924); +Object.defineProperty(exports, "createClientPipeline", ({ enumerable: true, get: function () { return pipeline_js_1.createClientPipeline; } })); +var interfaces_js_1 = __nccwpck_require__(8153); +Object.defineProperty(exports, "XML_ATTRKEY", ({ enumerable: true, get: function () { return interfaces_js_1.XML_ATTRKEY; } })); +Object.defineProperty(exports, "XML_CHARKEY", ({ enumerable: true, get: function () { return interfaces_js_1.XML_CHARKEY; } })); +var deserializationPolicy_js_1 = __nccwpck_require__(25315); +Object.defineProperty(exports, "deserializationPolicy", ({ enumerable: true, get: function () { return deserializationPolicy_js_1.deserializationPolicy; } })); +Object.defineProperty(exports, "deserializationPolicyName", ({ enumerable: true, get: function () { return deserializationPolicy_js_1.deserializationPolicyName; } })); +var serializationPolicy_js_1 = __nccwpck_require__(96625); +Object.defineProperty(exports, "serializationPolicy", ({ enumerable: true, get: function () { return serializationPolicy_js_1.serializationPolicy; } })); +Object.defineProperty(exports, "serializationPolicyName", ({ enumerable: true, get: function () { return serializationPolicy_js_1.serializationPolicyName; } })); +var authorizeRequestOnClaimChallenge_js_1 = __nccwpck_require__(94873); +Object.defineProperty(exports, "authorizeRequestOnClaimChallenge", ({ enumerable: true, get: function () { return authorizeRequestOnClaimChallenge_js_1.authorizeRequestOnClaimChallenge; } })); +var authorizeRequestOnTenantChallenge_js_1 = __nccwpck_require__(16576); +Object.defineProperty(exports, "authorizeRequestOnTenantChallenge", ({ enumerable: true, get: function () { return authorizeRequestOnTenantChallenge_js_1.authorizeRequestOnTenantChallenge; } })); +//# sourceMappingURL=index.js.map + +/***/ }), + +/***/ 41459: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getStreamingResponseStatusCodes = getStreamingResponseStatusCodes; +exports.getPathStringFromParameter = getPathStringFromParameter; +const serializer_js_1 = __nccwpck_require__(63566); +/** + * Gets the list of status codes for streaming responses. + * @internal + */ +function getStreamingResponseStatusCodes(operationSpec) { + const result = new Set(); + for (const statusCode in operationSpec.responses) { + const operationResponse = operationSpec.responses[statusCode]; + if (operationResponse.bodyMapper && + operationResponse.bodyMapper.type.name === serializer_js_1.MapperTypeNames.Stream) { + result.add(Number(statusCode)); } } - /** - * Deletes a Blob container. - * - * @param containerName - Name of the container to delete. - * @param options - Options to configure Container Delete operation. - * @returns Container deletion response. - */ - async deleteContainer(containerName, options = {}) { - const { span, updatedOptions } = createSpan("BlobServiceClient-deleteContainer", options); - try { - const containerClient = this.getContainerClient(containerName); - return await containerClient.delete(updatedOptions); + return result; +} +/** + * Get the path to this parameter's value as a dotted string (a.b.c). + * @param parameter - The parameter to get the path string for. + * @returns The path to this parameter's value as a dotted string. + * @internal + */ +function getPathStringFromParameter(parameter) { + const { parameterPath, mapper } = parameter; + let result; + if (typeof parameterPath === "string") { + result = parameterPath; + } + else if (Array.isArray(parameterPath)) { + result = parameterPath.join("."); + } + else { + result = mapper.serializedName; + } + return result; +} +//# sourceMappingURL=interfaceHelpers.js.map + +/***/ }), + +/***/ 8153: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.XML_CHARKEY = exports.XML_ATTRKEY = void 0; +/** + * Default key used to access the XML attributes. + */ +exports.XML_ATTRKEY = "$"; +/** + * Default key used to access the XML value content. + */ +exports.XML_CHARKEY = "_"; +//# sourceMappingURL=interfaces.js.map + +/***/ }), + +/***/ 53776: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.logger = void 0; +const logger_1 = __nccwpck_require__(89497); +exports.logger = (0, logger_1.createClientLogger)("core-client"); +//# sourceMappingURL=log.js.map + +/***/ }), + +/***/ 62074: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getOperationArgumentValueFromParameter = getOperationArgumentValueFromParameter; +exports.getOperationRequestInfo = getOperationRequestInfo; +const state_js_1 = __nccwpck_require__(35429); +/** + * @internal + * Retrieves the value to use for a given operation argument + * @param operationArguments - The arguments passed from the generated client + * @param parameter - The parameter description + * @param fallbackObject - If something isn't found in the arguments bag, look here. + * Generally used to look at the service client properties. + */ +function getOperationArgumentValueFromParameter(operationArguments, parameter, fallbackObject) { + let parameterPath = parameter.parameterPath; + const parameterMapper = parameter.mapper; + let value; + if (typeof parameterPath === "string") { + parameterPath = [parameterPath]; + } + if (Array.isArray(parameterPath)) { + if (parameterPath.length > 0) { + if (parameterMapper.isConstant) { + value = parameterMapper.defaultValue; + } + else { + let propertySearchResult = getPropertyFromParameterPath(operationArguments, parameterPath); + if (!propertySearchResult.propertyFound && fallbackObject) { + propertySearchResult = getPropertyFromParameterPath(fallbackObject, parameterPath); + } + let useDefaultValue = false; + if (!propertySearchResult.propertyFound) { + useDefaultValue = + parameterMapper.required || + (parameterPath[0] === "options" && parameterPath.length === 2); + } + value = useDefaultValue ? parameterMapper.defaultValue : propertySearchResult.propertyValue; + } } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + } + else { + if (parameterMapper.required) { + value = {}; } - finally { - span.end(); + for (const propertyName in parameterPath) { + const propertyMapper = parameterMapper.type.modelProperties[propertyName]; + const propertyPath = parameterPath[propertyName]; + const propertyValue = getOperationArgumentValueFromParameter(operationArguments, { + parameterPath: propertyPath, + mapper: propertyMapper, + }, fallbackObject); + if (propertyValue !== undefined) { + if (!value) { + value = {}; + } + value[propertyName] = propertyValue; + } } } - /** - * Restore a previously deleted Blob container. - * This API is only functional if Container Soft Delete is enabled for the storage account associated with the container. - * - * @param deletedContainerName - Name of the previously deleted container. - * @param deletedContainerVersion - Version of the previously deleted container, used to uniquely identify the deleted container. - * @param options - Options to configure Container Restore operation. - * @returns Container deletion response. - */ - async undeleteContainer(deletedContainerName, deletedContainerVersion, options = {}) { - const { span, updatedOptions } = createSpan("BlobServiceClient-undeleteContainer", options); - try { - const containerClient = this.getContainerClient(options.destinationContainerName || deletedContainerName); - // Hack to access a protected member. - const containerContext = new Container(containerClient["storageClientContext"]); - const containerUndeleteResponse = await containerContext.restore(Object.assign({ deletedContainerName, - deletedContainerVersion }, updatedOptions)); - return { containerClient, containerUndeleteResponse }; - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + return value; +} +function getPropertyFromParameterPath(parent, parameterPath) { + const result = { propertyFound: false }; + let i = 0; + for (; i < parameterPath.length; ++i) { + const parameterPathPart = parameterPath[i]; + // Make sure to check inherited properties too, so don't use hasOwnProperty(). + if (parent && parameterPathPart in parent) { + parent = parent[parameterPathPart]; } - finally { - span.end(); + else { + break; } } - /** - * Rename an existing Blob Container. - * - * @param sourceContainerName - The name of the source container. - * @param destinationContainerName - The new name of the container. - * @param options - Options to configure Container Rename operation. - */ - /* eslint-disable-next-line @typescript-eslint/ban-ts-comment */ - // @ts-ignore Need to hide this interface for now. Make it public and turn on the live tests for it when the service is ready. - async renameContainer(sourceContainerName, destinationContainerName, options = {}) { - var _a; - const { span, updatedOptions } = createSpan("BlobServiceClient-renameContainer", options); - try { - const containerClient = this.getContainerClient(destinationContainerName); - // Hack to access a protected member. - const containerContext = new Container(containerClient["storageClientContext"]); - const containerRenameResponse = await containerContext.rename(sourceContainerName, Object.assign(Object.assign({}, updatedOptions), { sourceLeaseId: (_a = options.sourceCondition) === null || _a === void 0 ? void 0 : _a.leaseId })); - return { containerClient, containerRenameResponse }; - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + if (i === parameterPath.length) { + result.propertyValue = parent; + result.propertyFound = true; + } + return result; +} +const originalRequestSymbol = Symbol.for("@azure/core-client original request"); +function hasOriginalRequest(request) { + return originalRequestSymbol in request; +} +function getOperationRequestInfo(request) { + if (hasOriginalRequest(request)) { + return getOperationRequestInfo(request[originalRequestSymbol]); + } + let info = state_js_1.state.operationRequestMap.get(request); + if (!info) { + info = {}; + state_js_1.state.operationRequestMap.set(request, info); + } + return info; +} +//# sourceMappingURL=operationHelpers.js.map + +/***/ }), + +/***/ 33924: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.createClientPipeline = createClientPipeline; +const deserializationPolicy_js_1 = __nccwpck_require__(25315); +const core_rest_pipeline_1 = __nccwpck_require__(29146); +const serializationPolicy_js_1 = __nccwpck_require__(96625); +/** + * Creates a new Pipeline for use with a Service Client. + * Adds in deserializationPolicy by default. + * Also adds in bearerTokenAuthenticationPolicy if passed a TokenCredential. + * @param options - Options to customize the created pipeline. + */ +function createClientPipeline(options = {}) { + const pipeline = (0, core_rest_pipeline_1.createPipelineFromOptions)(options ?? {}); + if (options.credentialOptions) { + pipeline.addPolicy((0, core_rest_pipeline_1.bearerTokenAuthenticationPolicy)({ + credential: options.credentialOptions.credential, + scopes: options.credentialOptions.credentialScopes, + })); + } + pipeline.addPolicy((0, serializationPolicy_js_1.serializationPolicy)(options.serializationOptions), { phase: "Serialize" }); + pipeline.addPolicy((0, deserializationPolicy_js_1.deserializationPolicy)(options.deserializationOptions), { + phase: "Deserialize", + }); + return pipeline; +} +//# sourceMappingURL=pipeline.js.map + +/***/ }), + +/***/ 96625: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.serializationPolicyName = void 0; +exports.serializationPolicy = serializationPolicy; +exports.serializeHeaders = serializeHeaders; +exports.serializeRequestBody = serializeRequestBody; +const interfaces_js_1 = __nccwpck_require__(8153); +const operationHelpers_js_1 = __nccwpck_require__(62074); +const serializer_js_1 = __nccwpck_require__(63566); +const interfaceHelpers_js_1 = __nccwpck_require__(41459); +/** + * The programmatic identifier of the serializationPolicy. + */ +exports.serializationPolicyName = "serializationPolicy"; +/** + * This policy handles assembling the request body and headers using + * an OperationSpec and OperationArguments on the request. + */ +function serializationPolicy(options = {}) { + const stringifyXML = options.stringifyXML; + return { + name: exports.serializationPolicyName, + async sendRequest(request, next) { + const operationInfo = (0, operationHelpers_js_1.getOperationRequestInfo)(request); + const operationSpec = operationInfo?.operationSpec; + const operationArguments = operationInfo?.operationArguments; + if (operationSpec && operationArguments) { + serializeHeaders(request, operationArguments, operationSpec); + serializeRequestBody(request, operationArguments, operationSpec, stringifyXML); + } + return next(request); + }, + }; +} +/** + * @internal + */ +function serializeHeaders(request, operationArguments, operationSpec) { + if (operationSpec.headerParameters) { + for (const headerParameter of operationSpec.headerParameters) { + let headerValue = (0, operationHelpers_js_1.getOperationArgumentValueFromParameter)(operationArguments, headerParameter); + if ((headerValue !== null && headerValue !== undefined) || headerParameter.mapper.required) { + headerValue = operationSpec.serializer.serialize(headerParameter.mapper, headerValue, (0, interfaceHelpers_js_1.getPathStringFromParameter)(headerParameter)); + const headerCollectionPrefix = headerParameter.mapper + .headerCollectionPrefix; + if (headerCollectionPrefix) { + for (const key of Object.keys(headerValue)) { + request.headers.set(headerCollectionPrefix + key, headerValue[key]); + } + } + else { + request.headers.set(headerParameter.mapper.serializedName || (0, interfaceHelpers_js_1.getPathStringFromParameter)(headerParameter), headerValue); + } + } } - finally { - span.end(); + } + const customHeaders = operationArguments.options?.requestOptions?.customHeaders; + if (customHeaders) { + for (const customHeaderName of Object.keys(customHeaders)) { + request.headers.set(customHeaderName, customHeaders[customHeaderName]); } } - /** - * Gets the properties of a storage account’s Blob service, including properties - * for Storage Analytics and CORS (Cross-Origin Resource Sharing) rules. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/get-blob-service-properties - * - * @param options - Options to the Service Get Properties operation. - * @returns Response data for the Service Get Properties operation. - */ - async getProperties(options = {}) { - const { span, updatedOptions } = createSpan("BlobServiceClient-getProperties", options); +} +/** + * @internal + */ +function serializeRequestBody(request, operationArguments, operationSpec, stringifyXML = function () { + throw new Error("XML serialization unsupported!"); +}) { + const serializerOptions = operationArguments.options?.serializerOptions; + const updatedOptions = { + xml: { + rootName: serializerOptions?.xml.rootName ?? "", + includeRoot: serializerOptions?.xml.includeRoot ?? false, + xmlCharKey: serializerOptions?.xml.xmlCharKey ?? interfaces_js_1.XML_CHARKEY, + }, + }; + const xmlCharKey = updatedOptions.xml.xmlCharKey; + if (operationSpec.requestBody && operationSpec.requestBody.mapper) { + request.body = (0, operationHelpers_js_1.getOperationArgumentValueFromParameter)(operationArguments, operationSpec.requestBody); + const bodyMapper = operationSpec.requestBody.mapper; + const { required, serializedName, xmlName, xmlElementName, xmlNamespace, xmlNamespacePrefix, nullable, } = bodyMapper; + const typeName = bodyMapper.type.name; try { - return await this.serviceContext.getProperties(Object.assign({ abortSignal: options.abortSignal }, convertTracingToRequestOptionsBase(updatedOptions))); + if ((request.body !== undefined && request.body !== null) || + (nullable && request.body === null) || + required) { + const requestBodyParameterPathString = (0, interfaceHelpers_js_1.getPathStringFromParameter)(operationSpec.requestBody); + request.body = operationSpec.serializer.serialize(bodyMapper, request.body, requestBodyParameterPathString, updatedOptions); + const isStream = typeName === serializer_js_1.MapperTypeNames.Stream; + if (operationSpec.isXML) { + const xmlnsKey = xmlNamespacePrefix ? `xmlns:${xmlNamespacePrefix}` : "xmlns"; + const value = getXmlValueWithNamespace(xmlNamespace, xmlnsKey, typeName, request.body, updatedOptions); + if (typeName === serializer_js_1.MapperTypeNames.Sequence) { + request.body = stringifyXML(prepareXMLRootList(value, xmlElementName || xmlName || serializedName, xmlnsKey, xmlNamespace), { rootName: xmlName || serializedName, xmlCharKey }); + } + else if (!isStream) { + request.body = stringifyXML(value, { + rootName: xmlName || serializedName, + xmlCharKey, + }); + } + } + else if (typeName === serializer_js_1.MapperTypeNames.String && + (operationSpec.contentType?.match("text/plain") || operationSpec.mediaType === "text")) { + // the String serializer has validated that request body is a string + // so just send the string. + return; + } + else if (!isStream) { + request.body = JSON.stringify(request.body); + } + } } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + catch (error) { + throw new Error(`Error "${error.message}" occurred in serializing the payload - ${JSON.stringify(serializedName, undefined, " ")}.`); } - finally { - span.end(); + } + else if (operationSpec.formDataParameters && operationSpec.formDataParameters.length > 0) { + request.formData = {}; + for (const formDataParameter of operationSpec.formDataParameters) { + const formDataParameterValue = (0, operationHelpers_js_1.getOperationArgumentValueFromParameter)(operationArguments, formDataParameter); + if (formDataParameterValue !== undefined && formDataParameterValue !== null) { + const formDataParameterPropertyName = formDataParameter.mapper.serializedName || (0, interfaceHelpers_js_1.getPathStringFromParameter)(formDataParameter); + request.formData[formDataParameterPropertyName] = operationSpec.serializer.serialize(formDataParameter.mapper, formDataParameterValue, (0, interfaceHelpers_js_1.getPathStringFromParameter)(formDataParameter), updatedOptions); + } } } +} +/** + * Adds an xml namespace to the xml serialized object if needed, otherwise it just returns the value itself + */ +function getXmlValueWithNamespace(xmlNamespace, xmlnsKey, typeName, serializedValue, options) { + // Composite and Sequence schemas already got their root namespace set during serialization + // We just need to add xmlns to the other schema types + if (xmlNamespace && !["Composite", "Sequence", "Dictionary"].includes(typeName)) { + const result = {}; + result[options.xml.xmlCharKey] = serializedValue; + result[interfaces_js_1.XML_ATTRKEY] = { [xmlnsKey]: xmlNamespace }; + return result; + } + return serializedValue; +} +function prepareXMLRootList(obj, elementName, xmlNamespaceKey, xmlNamespace) { + if (!Array.isArray(obj)) { + obj = [obj]; + } + if (!xmlNamespaceKey || !xmlNamespace) { + return { [elementName]: obj }; + } + const result = { [elementName]: obj }; + result[interfaces_js_1.XML_ATTRKEY] = { [xmlNamespaceKey]: xmlNamespace }; + return result; +} +//# sourceMappingURL=serializationPolicy.js.map + +/***/ }), + +/***/ 63566: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.MapperTypeNames = void 0; +exports.createSerializer = createSerializer; +const tslib_1 = __nccwpck_require__(4351); +const base64 = tslib_1.__importStar(__nccwpck_require__(23442)); +const interfaces_js_1 = __nccwpck_require__(8153); +const utils_js_1 = __nccwpck_require__(25363); +class SerializerImpl { + modelMappers; + isXML; + constructor(modelMappers = {}, isXML = false) { + this.modelMappers = modelMappers; + this.isXML = isXML; + } /** - * Sets properties for a storage account’s Blob service endpoint, including properties - * for Storage Analytics, CORS (Cross-Origin Resource Sharing) rules and soft delete settings. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/set-blob-service-properties - * - * @param properties - - * @param options - Options to the Service Set Properties operation. - * @returns Response data for the Service Set Properties operation. + * @deprecated Removing the constraints validation on client side. */ - async setProperties(properties, options = {}) { - const { span, updatedOptions } = createSpan("BlobServiceClient-setProperties", options); - try { - return await this.serviceContext.setProperties(properties, Object.assign({ abortSignal: options.abortSignal }, convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); + validateConstraints(mapper, value, objectName) { + const failValidation = (constraintName, constraintValue) => { + throw new Error(`"${objectName}" with value "${value}" should satisfy the constraint "${constraintName}": ${constraintValue}.`); + }; + if (mapper.constraints && value !== undefined && value !== null) { + const { ExclusiveMaximum, ExclusiveMinimum, InclusiveMaximum, InclusiveMinimum, MaxItems, MaxLength, MinItems, MinLength, MultipleOf, Pattern, UniqueItems, } = mapper.constraints; + if (ExclusiveMaximum !== undefined && value >= ExclusiveMaximum) { + failValidation("ExclusiveMaximum", ExclusiveMaximum); + } + if (ExclusiveMinimum !== undefined && value <= ExclusiveMinimum) { + failValidation("ExclusiveMinimum", ExclusiveMinimum); + } + if (InclusiveMaximum !== undefined && value > InclusiveMaximum) { + failValidation("InclusiveMaximum", InclusiveMaximum); + } + if (InclusiveMinimum !== undefined && value < InclusiveMinimum) { + failValidation("InclusiveMinimum", InclusiveMinimum); + } + if (MaxItems !== undefined && value.length > MaxItems) { + failValidation("MaxItems", MaxItems); + } + if (MaxLength !== undefined && value.length > MaxLength) { + failValidation("MaxLength", MaxLength); + } + if (MinItems !== undefined && value.length < MinItems) { + failValidation("MinItems", MinItems); + } + if (MinLength !== undefined && value.length < MinLength) { + failValidation("MinLength", MinLength); + } + if (MultipleOf !== undefined && value % MultipleOf !== 0) { + failValidation("MultipleOf", MultipleOf); + } + if (Pattern) { + const pattern = typeof Pattern === "string" ? new RegExp(Pattern) : Pattern; + if (typeof value !== "string" || value.match(pattern) === null) { + failValidation("Pattern", Pattern); + } + } + if (UniqueItems && + value.some((item, i, ar) => ar.indexOf(item) !== i)) { + failValidation("UniqueItems", UniqueItems); + } } } /** - * Retrieves statistics related to replication for the Blob service. It is only - * available on the secondary location endpoint when read-access geo-redundant - * replication is enabled for the storage account. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/get-blob-service-stats + * Serialize the given object based on its metadata defined in the mapper * - * @param options - Options to the Service Get Statistics operation. - * @returns Response data for the Service Get Statistics operation. + * @param mapper - The mapper which defines the metadata of the serializable object + * + * @param object - A valid Javascript object to be serialized + * + * @param objectName - Name of the serialized object + * + * @param options - additional options to serialization + * + * @returns A valid serialized Javascript object */ - async getStatistics(options = {}) { - const { span, updatedOptions } = createSpan("BlobServiceClient-getStatistics", options); - try { - return await this.serviceContext.getStatistics(Object.assign({ abortSignal: options.abortSignal }, convertTracingToRequestOptionsBase(updatedOptions))); + serialize(mapper, object, objectName, options = { xml: {} }) { + const updatedOptions = { + xml: { + rootName: options.xml.rootName ?? "", + includeRoot: options.xml.includeRoot ?? false, + xmlCharKey: options.xml.xmlCharKey ?? interfaces_js_1.XML_CHARKEY, + }, + }; + let payload = {}; + const mapperType = mapper.type.name; + if (!objectName) { + objectName = mapper.serializedName; } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + if (mapperType.match(/^Sequence$/i) !== null) { + payload = []; } - finally { - span.end(); + if (mapper.isConstant) { + object = mapper.defaultValue; } - } - /** - * The Get Account Information operation returns the sku name and account kind - * for the specified account. - * The Get Account Information operation is available on service versions beginning - * with version 2018-03-28. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/get-account-information - * - * @param options - Options to the Service Get Account Info operation. - * @returns Response data for the Service Get Account Info operation. - */ - async getAccountInfo(options = {}) { - const { span, updatedOptions } = createSpan("BlobServiceClient-getAccountInfo", options); - try { - return await this.serviceContext.getAccountInfo(Object.assign({ abortSignal: options.abortSignal }, convertTracingToRequestOptionsBase(updatedOptions))); + // This table of allowed values should help explain + // the mapper.required and mapper.nullable properties. + // X means "neither undefined or null are allowed". + // || required + // || true | false + // nullable || ========================== + // true || null | undefined/null + // false || X | undefined + // undefined || X | undefined/null + const { required, nullable } = mapper; + if (required && nullable && object === undefined) { + throw new Error(`${objectName} cannot be undefined.`); } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + if (required && !nullable && (object === undefined || object === null)) { + throw new Error(`${objectName} cannot be null or undefined.`); } - finally { - span.end(); + if (!required && nullable === false && object === null) { + throw new Error(`${objectName} cannot be null.`); + } + if (object === undefined || object === null) { + payload = object; + } + else { + if (mapperType.match(/^any$/i) !== null) { + payload = object; + } + else if (mapperType.match(/^(Number|String|Boolean|Object|Stream|Uuid)$/i) !== null) { + payload = serializeBasicTypes(mapperType, objectName, object); + } + else if (mapperType.match(/^Enum$/i) !== null) { + const enumMapper = mapper; + payload = serializeEnumType(objectName, enumMapper.type.allowedValues, object); + } + else if (mapperType.match(/^(Date|DateTime|TimeSpan|DateTimeRfc1123|UnixTime)$/i) !== null) { + payload = serializeDateTypes(mapperType, object, objectName); + } + else if (mapperType.match(/^ByteArray$/i) !== null) { + payload = serializeByteArrayType(objectName, object); + } + else if (mapperType.match(/^Base64Url$/i) !== null) { + payload = serializeBase64UrlType(objectName, object); + } + else if (mapperType.match(/^Sequence$/i) !== null) { + payload = serializeSequenceType(this, mapper, object, objectName, Boolean(this.isXML), updatedOptions); + } + else if (mapperType.match(/^Dictionary$/i) !== null) { + payload = serializeDictionaryType(this, mapper, object, objectName, Boolean(this.isXML), updatedOptions); + } + else if (mapperType.match(/^Composite$/i) !== null) { + payload = serializeCompositeType(this, mapper, object, objectName, Boolean(this.isXML), updatedOptions); + } } + return payload; } /** - * Returns a list of the containers under the specified account. - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/list-containers2 + * Deserialize the given object based on its metadata defined in the mapper * - * @param marker - A string value that identifies the portion of - * the list of containers to be returned with the next listing operation. The - * operation returns the continuationToken value within the response body if the - * listing operation did not return all containers remaining to be listed - * with the current page. The continuationToken value can be used as the value for - * the marker parameter in a subsequent call to request the next page of list - * items. The marker value is opaque to the client. - * @param options - Options to the Service List Container Segment operation. - * @returns Response data for the Service List Container Segment operation. - */ - async listContainersSegment(marker, options = {}) { - const { span, updatedOptions } = createSpan("BlobServiceClient-listContainersSegment", options); - try { - return await this.serviceContext.listContainersSegment(Object.assign(Object.assign(Object.assign({ abortSignal: options.abortSignal, marker }, options), { include: typeof options.include === "string" ? [options.include] : options.include }), convertTracingToRequestOptionsBase(updatedOptions))); - } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; - } - finally { - span.end(); - } - } - /** - * The Filter Blobs operation enables callers to list blobs across all containers whose tags - * match a given search expression. Filter blobs searches across all containers within a - * storage account but can be scoped within the expression to a single container. + * @param mapper - The mapper which defines the metadata of the serializable object * - * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. - * The given expression must evaluate to true for a blob to be returned in the results. - * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; - * however, only a subset of the OData filter syntax is supported in the Blob service. - * @param marker - A string value that identifies the portion of - * the list of blobs to be returned with the next listing operation. The - * operation returns the continuationToken value within the response body if the - * listing operation did not return all blobs remaining to be listed - * with the current page. The continuationToken value can be used as the value for - * the marker parameter in a subsequent call to request the next page of list - * items. The marker value is opaque to the client. - * @param options - Options to find blobs by tags. + * @param responseBody - A valid Javascript entity to be deserialized + * + * @param objectName - Name of the deserialized object + * + * @param options - Controls behavior of XML parser and builder. + * + * @returns A valid deserialized Javascript object */ - async findBlobsByTagsSegment(tagFilterSqlExpression, marker, options = {}) { - const { span, updatedOptions } = createSpan("BlobServiceClient-findBlobsByTagsSegment", options); - try { - const response = await this.serviceContext.filterBlobs(Object.assign({ abortSignal: options.abortSignal, where: tagFilterSqlExpression, marker, maxPageSize: options.maxPageSize }, convertTracingToRequestOptionsBase(updatedOptions))); - const wrappedResponse = Object.assign(Object.assign({}, response), { _response: response._response, blobs: response.blobs.map((blob) => { - var _a; - let tagValue = ""; - if (((_a = blob.tags) === null || _a === void 0 ? void 0 : _a.blobTagSet.length) === 1) { - tagValue = blob.tags.blobTagSet[0].value; - } - return Object.assign(Object.assign({}, blob), { tags: toTags(blob.tags), tagValue }); - }) }); - return wrappedResponse; + deserialize(mapper, responseBody, objectName, options = { xml: {} }) { + const updatedOptions = { + xml: { + rootName: options.xml.rootName ?? "", + includeRoot: options.xml.includeRoot ?? false, + xmlCharKey: options.xml.xmlCharKey ?? interfaces_js_1.XML_CHARKEY, + }, + ignoreUnknownProperties: options.ignoreUnknownProperties ?? false, + }; + if (responseBody === undefined || responseBody === null) { + if (this.isXML && mapper.type.name === "Sequence" && !mapper.xmlIsWrapped) { + // Edge case for empty XML non-wrapped lists. xml2js can't distinguish + // between the list being empty versus being missing, + // so let's do the more user-friendly thing and return an empty list. + responseBody = []; + } + // specifically check for undefined as default value can be a falsey value `0, "", false, null` + if (mapper.defaultValue !== undefined) { + responseBody = mapper.defaultValue; + } + return responseBody; } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + let payload; + const mapperType = mapper.type.name; + if (!objectName) { + objectName = mapper.serializedName; } - finally { - span.end(); + if (mapperType.match(/^Composite$/i) !== null) { + payload = deserializeCompositeType(this, mapper, responseBody, objectName, updatedOptions); } - } - /** - * Returns an AsyncIterableIterator for ServiceFindBlobsByTagsSegmentResponse. - * - * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. - * The given expression must evaluate to true for a blob to be returned in the results. - * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; - * however, only a subset of the OData filter syntax is supported in the Blob service. - * @param marker - A string value that identifies the portion of - * the list of blobs to be returned with the next listing operation. The - * operation returns the continuationToken value within the response body if the - * listing operation did not return all blobs remaining to be listed - * with the current page. The continuationToken value can be used as the value for - * the marker parameter in a subsequent call to request the next page of list - * items. The marker value is opaque to the client. - * @param options - Options to find blobs by tags. - */ - findBlobsByTagsSegments(tagFilterSqlExpression, marker, options = {}) { - return tslib.__asyncGenerator(this, arguments, function* findBlobsByTagsSegments_1() { - let response; - if (!!marker || marker === undefined) { - do { - response = yield tslib.__await(this.findBlobsByTagsSegment(tagFilterSqlExpression, marker, options)); - response.blobs = response.blobs || []; - marker = response.continuationToken; - yield yield tslib.__await(response); - } while (marker); + else { + if (this.isXML) { + const xmlCharKey = updatedOptions.xml.xmlCharKey; + /** + * If the mapper specifies this as a non-composite type value but the responseBody contains + * both header ("$" i.e., XML_ATTRKEY) and body ("#" i.e., XML_CHARKEY) properties, + * then just reduce the responseBody value to the body ("#" i.e., XML_CHARKEY) property. + */ + if (responseBody[interfaces_js_1.XML_ATTRKEY] !== undefined && responseBody[xmlCharKey] !== undefined) { + responseBody = responseBody[xmlCharKey]; + } } - }); - } - /** - * Returns an AsyncIterableIterator for blobs. - * - * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. - * The given expression must evaluate to true for a blob to be returned in the results. - * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; - * however, only a subset of the OData filter syntax is supported in the Blob service. - * @param options - Options to findBlobsByTagsItems. - */ - findBlobsByTagsItems(tagFilterSqlExpression, options = {}) { - return tslib.__asyncGenerator(this, arguments, function* findBlobsByTagsItems_1() { - var e_1, _a; - let marker; - try { - for (var _b = tslib.__asyncValues(this.findBlobsByTagsSegments(tagFilterSqlExpression, marker, options)), _c; _c = yield tslib.__await(_b.next()), !_c.done;) { - const segment = _c.value; - yield tslib.__await(yield* tslib.__asyncDelegator(tslib.__asyncValues(segment.blobs))); + if (mapperType.match(/^Number$/i) !== null) { + payload = parseFloat(responseBody); + if (isNaN(payload)) { + payload = responseBody; } } - catch (e_1_1) { e_1 = { error: e_1_1 }; } - finally { - try { - if (_c && !_c.done && (_a = _b.return)) yield tslib.__await(_a.call(_b)); + else if (mapperType.match(/^Boolean$/i) !== null) { + if (responseBody === "true") { + payload = true; + } + else if (responseBody === "false") { + payload = false; + } + else { + payload = responseBody; } - finally { if (e_1) throw e_1.error; } } - }); + else if (mapperType.match(/^(String|Enum|Object|Stream|Uuid|TimeSpan|any)$/i) !== null) { + payload = responseBody; + } + else if (mapperType.match(/^(Date|DateTime|DateTimeRfc1123)$/i) !== null) { + payload = new Date(responseBody); + } + else if (mapperType.match(/^UnixTime$/i) !== null) { + payload = unixTimeToDate(responseBody); + } + else if (mapperType.match(/^ByteArray$/i) !== null) { + payload = base64.decodeString(responseBody); + } + else if (mapperType.match(/^Base64Url$/i) !== null) { + payload = base64UrlToByteArray(responseBody); + } + else if (mapperType.match(/^Sequence$/i) !== null) { + payload = deserializeSequenceType(this, mapper, responseBody, objectName, updatedOptions); + } + else if (mapperType.match(/^Dictionary$/i) !== null) { + payload = deserializeDictionaryType(this, mapper, responseBody, objectName, updatedOptions); + } + } + if (mapper.isConstant) { + payload = mapper.defaultValue; + } + return payload; } - /** - * Returns an async iterable iterator to find all blobs with specified tag - * under the specified account. - * - * .byPage() returns an async iterable iterator to list the blobs in pages. - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/get-blob-service-properties - * - * Example using `for await` syntax: - * - * ```js - * let i = 1; - * for await (const blob of blobServiceClient.findBlobsByTags("tagkey='tagvalue'")) { - * console.log(`Blob ${i++}: ${container.name}`); - * } - * ``` - * - * Example using `iter.next()`: - * - * ```js - * let i = 1; - * const iter = blobServiceClient.findBlobsByTags("tagkey='tagvalue'"); - * let blobItem = await iter.next(); - * while (!blobItem.done) { - * console.log(`Blob ${i++}: ${blobItem.value.name}`); - * blobItem = await iter.next(); - * } - * ``` - * - * Example using `byPage()`: - * - * ```js - * // passing optional maxPageSize in the page settings - * let i = 1; - * for await (const response of blobServiceClient.findBlobsByTags("tagkey='tagvalue'").byPage({ maxPageSize: 20 })) { - * if (response.blobs) { - * for (const blob of response.blobs) { - * console.log(`Blob ${i++}: ${blob.name}`); - * } - * } - * } - * ``` - * - * Example using paging with a marker: - * - * ```js - * let i = 1; - * let iterator = blobServiceClient.findBlobsByTags("tagkey='tagvalue'").byPage({ maxPageSize: 2 }); - * let response = (await iterator.next()).value; - * - * // Prints 2 blob names - * if (response.blobs) { - * for (const blob of response.blobs) { - * console.log(`Blob ${i++}: ${blob.name}`); - * } - * } - * - * // Gets next marker - * let marker = response.continuationToken; - * // Passing next marker as continuationToken - * iterator = blobServiceClient - * .findBlobsByTags("tagkey='tagvalue'") - * .byPage({ continuationToken: marker, maxPageSize: 10 }); - * response = (await iterator.next()).value; - * - * // Prints blob names - * if (response.blobs) { - * for (const blob of response.blobs) { - * console.log(`Blob ${i++}: ${blob.name}`); - * } - * } - * ``` - * - * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. - * The given expression must evaluate to true for a blob to be returned in the results. - * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; - * however, only a subset of the OData filter syntax is supported in the Blob service. - * @param options - Options to find blobs by tags. - */ - findBlobsByTags(tagFilterSqlExpression, options = {}) { - // AsyncIterableIterator to iterate over blobs - const listSegmentOptions = Object.assign({}, options); - const iter = this.findBlobsByTagsItems(tagFilterSqlExpression, listSegmentOptions); - return { - /** - * The next method, part of the iteration protocol - */ - next() { - return iter.next(); - }, - /** - * The connection to the async iterator, part of the iteration protocol - */ - [Symbol.asyncIterator]() { - return this; - }, - /** - * Return an AsyncIterableIterator that works a page at a time - */ - byPage: (settings = {}) => { - return this.findBlobsByTagsSegments(tagFilterSqlExpression, settings.continuationToken, Object.assign({ maxPageSize: settings.maxPageSize }, listSegmentOptions)); - }, - }; +} +/** + * Method that creates and returns a Serializer. + * @param modelMappers - Known models to map + * @param isXML - If XML should be supported + */ +function createSerializer(modelMappers = {}, isXML = false) { + return new SerializerImpl(modelMappers, isXML); +} +function trimEnd(str, ch) { + let len = str.length; + while (len - 1 >= 0 && str[len - 1] === ch) { + --len; } - /** - * Returns an AsyncIterableIterator for ServiceListContainersSegmentResponses - * - * @param marker - A string value that identifies the portion of - * the list of containers to be returned with the next listing operation. The - * operation returns the continuationToken value within the response body if the - * listing operation did not return all containers remaining to be listed - * with the current page. The continuationToken value can be used as the value for - * the marker parameter in a subsequent call to request the next page of list - * items. The marker value is opaque to the client. - * @param options - Options to list containers operation. - */ - listSegments(marker, options = {}) { - return tslib.__asyncGenerator(this, arguments, function* listSegments_1() { - let listContainersSegmentResponse; - if (!!marker || marker === undefined) { - do { - listContainersSegmentResponse = yield tslib.__await(this.listContainersSegment(marker, options)); - listContainersSegmentResponse.containerItems = - listContainersSegmentResponse.containerItems || []; - marker = listContainersSegmentResponse.continuationToken; - yield yield tslib.__await(yield tslib.__await(listContainersSegmentResponse)); - } while (marker); - } - }); + return str.substr(0, len); +} +function bufferToBase64Url(buffer) { + if (!buffer) { + return undefined; } - /** - * Returns an AsyncIterableIterator for Container Items - * - * @param options - Options to list containers operation. - */ - listItems(options = {}) { - return tslib.__asyncGenerator(this, arguments, function* listItems_1() { - var e_2, _a; - let marker; - try { - for (var _b = tslib.__asyncValues(this.listSegments(marker, options)), _c; _c = yield tslib.__await(_b.next()), !_c.done;) { - const segment = _c.value; - yield tslib.__await(yield* tslib.__asyncDelegator(tslib.__asyncValues(segment.containerItems))); - } + if (!(buffer instanceof Uint8Array)) { + throw new Error(`Please provide an input of type Uint8Array for converting to Base64Url.`); + } + // Uint8Array to Base64. + const str = base64.encodeByteArray(buffer); + // Base64 to Base64Url. + return trimEnd(str, "=").replace(/\+/g, "-").replace(/\//g, "_"); +} +function base64UrlToByteArray(str) { + if (!str) { + return undefined; + } + if (str && typeof str.valueOf() !== "string") { + throw new Error("Please provide an input of type string for converting to Uint8Array"); + } + // Base64Url to Base64. + str = str.replace(/-/g, "+").replace(/_/g, "/"); + // Base64 to Uint8Array. + return base64.decodeString(str); +} +function splitSerializeName(prop) { + const classes = []; + let partialclass = ""; + if (prop) { + const subwords = prop.split("."); + for (const item of subwords) { + if (item.charAt(item.length - 1) === "\\") { + partialclass += item.substr(0, item.length - 1) + "."; } - catch (e_2_1) { e_2 = { error: e_2_1 }; } - finally { - try { - if (_c && !_c.done && (_a = _b.return)) yield tslib.__await(_a.call(_b)); - } - finally { if (e_2) throw e_2.error; } + else { + partialclass += item; + classes.push(partialclass); + partialclass = ""; } - }); - } - /** - * Returns an async iterable iterator to list all the containers - * under the specified account. - * - * .byPage() returns an async iterable iterator to list the containers in pages. - * - * Example using `for await` syntax: - * - * ```js - * let i = 1; - * for await (const container of blobServiceClient.listContainers()) { - * console.log(`Container ${i++}: ${container.name}`); - * } - * ``` - * - * Example using `iter.next()`: - * - * ```js - * let i = 1; - * const iter = blobServiceClient.listContainers(); - * let containerItem = await iter.next(); - * while (!containerItem.done) { - * console.log(`Container ${i++}: ${containerItem.value.name}`); - * containerItem = await iter.next(); - * } - * ``` - * - * Example using `byPage()`: - * - * ```js - * // passing optional maxPageSize in the page settings - * let i = 1; - * for await (const response of blobServiceClient.listContainers().byPage({ maxPageSize: 20 })) { - * if (response.containerItems) { - * for (const container of response.containerItems) { - * console.log(`Container ${i++}: ${container.name}`); - * } - * } - * } - * ``` - * - * Example using paging with a marker: - * - * ```js - * let i = 1; - * let iterator = blobServiceClient.listContainers().byPage({ maxPageSize: 2 }); - * let response = (await iterator.next()).value; - * - * // Prints 2 container names - * if (response.containerItems) { - * for (const container of response.containerItems) { - * console.log(`Container ${i++}: ${container.name}`); - * } - * } - * - * // Gets next marker - * let marker = response.continuationToken; - * // Passing next marker as continuationToken - * iterator = blobServiceClient - * .listContainers() - * .byPage({ continuationToken: marker, maxPageSize: 10 }); - * response = (await iterator.next()).value; - * - * // Prints 10 container names - * if (response.containerItems) { - * for (const container of response.containerItems) { - * console.log(`Container ${i++}: ${container.name}`); - * } - * } - * ``` - * - * @param options - Options to list containers. - * @returns An asyncIterableIterator that supports paging. - */ - listContainers(options = {}) { - if (options.prefix === "") { - options.prefix = undefined; - } - const include = []; - if (options.includeDeleted) { - include.push("deleted"); } - if (options.includeMetadata) { - include.push("metadata"); + } + return classes; +} +function dateToUnixTime(d) { + if (!d) { + return undefined; + } + if (typeof d.valueOf() === "string") { + d = new Date(d); + } + return Math.floor(d.getTime() / 1000); +} +function unixTimeToDate(n) { + if (!n) { + return undefined; + } + return new Date(n * 1000); +} +function serializeBasicTypes(typeName, objectName, value) { + if (value !== null && value !== undefined) { + if (typeName.match(/^Number$/i) !== null) { + if (typeof value !== "number") { + throw new Error(`${objectName} with value ${value} must be of type number.`); + } } - if (options.includeSystem) { - include.push("system"); + else if (typeName.match(/^String$/i) !== null) { + if (typeof value.valueOf() !== "string") { + throw new Error(`${objectName} with value "${value}" must be of type string.`); + } } - // AsyncIterableIterator to iterate over containers - const listSegmentOptions = Object.assign(Object.assign({}, options), (include.length > 0 ? { include } : {})); - const iter = this.listItems(listSegmentOptions); - return { - /** - * The next method, part of the iteration protocol - */ - next() { - return iter.next(); - }, - /** - * The connection to the async iterator, part of the iteration protocol - */ - [Symbol.asyncIterator]() { - return this; - }, - /** - * Return an AsyncIterableIterator that works a page at a time - */ - byPage: (settings = {}) => { - return this.listSegments(settings.continuationToken, Object.assign({ maxPageSize: settings.maxPageSize }, listSegmentOptions)); - }, - }; - } - /** - * ONLY AVAILABLE WHEN USING BEARER TOKEN AUTHENTICATION (TokenCredential). - * - * Retrieves a user delegation key for the Blob service. This is only a valid operation when using - * bearer token authentication. - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/get-user-delegation-key - * - * @param startsOn - The start time for the user delegation SAS. Must be within 7 days of the current time - * @param expiresOn - The end time for the user delegation SAS. Must be within 7 days of the current time - */ - async getUserDelegationKey(startsOn, expiresOn, options = {}) { - const { span, updatedOptions } = createSpan("BlobServiceClient-getUserDelegationKey", options); - try { - const response = await this.serviceContext.getUserDelegationKey({ - startsOn: truncatedISO8061Date(startsOn, false), - expiresOn: truncatedISO8061Date(expiresOn, false), - }, Object.assign({ abortSignal: options.abortSignal }, convertTracingToRequestOptionsBase(updatedOptions))); - const userDelegationKey = { - signedObjectId: response.signedObjectId, - signedTenantId: response.signedTenantId, - signedStartsOn: new Date(response.signedStartsOn), - signedExpiresOn: new Date(response.signedExpiresOn), - signedService: response.signedService, - signedVersion: response.signedVersion, - value: response.value, - }; - const res = Object.assign({ _response: response._response, requestId: response.requestId, clientRequestId: response.clientRequestId, version: response.version, date: response.date, errorCode: response.errorCode }, userDelegationKey); - return res; + else if (typeName.match(/^Uuid$/i) !== null) { + if (!(typeof value.valueOf() === "string" && (0, utils_js_1.isValidUuid)(value))) { + throw new Error(`${objectName} with value "${value}" must be of type string and a valid uuid.`); + } } - catch (e) { - span.setStatus({ - code: coreTracing.SpanStatusCode.ERROR, - message: e.message, - }); - throw e; + else if (typeName.match(/^Boolean$/i) !== null) { + if (typeof value !== "boolean") { + throw new Error(`${objectName} with value ${value} must be of type boolean.`); + } } - finally { - span.end(); + else if (typeName.match(/^Stream$/i) !== null) { + const objectType = typeof value; + if (objectType !== "string" && + typeof value.pipe !== "function" && // NodeJS.ReadableStream + typeof value.tee !== "function" && // browser ReadableStream + !(value instanceof ArrayBuffer) && + !ArrayBuffer.isView(value) && + // File objects count as a type of Blob, so we want to use instanceof explicitly + !((typeof Blob === "function" || typeof Blob === "object") && value instanceof Blob) && + objectType !== "function") { + throw new Error(`${objectName} must be a string, Blob, ArrayBuffer, ArrayBufferView, ReadableStream, or () => ReadableStream.`); + } } } - /** - * Creates a BlobBatchClient object to conduct batch operations. - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/blob-batch - * - * @returns A new BlobBatchClient object for this service. - */ - getBlobBatchClient() { - return new BlobBatchClient(this.url, this.pipeline); + return value; +} +function serializeEnumType(objectName, allowedValues, value) { + if (!allowedValues) { + throw new Error(`Please provide a set of allowedValues to validate ${objectName} as an Enum Type.`); } - /** - * Only available for BlobServiceClient constructed with a shared key credential. - * - * Generates a Blob account Shared Access Signature (SAS) URI based on the client properties - * and parameters passed in. The SAS is signed by the shared key credential of the client. - * - * @see https://docs.microsoft.com/en-us/rest/api/storageservices/create-account-sas - * - * @param expiresOn - Optional. The time at which the shared access signature becomes invalid. Default to an hour later if not provided. - * @param permissions - Specifies the list of permissions to be associated with the SAS. - * @param resourceTypes - Specifies the resource types associated with the shared access signature. - * @param options - Optional parameters. - * @returns An account SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token. - */ - generateAccountSasUrl(expiresOn, permissions = AccountSASPermissions.parse("r"), resourceTypes = "sco", options = {}) { - if (!(this.credential instanceof StorageSharedKeyCredential)) { - throw RangeError("Can only generate the account SAS when the client is initialized with a shared key credential"); + const isPresent = allowedValues.some((item) => { + if (typeof item.valueOf() === "string") { + return item.toLowerCase() === value.toLowerCase(); } - if (expiresOn === undefined) { - const now = new Date(); - expiresOn = new Date(now.getTime() + 3600 * 1000); + return item === value; + }); + if (!isPresent) { + throw new Error(`${value} is not a valid value for ${objectName}. The valid values are: ${JSON.stringify(allowedValues)}.`); + } + return value; +} +function serializeByteArrayType(objectName, value) { + if (value !== undefined && value !== null) { + if (!(value instanceof Uint8Array)) { + throw new Error(`${objectName} must be of type Uint8Array.`); } - const sas = generateAccountSASQueryParameters(Object.assign({ permissions, - expiresOn, - resourceTypes, services: AccountSASServices.parse("b").toString() }, options), this.credential).toString(); - return appendToURLQuery(this.url, sas); + value = base64.encodeByteArray(value); } + return value; } - -Object.defineProperty(exports, "BaseRequestPolicy", ({ - enumerable: true, - get: function () { return coreHttp.BaseRequestPolicy; } -})); -Object.defineProperty(exports, "HttpHeaders", ({ - enumerable: true, - get: function () { return coreHttp.HttpHeaders; } -})); -Object.defineProperty(exports, "RequestPolicyOptions", ({ - enumerable: true, - get: function () { return coreHttp.RequestPolicyOptions; } -})); -Object.defineProperty(exports, "RestError", ({ - enumerable: true, - get: function () { return coreHttp.RestError; } -})); -Object.defineProperty(exports, "WebResource", ({ - enumerable: true, - get: function () { return coreHttp.WebResource; } -})); -Object.defineProperty(exports, "deserializationPolicy", ({ - enumerable: true, - get: function () { return coreHttp.deserializationPolicy; } -})); -exports.AccountSASPermissions = AccountSASPermissions; -exports.AccountSASResourceTypes = AccountSASResourceTypes; -exports.AccountSASServices = AccountSASServices; -exports.AnonymousCredential = AnonymousCredential; -exports.AnonymousCredentialPolicy = AnonymousCredentialPolicy; -exports.AppendBlobClient = AppendBlobClient; -exports.BlobBatch = BlobBatch; -exports.BlobBatchClient = BlobBatchClient; -exports.BlobClient = BlobClient; -exports.BlobLeaseClient = BlobLeaseClient; -exports.BlobSASPermissions = BlobSASPermissions; -exports.BlobServiceClient = BlobServiceClient; -exports.BlockBlobClient = BlockBlobClient; -exports.ContainerClient = ContainerClient; -exports.ContainerSASPermissions = ContainerSASPermissions; -exports.Credential = Credential; -exports.CredentialPolicy = CredentialPolicy; -exports.PageBlobClient = PageBlobClient; -exports.Pipeline = Pipeline; -exports.SASQueryParameters = SASQueryParameters; -exports.StorageBrowserPolicy = StorageBrowserPolicy; -exports.StorageBrowserPolicyFactory = StorageBrowserPolicyFactory; -exports.StorageOAuthScopes = StorageOAuthScopes; -exports.StorageRetryPolicy = StorageRetryPolicy; -exports.StorageRetryPolicyFactory = StorageRetryPolicyFactory; -exports.StorageSharedKeyCredential = StorageSharedKeyCredential; -exports.StorageSharedKeyCredentialPolicy = StorageSharedKeyCredentialPolicy; -exports.generateAccountSASQueryParameters = generateAccountSASQueryParameters; -exports.generateBlobSASQueryParameters = generateBlobSASQueryParameters; -exports.isPipelineLike = isPipelineLike; -exports.logger = logger; -exports.newPipeline = newPipeline; -//# sourceMappingURL=index.js.map - - -/***/ }), - -/***/ 679: -/***/ ((module) => { - -/*! ***************************************************************************** -Copyright (c) Microsoft Corporation. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. -***************************************************************************** */ -/* global global, define, System, Reflect, Promise */ -var __extends; -var __assign; -var __rest; -var __decorate; -var __param; -var __metadata; -var __awaiter; -var __generator; -var __exportStar; -var __values; -var __read; -var __spread; -var __spreadArrays; -var __spreadArray; -var __await; -var __asyncGenerator; -var __asyncDelegator; -var __asyncValues; -var __makeTemplateObject; -var __importStar; -var __importDefault; -var __classPrivateFieldGet; -var __classPrivateFieldSet; -var __createBinding; -(function (factory) { - var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {}; - if (typeof define === "function" && define.amd) { - define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); }); - } - else if ( true && typeof module.exports === "object") { - factory(createExporter(root, createExporter(module.exports))); - } - else { - factory(createExporter(root)); - } - function createExporter(exports, previous) { - if (exports !== root) { - if (typeof Object.create === "function") { - Object.defineProperty(exports, "__esModule", { value: true }); - } - else { - exports.__esModule = true; - } - } - return function (id, v) { return exports[id] = previous ? previous(id, v) : v; }; - } -}) -(function (exporter) { - var extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - - __extends = function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); - }; - - __assign = Object.assign || function (t) { - for (var s, i = 1, n = arguments.length; i < n; i++) { - s = arguments[i]; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; - } - return t; - }; - - __rest = function (s, e) { - var t = {}; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) - t[p] = s[p]; - if (s != null && typeof Object.getOwnPropertySymbols === "function") - for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { - if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) - t[p[i]] = s[p[i]]; - } - return t; - }; - - __decorate = function (decorators, target, key, desc) { - var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; - if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); - else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; - return c > 3 && r && Object.defineProperty(target, key, r), r; - }; - - __param = function (paramIndex, decorator) { - return function (target, key) { decorator(target, key, paramIndex); } - }; - - __metadata = function (metadataKey, metadataValue) { - if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue); - }; - - __awaiter = function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); - }; - - __generator = function (thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; - } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; - } - }; - - __exportStar = function(m, o) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p); - }; - - __createBinding = Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); - }) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; - }); - - __values = function (o) { - var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; - if (m) return m.call(o); - if (o && typeof o.length === "number") return { - next: function () { - if (o && i >= o.length) o = void 0; - return { value: o && o[i++], done: !o }; - } - }; - throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); - }; - - __read = function (o, n) { - var m = typeof Symbol === "function" && o[Symbol.iterator]; - if (!m) return o; - var i = m.call(o), r, ar = [], e; - try { - while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); - } - catch (error) { e = { error: error }; } - finally { - try { - if (r && !r.done && (m = i["return"])) m.call(i); - } - finally { if (e) throw e.error; } - } - return ar; - }; - - /** @deprecated */ - __spread = function () { - for (var ar = [], i = 0; i < arguments.length; i++) - ar = ar.concat(__read(arguments[i])); - return ar; - }; - - /** @deprecated */ - __spreadArrays = function () { - for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; - for (var r = Array(s), k = 0, i = 0; i < il; i++) - for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) - r[k] = a[j]; - return r; - }; - - __spreadArray = function (to, from, pack) { - if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { - if (ar || !(i in from)) { - if (!ar) ar = Array.prototype.slice.call(from, 0, i); - ar[i] = from[i]; - } - } - return to.concat(ar || Array.prototype.slice.call(from)); - }; - - __await = function (v) { - return this instanceof __await ? (this.v = v, this) : new __await(v); - }; - - __asyncGenerator = function (thisArg, _arguments, generator) { - if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); - var g = generator.apply(thisArg, _arguments || []), i, q = []; - return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i; - function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } - function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } - function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } - function fulfill(value) { resume("next", value); } - function reject(value) { resume("throw", value); } - function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } - }; - - __asyncDelegator = function (o) { - var i, p; - return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i; - function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; } - }; - - __asyncValues = function (o) { - if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); - var m = o[Symbol.asyncIterator], i; - return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i); - function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } - function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } - }; - - __makeTemplateObject = function (cooked, raw) { - if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; } - return cooked; - }; - - var __setModuleDefault = Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); - }) : function(o, v) { - o["default"] = v; - }; - - __importStar = function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; - }; - - __importDefault = function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; - }; - - __classPrivateFieldGet = function (receiver, state, kind, f) { - if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); - if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); - return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); - }; - - __classPrivateFieldSet = function (receiver, state, value, kind, f) { - if (kind === "m") throw new TypeError("Private method is not writable"); - if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); - if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); - return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value; - }; - - exporter("__extends", __extends); - exporter("__assign", __assign); - exporter("__rest", __rest); - exporter("__decorate", __decorate); - exporter("__param", __param); - exporter("__metadata", __metadata); - exporter("__awaiter", __awaiter); - exporter("__generator", __generator); - exporter("__exportStar", __exportStar); - exporter("__createBinding", __createBinding); - exporter("__values", __values); - exporter("__read", __read); - exporter("__spread", __spread); - exporter("__spreadArrays", __spreadArrays); - exporter("__spreadArray", __spreadArray); - exporter("__await", __await); - exporter("__asyncGenerator", __asyncGenerator); - exporter("__asyncDelegator", __asyncDelegator); - exporter("__asyncValues", __asyncValues); - exporter("__makeTemplateObject", __makeTemplateObject); - exporter("__importStar", __importStar); - exporter("__importDefault", __importDefault); - exporter("__classPrivateFieldGet", __classPrivateFieldGet); - exporter("__classPrivateFieldSet", __classPrivateFieldSet); -}); - - -/***/ }), - -/***/ 7171: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -var __spreadArray = (this && this.__spreadArray) || function (to, from) { - for (var i = 0, il = from.length, j = to.length; i < il; i++, j++) - to[j] = from[i]; - return to; -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.ContextAPI = void 0; -var NoopContextManager_1 = __nccwpck_require__(4118); -var global_utils_1 = __nccwpck_require__(5135); -var diag_1 = __nccwpck_require__(1877); -var API_NAME = 'context'; -var NOOP_CONTEXT_MANAGER = new NoopContextManager_1.NoopContextManager(); -/** - * Singleton object which represents the entry point to the OpenTelemetry Context API - */ -var ContextAPI = /** @class */ (function () { - /** Empty private constructor prevents end users from constructing a new instance of the API */ - function ContextAPI() { +function serializeBase64UrlType(objectName, value) { + if (value !== undefined && value !== null) { + if (!(value instanceof Uint8Array)) { + throw new Error(`${objectName} must be of type Uint8Array.`); + } + value = bufferToBase64Url(value); } - /** Get the singleton instance of the Context API */ - ContextAPI.getInstance = function () { - if (!this._instance) { - this._instance = new ContextAPI(); + return value; +} +function serializeDateTypes(typeName, value, objectName) { + if (value !== undefined && value !== null) { + if (typeName.match(/^Date$/i) !== null) { + if (!(value instanceof Date || + (typeof value.valueOf() === "string" && !isNaN(Date.parse(value))))) { + throw new Error(`${objectName} must be an instanceof Date or a string in ISO8601 format.`); + } + value = + value instanceof Date + ? value.toISOString().substring(0, 10) + : new Date(value).toISOString().substring(0, 10); } - return this._instance; - }; - /** - * Set the current context manager. - * - * @returns true if the context manager was successfully registered, else false - */ - ContextAPI.prototype.setGlobalContextManager = function (contextManager) { - return global_utils_1.registerGlobal(API_NAME, contextManager, diag_1.DiagAPI.instance()); - }; - /** - * Get the currently active context - */ - ContextAPI.prototype.active = function () { - return this._getContextManager().active(); - }; - /** - * Execute a function with an active context - * - * @param context context to be active during function execution - * @param fn function to execute in a context - * @param thisArg optional receiver to be used for calling fn - * @param args optional arguments forwarded to fn - */ - ContextAPI.prototype.with = function (context, fn, thisArg) { - var _a; - var args = []; - for (var _i = 3; _i < arguments.length; _i++) { - args[_i - 3] = arguments[_i]; + else if (typeName.match(/^DateTime$/i) !== null) { + if (!(value instanceof Date || + (typeof value.valueOf() === "string" && !isNaN(Date.parse(value))))) { + throw new Error(`${objectName} must be an instanceof Date or a string in ISO8601 format.`); + } + value = value instanceof Date ? value.toISOString() : new Date(value).toISOString(); } - return (_a = this._getContextManager()).with.apply(_a, __spreadArray([context, fn, thisArg], args)); - }; - /** - * Bind a context to a target function or event emitter - * - * @param context context to bind to the event emitter or function. Defaults to the currently active context - * @param target function or event emitter to bind - */ - ContextAPI.prototype.bind = function (context, target) { - return this._getContextManager().bind(context, target); - }; - ContextAPI.prototype._getContextManager = function () { - return global_utils_1.getGlobal(API_NAME) || NOOP_CONTEXT_MANAGER; - }; - /** Disable and remove the global context manager */ - ContextAPI.prototype.disable = function () { - this._getContextManager().disable(); - global_utils_1.unregisterGlobal(API_NAME, diag_1.DiagAPI.instance()); - }; - return ContextAPI; -}()); -exports.ContextAPI = ContextAPI; -//# sourceMappingURL=context.js.map - -/***/ }), - -/***/ 1877: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.DiagAPI = void 0; -var ComponentLogger_1 = __nccwpck_require__(7978); -var logLevelLogger_1 = __nccwpck_require__(9639); -var types_1 = __nccwpck_require__(8077); -var global_utils_1 = __nccwpck_require__(5135); -var API_NAME = 'diag'; -/** - * Singleton object which represents the entry point to the OpenTelemetry internal - * diagnostic API - */ -var DiagAPI = /** @class */ (function () { - /** - * Private internal constructor - * @private - */ - function DiagAPI() { - function _logProxy(funcName) { - return function () { - var args = []; - for (var _i = 0; _i < arguments.length; _i++) { - args[_i] = arguments[_i]; - } - var logger = global_utils_1.getGlobal('diag'); - // shortcut if logger not set - if (!logger) - return; - return logger[funcName].apply(logger, args); - }; + else if (typeName.match(/^DateTimeRfc1123$/i) !== null) { + if (!(value instanceof Date || + (typeof value.valueOf() === "string" && !isNaN(Date.parse(value))))) { + throw new Error(`${objectName} must be an instanceof Date or a string in RFC-1123 format.`); + } + value = value instanceof Date ? value.toUTCString() : new Date(value).toUTCString(); } - // Using self local variable for minification purposes as 'this' cannot be minified - var self = this; - // DiagAPI specific functions - self.setLogger = function (logger, logLevel) { - var _a, _b; - if (logLevel === void 0) { logLevel = types_1.DiagLogLevel.INFO; } - if (logger === self) { - // There isn't much we can do here. - // Logging to the console might break the user application. - // Try to log to self. If a logger was previously registered it will receive the log. - var err = new Error('Cannot use diag as the logger for itself. Please use a DiagLogger implementation like ConsoleDiagLogger or a custom implementation'); - self.error((_a = err.stack) !== null && _a !== void 0 ? _a : err.message); - return false; + else if (typeName.match(/^UnixTime$/i) !== null) { + if (!(value instanceof Date || + (typeof value.valueOf() === "string" && !isNaN(Date.parse(value))))) { + throw new Error(`${objectName} must be an instanceof Date or a string in RFC-1123/ISO8601 format ` + + `for it to be serialized in UnixTime/Epoch format.`); } - var oldLogger = global_utils_1.getGlobal('diag'); - var newLogger = logLevelLogger_1.createLogLevelDiagLogger(logLevel, logger); - // There already is an logger registered. We'll let it know before overwriting it. - if (oldLogger) { - var stack = (_b = new Error().stack) !== null && _b !== void 0 ? _b : ''; - oldLogger.warn("Current logger will be overwritten from " + stack); - newLogger.warn("Current logger will overwrite one already registered from " + stack); + value = dateToUnixTime(value); + } + else if (typeName.match(/^TimeSpan$/i) !== null) { + if (!(0, utils_js_1.isDuration)(value)) { + throw new Error(`${objectName} must be a string in ISO 8601 format. Instead was "${value}".`); } - return global_utils_1.registerGlobal('diag', newLogger, self, true); - }; - self.disable = function () { - global_utils_1.unregisterGlobal(API_NAME, self); - }; - self.createComponentLogger = function (options) { - return new ComponentLogger_1.DiagComponentLogger(options); - }; - self.verbose = _logProxy('verbose'); - self.debug = _logProxy('debug'); - self.info = _logProxy('info'); - self.warn = _logProxy('warn'); - self.error = _logProxy('error'); - } - /** Get the singleton instance of the DiagAPI API */ - DiagAPI.instance = function () { - if (!this._instance) { - this._instance = new DiagAPI(); - } - return this._instance; - }; - return DiagAPI; -}()); -exports.DiagAPI = DiagAPI; -//# sourceMappingURL=diag.js.map - -/***/ }), - -/***/ 9909: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.PropagationAPI = void 0; -var global_utils_1 = __nccwpck_require__(5135); -var NoopTextMapPropagator_1 = __nccwpck_require__(2368); -var TextMapPropagator_1 = __nccwpck_require__(865); -var context_helpers_1 = __nccwpck_require__(7682); -var utils_1 = __nccwpck_require__(8136); -var diag_1 = __nccwpck_require__(1877); -var API_NAME = 'propagation'; -var NOOP_TEXT_MAP_PROPAGATOR = new NoopTextMapPropagator_1.NoopTextMapPropagator(); -/** - * Singleton object which represents the entry point to the OpenTelemetry Propagation API - */ -var PropagationAPI = /** @class */ (function () { - /** Empty private constructor prevents end users from constructing a new instance of the API */ - function PropagationAPI() { - this.createBaggage = utils_1.createBaggage; - this.getBaggage = context_helpers_1.getBaggage; - this.setBaggage = context_helpers_1.setBaggage; - this.deleteBaggage = context_helpers_1.deleteBaggage; - } - /** Get the singleton instance of the Propagator API */ - PropagationAPI.getInstance = function () { - if (!this._instance) { - this._instance = new PropagationAPI(); - } - return this._instance; - }; - /** - * Set the current propagator. - * - * @returns true if the propagator was successfully registered, else false - */ - PropagationAPI.prototype.setGlobalPropagator = function (propagator) { - return global_utils_1.registerGlobal(API_NAME, propagator, diag_1.DiagAPI.instance()); - }; - /** - * Inject context into a carrier to be propagated inter-process - * - * @param context Context carrying tracing data to inject - * @param carrier carrier to inject context into - * @param setter Function used to set values on the carrier - */ - PropagationAPI.prototype.inject = function (context, carrier, setter) { - if (setter === void 0) { setter = TextMapPropagator_1.defaultTextMapSetter; } - return this._getGlobalPropagator().inject(context, carrier, setter); - }; - /** - * Extract context from a carrier - * - * @param context Context which the newly created context will inherit from - * @param carrier Carrier to extract context from - * @param getter Function used to extract keys from a carrier - */ - PropagationAPI.prototype.extract = function (context, carrier, getter) { - if (getter === void 0) { getter = TextMapPropagator_1.defaultTextMapGetter; } - return this._getGlobalPropagator().extract(context, carrier, getter); - }; - /** - * Return a list of all fields which may be used by the propagator. - */ - PropagationAPI.prototype.fields = function () { - return this._getGlobalPropagator().fields(); - }; - /** Remove the global propagator */ - PropagationAPI.prototype.disable = function () { - global_utils_1.unregisterGlobal(API_NAME, diag_1.DiagAPI.instance()); - }; - PropagationAPI.prototype._getGlobalPropagator = function () { - return global_utils_1.getGlobal(API_NAME) || NOOP_TEXT_MAP_PROPAGATOR; - }; - return PropagationAPI; -}()); -exports.PropagationAPI = PropagationAPI; -//# sourceMappingURL=propagation.js.map - -/***/ }), - -/***/ 1539: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.TraceAPI = void 0; -var global_utils_1 = __nccwpck_require__(5135); -var ProxyTracerProvider_1 = __nccwpck_require__(2285); -var spancontext_utils_1 = __nccwpck_require__(9745); -var context_utils_1 = __nccwpck_require__(3326); -var diag_1 = __nccwpck_require__(1877); -var API_NAME = 'trace'; -/** - * Singleton object which represents the entry point to the OpenTelemetry Tracing API - */ -var TraceAPI = /** @class */ (function () { - /** Empty private constructor prevents end users from constructing a new instance of the API */ - function TraceAPI() { - this._proxyTracerProvider = new ProxyTracerProvider_1.ProxyTracerProvider(); - this.wrapSpanContext = spancontext_utils_1.wrapSpanContext; - this.isSpanContextValid = spancontext_utils_1.isSpanContextValid; - this.deleteSpan = context_utils_1.deleteSpan; - this.getSpan = context_utils_1.getSpan; - this.getSpanContext = context_utils_1.getSpanContext; - this.setSpan = context_utils_1.setSpan; - this.setSpanContext = context_utils_1.setSpanContext; - } - /** Get the singleton instance of the Trace API */ - TraceAPI.getInstance = function () { - if (!this._instance) { - this._instance = new TraceAPI(); - } - return this._instance; - }; - /** - * Set the current global tracer. - * - * @returns true if the tracer provider was successfully registered, else false - */ - TraceAPI.prototype.setGlobalTracerProvider = function (provider) { - var success = global_utils_1.registerGlobal(API_NAME, this._proxyTracerProvider, diag_1.DiagAPI.instance()); - if (success) { - this._proxyTracerProvider.setDelegate(provider); } - return success; - }; - /** - * Returns the global tracer provider. - */ - TraceAPI.prototype.getTracerProvider = function () { - return global_utils_1.getGlobal(API_NAME) || this._proxyTracerProvider; - }; - /** - * Returns a tracer from the global tracer provider. - */ - TraceAPI.prototype.getTracer = function (name, version) { - return this.getTracerProvider().getTracer(name, version); - }; - /** Remove the global tracer provider */ - TraceAPI.prototype.disable = function () { - global_utils_1.unregisterGlobal(API_NAME, diag_1.DiagAPI.instance()); - this._proxyTracerProvider = new ProxyTracerProvider_1.ProxyTracerProvider(); - }; - return TraceAPI; -}()); -exports.TraceAPI = TraceAPI; -//# sourceMappingURL=trace.js.map - -/***/ }), - -/***/ 7682: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.deleteBaggage = exports.setBaggage = exports.getBaggage = void 0; -var context_1 = __nccwpck_require__(8242); -/** - * Baggage key - */ -var BAGGAGE_KEY = context_1.createContextKey('OpenTelemetry Baggage Key'); -/** - * Retrieve the current baggage from the given context - * - * @param {Context} Context that manage all context values - * @returns {Baggage} Extracted baggage from the context - */ -function getBaggage(context) { - return context.getValue(BAGGAGE_KEY) || undefined; -} -exports.getBaggage = getBaggage; -/** - * Store a baggage in the given context - * - * @param {Context} Context that manage all context values - * @param {Baggage} baggage that will be set in the actual context - */ -function setBaggage(context, baggage) { - return context.setValue(BAGGAGE_KEY, baggage); -} -exports.setBaggage = setBaggage; -/** - * Delete the baggage stored in the given context - * - * @param {Context} Context that manage all context values - */ -function deleteBaggage(context) { - return context.deleteValue(BAGGAGE_KEY); + } + return value; } -exports.deleteBaggage = deleteBaggage; -//# sourceMappingURL=context-helpers.js.map - -/***/ }), - -/***/ 4811: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.BaggageImpl = void 0; -var BaggageImpl = /** @class */ (function () { - function BaggageImpl(entries) { - this._entries = entries ? new Map(entries) : new Map(); - } - BaggageImpl.prototype.getEntry = function (key) { - var entry = this._entries.get(key); - if (!entry) { - return undefined; - } - return Object.assign({}, entry); - }; - BaggageImpl.prototype.getAllEntries = function () { - return Array.from(this._entries.entries()).map(function (_a) { - var k = _a[0], v = _a[1]; - return [k, v]; - }); - }; - BaggageImpl.prototype.setEntry = function (key, entry) { - var newBaggage = new BaggageImpl(this._entries); - newBaggage._entries.set(key, entry); - return newBaggage; - }; - BaggageImpl.prototype.removeEntry = function (key) { - var newBaggage = new BaggageImpl(this._entries); - newBaggage._entries.delete(key); - return newBaggage; - }; - BaggageImpl.prototype.removeEntries = function () { - var keys = []; - for (var _i = 0; _i < arguments.length; _i++) { - keys[_i] = arguments[_i]; +function serializeSequenceType(serializer, mapper, object, objectName, isXml, options) { + if (!Array.isArray(object)) { + throw new Error(`${objectName} must be of type Array.`); + } + let elementType = mapper.type.element; + if (!elementType || typeof elementType !== "object") { + throw new Error(`element" metadata for an Array must be defined in the ` + + `mapper and it must of type "object" in ${objectName}.`); + } + // Quirk: Composite mappers referenced by `element` might + // not have *all* properties declared (like uberParent), + // so let's try to look up the full definition by name. + if (elementType.type.name === "Composite" && elementType.type.className) { + elementType = serializer.modelMappers[elementType.type.className] ?? elementType; + } + const tempArray = []; + for (let i = 0; i < object.length; i++) { + const serializedValue = serializer.serialize(elementType, object[i], objectName, options); + if (isXml && elementType.xmlNamespace) { + const xmlnsKey = elementType.xmlNamespacePrefix + ? `xmlns:${elementType.xmlNamespacePrefix}` + : "xmlns"; + if (elementType.type.name === "Composite") { + tempArray[i] = { ...serializedValue }; + tempArray[i][interfaces_js_1.XML_ATTRKEY] = { [xmlnsKey]: elementType.xmlNamespace }; + } + else { + tempArray[i] = {}; + tempArray[i][options.xml.xmlCharKey] = serializedValue; + tempArray[i][interfaces_js_1.XML_ATTRKEY] = { [xmlnsKey]: elementType.xmlNamespace }; + } } - var newBaggage = new BaggageImpl(this._entries); - for (var _a = 0, keys_1 = keys; _a < keys_1.length; _a++) { - var key = keys_1[_a]; - newBaggage._entries.delete(key); + else { + tempArray[i] = serializedValue; } - return newBaggage; - }; - BaggageImpl.prototype.clear = function () { - return new BaggageImpl(); - }; - return BaggageImpl; -}()); -exports.BaggageImpl = BaggageImpl; -//# sourceMappingURL=baggage-impl.js.map - -/***/ }), - -/***/ 3542: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.baggageEntryMetadataSymbol = void 0; -/** - * Symbol used to make BaggageEntryMetadata an opaque type - */ -exports.baggageEntryMetadataSymbol = Symbol('BaggageEntryMetadata'); -//# sourceMappingURL=symbol.js.map - -/***/ }), - -/***/ 1508: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -//# sourceMappingURL=types.js.map - -/***/ }), - -/***/ 8136: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.baggageEntryMetadataFromString = exports.createBaggage = void 0; -var diag_1 = __nccwpck_require__(1877); -var baggage_impl_1 = __nccwpck_require__(4811); -var symbol_1 = __nccwpck_require__(3542); -var diag = diag_1.DiagAPI.instance(); -/** - * Create a new Baggage with optional entries - * - * @param entries An array of baggage entries the new baggage should contain - */ -function createBaggage(entries) { - if (entries === void 0) { entries = {}; } - return new baggage_impl_1.BaggageImpl(new Map(Object.entries(entries))); + } + return tempArray; +} +function serializeDictionaryType(serializer, mapper, object, objectName, isXml, options) { + if (typeof object !== "object") { + throw new Error(`${objectName} must be of type object.`); + } + const valueType = mapper.type.value; + if (!valueType || typeof valueType !== "object") { + throw new Error(`"value" metadata for a Dictionary must be defined in the ` + + `mapper and it must of type "object" in ${objectName}.`); + } + const tempDictionary = {}; + for (const key of Object.keys(object)) { + const serializedValue = serializer.serialize(valueType, object[key], objectName, options); + // If the element needs an XML namespace we need to add it within the $ property + tempDictionary[key] = getXmlObjectValue(valueType, serializedValue, isXml, options); + } + // Add the namespace to the root element if needed + if (isXml && mapper.xmlNamespace) { + const xmlnsKey = mapper.xmlNamespacePrefix ? `xmlns:${mapper.xmlNamespacePrefix}` : "xmlns"; + const result = tempDictionary; + result[interfaces_js_1.XML_ATTRKEY] = { [xmlnsKey]: mapper.xmlNamespace }; + return result; + } + return tempDictionary; } -exports.createBaggage = createBaggage; /** - * Create a serializable BaggageEntryMetadata object from a string. - * - * @param str string metadata. Format is currently not defined by the spec and has no special meaning. - * + * Resolves the additionalProperties property from a referenced mapper + * @param serializer - the serializer containing the entire set of mappers + * @param mapper - the composite mapper to resolve + * @param objectName - name of the object being serialized */ -function baggageEntryMetadataFromString(str) { - if (typeof str !== 'string') { - diag.error("Cannot create baggage metadata from unknown type: " + typeof str); - str = ''; +function resolveAdditionalProperties(serializer, mapper, objectName) { + const additionalProperties = mapper.type.additionalProperties; + if (!additionalProperties && mapper.type.className) { + const modelMapper = resolveReferencedMapper(serializer, mapper, objectName); + return modelMapper?.type.additionalProperties; } - return { - __TYPE__: symbol_1.baggageEntryMetadataSymbol, - toString: function () { - return str; - }, - }; + return additionalProperties; } -exports.baggageEntryMetadataFromString = baggageEntryMetadataFromString; -//# sourceMappingURL=utils.js.map - -/***/ }), - -/***/ 4447: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. +/** + * Finds the mapper referenced by className + * @param serializer - the serializer containing the entire set of mappers + * @param mapper - the composite mapper to resolve + * @param objectName - name of the object being serialized */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -//# sourceMappingURL=Exception.js.map - -/***/ }), - -/***/ 2358: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - -Object.defineProperty(exports, "__esModule", ({ value: true })); -//# sourceMappingURL=Time.js.map - -/***/ }), - -/***/ 4118: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -var __spreadArray = (this && this.__spreadArray) || function (to, from) { - for (var i = 0, il = from.length, j = to.length; i < il; i++, j++) - to[j] = from[i]; - return to; -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.NoopContextManager = void 0; -var context_1 = __nccwpck_require__(8242); -var NoopContextManager = /** @class */ (function () { - function NoopContextManager() { +function resolveReferencedMapper(serializer, mapper, objectName) { + const className = mapper.type.className; + if (!className) { + throw new Error(`Class name for model "${objectName}" is not provided in the mapper "${JSON.stringify(mapper, undefined, 2)}".`); } - NoopContextManager.prototype.active = function () { - return context_1.ROOT_CONTEXT; - }; - NoopContextManager.prototype.with = function (_context, fn, thisArg) { - var args = []; - for (var _i = 3; _i < arguments.length; _i++) { - args[_i - 3] = arguments[_i]; - } - return fn.call.apply(fn, __spreadArray([thisArg], args)); - }; - NoopContextManager.prototype.bind = function (_context, target) { - return target; - }; - NoopContextManager.prototype.enable = function () { - return this; - }; - NoopContextManager.prototype.disable = function () { - return this; - }; - return NoopContextManager; -}()); -exports.NoopContextManager = NoopContextManager; -//# sourceMappingURL=NoopContextManager.js.map - -/***/ }), - -/***/ 8242: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.ROOT_CONTEXT = exports.createContextKey = void 0; -/** Get a key to uniquely identify a context value */ -function createContextKey(description) { - // The specification states that for the same input, multiple calls should - // return different keys. Due to the nature of the JS dependency management - // system, this creates problems where multiple versions of some package - // could hold different keys for the same property. - // - // Therefore, we use Symbol.for which returns the same key for the same input. - return Symbol.for(description); + return serializer.modelMappers[className]; } -exports.createContextKey = createContextKey; -var BaseContext = /** @class */ (function () { - /** - * Construct a new context which inherits values from an optional parent context. - * - * @param parentContext a context from which to inherit values - */ - function BaseContext(parentContext) { - // for minification - var self = this; - self._currentContext = parentContext ? new Map(parentContext) : new Map(); - self.getValue = function (key) { return self._currentContext.get(key); }; - self.setValue = function (key, value) { - var context = new BaseContext(self._currentContext); - context._currentContext.set(key, value); - return context; - }; - self.deleteValue = function (key) { - var context = new BaseContext(self._currentContext); - context._currentContext.delete(key); - return context; - }; - } - return BaseContext; -}()); -/** The root context is used as the default parent context when there is no active context */ -exports.ROOT_CONTEXT = new BaseContext(); -//# sourceMappingURL=context.js.map - -/***/ }), - -/***/ 6504: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -//# sourceMappingURL=types.js.map - -/***/ }), - -/***/ 7978: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.DiagComponentLogger = void 0; -var global_utils_1 = __nccwpck_require__(5135); /** - * Component Logger which is meant to be used as part of any component which - * will add automatically additional namespace in front of the log message. - * It will then forward all message to global diag logger - * @example - * const cLogger = diag.createComponentLogger({ namespace: '@opentelemetry/instrumentation-http' }); - * cLogger.debug('test'); - * // @opentelemetry/instrumentation-http test + * Resolves a composite mapper's modelProperties. + * @param serializer - the serializer containing the entire set of mappers + * @param mapper - the composite mapper to resolve */ -var DiagComponentLogger = /** @class */ (function () { - function DiagComponentLogger(props) { - this._namespace = props.namespace || 'DiagComponentLogger'; - } - DiagComponentLogger.prototype.debug = function () { - var args = []; - for (var _i = 0; _i < arguments.length; _i++) { - args[_i] = arguments[_i]; - } - return logProxy('debug', this._namespace, args); - }; - DiagComponentLogger.prototype.error = function () { - var args = []; - for (var _i = 0; _i < arguments.length; _i++) { - args[_i] = arguments[_i]; - } - return logProxy('error', this._namespace, args); - }; - DiagComponentLogger.prototype.info = function () { - var args = []; - for (var _i = 0; _i < arguments.length; _i++) { - args[_i] = arguments[_i]; - } - return logProxy('info', this._namespace, args); - }; - DiagComponentLogger.prototype.warn = function () { - var args = []; - for (var _i = 0; _i < arguments.length; _i++) { - args[_i] = arguments[_i]; +function resolveModelProperties(serializer, mapper, objectName) { + let modelProps = mapper.type.modelProperties; + if (!modelProps) { + const modelMapper = resolveReferencedMapper(serializer, mapper, objectName); + if (!modelMapper) { + throw new Error(`mapper() cannot be null or undefined for model "${mapper.type.className}".`); } - return logProxy('warn', this._namespace, args); - }; - DiagComponentLogger.prototype.verbose = function () { - var args = []; - for (var _i = 0; _i < arguments.length; _i++) { - args[_i] = arguments[_i]; + modelProps = modelMapper?.type.modelProperties; + if (!modelProps) { + throw new Error(`modelProperties cannot be null or undefined in the ` + + `mapper "${JSON.stringify(modelMapper)}" of type "${mapper.type.className}" for object "${objectName}".`); } - return logProxy('verbose', this._namespace, args); - }; - return DiagComponentLogger; -}()); -exports.DiagComponentLogger = DiagComponentLogger; -function logProxy(funcName, namespace, args) { - var logger = global_utils_1.getGlobal('diag'); - // shortcut if logger not set - if (!logger) { - return; } - args.unshift(namespace); - return logger[funcName].apply(logger, args); + return modelProps; } -//# sourceMappingURL=ComponentLogger.js.map - -/***/ }), - -/***/ 3041: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.DiagConsoleLogger = void 0; -var consoleMap = [ - { n: 'error', c: 'error' }, - { n: 'warn', c: 'warn' }, - { n: 'info', c: 'info' }, - { n: 'debug', c: 'debug' }, - { n: 'verbose', c: 'trace' }, -]; -/** - * A simple Immutable Console based diagnostic logger which will output any messages to the Console. - * If you want to limit the amount of logging to a specific level or lower use the - * {@link createLogLevelDiagLogger} - */ -var DiagConsoleLogger = /** @class */ (function () { - function DiagConsoleLogger() { - function _consoleFunc(funcName) { - return function () { - var args = []; - for (var _i = 0; _i < arguments.length; _i++) { - args[_i] = arguments[_i]; +function serializeCompositeType(serializer, mapper, object, objectName, isXml, options) { + if (getPolymorphicDiscriminatorRecursively(serializer, mapper)) { + mapper = getPolymorphicMapper(serializer, mapper, object, "clientName"); + } + if (object !== undefined && object !== null) { + const payload = {}; + const modelProps = resolveModelProperties(serializer, mapper, objectName); + for (const key of Object.keys(modelProps)) { + const propertyMapper = modelProps[key]; + if (propertyMapper.readOnly) { + continue; + } + let propName; + let parentObject = payload; + if (serializer.isXML) { + if (propertyMapper.xmlIsWrapped) { + propName = propertyMapper.xmlName; } - if (console) { - // Some environments only expose the console when the F12 developer console is open - // eslint-disable-next-line no-console - var theFunc = console[funcName]; - if (typeof theFunc !== 'function') { - // Not all environments support all functions - // eslint-disable-next-line no-console - theFunc = console.log; - } - // One last final check - if (typeof theFunc === 'function') { - return theFunc.apply(console, args); + else { + propName = propertyMapper.xmlElementName || propertyMapper.xmlName; + } + } + else { + const paths = splitSerializeName(propertyMapper.serializedName); + propName = paths.pop(); + for (const pathName of paths) { + const childObject = parentObject[pathName]; + if ((childObject === undefined || childObject === null) && + ((object[key] !== undefined && object[key] !== null) || + propertyMapper.defaultValue !== undefined)) { + parentObject[pathName] = {}; } + parentObject = parentObject[pathName]; } - }; - } - for (var i = 0; i < consoleMap.length; i++) { - this[consoleMap[i].n] = _consoleFunc(consoleMap[i].c); - } - } - return DiagConsoleLogger; -}()); -exports.DiagConsoleLogger = DiagConsoleLogger; -//# sourceMappingURL=consoleLogger.js.map - -/***/ }), - -/***/ 1634: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + } + if (parentObject !== undefined && parentObject !== null) { + if (isXml && mapper.xmlNamespace) { + const xmlnsKey = mapper.xmlNamespacePrefix + ? `xmlns:${mapper.xmlNamespacePrefix}` + : "xmlns"; + parentObject[interfaces_js_1.XML_ATTRKEY] = { + ...parentObject[interfaces_js_1.XML_ATTRKEY], + [xmlnsKey]: mapper.xmlNamespace, + }; + } + const propertyObjectName = propertyMapper.serializedName !== "" + ? objectName + "." + propertyMapper.serializedName + : objectName; + let toSerialize = object[key]; + const polymorphicDiscriminator = getPolymorphicDiscriminatorRecursively(serializer, mapper); + if (polymorphicDiscriminator && + polymorphicDiscriminator.clientName === key && + (toSerialize === undefined || toSerialize === null)) { + toSerialize = mapper.serializedName; + } + const serializedValue = serializer.serialize(propertyMapper, toSerialize, propertyObjectName, options); + if (serializedValue !== undefined && propName !== undefined && propName !== null) { + const value = getXmlObjectValue(propertyMapper, serializedValue, isXml, options); + if (isXml && propertyMapper.xmlIsAttribute) { + // XML_ATTRKEY, i.e., $ is the key attributes are kept under in xml2js. + // This keeps things simple while preventing name collision + // with names in user documents. + parentObject[interfaces_js_1.XML_ATTRKEY] = parentObject[interfaces_js_1.XML_ATTRKEY] || {}; + parentObject[interfaces_js_1.XML_ATTRKEY][propName] = serializedValue; + } + else if (isXml && propertyMapper.xmlIsWrapped) { + parentObject[propName] = { [propertyMapper.xmlElementName]: value }; + } + else { + parentObject[propName] = value; + } + } + } + } + const additionalPropertiesMapper = resolveAdditionalProperties(serializer, mapper, objectName); + if (additionalPropertiesMapper) { + const propNames = Object.keys(modelProps); + for (const clientPropName in object) { + const isAdditionalProperty = propNames.every((pn) => pn !== clientPropName); + if (isAdditionalProperty) { + payload[clientPropName] = serializer.serialize(additionalPropertiesMapper, object[clientPropName], objectName + '["' + clientPropName + '"]', options); + } + } + } + return payload; + } + return object; +} +function getXmlObjectValue(propertyMapper, serializedValue, isXml, options) { + if (!isXml || !propertyMapper.xmlNamespace) { + return serializedValue; + } + const xmlnsKey = propertyMapper.xmlNamespacePrefix + ? `xmlns:${propertyMapper.xmlNamespacePrefix}` + : "xmlns"; + const xmlNamespace = { [xmlnsKey]: propertyMapper.xmlNamespace }; + if (["Composite"].includes(propertyMapper.type.name)) { + if (serializedValue[interfaces_js_1.XML_ATTRKEY]) { + return serializedValue; + } + else { + const result = { ...serializedValue }; + result[interfaces_js_1.XML_ATTRKEY] = xmlNamespace; + return result; + } + } + const result = {}; + result[options.xml.xmlCharKey] = serializedValue; + result[interfaces_js_1.XML_ATTRKEY] = xmlNamespace; + return result; +} +function isSpecialXmlProperty(propertyName, options) { + return [interfaces_js_1.XML_ATTRKEY, options.xml.xmlCharKey].includes(propertyName); +} +function deserializeCompositeType(serializer, mapper, responseBody, objectName, options) { + const xmlCharKey = options.xml.xmlCharKey ?? interfaces_js_1.XML_CHARKEY; + if (getPolymorphicDiscriminatorRecursively(serializer, mapper)) { + mapper = getPolymorphicMapper(serializer, mapper, responseBody, "serializedName"); + } + const modelProps = resolveModelProperties(serializer, mapper, objectName); + let instance = {}; + const handledPropertyNames = []; + for (const key of Object.keys(modelProps)) { + const propertyMapper = modelProps[key]; + const paths = splitSerializeName(modelProps[key].serializedName); + handledPropertyNames.push(paths[0]); + const { serializedName, xmlName, xmlElementName } = propertyMapper; + let propertyObjectName = objectName; + if (serializedName !== "" && serializedName !== undefined) { + propertyObjectName = objectName + "." + serializedName; + } + const headerCollectionPrefix = propertyMapper.headerCollectionPrefix; + if (headerCollectionPrefix) { + const dictionary = {}; + for (const headerKey of Object.keys(responseBody)) { + if (headerKey.startsWith(headerCollectionPrefix)) { + dictionary[headerKey.substring(headerCollectionPrefix.length)] = serializer.deserialize(propertyMapper.type.value, responseBody[headerKey], propertyObjectName, options); + } + handledPropertyNames.push(headerKey); + } + instance[key] = dictionary; + } + else if (serializer.isXML) { + if (propertyMapper.xmlIsAttribute && responseBody[interfaces_js_1.XML_ATTRKEY]) { + instance[key] = serializer.deserialize(propertyMapper, responseBody[interfaces_js_1.XML_ATTRKEY][xmlName], propertyObjectName, options); + } + else if (propertyMapper.xmlIsMsText) { + if (responseBody[xmlCharKey] !== undefined) { + instance[key] = responseBody[xmlCharKey]; + } + else if (typeof responseBody === "string") { + // The special case where xml parser parses "content" into JSON of + // `{ name: "content"}` instead of `{ name: { "_": "content" }}` + instance[key] = responseBody; + } + } + else { + const propertyName = xmlElementName || xmlName || serializedName; + if (propertyMapper.xmlIsWrapped) { + /* a list of wrapped by + For the xml example below + + ... + ... + + the responseBody has + { + Cors: { + CorsRule: [{...}, {...}] + } + } + xmlName is "Cors" and xmlElementName is"CorsRule". + */ + const wrapped = responseBody[xmlName]; + const elementList = wrapped?.[xmlElementName] ?? []; + instance[key] = serializer.deserialize(propertyMapper, elementList, propertyObjectName, options); + handledPropertyNames.push(xmlName); + } + else { + const property = responseBody[propertyName]; + instance[key] = serializer.deserialize(propertyMapper, property, propertyObjectName, options); + handledPropertyNames.push(propertyName); + } + } + } + else { + // deserialize the property if it is present in the provided responseBody instance + let propertyInstance; + let res = responseBody; + // traversing the object step by step. + let steps = 0; + for (const item of paths) { + if (!res) + break; + steps++; + res = res[item]; + } + // only accept null when reaching the last position of object otherwise it would be undefined + if (res === null && steps < paths.length) { + res = undefined; + } + propertyInstance = res; + const polymorphicDiscriminator = mapper.type.polymorphicDiscriminator; + // checking that the model property name (key)(ex: "fishtype") and the + // clientName of the polymorphicDiscriminator {metadata} (ex: "fishtype") + // instead of the serializedName of the polymorphicDiscriminator (ex: "fish.type") + // is a better approach. The generator is not consistent with escaping '\.' in the + // serializedName of the property (ex: "fish\.type") that is marked as polymorphic discriminator + // and the serializedName of the metadata polymorphicDiscriminator (ex: "fish.type"). However, + // the clientName transformation of the polymorphicDiscriminator (ex: "fishtype") and + // the transformation of model property name (ex: "fishtype") is done consistently. + // Hence, it is a safer bet to rely on the clientName of the polymorphicDiscriminator. + if (polymorphicDiscriminator && + key === polymorphicDiscriminator.clientName && + (propertyInstance === undefined || propertyInstance === null)) { + propertyInstance = mapper.serializedName; + } + let serializedValue; + // paging + if (Array.isArray(responseBody[key]) && modelProps[key].serializedName === "") { + propertyInstance = responseBody[key]; + const arrayInstance = serializer.deserialize(propertyMapper, propertyInstance, propertyObjectName, options); + // Copy over any properties that have already been added into the instance, where they do + // not exist on the newly de-serialized array + for (const [k, v] of Object.entries(instance)) { + if (!Object.prototype.hasOwnProperty.call(arrayInstance, k)) { + arrayInstance[k] = v; + } + } + instance = arrayInstance; + } + else if (propertyInstance !== undefined || propertyMapper.defaultValue !== undefined) { + serializedValue = serializer.deserialize(propertyMapper, propertyInstance, propertyObjectName, options); + instance[key] = serializedValue; + } + } + } + const additionalPropertiesMapper = mapper.type.additionalProperties; + if (additionalPropertiesMapper) { + const isAdditionalProperty = (responsePropName) => { + for (const clientPropName in modelProps) { + const paths = splitSerializeName(modelProps[clientPropName].serializedName); + if (paths[0] === responsePropName) { + return false; + } + } + return true; + }; + for (const responsePropName in responseBody) { + if (isAdditionalProperty(responsePropName)) { + instance[responsePropName] = serializer.deserialize(additionalPropertiesMapper, responseBody[responsePropName], objectName + '["' + responsePropName + '"]', options); + } + } + } + else if (responseBody && !options.ignoreUnknownProperties) { + for (const key of Object.keys(responseBody)) { + if (instance[key] === undefined && + !handledPropertyNames.includes(key) && + !isSpecialXmlProperty(key, options)) { + instance[key] = responseBody[key]; + } + } + } + return instance; +} +function deserializeDictionaryType(serializer, mapper, responseBody, objectName, options) { + /* jshint validthis: true */ + const value = mapper.type.value; + if (!value || typeof value !== "object") { + throw new Error(`"value" metadata for a Dictionary must be defined in the ` + + `mapper and it must of type "object" in ${objectName}`); + } + if (responseBody) { + const tempDictionary = {}; + for (const key of Object.keys(responseBody)) { + tempDictionary[key] = serializer.deserialize(value, responseBody[key], objectName, options); + } + return tempDictionary; + } + return responseBody; +} +function deserializeSequenceType(serializer, mapper, responseBody, objectName, options) { + let element = mapper.type.element; + if (!element || typeof element !== "object") { + throw new Error(`element" metadata for an Array must be defined in the ` + + `mapper and it must of type "object" in ${objectName}`); + } + if (responseBody) { + if (!Array.isArray(responseBody)) { + // xml2js will interpret a single element array as just the element, so force it to be an array + responseBody = [responseBody]; + } + // Quirk: Composite mappers referenced by `element` might + // not have *all* properties declared (like uberParent), + // so let's try to look up the full definition by name. + if (element.type.name === "Composite" && element.type.className) { + element = serializer.modelMappers[element.type.className] ?? element; + } + const tempArray = []; + for (let i = 0; i < responseBody.length; i++) { + tempArray[i] = serializer.deserialize(element, responseBody[i], `${objectName}[${i}]`, options); + } + return tempArray; + } + return responseBody; +} +function getIndexDiscriminator(discriminators, discriminatorValue, typeName) { + const typeNamesToCheck = [typeName]; + while (typeNamesToCheck.length) { + const currentName = typeNamesToCheck.shift(); + const indexDiscriminator = discriminatorValue === currentName + ? discriminatorValue + : currentName + "." + discriminatorValue; + if (Object.prototype.hasOwnProperty.call(discriminators, indexDiscriminator)) { + return discriminators[indexDiscriminator]; + } + else { + for (const [name, mapper] of Object.entries(discriminators)) { + if (name.startsWith(currentName + ".") && + mapper.type.uberParent === currentName && + mapper.type.className) { + typeNamesToCheck.push(mapper.type.className); + } + } + } + } + return undefined; +} +function getPolymorphicMapper(serializer, mapper, object, polymorphicPropertyName) { + const polymorphicDiscriminator = getPolymorphicDiscriminatorRecursively(serializer, mapper); + if (polymorphicDiscriminator) { + let discriminatorName = polymorphicDiscriminator[polymorphicPropertyName]; + if (discriminatorName) { + // The serializedName might have \\, which we just want to ignore + if (polymorphicPropertyName === "serializedName") { + discriminatorName = discriminatorName.replace(/\\/gi, ""); + } + const discriminatorValue = object[discriminatorName]; + const typeName = mapper.type.uberParent ?? mapper.type.className; + if (typeof discriminatorValue === "string" && typeName) { + const polymorphicMapper = getIndexDiscriminator(serializer.modelMappers.discriminators, discriminatorValue, typeName); + if (polymorphicMapper) { + mapper = polymorphicMapper; + } + } + } + } + return mapper; +} +function getPolymorphicDiscriminatorRecursively(serializer, mapper) { + return (mapper.type.polymorphicDiscriminator || + getPolymorphicDiscriminatorSafely(serializer, mapper.type.uberParent) || + getPolymorphicDiscriminatorSafely(serializer, mapper.type.className)); +} +function getPolymorphicDiscriminatorSafely(serializer, typeName) { + return (typeName && + serializer.modelMappers[typeName] && + serializer.modelMappers[typeName].type.polymorphicDiscriminator); +} +/** + * Known types of Mappers */ -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -__exportStar(__nccwpck_require__(3041), exports); -__exportStar(__nccwpck_require__(8077), exports); -//# sourceMappingURL=index.js.map +exports.MapperTypeNames = { + Base64Url: "Base64Url", + Boolean: "Boolean", + ByteArray: "ByteArray", + Composite: "Composite", + Date: "Date", + DateTime: "DateTime", + DateTimeRfc1123: "DateTimeRfc1123", + Dictionary: "Dictionary", + Enum: "Enum", + Number: "Number", + Object: "Object", + Sequence: "Sequence", + String: "String", + Stream: "Stream", + TimeSpan: "TimeSpan", + UnixTime: "UnixTime", +}; +//# sourceMappingURL=serializer.js.map /***/ }), -/***/ 9639: +/***/ 28927: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.createLogLevelDiagLogger = void 0; -var types_1 = __nccwpck_require__(8077); -function createLogLevelDiagLogger(maxLevel, logger) { - if (maxLevel < types_1.DiagLogLevel.NONE) { - maxLevel = types_1.DiagLogLevel.NONE; +exports.ServiceClient = void 0; +const core_rest_pipeline_1 = __nccwpck_require__(29146); +const pipeline_js_1 = __nccwpck_require__(33924); +const utils_js_1 = __nccwpck_require__(25363); +const httpClientCache_js_1 = __nccwpck_require__(30308); +const operationHelpers_js_1 = __nccwpck_require__(62074); +const urlHelpers_js_1 = __nccwpck_require__(98258); +const interfaceHelpers_js_1 = __nccwpck_require__(41459); +const log_js_1 = __nccwpck_require__(53776); +/** + * Initializes a new instance of the ServiceClient. + */ +class ServiceClient { + /** + * If specified, this is the base URI that requests will be made against for this ServiceClient. + * If it is not specified, then all OperationSpecs must contain a baseUrl property. + */ + _endpoint; + /** + * The default request content type for the service. + * Used if no requestContentType is present on an OperationSpec. + */ + _requestContentType; + /** + * Set to true if the request is sent over HTTP instead of HTTPS + */ + _allowInsecureConnection; + /** + * The HTTP client that will be used to send requests. + */ + _httpClient; + /** + * The pipeline used by this client to make requests + */ + pipeline; + /** + * The ServiceClient constructor + * @param options - The service client options that govern the behavior of the client. + */ + constructor(options = {}) { + this._requestContentType = options.requestContentType; + this._endpoint = options.endpoint ?? options.baseUri; + if (options.baseUri) { + log_js_1.logger.warning("The baseUri option for SDK Clients has been deprecated, please use endpoint instead."); + } + this._allowInsecureConnection = options.allowInsecureConnection; + this._httpClient = options.httpClient || (0, httpClientCache_js_1.getCachedDefaultHttpClient)(); + this.pipeline = options.pipeline || createDefaultPipeline(options); + if (options.additionalPolicies?.length) { + for (const { policy, position } of options.additionalPolicies) { + // Sign happens after Retry and is commonly needed to occur + // before policies that intercept post-retry. + const afterPhase = position === "perRetry" ? "Sign" : undefined; + this.pipeline.addPolicy(policy, { + afterPhase, + }); + } + } } - else if (maxLevel > types_1.DiagLogLevel.ALL) { - maxLevel = types_1.DiagLogLevel.ALL; + /** + * Send the provided httpRequest. + */ + async sendRequest(request) { + return this.pipeline.sendRequest(this._httpClient, request); } - // In case the logger is null or undefined - logger = logger || {}; - function _filterFunc(funcName, theLevel) { - var theFunc = logger[funcName]; - if (typeof theFunc === 'function' && maxLevel >= theLevel) { - return theFunc.bind(logger); + /** + * Send an HTTP request that is populated using the provided OperationSpec. + * @typeParam T - The typed result of the request, based on the OperationSpec. + * @param operationArguments - The arguments that the HTTP request's templated values will be populated from. + * @param operationSpec - The OperationSpec to use to populate the httpRequest. + */ + async sendOperationRequest(operationArguments, operationSpec) { + const endpoint = operationSpec.baseUrl || this._endpoint; + if (!endpoint) { + throw new Error("If operationSpec.baseUrl is not specified, then the ServiceClient must have a endpoint string property that contains the base URL to use."); + } + // Templatized URLs sometimes reference properties on the ServiceClient child class, + // so we have to pass `this` below in order to search these properties if they're + // not part of OperationArguments + const url = (0, urlHelpers_js_1.getRequestUrl)(endpoint, operationSpec, operationArguments, this); + const request = (0, core_rest_pipeline_1.createPipelineRequest)({ + url, + }); + request.method = operationSpec.httpMethod; + const operationInfo = (0, operationHelpers_js_1.getOperationRequestInfo)(request); + operationInfo.operationSpec = operationSpec; + operationInfo.operationArguments = operationArguments; + const contentType = operationSpec.contentType || this._requestContentType; + if (contentType && operationSpec.requestBody) { + request.headers.set("Content-Type", contentType); + } + const options = operationArguments.options; + if (options) { + const requestOptions = options.requestOptions; + if (requestOptions) { + if (requestOptions.timeout) { + request.timeout = requestOptions.timeout; + } + if (requestOptions.onUploadProgress) { + request.onUploadProgress = requestOptions.onUploadProgress; + } + if (requestOptions.onDownloadProgress) { + request.onDownloadProgress = requestOptions.onDownloadProgress; + } + if (requestOptions.shouldDeserialize !== undefined) { + operationInfo.shouldDeserialize = requestOptions.shouldDeserialize; + } + if (requestOptions.allowInsecureConnection) { + request.allowInsecureConnection = true; + } + } + if (options.abortSignal) { + request.abortSignal = options.abortSignal; + } + if (options.tracingOptions) { + request.tracingOptions = options.tracingOptions; + } + } + if (this._allowInsecureConnection) { + request.allowInsecureConnection = true; + } + if (request.streamResponseStatusCodes === undefined) { + request.streamResponseStatusCodes = (0, interfaceHelpers_js_1.getStreamingResponseStatusCodes)(operationSpec); + } + try { + const rawResponse = await this.sendRequest(request); + const flatResponse = (0, utils_js_1.flattenResponse)(rawResponse, operationSpec.responses[rawResponse.status]); + if (options?.onResponse) { + options.onResponse(rawResponse, flatResponse); + } + return flatResponse; + } + catch (error) { + if (typeof error === "object" && error?.response) { + const rawResponse = error.response; + const flatResponse = (0, utils_js_1.flattenResponse)(rawResponse, operationSpec.responses[error.statusCode] || operationSpec.responses["default"]); + error.details = flatResponse; + if (options?.onResponse) { + options.onResponse(rawResponse, flatResponse, error); + } + } + throw error; } - return function () { }; } - return { - error: _filterFunc('error', types_1.DiagLogLevel.ERROR), - warn: _filterFunc('warn', types_1.DiagLogLevel.WARN), - info: _filterFunc('info', types_1.DiagLogLevel.INFO), - debug: _filterFunc('debug', types_1.DiagLogLevel.DEBUG), - verbose: _filterFunc('verbose', types_1.DiagLogLevel.VERBOSE), - }; } -exports.createLogLevelDiagLogger = createLogLevelDiagLogger; -//# sourceMappingURL=logLevelLogger.js.map +exports.ServiceClient = ServiceClient; +function createDefaultPipeline(options) { + const credentialScopes = getCredentialScopes(options); + const credentialOptions = options.credential && credentialScopes + ? { credentialScopes, credential: options.credential } + : undefined; + return (0, pipeline_js_1.createClientPipeline)({ + ...options, + credentialOptions, + }); +} +function getCredentialScopes(options) { + if (options.credentialScopes) { + return options.credentialScopes; + } + if (options.endpoint) { + return `${options.endpoint}/.default`; + } + if (options.baseUri) { + return `${options.baseUri}/.default`; + } + if (options.credential && !options.credentialScopes) { + throw new Error(`When using credentials, the ServiceClientOptions must contain either a endpoint or a credentialScopes. Unable to create a bearerTokenAuthenticationPolicy`); + } + return undefined; +} +//# sourceMappingURL=serviceClient.js.map /***/ }), -/***/ 8077: +/***/ 35429: /***/ ((__unused_webpack_module, exports) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.DiagLogLevel = void 0; +exports.state = void 0; /** - * Defines the available internal logging levels for the diagnostic logger, the numeric values - * of the levels are defined to match the original values from the initial LogLevel to avoid - * compatibility/migration issues for any implementation that assume the numeric ordering. - */ -var DiagLogLevel; -(function (DiagLogLevel) { - /** Diagnostic Logging level setting to disable all logging (except and forced logs) */ - DiagLogLevel[DiagLogLevel["NONE"] = 0] = "NONE"; - /** Identifies an error scenario */ - DiagLogLevel[DiagLogLevel["ERROR"] = 30] = "ERROR"; - /** Identifies a warning scenario */ - DiagLogLevel[DiagLogLevel["WARN"] = 50] = "WARN"; - /** General informational log message */ - DiagLogLevel[DiagLogLevel["INFO"] = 60] = "INFO"; - /** General debug log message */ - DiagLogLevel[DiagLogLevel["DEBUG"] = 70] = "DEBUG"; - /** - * Detailed trace level logging should only be used for development, should only be set - * in a development environment. - */ - DiagLogLevel[DiagLogLevel["VERBOSE"] = 80] = "VERBOSE"; - /** Used to set the logging level to include all logging */ - DiagLogLevel[DiagLogLevel["ALL"] = 9999] = "ALL"; -})(DiagLogLevel = exports.DiagLogLevel || (exports.DiagLogLevel = {})); -//# sourceMappingURL=types.js.map - -/***/ }), - -/***/ 5163: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * Holds the singleton operationRequestMap, to be shared across CJS and ESM imports. */ -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.diag = exports.propagation = exports.trace = exports.context = exports.INVALID_SPAN_CONTEXT = exports.INVALID_TRACEID = exports.INVALID_SPANID = exports.isValidSpanId = exports.isValidTraceId = exports.isSpanContextValid = exports.baggageEntryMetadataFromString = void 0; -__exportStar(__nccwpck_require__(1508), exports); -var utils_1 = __nccwpck_require__(8136); -Object.defineProperty(exports, "baggageEntryMetadataFromString", ({ enumerable: true, get: function () { return utils_1.baggageEntryMetadataFromString; } })); -__exportStar(__nccwpck_require__(4447), exports); -__exportStar(__nccwpck_require__(2358), exports); -__exportStar(__nccwpck_require__(1634), exports); -__exportStar(__nccwpck_require__(865), exports); -__exportStar(__nccwpck_require__(7492), exports); -__exportStar(__nccwpck_require__(4023), exports); -__exportStar(__nccwpck_require__(3503), exports); -__exportStar(__nccwpck_require__(2285), exports); -__exportStar(__nccwpck_require__(9671), exports); -__exportStar(__nccwpck_require__(3209), exports); -__exportStar(__nccwpck_require__(5769), exports); -__exportStar(__nccwpck_require__(1424), exports); -__exportStar(__nccwpck_require__(4416), exports); -__exportStar(__nccwpck_require__(955), exports); -__exportStar(__nccwpck_require__(8845), exports); -__exportStar(__nccwpck_require__(6905), exports); -__exportStar(__nccwpck_require__(8384), exports); -__exportStar(__nccwpck_require__(891), exports); -__exportStar(__nccwpck_require__(3168), exports); -var spancontext_utils_1 = __nccwpck_require__(9745); -Object.defineProperty(exports, "isSpanContextValid", ({ enumerable: true, get: function () { return spancontext_utils_1.isSpanContextValid; } })); -Object.defineProperty(exports, "isValidTraceId", ({ enumerable: true, get: function () { return spancontext_utils_1.isValidTraceId; } })); -Object.defineProperty(exports, "isValidSpanId", ({ enumerable: true, get: function () { return spancontext_utils_1.isValidSpanId; } })); -var invalid_span_constants_1 = __nccwpck_require__(1760); -Object.defineProperty(exports, "INVALID_SPANID", ({ enumerable: true, get: function () { return invalid_span_constants_1.INVALID_SPANID; } })); -Object.defineProperty(exports, "INVALID_TRACEID", ({ enumerable: true, get: function () { return invalid_span_constants_1.INVALID_TRACEID; } })); -Object.defineProperty(exports, "INVALID_SPAN_CONTEXT", ({ enumerable: true, get: function () { return invalid_span_constants_1.INVALID_SPAN_CONTEXT; } })); -__exportStar(__nccwpck_require__(8242), exports); -__exportStar(__nccwpck_require__(6504), exports); -var context_1 = __nccwpck_require__(7171); -/** Entrypoint for context API */ -exports.context = context_1.ContextAPI.getInstance(); -var trace_1 = __nccwpck_require__(1539); -/** Entrypoint for trace API */ -exports.trace = trace_1.TraceAPI.getInstance(); -var propagation_1 = __nccwpck_require__(9909); -/** Entrypoint for propagation API */ -exports.propagation = propagation_1.PropagationAPI.getInstance(); -var diag_1 = __nccwpck_require__(1877); -/** - * Entrypoint for Diag API. - * Defines Diagnostic handler used for internal diagnostic logging operations. - * The default provides a Noop DiagLogger implementation which may be changed via the - * diag.setLogger(logger: DiagLogger) function. - */ -exports.diag = diag_1.DiagAPI.instance(); -exports["default"] = { - trace: exports.trace, - context: exports.context, - propagation: exports.propagation, - diag: exports.diag, +exports.state = { + operationRequestMap: new WeakMap(), }; -//# sourceMappingURL=index.js.map +//# sourceMappingURL=state-cjs.cjs.map /***/ }), -/***/ 5135: +/***/ 98258: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.unregisterGlobal = exports.getGlobal = exports.registerGlobal = void 0; -var platform_1 = __nccwpck_require__(9957); -var version_1 = __nccwpck_require__(8996); -var semver_1 = __nccwpck_require__(1522); -var major = version_1.VERSION.split('.')[0]; -var GLOBAL_OPENTELEMETRY_API_KEY = Symbol.for("opentelemetry.js.api." + major); -var _global = platform_1._globalThis; -function registerGlobal(type, instance, diag, allowOverride) { - var _a; - if (allowOverride === void 0) { allowOverride = false; } - var api = (_global[GLOBAL_OPENTELEMETRY_API_KEY] = (_a = _global[GLOBAL_OPENTELEMETRY_API_KEY]) !== null && _a !== void 0 ? _a : { - version: version_1.VERSION, - }); - if (!allowOverride && api[type]) { - // already registered an API of this type - var err = new Error("@opentelemetry/api: Attempted duplicate registration of API: " + type); - diag.error(err.stack || err.message); - return false; +exports.getRequestUrl = getRequestUrl; +exports.appendQueryParams = appendQueryParams; +const operationHelpers_js_1 = __nccwpck_require__(62074); +const interfaceHelpers_js_1 = __nccwpck_require__(41459); +const CollectionFormatToDelimiterMap = { + CSV: ",", + SSV: " ", + Multi: "Multi", + TSV: "\t", + Pipes: "|", +}; +function getRequestUrl(baseUri, operationSpec, operationArguments, fallbackObject) { + const urlReplacements = calculateUrlReplacements(operationSpec, operationArguments, fallbackObject); + let isAbsolutePath = false; + let requestUrl = replaceAll(baseUri, urlReplacements); + if (operationSpec.path) { + let path = replaceAll(operationSpec.path, urlReplacements); + // QUIRK: sometimes we get a path component like /{nextLink} + // which may be a fully formed URL with a leading /. In that case, we should + // remove the leading / + if (operationSpec.path === "/{nextLink}" && path.startsWith("/")) { + path = path.substring(1); + } + // QUIRK: sometimes we get a path component like {nextLink} + // which may be a fully formed URL. In that case, we should + // ignore the baseUri. + if (isAbsoluteUrl(path)) { + requestUrl = path; + isAbsolutePath = true; + } + else { + requestUrl = appendPath(requestUrl, path); + } } - if (api.version !== version_1.VERSION) { - // All registered APIs must be of the same version exactly - var err = new Error('@opentelemetry/api: All API registration versions must match'); - diag.error(err.stack || err.message); - return false; + const { queryParams, sequenceParams } = calculateQueryParameters(operationSpec, operationArguments, fallbackObject); + /** + * Notice that this call sets the `noOverwrite` parameter to true if the `requestUrl` + * is an absolute path. This ensures that existing query parameter values in `requestUrl` + * do not get overwritten. On the other hand when `requestUrl` is not absolute path, it + * is still being built so there is nothing to overwrite. + */ + requestUrl = appendQueryParams(requestUrl, queryParams, sequenceParams, isAbsolutePath); + return requestUrl; +} +function replaceAll(input, replacements) { + let result = input; + for (const [searchValue, replaceValue] of replacements) { + result = result.split(searchValue).join(replaceValue); } - api[type] = instance; - diag.debug("@opentelemetry/api: Registered a global for " + type + " v" + version_1.VERSION + "."); - return true; + return result; } -exports.registerGlobal = registerGlobal; -function getGlobal(type) { - var _a, _b; - var globalVersion = (_a = _global[GLOBAL_OPENTELEMETRY_API_KEY]) === null || _a === void 0 ? void 0 : _a.version; - if (!globalVersion || !semver_1.isCompatible(globalVersion)) { - return; +function calculateUrlReplacements(operationSpec, operationArguments, fallbackObject) { + const result = new Map(); + if (operationSpec.urlParameters?.length) { + for (const urlParameter of operationSpec.urlParameters) { + let urlParameterValue = (0, operationHelpers_js_1.getOperationArgumentValueFromParameter)(operationArguments, urlParameter, fallbackObject); + const parameterPathString = (0, interfaceHelpers_js_1.getPathStringFromParameter)(urlParameter); + urlParameterValue = operationSpec.serializer.serialize(urlParameter.mapper, urlParameterValue, parameterPathString); + if (!urlParameter.skipEncoding) { + urlParameterValue = encodeURIComponent(urlParameterValue); + } + result.set(`{${urlParameter.mapper.serializedName || parameterPathString}}`, urlParameterValue); + } + } + return result; +} +function isAbsoluteUrl(url) { + return url.includes("://"); +} +function appendPath(url, pathToAppend) { + if (!pathToAppend) { + return url; + } + const parsedUrl = new URL(url); + let newPath = parsedUrl.pathname; + if (!newPath.endsWith("/")) { + newPath = `${newPath}/`; + } + if (pathToAppend.startsWith("/")) { + pathToAppend = pathToAppend.substring(1); + } + const searchStart = pathToAppend.indexOf("?"); + if (searchStart !== -1) { + const path = pathToAppend.substring(0, searchStart); + const search = pathToAppend.substring(searchStart + 1); + newPath = newPath + path; + if (search) { + parsedUrl.search = parsedUrl.search ? `${parsedUrl.search}&${search}` : search; + } + } + else { + newPath = newPath + pathToAppend; + } + parsedUrl.pathname = newPath; + return parsedUrl.toString(); +} +function calculateQueryParameters(operationSpec, operationArguments, fallbackObject) { + const result = new Map(); + const sequenceParams = new Set(); + if (operationSpec.queryParameters?.length) { + for (const queryParameter of operationSpec.queryParameters) { + if (queryParameter.mapper.type.name === "Sequence" && queryParameter.mapper.serializedName) { + sequenceParams.add(queryParameter.mapper.serializedName); + } + let queryParameterValue = (0, operationHelpers_js_1.getOperationArgumentValueFromParameter)(operationArguments, queryParameter, fallbackObject); + if ((queryParameterValue !== undefined && queryParameterValue !== null) || + queryParameter.mapper.required) { + queryParameterValue = operationSpec.serializer.serialize(queryParameter.mapper, queryParameterValue, (0, interfaceHelpers_js_1.getPathStringFromParameter)(queryParameter)); + const delimiter = queryParameter.collectionFormat + ? CollectionFormatToDelimiterMap[queryParameter.collectionFormat] + : ""; + if (Array.isArray(queryParameterValue)) { + // replace null and undefined + queryParameterValue = queryParameterValue.map((item) => { + if (item === null || item === undefined) { + return ""; + } + return item; + }); + } + if (queryParameter.collectionFormat === "Multi" && queryParameterValue.length === 0) { + continue; + } + else if (Array.isArray(queryParameterValue) && + (queryParameter.collectionFormat === "SSV" || queryParameter.collectionFormat === "TSV")) { + queryParameterValue = queryParameterValue.join(delimiter); + } + if (!queryParameter.skipEncoding) { + if (Array.isArray(queryParameterValue)) { + queryParameterValue = queryParameterValue.map((item) => { + return encodeURIComponent(item); + }); + } + else { + queryParameterValue = encodeURIComponent(queryParameterValue); + } + } + // Join pipes and CSV *after* encoding, or the server will be upset. + if (Array.isArray(queryParameterValue) && + (queryParameter.collectionFormat === "CSV" || queryParameter.collectionFormat === "Pipes")) { + queryParameterValue = queryParameterValue.join(delimiter); + } + result.set(queryParameter.mapper.serializedName || (0, interfaceHelpers_js_1.getPathStringFromParameter)(queryParameter), queryParameterValue); + } + } + } + return { + queryParams: result, + sequenceParams, + }; +} +function simpleParseQueryParams(queryString) { + const result = new Map(); + if (!queryString || queryString[0] !== "?") { + return result; + } + // remove the leading ? + queryString = queryString.slice(1); + const pairs = queryString.split("&"); + for (const pair of pairs) { + const [name, value] = pair.split("=", 2); + const existingValue = result.get(name); + if (existingValue) { + if (Array.isArray(existingValue)) { + existingValue.push(value); + } + else { + result.set(name, [existingValue, value]); + } + } + else { + result.set(name, value); + } } - return (_b = _global[GLOBAL_OPENTELEMETRY_API_KEY]) === null || _b === void 0 ? void 0 : _b[type]; + return result; } -exports.getGlobal = getGlobal; -function unregisterGlobal(type, diag) { - diag.debug("@opentelemetry/api: Unregistering a global for " + type + " v" + version_1.VERSION + "."); - var api = _global[GLOBAL_OPENTELEMETRY_API_KEY]; - if (api) { - delete api[type]; +/** @internal */ +function appendQueryParams(url, queryParams, sequenceParams, noOverwrite = false) { + if (queryParams.size === 0) { + return url; + } + const parsedUrl = new URL(url); + // QUIRK: parsedUrl.searchParams will have their name/value pairs decoded, which + // can change their meaning to the server, such as in the case of a SAS signature. + // To avoid accidentally un-encoding a query param, we parse the key/values ourselves + const combinedParams = simpleParseQueryParams(parsedUrl.search); + for (const [name, value] of queryParams) { + const existingValue = combinedParams.get(name); + if (Array.isArray(existingValue)) { + if (Array.isArray(value)) { + existingValue.push(...value); + const valueSet = new Set(existingValue); + combinedParams.set(name, Array.from(valueSet)); + } + else { + existingValue.push(value); + } + } + else if (existingValue) { + if (Array.isArray(value)) { + value.unshift(existingValue); + } + else if (sequenceParams.has(name)) { + combinedParams.set(name, [existingValue, value]); + } + if (!noOverwrite) { + combinedParams.set(name, value); + } + } + else { + combinedParams.set(name, value); + } + } + const searchPieces = []; + for (const [name, value] of combinedParams) { + if (typeof value === "string") { + searchPieces.push(`${name}=${value}`); + } + else if (Array.isArray(value)) { + // QUIRK: If we get an array of values, include multiple key/value pairs + for (const subValue of value) { + searchPieces.push(`${name}=${subValue}`); + } + } + else { + searchPieces.push(`${name}=${value}`); + } } + // QUIRK: we have to set search manually as searchParams will encode comma when it shouldn't. + parsedUrl.search = searchPieces.length ? `?${searchPieces.join("&")}` : ""; + return parsedUrl.toString(); } -exports.unregisterGlobal = unregisterGlobal; -//# sourceMappingURL=global-utils.js.map +//# sourceMappingURL=urlHelpers.js.map /***/ }), -/***/ 1522: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +/***/ 25363: +/***/ ((__unused_webpack_module, exports) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.isPrimitiveBody = isPrimitiveBody; +exports.isDuration = isDuration; +exports.isValidUuid = isValidUuid; +exports.flattenResponse = flattenResponse; +/** + * A type guard for a primitive response body. + * @param value - Value to test * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * @internal + */ +function isPrimitiveBody(value, mapperTypeName) { + return (mapperTypeName !== "Composite" && + mapperTypeName !== "Dictionary" && + (typeof value === "string" || + typeof value === "number" || + typeof value === "boolean" || + mapperTypeName?.match(/^(Date|DateTime|DateTimeRfc1123|UnixTime|ByteArray|Base64Url)$/i) !== + null || + value === undefined || + value === null)); +} +const validateISODuration = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/; +/** + * Returns true if the given string is in ISO 8601 format. + * @param value - The value to be validated for ISO 8601 duration format. + * @internal + */ +function isDuration(value) { + return validateISODuration.test(value); +} +const validUuidRegex = /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/i; +/** + * Returns true if the provided uuid is valid. * - * https://www.apache.org/licenses/LICENSE-2.0 + * @param uuid - The uuid that needs to be validated. * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * @internal */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.isCompatible = exports._makeCompatibilityCheck = void 0; -var version_1 = __nccwpck_require__(8996); -var re = /^(\d+)\.(\d+)\.(\d+)(-(.+))?$/; +function isValidUuid(uuid) { + return validUuidRegex.test(uuid); +} /** - * Create a function to test an API version to see if it is compatible with the provided ownVersion. + * Maps the response as follows: + * - wraps the response body if needed (typically if its type is primitive). + * - returns null if the combination of the headers and the body is empty. + * - otherwise, returns the combination of the headers and the body. * - * The returned function has the following semantics: - * - Exact match is always compatible - * - Major versions must match exactly - * - 1.x package cannot use global 2.x package - * - 2.x package cannot use global 1.x package - * - The minor version of the API module requesting access to the global API must be less than or equal to the minor version of this API - * - 1.3 package may use 1.4 global because the later global contains all functions 1.3 expects - * - 1.4 package may NOT use 1.3 global because it may try to call functions which don't exist on 1.3 - * - If the major version is 0, the minor version is treated as the major and the patch is treated as the minor - * - Patch and build tag differences are not considered at this time + * @param responseObject - a representation of the parsed response + * @returns the response that will be returned to the user which can be null and/or wrapped * - * @param ownVersion version which should be checked against - */ -function _makeCompatibilityCheck(ownVersion) { - var acceptedVersions = new Set([ownVersion]); - var rejectedVersions = new Set(); - var myVersionMatch = ownVersion.match(re); - if (!myVersionMatch) { - // we cannot guarantee compatibility so we always return noop - return function () { return false; }; - } - var ownVersionParsed = { - major: +myVersionMatch[1], - minor: +myVersionMatch[2], - patch: +myVersionMatch[3], - prerelease: myVersionMatch[4], + * @internal + */ +function handleNullableResponseAndWrappableBody(responseObject) { + const combinedHeadersAndBody = { + ...responseObject.headers, + ...responseObject.body, }; - // if ownVersion has a prerelease tag, versions must match exactly - if (ownVersionParsed.prerelease != null) { - return function isExactmatch(globalVersion) { - return globalVersion === ownVersion; - }; + if (responseObject.hasNullableType && + Object.getOwnPropertyNames(combinedHeadersAndBody).length === 0) { + return responseObject.shouldWrapBody ? { body: null } : null; } - function _reject(v) { - rejectedVersions.add(v); - return false; + else { + return responseObject.shouldWrapBody + ? { + ...responseObject.headers, + body: responseObject.body, + } + : combinedHeadersAndBody; } - function _accept(v) { - acceptedVersions.add(v); - return true; +} +/** + * Take a `FullOperationResponse` and turn it into a flat + * response object to hand back to the consumer. + * @param fullResponse - The processed response from the operation request + * @param responseSpec - The response map from the OperationSpec + * + * @internal + */ +function flattenResponse(fullResponse, responseSpec) { + const parsedHeaders = fullResponse.parsedHeaders; + // head methods never have a body, but we return a boolean set to body property + // to indicate presence/absence of the resource + if (fullResponse.request.method === "HEAD") { + return { + ...parsedHeaders, + body: fullResponse.parsedBody, + }; } - return function isCompatible(globalVersion) { - if (acceptedVersions.has(globalVersion)) { - return true; - } - if (rejectedVersions.has(globalVersion)) { - return false; - } - var globalVersionMatch = globalVersion.match(re); - if (!globalVersionMatch) { - // cannot parse other version - // we cannot guarantee compatibility so we always noop - return _reject(globalVersion); - } - var globalVersionParsed = { - major: +globalVersionMatch[1], - minor: +globalVersionMatch[2], - patch: +globalVersionMatch[3], - prerelease: globalVersionMatch[4], + const bodyMapper = responseSpec && responseSpec.bodyMapper; + const isNullable = Boolean(bodyMapper?.nullable); + const expectedBodyTypeName = bodyMapper?.type.name; + /** If the body is asked for, we look at the expected body type to handle it */ + if (expectedBodyTypeName === "Stream") { + return { + ...parsedHeaders, + blobBody: fullResponse.blobBody, + readableStreamBody: fullResponse.readableStreamBody, }; - // if globalVersion has a prerelease tag, versions must match exactly - if (globalVersionParsed.prerelease != null) { - return _reject(globalVersion); - } - // major versions must match - if (ownVersionParsed.major !== globalVersionParsed.major) { - return _reject(globalVersion); - } - if (ownVersionParsed.major === 0) { - if (ownVersionParsed.minor === globalVersionParsed.minor && - ownVersionParsed.patch <= globalVersionParsed.patch) { - return _accept(globalVersion); + } + const modelProperties = (expectedBodyTypeName === "Composite" && + bodyMapper.type.modelProperties) || + {}; + const isPageableResponse = Object.keys(modelProperties).some((k) => modelProperties[k].serializedName === ""); + if (expectedBodyTypeName === "Sequence" || isPageableResponse) { + const arrayResponse = fullResponse.parsedBody ?? []; + for (const key of Object.keys(modelProperties)) { + if (modelProperties[key].serializedName) { + arrayResponse[key] = fullResponse.parsedBody?.[key]; } - return _reject(globalVersion); } - if (ownVersionParsed.minor <= globalVersionParsed.minor) { - return _accept(globalVersion); + if (parsedHeaders) { + for (const key of Object.keys(parsedHeaders)) { + arrayResponse[key] = parsedHeaders[key]; + } } - return _reject(globalVersion); - }; + return isNullable && + !fullResponse.parsedBody && + !parsedHeaders && + Object.getOwnPropertyNames(modelProperties).length === 0 + ? null + : arrayResponse; + } + return handleNullableResponseAndWrappableBody({ + body: fullResponse.parsedBody, + headers: parsedHeaders, + hasNullableType: isNullable, + shouldWrapBody: isPrimitiveBody(fullResponse.parsedBody, expectedBodyTypeName), + }); } -exports._makeCompatibilityCheck = _makeCompatibilityCheck; -/** - * Test an API version to see if it is compatible with this API. - * - * - Exact match is always compatible - * - Major versions must match exactly - * - 1.x package cannot use global 2.x package - * - 2.x package cannot use global 1.x package - * - The minor version of the API module requesting access to the global API must be less than or equal to the minor version of this API - * - 1.3 package may use 1.4 global because the later global contains all functions 1.3 expects - * - 1.4 package may NOT use 1.3 global because it may try to call functions which don't exist on 1.3 - * - If the major version is 0, the minor version is treated as the major and the patch is treated as the minor - * - Patch and build tag differences are not considered at this time - * - * @param version version of the API requesting an instance of the global API - */ -exports.isCompatible = _makeCompatibilityCheck(version_1.VERSION); -//# sourceMappingURL=semver.js.map +//# sourceMappingURL=utils.js.map /***/ }), -/***/ 9957: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { +/***/ 35064: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); -}; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. Object.defineProperty(exports, "__esModule", ({ value: true })); -__exportStar(__nccwpck_require__(7200), exports); -//# sourceMappingURL=index.js.map +exports.ExtendedServiceClient = void 0; +const disableKeepAlivePolicy_js_1 = __nccwpck_require__(75840); +const core_rest_pipeline_1 = __nccwpck_require__(29146); +const core_client_1 = __nccwpck_require__(7611); +const response_js_1 = __nccwpck_require__(49283); +/** + * Client to provide compatability between core V1 & V2. + */ +class ExtendedServiceClient extends core_client_1.ServiceClient { + constructor(options) { + super(options); + if (options.keepAliveOptions?.enable === false && + !(0, disableKeepAlivePolicy_js_1.pipelineContainsDisableKeepAlivePolicy)(this.pipeline)) { + this.pipeline.addPolicy((0, disableKeepAlivePolicy_js_1.createDisableKeepAlivePolicy)()); + } + if (options.redirectOptions?.handleRedirects === false) { + this.pipeline.removePolicy({ + name: core_rest_pipeline_1.redirectPolicyName, + }); + } + } + /** + * Compatible send operation request function. + * + * @param operationArguments - Operation arguments + * @param operationSpec - Operation Spec + * @returns + */ + async sendOperationRequest(operationArguments, operationSpec) { + const userProvidedCallBack = operationArguments?.options?.onResponse; + let lastResponse; + function onResponse(rawResponse, flatResponse, error) { + lastResponse = rawResponse; + if (userProvidedCallBack) { + userProvidedCallBack(rawResponse, flatResponse, error); + } + } + operationArguments.options = { + ...operationArguments.options, + onResponse, + }; + const result = await super.sendOperationRequest(operationArguments, operationSpec); + if (lastResponse) { + Object.defineProperty(result, "_response", { + value: (0, response_js_1.toCompatResponse)(lastResponse), + }); + } + return result; + } +} +exports.ExtendedServiceClient = ExtendedServiceClient; +//# sourceMappingURL=extendedClient.js.map /***/ }), -/***/ 9406: -/***/ ((__unused_webpack_module, exports) => { +/***/ 23256: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. Object.defineProperty(exports, "__esModule", ({ value: true })); -exports._globalThis = void 0; -/** only globals that common to node and browsers are allowed */ -// eslint-disable-next-line node/no-unsupported-features/es-builtins -exports._globalThis = typeof globalThis === 'object' ? globalThis : global; -//# sourceMappingURL=globalThis.js.map +exports.convertHttpClient = convertHttpClient; +const response_js_1 = __nccwpck_require__(49283); +const util_js_1 = __nccwpck_require__(43732); +/** + * Converts a RequestPolicy based HttpClient to a PipelineRequest based HttpClient. + * @param requestPolicyClient - A HttpClient compatible with core-http + * @returns A HttpClient compatible with core-rest-pipeline + */ +function convertHttpClient(requestPolicyClient) { + return { + sendRequest: async (request) => { + const response = await requestPolicyClient.sendRequest((0, util_js_1.toWebResourceLike)(request, { createProxy: true })); + return (0, response_js_1.toPipelineResponse)(response); + }, + }; +} +//# sourceMappingURL=httpClientAdapter.js.map /***/ }), -/***/ 7200: -/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { +/***/ 25083: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.toHttpHeadersLike = exports.convertHttpClient = exports.disableKeepAlivePolicyName = exports.HttpPipelineLogLevel = exports.createRequestPolicyFactoryPolicy = exports.requestPolicyFactoryPolicyName = exports.ExtendedServiceClient = void 0; +/** + * A Shim Library that provides compatibility between Core V1 & V2 Packages. * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. + * @packageDocumentation */ -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); -}; -Object.defineProperty(exports, "__esModule", ({ value: true })); -__exportStar(__nccwpck_require__(9406), exports); +var extendedClient_js_1 = __nccwpck_require__(35064); +Object.defineProperty(exports, "ExtendedServiceClient", ({ enumerable: true, get: function () { return extendedClient_js_1.ExtendedServiceClient; } })); +var requestPolicyFactoryPolicy_js_1 = __nccwpck_require__(98241); +Object.defineProperty(exports, "requestPolicyFactoryPolicyName", ({ enumerable: true, get: function () { return requestPolicyFactoryPolicy_js_1.requestPolicyFactoryPolicyName; } })); +Object.defineProperty(exports, "createRequestPolicyFactoryPolicy", ({ enumerable: true, get: function () { return requestPolicyFactoryPolicy_js_1.createRequestPolicyFactoryPolicy; } })); +Object.defineProperty(exports, "HttpPipelineLogLevel", ({ enumerable: true, get: function () { return requestPolicyFactoryPolicy_js_1.HttpPipelineLogLevel; } })); +var disableKeepAlivePolicy_js_1 = __nccwpck_require__(75840); +Object.defineProperty(exports, "disableKeepAlivePolicyName", ({ enumerable: true, get: function () { return disableKeepAlivePolicy_js_1.disableKeepAlivePolicyName; } })); +var httpClientAdapter_js_1 = __nccwpck_require__(23256); +Object.defineProperty(exports, "convertHttpClient", ({ enumerable: true, get: function () { return httpClientAdapter_js_1.convertHttpClient; } })); +var util_js_1 = __nccwpck_require__(43732); +Object.defineProperty(exports, "toHttpHeadersLike", ({ enumerable: true, get: function () { return util_js_1.toHttpHeadersLike; } })); //# sourceMappingURL=index.js.map /***/ }), -/***/ 2368: +/***/ 75840: /***/ ((__unused_webpack_module, exports) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.NoopTextMapPropagator = void 0; +exports.disableKeepAlivePolicyName = void 0; +exports.createDisableKeepAlivePolicy = createDisableKeepAlivePolicy; +exports.pipelineContainsDisableKeepAlivePolicy = pipelineContainsDisableKeepAlivePolicy; +exports.disableKeepAlivePolicyName = "DisableKeepAlivePolicy"; +function createDisableKeepAlivePolicy() { + return { + name: exports.disableKeepAlivePolicyName, + async sendRequest(request, next) { + request.disableKeepAlive = true; + return next(request); + }, + }; +} /** - * No-op implementations of {@link TextMapPropagator}. + * @internal */ -var NoopTextMapPropagator = /** @class */ (function () { - function NoopTextMapPropagator() { - } - /** Noop inject function does nothing */ - NoopTextMapPropagator.prototype.inject = function (_context, _carrier) { }; - /** Noop extract function does nothing and returns the input context */ - NoopTextMapPropagator.prototype.extract = function (context, _carrier) { - return context; - }; - NoopTextMapPropagator.prototype.fields = function () { - return []; - }; - return NoopTextMapPropagator; -}()); -exports.NoopTextMapPropagator = NoopTextMapPropagator; -//# sourceMappingURL=NoopTextMapPropagator.js.map +function pipelineContainsDisableKeepAlivePolicy(pipeline) { + return pipeline.getOrderedPolicies().some((policy) => policy.name === exports.disableKeepAlivePolicyName); +} +//# sourceMappingURL=disableKeepAlivePolicy.js.map /***/ }), -/***/ 865: -/***/ ((__unused_webpack_module, exports) => { +/***/ 98241: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.defaultTextMapSetter = exports.defaultTextMapGetter = void 0; -exports.defaultTextMapGetter = { - get: function (carrier, key) { - if (carrier == null) { - return undefined; - } - return carrier[key]; - }, - keys: function (carrier) { - if (carrier == null) { - return []; - } - return Object.keys(carrier); +exports.requestPolicyFactoryPolicyName = exports.HttpPipelineLogLevel = void 0; +exports.createRequestPolicyFactoryPolicy = createRequestPolicyFactoryPolicy; +const util_js_1 = __nccwpck_require__(43732); +const response_js_1 = __nccwpck_require__(49283); +/** + * An enum for compatibility with RequestPolicy + */ +var HttpPipelineLogLevel; +(function (HttpPipelineLogLevel) { + HttpPipelineLogLevel[HttpPipelineLogLevel["ERROR"] = 1] = "ERROR"; + HttpPipelineLogLevel[HttpPipelineLogLevel["INFO"] = 3] = "INFO"; + HttpPipelineLogLevel[HttpPipelineLogLevel["OFF"] = 0] = "OFF"; + HttpPipelineLogLevel[HttpPipelineLogLevel["WARNING"] = 2] = "WARNING"; +})(HttpPipelineLogLevel || (exports.HttpPipelineLogLevel = HttpPipelineLogLevel = {})); +const mockRequestPolicyOptions = { + log(_logLevel, _message) { + /* do nothing */ }, -}; -exports.defaultTextMapSetter = { - set: function (carrier, key, value) { - if (carrier == null) { - return; - } - carrier[key] = value; + shouldLog(_logLevel) { + return false; }, }; -//# sourceMappingURL=TextMapPropagator.js.map +/** + * The name of the RequestPolicyFactoryPolicy + */ +exports.requestPolicyFactoryPolicyName = "RequestPolicyFactoryPolicy"; +/** + * A policy that wraps policies written for core-http. + * @param factories - An array of `RequestPolicyFactory` objects from a core-http pipeline + */ +function createRequestPolicyFactoryPolicy(factories) { + const orderedFactories = factories.slice().reverse(); + return { + name: exports.requestPolicyFactoryPolicyName, + async sendRequest(request, next) { + let httpPipeline = { + async sendRequest(httpRequest) { + const response = await next((0, util_js_1.toPipelineRequest)(httpRequest)); + return (0, response_js_1.toCompatResponse)(response, { createProxy: true }); + }, + }; + for (const factory of orderedFactories) { + httpPipeline = factory.create(httpPipeline, mockRequestPolicyOptions); + } + const webResourceLike = (0, util_js_1.toWebResourceLike)(request, { createProxy: true }); + const response = await httpPipeline.sendRequest(webResourceLike); + return (0, response_js_1.toPipelineResponse)(response); + }, + }; +} +//# sourceMappingURL=requestPolicyFactoryPolicy.js.map /***/ }), -/***/ 1462: +/***/ 49283: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.NonRecordingSpan = void 0; -var invalid_span_constants_1 = __nccwpck_require__(1760); +exports.toCompatResponse = toCompatResponse; +exports.toPipelineResponse = toPipelineResponse; +const core_rest_pipeline_1 = __nccwpck_require__(29146); +const util_js_1 = __nccwpck_require__(43732); +const originalResponse = Symbol("Original FullOperationResponse"); /** - * The NonRecordingSpan is the default {@link Span} that is used when no Span - * implementation is available. All operations are no-op including context - * propagation. + * A helper to convert response objects from the new pipeline back to the old one. + * @param response - A response object from core-client. + * @returns A response compatible with `HttpOperationResponse` from core-http. */ -var NonRecordingSpan = /** @class */ (function () { - function NonRecordingSpan(_spanContext) { - if (_spanContext === void 0) { _spanContext = invalid_span_constants_1.INVALID_SPAN_CONTEXT; } - this._spanContext = _spanContext; +function toCompatResponse(response, options) { + let request = (0, util_js_1.toWebResourceLike)(response.request); + let headers = (0, util_js_1.toHttpHeadersLike)(response.headers); + if (options?.createProxy) { + return new Proxy(response, { + get(target, prop, receiver) { + if (prop === "headers") { + return headers; + } + else if (prop === "request") { + return request; + } + else if (prop === originalResponse) { + return response; + } + return Reflect.get(target, prop, receiver); + }, + set(target, prop, value, receiver) { + if (prop === "headers") { + headers = value; + } + else if (prop === "request") { + request = value; + } + return Reflect.set(target, prop, value, receiver); + }, + }); } - // Returns a SpanContext. - NonRecordingSpan.prototype.spanContext = function () { - return this._spanContext; - }; - // By default does nothing - NonRecordingSpan.prototype.setAttribute = function (_key, _value) { - return this; - }; - // By default does nothing - NonRecordingSpan.prototype.setAttributes = function (_attributes) { - return this; - }; - // By default does nothing - NonRecordingSpan.prototype.addEvent = function (_name, _attributes) { - return this; - }; - // By default does nothing - NonRecordingSpan.prototype.setStatus = function (_status) { - return this; - }; - // By default does nothing - NonRecordingSpan.prototype.updateName = function (_name) { - return this; - }; - // By default does nothing - NonRecordingSpan.prototype.end = function (_endTime) { }; - // isRecording always returns false for NonRecordingSpan. - NonRecordingSpan.prototype.isRecording = function () { - return false; - }; - // By default does nothing - NonRecordingSpan.prototype.recordException = function (_exception, _time) { }; - return NonRecordingSpan; -}()); -exports.NonRecordingSpan = NonRecordingSpan; -//# sourceMappingURL=NonRecordingSpan.js.map + else { + return { + ...response, + request, + headers, + }; + } +} +/** + * A helper to convert back to a PipelineResponse + * @param compatResponse - A response compatible with `HttpOperationResponse` from core-http. + */ +function toPipelineResponse(compatResponse) { + const extendedCompatResponse = compatResponse; + const response = extendedCompatResponse[originalResponse]; + const headers = (0, core_rest_pipeline_1.createHttpHeaders)(compatResponse.headers.toJson({ preserveCase: true })); + if (response) { + response.headers = headers; + return response; + } + else { + return { + ...compatResponse, + headers, + request: (0, util_js_1.toPipelineRequest)(compatResponse.request), + }; + } +} +//# sourceMappingURL=response.js.map /***/ }), -/***/ 7606: +/***/ 43732: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.NoopTracer = void 0; -var context_1 = __nccwpck_require__(7171); -var context_utils_1 = __nccwpck_require__(3326); -var NonRecordingSpan_1 = __nccwpck_require__(1462); -var spancontext_utils_1 = __nccwpck_require__(9745); -var context = context_1.ContextAPI.getInstance(); +exports.HttpHeaders = void 0; +exports.toPipelineRequest = toPipelineRequest; +exports.toWebResourceLike = toWebResourceLike; +exports.toHttpHeadersLike = toHttpHeadersLike; +const core_rest_pipeline_1 = __nccwpck_require__(29146); +// We use a custom symbol to cache a reference to the original request without +// exposing it on the public interface. +const originalRequestSymbol = Symbol("Original PipelineRequest"); +// Symbol.for() will return the same symbol if it's already been created +// This particular one is used in core-client to handle the case of when a request is +// cloned but we need to retrieve the OperationSpec and OperationArguments from the +// original request. +const originalClientRequestSymbol = Symbol.for("@azure/core-client original request"); +function toPipelineRequest(webResource, options = {}) { + const compatWebResource = webResource; + const request = compatWebResource[originalRequestSymbol]; + const headers = (0, core_rest_pipeline_1.createHttpHeaders)(webResource.headers.toJson({ preserveCase: true })); + if (request) { + request.headers = headers; + return request; + } + else { + const newRequest = (0, core_rest_pipeline_1.createPipelineRequest)({ + url: webResource.url, + method: webResource.method, + headers, + withCredentials: webResource.withCredentials, + timeout: webResource.timeout, + requestId: webResource.requestId, + abortSignal: webResource.abortSignal, + body: webResource.body, + formData: webResource.formData, + disableKeepAlive: !!webResource.keepAlive, + onDownloadProgress: webResource.onDownloadProgress, + onUploadProgress: webResource.onUploadProgress, + proxySettings: webResource.proxySettings, + streamResponseStatusCodes: webResource.streamResponseStatusCodes, + agent: webResource.agent, + requestOverrides: webResource.requestOverrides, + }); + if (options.originalRequest) { + newRequest[originalClientRequestSymbol] = + options.originalRequest; + } + return newRequest; + } +} +function toWebResourceLike(request, options) { + const originalRequest = options?.originalRequest ?? request; + const webResource = { + url: request.url, + method: request.method, + headers: toHttpHeadersLike(request.headers), + withCredentials: request.withCredentials, + timeout: request.timeout, + requestId: request.headers.get("x-ms-client-request-id") || request.requestId, + abortSignal: request.abortSignal, + body: request.body, + formData: request.formData, + keepAlive: !!request.disableKeepAlive, + onDownloadProgress: request.onDownloadProgress, + onUploadProgress: request.onUploadProgress, + proxySettings: request.proxySettings, + streamResponseStatusCodes: request.streamResponseStatusCodes, + agent: request.agent, + requestOverrides: request.requestOverrides, + clone() { + throw new Error("Cannot clone a non-proxied WebResourceLike"); + }, + prepare() { + throw new Error("WebResourceLike.prepare() is not supported by @azure/core-http-compat"); + }, + validateRequestProperties() { + /** do nothing */ + }, + }; + if (options?.createProxy) { + return new Proxy(webResource, { + get(target, prop, receiver) { + if (prop === originalRequestSymbol) { + return request; + } + else if (prop === "clone") { + return () => { + return toWebResourceLike(toPipelineRequest(webResource, { originalRequest }), { + createProxy: true, + originalRequest, + }); + }; + } + return Reflect.get(target, prop, receiver); + }, + set(target, prop, value, receiver) { + if (prop === "keepAlive") { + request.disableKeepAlive = !value; + } + const passThroughProps = [ + "url", + "method", + "withCredentials", + "timeout", + "requestId", + "abortSignal", + "body", + "formData", + "onDownloadProgress", + "onUploadProgress", + "proxySettings", + "streamResponseStatusCodes", + "agent", + "requestOverrides", + ]; + if (typeof prop === "string" && passThroughProps.includes(prop)) { + request[prop] = value; + } + return Reflect.set(target, prop, value, receiver); + }, + }); + } + else { + return webResource; + } +} +/** + * Converts HttpHeaders from core-rest-pipeline to look like + * HttpHeaders from core-http. + * @param headers - HttpHeaders from core-rest-pipeline + * @returns HttpHeaders as they looked in core-http + */ +function toHttpHeadersLike(headers) { + return new HttpHeaders(headers.toJSON({ preserveCase: true })); +} +/** + * A collection of HttpHeaders that can be sent with a HTTP request. + */ +function getHeaderKey(headerName) { + return headerName.toLowerCase(); +} /** - * No-op implementations of {@link Tracer}. + * A collection of HTTP header key/value pairs. */ -var NoopTracer = /** @class */ (function () { - function NoopTracer() { +class HttpHeaders { + _headersMap; + constructor(rawHeaders) { + this._headersMap = {}; + if (rawHeaders) { + for (const headerName in rawHeaders) { + this.set(headerName, rawHeaders[headerName]); + } + } + } + /** + * Set a header in this collection with the provided name and value. The name is + * case-insensitive. + * @param headerName - The name of the header to set. This value is case-insensitive. + * @param headerValue - The value of the header to set. + */ + set(headerName, headerValue) { + this._headersMap[getHeaderKey(headerName)] = { + name: headerName, + value: headerValue.toString(), + }; + } + /** + * Get the header value for the provided header name, or undefined if no header exists in this + * collection with the provided name. + * @param headerName - The name of the header. + */ + get(headerName) { + const header = this._headersMap[getHeaderKey(headerName)]; + return !header ? undefined : header.value; + } + /** + * Get whether or not this header collection contains a header entry for the provided header name. + */ + contains(headerName) { + return !!this._headersMap[getHeaderKey(headerName)]; + } + /** + * Remove the header with the provided headerName. Return whether or not the header existed and + * was removed. + * @param headerName - The name of the header to remove. + */ + remove(headerName) { + const result = this.contains(headerName); + delete this._headersMap[getHeaderKey(headerName)]; + return result; + } + /** + * Get the headers that are contained this collection as an object. + */ + rawHeaders() { + return this.toJson({ preserveCase: true }); } - // startSpan starts a noop span. - NoopTracer.prototype.startSpan = function (name, options, context) { - var root = Boolean(options === null || options === void 0 ? void 0 : options.root); - if (root) { - return new NonRecordingSpan_1.NonRecordingSpan(); + /** + * Get the headers that are contained in this collection as an array. + */ + headersArray() { + const headers = []; + for (const headerKey in this._headersMap) { + headers.push(this._headersMap[headerKey]); } - var parentFromContext = context && context_utils_1.getSpanContext(context); - if (isSpanContext(parentFromContext) && - spancontext_utils_1.isSpanContextValid(parentFromContext)) { - return new NonRecordingSpan_1.NonRecordingSpan(parentFromContext); + return headers; + } + /** + * Get the header names that are contained in this collection. + */ + headerNames() { + const headerNames = []; + const headers = this.headersArray(); + for (let i = 0; i < headers.length; ++i) { + headerNames.push(headers[i].name); } - else { - return new NonRecordingSpan_1.NonRecordingSpan(); + return headerNames; + } + /** + * Get the header values that are contained in this collection. + */ + headerValues() { + const headerValues = []; + const headers = this.headersArray(); + for (let i = 0; i < headers.length; ++i) { + headerValues.push(headers[i].value); } - }; - NoopTracer.prototype.startActiveSpan = function (name, arg2, arg3, arg4) { - var opts; - var ctx; - var fn; - if (arguments.length < 2) { - return; + return headerValues; + } + /** + * Get the JSON object representation of this HTTP header collection. + */ + toJson(options = {}) { + const result = {}; + if (options.preserveCase) { + for (const headerKey in this._headersMap) { + const header = this._headersMap[headerKey]; + result[header.name] = header.value; + } } - else if (arguments.length === 2) { - fn = arg2; + else { + for (const headerKey in this._headersMap) { + const header = this._headersMap[headerKey]; + result[getHeaderKey(header.name)] = header.value; + } } - else if (arguments.length === 3) { - opts = arg2; - fn = arg3; + return result; + } + /** + * Get the string representation of this HTTP header collection. + */ + toString() { + return JSON.stringify(this.toJson({ preserveCase: true })); + } + /** + * Create a deep clone/copy of this HttpHeaders collection. + */ + clone() { + const resultPreservingCasing = {}; + for (const headerKey in this._headersMap) { + const header = this._headersMap[headerKey]; + resultPreservingCasing[header.name] = header.value; } - else { - opts = arg2; - ctx = arg3; - fn = arg4; - } - var parentContext = ctx !== null && ctx !== void 0 ? ctx : context.active(); - var span = this.startSpan(name, opts, parentContext); - var contextWithSpanSet = context_utils_1.setSpan(parentContext, span); - return context.with(contextWithSpanSet, fn, undefined, span); - }; - return NoopTracer; -}()); -exports.NoopTracer = NoopTracer; -function isSpanContext(spanContext) { - return (typeof spanContext === 'object' && - typeof spanContext['spanId'] === 'string' && - typeof spanContext['traceId'] === 'string' && - typeof spanContext['traceFlags'] === 'number'); + return new HttpHeaders(resultPreservingCasing); + } } -//# sourceMappingURL=NoopTracer.js.map +exports.HttpHeaders = HttpHeaders; +//# sourceMappingURL=util.js.map /***/ }), -/***/ 3259: +/***/ 57759: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.NoopTracerProvider = void 0; -var NoopTracer_1 = __nccwpck_require__(7606); +exports.pollHttpOperation = exports.isOperationError = exports.getResourceLocation = exports.getOperationStatus = exports.getOperationLocation = exports.initHttpOperation = exports.getStatusFromInitialResponse = exports.getErrorFromResponse = exports.parseRetryAfter = exports.inferLroMode = void 0; +const operation_js_1 = __nccwpck_require__(70281); +const logger_js_1 = __nccwpck_require__(28121); +function getOperationLocationPollingUrl(inputs) { + const { azureAsyncOperation, operationLocation } = inputs; + return operationLocation !== null && operationLocation !== void 0 ? operationLocation : azureAsyncOperation; +} +function getLocationHeader(rawResponse) { + return rawResponse.headers["location"]; +} +function getOperationLocationHeader(rawResponse) { + return rawResponse.headers["operation-location"]; +} +function getAzureAsyncOperationHeader(rawResponse) { + return rawResponse.headers["azure-asyncoperation"]; +} +function findResourceLocation(inputs) { + var _a; + const { location, requestMethod, requestPath, resourceLocationConfig } = inputs; + switch (requestMethod) { + case "PUT": { + return requestPath; + } + case "DELETE": { + return undefined; + } + case "PATCH": { + return (_a = getDefault()) !== null && _a !== void 0 ? _a : requestPath; + } + default: { + return getDefault(); + } + } + function getDefault() { + switch (resourceLocationConfig) { + case "azure-async-operation": { + return undefined; + } + case "original-uri": { + return requestPath; + } + case "location": + default: { + return location; + } + } + } +} +function inferLroMode(inputs) { + const { rawResponse, requestMethod, requestPath, resourceLocationConfig } = inputs; + const operationLocation = getOperationLocationHeader(rawResponse); + const azureAsyncOperation = getAzureAsyncOperationHeader(rawResponse); + const pollingUrl = getOperationLocationPollingUrl({ operationLocation, azureAsyncOperation }); + const location = getLocationHeader(rawResponse); + const normalizedRequestMethod = requestMethod === null || requestMethod === void 0 ? void 0 : requestMethod.toLocaleUpperCase(); + if (pollingUrl !== undefined) { + return { + mode: "OperationLocation", + operationLocation: pollingUrl, + resourceLocation: findResourceLocation({ + requestMethod: normalizedRequestMethod, + location, + requestPath, + resourceLocationConfig, + }), + }; + } + else if (location !== undefined) { + return { + mode: "ResourceLocation", + operationLocation: location, + }; + } + else if (normalizedRequestMethod === "PUT" && requestPath) { + return { + mode: "Body", + operationLocation: requestPath, + }; + } + else { + return undefined; + } +} +exports.inferLroMode = inferLroMode; +function transformStatus(inputs) { + const { status, statusCode } = inputs; + if (typeof status !== "string" && status !== undefined) { + throw new Error(`Polling was unsuccessful. Expected status to have a string value or no value but it has instead: ${status}. This doesn't necessarily indicate the operation has failed. Check your Azure subscription or resource status for more information.`); + } + switch (status === null || status === void 0 ? void 0 : status.toLocaleLowerCase()) { + case undefined: + return toOperationStatus(statusCode); + case "succeeded": + return "succeeded"; + case "failed": + return "failed"; + case "running": + case "accepted": + case "started": + case "canceling": + case "cancelling": + return "running"; + case "canceled": + case "cancelled": + return "canceled"; + default: { + logger_js_1.logger.verbose(`LRO: unrecognized operation status: ${status}`); + return status; + } + } +} +function getStatus(rawResponse) { + var _a; + const { status } = (_a = rawResponse.body) !== null && _a !== void 0 ? _a : {}; + return transformStatus({ status, statusCode: rawResponse.statusCode }); +} +function getProvisioningState(rawResponse) { + var _a, _b; + const { properties, provisioningState } = (_a = rawResponse.body) !== null && _a !== void 0 ? _a : {}; + const status = (_b = properties === null || properties === void 0 ? void 0 : properties.provisioningState) !== null && _b !== void 0 ? _b : provisioningState; + return transformStatus({ status, statusCode: rawResponse.statusCode }); +} +function toOperationStatus(statusCode) { + if (statusCode === 202) { + return "running"; + } + else if (statusCode < 300) { + return "succeeded"; + } + else { + return "failed"; + } +} +function parseRetryAfter({ rawResponse }) { + const retryAfter = rawResponse.headers["retry-after"]; + if (retryAfter !== undefined) { + // Retry-After header value is either in HTTP date format, or in seconds + const retryAfterInSeconds = parseInt(retryAfter); + return isNaN(retryAfterInSeconds) + ? calculatePollingIntervalFromDate(new Date(retryAfter)) + : retryAfterInSeconds * 1000; + } + return undefined; +} +exports.parseRetryAfter = parseRetryAfter; +function getErrorFromResponse(response) { + const error = accessBodyProperty(response, "error"); + if (!error) { + logger_js_1.logger.warning(`The long-running operation failed but there is no error property in the response's body`); + return; + } + if (!error.code || !error.message) { + logger_js_1.logger.warning(`The long-running operation failed but the error property in the response's body doesn't contain code or message`); + return; + } + return error; +} +exports.getErrorFromResponse = getErrorFromResponse; +function calculatePollingIntervalFromDate(retryAfterDate) { + const timeNow = Math.floor(new Date().getTime()); + const retryAfterTime = retryAfterDate.getTime(); + if (timeNow < retryAfterTime) { + return retryAfterTime - timeNow; + } + return undefined; +} +function getStatusFromInitialResponse(inputs) { + const { response, state, operationLocation } = inputs; + function helper() { + var _a; + const mode = (_a = state.config.metadata) === null || _a === void 0 ? void 0 : _a["mode"]; + switch (mode) { + case undefined: + return toOperationStatus(response.rawResponse.statusCode); + case "Body": + return getOperationStatus(response, state); + default: + return "running"; + } + } + const status = helper(); + return status === "running" && operationLocation === undefined ? "succeeded" : status; +} +exports.getStatusFromInitialResponse = getStatusFromInitialResponse; /** - * An implementation of the {@link TracerProvider} which returns an impotent - * Tracer for all calls to `getTracer`. - * - * All operations are no-op. + * Initiates the long-running operation. */ -var NoopTracerProvider = /** @class */ (function () { - function NoopTracerProvider() { +async function initHttpOperation(inputs) { + const { stateProxy, resourceLocationConfig, processResult, lro, setErrorAsResult } = inputs; + return (0, operation_js_1.initOperation)({ + init: async () => { + const response = await lro.sendInitialRequest(); + const config = inferLroMode({ + rawResponse: response.rawResponse, + requestPath: lro.requestPath, + requestMethod: lro.requestMethod, + resourceLocationConfig, + }); + return Object.assign({ response, operationLocation: config === null || config === void 0 ? void 0 : config.operationLocation, resourceLocation: config === null || config === void 0 ? void 0 : config.resourceLocation }, ((config === null || config === void 0 ? void 0 : config.mode) ? { metadata: { mode: config.mode } } : {})); + }, + stateProxy, + processResult: processResult + ? ({ flatResponse }, state) => processResult(flatResponse, state) + : ({ flatResponse }) => flatResponse, + getOperationStatus: getStatusFromInitialResponse, + setErrorAsResult, + }); +} +exports.initHttpOperation = initHttpOperation; +function getOperationLocation({ rawResponse }, state) { + var _a; + const mode = (_a = state.config.metadata) === null || _a === void 0 ? void 0 : _a["mode"]; + switch (mode) { + case "OperationLocation": { + return getOperationLocationPollingUrl({ + operationLocation: getOperationLocationHeader(rawResponse), + azureAsyncOperation: getAzureAsyncOperationHeader(rawResponse), + }); + } + case "ResourceLocation": { + return getLocationHeader(rawResponse); + } + case "Body": + default: { + return undefined; + } } - NoopTracerProvider.prototype.getTracer = function (_name, _version) { - return new NoopTracer_1.NoopTracer(); - }; - return NoopTracerProvider; -}()); -exports.NoopTracerProvider = NoopTracerProvider; -//# sourceMappingURL=NoopTracerProvider.js.map +} +exports.getOperationLocation = getOperationLocation; +function getOperationStatus({ rawResponse }, state) { + var _a; + const mode = (_a = state.config.metadata) === null || _a === void 0 ? void 0 : _a["mode"]; + switch (mode) { + case "OperationLocation": { + return getStatus(rawResponse); + } + case "ResourceLocation": { + return toOperationStatus(rawResponse.statusCode); + } + case "Body": { + return getProvisioningState(rawResponse); + } + default: + throw new Error(`Internal error: Unexpected operation mode: ${mode}`); + } +} +exports.getOperationStatus = getOperationStatus; +function accessBodyProperty({ flatResponse, rawResponse }, prop) { + var _a, _b; + return (_a = flatResponse === null || flatResponse === void 0 ? void 0 : flatResponse[prop]) !== null && _a !== void 0 ? _a : (_b = rawResponse.body) === null || _b === void 0 ? void 0 : _b[prop]; +} +function getResourceLocation(res, state) { + const loc = accessBodyProperty(res, "resourceLocation"); + if (loc && typeof loc === "string") { + state.config.resourceLocation = loc; + } + return state.config.resourceLocation; +} +exports.getResourceLocation = getResourceLocation; +function isOperationError(e) { + return e.name === "RestError"; +} +exports.isOperationError = isOperationError; +/** Polls the long-running operation. */ +async function pollHttpOperation(inputs) { + const { lro, stateProxy, options, processResult, updateState, setDelay, state, setErrorAsResult, } = inputs; + return (0, operation_js_1.pollOperation)({ + state, + stateProxy, + setDelay, + processResult: processResult + ? ({ flatResponse }, inputState) => processResult(flatResponse, inputState) + : ({ flatResponse }) => flatResponse, + getError: getErrorFromResponse, + updateState, + getPollingInterval: parseRetryAfter, + getOperationLocation, + getOperationStatus, + isOperationError, + getResourceLocation, + options, + /** + * The expansion here is intentional because `lro` could be an object that + * references an inner this, so we need to preserve a reference to it. + */ + poll: async (location, inputOptions) => lro.sendPollRequest(location, inputOptions), + setErrorAsResult, + }); +} +exports.pollHttpOperation = pollHttpOperation; +//# sourceMappingURL=operation.js.map /***/ }), -/***/ 3503: +/***/ 78412: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.ProxyTracer = void 0; -var NoopTracer_1 = __nccwpck_require__(7606); -var NOOP_TRACER = new NoopTracer_1.NoopTracer(); +exports.createHttpPoller = void 0; +const operation_js_1 = __nccwpck_require__(57759); +const poller_js_1 = __nccwpck_require__(76713); /** - * Proxy tracer provided by the proxy tracer provider + * Creates a poller that can be used to poll a long-running operation. + * @param lro - Description of the long-running operation + * @param options - options to configure the poller + * @returns an initialized poller */ -var ProxyTracer = /** @class */ (function () { - function ProxyTracer(_provider, name, version) { - this._provider = _provider; - this.name = name; - this.version = version; - } - ProxyTracer.prototype.startSpan = function (name, options, context) { - return this._getTracer().startSpan(name, options, context); - }; - ProxyTracer.prototype.startActiveSpan = function (_name, _options, _context, _fn) { - var tracer = this._getTracer(); - return Reflect.apply(tracer.startActiveSpan, tracer, arguments); - }; - /** - * Try to get a tracer from the proxy tracer provider. - * If the proxy tracer provider has no delegate, return a noop tracer. - */ - ProxyTracer.prototype._getTracer = function () { - if (this._delegate) { - return this._delegate; - } - var tracer = this._provider.getDelegateTracer(this.name, this.version); - if (!tracer) { - return NOOP_TRACER; - } - this._delegate = tracer; - return this._delegate; - }; - return ProxyTracer; -}()); -exports.ProxyTracer = ProxyTracer; -//# sourceMappingURL=ProxyTracer.js.map +async function createHttpPoller(lro, options) { + const { resourceLocationConfig, intervalInMs, processResult, restoreFrom, updateState, withOperationLocation, resolveOnUnsuccessful = false, } = options || {}; + return (0, poller_js_1.buildCreatePoller)({ + getStatusFromInitialResponse: operation_js_1.getStatusFromInitialResponse, + getStatusFromPollResponse: operation_js_1.getOperationStatus, + isOperationError: operation_js_1.isOperationError, + getOperationLocation: operation_js_1.getOperationLocation, + getResourceLocation: operation_js_1.getResourceLocation, + getPollingInterval: operation_js_1.parseRetryAfter, + getError: operation_js_1.getErrorFromResponse, + resolveOnUnsuccessful, + })({ + init: async () => { + const response = await lro.sendInitialRequest(); + const config = (0, operation_js_1.inferLroMode)({ + rawResponse: response.rawResponse, + requestPath: lro.requestPath, + requestMethod: lro.requestMethod, + resourceLocationConfig, + }); + return Object.assign({ response, operationLocation: config === null || config === void 0 ? void 0 : config.operationLocation, resourceLocation: config === null || config === void 0 ? void 0 : config.resourceLocation }, ((config === null || config === void 0 ? void 0 : config.mode) ? { metadata: { mode: config.mode } } : {})); + }, + poll: lro.sendPollRequest, + }, { + intervalInMs, + withOperationLocation, + restoreFrom, + updateState, + processResult: processResult + ? ({ flatResponse }, state) => processResult(flatResponse, state) + : ({ flatResponse }) => flatResponse, + }); +} +exports.createHttpPoller = createHttpPoller; +//# sourceMappingURL=poller.js.map /***/ }), -/***/ 2285: +/***/ 90334: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.ProxyTracerProvider = void 0; -var ProxyTracer_1 = __nccwpck_require__(3503); -var NoopTracerProvider_1 = __nccwpck_require__(3259); -var NOOP_TRACER_PROVIDER = new NoopTracerProvider_1.NoopTracerProvider(); +exports.createHttpPoller = void 0; +const tslib_1 = __nccwpck_require__(4351); +var poller_js_1 = __nccwpck_require__(78412); +Object.defineProperty(exports, "createHttpPoller", ({ enumerable: true, get: function () { return poller_js_1.createHttpPoller; } })); /** - * Tracer provider which provides {@link ProxyTracer}s. - * - * Before a delegate is set, tracers provided are NoOp. - * When a delegate is set, traces are provided from the delegate. - * When a delegate is set after tracers have already been provided, - * all tracers already provided will use the provided delegate implementation. + * This can be uncommented to expose the protocol-agnostic poller */ -var ProxyTracerProvider = /** @class */ (function () { - function ProxyTracerProvider() { - } - /** - * Get a {@link ProxyTracer} - */ - ProxyTracerProvider.prototype.getTracer = function (name, version) { - var _a; - return ((_a = this.getDelegateTracer(name, version)) !== null && _a !== void 0 ? _a : new ProxyTracer_1.ProxyTracer(this, name, version)); - }; - ProxyTracerProvider.prototype.getDelegate = function () { - var _a; - return (_a = this._delegate) !== null && _a !== void 0 ? _a : NOOP_TRACER_PROVIDER; - }; - /** - * Set the delegate tracer provider - */ - ProxyTracerProvider.prototype.setDelegate = function (delegate) { - this._delegate = delegate; - }; - ProxyTracerProvider.prototype.getDelegateTracer = function (name, version) { - var _a; - return (_a = this._delegate) === null || _a === void 0 ? void 0 : _a.getTracer(name, version); - }; - return ProxyTracerProvider; -}()); -exports.ProxyTracerProvider = ProxyTracerProvider; -//# sourceMappingURL=ProxyTracerProvider.js.map +// export { +// BuildCreatePollerOptions, +// Operation, +// CreatePollerOptions, +// OperationConfig, +// RestorableOperationState, +// } from "./poller/models"; +// export { buildCreatePoller } from "./poller/poller"; +/** legacy */ +tslib_1.__exportStar(__nccwpck_require__(52260), exports); +tslib_1.__exportStar(__nccwpck_require__(17270), exports); +tslib_1.__exportStar(__nccwpck_require__(93586), exports); +//# sourceMappingURL=index.js.map /***/ }), -/***/ 9671: -/***/ ((__unused_webpack_module, exports) => { +/***/ 52260: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. Object.defineProperty(exports, "__esModule", ({ value: true })); -//# sourceMappingURL=Sampler.js.map +exports.LroEngine = void 0; +var lroEngine_js_1 = __nccwpck_require__(35780); +Object.defineProperty(exports, "LroEngine", ({ enumerable: true, get: function () { return lroEngine_js_1.LroEngine; } })); +//# sourceMappingURL=index.js.map /***/ }), -/***/ 3209: -/***/ ((__unused_webpack_module, exports) => { +/***/ 35780: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.SamplingDecision = void 0; +exports.LroEngine = void 0; +const operation_js_1 = __nccwpck_require__(77954); +const constants_js_1 = __nccwpck_require__(53846); +const poller_js_1 = __nccwpck_require__(17270); +const operation_js_2 = __nccwpck_require__(70281); /** - * A sampling decision that determines how a {@link Span} will be recorded - * and collected. + * The LRO Engine, a class that performs polling. */ -var SamplingDecision; -(function (SamplingDecision) { - /** - * `Span.isRecording() === false`, span will not be recorded and all events - * and attributes will be dropped. - */ - SamplingDecision[SamplingDecision["NOT_RECORD"] = 0] = "NOT_RECORD"; - /** - * `Span.isRecording() === true`, but `Sampled` flag in {@link TraceFlags} - * MUST NOT be set. - */ - SamplingDecision[SamplingDecision["RECORD"] = 1] = "RECORD"; +class LroEngine extends poller_js_1.Poller { + constructor(lro, options) { + const { intervalInMs = constants_js_1.POLL_INTERVAL_IN_MS, resumeFrom, resolveOnUnsuccessful = false, isDone, lroResourceLocationConfig, processResult, updateState, } = options || {}; + const state = resumeFrom + ? (0, operation_js_2.deserializeState)(resumeFrom) + : {}; + const operation = new operation_js_1.GenericPollOperation(state, lro, !resolveOnUnsuccessful, lroResourceLocationConfig, processResult, updateState, isDone); + super(operation); + this.resolveOnUnsuccessful = resolveOnUnsuccessful; + this.config = { intervalInMs: intervalInMs }; + operation.setPollerConfig(this.config); + } /** - * `Span.isRecording() === true` AND `Sampled` flag in {@link TraceFlags} - * MUST be set. + * The method used by the poller to wait before attempting to update its operation. */ - SamplingDecision[SamplingDecision["RECORD_AND_SAMPLED"] = 2] = "RECORD_AND_SAMPLED"; -})(SamplingDecision = exports.SamplingDecision || (exports.SamplingDecision = {})); -//# sourceMappingURL=SamplingResult.js.map + delay() { + return new Promise((resolve) => setTimeout(() => resolve(), this.config.intervalInMs)); + } +} +exports.LroEngine = LroEngine; +//# sourceMappingURL=lroEngine.js.map /***/ }), -/***/ 955: -/***/ ((__unused_webpack_module, exports) => { +/***/ 77954: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. Object.defineProperty(exports, "__esModule", ({ value: true })); -//# sourceMappingURL=SpanOptions.js.map +exports.GenericPollOperation = void 0; +const operation_js_1 = __nccwpck_require__(57759); +const logger_js_1 = __nccwpck_require__(28121); +const createStateProxy = () => ({ + initState: (config) => ({ config, isStarted: true }), + setCanceled: (state) => (state.isCancelled = true), + setError: (state, error) => (state.error = error), + setResult: (state, result) => (state.result = result), + setRunning: (state) => (state.isStarted = true), + setSucceeded: (state) => (state.isCompleted = true), + setFailed: () => { + /** empty body */ + }, + getError: (state) => state.error, + getResult: (state) => state.result, + isCanceled: (state) => !!state.isCancelled, + isFailed: (state) => !!state.error, + isRunning: (state) => !!state.isStarted, + isSucceeded: (state) => Boolean(state.isCompleted && !state.isCancelled && !state.error), +}); +class GenericPollOperation { + constructor(state, lro, setErrorAsResult, lroResourceLocationConfig, processResult, updateState, isDone) { + this.state = state; + this.lro = lro; + this.setErrorAsResult = setErrorAsResult; + this.lroResourceLocationConfig = lroResourceLocationConfig; + this.processResult = processResult; + this.updateState = updateState; + this.isDone = isDone; + } + setPollerConfig(pollerConfig) { + this.pollerConfig = pollerConfig; + } + async update(options) { + var _a; + const stateProxy = createStateProxy(); + if (!this.state.isStarted) { + this.state = Object.assign(Object.assign({}, this.state), (await (0, operation_js_1.initHttpOperation)({ + lro: this.lro, + stateProxy, + resourceLocationConfig: this.lroResourceLocationConfig, + processResult: this.processResult, + setErrorAsResult: this.setErrorAsResult, + }))); + } + const updateState = this.updateState; + const isDone = this.isDone; + if (!this.state.isCompleted && this.state.error === undefined) { + await (0, operation_js_1.pollHttpOperation)({ + lro: this.lro, + state: this.state, + stateProxy, + processResult: this.processResult, + updateState: updateState + ? (state, { rawResponse }) => updateState(state, rawResponse) + : undefined, + isDone: isDone + ? ({ flatResponse }, state) => isDone(flatResponse, state) + : undefined, + options, + setDelay: (intervalInMs) => { + this.pollerConfig.intervalInMs = intervalInMs; + }, + setErrorAsResult: this.setErrorAsResult, + }); + } + (_a = options === null || options === void 0 ? void 0 : options.fireProgress) === null || _a === void 0 ? void 0 : _a.call(options, this.state); + return this; + } + async cancel() { + logger_js_1.logger.error("`cancelOperation` is deprecated because it wasn't implemented"); + return this; + } + /** + * Serializes the Poller operation. + */ + toString() { + return JSON.stringify({ + state: this.state, + }); + } +} +exports.GenericPollOperation = GenericPollOperation; +//# sourceMappingURL=operation.js.map /***/ }), -/***/ 7492: +/***/ 93586: /***/ ((__unused_webpack_module, exports) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. Object.defineProperty(exports, "__esModule", ({ value: true })); -//# sourceMappingURL=attributes.js.map +//# sourceMappingURL=pollOperation.js.map /***/ }), -/***/ 3326: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +/***/ 17270: +/***/ ((__unused_webpack_module, exports) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.getSpanContext = exports.setSpanContext = exports.deleteSpan = exports.setSpan = exports.getSpan = void 0; -var context_1 = __nccwpck_require__(8242); -var NonRecordingSpan_1 = __nccwpck_require__(1462); -/** - * span key - */ -var SPAN_KEY = context_1.createContextKey('OpenTelemetry Context Key SPAN'); -/** - * Return the span if one exists - * - * @param context context to get span from - */ -function getSpan(context) { - return context.getValue(SPAN_KEY) || undefined; -} -exports.getSpan = getSpan; -/** - * Set the span on a context - * - * @param context context to use as parent - * @param span span to set active - */ -function setSpan(context, span) { - return context.setValue(SPAN_KEY, span); -} -exports.setSpan = setSpan; +exports.Poller = exports.PollerCancelledError = exports.PollerStoppedError = void 0; /** - * Remove current span stored in the context - * - * @param context context to delete span from + * When a poller is manually stopped through the `stopPolling` method, + * the poller will be rejected with an instance of the PollerStoppedError. */ -function deleteSpan(context) { - return context.deleteValue(SPAN_KEY); +class PollerStoppedError extends Error { + constructor(message) { + super(message); + this.name = "PollerStoppedError"; + Object.setPrototypeOf(this, PollerStoppedError.prototype); + } } -exports.deleteSpan = deleteSpan; +exports.PollerStoppedError = PollerStoppedError; /** - * Wrap span context in a NoopSpan and set as span in a new - * context - * - * @param context context to set active span on - * @param spanContext span context to be wrapped + * When the operation is cancelled, the poller will be rejected with an instance + * of the PollerCancelledError. */ -function setSpanContext(context, spanContext) { - return setSpan(context, new NonRecordingSpan_1.NonRecordingSpan(spanContext)); +class PollerCancelledError extends Error { + constructor(message) { + super(message); + this.name = "PollerCancelledError"; + Object.setPrototypeOf(this, PollerCancelledError.prototype); + } } -exports.setSpanContext = setSpanContext; +exports.PollerCancelledError = PollerCancelledError; /** - * Get the span context of the span if it exists. - * - * @param context context to get values from - */ -function getSpanContext(context) { - var _a; - return (_a = getSpan(context)) === null || _a === void 0 ? void 0 : _a.spanContext(); -} -exports.getSpanContext = getSpanContext; -//# sourceMappingURL=context-utils.js.map - -/***/ }), - -/***/ 1760: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * A class that represents the definition of a program that polls through consecutive requests + * until it reaches a state of completion. * - * https://www.apache.org/licenses/LICENSE-2.0 + * A poller can be executed manually, by polling request by request by calling to the `poll()` method repeatedly, until its operation is completed. + * It also provides a way to wait until the operation completes, by calling `pollUntilDone()` and waiting until the operation finishes. + * Pollers can also request the cancellation of the ongoing process to whom is providing the underlying long running operation. * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.INVALID_SPAN_CONTEXT = exports.INVALID_TRACEID = exports.INVALID_SPANID = void 0; -var trace_flags_1 = __nccwpck_require__(6905); -exports.INVALID_SPANID = '0000000000000000'; -exports.INVALID_TRACEID = '00000000000000000000000000000000'; -exports.INVALID_SPAN_CONTEXT = { - traceId: exports.INVALID_TRACEID, - spanId: exports.INVALID_SPANID, - traceFlags: trace_flags_1.TraceFlags.NONE, -}; -//# sourceMappingURL=invalid-span-constants.js.map - -/***/ }), - -/***/ 4023: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors + * ```ts + * const poller = new MyPoller(); * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * // Polling just once: + * await poller.poll(); * - * https://www.apache.org/licenses/LICENSE-2.0 + * // We can try to cancel the request here, by calling: + * // + * // await poller.cancelOperation(); + * // * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -//# sourceMappingURL=link.js.map - -/***/ }), - -/***/ 4416: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors + * // Getting the final result: + * const result = await poller.pollUntilDone(); + * ``` * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * The Poller is defined by two types, a type representing the state of the poller, which + * must include a basic set of properties from `PollOperationState`, + * and a return type defined by `TResult`, which can be anything. * - * https://www.apache.org/licenses/LICENSE-2.0 + * The Poller class implements the `PollerLike` interface, which allows poller implementations to avoid having + * to export the Poller's class directly, and instead only export the already instantiated poller with the PollerLike type. * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -//# sourceMappingURL=span.js.map - -/***/ }), - -/***/ 5769: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - -/* - * Copyright The OpenTelemetry Authors + * ```ts + * class Client { + * public async makePoller: PollerLike { + * const poller = new MyPoller({}); + * // It might be preferred to return the poller after the first request is made, + * // so that some information can be obtained right away. + * await poller.poll(); + * return poller; + * } + * } * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * const poller: PollerLike = myClient.makePoller(); + * ``` * - * https://www.apache.org/licenses/LICENSE-2.0 + * A poller can be created through its constructor, then it can be polled until it's completed. + * At any point in time, the state of the poller can be obtained without delay through the getOperationState method. + * At any point in time, the intermediate forms of the result type can be requested without delay. + * Once the underlying operation is marked as completed, the poller will stop and the final value will be returned. * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -Object.defineProperty(exports, "__esModule", ({ value: true })); -//# sourceMappingURL=span_context.js.map - -/***/ }), - -/***/ 1424: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.SpanKind = void 0; -/* - * Copyright The OpenTelemetry Authors + * ```ts + * const poller = myClient.makePoller(); + * const state: MyOperationState = poller.getOperationState(); * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at + * // The intermediate result can be obtained at any time. + * const result: MyResult | undefined = poller.getResult(); * - * https://www.apache.org/licenses/LICENSE-2.0 + * // The final result can only be obtained after the poller finishes. + * const result: MyResult = await poller.pollUntilDone(); + * ``` * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. */ -var SpanKind; -(function (SpanKind) { - /** Default value. Indicates that the span is used internally. */ - SpanKind[SpanKind["INTERNAL"] = 0] = "INTERNAL"; +// eslint-disable-next-line no-use-before-define +class Poller { + /** + * A poller needs to be initialized by passing in at least the basic properties of the `PollOperation`. + * + * When writing an implementation of a Poller, this implementation needs to deal with the initialization + * of any custom state beyond the basic definition of the poller. The basic poller assumes that the poller's + * operation has already been defined, at least its basic properties. The code below shows how to approach + * the definition of the constructor of a new custom poller. + * + * ```ts + * export class MyPoller extends Poller { + * constructor({ + * // Anything you might need outside of the basics + * }) { + * let state: MyOperationState = { + * privateProperty: private, + * publicProperty: public, + * }; + * + * const operation = { + * state, + * update, + * cancel, + * toString + * } + * + * // Sending the operation to the parent's constructor. + * super(operation); + * + * // You can assign more local properties here. + * } + * } + * ``` + * + * Inside of this constructor, a new promise is created. This will be used to + * tell the user when the poller finishes (see `pollUntilDone()`). The promise's + * resolve and reject methods are also used internally to control when to resolve + * or reject anyone waiting for the poller to finish. + * + * The constructor of a custom implementation of a poller is where any serialized version of + * a previous poller's operation should be deserialized into the operation sent to the + * base constructor. For example: + * + * ```ts + * export class MyPoller extends Poller { + * constructor( + * baseOperation: string | undefined + * ) { + * let state: MyOperationState = {}; + * if (baseOperation) { + * state = { + * ...JSON.parse(baseOperation).state, + * ...state + * }; + * } + * const operation = { + * state, + * // ... + * } + * super(operation); + * } + * } + * ``` + * + * @param operation - Must contain the basic properties of `PollOperation`. + */ + constructor(operation) { + /** controls whether to throw an error if the operation failed or was canceled. */ + this.resolveOnUnsuccessful = false; + this.stopped = true; + this.pollProgressCallbacks = []; + this.operation = operation; + this.promise = new Promise((resolve, reject) => { + this.resolve = resolve; + this.reject = reject; + }); + // This prevents the UnhandledPromiseRejectionWarning in node.js from being thrown. + // The above warning would get thrown if `poller.poll` is called, it returns an error, + // and pullUntilDone did not have a .catch or await try/catch on it's return value. + this.promise.catch(() => { + /* intentionally blank */ + }); + } /** - * Indicates that the span covers server-side handling of an RPC or other - * remote request. + * Starts a loop that will break only if the poller is done + * or if the poller is stopped. */ - SpanKind[SpanKind["SERVER"] = 1] = "SERVER"; + async startPolling(pollOptions = {}) { + if (this.stopped) { + this.stopped = false; + } + while (!this.isStopped() && !this.isDone()) { + await this.poll(pollOptions); + await this.delay(); + } + } /** - * Indicates that the span covers the client-side wrapper around an RPC or - * other remote request. + * pollOnce does one polling, by calling to the update method of the underlying + * poll operation to make any relevant change effective. + * + * It only optionally receives an object with an abortSignal property, from \@azure/abort-controller's AbortSignalLike. + * + * @param options - Optional properties passed to the operation's update method. */ - SpanKind[SpanKind["CLIENT"] = 2] = "CLIENT"; + async pollOnce(options = {}) { + if (!this.isDone()) { + this.operation = await this.operation.update({ + abortSignal: options.abortSignal, + fireProgress: this.fireProgress.bind(this), + }); + } + this.processUpdatedState(); + } /** - * Indicates that the span describes producer sending a message to a - * broker. Unlike client and server, there is no direct critical path latency - * relationship between producer and consumer spans. + * fireProgress calls the functions passed in via onProgress the method of the poller. + * + * It loops over all of the callbacks received from onProgress, and executes them, sending them + * the current operation state. + * + * @param state - The current operation state. */ - SpanKind[SpanKind["PRODUCER"] = 3] = "PRODUCER"; + fireProgress(state) { + for (const callback of this.pollProgressCallbacks) { + callback(state); + } + } /** - * Indicates that the span describes consumer receiving a message from a - * broker. Unlike client and server, there is no direct critical path latency - * relationship between producer and consumer spans. + * Invokes the underlying operation's cancel method. */ - SpanKind[SpanKind["CONSUMER"] = 4] = "CONSUMER"; -})(SpanKind = exports.SpanKind || (exports.SpanKind = {})); -//# sourceMappingURL=span_kind.js.map - -/***/ }), - -/***/ 9745: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - -"use strict"; - -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.wrapSpanContext = exports.isSpanContextValid = exports.isValidSpanId = exports.isValidTraceId = void 0; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -var invalid_span_constants_1 = __nccwpck_require__(1760); -var NonRecordingSpan_1 = __nccwpck_require__(1462); -var VALID_TRACEID_REGEX = /^([0-9a-f]{32})$/i; -var VALID_SPANID_REGEX = /^[0-9a-f]{16}$/i; -function isValidTraceId(traceId) { - return VALID_TRACEID_REGEX.test(traceId) && traceId !== invalid_span_constants_1.INVALID_TRACEID; -} -exports.isValidTraceId = isValidTraceId; -function isValidSpanId(spanId) { - return VALID_SPANID_REGEX.test(spanId) && spanId !== invalid_span_constants_1.INVALID_SPANID; -} -exports.isValidSpanId = isValidSpanId; -/** - * Returns true if this {@link SpanContext} is valid. - * @return true if this {@link SpanContext} is valid. - */ -function isSpanContextValid(spanContext) { - return (isValidTraceId(spanContext.traceId) && isValidSpanId(spanContext.spanId)); -} -exports.isSpanContextValid = isSpanContextValid; -/** - * Wrap the given {@link SpanContext} in a new non-recording {@link Span} - * - * @param spanContext span context to be wrapped - * @returns a new non-recording {@link Span} with the provided context - */ -function wrapSpanContext(spanContext) { - return new NonRecordingSpan_1.NonRecordingSpan(spanContext); -} -exports.wrapSpanContext = wrapSpanContext; -//# sourceMappingURL=spancontext-utils.js.map - -/***/ }), - -/***/ 8845: -/***/ ((__unused_webpack_module, exports) => { - -"use strict"; - -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.SpanStatusCode = void 0; -/** - * An enumeration of status codes. - */ -var SpanStatusCode; -(function (SpanStatusCode) { + async cancelOnce(options = {}) { + this.operation = await this.operation.cancel(options); + } + /** + * Returns a promise that will resolve once a single polling request finishes. + * It does this by calling the update method of the Poller's operation. + * + * It only optionally receives an object with an abortSignal property, from \@azure/abort-controller's AbortSignalLike. + * + * @param options - Optional properties passed to the operation's update method. + */ + poll(options = {}) { + if (!this.pollOncePromise) { + this.pollOncePromise = this.pollOnce(options); + const clearPollOncePromise = () => { + this.pollOncePromise = undefined; + }; + this.pollOncePromise.then(clearPollOncePromise, clearPollOncePromise).catch(this.reject); + } + return this.pollOncePromise; + } + processUpdatedState() { + if (this.operation.state.error) { + this.stopped = true; + if (!this.resolveOnUnsuccessful) { + this.reject(this.operation.state.error); + throw this.operation.state.error; + } + } + if (this.operation.state.isCancelled) { + this.stopped = true; + if (!this.resolveOnUnsuccessful) { + const error = new PollerCancelledError("Operation was canceled"); + this.reject(error); + throw error; + } + } + if (this.isDone() && this.resolve) { + // If the poller has finished polling, this means we now have a result. + // However, it can be the case that TResult is instantiated to void, so + // we are not expecting a result anyway. To assert that we might not + // have a result eventually after finishing polling, we cast the result + // to TResult. + this.resolve(this.getResult()); + } + } + /** + * Returns a promise that will resolve once the underlying operation is completed. + */ + async pollUntilDone(pollOptions = {}) { + if (this.stopped) { + this.startPolling(pollOptions).catch(this.reject); + } + // This is needed because the state could have been updated by + // `cancelOperation`, e.g. the operation is canceled or an error occurred. + this.processUpdatedState(); + return this.promise; + } + /** + * Invokes the provided callback after each polling is completed, + * sending the current state of the poller's operation. + * + * It returns a method that can be used to stop receiving updates on the given callback function. + */ + onProgress(callback) { + this.pollProgressCallbacks.push(callback); + return () => { + this.pollProgressCallbacks = this.pollProgressCallbacks.filter((c) => c !== callback); + }; + } + /** + * Returns true if the poller has finished polling. + */ + isDone() { + const state = this.operation.state; + return Boolean(state.isCompleted || state.isCancelled || state.error); + } + /** + * Stops the poller from continuing to poll. + */ + stopPolling() { + if (!this.stopped) { + this.stopped = true; + if (this.reject) { + this.reject(new PollerStoppedError("This poller is already stopped")); + } + } + } + /** + * Returns true if the poller is stopped. + */ + isStopped() { + return this.stopped; + } + /** + * Attempts to cancel the underlying operation. + * + * It only optionally receives an object with an abortSignal property, from \@azure/abort-controller's AbortSignalLike. + * + * If it's called again before it finishes, it will throw an error. + * + * @param options - Optional properties passed to the operation's update method. + */ + cancelOperation(options = {}) { + if (!this.cancelPromise) { + this.cancelPromise = this.cancelOnce(options); + } + else if (options.abortSignal) { + throw new Error("A cancel request is currently pending"); + } + return this.cancelPromise; + } /** - * The default status. + * Returns the state of the operation. + * + * Even though TState will be the same type inside any of the methods of any extension of the Poller class, + * implementations of the pollers can customize what's shared with the public by writing their own + * version of the `getOperationState` method, and by defining two types, one representing the internal state of the poller + * and a public type representing a safe to share subset of the properties of the internal state. + * Their definition of getOperationState can then return their public type. + * + * Example: + * + * ```ts + * // Let's say we have our poller's operation state defined as: + * interface MyOperationState extends PollOperationState { + * privateProperty?: string; + * publicProperty?: string; + * } + * + * // To allow us to have a true separation of public and private state, we have to define another interface: + * interface PublicState extends PollOperationState { + * publicProperty?: string; + * } + * + * // Then, we define our Poller as follows: + * export class MyPoller extends Poller { + * // ... More content is needed here ... + * + * public getOperationState(): PublicState { + * const state: PublicState = this.operation.state; + * return { + * // Properties from PollOperationState + * isStarted: state.isStarted, + * isCompleted: state.isCompleted, + * isCancelled: state.isCancelled, + * error: state.error, + * result: state.result, + * + * // The only other property needed by PublicState. + * publicProperty: state.publicProperty + * } + * } + * } + * ``` + * + * You can see this in the tests of this repository, go to the file: + * `../test/utils/testPoller.ts` + * and look for the getOperationState implementation. */ - SpanStatusCode[SpanStatusCode["UNSET"] = 0] = "UNSET"; + getOperationState() { + return this.operation.state; + } /** - * The operation has been validated by an Application developer or - * Operator to have completed successfully. + * Returns the result value of the operation, + * regardless of the state of the poller. + * It can return undefined or an incomplete form of the final TResult value + * depending on the implementation. */ - SpanStatusCode[SpanStatusCode["OK"] = 1] = "OK"; + getResult() { + const state = this.operation.state; + return state.result; + } /** - * The operation contains an error. + * Returns a serialized version of the poller's operation + * by invoking the operation's toString method. */ - SpanStatusCode[SpanStatusCode["ERROR"] = 2] = "ERROR"; -})(SpanStatusCode = exports.SpanStatusCode || (exports.SpanStatusCode = {})); -//# sourceMappingURL=status.js.map + toString() { + return this.operation.toString(); + } +} +exports.Poller = Poller; +//# sourceMappingURL=poller.js.map /***/ }), -/***/ 6905: -/***/ ((__unused_webpack_module, exports) => { +/***/ 28121: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.TraceFlags = void 0; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. +exports.logger = void 0; +const logger_1 = __nccwpck_require__(89497); +/** + * The `@azure/logger` configuration for this package. + * @internal */ -var TraceFlags; -(function (TraceFlags) { - /** Represents no flag set. */ - TraceFlags[TraceFlags["NONE"] = 0] = "NONE"; - /** Bit to represent whether trace is sampled in trace flags. */ - TraceFlags[TraceFlags["SAMPLED"] = 1] = "SAMPLED"; -})(TraceFlags = exports.TraceFlags || (exports.TraceFlags = {})); -//# sourceMappingURL=trace_flags.js.map +exports.logger = (0, logger_1.createClientLogger)("core-lro"); +//# sourceMappingURL=logger.js.map /***/ }), -/***/ 8384: +/***/ 53846: /***/ ((__unused_webpack_module, exports) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. Object.defineProperty(exports, "__esModule", ({ value: true })); -//# sourceMappingURL=trace_state.js.map +exports.terminalStates = exports.POLL_INTERVAL_IN_MS = void 0; +/** + * The default time interval to wait before sending the next polling request. + */ +exports.POLL_INTERVAL_IN_MS = 2000; +/** + * The closed set of terminal states. + */ +exports.terminalStates = ["succeeded", "canceled", "failed"]; +//# sourceMappingURL=constants.js.map /***/ }), -/***/ 3168: -/***/ ((__unused_webpack_module, exports) => { +/***/ 70281: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. Object.defineProperty(exports, "__esModule", ({ value: true })); -//# sourceMappingURL=tracer.js.map +exports.pollOperation = exports.initOperation = exports.deserializeState = void 0; +const logger_js_1 = __nccwpck_require__(28121); +const constants_js_1 = __nccwpck_require__(53846); +/** + * Deserializes the state + */ +function deserializeState(serializedState) { + try { + return JSON.parse(serializedState).state; + } + catch (e) { + throw new Error(`Unable to deserialize input state: ${serializedState}`); + } +} +exports.deserializeState = deserializeState; +function setStateError(inputs) { + const { state, stateProxy, isOperationError } = inputs; + return (error) => { + if (isOperationError(error)) { + stateProxy.setError(state, error); + stateProxy.setFailed(state); + } + throw error; + }; +} +function appendReadableErrorMessage(currentMessage, innerMessage) { + let message = currentMessage; + if (message.slice(-1) !== ".") { + message = message + "."; + } + return message + " " + innerMessage; +} +function simplifyError(err) { + let message = err.message; + let code = err.code; + let curErr = err; + while (curErr.innererror) { + curErr = curErr.innererror; + code = curErr.code; + message = appendReadableErrorMessage(message, curErr.message); + } + return { + code, + message, + }; +} +function processOperationStatus(result) { + const { state, stateProxy, status, isDone, processResult, getError, response, setErrorAsResult } = result; + switch (status) { + case "succeeded": { + stateProxy.setSucceeded(state); + break; + } + case "failed": { + const err = getError === null || getError === void 0 ? void 0 : getError(response); + let postfix = ""; + if (err) { + const { code, message } = simplifyError(err); + postfix = `. ${code}. ${message}`; + } + const errStr = `The long-running operation has failed${postfix}`; + stateProxy.setError(state, new Error(errStr)); + stateProxy.setFailed(state); + logger_js_1.logger.warning(errStr); + break; + } + case "canceled": { + stateProxy.setCanceled(state); + break; + } + } + if ((isDone === null || isDone === void 0 ? void 0 : isDone(response, state)) || + (isDone === undefined && + ["succeeded", "canceled"].concat(setErrorAsResult ? [] : ["failed"]).includes(status))) { + stateProxy.setResult(state, buildResult({ + response, + state, + processResult, + })); + } +} +function buildResult(inputs) { + const { processResult, response, state } = inputs; + return processResult ? processResult(response, state) : response; +} +/** + * Initiates the long-running operation. + */ +async function initOperation(inputs) { + const { init, stateProxy, processResult, getOperationStatus, withOperationLocation, setErrorAsResult, } = inputs; + const { operationLocation, resourceLocation, metadata, response } = await init(); + if (operationLocation) + withOperationLocation === null || withOperationLocation === void 0 ? void 0 : withOperationLocation(operationLocation, false); + const config = { + metadata, + operationLocation, + resourceLocation, + }; + logger_js_1.logger.verbose(`LRO: Operation description:`, config); + const state = stateProxy.initState(config); + const status = getOperationStatus({ response, state, operationLocation }); + processOperationStatus({ state, status, stateProxy, response, setErrorAsResult, processResult }); + return state; +} +exports.initOperation = initOperation; +async function pollOperationHelper(inputs) { + const { poll, state, stateProxy, operationLocation, getOperationStatus, getResourceLocation, isOperationError, options, } = inputs; + const response = await poll(operationLocation, options).catch(setStateError({ + state, + stateProxy, + isOperationError, + })); + const status = getOperationStatus(response, state); + logger_js_1.logger.verbose(`LRO: Status:\n\tPolling from: ${state.config.operationLocation}\n\tOperation status: ${status}\n\tPolling status: ${constants_js_1.terminalStates.includes(status) ? "Stopped" : "Running"}`); + if (status === "succeeded") { + const resourceLocation = getResourceLocation(response, state); + if (resourceLocation !== undefined) { + return { + response: await poll(resourceLocation).catch(setStateError({ state, stateProxy, isOperationError })), + status, + }; + } + } + return { response, status }; +} +/** Polls the long-running operation. */ +async function pollOperation(inputs) { + const { poll, state, stateProxy, options, getOperationStatus, getResourceLocation, getOperationLocation, isOperationError, withOperationLocation, getPollingInterval, processResult, getError, updateState, setDelay, isDone, setErrorAsResult, } = inputs; + const { operationLocation } = state.config; + if (operationLocation !== undefined) { + const { response, status } = await pollOperationHelper({ + poll, + getOperationStatus, + state, + stateProxy, + operationLocation, + getResourceLocation, + isOperationError, + options, + }); + processOperationStatus({ + status, + response, + state, + stateProxy, + isDone, + processResult, + getError, + setErrorAsResult, + }); + if (!constants_js_1.terminalStates.includes(status)) { + const intervalInMs = getPollingInterval === null || getPollingInterval === void 0 ? void 0 : getPollingInterval(response); + if (intervalInMs) + setDelay(intervalInMs); + const location = getOperationLocation === null || getOperationLocation === void 0 ? void 0 : getOperationLocation(response, state); + if (location !== undefined) { + const isUpdated = operationLocation !== location; + state.config.operationLocation = location; + withOperationLocation === null || withOperationLocation === void 0 ? void 0 : withOperationLocation(location, isUpdated); + } + else + withOperationLocation === null || withOperationLocation === void 0 ? void 0 : withOperationLocation(operationLocation, false); + } + updateState === null || updateState === void 0 ? void 0 : updateState(state, response); + } +} +exports.pollOperation = pollOperation; +//# sourceMappingURL=operation.js.map /***/ }), -/***/ 891: -/***/ ((__unused_webpack_module, exports) => { +/***/ 76713: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. Object.defineProperty(exports, "__esModule", ({ value: true })); -//# sourceMappingURL=tracer_provider.js.map +exports.buildCreatePoller = void 0; +const operation_js_1 = __nccwpck_require__(70281); +const constants_js_1 = __nccwpck_require__(53846); +const core_util_1 = __nccwpck_require__(80637); +const createStateProxy = () => ({ + /** + * The state at this point is created to be of type OperationState. + * It will be updated later to be of type TState when the + * customer-provided callback, `updateState`, is called during polling. + */ + initState: (config) => ({ status: "running", config }), + setCanceled: (state) => (state.status = "canceled"), + setError: (state, error) => (state.error = error), + setResult: (state, result) => (state.result = result), + setRunning: (state) => (state.status = "running"), + setSucceeded: (state) => (state.status = "succeeded"), + setFailed: (state) => (state.status = "failed"), + getError: (state) => state.error, + getResult: (state) => state.result, + isCanceled: (state) => state.status === "canceled", + isFailed: (state) => state.status === "failed", + isRunning: (state) => state.status === "running", + isSucceeded: (state) => state.status === "succeeded", +}); +/** + * Returns a poller factory. + */ +function buildCreatePoller(inputs) { + const { getOperationLocation, getStatusFromInitialResponse, getStatusFromPollResponse, isOperationError, getResourceLocation, getPollingInterval, getError, resolveOnUnsuccessful, } = inputs; + return async ({ init, poll }, options) => { + const { processResult, updateState, withOperationLocation: withOperationLocationCallback, intervalInMs = constants_js_1.POLL_INTERVAL_IN_MS, restoreFrom, } = options || {}; + const stateProxy = createStateProxy(); + const withOperationLocation = withOperationLocationCallback + ? (() => { + let called = false; + return (operationLocation, isUpdated) => { + if (isUpdated) + withOperationLocationCallback(operationLocation); + else if (!called) + withOperationLocationCallback(operationLocation); + called = true; + }; + })() + : undefined; + const state = restoreFrom + ? (0, operation_js_1.deserializeState)(restoreFrom) + : await (0, operation_js_1.initOperation)({ + init, + stateProxy, + processResult, + getOperationStatus: getStatusFromInitialResponse, + withOperationLocation, + setErrorAsResult: !resolveOnUnsuccessful, + }); + let resultPromise; + const abortController = new AbortController(); + const handlers = new Map(); + const handleProgressEvents = async () => handlers.forEach((h) => h(state)); + const cancelErrMsg = "Operation was canceled"; + let currentPollIntervalInMs = intervalInMs; + const poller = { + getOperationState: () => state, + getResult: () => state.result, + isDone: () => ["succeeded", "failed", "canceled"].includes(state.status), + isStopped: () => resultPromise === undefined, + stopPolling: () => { + abortController.abort(); + }, + toString: () => JSON.stringify({ + state, + }), + onProgress: (callback) => { + const s = Symbol(); + handlers.set(s, callback); + return () => handlers.delete(s); + }, + pollUntilDone: (pollOptions) => (resultPromise !== null && resultPromise !== void 0 ? resultPromise : (resultPromise = (async () => { + const { abortSignal: inputAbortSignal } = pollOptions || {}; + // In the future we can use AbortSignal.any() instead + function abortListener() { + abortController.abort(); + } + const abortSignal = abortController.signal; + if (inputAbortSignal === null || inputAbortSignal === void 0 ? void 0 : inputAbortSignal.aborted) { + abortController.abort(); + } + else if (!abortSignal.aborted) { + inputAbortSignal === null || inputAbortSignal === void 0 ? void 0 : inputAbortSignal.addEventListener("abort", abortListener, { once: true }); + } + try { + if (!poller.isDone()) { + await poller.poll({ abortSignal }); + while (!poller.isDone()) { + await (0, core_util_1.delay)(currentPollIntervalInMs, { abortSignal }); + await poller.poll({ abortSignal }); + } + } + } + finally { + inputAbortSignal === null || inputAbortSignal === void 0 ? void 0 : inputAbortSignal.removeEventListener("abort", abortListener); + } + if (resolveOnUnsuccessful) { + return poller.getResult(); + } + else { + switch (state.status) { + case "succeeded": + return poller.getResult(); + case "canceled": + throw new Error(cancelErrMsg); + case "failed": + throw state.error; + case "notStarted": + case "running": + throw new Error(`Polling completed without succeeding or failing`); + } + } + })().finally(() => { + resultPromise = undefined; + }))), + async poll(pollOptions) { + if (resolveOnUnsuccessful) { + if (poller.isDone()) + return; + } + else { + switch (state.status) { + case "succeeded": + return; + case "canceled": + throw new Error(cancelErrMsg); + case "failed": + throw state.error; + } + } + await (0, operation_js_1.pollOperation)({ + poll, + state, + stateProxy, + getOperationLocation, + isOperationError, + withOperationLocation, + getPollingInterval, + getOperationStatus: getStatusFromPollResponse, + getResourceLocation, + processResult, + getError, + updateState, + options: pollOptions, + setDelay: (pollIntervalInMs) => { + currentPollIntervalInMs = pollIntervalInMs; + }, + setErrorAsResult: !resolveOnUnsuccessful, + }); + await handleProgressEvents(); + if (!resolveOnUnsuccessful) { + switch (state.status) { + case "canceled": + throw new Error(cancelErrMsg); + case "failed": + throw state.error; + } + } + }, + }; + return poller; + }; +} +exports.buildCreatePoller = buildCreatePoller; +//# sourceMappingURL=poller.js.map /***/ }), -/***/ 8996: +/***/ 43171: /***/ ((__unused_webpack_module, exports) => { "use strict"; -/* - * Copyright The OpenTelemetry Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.VERSION = void 0; -// this is autogenerated file, see scripts/version-update.js -exports.VERSION = '1.0.4'; -//# sourceMappingURL=version.js.map +exports.DEFAULT_RETRY_POLICY_COUNT = exports.SDK_VERSION = void 0; +exports.SDK_VERSION = "1.22.2"; +exports.DEFAULT_RETRY_POLICY_COUNT = 3; +//# sourceMappingURL=constants.js.map /***/ }), -/***/ 4812: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { +/***/ 81060: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -module.exports = -{ - parallel : __nccwpck_require__(8210), - serial : __nccwpck_require__(445), - serialOrdered : __nccwpck_require__(3578) -}; +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.createPipelineFromOptions = createPipelineFromOptions; +const logPolicy_js_1 = __nccwpck_require__(46821); +const pipeline_js_1 = __nccwpck_require__(83906); +const redirectPolicy_js_1 = __nccwpck_require__(98526); +const userAgentPolicy_js_1 = __nccwpck_require__(88935); +const multipartPolicy_js_1 = __nccwpck_require__(19042); +const decompressResponsePolicy_js_1 = __nccwpck_require__(57618); +const defaultRetryPolicy_js_1 = __nccwpck_require__(48549); +const formDataPolicy_js_1 = __nccwpck_require__(16501); +const core_util_1 = __nccwpck_require__(80637); +const proxyPolicy_js_1 = __nccwpck_require__(94761); +const setClientRequestIdPolicy_js_1 = __nccwpck_require__(93860); +const agentPolicy_js_1 = __nccwpck_require__(15093); +const tlsPolicy_js_1 = __nccwpck_require__(88446); +const tracingPolicy_js_1 = __nccwpck_require__(80606); +const wrapAbortSignalLikePolicy_js_1 = __nccwpck_require__(48753); +/** + * Create a new pipeline with a default set of customizable policies. + * @param options - Options to configure a custom pipeline. + */ +function createPipelineFromOptions(options) { + const pipeline = (0, pipeline_js_1.createEmptyPipeline)(); + if (core_util_1.isNodeLike) { + if (options.agent) { + pipeline.addPolicy((0, agentPolicy_js_1.agentPolicy)(options.agent)); + } + if (options.tlsOptions) { + pipeline.addPolicy((0, tlsPolicy_js_1.tlsPolicy)(options.tlsOptions)); + } + pipeline.addPolicy((0, proxyPolicy_js_1.proxyPolicy)(options.proxyOptions)); + pipeline.addPolicy((0, decompressResponsePolicy_js_1.decompressResponsePolicy)()); + } + pipeline.addPolicy((0, wrapAbortSignalLikePolicy_js_1.wrapAbortSignalLikePolicy)()); + pipeline.addPolicy((0, formDataPolicy_js_1.formDataPolicy)(), { beforePolicies: [multipartPolicy_js_1.multipartPolicyName] }); + pipeline.addPolicy((0, userAgentPolicy_js_1.userAgentPolicy)(options.userAgentOptions)); + pipeline.addPolicy((0, setClientRequestIdPolicy_js_1.setClientRequestIdPolicy)(options.telemetryOptions?.clientRequestIdHeaderName)); + // The multipart policy is added after policies with no phase, so that + // policies can be added between it and formDataPolicy to modify + // properties (e.g., making the boundary constant in recorded tests). + pipeline.addPolicy((0, multipartPolicy_js_1.multipartPolicy)(), { afterPhase: "Deserialize" }); + pipeline.addPolicy((0, defaultRetryPolicy_js_1.defaultRetryPolicy)(options.retryOptions), { phase: "Retry" }); + pipeline.addPolicy((0, tracingPolicy_js_1.tracingPolicy)({ ...options.userAgentOptions, ...options.loggingOptions }), { + afterPhase: "Retry", + }); + if (core_util_1.isNodeLike) { + // Both XHR and Fetch expect to handle redirects automatically, + // so only include this policy when we're in Node. + pipeline.addPolicy((0, redirectPolicy_js_1.redirectPolicy)(options.redirectOptions), { afterPhase: "Retry" }); + } + pipeline.addPolicy((0, logPolicy_js_1.logPolicy)(options.loggingOptions), { afterPhase: "Sign" }); + return pipeline; +} +//# sourceMappingURL=createPipelineFromOptions.js.map /***/ }), -/***/ 1700: -/***/ ((module) => { +/***/ 88609: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -// API -module.exports = abort; +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.createDefaultHttpClient = createDefaultHttpClient; +const ts_http_runtime_1 = __nccwpck_require__(83335); +const wrapAbortSignal_js_1 = __nccwpck_require__(7188); /** - * Aborts leftover active jobs - * - * @param {object} state - current state object + * Create the correct HttpClient for the current environment. */ -function abort(state) -{ - Object.keys(state.jobs).forEach(clean.bind(state)); - - // reset leftover jobs - state.jobs = {}; +function createDefaultHttpClient() { + const client = (0, ts_http_runtime_1.createDefaultHttpClient)(); + return { + async sendRequest(request) { + // we wrap any AbortSignalLike here since the TypeSpec runtime expects a native AbortSignal. + // 99% of the time, this should be a no-op since a native AbortSignal is passed in. + const { abortSignal, cleanup } = request.abortSignal + ? (0, wrapAbortSignal_js_1.wrapAbortSignalLike)(request.abortSignal) + : {}; + try { + request.abortSignal = abortSignal; + return await client.sendRequest(request); + } + finally { + cleanup?.(); + } + }, + }; } +//# sourceMappingURL=defaultHttpClient.js.map + +/***/ }), +/***/ 60118: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.createHttpHeaders = createHttpHeaders; +const ts_http_runtime_1 = __nccwpck_require__(83335); /** - * Cleans up leftover job by invoking abort function for the provided job id - * - * @this state - * @param {string|number} key - job id to abort + * Creates an object that satisfies the `HttpHeaders` interface. + * @param rawHeaders - A simple object representing initial headers */ -function clean(key) -{ - if (typeof this.jobs[key] == 'function') - { - this.jobs[key](); - } +function createHttpHeaders(rawHeaders) { + return (0, ts_http_runtime_1.createHttpHeaders)(rawHeaders); } - +//# sourceMappingURL=httpHeaders.js.map /***/ }), -/***/ 2794: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { +/***/ 29146: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var defer = __nccwpck_require__(5295); +"use strict"; -// API -module.exports = async; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.createFileFromStream = exports.createFile = exports.agentPolicyName = exports.agentPolicy = exports.auxiliaryAuthenticationHeaderPolicyName = exports.auxiliaryAuthenticationHeaderPolicy = exports.ndJsonPolicyName = exports.ndJsonPolicy = exports.bearerTokenAuthenticationPolicyName = exports.bearerTokenAuthenticationPolicy = exports.formDataPolicyName = exports.formDataPolicy = exports.tlsPolicyName = exports.tlsPolicy = exports.userAgentPolicyName = exports.userAgentPolicy = exports.defaultRetryPolicy = exports.tracingPolicyName = exports.tracingPolicy = exports.retryPolicy = exports.throttlingRetryPolicyName = exports.throttlingRetryPolicy = exports.systemErrorRetryPolicyName = exports.systemErrorRetryPolicy = exports.redirectPolicyName = exports.redirectPolicy = exports.getDefaultProxySettings = exports.proxyPolicyName = exports.proxyPolicy = exports.multipartPolicyName = exports.multipartPolicy = exports.logPolicyName = exports.logPolicy = exports.setClientRequestIdPolicyName = exports.setClientRequestIdPolicy = exports.exponentialRetryPolicyName = exports.exponentialRetryPolicy = exports.decompressResponsePolicyName = exports.decompressResponsePolicy = exports.isRestError = exports.RestError = exports.createPipelineRequest = exports.createHttpHeaders = exports.createDefaultHttpClient = exports.createPipelineFromOptions = exports.createEmptyPipeline = void 0; +var pipeline_js_1 = __nccwpck_require__(83906); +Object.defineProperty(exports, "createEmptyPipeline", ({ enumerable: true, get: function () { return pipeline_js_1.createEmptyPipeline; } })); +var createPipelineFromOptions_js_1 = __nccwpck_require__(81060); +Object.defineProperty(exports, "createPipelineFromOptions", ({ enumerable: true, get: function () { return createPipelineFromOptions_js_1.createPipelineFromOptions; } })); +var defaultHttpClient_js_1 = __nccwpck_require__(88609); +Object.defineProperty(exports, "createDefaultHttpClient", ({ enumerable: true, get: function () { return defaultHttpClient_js_1.createDefaultHttpClient; } })); +var httpHeaders_js_1 = __nccwpck_require__(60118); +Object.defineProperty(exports, "createHttpHeaders", ({ enumerable: true, get: function () { return httpHeaders_js_1.createHttpHeaders; } })); +var pipelineRequest_js_1 = __nccwpck_require__(93536); +Object.defineProperty(exports, "createPipelineRequest", ({ enumerable: true, get: function () { return pipelineRequest_js_1.createPipelineRequest; } })); +var restError_js_1 = __nccwpck_require__(61036); +Object.defineProperty(exports, "RestError", ({ enumerable: true, get: function () { return restError_js_1.RestError; } })); +Object.defineProperty(exports, "isRestError", ({ enumerable: true, get: function () { return restError_js_1.isRestError; } })); +var decompressResponsePolicy_js_1 = __nccwpck_require__(57618); +Object.defineProperty(exports, "decompressResponsePolicy", ({ enumerable: true, get: function () { return decompressResponsePolicy_js_1.decompressResponsePolicy; } })); +Object.defineProperty(exports, "decompressResponsePolicyName", ({ enumerable: true, get: function () { return decompressResponsePolicy_js_1.decompressResponsePolicyName; } })); +var exponentialRetryPolicy_js_1 = __nccwpck_require__(1598); +Object.defineProperty(exports, "exponentialRetryPolicy", ({ enumerable: true, get: function () { return exponentialRetryPolicy_js_1.exponentialRetryPolicy; } })); +Object.defineProperty(exports, "exponentialRetryPolicyName", ({ enumerable: true, get: function () { return exponentialRetryPolicy_js_1.exponentialRetryPolicyName; } })); +var setClientRequestIdPolicy_js_1 = __nccwpck_require__(93860); +Object.defineProperty(exports, "setClientRequestIdPolicy", ({ enumerable: true, get: function () { return setClientRequestIdPolicy_js_1.setClientRequestIdPolicy; } })); +Object.defineProperty(exports, "setClientRequestIdPolicyName", ({ enumerable: true, get: function () { return setClientRequestIdPolicy_js_1.setClientRequestIdPolicyName; } })); +var logPolicy_js_1 = __nccwpck_require__(46821); +Object.defineProperty(exports, "logPolicy", ({ enumerable: true, get: function () { return logPolicy_js_1.logPolicy; } })); +Object.defineProperty(exports, "logPolicyName", ({ enumerable: true, get: function () { return logPolicy_js_1.logPolicyName; } })); +var multipartPolicy_js_1 = __nccwpck_require__(19042); +Object.defineProperty(exports, "multipartPolicy", ({ enumerable: true, get: function () { return multipartPolicy_js_1.multipartPolicy; } })); +Object.defineProperty(exports, "multipartPolicyName", ({ enumerable: true, get: function () { return multipartPolicy_js_1.multipartPolicyName; } })); +var proxyPolicy_js_1 = __nccwpck_require__(94761); +Object.defineProperty(exports, "proxyPolicy", ({ enumerable: true, get: function () { return proxyPolicy_js_1.proxyPolicy; } })); +Object.defineProperty(exports, "proxyPolicyName", ({ enumerable: true, get: function () { return proxyPolicy_js_1.proxyPolicyName; } })); +Object.defineProperty(exports, "getDefaultProxySettings", ({ enumerable: true, get: function () { return proxyPolicy_js_1.getDefaultProxySettings; } })); +var redirectPolicy_js_1 = __nccwpck_require__(98526); +Object.defineProperty(exports, "redirectPolicy", ({ enumerable: true, get: function () { return redirectPolicy_js_1.redirectPolicy; } })); +Object.defineProperty(exports, "redirectPolicyName", ({ enumerable: true, get: function () { return redirectPolicy_js_1.redirectPolicyName; } })); +var systemErrorRetryPolicy_js_1 = __nccwpck_require__(72470); +Object.defineProperty(exports, "systemErrorRetryPolicy", ({ enumerable: true, get: function () { return systemErrorRetryPolicy_js_1.systemErrorRetryPolicy; } })); +Object.defineProperty(exports, "systemErrorRetryPolicyName", ({ enumerable: true, get: function () { return systemErrorRetryPolicy_js_1.systemErrorRetryPolicyName; } })); +var throttlingRetryPolicy_js_1 = __nccwpck_require__(54802); +Object.defineProperty(exports, "throttlingRetryPolicy", ({ enumerable: true, get: function () { return throttlingRetryPolicy_js_1.throttlingRetryPolicy; } })); +Object.defineProperty(exports, "throttlingRetryPolicyName", ({ enumerable: true, get: function () { return throttlingRetryPolicy_js_1.throttlingRetryPolicyName; } })); +var retryPolicy_js_1 = __nccwpck_require__(39700); +Object.defineProperty(exports, "retryPolicy", ({ enumerable: true, get: function () { return retryPolicy_js_1.retryPolicy; } })); +var tracingPolicy_js_1 = __nccwpck_require__(80606); +Object.defineProperty(exports, "tracingPolicy", ({ enumerable: true, get: function () { return tracingPolicy_js_1.tracingPolicy; } })); +Object.defineProperty(exports, "tracingPolicyName", ({ enumerable: true, get: function () { return tracingPolicy_js_1.tracingPolicyName; } })); +var defaultRetryPolicy_js_1 = __nccwpck_require__(48549); +Object.defineProperty(exports, "defaultRetryPolicy", ({ enumerable: true, get: function () { return defaultRetryPolicy_js_1.defaultRetryPolicy; } })); +var userAgentPolicy_js_1 = __nccwpck_require__(88935); +Object.defineProperty(exports, "userAgentPolicy", ({ enumerable: true, get: function () { return userAgentPolicy_js_1.userAgentPolicy; } })); +Object.defineProperty(exports, "userAgentPolicyName", ({ enumerable: true, get: function () { return userAgentPolicy_js_1.userAgentPolicyName; } })); +var tlsPolicy_js_1 = __nccwpck_require__(88446); +Object.defineProperty(exports, "tlsPolicy", ({ enumerable: true, get: function () { return tlsPolicy_js_1.tlsPolicy; } })); +Object.defineProperty(exports, "tlsPolicyName", ({ enumerable: true, get: function () { return tlsPolicy_js_1.tlsPolicyName; } })); +var formDataPolicy_js_1 = __nccwpck_require__(16501); +Object.defineProperty(exports, "formDataPolicy", ({ enumerable: true, get: function () { return formDataPolicy_js_1.formDataPolicy; } })); +Object.defineProperty(exports, "formDataPolicyName", ({ enumerable: true, get: function () { return formDataPolicy_js_1.formDataPolicyName; } })); +var bearerTokenAuthenticationPolicy_js_1 = __nccwpck_require__(11319); +Object.defineProperty(exports, "bearerTokenAuthenticationPolicy", ({ enumerable: true, get: function () { return bearerTokenAuthenticationPolicy_js_1.bearerTokenAuthenticationPolicy; } })); +Object.defineProperty(exports, "bearerTokenAuthenticationPolicyName", ({ enumerable: true, get: function () { return bearerTokenAuthenticationPolicy_js_1.bearerTokenAuthenticationPolicyName; } })); +var ndJsonPolicy_js_1 = __nccwpck_require__(82032); +Object.defineProperty(exports, "ndJsonPolicy", ({ enumerable: true, get: function () { return ndJsonPolicy_js_1.ndJsonPolicy; } })); +Object.defineProperty(exports, "ndJsonPolicyName", ({ enumerable: true, get: function () { return ndJsonPolicy_js_1.ndJsonPolicyName; } })); +var auxiliaryAuthenticationHeaderPolicy_js_1 = __nccwpck_require__(21760); +Object.defineProperty(exports, "auxiliaryAuthenticationHeaderPolicy", ({ enumerable: true, get: function () { return auxiliaryAuthenticationHeaderPolicy_js_1.auxiliaryAuthenticationHeaderPolicy; } })); +Object.defineProperty(exports, "auxiliaryAuthenticationHeaderPolicyName", ({ enumerable: true, get: function () { return auxiliaryAuthenticationHeaderPolicy_js_1.auxiliaryAuthenticationHeaderPolicyName; } })); +var agentPolicy_js_1 = __nccwpck_require__(15093); +Object.defineProperty(exports, "agentPolicy", ({ enumerable: true, get: function () { return agentPolicy_js_1.agentPolicy; } })); +Object.defineProperty(exports, "agentPolicyName", ({ enumerable: true, get: function () { return agentPolicy_js_1.agentPolicyName; } })); +var file_js_1 = __nccwpck_require__(3224); +Object.defineProperty(exports, "createFile", ({ enumerable: true, get: function () { return file_js_1.createFile; } })); +Object.defineProperty(exports, "createFileFromStream", ({ enumerable: true, get: function () { return file_js_1.createFileFromStream; } })); +//# sourceMappingURL=index.js.map -/** - * Runs provided callback asynchronously - * even if callback itself is not - * - * @param {function} callback - callback to invoke - * @returns {function} - augmented callback - */ -function async(callback) -{ - var isAsync = false; +/***/ }), - // check if async happened - defer(function() { isAsync = true; }); +/***/ 30648: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - return function async_callback(err, result) - { - if (isAsync) - { - callback(err, result); - } - else - { - defer(function nextTick_callback() - { - callback(err, result); - }); - } - }; -} +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.logger = void 0; +const logger_1 = __nccwpck_require__(89497); +exports.logger = (0, logger_1.createClientLogger)("core-rest-pipeline"); +//# sourceMappingURL=log.js.map /***/ }), -/***/ 5295: -/***/ ((module) => { +/***/ 83906: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -module.exports = defer; +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.createEmptyPipeline = createEmptyPipeline; +const ts_http_runtime_1 = __nccwpck_require__(83335); /** - * Runs provided function on next iteration of the event loop - * - * @param {function} fn - function to run - */ -function defer(fn) -{ - var nextTick = typeof setImmediate == 'function' - ? setImmediate - : ( - typeof process == 'object' && typeof process.nextTick == 'function' - ? process.nextTick - : null - ); - - if (nextTick) - { - nextTick(fn); - } - else - { - setTimeout(fn, 0); - } + * Creates a totally empty pipeline. + * Useful for testing or creating a custom one. + */ +function createEmptyPipeline() { + return (0, ts_http_runtime_1.createEmptyPipeline)(); } - +//# sourceMappingURL=pipeline.js.map /***/ }), -/***/ 9023: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -var async = __nccwpck_require__(2794) - , abort = __nccwpck_require__(1700) - ; +/***/ 93536: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -// API -module.exports = iterate; +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.createPipelineRequest = createPipelineRequest; +const ts_http_runtime_1 = __nccwpck_require__(83335); /** - * Iterates over each job object - * - * @param {array|object} list - array or object (named list) to iterate over - * @param {function} iterator - iterator to run - * @param {object} state - current job status - * @param {function} callback - invoked when all elements processed + * Creates a new pipeline request with the given options. + * This method is to allow for the easy setting of default values and not required. + * @param options - The options to create the request with. */ -function iterate(list, iterator, state, callback) -{ - // store current index - var key = state['keyedList'] ? state['keyedList'][state.index] : state.index; +function createPipelineRequest(options) { + // Cast required due to difference between ts-http-runtime requiring AbortSignal while core-rest-pipeline allows + // the more generic AbortSignalLike. The wrapAbortSignalLike pipeline policy will take care of ensuring that any AbortSignalLike in the request + // is converted into a true AbortSignal. + return (0, ts_http_runtime_1.createPipelineRequest)(options); +} +//# sourceMappingURL=pipelineRequest.js.map - state.jobs[key] = runJob(iterator, key, list[key], function(error, output) - { - // don't repeat yourself - // skip secondary callbacks - if (!(key in state.jobs)) - { - return; - } +/***/ }), - // clean up jobs - delete state.jobs[key]; +/***/ 15093: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - if (error) - { - // don't process rest of the results - // stop still active jobs - // and reset the list - abort(state); - } - else - { - state.results[key] = output; - } +"use strict"; - // return salvaged results - callback(error, state.results); - }); +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.agentPolicyName = void 0; +exports.agentPolicy = agentPolicy; +const policies_1 = __nccwpck_require__(81914); +/** + * Name of the Agent Policy + */ +exports.agentPolicyName = policies_1.agentPolicyName; +/** + * Gets a pipeline policy that sets http.agent + */ +function agentPolicy(agent) { + return (0, policies_1.agentPolicy)(agent); } +//# sourceMappingURL=agentPolicy.js.map -/** - * Runs iterator over provided job element - * - * @param {function} iterator - iterator to invoke - * @param {string|number} key - key/index of the element in the list of jobs - * @param {mixed} item - job description - * @param {function} callback - invoked after iterator is done with the job - * @returns {function|mixed} - job abort function or something else - */ -function runJob(iterator, key, item, callback) -{ - var aborter; - - // allow shortcut if iterator expects only two arguments - if (iterator.length == 2) - { - aborter = iterator(item, async(callback)); - } - // otherwise go with full three arguments - else - { - aborter = iterator(item, key, async(callback)); - } +/***/ }), - return aborter; -} +/***/ 21760: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.auxiliaryAuthenticationHeaderPolicyName = void 0; +exports.auxiliaryAuthenticationHeaderPolicy = auxiliaryAuthenticationHeaderPolicy; +const tokenCycler_js_1 = __nccwpck_require__(50601); +const log_js_1 = __nccwpck_require__(30648); +/** + * The programmatic identifier of the auxiliaryAuthenticationHeaderPolicy. + */ +exports.auxiliaryAuthenticationHeaderPolicyName = "auxiliaryAuthenticationHeaderPolicy"; +const AUTHORIZATION_AUXILIARY_HEADER = "x-ms-authorization-auxiliary"; +async function sendAuthorizeRequest(options) { + const { scopes, getAccessToken, request } = options; + const getTokenOptions = { + abortSignal: request.abortSignal, + tracingOptions: request.tracingOptions, + }; + return (await getAccessToken(scopes, getTokenOptions))?.token ?? ""; +} +/** + * A policy for external tokens to `x-ms-authorization-auxiliary` header. + * This header will be used when creating a cross-tenant application we may need to handle authentication requests + * for resources that are in different tenants. + * You could see [ARM docs](https://learn.microsoft.com/azure/azure-resource-manager/management/authenticate-multi-tenant) for a rundown of how this feature works + */ +function auxiliaryAuthenticationHeaderPolicy(options) { + const { credentials, scopes } = options; + const logger = options.logger || log_js_1.logger; + const tokenCyclerMap = new WeakMap(); + return { + name: exports.auxiliaryAuthenticationHeaderPolicyName, + async sendRequest(request, next) { + if (!request.url.toLowerCase().startsWith("https://")) { + throw new Error("Bearer token authentication for auxiliary header is not permitted for non-TLS protected (non-https) URLs."); + } + if (!credentials || credentials.length === 0) { + logger.info(`${exports.auxiliaryAuthenticationHeaderPolicyName} header will not be set due to empty credentials.`); + return next(request); + } + const tokenPromises = []; + for (const credential of credentials) { + let getAccessToken = tokenCyclerMap.get(credential); + if (!getAccessToken) { + getAccessToken = (0, tokenCycler_js_1.createTokenCycler)(credential); + tokenCyclerMap.set(credential, getAccessToken); + } + tokenPromises.push(sendAuthorizeRequest({ + scopes: Array.isArray(scopes) ? scopes : [scopes], + request, + getAccessToken, + logger, + })); + } + const auxiliaryTokens = (await Promise.all(tokenPromises)).filter((token) => Boolean(token)); + if (auxiliaryTokens.length === 0) { + logger.warning(`None of the auxiliary tokens are valid. ${AUTHORIZATION_AUXILIARY_HEADER} header will not be set.`); + return next(request); + } + request.headers.set(AUTHORIZATION_AUXILIARY_HEADER, auxiliaryTokens.map((token) => `Bearer ${token}`).join(", ")); + return next(request); + }, + }; +} +//# sourceMappingURL=auxiliaryAuthenticationHeaderPolicy.js.map /***/ }), -/***/ 2474: -/***/ ((module) => { +/***/ 11319: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -// API -module.exports = state; +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.bearerTokenAuthenticationPolicyName = void 0; +exports.bearerTokenAuthenticationPolicy = bearerTokenAuthenticationPolicy; +exports.parseChallenges = parseChallenges; +const tokenCycler_js_1 = __nccwpck_require__(50601); +const log_js_1 = __nccwpck_require__(30648); +const restError_js_1 = __nccwpck_require__(61036); +/** + * The programmatic identifier of the bearerTokenAuthenticationPolicy. + */ +exports.bearerTokenAuthenticationPolicyName = "bearerTokenAuthenticationPolicy"; /** - * Creates initial state object - * for iteration over list + * Try to send the given request. * - * @param {array|object} list - list to iterate over - * @param {function|null} sortMethod - function to use for keys sort, - * or `null` to keep them as is - * @returns {object} - initial state object - */ -function state(list, sortMethod) -{ - var isNamedList = !Array.isArray(list) - , initState = - { - index : 0, - keyedList: isNamedList || sortMethod ? Object.keys(list) : null, - jobs : {}, - results : isNamedList ? {} : [], - size : isNamedList ? Object.keys(list).length : list.length + * When a response is received, returns a tuple of the response received and, if the response was received + * inside a thrown RestError, the RestError that was thrown. + * + * Otherwise, if an error was thrown while sending the request that did not provide an underlying response, it + * will be rethrown. + */ +async function trySendRequest(request, next) { + try { + return [await next(request), undefined]; } - ; - - if (sortMethod) - { - // sort array keys based on it's values - // sort object's keys just on own merit - initState.keyedList.sort(isNamedList ? sortMethod : function(a, b) - { - return sortMethod(list[a], list[b]); + catch (e) { + if ((0, restError_js_1.isRestError)(e) && e.response) { + return [e.response, e]; + } + else { + throw e; + } + } +} +/** + * Default authorize request handler + */ +async function defaultAuthorizeRequest(options) { + const { scopes, getAccessToken, request } = options; + // Enable CAE true by default + const getTokenOptions = { + abortSignal: request.abortSignal, + tracingOptions: request.tracingOptions, + enableCae: true, + }; + const accessToken = await getAccessToken(scopes, getTokenOptions); + if (accessToken) { + options.request.headers.set("Authorization", `Bearer ${accessToken.token}`); + } +} +/** + * We will retrieve the challenge only if the response status code was 401, + * and if the response contained the header "WWW-Authenticate" with a non-empty value. + */ +function isChallengeResponse(response) { + return response.status === 401 && response.headers.has("WWW-Authenticate"); +} +/** + * Re-authorize the request for CAE challenge. + * The response containing the challenge is `options.response`. + * If this method returns true, the underlying request will be sent once again. + */ +async function authorizeRequestOnCaeChallenge(onChallengeOptions, caeClaims) { + const { scopes } = onChallengeOptions; + const accessToken = await onChallengeOptions.getAccessToken(scopes, { + enableCae: true, + claims: caeClaims, }); - } - - return initState; + if (!accessToken) { + return false; + } + onChallengeOptions.request.headers.set("Authorization", `${accessToken.tokenType ?? "Bearer"} ${accessToken.token}`); + return true; } - +/** + * A policy that can request a token from a TokenCredential implementation and + * then apply it to the Authorization header of a request as a Bearer token. + */ +function bearerTokenAuthenticationPolicy(options) { + const { credential, scopes, challengeCallbacks } = options; + const logger = options.logger || log_js_1.logger; + const callbacks = { + authorizeRequest: challengeCallbacks?.authorizeRequest?.bind(challengeCallbacks) ?? defaultAuthorizeRequest, + authorizeRequestOnChallenge: challengeCallbacks?.authorizeRequestOnChallenge?.bind(challengeCallbacks), + }; + // This function encapsulates the entire process of reliably retrieving the token + // The options are left out of the public API until there's demand to configure this. + // Remember to extend `BearerTokenAuthenticationPolicyOptions` with `TokenCyclerOptions` + // in order to pass through the `options` object. + const getAccessToken = credential + ? (0, tokenCycler_js_1.createTokenCycler)(credential /* , options */) + : () => Promise.resolve(null); + return { + name: exports.bearerTokenAuthenticationPolicyName, + /** + * If there's no challenge parameter: + * - It will try to retrieve the token using the cache, or the credential's getToken. + * - Then it will try the next policy with or without the retrieved token. + * + * It uses the challenge parameters to: + * - Skip a first attempt to get the token from the credential if there's no cached token, + * since it expects the token to be retrievable only after the challenge. + * - Prepare the outgoing request if the `prepareRequest` method has been provided. + * - Send an initial request to receive the challenge if it fails. + * - Process a challenge if the response contains it. + * - Retrieve a token with the challenge information, then re-send the request. + */ + async sendRequest(request, next) { + if (!request.url.toLowerCase().startsWith("https://")) { + throw new Error("Bearer token authentication is not permitted for non-TLS protected (non-https) URLs."); + } + await callbacks.authorizeRequest({ + scopes: Array.isArray(scopes) ? scopes : [scopes], + request, + getAccessToken, + logger, + }); + let response; + let error; + let shouldSendRequest; + [response, error] = await trySendRequest(request, next); + if (isChallengeResponse(response)) { + let claims = getCaeChallengeClaims(response.headers.get("WWW-Authenticate")); + // Handle CAE by default when receive CAE claim + if (claims) { + let parsedClaim; + // Return the response immediately if claims is not a valid base64 encoded string + try { + parsedClaim = atob(claims); + } + catch (e) { + logger.warning(`The WWW-Authenticate header contains "claims" that cannot be parsed. Unable to perform the Continuous Access Evaluation authentication flow. Unparsable claims: ${claims}`); + return response; + } + shouldSendRequest = await authorizeRequestOnCaeChallenge({ + scopes: Array.isArray(scopes) ? scopes : [scopes], + response, + request, + getAccessToken, + logger, + }, parsedClaim); + // Send updated request and handle response for RestError + if (shouldSendRequest) { + [response, error] = await trySendRequest(request, next); + } + } + else if (callbacks.authorizeRequestOnChallenge) { + // Handle custom challenges when client provides custom callback + shouldSendRequest = await callbacks.authorizeRequestOnChallenge({ + scopes: Array.isArray(scopes) ? scopes : [scopes], + request, + response, + getAccessToken, + logger, + }); + // Send updated request and handle response for RestError + if (shouldSendRequest) { + [response, error] = await trySendRequest(request, next); + } + // If we get another CAE Claim, we will handle it by default and return whatever value we receive for this + if (isChallengeResponse(response)) { + claims = getCaeChallengeClaims(response.headers.get("WWW-Authenticate")); + if (claims) { + let parsedClaim; + try { + parsedClaim = atob(claims); + } + catch (e) { + logger.warning(`The WWW-Authenticate header contains "claims" that cannot be parsed. Unable to perform the Continuous Access Evaluation authentication flow. Unparsable claims: ${claims}`); + return response; + } + shouldSendRequest = await authorizeRequestOnCaeChallenge({ + scopes: Array.isArray(scopes) ? scopes : [scopes], + response, + request, + getAccessToken, + logger, + }, parsedClaim); + // Send updated request and handle response for RestError + if (shouldSendRequest) { + [response, error] = await trySendRequest(request, next); + } + } + } + } + } + if (error) { + throw error; + } + else { + return response; + } + }, + }; +} +/** + * Converts: `Bearer a="b", c="d", Pop e="f", g="h"`. + * Into: `[ { scheme: 'Bearer', params: { a: 'b', c: 'd' } }, { scheme: 'Pop', params: { e: 'f', g: 'h' } } ]`. + * + * @internal + */ +function parseChallenges(challenges) { + // Challenge regex seperates the string to individual challenges with different schemes in the format `Scheme a="b", c=d` + // The challenge regex captures parameteres with either quotes values or unquoted values + const challengeRegex = /(\w+)\s+((?:\w+=(?:"[^"]*"|[^,]*),?\s*)+)/g; + // Parameter regex captures the claims group removed from the scheme in the format `a="b"` and `c="d"` + // CAE challenge always have quoted parameters. For more reference, https://learn.microsoft.com/entra/identity-platform/claims-challenge + const paramRegex = /(\w+)="([^"]*)"/g; + const parsedChallenges = []; + let match; + // Iterate over each challenge match + while ((match = challengeRegex.exec(challenges)) !== null) { + const scheme = match[1]; + const paramsString = match[2]; + const params = {}; + let paramMatch; + // Iterate over each parameter match + while ((paramMatch = paramRegex.exec(paramsString)) !== null) { + params[paramMatch[1]] = paramMatch[2]; + } + parsedChallenges.push({ scheme, params }); + } + return parsedChallenges; +} +/** + * Parse a pipeline response and look for a CAE challenge with "Bearer" scheme + * Return the value in the header without parsing the challenge + * @internal + */ +function getCaeChallengeClaims(challenges) { + if (!challenges) { + return; + } + // Find all challenges present in the header + const parsedChallenges = parseChallenges(challenges); + return parsedChallenges.find((x) => x.scheme === "Bearer" && x.params.claims && x.params.error === "insufficient_claims")?.params.claims; +} +//# sourceMappingURL=bearerTokenAuthenticationPolicy.js.map /***/ }), -/***/ 7942: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -var abort = __nccwpck_require__(1700) - , async = __nccwpck_require__(2794) - ; +/***/ 57618: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -// API -module.exports = terminator; +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.decompressResponsePolicyName = void 0; +exports.decompressResponsePolicy = decompressResponsePolicy; +const policies_1 = __nccwpck_require__(81914); /** - * Terminates jobs in the attached state context - * - * @this AsyncKitState# - * @param {function} callback - final callback to invoke after termination + * The programmatic identifier of the decompressResponsePolicy. */ -function terminator(callback) -{ - if (!Object.keys(this.jobs).length) - { - return; - } +exports.decompressResponsePolicyName = policies_1.decompressResponsePolicyName; +/** + * A policy to enable response decompression according to Accept-Encoding header + * https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Encoding + */ +function decompressResponsePolicy() { + return (0, policies_1.decompressResponsePolicy)(); +} +//# sourceMappingURL=decompressResponsePolicy.js.map - // fast forward iteration index - this.index = this.size; +/***/ }), - // abort jobs - abort(this); +/***/ 48549: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - // send back results we have so far - async(callback)(null, this.results); -} +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.defaultRetryPolicyName = void 0; +exports.defaultRetryPolicy = defaultRetryPolicy; +const policies_1 = __nccwpck_require__(81914); +/** + * Name of the {@link defaultRetryPolicy} + */ +exports.defaultRetryPolicyName = policies_1.defaultRetryPolicyName; +/** + * A policy that retries according to three strategies: + * - When the server sends a 429 response with a Retry-After header. + * - When there are errors in the underlying transport layer (e.g. DNS lookup failures). + * - Or otherwise if the outgoing request fails, it will retry with an exponentially increasing delay. + */ +function defaultRetryPolicy(options = {}) { + return (0, policies_1.defaultRetryPolicy)(options); +} +//# sourceMappingURL=defaultRetryPolicy.js.map /***/ }), -/***/ 8210: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -var iterate = __nccwpck_require__(9023) - , initState = __nccwpck_require__(2474) - , terminator = __nccwpck_require__(7942) - ; +/***/ 1598: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -// Public API -module.exports = parallel; +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.exponentialRetryPolicyName = void 0; +exports.exponentialRetryPolicy = exponentialRetryPolicy; +const policies_1 = __nccwpck_require__(81914); /** - * Runs iterator over provided array elements in parallel - * - * @param {array|object} list - array or object (named list) to iterate over - * @param {function} iterator - iterator to run - * @param {function} callback - invoked when all elements processed - * @returns {function} - jobs terminator + * The programmatic identifier of the exponentialRetryPolicy. + */ +exports.exponentialRetryPolicyName = policies_1.exponentialRetryPolicyName; +/** + * A policy that attempts to retry requests while introducing an exponentially increasing delay. + * @param options - Options that configure retry logic. */ -function parallel(list, iterator, callback) -{ - var state = initState(list); +function exponentialRetryPolicy(options = {}) { + return (0, policies_1.exponentialRetryPolicy)(options); +} +//# sourceMappingURL=exponentialRetryPolicy.js.map - while (state.index < (state['keyedList'] || list).length) - { - iterate(list, iterator, state, function(error, result) - { - if (error) - { - callback(error, result); - return; - } +/***/ }), - // looks like it's the last one - if (Object.keys(state.jobs).length === 0) - { - callback(null, state.results); - return; - } - }); +/***/ 16501: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - state.index++; - } +"use strict"; - return terminator.bind(state, callback); +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.formDataPolicyName = void 0; +exports.formDataPolicy = formDataPolicy; +const policies_1 = __nccwpck_require__(81914); +/** + * The programmatic identifier of the formDataPolicy. + */ +exports.formDataPolicyName = policies_1.formDataPolicyName; +/** + * A policy that encodes FormData on the request into the body. + */ +function formDataPolicy() { + return (0, policies_1.formDataPolicy)(); } - +//# sourceMappingURL=formDataPolicy.js.map /***/ }), -/***/ 445: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -var serialOrdered = __nccwpck_require__(3578); +/***/ 46821: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -// Public API -module.exports = serial; +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.logPolicyName = void 0; +exports.logPolicy = logPolicy; +const log_js_1 = __nccwpck_require__(30648); +const policies_1 = __nccwpck_require__(81914); /** - * Runs iterator over provided array elements in series - * - * @param {array|object} list - array or object (named list) to iterate over - * @param {function} iterator - iterator to run - * @param {function} callback - invoked when all elements processed - * @returns {function} - jobs terminator + * The programmatic identifier of the logPolicy. + */ +exports.logPolicyName = policies_1.logPolicyName; +/** + * A policy that logs all requests and responses. + * @param options - Options to configure logPolicy. */ -function serial(list, iterator, callback) -{ - return serialOrdered(list, iterator, null, callback); +function logPolicy(options = {}) { + return (0, policies_1.logPolicy)({ + logger: log_js_1.logger.info, + ...options, + }); } - +//# sourceMappingURL=logPolicy.js.map /***/ }), -/***/ 3578: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -var iterate = __nccwpck_require__(9023) - , initState = __nccwpck_require__(2474) - , terminator = __nccwpck_require__(7942) - ; +/***/ 19042: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -// Public API -module.exports = serialOrdered; -// sorting helpers -module.exports.ascending = ascending; -module.exports.descending = descending; +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.multipartPolicyName = void 0; +exports.multipartPolicy = multipartPolicy; +const policies_1 = __nccwpck_require__(81914); +const file_js_1 = __nccwpck_require__(3224); /** - * Runs iterator over provided sorted array elements in series - * - * @param {array|object} list - array or object (named list) to iterate over - * @param {function} iterator - iterator to run - * @param {function} sortMethod - custom sort function - * @param {function} callback - invoked when all elements processed - * @returns {function} - jobs terminator + * Name of multipart policy */ -function serialOrdered(list, iterator, sortMethod, callback) -{ - var state = initState(list, sortMethod); - - iterate(list, iterator, state, function iteratorHandler(error, result) - { - if (error) - { - callback(error, result); - return; - } +exports.multipartPolicyName = policies_1.multipartPolicyName; +/** + * Pipeline policy for multipart requests + */ +function multipartPolicy() { + const tspPolicy = (0, policies_1.multipartPolicy)(); + return { + name: exports.multipartPolicyName, + sendRequest: async (request, next) => { + if (request.multipartBody) { + for (const part of request.multipartBody.parts) { + if ((0, file_js_1.hasRawContent)(part.body)) { + part.body = (0, file_js_1.getRawContent)(part.body); + } + } + } + return tspPolicy.sendRequest(request, next); + }, + }; +} +//# sourceMappingURL=multipartPolicy.js.map - state.index++; +/***/ }), - // are we there yet? - if (state.index < (state['keyedList'] || list).length) - { - iterate(list, iterator, state, iteratorHandler); - return; - } +/***/ 82032: +/***/ ((__unused_webpack_module, exports) => { - // done here - callback(null, state.results); - }); +"use strict"; - return terminator.bind(state, callback); +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.ndJsonPolicyName = void 0; +exports.ndJsonPolicy = ndJsonPolicy; +/** + * The programmatic identifier of the ndJsonPolicy. + */ +exports.ndJsonPolicyName = "ndJsonPolicy"; +/** + * ndJsonPolicy is a policy used to control keep alive settings for every request. + */ +function ndJsonPolicy() { + return { + name: exports.ndJsonPolicyName, + async sendRequest(request, next) { + // There currently isn't a good way to bypass the serializer + if (typeof request.body === "string" && request.body.startsWith("[")) { + const body = JSON.parse(request.body); + if (Array.isArray(body)) { + request.body = body.map((item) => JSON.stringify(item) + "\n").join(""); + } + } + return next(request); + }, + }; } +//# sourceMappingURL=ndJsonPolicy.js.map -/* - * -- Sort methods - */ +/***/ }), + +/***/ 94761: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.proxyPolicyName = void 0; +exports.getDefaultProxySettings = getDefaultProxySettings; +exports.proxyPolicy = proxyPolicy; +const policies_1 = __nccwpck_require__(81914); /** - * sort helper to sort array elements in ascending order - * - * @param {mixed} a - an item to compare - * @param {mixed} b - an item to compare - * @returns {number} - comparison result + * The programmatic identifier of the proxyPolicy. + */ +exports.proxyPolicyName = policies_1.proxyPolicyName; +/** + * This method converts a proxy url into `ProxySettings` for use with ProxyPolicy. + * If no argument is given, it attempts to parse a proxy URL from the environment + * variables `HTTPS_PROXY` or `HTTP_PROXY`. + * @param proxyUrl - The url of the proxy to use. May contain authentication information. + * @deprecated - Internally this method is no longer necessary when setting proxy information. */ -function ascending(a, b) -{ - return a < b ? -1 : a > b ? 1 : 0; +function getDefaultProxySettings(proxyUrl) { + return (0, policies_1.getDefaultProxySettings)(proxyUrl); } - /** - * sort helper to sort array elements in descending order - * - * @param {mixed} a - an item to compare - * @param {mixed} b - an item to compare - * @returns {number} - comparison result + * A policy that allows one to apply proxy settings to all requests. + * If not passed static settings, they will be retrieved from the HTTPS_PROXY + * or HTTP_PROXY environment variables. + * @param proxySettings - ProxySettings to use on each request. + * @param options - additional settings, for example, custom NO_PROXY patterns */ -function descending(a, b) -{ - return -1 * ascending(a, b); +function proxyPolicy(proxySettings, options) { + return (0, policies_1.proxyPolicy)(proxySettings, options); } - +//# sourceMappingURL=proxyPolicy.js.map /***/ }), -/***/ 9417: -/***/ ((module) => { +/***/ 98526: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -module.exports = balanced; -function balanced(a, b, str) { - if (a instanceof RegExp) a = maybeMatch(a, str); - if (b instanceof RegExp) b = maybeMatch(b, str); - - var r = range(a, b, str); - - return r && { - start: r[0], - end: r[1], - pre: str.slice(0, r[0]), - body: str.slice(r[0] + a.length, r[1]), - post: str.slice(r[1] + b.length) - }; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.redirectPolicyName = void 0; +exports.redirectPolicy = redirectPolicy; +const policies_1 = __nccwpck_require__(81914); +/** + * The programmatic identifier of the redirectPolicy. + */ +exports.redirectPolicyName = policies_1.redirectPolicyName; +/** + * A policy to follow Location headers from the server in order + * to support server-side redirection. + * In the browser, this policy is not used. + * @param options - Options to control policy behavior. + */ +function redirectPolicy(options = {}) { + return (0, policies_1.redirectPolicy)(options); } +//# sourceMappingURL=redirectPolicy.js.map -function maybeMatch(reg, str) { - var m = str.match(reg); - return m ? m[0] : null; -} +/***/ }), -balanced.range = range; -function range(a, b, str) { - var begs, beg, left, right, result; - var ai = str.indexOf(a); - var bi = str.indexOf(b, ai + 1); - var i = ai; +/***/ 39700: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - if (ai >= 0 && bi > 0) { - begs = []; - left = str.length; +"use strict"; - while (i >= 0 && !result) { - if (i == ai) { - begs.push(i); - ai = str.indexOf(a, i + 1); - } else if (begs.length == 1) { - result = [ begs.pop(), bi ]; - } else { - beg = begs.pop(); - if (beg < left) { - left = beg; - right = bi; - } +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.retryPolicy = retryPolicy; +const logger_1 = __nccwpck_require__(89497); +const constants_js_1 = __nccwpck_require__(43171); +const policies_1 = __nccwpck_require__(81914); +const retryPolicyLogger = (0, logger_1.createClientLogger)("core-rest-pipeline retryPolicy"); +/** + * retryPolicy is a generic policy to enable retrying requests when certain conditions are met + */ +function retryPolicy(strategies, options = { maxRetries: constants_js_1.DEFAULT_RETRY_POLICY_COUNT }) { + // Cast is required since the TSP runtime retry strategy type is slightly different + // very deep down (using real AbortSignal vs. AbortSignalLike in RestError). + // In practice the difference doesn't actually matter. + return (0, policies_1.retryPolicy)(strategies, { + logger: retryPolicyLogger, + ...options, + }); +} +//# sourceMappingURL=retryPolicy.js.map - bi = str.indexOf(b, i + 1); - } +/***/ }), - i = ai < bi && ai >= 0 ? ai : bi; - } +/***/ 93860: +/***/ ((__unused_webpack_module, exports) => { - if (begs.length) { - result = [ left, right ]; - } - } +"use strict"; - return result; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.setClientRequestIdPolicyName = void 0; +exports.setClientRequestIdPolicy = setClientRequestIdPolicy; +/** + * The programmatic identifier of the setClientRequestIdPolicy. + */ +exports.setClientRequestIdPolicyName = "setClientRequestIdPolicy"; +/** + * Each PipelineRequest gets a unique id upon creation. + * This policy passes that unique id along via an HTTP header to enable better + * telemetry and tracing. + * @param requestIdHeaderName - The name of the header to pass the request ID to. + */ +function setClientRequestIdPolicy(requestIdHeaderName = "x-ms-client-request-id") { + return { + name: exports.setClientRequestIdPolicyName, + async sendRequest(request, next) { + if (!request.headers.has(requestIdHeaderName)) { + request.headers.set(requestIdHeaderName, request.requestId); + } + return next(request); + }, + }; } - +//# sourceMappingURL=setClientRequestIdPolicy.js.map /***/ }), -/***/ 3717: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -var concatMap = __nccwpck_require__(6891); -var balanced = __nccwpck_require__(9417); - -module.exports = expandTop; - -var escSlash = '\0SLASH'+Math.random()+'\0'; -var escOpen = '\0OPEN'+Math.random()+'\0'; -var escClose = '\0CLOSE'+Math.random()+'\0'; -var escComma = '\0COMMA'+Math.random()+'\0'; -var escPeriod = '\0PERIOD'+Math.random()+'\0'; - -function numeric(str) { - return parseInt(str, 10) == str - ? parseInt(str, 10) - : str.charCodeAt(0); -} +/***/ 72470: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -function escapeBraces(str) { - return str.split('\\\\').join(escSlash) - .split('\\{').join(escOpen) - .split('\\}').join(escClose) - .split('\\,').join(escComma) - .split('\\.').join(escPeriod); -} +"use strict"; -function unescapeBraces(str) { - return str.split(escSlash).join('\\') - .split(escOpen).join('{') - .split(escClose).join('}') - .split(escComma).join(',') - .split(escPeriod).join('.'); +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.systemErrorRetryPolicyName = void 0; +exports.systemErrorRetryPolicy = systemErrorRetryPolicy; +const policies_1 = __nccwpck_require__(81914); +/** + * Name of the {@link systemErrorRetryPolicy} + */ +exports.systemErrorRetryPolicyName = policies_1.systemErrorRetryPolicyName; +/** + * A retry policy that specifically seeks to handle errors in the + * underlying transport layer (e.g. DNS lookup failures) rather than + * retryable error codes from the server itself. + * @param options - Options that customize the policy. + */ +function systemErrorRetryPolicy(options = {}) { + return (0, policies_1.systemErrorRetryPolicy)(options); } +//# sourceMappingURL=systemErrorRetryPolicy.js.map +/***/ }), -// Basically just str.split(","), but handling cases -// where we have nested braced sections, which should be -// treated as individual members, like {a,{b,c},d} -function parseCommaParts(str) { - if (!str) - return ['']; +/***/ 54802: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - var parts = []; - var m = balanced('{', '}', str); +"use strict"; - if (!m) - return str.split(','); +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.throttlingRetryPolicyName = void 0; +exports.throttlingRetryPolicy = throttlingRetryPolicy; +const policies_1 = __nccwpck_require__(81914); +/** + * Name of the {@link throttlingRetryPolicy} + */ +exports.throttlingRetryPolicyName = policies_1.throttlingRetryPolicyName; +/** + * A policy that retries when the server sends a 429 response with a Retry-After header. + * + * To learn more, please refer to + * https://learn.microsoft.com/azure/azure-resource-manager/resource-manager-request-limits, + * https://learn.microsoft.com/azure/azure-subscription-service-limits and + * https://learn.microsoft.com/azure/virtual-machines/troubleshooting/troubleshooting-throttling-errors + * + * @param options - Options that configure retry logic. + */ +function throttlingRetryPolicy(options = {}) { + return (0, policies_1.throttlingRetryPolicy)(options); +} +//# sourceMappingURL=throttlingRetryPolicy.js.map - var pre = m.pre; - var body = m.body; - var post = m.post; - var p = pre.split(','); +/***/ }), - p[p.length-1] += '{' + body + '}'; - var postParts = parseCommaParts(post); - if (post.length) { - p[p.length-1] += postParts.shift(); - p.push.apply(p, postParts); - } +/***/ 88446: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - parts.push.apply(parts, p); +"use strict"; - return parts; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.tlsPolicyName = void 0; +exports.tlsPolicy = tlsPolicy; +const policies_1 = __nccwpck_require__(81914); +/** + * Name of the TLS Policy + */ +exports.tlsPolicyName = policies_1.tlsPolicyName; +/** + * Gets a pipeline policy that adds the client certificate to the HttpClient agent for authentication. + */ +function tlsPolicy(tlsSettings) { + return (0, policies_1.tlsPolicy)(tlsSettings); } +//# sourceMappingURL=tlsPolicy.js.map -function expandTop(str) { - if (!str) - return []; - - // I don't know why Bash 4.3 does this, but it does. - // Anything starting with {} will have the first two bytes preserved - // but *only* at the top level, so {},a}b will not expand to anything, - // but a{},b}c will be expanded to [a}c,abc]. - // One could argue that this is a bug in Bash, but since the goal of - // this module is to match Bash's rules, we escape a leading {} - if (str.substr(0, 2) === '{}') { - str = '\\{\\}' + str.substr(2); - } - - return expand(escapeBraces(str), true).map(unescapeBraces); -} +/***/ }), -function identity(e) { - return e; -} +/***/ 80606: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -function embrace(str) { - return '{' + str + '}'; -} -function isPadded(el) { - return /^-?0\d/.test(el); -} +"use strict"; -function lte(i, y) { - return i <= y; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.tracingPolicyName = void 0; +exports.tracingPolicy = tracingPolicy; +const core_tracing_1 = __nccwpck_require__(19363); +const constants_js_1 = __nccwpck_require__(43171); +const userAgent_js_1 = __nccwpck_require__(96158); +const log_js_1 = __nccwpck_require__(30648); +const core_util_1 = __nccwpck_require__(80637); +const restError_js_1 = __nccwpck_require__(61036); +const util_1 = __nccwpck_require__(68152); +/** + * The programmatic identifier of the tracingPolicy. + */ +exports.tracingPolicyName = "tracingPolicy"; +/** + * A simple policy to create OpenTelemetry Spans for each request made by the pipeline + * that has SpanOptions with a parent. + * Requests made without a parent Span will not be recorded. + * @param options - Options to configure the telemetry logged by the tracing policy. + */ +function tracingPolicy(options = {}) { + const userAgentPromise = (0, userAgent_js_1.getUserAgentValue)(options.userAgentPrefix); + const sanitizer = new util_1.Sanitizer({ + additionalAllowedQueryParameters: options.additionalAllowedQueryParameters, + }); + const tracingClient = tryCreateTracingClient(); + return { + name: exports.tracingPolicyName, + async sendRequest(request, next) { + if (!tracingClient) { + return next(request); + } + const userAgent = await userAgentPromise; + const spanAttributes = { + "http.url": sanitizer.sanitizeUrl(request.url), + "http.method": request.method, + "http.user_agent": userAgent, + requestId: request.requestId, + }; + if (userAgent) { + spanAttributes["http.user_agent"] = userAgent; + } + const { span, tracingContext } = tryCreateSpan(tracingClient, request, spanAttributes) ?? {}; + if (!span || !tracingContext) { + return next(request); + } + try { + const response = await tracingClient.withContext(tracingContext, next, request); + tryProcessResponse(span, response); + return response; + } + catch (err) { + tryProcessError(span, err); + throw err; + } + }, + }; } -function gte(i, y) { - return i >= y; +function tryCreateTracingClient() { + try { + return (0, core_tracing_1.createTracingClient)({ + namespace: "", + packageName: "@azure/core-rest-pipeline", + packageVersion: constants_js_1.SDK_VERSION, + }); + } + catch (e) { + log_js_1.logger.warning(`Error when creating the TracingClient: ${(0, core_util_1.getErrorMessage)(e)}`); + return undefined; + } } - -function expand(str, isTop) { - var expansions = []; - - var m = balanced('{', '}', str); - if (!m || /\$$/.test(m.pre)) return [str]; - - var isNumericSequence = /^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(m.body); - var isAlphaSequence = /^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(m.body); - var isSequence = isNumericSequence || isAlphaSequence; - var isOptions = m.body.indexOf(',') >= 0; - if (!isSequence && !isOptions) { - // {a},b} - if (m.post.match(/,.*\}/)) { - str = m.pre + '{' + m.body + escClose + m.post; - return expand(str); +function tryCreateSpan(tracingClient, request, spanAttributes) { + try { + // As per spec, we do not need to differentiate between HTTP and HTTPS in span name. + const { span, updatedOptions } = tracingClient.startSpan(`HTTP ${request.method}`, { tracingOptions: request.tracingOptions }, { + spanKind: "client", + spanAttributes, + }); + // If the span is not recording, don't do any more work. + if (!span.isRecording()) { + span.end(); + return undefined; + } + // set headers + const headers = tracingClient.createRequestHeaders(updatedOptions.tracingOptions.tracingContext); + for (const [key, value] of Object.entries(headers)) { + request.headers.set(key, value); + } + return { span, tracingContext: updatedOptions.tracingOptions.tracingContext }; } - return [str]; - } - - var n; - if (isSequence) { - n = m.body.split(/\.\./); - } else { - n = parseCommaParts(m.body); - if (n.length === 1) { - // x{{a,b}}y ==> x{a}y x{b}y - n = expand(n[0], false).map(embrace); - if (n.length === 1) { - var post = m.post.length - ? expand(m.post, false) - : ['']; - return post.map(function(p) { - return m.pre + n[0] + p; + catch (e) { + log_js_1.logger.warning(`Skipping creating a tracing span due to an error: ${(0, core_util_1.getErrorMessage)(e)}`); + return undefined; + } +} +function tryProcessError(span, error) { + try { + span.setStatus({ + status: "error", + error: (0, core_util_1.isError)(error) ? error : undefined, }); - } + if ((0, restError_js_1.isRestError)(error) && error.statusCode) { + span.setAttribute("http.status_code", error.statusCode); + } + span.end(); } - } - - // at this point, n is the parts, and we know it's not a comma set - // with a single entry. - - // no need to expand pre, since it is guaranteed to be free of brace-sets - var pre = m.pre; - var post = m.post.length - ? expand(m.post, false) - : ['']; - - var N; - - if (isSequence) { - var x = numeric(n[0]); - var y = numeric(n[1]); - var width = Math.max(n[0].length, n[1].length) - var incr = n.length == 3 - ? Math.abs(numeric(n[2])) - : 1; - var test = lte; - var reverse = y < x; - if (reverse) { - incr *= -1; - test = gte; + catch (e) { + log_js_1.logger.warning(`Skipping tracing span processing due to an error: ${(0, core_util_1.getErrorMessage)(e)}`); } - var pad = n.some(isPadded); - - N = []; - - for (var i = x; test(i, y); i += incr) { - var c; - if (isAlphaSequence) { - c = String.fromCharCode(i); - if (c === '\\') - c = ''; - } else { - c = String(i); - if (pad) { - var need = width - c.length; - if (need > 0) { - var z = new Array(need + 1).join('0'); - if (i < 0) - c = '-' + z + c.slice(1); - else - c = z + c; - } +} +function tryProcessResponse(span, response) { + try { + span.setAttribute("http.status_code", response.status); + const serviceRequestId = response.headers.get("x-ms-request-id"); + if (serviceRequestId) { + span.setAttribute("serviceRequestId", serviceRequestId); + } + // Per semantic conventions, only set the status to error if the status code is 4xx or 5xx. + // Otherwise, the status MUST remain unset. + // https://opentelemetry.io/docs/specs/semconv/http/http-spans/#status + if (response.status >= 400) { + span.setStatus({ + status: "error", + }); } - } - N.push(c); + span.end(); } - } else { - N = concatMap(n, function(el) { return expand(el, false) }); - } - - for (var j = 0; j < N.length; j++) { - for (var k = 0; k < post.length; k++) { - var expansion = pre + N[j] + post[k]; - if (!isTop || isSequence || expansion) - expansions.push(expansion); + catch (e) { + log_js_1.logger.warning(`Skipping tracing span processing due to an error: ${(0, core_util_1.getErrorMessage)(e)}`); } - } - - return expansions; } - - +//# sourceMappingURL=tracingPolicy.js.map /***/ }), -/***/ 5443: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -var util = __nccwpck_require__(3837); -var Stream = (__nccwpck_require__(2781).Stream); -var DelayedStream = __nccwpck_require__(8611); +/***/ 88935: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -module.exports = CombinedStream; -function CombinedStream() { - this.writable = false; - this.readable = true; - this.dataSize = 0; - this.maxDataSize = 2 * 1024 * 1024; - this.pauseStreams = true; +"use strict"; - this._released = false; - this._streams = []; - this._currentStream = null; - this._insideLoop = false; - this._pendingNext = false; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.userAgentPolicyName = void 0; +exports.userAgentPolicy = userAgentPolicy; +const userAgent_js_1 = __nccwpck_require__(96158); +const UserAgentHeaderName = (0, userAgent_js_1.getUserAgentHeaderName)(); +/** + * The programmatic identifier of the userAgentPolicy. + */ +exports.userAgentPolicyName = "userAgentPolicy"; +/** + * A policy that sets the User-Agent header (or equivalent) to reflect + * the library version. + * @param options - Options to customize the user agent value. + */ +function userAgentPolicy(options = {}) { + const userAgentValue = (0, userAgent_js_1.getUserAgentValue)(options.userAgentPrefix); + return { + name: exports.userAgentPolicyName, + async sendRequest(request, next) { + if (!request.headers.has(UserAgentHeaderName)) { + request.headers.set(UserAgentHeaderName, await userAgentValue); + } + return next(request); + }, + }; } -util.inherits(CombinedStream, Stream); +//# sourceMappingURL=userAgentPolicy.js.map -CombinedStream.create = function(options) { - var combinedStream = new this(); - - options = options || {}; - for (var option in options) { - combinedStream[option] = options[option]; - } +/***/ }), - return combinedStream; -}; +/***/ 48753: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -CombinedStream.isStreamLike = function(stream) { - return (typeof stream !== 'function') - && (typeof stream !== 'string') - && (typeof stream !== 'boolean') - && (typeof stream !== 'number') - && (!Buffer.isBuffer(stream)); -}; +"use strict"; -CombinedStream.prototype.append = function(stream) { - var isStreamLike = CombinedStream.isStreamLike(stream); +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.wrapAbortSignalLikePolicyName = void 0; +exports.wrapAbortSignalLikePolicy = wrapAbortSignalLikePolicy; +const wrapAbortSignal_js_1 = __nccwpck_require__(7188); +exports.wrapAbortSignalLikePolicyName = "wrapAbortSignalLikePolicy"; +/** + * Policy that ensure that any AbortSignalLike is wrapped in a native AbortSignal for processing by the pipeline. + * Since the ts-http-runtime expects a native AbortSignal, this policy is used to ensure that any AbortSignalLike is wrapped in a native AbortSignal. + * + * @returns - created policy + */ +function wrapAbortSignalLikePolicy() { + return { + name: exports.wrapAbortSignalLikePolicyName, + sendRequest: async (request, next) => { + if (!request.abortSignal) { + return next(request); + } + const { abortSignal, cleanup } = (0, wrapAbortSignal_js_1.wrapAbortSignalLike)(request.abortSignal); + request.abortSignal = abortSignal; + try { + return await next(request); + } + finally { + cleanup?.(); + } + }, + }; +} +//# sourceMappingURL=wrapAbortSignalLikePolicy.js.map - if (isStreamLike) { - if (!(stream instanceof DelayedStream)) { - var newStream = DelayedStream.create(stream, { - maxDataSize: Infinity, - pauseStream: this.pauseStreams, - }); - stream.on('data', this._checkDataSize.bind(this)); - stream = newStream; - } +/***/ }), - this._handleErrors(stream); +/***/ 61036: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - if (this.pauseStreams) { - stream.pause(); - } - } +"use strict"; - this._streams.push(stream); - return this; -}; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.RestError = void 0; +exports.isRestError = isRestError; +const ts_http_runtime_1 = __nccwpck_require__(83335); +/** + * A custom error type for failed pipeline requests. + */ +// eslint-disable-next-line @typescript-eslint/no-redeclare +exports.RestError = ts_http_runtime_1.RestError; +/** + * Typeguard for RestError + * @param e - Something caught by a catch clause. + */ +function isRestError(e) { + return (0, ts_http_runtime_1.isRestError)(e); +} +//# sourceMappingURL=restError.js.map -CombinedStream.prototype.pipe = function(dest, options) { - Stream.prototype.pipe.call(this, dest, options); - this.resume(); - return dest; -}; +/***/ }), -CombinedStream.prototype._getNext = function() { - this._currentStream = null; +/***/ 3224: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - if (this._insideLoop) { - this._pendingNext = true; - return; // defer call - } +"use strict"; - this._insideLoop = true; - try { - do { - this._pendingNext = false; - this._realGetNext(); - } while (this._pendingNext); - } finally { - this._insideLoop = false; - } +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.hasRawContent = hasRawContent; +exports.getRawContent = getRawContent; +exports.createFileFromStream = createFileFromStream; +exports.createFile = createFile; +const core_util_1 = __nccwpck_require__(80637); +function isNodeReadableStream(x) { + return Boolean(x && typeof x["pipe"] === "function"); +} +const unimplementedMethods = { + arrayBuffer: () => { + throw new Error("Not implemented"); + }, + bytes: () => { + throw new Error("Not implemented"); + }, + slice: () => { + throw new Error("Not implemented"); + }, + text: () => { + throw new Error("Not implemented"); + }, }; - -CombinedStream.prototype._realGetNext = function() { - var stream = this._streams.shift(); - - - if (typeof stream == 'undefined') { - this.end(); - return; - } - - if (typeof stream !== 'function') { - this._pipeNext(stream); - return; - } - - var getStream = stream; - getStream(function(stream) { - var isStreamLike = CombinedStream.isStreamLike(stream); - if (isStreamLike) { - stream.on('data', this._checkDataSize.bind(this)); - this._handleErrors(stream); +/** + * Private symbol used as key on objects created using createFile containing the + * original source of the file object. + * + * This is used in Node to access the original Node stream without using Blob#stream, which + * returns a web stream. This is done to avoid a couple of bugs to do with Blob#stream and + * Readable#to/fromWeb in Node versions we support: + * - https://github.com/nodejs/node/issues/42694 (fixed in Node 18.14) + * - https://github.com/nodejs/node/issues/48916 (fixed in Node 20.6) + * + * Once these versions are no longer supported, we may be able to stop doing this. + * + * @internal + */ +const rawContent = Symbol("rawContent"); +/** + * Type guard to check if a given object is a blob-like object with a raw content property. + */ +function hasRawContent(x) { + return typeof x[rawContent] === "function"; +} +/** + * Extract the raw content from a given blob-like object. If the input was created using createFile + * or createFileFromStream, the exact content passed into createFile/createFileFromStream will be used. + * For true instances of Blob and File, returns the actual blob. + * + * @internal + */ +function getRawContent(blob) { + if (hasRawContent(blob)) { + return blob[rawContent](); } - - this._pipeNext(stream); - }.bind(this)); -}; - -CombinedStream.prototype._pipeNext = function(stream) { - this._currentStream = stream; - - var isStreamLike = CombinedStream.isStreamLike(stream); - if (isStreamLike) { - stream.on('end', this._getNext.bind(this)); - stream.pipe(this, {end: false}); - return; - } - - var value = stream; - this.write(value); - this._getNext(); -}; - -CombinedStream.prototype._handleErrors = function(stream) { - var self = this; - stream.on('error', function(err) { - self._emitError(err); - }); -}; - -CombinedStream.prototype.write = function(data) { - this.emit('data', data); -}; - -CombinedStream.prototype.pause = function() { - if (!this.pauseStreams) { - return; - } - - if(this.pauseStreams && this._currentStream && typeof(this._currentStream.pause) == 'function') this._currentStream.pause(); - this.emit('pause'); -}; - -CombinedStream.prototype.resume = function() { - if (!this._released) { - this._released = true; - this.writable = true; - this._getNext(); - } - - if(this.pauseStreams && this._currentStream && typeof(this._currentStream.resume) == 'function') this._currentStream.resume(); - this.emit('resume'); -}; - -CombinedStream.prototype.end = function() { - this._reset(); - this.emit('end'); -}; - -CombinedStream.prototype.destroy = function() { - this._reset(); - this.emit('close'); -}; - -CombinedStream.prototype._reset = function() { - this.writable = false; - this._streams = []; - this._currentStream = null; -}; - -CombinedStream.prototype._checkDataSize = function() { - this._updateDataSize(); - if (this.dataSize <= this.maxDataSize) { - return; - } - - var message = - 'DelayedStream#maxDataSize of ' + this.maxDataSize + ' bytes exceeded.'; - this._emitError(new Error(message)); -}; - -CombinedStream.prototype._updateDataSize = function() { - this.dataSize = 0; - - var self = this; - this._streams.forEach(function(stream) { - if (!stream.dataSize) { - return; + else { + return blob; } - - self.dataSize += stream.dataSize; - }); - - if (this._currentStream && this._currentStream.dataSize) { - this.dataSize += this._currentStream.dataSize; - } -}; - -CombinedStream.prototype._emitError = function(err) { - this._reset(); - this.emit('error', err); -}; - - -/***/ }), - -/***/ 6891: -/***/ ((module) => { - -module.exports = function (xs, fn) { - var res = []; - for (var i = 0; i < xs.length; i++) { - var x = fn(xs[i], i); - if (isArray(x)) res.push.apply(res, x); - else res.push(x); +} +/** + * Create an object that implements the File interface. This object is intended to be + * passed into RequestBodyType.formData, and is not guaranteed to work as expected in + * other situations. + * + * Use this function to: + * - Create a File object for use in RequestBodyType.formData in environments where the + * global File object is unavailable. + * - Create a File-like object from a readable stream without reading the stream into memory. + * + * @param stream - the content of the file as a callback returning a stream. When a File object made using createFile is + * passed in a request's form data map, the stream will not be read into memory + * and instead will be streamed when the request is made. In the event of a retry, the + * stream needs to be read again, so this callback SHOULD return a fresh stream if possible. + * @param name - the name of the file. + * @param options - optional metadata about the file, e.g. file name, file size, MIME type. + */ +function createFileFromStream(stream, name, options = {}) { + return { + ...unimplementedMethods, + type: options.type ?? "", + lastModified: options.lastModified ?? new Date().getTime(), + webkitRelativePath: options.webkitRelativePath ?? "", + size: options.size ?? -1, + name, + stream: () => { + const s = stream(); + if (isNodeReadableStream(s)) { + throw new Error("Not supported: a Node stream was provided as input to createFileFromStream."); + } + return s; + }, + [rawContent]: stream, + }; +} +/** + * Create an object that implements the File interface. This object is intended to be + * passed into RequestBodyType.formData, and is not guaranteed to work as expected in + * other situations. + * + * Use this function create a File object for use in RequestBodyType.formData in environments where the global File object is unavailable. + * + * @param content - the content of the file as a Uint8Array in memory. + * @param name - the name of the file. + * @param options - optional metadata about the file, e.g. file name, file size, MIME type. + */ +function createFile(content, name, options = {}) { + if (core_util_1.isNodeLike) { + return { + ...unimplementedMethods, + type: options.type ?? "", + lastModified: options.lastModified ?? new Date().getTime(), + webkitRelativePath: options.webkitRelativePath ?? "", + size: content.byteLength, + name, + arrayBuffer: async () => content.buffer, + stream: () => new Blob([toArrayBuffer(content)]).stream(), + [rawContent]: () => content, + }; + } + else { + return new File([toArrayBuffer(content)], name, options); } - return res; -}; - -var isArray = Array.isArray || function (xs) { - return Object.prototype.toString.call(xs) === '[object Array]'; -}; - - -/***/ }), - -/***/ 8611: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -var Stream = (__nccwpck_require__(2781).Stream); -var util = __nccwpck_require__(3837); - -module.exports = DelayedStream; -function DelayedStream() { - this.source = null; - this.dataSize = 0; - this.maxDataSize = 1024 * 1024; - this.pauseStream = true; - - this._maxDataSizeExceeded = false; - this._released = false; - this._bufferedEvents = []; } -util.inherits(DelayedStream, Stream); - -DelayedStream.create = function(source, options) { - var delayedStream = new this(); - - options = options || {}; - for (var option in options) { - delayedStream[option] = options[option]; - } - - delayedStream.source = source; - - var realEmit = source.emit; - source.emit = function() { - delayedStream._handleEmit(arguments); - return realEmit.apply(source, arguments); - }; - - source.on('error', function() {}); - if (delayedStream.pauseStream) { - source.pause(); - } - - return delayedStream; -}; - -Object.defineProperty(DelayedStream.prototype, 'readable', { - configurable: true, - enumerable: true, - get: function() { - return this.source.readable; - } -}); - -DelayedStream.prototype.setEncoding = function() { - return this.source.setEncoding.apply(this.source, arguments); -}; - -DelayedStream.prototype.resume = function() { - if (!this._released) { - this.release(); - } - - this.source.resume(); -}; - -DelayedStream.prototype.pause = function() { - this.source.pause(); -}; - -DelayedStream.prototype.release = function() { - this._released = true; - - this._bufferedEvents.forEach(function(args) { - this.emit.apply(this, args); - }.bind(this)); - this._bufferedEvents = []; -}; - -DelayedStream.prototype.pipe = function() { - var r = Stream.prototype.pipe.apply(this, arguments); - this.resume(); - return r; -}; - -DelayedStream.prototype._handleEmit = function(args) { - if (this._released) { - this.emit.apply(this, args); - return; - } - - if (args[0] === 'data') { - this.dataSize += args[1].length; - this._checkIfMaxDataSizeExceeded(); - } - - this._bufferedEvents.push(args); -}; - -DelayedStream.prototype._checkIfMaxDataSizeExceeded = function() { - if (this._maxDataSizeExceeded) { - return; - } - - if (this.dataSize <= this.maxDataSize) { - return; - } - - this._maxDataSizeExceeded = true; - var message = - 'DelayedStream#maxDataSize of ' + this.maxDataSize + ' bytes exceeded.' - this.emit('error', new Error(message)); -}; - +function toArrayBuffer(source) { + if ("resize" in source.buffer) { + // ArrayBuffer + return source; + } + // SharedArrayBuffer + return source.map((x) => x); +} +//# sourceMappingURL=file.js.map /***/ }), -/***/ 7129: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { +/***/ 50601: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.DEFAULT_CYCLER_OPTIONS = void 0; +exports.createTokenCycler = createTokenCycler; +const core_util_1 = __nccwpck_require__(80637); +// Default options for the cycler if none are provided +exports.DEFAULT_CYCLER_OPTIONS = { + forcedRefreshWindowInMs: 1000, // Force waiting for a refresh 1s before the token expires + retryIntervalInMs: 3000, // Allow refresh attempts every 3s + refreshWindowInMs: 1000 * 60 * 2, // Start refreshing 2m before expiry +}; +/** + * Converts an an unreliable access token getter (which may resolve with null) + * into an AccessTokenGetter by retrying the unreliable getter in a regular + * interval. + * + * @param getAccessToken - A function that produces a promise of an access token that may fail by returning null. + * @param retryIntervalInMs - The time (in milliseconds) to wait between retry attempts. + * @param refreshTimeout - The timestamp after which the refresh attempt will fail, throwing an exception. + * @returns - A promise that, if it resolves, will resolve with an access token. + */ +async function beginRefresh(getAccessToken, retryIntervalInMs, refreshTimeout) { + // This wrapper handles exceptions gracefully as long as we haven't exceeded + // the timeout. + async function tryGetAccessToken() { + if (Date.now() < refreshTimeout) { + try { + return await getAccessToken(); + } + catch { + return null; + } + } + else { + const finalToken = await getAccessToken(); + // Timeout is up, so throw if it's still null + if (finalToken === null) { + throw new Error("Failed to refresh access token."); + } + return finalToken; + } + } + let token = await tryGetAccessToken(); + while (token === null) { + await (0, core_util_1.delay)(retryIntervalInMs); + token = await tryGetAccessToken(); + } + return token; +} +/** + * Creates a token cycler from a credential, scopes, and optional settings. + * + * A token cycler represents a way to reliably retrieve a valid access token + * from a TokenCredential. It will handle initializing the token, refreshing it + * when it nears expiration, and synchronizes refresh attempts to avoid + * concurrency hazards. + * + * @param credential - the underlying TokenCredential that provides the access + * token + * @param tokenCyclerOptions - optionally override default settings for the cycler + * + * @returns - a function that reliably produces a valid access token + */ +function createTokenCycler(credential, tokenCyclerOptions) { + let refreshWorker = null; + let token = null; + let tenantId; + const options = { + ...exports.DEFAULT_CYCLER_OPTIONS, + ...tokenCyclerOptions, + }; + /** + * This little holder defines several predicates that we use to construct + * the rules of refreshing the token. + */ + const cycler = { + /** + * Produces true if a refresh job is currently in progress. + */ + get isRefreshing() { + return refreshWorker !== null; + }, + /** + * Produces true if the cycler SHOULD refresh (we are within the refresh + * window and not already refreshing) + */ + get shouldRefresh() { + if (cycler.isRefreshing) { + return false; + } + if (token?.refreshAfterTimestamp && token.refreshAfterTimestamp < Date.now()) { + return true; + } + return (token?.expiresOnTimestamp ?? 0) - options.refreshWindowInMs < Date.now(); + }, + /** + * Produces true if the cycler MUST refresh (null or nearly-expired + * token). + */ + get mustRefresh() { + return (token === null || token.expiresOnTimestamp - options.forcedRefreshWindowInMs < Date.now()); + }, + }; + /** + * Starts a refresh job or returns the existing job if one is already + * running. + */ + function refresh(scopes, getTokenOptions) { + if (!cycler.isRefreshing) { + // We bind `scopes` here to avoid passing it around a lot + const tryGetAccessToken = () => credential.getToken(scopes, getTokenOptions); + // Take advantage of promise chaining to insert an assignment to `token` + // before the refresh can be considered done. + refreshWorker = beginRefresh(tryGetAccessToken, options.retryIntervalInMs, + // If we don't have a token, then we should timeout immediately + token?.expiresOnTimestamp ?? Date.now()) + .then((_token) => { + refreshWorker = null; + token = _token; + tenantId = getTokenOptions.tenantId; + return token; + }) + .catch((reason) => { + // We also should reset the refresher if we enter a failed state. All + // existing awaiters will throw, but subsequent requests will start a + // new retry chain. + refreshWorker = null; + token = null; + tenantId = undefined; + throw reason; + }); + } + return refreshWorker; + } + return async (scopes, tokenOptions) => { + // + // Simple rules: + // - If we MUST refresh, then return the refresh task, blocking + // the pipeline until a token is available. + // - If we SHOULD refresh, then run refresh but don't return it + // (we can still use the cached token). + // - Return the token, since it's fine if we didn't return in + // step 1. + // + const hasClaimChallenge = Boolean(tokenOptions.claims); + const tenantIdChanged = tenantId !== tokenOptions.tenantId; + if (hasClaimChallenge) { + // If we've received a claim, we know the existing token isn't valid + // We want to clear it so that that refresh worker won't use the old expiration time as a timeout + token = null; + } + // If the tenantId passed in token options is different to the one we have + // Or if we are in claim challenge and the token was rejected and a new access token need to be issued, we need to + // refresh the token with the new tenantId or token. + const mustRefresh = tenantIdChanged || hasClaimChallenge || cycler.mustRefresh; + if (mustRefresh) { + return refresh(scopes, tokenOptions); + } + if (cycler.shouldRefresh) { + refresh(scopes, tokenOptions); + } + return token; + }; +} +//# sourceMappingURL=tokenCycler.js.map -// A linked list to keep track of recently-used-ness -const Yallist = __nccwpck_require__(665) - -const MAX = Symbol('max') -const LENGTH = Symbol('length') -const LENGTH_CALCULATOR = Symbol('lengthCalculator') -const ALLOW_STALE = Symbol('allowStale') -const MAX_AGE = Symbol('maxAge') -const DISPOSE = Symbol('dispose') -const NO_DISPOSE_ON_SET = Symbol('noDisposeOnSet') -const LRU_LIST = Symbol('lruList') -const CACHE = Symbol('cache') -const UPDATE_AGE_ON_GET = Symbol('updateAgeOnGet') - -const naiveLength = () => 1 - -// lruList is a yallist where the head is the youngest -// item, and the tail is the oldest. the list contains the Hit -// objects as the entries. -// Each Hit object has a reference to its Yallist.Node. This -// never changes. -// -// cache is a Map (or PseudoMap) that matches the keys to -// the Yallist.Node object. -class LRUCache { - constructor (options) { - if (typeof options === 'number') - options = { max: options } - - if (!options) - options = {} - - if (options.max && (typeof options.max !== 'number' || options.max < 0)) - throw new TypeError('max must be a non-negative number') - // Kind of weird to have a default max of Infinity, but oh well. - const max = this[MAX] = options.max || Infinity - - const lc = options.length || naiveLength - this[LENGTH_CALCULATOR] = (typeof lc !== 'function') ? naiveLength : lc - this[ALLOW_STALE] = options.stale || false - if (options.maxAge && typeof options.maxAge !== 'number') - throw new TypeError('maxAge must be a number') - this[MAX_AGE] = options.maxAge || 0 - this[DISPOSE] = options.dispose - this[NO_DISPOSE_ON_SET] = options.noDisposeOnSet || false - this[UPDATE_AGE_ON_GET] = options.updateAgeOnGet || false - this.reset() - } - - // resize the cache when the max changes. - set max (mL) { - if (typeof mL !== 'number' || mL < 0) - throw new TypeError('max must be a non-negative number') - - this[MAX] = mL || Infinity - trim(this) - } - get max () { - return this[MAX] - } +/***/ }), - set allowStale (allowStale) { - this[ALLOW_STALE] = !!allowStale - } - get allowStale () { - return this[ALLOW_STALE] - } +/***/ 96158: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - set maxAge (mA) { - if (typeof mA !== 'number') - throw new TypeError('maxAge must be a non-negative number') +"use strict"; - this[MAX_AGE] = mA - trim(this) - } - get maxAge () { - return this[MAX_AGE] - } +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getUserAgentHeaderName = getUserAgentHeaderName; +exports.getUserAgentValue = getUserAgentValue; +const userAgentPlatform_js_1 = __nccwpck_require__(15316); +const constants_js_1 = __nccwpck_require__(43171); +function getUserAgentString(telemetryInfo) { + const parts = []; + for (const [key, value] of telemetryInfo) { + const token = value ? `${key}/${value}` : key; + parts.push(token); + } + return parts.join(" "); +} +/** + * @internal + */ +function getUserAgentHeaderName() { + return (0, userAgentPlatform_js_1.getHeaderName)(); +} +/** + * @internal + */ +async function getUserAgentValue(prefix) { + const runtimeInfo = new Map(); + runtimeInfo.set("core-rest-pipeline", constants_js_1.SDK_VERSION); + await (0, userAgentPlatform_js_1.setPlatformSpecificData)(runtimeInfo); + const defaultAgent = getUserAgentString(runtimeInfo); + const userAgentValue = prefix ? `${prefix} ${defaultAgent}` : defaultAgent; + return userAgentValue; +} +//# sourceMappingURL=userAgent.js.map - // resize the cache when the lengthCalculator changes. - set lengthCalculator (lC) { - if (typeof lC !== 'function') - lC = naiveLength +/***/ }), - if (lC !== this[LENGTH_CALCULATOR]) { - this[LENGTH_CALCULATOR] = lC - this[LENGTH] = 0 - this[LRU_LIST].forEach(hit => { - hit.length = this[LENGTH_CALCULATOR](hit.value, hit.key) - this[LENGTH] += hit.length - }) - } - trim(this) - } - get lengthCalculator () { return this[LENGTH_CALCULATOR] } +/***/ 15316: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - get length () { return this[LENGTH] } - get itemCount () { return this[LRU_LIST].length } +"use strict"; - rforEach (fn, thisp) { - thisp = thisp || this - for (let walker = this[LRU_LIST].tail; walker !== null;) { - const prev = walker.prev - forEachStep(this, fn, walker, thisp) - walker = prev +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getHeaderName = getHeaderName; +exports.setPlatformSpecificData = setPlatformSpecificData; +const tslib_1 = __nccwpck_require__(4351); +const node_os_1 = tslib_1.__importDefault(__nccwpck_require__(70612)); +const node_process_1 = tslib_1.__importDefault(__nccwpck_require__(97742)); +/** + * @internal + */ +function getHeaderName() { + return "User-Agent"; +} +/** + * @internal + */ +async function setPlatformSpecificData(map) { + if (node_process_1.default && node_process_1.default.versions) { + const osInfo = `${node_os_1.default.type()} ${node_os_1.default.release()}; ${node_os_1.default.arch()}`; + const versions = node_process_1.default.versions; + if (versions.bun) { + map.set("Bun", `${versions.bun} (${osInfo})`); + } + else if (versions.deno) { + map.set("Deno", `${versions.deno} (${osInfo})`); + } + else if (versions.node) { + map.set("Node", `${versions.node} (${osInfo})`); + } } - } +} +//# sourceMappingURL=userAgentPlatform.js.map - forEach (fn, thisp) { - thisp = thisp || this - for (let walker = this[LRU_LIST].head; walker !== null;) { - const next = walker.next - forEachStep(this, fn, walker, thisp) - walker = next - } - } +/***/ }), - keys () { - return this[LRU_LIST].toArray().map(k => k.key) - } +/***/ 7188: +/***/ ((__unused_webpack_module, exports) => { - values () { - return this[LRU_LIST].toArray().map(k => k.value) - } +"use strict"; - reset () { - if (this[DISPOSE] && - this[LRU_LIST] && - this[LRU_LIST].length) { - this[LRU_LIST].forEach(hit => this[DISPOSE](hit.key, hit.value)) +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.wrapAbortSignalLike = wrapAbortSignalLike; +/** + * Creates a native AbortSignal which reflects the state of the provided AbortSignalLike. + * If the AbortSignalLike is already a native AbortSignal, it is returned as is. + * @param abortSignalLike - The AbortSignalLike to wrap. + * @returns - An object containing the native AbortSignal and an optional cleanup function. The cleanup function should be called when the AbortSignal is no longer needed. + */ +function wrapAbortSignalLike(abortSignalLike) { + if (abortSignalLike instanceof AbortSignal) { + return { abortSignal: abortSignalLike }; } + if (abortSignalLike.aborted) { + return { abortSignal: AbortSignal.abort(abortSignalLike.reason) }; + } + const controller = new AbortController(); + let needsCleanup = true; + function cleanup() { + if (needsCleanup) { + abortSignalLike.removeEventListener("abort", listener); + needsCleanup = false; + } + } + function listener() { + controller.abort(abortSignalLike.reason); + cleanup(); + } + abortSignalLike.addEventListener("abort", listener); + return { abortSignal: controller.signal, cleanup }; +} +//# sourceMappingURL=wrapAbortSignal.js.map - this[CACHE] = new Map() // hash of items by key - this[LRU_LIST] = new Yallist() // list of items in order of use recency - this[LENGTH] = 0 // length of items in the list - } - - dump () { - return this[LRU_LIST].map(hit => - isStale(this, hit) ? false : { - k: hit.key, - v: hit.value, - e: hit.now + (hit.maxAge || 0) - }).toArray().filter(h => h) - } - - dumpLru () { - return this[LRU_LIST] - } +/***/ }), - set (key, value, maxAge) { - maxAge = maxAge || this[MAX_AGE] +/***/ 19363: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - if (maxAge && typeof maxAge !== 'number') - throw new TypeError('maxAge must be a number') +"use strict"; - const now = maxAge ? Date.now() : 0 - const len = this[LENGTH_CALCULATOR](value, key) +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.createTracingClient = exports.useInstrumenter = void 0; +var instrumenter_js_1 = __nccwpck_require__(63418); +Object.defineProperty(exports, "useInstrumenter", ({ enumerable: true, get: function () { return instrumenter_js_1.useInstrumenter; } })); +var tracingClient_js_1 = __nccwpck_require__(69254); +Object.defineProperty(exports, "createTracingClient", ({ enumerable: true, get: function () { return tracingClient_js_1.createTracingClient; } })); +//# sourceMappingURL=index.js.map - if (this[CACHE].has(key)) { - if (len > this[MAX]) { - del(this, this[CACHE].get(key)) - return false - } +/***/ }), - const node = this[CACHE].get(key) - const item = node.value +/***/ 63418: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - // dispose of the old one before overwriting - // split out into 2 ifs for better coverage tracking - if (this[DISPOSE]) { - if (!this[NO_DISPOSE_ON_SET]) - this[DISPOSE](key, item.value) - } +"use strict"; - item.now = now - item.maxAge = maxAge - item.value = value - this[LENGTH] += len - item.length - item.length = len - this.get(key) - trim(this) - return true +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.createDefaultTracingSpan = createDefaultTracingSpan; +exports.createDefaultInstrumenter = createDefaultInstrumenter; +exports.useInstrumenter = useInstrumenter; +exports.getInstrumenter = getInstrumenter; +const tracingContext_js_1 = __nccwpck_require__(18110); +const state_js_1 = __nccwpck_require__(81241); +function createDefaultTracingSpan() { + return { + end: () => { + // noop + }, + isRecording: () => false, + recordException: () => { + // noop + }, + setAttribute: () => { + // noop + }, + setStatus: () => { + // noop + }, + addEvent: () => { + // noop + }, + }; +} +function createDefaultInstrumenter() { + return { + createRequestHeaders: () => { + return {}; + }, + parseTraceparentHeader: () => { + return undefined; + }, + startSpan: (_name, spanOptions) => { + return { + span: createDefaultTracingSpan(), + tracingContext: (0, tracingContext_js_1.createTracingContext)({ parentContext: spanOptions.tracingContext }), + }; + }, + withContext(_context, callback, ...callbackArgs) { + return callback(...callbackArgs); + }, + }; +} +/** + * Extends the Azure SDK with support for a given instrumenter implementation. + * + * @param instrumenter - The instrumenter implementation to use. + */ +function useInstrumenter(instrumenter) { + state_js_1.state.instrumenterImplementation = instrumenter; +} +/** + * Gets the currently set instrumenter, a No-Op instrumenter by default. + * + * @returns The currently set instrumenter + */ +function getInstrumenter() { + if (!state_js_1.state.instrumenterImplementation) { + state_js_1.state.instrumenterImplementation = createDefaultInstrumenter(); } + return state_js_1.state.instrumenterImplementation; +} +//# sourceMappingURL=instrumenter.js.map - const hit = new Entry(key, value, len, now, maxAge) +/***/ }), - // oversized objects fall out of cache automatically. - if (hit.length > this[MAX]) { - if (this[DISPOSE]) - this[DISPOSE](key, value) +/***/ 81241: +/***/ ((__unused_webpack_module, exports) => { - return false - } +"use strict"; - this[LENGTH] += hit.length - this[LRU_LIST].unshift(hit) - this[CACHE].set(key, this[LRU_LIST].head) - trim(this) - return true - } +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.state = void 0; +/** + * @internal + * + * Holds the singleton instrumenter, to be shared across CJS and ESM imports. + */ +exports.state = { + instrumenterImplementation: undefined, +}; +//# sourceMappingURL=state-cjs.cjs.map - has (key) { - if (!this[CACHE].has(key)) return false - const hit = this[CACHE].get(key).value - return !isStale(this, hit) - } +/***/ }), - get (key) { - return get(this, key, true) - } +/***/ 69254: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - peek (key) { - return get(this, key, false) - } +"use strict"; - pop () { - const node = this[LRU_LIST].tail - if (!node) - return null +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.createTracingClient = createTracingClient; +const instrumenter_js_1 = __nccwpck_require__(63418); +const tracingContext_js_1 = __nccwpck_require__(18110); +/** + * Creates a new tracing client. + * + * @param options - Options used to configure the tracing client. + * @returns - An instance of {@link TracingClient}. + */ +function createTracingClient(options) { + const { namespace, packageName, packageVersion } = options; + function startSpan(name, operationOptions, spanOptions) { + const startSpanResult = (0, instrumenter_js_1.getInstrumenter)().startSpan(name, { + ...spanOptions, + packageName: packageName, + packageVersion: packageVersion, + tracingContext: operationOptions?.tracingOptions?.tracingContext, + }); + let tracingContext = startSpanResult.tracingContext; + const span = startSpanResult.span; + if (!tracingContext.getValue(tracingContext_js_1.knownContextKeys.namespace)) { + tracingContext = tracingContext.setValue(tracingContext_js_1.knownContextKeys.namespace, namespace); + } + span.setAttribute("az.namespace", tracingContext.getValue(tracingContext_js_1.knownContextKeys.namespace)); + const updatedOptions = Object.assign({}, operationOptions, { + tracingOptions: { ...operationOptions?.tracingOptions, tracingContext }, + }); + return { + span, + updatedOptions, + }; + } + async function withSpan(name, operationOptions, callback, spanOptions) { + const { span, updatedOptions } = startSpan(name, operationOptions, spanOptions); + try { + const result = await withContext(updatedOptions.tracingOptions.tracingContext, () => Promise.resolve(callback(updatedOptions, span))); + span.setStatus({ status: "success" }); + return result; + } + catch (err) { + span.setStatus({ status: "error", error: err }); + throw err; + } + finally { + span.end(); + } + } + function withContext(context, callback, ...callbackArgs) { + return (0, instrumenter_js_1.getInstrumenter)().withContext(context, callback, ...callbackArgs); + } + /** + * Parses a traceparent header value into a span identifier. + * + * @param traceparentHeader - The traceparent header to parse. + * @returns An implementation-specific identifier for the span. + */ + function parseTraceparentHeader(traceparentHeader) { + return (0, instrumenter_js_1.getInstrumenter)().parseTraceparentHeader(traceparentHeader); + } + /** + * Creates a set of request headers to propagate tracing information to a backend. + * + * @param tracingContext - The context containing the span to serialize. + * @returns The set of headers to add to a request. + */ + function createRequestHeaders(tracingContext) { + return (0, instrumenter_js_1.getInstrumenter)().createRequestHeaders(tracingContext); + } + return { + startSpan, + withSpan, + withContext, + parseTraceparentHeader, + createRequestHeaders, + }; +} +//# sourceMappingURL=tracingClient.js.map - del(this, node) - return node.value - } +/***/ }), - del (key) { - del(this, this[CACHE].get(key)) - } +/***/ 18110: +/***/ ((__unused_webpack_module, exports) => { - load (arr) { - // reset the cache - this.reset() +"use strict"; - const now = Date.now() - // A previous serialized cache has the most recent items first - for (let l = arr.length - 1; l >= 0; l--) { - const hit = arr[l] - const expiresAt = hit.e || 0 - if (expiresAt === 0) - // the item was created without expiration in a non aged cache - this.set(hit.k, hit.v) - else { - const maxAge = expiresAt - now - // dont add already expired items - if (maxAge > 0) { - this.set(hit.k, hit.v, maxAge) - } - } +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.TracingContextImpl = exports.knownContextKeys = void 0; +exports.createTracingContext = createTracingContext; +/** @internal */ +exports.knownContextKeys = { + span: Symbol.for("@azure/core-tracing span"), + namespace: Symbol.for("@azure/core-tracing namespace"), +}; +/** + * Creates a new {@link TracingContext} with the given options. + * @param options - A set of known keys that may be set on the context. + * @returns A new {@link TracingContext} with the given options. + * + * @internal + */ +function createTracingContext(options = {}) { + let context = new TracingContextImpl(options.parentContext); + if (options.span) { + context = context.setValue(exports.knownContextKeys.span, options.span); } - } - - prune () { - this[CACHE].forEach((value, key) => get(this, key, false)) - } + if (options.namespace) { + context = context.setValue(exports.knownContextKeys.namespace, options.namespace); + } + return context; } - -const get = (self, key, doUse) => { - const node = self[CACHE].get(key) - if (node) { - const hit = node.value - if (isStale(self, hit)) { - del(self, node) - if (!self[ALLOW_STALE]) - return undefined - } else { - if (doUse) { - if (self[UPDATE_AGE_ON_GET]) - node.value.now = Date.now() - self[LRU_LIST].unshiftNode(node) - } +/** @internal */ +class TracingContextImpl { + _contextMap; + constructor(initialContext) { + this._contextMap = + initialContext instanceof TracingContextImpl + ? new Map(initialContext._contextMap) + : new Map(); + } + setValue(key, value) { + const newContext = new TracingContextImpl(this); + newContext._contextMap.set(key, value); + return newContext; + } + getValue(key) { + return this._contextMap.get(key); + } + deleteValue(key) { + const newContext = new TracingContextImpl(this); + newContext._contextMap.delete(key); + return newContext; } - return hit.value - } } +exports.TracingContextImpl = TracingContextImpl; +//# sourceMappingURL=tracingContext.js.map -const isStale = (self, hit) => { - if (!hit || (!hit.maxAge && !self[MAX_AGE])) - return false +/***/ }), - const diff = Date.now() - hit.now - return hit.maxAge ? diff > hit.maxAge - : self[MAX_AGE] && (diff > self[MAX_AGE]) -} +/***/ 87205: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; -const trim = self => { - if (self[LENGTH] > self[MAX]) { - for (let walker = self[LRU_LIST].tail; - self[LENGTH] > self[MAX] && walker !== null;) { - // We know that we're about to delete this one, and also - // what the next least recently used key will be, so just - // go ahead and set it now. - const prev = walker.prev - del(self, walker) - walker = prev +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.cancelablePromiseRace = cancelablePromiseRace; +/** + * promise.race() wrapper that aborts rest of promises as soon as the first promise settles. + */ +async function cancelablePromiseRace(abortablePromiseBuilders, options) { + const aborter = new AbortController(); + function abortHandler() { + aborter.abort(); + } + options?.abortSignal?.addEventListener("abort", abortHandler); + try { + return await Promise.race(abortablePromiseBuilders.map((p) => p({ abortSignal: aborter.signal }))); + } + finally { + aborter.abort(); + options?.abortSignal?.removeEventListener("abort", abortHandler); } - } } +//# sourceMappingURL=aborterUtils.js.map -const del = (self, node) => { - if (node) { - const hit = node.value - if (self[DISPOSE]) - self[DISPOSE](hit.key, hit.value) +/***/ }), - self[LENGTH] -= hit.length - self[CACHE].delete(hit.key) - self[LRU_LIST].removeNode(node) - } -} +/***/ 12376: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -class Entry { - constructor (key, value, length, now, maxAge) { - this.key = key - this.value = value - this.length = length - this.now = now - this.maxAge = maxAge || 0 - } -} +"use strict"; -const forEachStep = (self, fn, node, thisp) => { - let hit = node.value - if (isStale(self, hit)) { - del(self, node) - if (!self[ALLOW_STALE]) - hit = undefined - } - if (hit) - fn.call(thisp, hit.value, hit.key, self) +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.createAbortablePromise = createAbortablePromise; +const abort_controller_1 = __nccwpck_require__(54812); +/** + * Creates an abortable promise. + * @param buildPromise - A function that takes the resolve and reject functions as parameters. + * @param options - The options for the abortable promise. + * @returns A promise that can be aborted. + */ +function createAbortablePromise(buildPromise, options) { + const { cleanupBeforeAbort, abortSignal, abortErrorMsg } = options ?? {}; + return new Promise((resolve, reject) => { + function rejectOnAbort() { + reject(new abort_controller_1.AbortError(abortErrorMsg ?? "The operation was aborted.")); + } + function removeListeners() { + abortSignal?.removeEventListener("abort", onAbort); + } + function onAbort() { + cleanupBeforeAbort?.(); + removeListeners(); + rejectOnAbort(); + } + if (abortSignal?.aborted) { + return rejectOnAbort(); + } + try { + buildPromise((x) => { + removeListeners(); + resolve(x); + }, (x) => { + removeListeners(); + reject(x); + }); + } + catch (err) { + reject(err); + } + abortSignal?.addEventListener("abort", onAbort); + }); } - -module.exports = LRUCache - +//# sourceMappingURL=createAbortablePromise.js.map /***/ }), -/***/ 7426: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { +/***/ 19259: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -/*! - * mime-db - * Copyright(c) 2014 Jonathan Ong - * MIT Licensed - */ +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.delay = delay; +exports.calculateRetryDelay = calculateRetryDelay; +const createAbortablePromise_js_1 = __nccwpck_require__(12376); +const util_1 = __nccwpck_require__(68152); +const StandardAbortMessage = "The delay was aborted."; /** - * Module exports. + * A wrapper for setTimeout that resolves a promise after timeInMs milliseconds. + * @param timeInMs - The number of milliseconds to be delayed. + * @param options - The options for delay - currently abort options + * @returns Promise that is resolved after timeInMs */ - -module.exports = __nccwpck_require__(3765) - +function delay(timeInMs, options) { + let token; + const { abortSignal, abortErrorMsg } = options ?? {}; + return (0, createAbortablePromise_js_1.createAbortablePromise)((resolve) => { + token = setTimeout(resolve, timeInMs); + }, { + cleanupBeforeAbort: () => clearTimeout(token), + abortSignal, + abortErrorMsg: abortErrorMsg ?? StandardAbortMessage, + }); +} +/** + * Calculates the delay interval for retry attempts using exponential delay with jitter. + * @param retryAttempt - The current retry attempt number. + * @param config - The exponential retry configuration. + * @returns An object containing the calculated retry delay. + */ +function calculateRetryDelay(retryAttempt, config) { + // Exponentially increase the delay each time + const exponentialDelay = config.retryDelayInMs * Math.pow(2, retryAttempt); + // Don't let the delay exceed the maximum + const clampedDelay = Math.min(config.maxRetryDelayInMs, exponentialDelay); + // Allow the final value to have some "jitter" (within 50% of the delay size) so + // that retries across multiple clients don't occur simultaneously. + const retryAfterInMs = clampedDelay / 2 + (0, util_1.getRandomIntegerInclusive)(0, clampedDelay / 2); + return { retryAfterInMs }; +} +//# sourceMappingURL=delay.js.map /***/ }), -/***/ 3583: +/***/ 46734: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -/*! - * mime-types - * Copyright(c) 2014 Jonathan Ong - * Copyright(c) 2015 Douglas Christopher Wilson - * MIT Licensed + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getErrorMessage = getErrorMessage; +const util_1 = __nccwpck_require__(68152); +/** + * Given what is thought to be an error object, return the message if possible. + * If the message is missing, returns a stringified version of the input. + * @param e - Something thrown from a try block + * @returns The error message or a string of the input */ +function getErrorMessage(e) { + if ((0, util_1.isError)(e)) { + return e.message; + } + else { + let stringified; + try { + if (typeof e === "object" && e) { + stringified = JSON.stringify(e); + } + else { + stringified = String(e); + } + } + catch (err) { + stringified = "[unable to stringify input]"; + } + return `Unknown error ${stringified}`; + } +} +//# sourceMappingURL=error.js.map +/***/ }), + +/***/ 80637: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.isWebWorker = exports.isReactNative = exports.isNodeRuntime = exports.isNodeLike = exports.isNode = exports.isDeno = exports.isBun = exports.isBrowser = exports.objectHasProperty = exports.isObjectWithProperties = exports.isDefined = exports.getErrorMessage = exports.delay = exports.createAbortablePromise = exports.cancelablePromiseRace = void 0; +exports.calculateRetryDelay = calculateRetryDelay; +exports.computeSha256Hash = computeSha256Hash; +exports.computeSha256Hmac = computeSha256Hmac; +exports.getRandomIntegerInclusive = getRandomIntegerInclusive; +exports.isError = isError; +exports.isObject = isObject; +exports.randomUUID = randomUUID; +exports.uint8ArrayToString = uint8ArrayToString; +exports.stringToUint8Array = stringToUint8Array; +const tslib_1 = __nccwpck_require__(4351); +const tspRuntime = tslib_1.__importStar(__nccwpck_require__(68152)); +var aborterUtils_js_1 = __nccwpck_require__(87205); +Object.defineProperty(exports, "cancelablePromiseRace", ({ enumerable: true, get: function () { return aborterUtils_js_1.cancelablePromiseRace; } })); +var createAbortablePromise_js_1 = __nccwpck_require__(12376); +Object.defineProperty(exports, "createAbortablePromise", ({ enumerable: true, get: function () { return createAbortablePromise_js_1.createAbortablePromise; } })); +var delay_js_1 = __nccwpck_require__(19259); +Object.defineProperty(exports, "delay", ({ enumerable: true, get: function () { return delay_js_1.delay; } })); +var error_js_1 = __nccwpck_require__(46734); +Object.defineProperty(exports, "getErrorMessage", ({ enumerable: true, get: function () { return error_js_1.getErrorMessage; } })); +var typeGuards_js_1 = __nccwpck_require__(1187); +Object.defineProperty(exports, "isDefined", ({ enumerable: true, get: function () { return typeGuards_js_1.isDefined; } })); +Object.defineProperty(exports, "isObjectWithProperties", ({ enumerable: true, get: function () { return typeGuards_js_1.isObjectWithProperties; } })); +Object.defineProperty(exports, "objectHasProperty", ({ enumerable: true, get: function () { return typeGuards_js_1.objectHasProperty; } })); /** - * Module dependencies. - * @private + * Calculates the delay interval for retry attempts using exponential delay with jitter. + * + * @param retryAttempt - The current retry attempt number. + * + * @param config - The exponential retry configuration. + * + * @returns An object containing the calculated retry delay. */ - -var db = __nccwpck_require__(7426) -var extname = (__nccwpck_require__(1017).extname) - +function calculateRetryDelay(retryAttempt, config) { + return tspRuntime.calculateRetryDelay(retryAttempt, config); +} /** - * Module variables. - * @private + * Generates a SHA-256 hash. + * + * @param content - The data to be included in the hash. + * + * @param encoding - The textual encoding to use for the returned hash. */ - -var EXTRACT_TYPE_REGEXP = /^\s*([^;\s]*)(?:;|\s|$)/ -var TEXT_TYPE_REGEXP = /^text\//i - +function computeSha256Hash(content, encoding) { + return tspRuntime.computeSha256Hash(content, encoding); +} /** - * Module exports. - * @public + * Generates a SHA-256 HMAC signature. + * + * @param key - The HMAC key represented as a base64 string, used to generate the cryptographic HMAC hash. + * + * @param stringToSign - The data to be signed. + * + * @param encoding - The textual encoding to use for the returned HMAC digest. */ - -exports.charset = charset -exports.charsets = { lookup: charset } -exports.contentType = contentType -exports.extension = extension -exports.extensions = Object.create(null) -exports.lookup = lookup -exports.types = Object.create(null) - -// Populate the extensions/types maps -populateMaps(exports.extensions, exports.types) - +function computeSha256Hmac(key, stringToSign, encoding) { + return tspRuntime.computeSha256Hmac(key, stringToSign, encoding); +} /** - * Get the default charset for a MIME type. + * Returns a random integer value between a lower and upper bound, inclusive of both bounds. Note that this uses Math.random and isn't secure. If you need to use this for any kind of security purpose, find a better source of random. * - * @param {string} type - * @return {boolean|string} + * @param min - The smallest integer value allowed. + * + * @param max - The largest integer value allowed. */ - -function charset (type) { - if (!type || typeof type !== 'string') { - return false - } - - // TODO: use media-typer - var match = EXTRACT_TYPE_REGEXP.exec(type) - var mime = match && db[match[1].toLowerCase()] - - if (mime && mime.charset) { - return mime.charset - } - - // default text/* to utf-8 - if (match && TEXT_TYPE_REGEXP.test(match[1])) { - return 'UTF-8' - } - - return false +function getRandomIntegerInclusive(min, max) { + return tspRuntime.getRandomIntegerInclusive(min, max); } - /** - * Create a full Content-Type header given a MIME type or extension. + * Typeguard for an error object shape (has name and message) * - * @param {string} str - * @return {boolean|string} + * @param e - Something caught by a catch clause. */ - -function contentType (str) { - // TODO: should this even be in this module? - if (!str || typeof str !== 'string') { - return false - } - - var mime = str.indexOf('/') === -1 - ? exports.lookup(str) - : str - - if (!mime) { - return false - } - - // TODO: use content-type or other module - if (mime.indexOf('charset') === -1) { - var charset = exports.charset(mime) - if (charset) mime += '; charset=' + charset.toLowerCase() - } - - return mime +function isError(e) { + return tspRuntime.isError(e); } - /** - * Get the default extension for a MIME type. + * Helper to determine when an input is a generic JS object. * - * @param {string} type - * @return {boolean|string} + * @returns true when input is an object type that is not null, Array, RegExp, or Date. */ - -function extension (type) { - if (!type || typeof type !== 'string') { - return false - } - - // TODO: use media-typer - var match = EXTRACT_TYPE_REGEXP.exec(type) - - // get extensions - var exts = match && exports.extensions[match[1].toLowerCase()] - - if (!exts || !exts.length) { - return false - } - - return exts[0] +function isObject(input) { + return tspRuntime.isObject(input); } - /** - * Lookup the MIME type for a file path/extension. + * Generated Universally Unique Identifier * - * @param {string} path - * @return {boolean|string} + * @returns RFC4122 v4 UUID. + */ +function randomUUID() { + return tspRuntime.randomUUID(); +} +/** + * A constant that indicates whether the environment the code is running is a Web Browser. + */ +exports.isBrowser = tspRuntime.isBrowser; +/** + * A constant that indicates whether the environment the code is running is Bun.sh. + */ +exports.isBun = tspRuntime.isBun; +/** + * A constant that indicates whether the environment the code is running is Deno. + */ +exports.isDeno = tspRuntime.isDeno; +/** + * A constant that indicates whether the environment the code is running is a Node.js compatible environment. + * + * @deprecated + * + * Use `isNodeLike` instead. + */ +exports.isNode = tspRuntime.isNodeLike; +/** + * A constant that indicates whether the environment the code is running is a Node.js compatible environment. + */ +exports.isNodeLike = tspRuntime.isNodeLike; +/** + * A constant that indicates whether the environment the code is running is Node.JS. + */ +exports.isNodeRuntime = tspRuntime.isNodeRuntime; +/** + * A constant that indicates whether the environment the code is running is in React-Native. + */ +exports.isReactNative = tspRuntime.isReactNative; +/** + * A constant that indicates whether the environment the code is running is a Web Worker. + */ +exports.isWebWorker = tspRuntime.isWebWorker; +/** + * The helper that transforms bytes with specific character encoding into string + * @param bytes - the uint8array bytes + * @param format - the format we use to encode the byte + * @returns a string of the encoded string + */ +function uint8ArrayToString(bytes, format) { + return tspRuntime.uint8ArrayToString(bytes, format); +} +/** + * The helper that transforms string to specific character encoded bytes array. + * @param value - the string to be converted + * @param format - the format we use to decode the value + * @returns a uint8array */ +function stringToUint8Array(value, format) { + return tspRuntime.stringToUint8Array(value, format); +} +//# sourceMappingURL=index.js.map -function lookup (path) { - if (!path || typeof path !== 'string') { - return false - } +/***/ }), - // get the extension ("ext" or ".ext" or full path) - var extension = extname('x.' + path) - .toLowerCase() - .substr(1) +/***/ 1187: +/***/ ((__unused_webpack_module, exports) => { - if (!extension) { - return false - } +"use strict"; - return exports.types[extension] || false +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.isDefined = isDefined; +exports.isObjectWithProperties = isObjectWithProperties; +exports.objectHasProperty = objectHasProperty; +/** + * Helper TypeGuard that checks if something is defined or not. + * @param thing - Anything + */ +function isDefined(thing) { + return typeof thing !== "undefined" && thing !== null; } - /** - * Populate the extensions and types maps. - * @private + * Helper TypeGuard that checks if the input is an object with the specified properties. + * @param thing - Anything. + * @param properties - The name of the properties that should appear in the object. */ - -function populateMaps (extensions, types) { - // source preference (least -> most) - var preference = ['nginx', 'apache', undefined, 'iana'] - - Object.keys(db).forEach(function forEachMimeType (type) { - var mime = db[type] - var exts = mime.extensions - - if (!exts || !exts.length) { - return +function isObjectWithProperties(thing, properties) { + if (!isDefined(thing) || typeof thing !== "object") { + return false; } - - // mime -> extensions - extensions[type] = exts - - // extension -> mime - for (var i = 0; i < exts.length; i++) { - var extension = exts[i] - - if (types[extension]) { - var from = preference.indexOf(db[types[extension]].source) - var to = preference.indexOf(mime.source) - - if (types[extension] !== 'application/octet-stream' && - (from > to || (from === to && types[extension].substr(0, 12) === 'application/'))) { - // skip the remapping - continue + for (const property of properties) { + if (!objectHasProperty(thing, property)) { + return false; } - } - - // set the extension -> mime - types[extension] = type } - }) + return true; } - - +/** + * Helper TypeGuard that checks if the input is an object with the specified property. + * @param thing - Any object. + * @param property - The name of the property that should appear in the object. + */ +function objectHasProperty(thing, property) { + return (isDefined(thing) && typeof thing === "object" && property in thing); +} +//# sourceMappingURL=typeGuards.js.map + /***/ }), -/***/ 3973: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { +/***/ 42118: +/***/ ((__unused_webpack_module, exports) => { -module.exports = minimatch -minimatch.Minimatch = Minimatch +"use strict"; -var path = { sep: '/' } -try { - path = __nccwpck_require__(1017) -} catch (er) {} +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.AbortError = void 0; +/** + * This error is thrown when an asynchronous operation has been aborted. + * Check for this error by testing the `name` that the name property of the + * error matches `"AbortError"`. + * + * @example + * ```ts + * const controller = new AbortController(); + * controller.abort(); + * try { + * doAsyncWork(controller.signal) + * } catch (e) { + * if (e.name === 'AbortError') { + * // handle abort error here. + * } + * } + * ``` + */ +class AbortError extends Error { + constructor(message) { + super(message); + this.name = "AbortError"; + } +} +exports.AbortError = AbortError; +//# sourceMappingURL=AbortError.js.map -var GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {} -var expand = __nccwpck_require__(3717) +/***/ }), -var plTypes = { - '!': { open: '(?:(?!(?:', close: '))[^/]*?)'}, - '?': { open: '(?:', close: ')?' }, - '+': { open: '(?:', close: ')+' }, - '*': { open: '(?:', close: ')*' }, - '@': { open: '(?:', close: ')' } -} +/***/ 54812: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -// any single thing other than / -// don't need to escape / when using new RegExp() -var qmark = '[^/]' +"use strict"; -// * => any number of characters -var star = qmark + '*?' +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.AbortError = void 0; +var AbortError_js_1 = __nccwpck_require__(42118); +Object.defineProperty(exports, "AbortError", ({ enumerable: true, get: function () { return AbortError_js_1.AbortError; } })); +//# sourceMappingURL=index.js.map -// ** when dots are allowed. Anything goes, except .. and . -// not (^ or / followed by one or two dots followed by $ or /), -// followed by anything, any number of times. -var twoStarDot = '(?:(?!(?:\\\/|^)(?:\\.{1,2})($|\\\/)).)*?' +/***/ }), -// not a ^ or / followed by a dot, -// followed by anything, any number of times. -var twoStarNoDot = '(?:(?!(?:\\\/|^)\\.).)*?' +/***/ 17309: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -// characters that need to be escaped in RegExp. -var reSpecials = charSet('().*{}+?[]^$\\!') +"use strict"; -// "abc" -> { a:true, b:true, c:true } -function charSet (s) { - return s.split('').reduce(function (set, c) { - set[c] = true - return set - }, {}) -} +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.XML_CHARKEY = exports.XML_ATTRKEY = exports.parseXML = exports.stringifyXML = void 0; +var xml_js_1 = __nccwpck_require__(39170); +Object.defineProperty(exports, "stringifyXML", ({ enumerable: true, get: function () { return xml_js_1.stringifyXML; } })); +Object.defineProperty(exports, "parseXML", ({ enumerable: true, get: function () { return xml_js_1.parseXML; } })); +var xml_common_js_1 = __nccwpck_require__(62060); +Object.defineProperty(exports, "XML_ATTRKEY", ({ enumerable: true, get: function () { return xml_common_js_1.XML_ATTRKEY; } })); +Object.defineProperty(exports, "XML_CHARKEY", ({ enumerable: true, get: function () { return xml_common_js_1.XML_CHARKEY; } })); +//# sourceMappingURL=index.js.map -// normalizes slashes. -var slashSplit = /\/+/ +/***/ }), -minimatch.filter = filter -function filter (pattern, options) { - options = options || {} - return function (p, i, list) { - return minimatch(p, pattern, options) - } -} +/***/ 62060: +/***/ ((__unused_webpack_module, exports) => { -function ext (a, b) { - a = a || {} - b = b || {} - var t = {} - Object.keys(b).forEach(function (k) { - t[k] = b[k] - }) - Object.keys(a).forEach(function (k) { - t[k] = a[k] - }) - return t -} +"use strict"; -minimatch.defaults = function (def) { - if (!def || !Object.keys(def).length) return minimatch +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.XML_CHARKEY = exports.XML_ATTRKEY = void 0; +/** + * Default key used to access the XML attributes. + */ +exports.XML_ATTRKEY = "$"; +/** + * Default key used to access the XML value content. + */ +exports.XML_CHARKEY = "_"; +//# sourceMappingURL=xml.common.js.map - var orig = minimatch +/***/ }), - var m = function minimatch (p, pattern, options) { - return orig.minimatch(p, pattern, ext(def, options)) - } +/***/ 39170: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - m.Minimatch = function Minimatch (pattern, options) { - return new orig.Minimatch(pattern, ext(def, options)) - } +"use strict"; - return m +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.stringifyXML = stringifyXML; +exports.parseXML = parseXML; +const fast_xml_parser_1 = __nccwpck_require__(74577); +const xml_common_js_1 = __nccwpck_require__(62060); +function getCommonOptions(options) { + var _a; + return { + attributesGroupName: xml_common_js_1.XML_ATTRKEY, + textNodeName: (_a = options.xmlCharKey) !== null && _a !== void 0 ? _a : xml_common_js_1.XML_CHARKEY, + ignoreAttributes: false, + suppressBooleanAttributes: false, + }; } - -Minimatch.defaults = function (def) { - if (!def || !Object.keys(def).length) return Minimatch - return minimatch.defaults(def).Minimatch +function getSerializerOptions(options = {}) { + var _a, _b; + return Object.assign(Object.assign({}, getCommonOptions(options)), { attributeNamePrefix: "@_", format: true, suppressEmptyNode: true, indentBy: "", rootNodeName: (_a = options.rootName) !== null && _a !== void 0 ? _a : "root", cdataPropName: (_b = options.cdataPropName) !== null && _b !== void 0 ? _b : "__cdata" }); } - -function minimatch (p, pattern, options) { - if (typeof pattern !== 'string') { - throw new TypeError('glob pattern string required') - } - - if (!options) options = {} - - // shortcut: comments match nothing. - if (!options.nocomment && pattern.charAt(0) === '#') { - return false - } - - // "" only matches "" - if (pattern.trim() === '') return p === '' - - return new Minimatch(pattern, options).match(p) +function getParserOptions(options = {}) { + return Object.assign(Object.assign({}, getCommonOptions(options)), { parseAttributeValue: false, parseTagValue: false, attributeNamePrefix: "", stopNodes: options.stopNodes, processEntities: true, trimValues: false }); } - -function Minimatch (pattern, options) { - if (!(this instanceof Minimatch)) { - return new Minimatch(pattern, options) - } - - if (typeof pattern !== 'string') { - throw new TypeError('glob pattern string required') - } - - if (!options) options = {} - pattern = pattern.trim() - - // windows support: need to use /, not \ - if (path.sep !== '/') { - pattern = pattern.split(path.sep).join('/') - } - - this.options = options - this.set = [] - this.pattern = pattern - this.regexp = null - this.negate = false - this.comment = false - this.empty = false - - // make the set of regexps etc. - this.make() +/** + * Converts given JSON object to XML string + * @param obj - JSON object to be converted into XML string + * @param opts - Options that govern the XML building of given JSON object + * `rootName` indicates the name of the root element in the resulting XML + */ +function stringifyXML(obj, opts = {}) { + const parserOptions = getSerializerOptions(opts); + const j2x = new fast_xml_parser_1.XMLBuilder(parserOptions); + const node = { [parserOptions.rootNodeName]: obj }; + const xmlData = j2x.build(node); + return `${xmlData}`.replace(/\n/g, ""); } +/** + * Converts given XML string into JSON + * @param str - String containing the XML content to be parsed into JSON + * @param opts - Options that govern the parsing of given xml string + * `includeRoot` indicates whether the root element is to be included or not in the output + */ +async function parseXML(str, opts = {}) { + if (!str) { + throw new Error("Document is empty"); + } + const validation = fast_xml_parser_1.XMLValidator.validate(str); + if (validation !== true) { + throw validation; + } + const parser = new fast_xml_parser_1.XMLParser(getParserOptions(opts)); + const parsedXml = parser.parse(str); + // Remove the node. + // This is a change in behavior on fxp v4. Issue #424 + if (parsedXml["?xml"]) { + delete parsedXml["?xml"]; + } + if (!opts.includeRoot) { + for (const key of Object.keys(parsedXml)) { + const value = parsedXml[key]; + return typeof value === "object" ? Object.assign({}, value) : value; + } + } + return parsedXml; +} +//# sourceMappingURL=xml.js.map -Minimatch.prototype.debug = function () {} - -Minimatch.prototype.make = make -function make () { - // don't do it more than once. - if (this._made) return - - var pattern = this.pattern - var options = this.options - - // empty patterns and comments match nothing. - if (!options.nocomment && pattern.charAt(0) === '#') { - this.comment = true - return - } - if (!pattern) { - this.empty = true - return - } +/***/ }), - // step 1: figure out negation, etc. - this.parseNegate() +/***/ 89497: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - // step 2: expand braces - var set = this.globSet = this.braceExpand() +"use strict"; - if (options.debug) this.debug = console.error +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.AzureLogger = void 0; +exports.setLogLevel = setLogLevel; +exports.getLogLevel = getLogLevel; +exports.createClientLogger = createClientLogger; +const logger_1 = __nccwpck_require__(46244); +const context = (0, logger_1.createLoggerContext)({ + logLevelEnvVarName: "AZURE_LOG_LEVEL", + namespace: "azure", +}); +/** + * The AzureLogger provides a mechanism for overriding where logs are output to. + * By default, logs are sent to stderr. + * Override the `log` method to redirect logs to another location. + */ +exports.AzureLogger = context.logger; +/** + * Immediately enables logging at the specified log level. If no level is specified, logging is disabled. + * @param level - The log level to enable for logging. + * Options from most verbose to least verbose are: + * - verbose + * - info + * - warning + * - error + */ +function setLogLevel(level) { + context.setLogLevel(level); +} +/** + * Retrieves the currently specified log level. + */ +function getLogLevel() { + return context.getLogLevel(); +} +/** + * Creates a logger for use by the Azure SDKs that inherits from `AzureLogger`. + * @param namespace - The name of the SDK package. + * @hidden + */ +function createClientLogger(namespace) { + return context.createClientLogger(namespace); +} +//# sourceMappingURL=index.js.map - this.debug(this.pattern, set) +/***/ }), - // step 3: now we have a set, so turn each one into a series of path-portion - // matching patterns. - // These will be regexps, except in the case of "**", which is - // set to the GLOBSTAR object for globstar behavior, - // and will not contain any / characters - set = this.globParts = set.map(function (s) { - return s.split(slashSplit) - }) +/***/ 1227: +/***/ ((__unused_webpack_module, exports) => { - this.debug(this.pattern, set) +"use strict"; - // glob --> regexps - set = set.map(function (s, si, set) { - return s.map(this.parse, this) - }, this) +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +//# sourceMappingURL=BatchResponse.js.map - this.debug(this.pattern, set) +/***/ }), - // filter out everything that didn't compile properly. - set = set.filter(function (s) { - return s.indexOf(false) === -1 - }) +/***/ 58259: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - this.debug(this.pattern, set) +"use strict"; - this.set = set +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.BatchResponseParser = void 0; +const core_rest_pipeline_1 = __nccwpck_require__(29146); +const core_http_compat_1 = __nccwpck_require__(25083); +const constants_js_1 = __nccwpck_require__(81865); +const BatchUtils_js_1 = __nccwpck_require__(4982); +const log_js_1 = __nccwpck_require__(53282); +const HTTP_HEADER_DELIMITER = ": "; +const SPACE_DELIMITER = " "; +const NOT_FOUND = -1; +/** + * Util class for parsing batch response. + */ +class BatchResponseParser { + batchResponse; + responseBatchBoundary; + perResponsePrefix; + batchResponseEnding; + subRequests; + constructor(batchResponse, subRequests) { + if (!batchResponse || !batchResponse.contentType) { + // In special case(reported), server may return invalid content-type which could not be parsed. + throw new RangeError("batchResponse is malformed or doesn't contain valid content-type."); + } + if (!subRequests || subRequests.size === 0) { + // This should be prevent during coding. + throw new RangeError("Invalid state: subRequests is not provided or size is 0."); + } + this.batchResponse = batchResponse; + this.subRequests = subRequests; + this.responseBatchBoundary = this.batchResponse.contentType.split("=")[1]; + this.perResponsePrefix = `--${this.responseBatchBoundary}${constants_js_1.HTTP_LINE_ENDING}`; + this.batchResponseEnding = `--${this.responseBatchBoundary}--`; + } + // For example of response, please refer to https://learn.microsoft.com/rest/api/storageservices/blob-batch#response + async parseBatchResponse() { + // When logic reach here, suppose batch request has already succeeded with 202, so we can further parse + // sub request's response. + if (this.batchResponse._response.status !== constants_js_1.HTTPURLConnection.HTTP_ACCEPTED) { + throw new Error(`Invalid state: batch request failed with status: '${this.batchResponse._response.status}'.`); + } + const responseBodyAsText = await (0, BatchUtils_js_1.getBodyAsText)(this.batchResponse); + const subResponses = responseBodyAsText + .split(this.batchResponseEnding)[0] // string after ending is useless + .split(this.perResponsePrefix) + .slice(1); // string before first response boundary is useless + const subResponseCount = subResponses.length; + // Defensive coding in case of potential error parsing. + // Note: subResponseCount == 1 is special case where sub request is invalid. + // We try to prevent such cases through early validation, e.g. validate sub request count >= 1. + // While in unexpected sub request invalid case, we allow sub response to be parsed and return to user. + if (subResponseCount !== this.subRequests.size && subResponseCount !== 1) { + throw new Error("Invalid state: sub responses' count is not equal to sub requests' count."); + } + const deserializedSubResponses = new Array(subResponseCount); + let subResponsesSucceededCount = 0; + let subResponsesFailedCount = 0; + // Parse sub subResponses. + for (let index = 0; index < subResponseCount; index++) { + const subResponse = subResponses[index]; + const deserializedSubResponse = {}; + deserializedSubResponse.headers = (0, core_http_compat_1.toHttpHeadersLike)((0, core_rest_pipeline_1.createHttpHeaders)()); + const responseLines = subResponse.split(`${constants_js_1.HTTP_LINE_ENDING}`); + let subRespHeaderStartFound = false; + let subRespHeaderEndFound = false; + let subRespFailed = false; + let contentId = NOT_FOUND; + for (const responseLine of responseLines) { + if (!subRespHeaderStartFound) { + // Convention line to indicate content ID + if (responseLine.startsWith(constants_js_1.HeaderConstants.CONTENT_ID)) { + contentId = parseInt(responseLine.split(HTTP_HEADER_DELIMITER)[1]); + } + // Http version line with status code indicates the start of sub request's response. + // Example: HTTP/1.1 202 Accepted + if (responseLine.startsWith(constants_js_1.HTTP_VERSION_1_1)) { + subRespHeaderStartFound = true; + const tokens = responseLine.split(SPACE_DELIMITER); + deserializedSubResponse.status = parseInt(tokens[1]); + deserializedSubResponse.statusMessage = tokens.slice(2).join(SPACE_DELIMITER); + } + continue; // Skip convention headers not specifically for sub request i.e. Content-Type: application/http and Content-ID: * + } + if (responseLine.trim() === "") { + // Sub response's header start line already found, and the first empty line indicates header end line found. + if (!subRespHeaderEndFound) { + subRespHeaderEndFound = true; + } + continue; // Skip empty line + } + // Note: when code reach here, it indicates subRespHeaderStartFound == true + if (!subRespHeaderEndFound) { + if (responseLine.indexOf(HTTP_HEADER_DELIMITER) === -1) { + // Defensive coding to prevent from missing valuable lines. + throw new Error(`Invalid state: find non-empty line '${responseLine}' without HTTP header delimiter '${HTTP_HEADER_DELIMITER}'.`); + } + // Parse headers of sub response. + const tokens = responseLine.split(HTTP_HEADER_DELIMITER); + deserializedSubResponse.headers.set(tokens[0], tokens[1]); + if (tokens[0] === constants_js_1.HeaderConstants.X_MS_ERROR_CODE) { + deserializedSubResponse.errorCode = tokens[1]; + subRespFailed = true; + } + } + else { + // Assemble body of sub response. + if (!deserializedSubResponse.bodyAsText) { + deserializedSubResponse.bodyAsText = ""; + } + deserializedSubResponse.bodyAsText += responseLine; + } + } // Inner for end + // The response will contain the Content-ID header for each corresponding subrequest response to use for tracking. + // The Content-IDs are set to a valid index in the subrequests we sent. In the status code 202 path, we could expect it + // to be 1-1 mapping from the [0, subRequests.size) to the Content-IDs returned. If not, we simply don't return that + // unexpected subResponse in the parsed reponse and we can always look it up in the raw response for debugging purpose. + if (contentId !== NOT_FOUND && + Number.isInteger(contentId) && + contentId >= 0 && + contentId < this.subRequests.size && + deserializedSubResponses[contentId] === undefined) { + deserializedSubResponse._request = this.subRequests.get(contentId); + deserializedSubResponses[contentId] = deserializedSubResponse; + } + else { + log_js_1.logger.error(`subResponses[${index}] is dropped as the Content-ID is not found or invalid, Content-ID: ${contentId}`); + } + if (subRespFailed) { + subResponsesFailedCount++; + } + else { + subResponsesSucceededCount++; + } + } + return { + subResponses: deserializedSubResponses, + subResponsesSucceededCount: subResponsesSucceededCount, + subResponsesFailedCount: subResponsesFailedCount, + }; + } } +exports.BatchResponseParser = BatchResponseParser; +//# sourceMappingURL=BatchResponseParser.js.map -Minimatch.prototype.parseNegate = parseNegate -function parseNegate () { - var pattern = this.pattern - var negate = false - var options = this.options - var negateOffset = 0 - - if (options.nonegate) return +/***/ }), - for (var i = 0, l = pattern.length - ; i < l && pattern.charAt(i) === '!' - ; i++) { - negate = !negate - negateOffset++ - } +/***/ 4982: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - if (negateOffset) this.pattern = pattern.substr(negateOffset) - this.negate = negate -} +"use strict"; -// Brace expansion: -// a{b,c}d -> abd acd -// a{b,}c -> abc ac -// a{0..3}d -> a0d a1d a2d a3d -// a{b,c{d,e}f}g -> abg acdfg acefg -// a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg -// -// Invalid sets are not expanded. -// a{2..}b -> a{2..}b -// a{b}c -> a{b}c -minimatch.braceExpand = function (pattern, options) { - return braceExpand(pattern, options) +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getBodyAsText = getBodyAsText; +exports.utf8ByteLength = utf8ByteLength; +const utils_js_1 = __nccwpck_require__(85157); +const constants_js_1 = __nccwpck_require__(81865); +async function getBodyAsText(batchResponse) { + let buffer = Buffer.alloc(constants_js_1.BATCH_MAX_PAYLOAD_IN_BYTES); + const responseLength = await (0, utils_js_1.streamToBuffer2)(batchResponse.readableStreamBody, buffer); + // Slice the buffer to trim the empty ending. + buffer = buffer.slice(0, responseLength); + return buffer.toString(); } - -Minimatch.prototype.braceExpand = braceExpand - -function braceExpand (pattern, options) { - if (!options) { - if (this instanceof Minimatch) { - options = this.options - } else { - options = {} - } - } - - pattern = typeof pattern === 'undefined' - ? this.pattern : pattern - - if (typeof pattern === 'undefined') { - throw new TypeError('undefined pattern') - } - - if (options.nobrace || - !pattern.match(/\{.*\}/)) { - // shortcut. no need to expand. - return [pattern] - } - - return expand(pattern) +function utf8ByteLength(str) { + return Buffer.byteLength(str); } +//# sourceMappingURL=BatchUtils.js.map -// parse a component of the expanded set. -// At this point, no pattern may contain "/" in it -// so we're going to return a 2d array, where each entry is the full -// pattern, split on '/', and then turned into a regular expression. -// A regexp is made at the end which joins each array with an -// escaped /, and another full one which joins each regexp with |. -// -// Following the lead of Bash 4.1, note that "**" only has special meaning -// when it is the *only* thing in a path portion. Otherwise, any series -// of * is equivalent to a single *. Globstar behavior is enabled by -// default, and can be disabled by setting options.noglobstar. -Minimatch.prototype.parse = parse -var SUBPARSE = {} -function parse (pattern, isSub) { - if (pattern.length > 1024 * 64) { - throw new TypeError('pattern is too long') - } - - var options = this.options +/***/ }), - // shortcuts - if (!options.noglobstar && pattern === '**') return GLOBSTAR - if (pattern === '') return '' +/***/ 73689: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - var re = '' - var hasMagic = !!options.nocase - var escaping = false - // ? => one single character - var patternListStack = [] - var negativeLists = [] - var stateChar - var inClass = false - var reClassStart = -1 - var classStart = -1 - // . and .. never match anything that doesn't start with ., - // even when options.dot is set. - var patternStart = pattern.charAt(0) === '.' ? '' // anything - // not (start or / followed by . or .. followed by / or end) - : options.dot ? '(?!(?:^|\\\/)\\.{1,2}(?:$|\\\/))' - : '(?!\\.)' - var self = this +"use strict"; - function clearStateChar () { - if (stateChar) { - // we had some state-tracking character - // that wasn't consumed by this pass. - switch (stateChar) { - case '*': - re += star - hasMagic = true - break - case '?': - re += qmark - hasMagic = true - break - default: - re += '\\' + stateChar - break - } - self.debug('clearStateChar %j %j', stateChar, re) - stateChar = false +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.BlobBatch = void 0; +const core_util_1 = __nccwpck_require__(80637); +const core_auth_1 = __nccwpck_require__(98834); +const core_rest_pipeline_1 = __nccwpck_require__(29146); +const core_util_2 = __nccwpck_require__(80637); +const AnonymousCredential_js_1 = __nccwpck_require__(42803); +const Clients_js_1 = __nccwpck_require__(54437); +const Mutex_js_1 = __nccwpck_require__(25300); +const Pipeline_js_1 = __nccwpck_require__(33781); +const utils_common_js_1 = __nccwpck_require__(16673); +const core_xml_1 = __nccwpck_require__(17309); +const constants_js_1 = __nccwpck_require__(81865); +const StorageSharedKeyCredential_js_1 = __nccwpck_require__(59155); +const tracing_js_1 = __nccwpck_require__(53683); +const core_client_1 = __nccwpck_require__(7611); +const StorageSharedKeyCredentialPolicyV2_js_1 = __nccwpck_require__(93846); +/** + * A BlobBatch represents an aggregated set of operations on blobs. + * Currently, only `delete` and `setAccessTier` are supported. + */ +class BlobBatch { + batchRequest; + batch = "batch"; + batchType; + constructor() { + this.batchRequest = new InnerBatchRequest(); } - } - - for (var i = 0, len = pattern.length, c - ; (i < len) && (c = pattern.charAt(i)) - ; i++) { - this.debug('%s\t%s %s %j', pattern, i, re, c) - - // skip over any that are escaped. - if (escaping && reSpecials[c]) { - re += '\\' + c - escaping = false - continue + /** + * Get the value of Content-Type for a batch request. + * The value must be multipart/mixed with a batch boundary. + * Example: multipart/mixed; boundary=batch_a81786c8-e301-4e42-a729-a32ca24ae252 + */ + getMultiPartContentType() { + return this.batchRequest.getMultipartContentType(); } - - switch (c) { - case '/': - // completely not allowed, even escaped. - // Should already be path-split by now. - return false - - case '\\': - clearStateChar() - escaping = true - continue - - // the various stateChar values - // for the "extglob" stuff. - case '?': - case '*': - case '+': - case '@': - case '!': - this.debug('%s\t%s %s %j <-- stateChar', pattern, i, re, c) - - // all of those are literals inside a class, except that - // the glob [!a] means [^a] in regexp - if (inClass) { - this.debug(' in class') - if (c === '!' && i === classStart + 1) c = '^' - re += c - continue + /** + * Get assembled HTTP request body for sub requests. + */ + getHttpRequestBody() { + return this.batchRequest.getHttpRequestBody(); + } + /** + * Get sub requests that are added into the batch request. + */ + getSubRequests() { + return this.batchRequest.getSubRequests(); + } + async addSubRequestInternal(subRequest, assembleSubRequestFunc) { + await Mutex_js_1.Mutex.lock(this.batch); + try { + this.batchRequest.preAddSubRequest(subRequest); + await assembleSubRequestFunc(); + this.batchRequest.postAddSubRequest(subRequest); } - - // if we already have a stateChar, then it means - // that there was something like ** or +? in there. - // Handle the stateChar, then proceed with this one. - self.debug('call clearStateChar %j', stateChar) - clearStateChar() - stateChar = c - // if extglob is disabled, then +(asdf|foo) isn't a thing. - // just clear the statechar *now*, rather than even diving into - // the patternList stuff. - if (options.noext) clearStateChar() - continue - - case '(': - if (inClass) { - re += '(' - continue + finally { + await Mutex_js_1.Mutex.unlock(this.batch); } - - if (!stateChar) { - re += '\\(' - continue + } + setBatchType(batchType) { + if (!this.batchType) { + this.batchType = batchType; } - - patternListStack.push({ - type: stateChar, - start: i - 1, - reStart: re.length, - open: plTypes[stateChar].open, - close: plTypes[stateChar].close - }) - // negation is (?:(?!js)[^/]*) - re += stateChar === '!' ? '(?:(?!(?:' : '(?:' - this.debug('plType %j %j', stateChar, re) - stateChar = false - continue - - case ')': - if (inClass || !patternListStack.length) { - re += '\\)' - continue + if (this.batchType !== batchType) { + throw new RangeError(`BlobBatch only supports one operation type per batch and it already is being used for ${this.batchType} operations.`); } - - clearStateChar() - hasMagic = true - var pl = patternListStack.pop() - // negation is (?:(?!js)[^/]*) - // The others are (?:) - re += pl.close - if (pl.type === '!') { - negativeLists.push(pl) + } + async deleteBlob(urlOrBlobClient, credentialOrOptions, options) { + let url; + let credential; + if (typeof urlOrBlobClient === "string" && + ((core_util_2.isNodeLike && credentialOrOptions instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential) || + credentialOrOptions instanceof AnonymousCredential_js_1.AnonymousCredential || + (0, core_auth_1.isTokenCredential)(credentialOrOptions))) { + // First overload + url = urlOrBlobClient; + credential = credentialOrOptions; } - pl.reEnd = re.length - continue - - case '|': - if (inClass || !patternListStack.length || escaping) { - re += '\\|' - escaping = false - continue + else if (urlOrBlobClient instanceof Clients_js_1.BlobClient) { + // Second overload + url = urlOrBlobClient.url; + credential = urlOrBlobClient.credential; + options = credentialOrOptions; } - - clearStateChar() - re += '|' - continue - - // these are mostly the same in regexp and glob - case '[': - // swallow any state-tracking char before the [ - clearStateChar() - - if (inClass) { - re += '\\' + c - continue + else { + throw new RangeError("Invalid arguments. Either url and credential, or BlobClient need be provided."); } - - inClass = true - classStart = i - reClassStart = re.length - re += c - continue - - case ']': - // a right bracket shall lose its special - // meaning and represent itself in - // a bracket expression if it occurs - // first in the list. -- POSIX.2 2.8.3.2 - if (i === classStart + 1 || !inClass) { - re += '\\' + c - escaping = false - continue + if (!options) { + options = {}; } - - // handle the case where we left a class open. - // "[z-a]" is valid, equivalent to "\[z-a\]" - if (inClass) { - // split where the last [ was, make sure we don't have - // an invalid re. if so, re-walk the contents of the - // would-be class to re-translate any characters that - // were passed through as-is - // TODO: It would probably be faster to determine this - // without a try/catch and a new RegExp, but it's tricky - // to do safely. For now, this is safe and works. - var cs = pattern.substring(classStart + 1, i) - try { - RegExp('[' + cs + ']') - } catch (er) { - // not a valid class! - var sp = this.parse(cs, SUBPARSE) - re = re.substr(0, reClassStart) + '\\[' + sp[0] + '\\]' - hasMagic = hasMagic || sp[1] - inClass = false - continue - } + return tracing_js_1.tracingClient.withSpan("BatchDeleteRequest-addSubRequest", options, async (updatedOptions) => { + this.setBatchType("delete"); + await this.addSubRequestInternal({ + url: url, + credential: credential, + }, async () => { + await new Clients_js_1.BlobClient(url, this.batchRequest.createPipeline(credential)).delete(updatedOptions); + }); + }); + } + async setBlobAccessTier(urlOrBlobClient, credentialOrTier, tierOrOptions, options) { + let url; + let credential; + let tier; + if (typeof urlOrBlobClient === "string" && + ((core_util_2.isNodeLike && credentialOrTier instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential) || + credentialOrTier instanceof AnonymousCredential_js_1.AnonymousCredential || + (0, core_auth_1.isTokenCredential)(credentialOrTier))) { + // First overload + url = urlOrBlobClient; + credential = credentialOrTier; + tier = tierOrOptions; } - - // finish up the class. - hasMagic = true - inClass = false - re += c - continue - - default: - // swallow any state char that wasn't consumed - clearStateChar() - - if (escaping) { - // no need - escaping = false - } else if (reSpecials[c] - && !(c === '^' && inClass)) { - re += '\\' + else if (urlOrBlobClient instanceof Clients_js_1.BlobClient) { + // Second overload + url = urlOrBlobClient.url; + credential = urlOrBlobClient.credential; + tier = credentialOrTier; + options = tierOrOptions; } - - re += c - - } // switch - } // for - - // handle the case where we left a class open. - // "[abc" is valid, equivalent to "\[abc" - if (inClass) { - // split where the last [ was, and escape it - // this is a huge pita. We now have to re-walk - // the contents of the would-be class to re-translate - // any characters that were passed through as-is - cs = pattern.substr(classStart + 1) - sp = this.parse(cs, SUBPARSE) - re = re.substr(0, reClassStart) + '\\[' + sp[0] - hasMagic = hasMagic || sp[1] - } - - // handle the case where we had a +( thing at the *end* - // of the pattern. - // each pattern list stack adds 3 chars, and we need to go through - // and escape any | chars that were passed through as-is for the regexp. - // Go through and escape them, taking care not to double-escape any - // | chars that were already escaped. - for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) { - var tail = re.slice(pl.reStart + pl.open.length) - this.debug('setting tail', re, pl) - // maybe some even number of \, then maybe 1 \, followed by a | - tail = tail.replace(/((?:\\{2}){0,64})(\\?)\|/g, function (_, $1, $2) { - if (!$2) { - // the | isn't already escaped, so escape it. - $2 = '\\' - } - - // need to escape all those slashes *again*, without escaping the - // one that we need for escaping the | character. As it works out, - // escaping an even number of slashes can be done by simply repeating - // it exactly after itself. That's why this trick works. - // - // I am sorry that you have to see this. - return $1 + $1 + $2 + '|' - }) - - this.debug('tail=%j\n %s', tail, tail, pl, re) - var t = pl.type === '*' ? star - : pl.type === '?' ? qmark - : '\\' + pl.type - - hasMagic = true - re = re.slice(0, pl.reStart) + t + '\\(' + tail - } - - // handle trailing things that only matter at the very end. - clearStateChar() - if (escaping) { - // trailing \\ - re += '\\\\' - } - - // only need to apply the nodot start if the re starts with - // something that could conceivably capture a dot - var addPatternStart = false - switch (re.charAt(0)) { - case '.': - case '[': - case '(': addPatternStart = true - } - - // Hack to work around lack of negative lookbehind in JS - // A pattern like: *.!(x).!(y|z) needs to ensure that a name - // like 'a.xyz.yz' doesn't match. So, the first negative - // lookahead, has to look ALL the way ahead, to the end of - // the pattern. - for (var n = negativeLists.length - 1; n > -1; n--) { - var nl = negativeLists[n] - - var nlBefore = re.slice(0, nl.reStart) - var nlFirst = re.slice(nl.reStart, nl.reEnd - 8) - var nlLast = re.slice(nl.reEnd - 8, nl.reEnd) - var nlAfter = re.slice(nl.reEnd) - - nlLast += nlAfter - - // Handle nested stuff like *(*.js|!(*.json)), where open parens - // mean that we should *not* include the ) in the bit that is considered - // "after" the negated section. - var openParensBefore = nlBefore.split('(').length - 1 - var cleanAfter = nlAfter - for (i = 0; i < openParensBefore; i++) { - cleanAfter = cleanAfter.replace(/\)[+*?]?/, '') + else { + throw new RangeError("Invalid arguments. Either url and credential, or BlobClient need be provided."); + } + if (!options) { + options = {}; + } + return tracing_js_1.tracingClient.withSpan("BatchSetTierRequest-addSubRequest", options, async (updatedOptions) => { + this.setBatchType("setAccessTier"); + await this.addSubRequestInternal({ + url: url, + credential: credential, + }, async () => { + await new Clients_js_1.BlobClient(url, this.batchRequest.createPipeline(credential)).setAccessTier(tier, updatedOptions); + }); + }); } - nlAfter = cleanAfter - - var dollar = '' - if (nlAfter === '' && isSub !== SUBPARSE) { - dollar = '$' +} +exports.BlobBatch = BlobBatch; +/** + * Inner batch request class which is responsible for assembling and serializing sub requests. + * See https://learn.microsoft.com/rest/api/storageservices/blob-batch#request-body for how requests are assembled. + */ +class InnerBatchRequest { + operationCount; + body; + subRequests; + boundary; + subRequestPrefix; + multipartContentType; + batchRequestEnding; + constructor() { + this.operationCount = 0; + this.body = ""; + const tempGuid = (0, core_util_1.randomUUID)(); + // batch_{batchid} + this.boundary = `batch_${tempGuid}`; + // --batch_{batchid} + // Content-Type: application/http + // Content-Transfer-Encoding: binary + this.subRequestPrefix = `--${this.boundary}${constants_js_1.HTTP_LINE_ENDING}${constants_js_1.HeaderConstants.CONTENT_TYPE}: application/http${constants_js_1.HTTP_LINE_ENDING}${constants_js_1.HeaderConstants.CONTENT_TRANSFER_ENCODING}: binary`; + // multipart/mixed; boundary=batch_{batchid} + this.multipartContentType = `multipart/mixed; boundary=${this.boundary}`; + // --batch_{batchid}-- + this.batchRequestEnding = `--${this.boundary}--`; + this.subRequests = new Map(); + } + /** + * Create pipeline to assemble sub requests. The idea here is to use existing + * credential and serialization/deserialization components, with additional policies to + * filter unnecessary headers, assemble sub requests into request's body + * and intercept request from going to wire. + * @param credential - Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the `@azure/identity` package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used. + */ + createPipeline(credential) { + const corePipeline = (0, core_rest_pipeline_1.createEmptyPipeline)(); + corePipeline.addPolicy((0, core_client_1.serializationPolicy)({ + stringifyXML: core_xml_1.stringifyXML, + serializerOptions: { + xml: { + xmlCharKey: "#", + }, + }, + }), { phase: "Serialize" }); + // Use batch header filter policy to exclude unnecessary headers + corePipeline.addPolicy(batchHeaderFilterPolicy()); + // Use batch assemble policy to assemble request and intercept request from going to wire + corePipeline.addPolicy(batchRequestAssemblePolicy(this), { afterPhase: "Sign" }); + if ((0, core_auth_1.isTokenCredential)(credential)) { + corePipeline.addPolicy((0, core_rest_pipeline_1.bearerTokenAuthenticationPolicy)({ + credential, + scopes: constants_js_1.StorageOAuthScopes, + challengeCallbacks: { authorizeRequestOnChallenge: core_client_1.authorizeRequestOnTenantChallenge }, + }), { phase: "Sign" }); + } + else if (credential instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential) { + corePipeline.addPolicy((0, StorageSharedKeyCredentialPolicyV2_js_1.storageSharedKeyCredentialPolicy)({ + accountName: credential.accountName, + accountKey: credential.accountKey, + }), { phase: "Sign" }); + } + const pipeline = new Pipeline_js_1.Pipeline([]); + // attach the v2 pipeline to this one + pipeline._credential = credential; + pipeline._corePipeline = corePipeline; + return pipeline; + } + appendSubRequestToBody(request) { + // Start to assemble sub request + this.body += [ + this.subRequestPrefix, // sub request constant prefix + `${constants_js_1.HeaderConstants.CONTENT_ID}: ${this.operationCount}`, // sub request's content ID + "", // empty line after sub request's content ID + `${request.method.toString()} ${(0, utils_common_js_1.getURLPathAndQuery)(request.url)} ${constants_js_1.HTTP_VERSION_1_1}${constants_js_1.HTTP_LINE_ENDING}`, // sub request start line with method + ].join(constants_js_1.HTTP_LINE_ENDING); + for (const [name, value] of request.headers) { + this.body += `${name}: ${value}${constants_js_1.HTTP_LINE_ENDING}`; + } + this.body += constants_js_1.HTTP_LINE_ENDING; // sub request's headers need be ending with an empty line + // No body to assemble for current batch request support + // End to assemble sub request + } + preAddSubRequest(subRequest) { + if (this.operationCount >= constants_js_1.BATCH_MAX_REQUEST) { + throw new RangeError(`Cannot exceed ${constants_js_1.BATCH_MAX_REQUEST} sub requests in a single batch`); + } + // Fast fail if url for sub request is invalid + const path = (0, utils_common_js_1.getURLPath)(subRequest.url); + if (!path || path === "") { + throw new RangeError(`Invalid url for sub request: '${subRequest.url}'`); + } + } + postAddSubRequest(subRequest) { + this.subRequests.set(this.operationCount, subRequest); + this.operationCount++; + } + // Return the http request body with assembling the ending line to the sub request body. + getHttpRequestBody() { + return `${this.body}${this.batchRequestEnding}${constants_js_1.HTTP_LINE_ENDING}`; + } + getMultipartContentType() { + return this.multipartContentType; + } + getSubRequests() { + return this.subRequests; } - var newRe = nlBefore + nlFirst + nlAfter + dollar + nlLast - re = newRe - } - - // if the re is not "" at this point, then we need to make sure - // it doesn't match against an empty path part. - // Otherwise a/* will match a/, which it should not. - if (re !== '' && hasMagic) { - re = '(?=.)' + re - } - - if (addPatternStart) { - re = patternStart + re - } - - // parsing just a piece of a larger pattern. - if (isSub === SUBPARSE) { - return [re, hasMagic] - } - - // skip the regexp for non-magical patterns - // unescape anything in it, though, so that it'll be - // an exact match against a file etc. - if (!hasMagic) { - return globUnescape(pattern) - } - - var flags = options.nocase ? 'i' : '' - try { - var regExp = new RegExp('^' + re + '$', flags) - } catch (er) { - // If it was an invalid regular expression, then it can't match - // anything. This trick looks for a character after the end of - // the string, which is of course impossible, except in multi-line - // mode, but it's not a /m regex. - return new RegExp('$.') - } - - regExp._glob = pattern - regExp._src = re - - return regExp } - -minimatch.makeRe = function (pattern, options) { - return new Minimatch(pattern, options || {}).makeRe() +function batchRequestAssemblePolicy(batchRequest) { + return { + name: "batchRequestAssemblePolicy", + async sendRequest(request) { + batchRequest.appendSubRequestToBody(request); + return { + request, + status: 200, + headers: (0, core_rest_pipeline_1.createHttpHeaders)(), + }; + }, + }; } +function batchHeaderFilterPolicy() { + return { + name: "batchHeaderFilterPolicy", + async sendRequest(request, next) { + let xMsHeaderName = ""; + for (const [name] of request.headers) { + if ((0, utils_common_js_1.iEqual)(name, constants_js_1.HeaderConstants.X_MS_VERSION)) { + xMsHeaderName = name; + } + } + if (xMsHeaderName !== "") { + request.headers.delete(xMsHeaderName); // The subrequests should not have the x-ms-version header. + } + return next(request); + }, + }; +} +//# sourceMappingURL=BlobBatch.js.map -Minimatch.prototype.makeRe = makeRe -function makeRe () { - if (this.regexp || this.regexp === false) return this.regexp - - // at this point, this.set is a 2d array of partial - // pattern strings, or "**". - // - // It's better to use .match(). This function shouldn't - // be used, really, but it's pretty convenient sometimes, - // when you just want to work with a regex. - var set = this.set - - if (!set.length) { - this.regexp = false - return this.regexp - } - var options = this.options - - var twoStar = options.noglobstar ? star - : options.dot ? twoStarDot - : twoStarNoDot - var flags = options.nocase ? 'i' : '' - - var re = set.map(function (pattern) { - return pattern.map(function (p) { - return (p === GLOBSTAR) ? twoStar - : (typeof p === 'string') ? regExpEscape(p) - : p._src - }).join('\\\/') - }).join('|') - - // must match entire pattern - // ending in a * or ** will make it less strict. - re = '^(?:' + re + ')$' - - // can match anything, as long as it's not this. - if (this.negate) re = '^(?!' + re + ').*$' +/***/ }), - try { - this.regexp = new RegExp(re, flags) - } catch (ex) { - this.regexp = false - } - return this.regexp -} +/***/ 71861: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -minimatch.match = function (list, pattern, options) { - options = options || {} - var mm = new Minimatch(pattern, options) - list = list.filter(function (f) { - return mm.match(f) - }) - if (mm.options.nonull && !list.length) { - list.push(pattern) - } - return list -} +"use strict"; -Minimatch.prototype.match = match -function match (f, partial) { - this.debug('match', f, this.pattern) - // short-circuit in the case of busted things. - // comments, etc. - if (this.comment) return false - if (this.empty) return f === '' - - if (f === '/' && partial) return true - - var options = this.options - - // windows: need to use /, not \ - if (path.sep !== '/') { - f = f.split(path.sep).join('/') - } - - // treat the test path as a set of pathparts. - f = f.split(slashSplit) - this.debug(this.pattern, 'split', f) - - // just ONE of the pattern sets in this.set needs to match - // in order for it to be valid. If negating, then just one - // match means that we have failed. - // Either way, return on the first hit. - - var set = this.set - this.debug(this.pattern, 'set', set) - - // Find the basename of the path by looking for the last non-empty segment - var filename - var i - for (i = f.length - 1; i >= 0; i--) { - filename = f[i] - if (filename) break - } - - for (i = 0; i < set.length; i++) { - var pattern = set[i] - var file = f - if (options.matchBase && pattern.length === 1) { - file = [filename] +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.BlobBatchClient = void 0; +const BatchResponseParser_js_1 = __nccwpck_require__(58259); +const BatchUtils_js_1 = __nccwpck_require__(4982); +const BlobBatch_js_1 = __nccwpck_require__(73689); +const tracing_js_1 = __nccwpck_require__(53683); +const AnonymousCredential_js_1 = __nccwpck_require__(42803); +const StorageContextClient_js_1 = __nccwpck_require__(50557); +const Pipeline_js_1 = __nccwpck_require__(33781); +const utils_common_js_1 = __nccwpck_require__(16673); +/** + * A BlobBatchClient allows you to make batched requests to the Azure Storage Blob service. + * + * @see https://learn.microsoft.com/rest/api/storageservices/blob-batch + */ +class BlobBatchClient { + serviceOrContainerContext; + constructor(url, credentialOrPipeline, + // Legacy, no fix for eslint error without breaking. Disable it for this interface. + /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ + options) { + let pipeline; + if ((0, Pipeline_js_1.isPipelineLike)(credentialOrPipeline)) { + pipeline = credentialOrPipeline; + } + else if (!credentialOrPipeline) { + // no credential provided + pipeline = (0, Pipeline_js_1.newPipeline)(new AnonymousCredential_js_1.AnonymousCredential(), options); + } + else { + pipeline = (0, Pipeline_js_1.newPipeline)(credentialOrPipeline, options); + } + const storageClientContext = new StorageContextClient_js_1.StorageContextClient(url, (0, Pipeline_js_1.getCoreClientOptions)(pipeline)); + const path = (0, utils_common_js_1.getURLPath)(url); + if (path && path !== "/") { + // Container scoped. + this.serviceOrContainerContext = storageClientContext.container; + } + else { + this.serviceOrContainerContext = storageClientContext.service; + } } - var hit = this.matchOne(file, pattern, partial) - if (hit) { - if (options.flipNegate) return true - return !this.negate + /** + * Creates a {@link BlobBatch}. + * A BlobBatch represents an aggregated set of operations on blobs. + */ + createBatch() { + return new BlobBatch_js_1.BlobBatch(); } - } - - // didn't get any hits. this is success if it's a negative - // pattern, failure otherwise. - if (options.flipNegate) return false - return this.negate -} - -// set partial to true to test if, for example, -// "/a/b" matches the start of "/*/b/*/d" -// Partial means, if you run out of file before you run -// out of pattern, then that's fine, as long as all -// the parts match. -Minimatch.prototype.matchOne = function (file, pattern, partial) { - var options = this.options - - this.debug('matchOne', - { 'this': this, file: file, pattern: pattern }) - - this.debug('matchOne', file.length, pattern.length) - - for (var fi = 0, - pi = 0, - fl = file.length, - pl = pattern.length - ; (fi < fl) && (pi < pl) - ; fi++, pi++) { - this.debug('matchOne loop') - var p = pattern[pi] - var f = file[fi] - - this.debug(pattern, p, f) - - // should be impossible. - // some invalid regexp stuff in the set. - if (p === false) return false - - if (p === GLOBSTAR) { - this.debug('GLOBSTAR', [pattern, p, f]) - - // "**" - // a/**/b/**/c would match the following: - // a/b/x/y/z/c - // a/x/y/z/b/c - // a/b/x/b/x/c - // a/b/c - // To do this, take the rest of the pattern after - // the **, and see if it would match the file remainder. - // If so, return success. - // If not, the ** "swallows" a segment, and try again. - // This is recursively awful. - // - // a/**/b/**/c matching a/b/x/y/z/c - // - a matches a - // - doublestar - // - matchOne(b/x/y/z/c, b/**/c) - // - b matches b - // - doublestar - // - matchOne(x/y/z/c, c) -> no - // - matchOne(y/z/c, c) -> no - // - matchOne(z/c, c) -> no - // - matchOne(c, c) yes, hit - var fr = fi - var pr = pi + 1 - if (pr === pl) { - this.debug('** at the end') - // a ** at the end will just swallow the rest. - // We have found a match. - // however, it will not swallow /.x, unless - // options.dot is set. - // . and .. are *never* matched by **, for explosively - // exponential reasons. - for (; fi < fl; fi++) { - if (file[fi] === '.' || file[fi] === '..' || - (!options.dot && file[fi].charAt(0) === '.')) return false + async deleteBlobs(urlsOrBlobClients, credentialOrOptions, + // Legacy, no fix for eslint error without breaking. Disable it for this interface. + /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ + options) { + const batch = new BlobBatch_js_1.BlobBatch(); + for (const urlOrBlobClient of urlsOrBlobClients) { + if (typeof urlOrBlobClient === "string") { + await batch.deleteBlob(urlOrBlobClient, credentialOrOptions, options); + } + else { + await batch.deleteBlob(urlOrBlobClient, credentialOrOptions); + } } - return true - } - - // ok, let's see if we can swallow whatever we can. - while (fr < fl) { - var swallowee = file[fr] - - this.debug('\nglobstar while', file, fr, pattern, pr, swallowee) - - // XXX remove this slice. Just pass the start index. - if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) { - this.debug('globstar found match!', fr, fl, swallowee) - // found a match. - return true - } else { - // can't swallow "." or ".." ever. - // can only swallow ".foo" when explicitly asked. - if (swallowee === '.' || swallowee === '..' || - (!options.dot && swallowee.charAt(0) === '.')) { - this.debug('dot detected!', file, fr, pattern, pr) - break - } - - // ** swallows a segment, and continue. - this.debug('globstar swallow a segment, and continue') - fr++ + return this.submitBatch(batch); + } + async setBlobsAccessTier(urlsOrBlobClients, credentialOrTier, tierOrOptions, + // Legacy, no fix for eslint error without breaking. Disable it for this interface. + /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ + options) { + const batch = new BlobBatch_js_1.BlobBatch(); + for (const urlOrBlobClient of urlsOrBlobClients) { + if (typeof urlOrBlobClient === "string") { + await batch.setBlobAccessTier(urlOrBlobClient, credentialOrTier, tierOrOptions, options); + } + else { + await batch.setBlobAccessTier(urlOrBlobClient, credentialOrTier, tierOrOptions); + } } - } - - // no match was found. - // However, in partial mode, we can't say this is necessarily over. - // If there's more *pattern* left, then - if (partial) { - // ran out of file - this.debug('\n>>> no match, partial?', file, fr, pattern, pr) - if (fr === fl) return true - } - return false + return this.submitBatch(batch); } - - // something other than ** - // non-magic patterns just have to match exactly - // patterns with magic have been turned into regexps. - var hit - if (typeof p === 'string') { - if (options.nocase) { - hit = f.toLowerCase() === p.toLowerCase() - } else { - hit = f === p - } - this.debug('string match', p, f, hit) - } else { - hit = f.match(p) - this.debug('pattern match', p, f, hit) + /** + * Submit batch request which consists of multiple subrequests. + * + * Get `blobBatchClient` and other details before running the snippets. + * `blobServiceClient.getBlobBatchClient()` gives the `blobBatchClient` + * + * Example usage: + * + * ```ts snippet:BlobBatchClientSubmitBatch + * import { DefaultAzureCredential } from "@azure/identity"; + * import { BlobServiceClient, BlobBatch } from "@azure/storage-blob"; + * + * const account = ""; + * const credential = new DefaultAzureCredential(); + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * credential, + * ); + * + * const containerName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * const blobBatchClient = containerClient.getBlobBatchClient(); + * + * const batchRequest = new BlobBatch(); + * await batchRequest.deleteBlob("", credential); + * await batchRequest.deleteBlob("", credential, { + * deleteSnapshots: "include", + * }); + * const batchResp = await blobBatchClient.submitBatch(batchRequest); + * console.log(batchResp.subResponsesSucceededCount); + * ``` + * + * Example using a lease: + * + * ```ts snippet:BlobBatchClientSubmitBatchWithLease + * import { DefaultAzureCredential } from "@azure/identity"; + * import { BlobServiceClient, BlobBatch } from "@azure/storage-blob"; + * + * const account = ""; + * const credential = new DefaultAzureCredential(); + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * credential, + * ); + * + * const containerName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * const blobBatchClient = containerClient.getBlobBatchClient(); + * const blobClient = containerClient.getBlobClient(""); + * + * const batchRequest = new BlobBatch(); + * await batchRequest.setBlobAccessTier(blobClient, "Cool"); + * await batchRequest.setBlobAccessTier(blobClient, "Cool", { + * conditions: { leaseId: "" }, + * }); + * const batchResp = await blobBatchClient.submitBatch(batchRequest); + * console.log(batchResp.subResponsesSucceededCount); + * ``` + * + * @see https://learn.microsoft.com/rest/api/storageservices/blob-batch + * + * @param batchRequest - A set of Delete or SetTier operations. + * @param options - + */ + async submitBatch(batchRequest, options = {}) { + if (!batchRequest || batchRequest.getSubRequests().size === 0) { + throw new RangeError("Batch request should contain one or more sub requests."); + } + return tracing_js_1.tracingClient.withSpan("BlobBatchClient-submitBatch", options, async (updatedOptions) => { + const batchRequestBody = batchRequest.getHttpRequestBody(); + // ServiceSubmitBatchResponseModel and ContainerSubmitBatchResponse are compatible for now. + const rawBatchResponse = (0, utils_common_js_1.assertResponse)(await this.serviceOrContainerContext.submitBatch((0, BatchUtils_js_1.utf8ByteLength)(batchRequestBody), batchRequest.getMultiPartContentType(), batchRequestBody, { + ...updatedOptions, + })); + // Parse the sub responses result, if logic reaches here(i.e. the batch request succeeded with status code 202). + const batchResponseParser = new BatchResponseParser_js_1.BatchResponseParser(rawBatchResponse, batchRequest.getSubRequests()); + const responseSummary = await batchResponseParser.parseBatchResponse(); + const res = { + _response: rawBatchResponse._response, + contentType: rawBatchResponse.contentType, + errorCode: rawBatchResponse.errorCode, + requestId: rawBatchResponse.requestId, + clientRequestId: rawBatchResponse.clientRequestId, + version: rawBatchResponse.version, + subResponses: responseSummary.subResponses, + subResponsesSucceededCount: responseSummary.subResponsesSucceededCount, + subResponsesFailedCount: responseSummary.subResponsesFailedCount, + }; + return res; + }); } - - if (!hit) return false - } - - // Note: ending in / means that we'll get a final "" - // at the end of the pattern. This can only match a - // corresponding "" at the end of the file. - // If the file ends in /, then it can only match a - // a pattern that ends in /, unless the pattern just - // doesn't have any more for it. But, a/b/ should *not* - // match "a/b/*", even though "" matches against the - // [^/]*? pattern, except in partial mode, where it might - // simply not be reached yet. - // However, a/b/ should still satisfy a/* - - // now either we fell off the end of the pattern, or we're done. - if (fi === fl && pi === pl) { - // ran out of pattern and filename at the same time. - // an exact hit! - return true - } else if (fi === fl) { - // ran out of file, but still had pattern left. - // this is ok if we're doing the match as part of - // a glob fs traversal. - return partial - } else if (pi === pl) { - // ran out of pattern, still have file left. - // this is only acceptable if we're on the very last - // empty segment of a file with a trailing slash. - // a/* should match a/b/ - var emptyFileEnd = (fi === fl - 1) && (file[fi] === '') - return emptyFileEnd - } - - // should be unreachable. - throw new Error('wtf?') -} - -// replace stuff like \* with * -function globUnescape (s) { - return s.replace(/\\(.)/g, '$1') -} - -function regExpEscape (s) { - return s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&') } - +exports.BlobBatchClient = BlobBatchClient; +//# sourceMappingURL=BlobBatchClient.js.map /***/ }), -/***/ 467: -/***/ ((module, exports, __nccwpck_require__) => { +/***/ 88710: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; - Object.defineProperty(exports, "__esModule", ({ value: true })); - -function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } - -var Stream = _interopDefault(__nccwpck_require__(2781)); -var http = _interopDefault(__nccwpck_require__(3685)); -var Url = _interopDefault(__nccwpck_require__(7310)); -var whatwgUrl = _interopDefault(__nccwpck_require__(629)); -var https = _interopDefault(__nccwpck_require__(5687)); -var zlib = _interopDefault(__nccwpck_require__(9796)); - -// Based on https://github.com/tmpvar/jsdom/blob/aa85b2abf07766ff7bf5c1f6daafb3726f2f2db5/lib/jsdom/living/blob.js - -// fix for "Readable" isn't a named export issue -const Readable = Stream.Readable; - -const BUFFER = Symbol('buffer'); -const TYPE = Symbol('type'); - -class Blob { - constructor() { - this[TYPE] = ''; - - const blobParts = arguments[0]; - const options = arguments[1]; - - const buffers = []; - let size = 0; - - if (blobParts) { - const a = blobParts; - const length = Number(a.length); - for (let i = 0; i < length; i++) { - const element = a[i]; - let buffer; - if (element instanceof Buffer) { - buffer = element; - } else if (ArrayBuffer.isView(element)) { - buffer = Buffer.from(element.buffer, element.byteOffset, element.byteLength); - } else if (element instanceof ArrayBuffer) { - buffer = Buffer.from(element); - } else if (element instanceof Blob) { - buffer = element[BUFFER]; - } else { - buffer = Buffer.from(typeof element === 'string' ? element : String(element)); - } - size += buffer.length; - buffers.push(buffer); - } - } - - this[BUFFER] = Buffer.concat(buffers); - - let type = options && options.type !== undefined && String(options.type).toLowerCase(); - if (type && !/[^\u0020-\u007E]/.test(type)) { - this[TYPE] = type; - } - } - get size() { - return this[BUFFER].length; - } - get type() { - return this[TYPE]; - } - text() { - return Promise.resolve(this[BUFFER].toString()); - } - arrayBuffer() { - const buf = this[BUFFER]; - const ab = buf.buffer.slice(buf.byteOffset, buf.byteOffset + buf.byteLength); - return Promise.resolve(ab); - } - stream() { - const readable = new Readable(); - readable._read = function () {}; - readable.push(this[BUFFER]); - readable.push(null); - return readable; - } - toString() { - return '[object Blob]'; - } - slice() { - const size = this.size; - - const start = arguments[0]; - const end = arguments[1]; - let relativeStart, relativeEnd; - if (start === undefined) { - relativeStart = 0; - } else if (start < 0) { - relativeStart = Math.max(size + start, 0); - } else { - relativeStart = Math.min(start, size); - } - if (end === undefined) { - relativeEnd = size; - } else if (end < 0) { - relativeEnd = Math.max(size + end, 0); - } else { - relativeEnd = Math.min(end, size); - } - const span = Math.max(relativeEnd - relativeStart, 0); - - const buffer = this[BUFFER]; - const slicedBuffer = buffer.slice(relativeStart, relativeStart + span); - const blob = new Blob([], { type: arguments[2] }); - blob[BUFFER] = slicedBuffer; - return blob; - } -} - -Object.defineProperties(Blob.prototype, { - size: { enumerable: true }, - type: { enumerable: true }, - slice: { enumerable: true } -}); - -Object.defineProperty(Blob.prototype, Symbol.toStringTag, { - value: 'Blob', - writable: false, - enumerable: false, - configurable: true -}); - -/** - * fetch-error.js - * - * FetchError interface for operational errors - */ - -/** - * Create FetchError instance - * - * @param String message Error message for human - * @param String type Error type for machine - * @param String systemError For Node.js system error - * @return FetchError - */ -function FetchError(message, type, systemError) { - Error.call(this, message); - - this.message = message; - this.type = type; - - // when err.type is `system`, err.code contains system error code - if (systemError) { - this.code = this.errno = systemError.code; - } - - // hide custom error implementation details from end-users - Error.captureStackTrace(this, this.constructor); -} - -FetchError.prototype = Object.create(Error.prototype); -FetchError.prototype.constructor = FetchError; -FetchError.prototype.name = 'FetchError'; - -let convert; -try { - convert = (__nccwpck_require__(2877).convert); -} catch (e) {} - -const INTERNALS = Symbol('Body internals'); - -// fix an issue where "PassThrough" isn't a named export for node <10 -const PassThrough = Stream.PassThrough; - -/** - * Body mixin - * - * Ref: https://fetch.spec.whatwg.org/#body - * - * @param Stream body Readable stream - * @param Object opts Response options - * @return Void - */ -function Body(body) { - var _this = this; - - var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, - _ref$size = _ref.size; - - let size = _ref$size === undefined ? 0 : _ref$size; - var _ref$timeout = _ref.timeout; - let timeout = _ref$timeout === undefined ? 0 : _ref$timeout; - - if (body == null) { - // body is undefined or null - body = null; - } else if (isURLSearchParams(body)) { - // body is a URLSearchParams - body = Buffer.from(body.toString()); - } else if (isBlob(body)) ; else if (Buffer.isBuffer(body)) ; else if (Object.prototype.toString.call(body) === '[object ArrayBuffer]') { - // body is ArrayBuffer - body = Buffer.from(body); - } else if (ArrayBuffer.isView(body)) { - // body is ArrayBufferView - body = Buffer.from(body.buffer, body.byteOffset, body.byteLength); - } else if (body instanceof Stream) ; else { - // none of the above - // coerce to string then buffer - body = Buffer.from(String(body)); - } - this[INTERNALS] = { - body, - disturbed: false, - error: null - }; - this.size = size; - this.timeout = timeout; - - if (body instanceof Stream) { - body.on('error', function (err) { - const error = err.name === 'AbortError' ? err : new FetchError(`Invalid response body while trying to fetch ${_this.url}: ${err.message}`, 'system', err); - _this[INTERNALS].error = error; - }); - } -} - -Body.prototype = { - get body() { - return this[INTERNALS].body; - }, - - get bodyUsed() { - return this[INTERNALS].disturbed; - }, - - /** - * Decode response as ArrayBuffer - * - * @return Promise - */ - arrayBuffer() { - return consumeBody.call(this).then(function (buf) { - return buf.buffer.slice(buf.byteOffset, buf.byteOffset + buf.byteLength); - }); - }, - - /** - * Return raw response as Blob - * - * @return Promise - */ - blob() { - let ct = this.headers && this.headers.get('content-type') || ''; - return consumeBody.call(this).then(function (buf) { - return Object.assign( - // Prevent copying - new Blob([], { - type: ct.toLowerCase() - }), { - [BUFFER]: buf - }); - }); - }, - - /** - * Decode response as json - * - * @return Promise - */ - json() { - var _this2 = this; - - return consumeBody.call(this).then(function (buffer) { - try { - return JSON.parse(buffer.toString()); - } catch (err) { - return Body.Promise.reject(new FetchError(`invalid json response body at ${_this2.url} reason: ${err.message}`, 'invalid-json')); - } - }); - }, - - /** - * Decode response as text - * - * @return Promise - */ - text() { - return consumeBody.call(this).then(function (buffer) { - return buffer.toString(); - }); - }, - - /** - * Decode response as buffer (non-spec api) - * - * @return Promise - */ - buffer() { - return consumeBody.call(this); - }, - - /** - * Decode response as text, while automatically detecting the encoding and - * trying to decode to UTF-8 (non-spec api) - * - * @return Promise - */ - textConverted() { - var _this3 = this; - - return consumeBody.call(this).then(function (buffer) { - return convertBody(buffer, _this3.headers); - }); - } -}; - -// In browsers, all properties are enumerable. -Object.defineProperties(Body.prototype, { - body: { enumerable: true }, - bodyUsed: { enumerable: true }, - arrayBuffer: { enumerable: true }, - blob: { enumerable: true }, - json: { enumerable: true }, - text: { enumerable: true } -}); - -Body.mixIn = function (proto) { - for (const name of Object.getOwnPropertyNames(Body.prototype)) { - // istanbul ignore else: future proof - if (!(name in proto)) { - const desc = Object.getOwnPropertyDescriptor(Body.prototype, name); - Object.defineProperty(proto, name, desc); - } - } -}; - -/** - * Consume and convert an entire Body to a Buffer. - * - * Ref: https://fetch.spec.whatwg.org/#concept-body-consume-body - * - * @return Promise - */ -function consumeBody() { - var _this4 = this; - - if (this[INTERNALS].disturbed) { - return Body.Promise.reject(new TypeError(`body used already for: ${this.url}`)); - } - - this[INTERNALS].disturbed = true; - - if (this[INTERNALS].error) { - return Body.Promise.reject(this[INTERNALS].error); - } - - let body = this.body; - - // body is null - if (body === null) { - return Body.Promise.resolve(Buffer.alloc(0)); - } - - // body is blob - if (isBlob(body)) { - body = body.stream(); - } - - // body is buffer - if (Buffer.isBuffer(body)) { - return Body.Promise.resolve(body); - } - - // istanbul ignore if: should never happen - if (!(body instanceof Stream)) { - return Body.Promise.resolve(Buffer.alloc(0)); - } - - // body is stream - // get ready to actually consume the body - let accum = []; - let accumBytes = 0; - let abort = false; - - return new Body.Promise(function (resolve, reject) { - let resTimeout; - - // allow timeout on slow response body - if (_this4.timeout) { - resTimeout = setTimeout(function () { - abort = true; - reject(new FetchError(`Response timeout while trying to fetch ${_this4.url} (over ${_this4.timeout}ms)`, 'body-timeout')); - }, _this4.timeout); - } - - // handle stream errors - body.on('error', function (err) { - if (err.name === 'AbortError') { - // if the request was aborted, reject with this Error - abort = true; - reject(err); - } else { - // other errors, such as incorrect content-encoding - reject(new FetchError(`Invalid response body while trying to fetch ${_this4.url}: ${err.message}`, 'system', err)); - } - }); - - body.on('data', function (chunk) { - if (abort || chunk === null) { - return; - } - - if (_this4.size && accumBytes + chunk.length > _this4.size) { - abort = true; - reject(new FetchError(`content size at ${_this4.url} over limit: ${_this4.size}`, 'max-size')); - return; - } - - accumBytes += chunk.length; - accum.push(chunk); - }); - - body.on('end', function () { - if (abort) { - return; - } - - clearTimeout(resTimeout); - - try { - resolve(Buffer.concat(accum, accumBytes)); - } catch (err) { - // handle streams that have accumulated too much data (issue #414) - reject(new FetchError(`Could not create Buffer from response body for ${_this4.url}: ${err.message}`, 'system', err)); - } - }); - }); -} - -/** - * Detect buffer encoding and convert to target encoding - * ref: http://www.w3.org/TR/2011/WD-html5-20110113/parsing.html#determining-the-character-encoding - * - * @param Buffer buffer Incoming buffer - * @param String encoding Target encoding - * @return String - */ -function convertBody(buffer, headers) { - if (typeof convert !== 'function') { - throw new Error('The package `encoding` must be installed to use the textConverted() function'); - } - - const ct = headers.get('content-type'); - let charset = 'utf-8'; - let res, str; - - // header - if (ct) { - res = /charset=([^;]*)/i.exec(ct); - } - - // no charset in content type, peek at response body for at most 1024 bytes - str = buffer.slice(0, 1024).toString(); - - // html5 - if (!res && str) { - res = / 0 && arguments[0] !== undefined ? arguments[0] : undefined; - - this[MAP] = Object.create(null); - - if (init instanceof Headers) { - const rawHeaders = init.raw(); - const headerNames = Object.keys(rawHeaders); - - for (const headerName of headerNames) { - for (const value of rawHeaders[headerName]) { - this.append(headerName, value); - } - } - - return; - } - - // We don't worry about converting prop to ByteString here as append() - // will handle it. - if (init == null) ; else if (typeof init === 'object') { - const method = init[Symbol.iterator]; - if (method != null) { - if (typeof method !== 'function') { - throw new TypeError('Header pairs must be iterable'); - } - - // sequence> - // Note: per spec we have to first exhaust the lists then process them - const pairs = []; - for (const pair of init) { - if (typeof pair !== 'object' || typeof pair[Symbol.iterator] !== 'function') { - throw new TypeError('Each header pair must be iterable'); - } - pairs.push(Array.from(pair)); - } - - for (const pair of pairs) { - if (pair.length !== 2) { - throw new TypeError('Each header pair must be a name/value tuple'); - } - this.append(pair[0], pair[1]); - } - } else { - // record - for (const key of Object.keys(init)) { - const value = init[key]; - this.append(key, value); - } - } - } else { - throw new TypeError('Provided initializer must be an object'); - } - } - - /** - * Return combined header value given name - * - * @param String name Header name - * @return Mixed - */ - get(name) { - name = `${name}`; - validateName(name); - const key = find(this[MAP], name); - if (key === undefined) { - return null; - } - - return this[MAP][key].join(', '); - } - - /** - * Iterate over all headers - * - * @param Function callback Executed for each item with parameters (value, name, thisArg) - * @param Boolean thisArg `this` context for callback function - * @return Void - */ - forEach(callback) { - let thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : undefined; - - let pairs = getHeaders(this); - let i = 0; - while (i < pairs.length) { - var _pairs$i = pairs[i]; - const name = _pairs$i[0], - value = _pairs$i[1]; - - callback.call(thisArg, value, name, this); - pairs = getHeaders(this); - i++; - } - } - - /** - * Overwrite header values given name - * - * @param String name Header name - * @param String value Header value - * @return Void - */ - set(name, value) { - name = `${name}`; - value = `${value}`; - validateName(name); - validateValue(value); - const key = find(this[MAP], name); - this[MAP][key !== undefined ? key : name] = [value]; - } - - /** - * Append a value onto existing header - * - * @param String name Header name - * @param String value Header value - * @return Void - */ - append(name, value) { - name = `${name}`; - value = `${value}`; - validateName(name); - validateValue(value); - const key = find(this[MAP], name); - if (key !== undefined) { - this[MAP][key].push(value); - } else { - this[MAP][name] = [value]; - } - } - - /** - * Check for header name existence - * - * @param String name Header name - * @return Boolean - */ - has(name) { - name = `${name}`; - validateName(name); - return find(this[MAP], name) !== undefined; - } - - /** - * Delete all header values given name - * - * @param String name Header name - * @return Void - */ - delete(name) { - name = `${name}`; - validateName(name); - const key = find(this[MAP], name); - if (key !== undefined) { - delete this[MAP][key]; - } - } - - /** - * Return raw headers (non-spec api) - * - * @return Object - */ - raw() { - return this[MAP]; - } - - /** - * Get an iterator on keys. - * - * @return Iterator - */ - keys() { - return createHeadersIterator(this, 'key'); - } - - /** - * Get an iterator on values. - * - * @return Iterator - */ - values() { - return createHeadersIterator(this, 'value'); - } - - /** - * Get an iterator on entries. - * - * This is the default iterator of the Headers object. - * - * @return Iterator - */ - [Symbol.iterator]() { - return createHeadersIterator(this, 'key+value'); - } -} -Headers.prototype.entries = Headers.prototype[Symbol.iterator]; - -Object.defineProperty(Headers.prototype, Symbol.toStringTag, { - value: 'Headers', - writable: false, - enumerable: false, - configurable: true -}); - -Object.defineProperties(Headers.prototype, { - get: { enumerable: true }, - forEach: { enumerable: true }, - set: { enumerable: true }, - append: { enumerable: true }, - has: { enumerable: true }, - delete: { enumerable: true }, - keys: { enumerable: true }, - values: { enumerable: true }, - entries: { enumerable: true } -}); - -function getHeaders(headers) { - let kind = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'key+value'; - - const keys = Object.keys(headers[MAP]).sort(); - return keys.map(kind === 'key' ? function (k) { - return k.toLowerCase(); - } : kind === 'value' ? function (k) { - return headers[MAP][k].join(', '); - } : function (k) { - return [k.toLowerCase(), headers[MAP][k].join(', ')]; - }); -} - -const INTERNAL = Symbol('internal'); - -function createHeadersIterator(target, kind) { - const iterator = Object.create(HeadersIteratorPrototype); - iterator[INTERNAL] = { - target, - kind, - index: 0 - }; - return iterator; -} - -const HeadersIteratorPrototype = Object.setPrototypeOf({ - next() { - // istanbul ignore if - if (!this || Object.getPrototypeOf(this) !== HeadersIteratorPrototype) { - throw new TypeError('Value of `this` is not a HeadersIterator'); - } - - var _INTERNAL = this[INTERNAL]; - const target = _INTERNAL.target, - kind = _INTERNAL.kind, - index = _INTERNAL.index; - - const values = getHeaders(target, kind); - const len = values.length; - if (index >= len) { - return { - value: undefined, - done: true - }; - } - - this[INTERNAL].index = index + 1; - - return { - value: values[index], - done: false - }; - } -}, Object.getPrototypeOf(Object.getPrototypeOf([][Symbol.iterator]()))); - -Object.defineProperty(HeadersIteratorPrototype, Symbol.toStringTag, { - value: 'HeadersIterator', - writable: false, - enumerable: false, - configurable: true -}); - -/** - * Export the Headers object in a form that Node.js can consume. - * - * @param Headers headers - * @return Object - */ -function exportNodeCompatibleHeaders(headers) { - const obj = Object.assign({ __proto__: null }, headers[MAP]); - - // http.request() only supports string as Host header. This hack makes - // specifying custom Host header possible. - const hostHeaderKey = find(headers[MAP], 'Host'); - if (hostHeaderKey !== undefined) { - obj[hostHeaderKey] = obj[hostHeaderKey][0]; - } - - return obj; +class BlobDownloadResponse { + /** + * Indicates that the service supports + * requests for partial file content. + * + * @readonly + */ + get acceptRanges() { + return this.originalResponse.acceptRanges; + } + /** + * Returns if it was previously specified + * for the file. + * + * @readonly + */ + get cacheControl() { + return this.originalResponse.cacheControl; + } + /** + * Returns the value that was specified + * for the 'x-ms-content-disposition' header and specifies how to process the + * response. + * + * @readonly + */ + get contentDisposition() { + return this.originalResponse.contentDisposition; + } + /** + * Returns the value that was specified + * for the Content-Encoding request header. + * + * @readonly + */ + get contentEncoding() { + return this.originalResponse.contentEncoding; + } + /** + * Returns the value that was specified + * for the Content-Language request header. + * + * @readonly + */ + get contentLanguage() { + return this.originalResponse.contentLanguage; + } + /** + * The current sequence number for a + * page blob. This header is not returned for block blobs or append blobs. + * + * @readonly + */ + get blobSequenceNumber() { + return this.originalResponse.blobSequenceNumber; + } + /** + * The blob's type. Possible values include: + * 'BlockBlob', 'PageBlob', 'AppendBlob'. + * + * @readonly + */ + get blobType() { + return this.originalResponse.blobType; + } + /** + * The number of bytes present in the + * response body. + * + * @readonly + */ + get contentLength() { + return this.originalResponse.contentLength; + } + /** + * If the file has an MD5 hash and the + * request is to read the full file, this response header is returned so that + * the client can check for message content integrity. If the request is to + * read a specified range and the 'x-ms-range-get-content-md5' is set to + * true, then the request returns an MD5 hash for the range, as long as the + * range size is less than or equal to 4 MB. If neither of these sets of + * conditions is true, then no value is returned for the 'Content-MD5' + * header. + * + * @readonly + */ + get contentMD5() { + return this.originalResponse.contentMD5; + } + /** + * Indicates the range of bytes returned if + * the client requested a subset of the file by setting the Range request + * header. + * + * @readonly + */ + get contentRange() { + return this.originalResponse.contentRange; + } + /** + * The content type specified for the file. + * The default content type is 'application/octet-stream' + * + * @readonly + */ + get contentType() { + return this.originalResponse.contentType; + } + /** + * Conclusion time of the last attempted + * Copy File operation where this file was the destination file. This value + * can specify the time of a completed, aborted, or failed copy attempt. + * + * @readonly + */ + get copyCompletedOn() { + return this.originalResponse.copyCompletedOn; + } + /** + * String identifier for the last attempted Copy + * File operation where this file was the destination file. + * + * @readonly + */ + get copyId() { + return this.originalResponse.copyId; + } + /** + * Contains the number of bytes copied and + * the total bytes in the source in the last attempted Copy File operation + * where this file was the destination file. Can show between 0 and + * Content-Length bytes copied. + * + * @readonly + */ + get copyProgress() { + return this.originalResponse.copyProgress; + } + /** + * URL up to 2KB in length that specifies the + * source file used in the last attempted Copy File operation where this file + * was the destination file. + * + * @readonly + */ + get copySource() { + return this.originalResponse.copySource; + } + /** + * State of the copy operation + * identified by 'x-ms-copy-id'. Possible values include: 'pending', + * 'success', 'aborted', 'failed' + * + * @readonly + */ + get copyStatus() { + return this.originalResponse.copyStatus; + } + /** + * Only appears when + * x-ms-copy-status is failed or pending. Describes cause of fatal or + * non-fatal copy operation failure. + * + * @readonly + */ + get copyStatusDescription() { + return this.originalResponse.copyStatusDescription; + } + /** + * When a blob is leased, + * specifies whether the lease is of infinite or fixed duration. Possible + * values include: 'infinite', 'fixed'. + * + * @readonly + */ + get leaseDuration() { + return this.originalResponse.leaseDuration; + } + /** + * Lease state of the blob. Possible + * values include: 'available', 'leased', 'expired', 'breaking', 'broken'. + * + * @readonly + */ + get leaseState() { + return this.originalResponse.leaseState; + } + /** + * The current lease status of the + * blob. Possible values include: 'locked', 'unlocked'. + * + * @readonly + */ + get leaseStatus() { + return this.originalResponse.leaseStatus; + } + /** + * A UTC date/time value generated by the service that + * indicates the time at which the response was initiated. + * + * @readonly + */ + get date() { + return this.originalResponse.date; + } + /** + * The number of committed blocks + * present in the blob. This header is returned only for append blobs. + * + * @readonly + */ + get blobCommittedBlockCount() { + return this.originalResponse.blobCommittedBlockCount; + } + /** + * The ETag contains a value that you can use to + * perform operations conditionally, in quotes. + * + * @readonly + */ + get etag() { + return this.originalResponse.etag; + } + /** + * The number of tags associated with the blob + * + * @readonly + */ + get tagCount() { + return this.originalResponse.tagCount; + } + /** + * The error code. + * + * @readonly + */ + get errorCode() { + return this.originalResponse.errorCode; + } + /** + * The value of this header is set to + * true if the file data and application metadata are completely encrypted + * using the specified algorithm. Otherwise, the value is set to false (when + * the file is unencrypted, or if only parts of the file/application metadata + * are encrypted). + * + * @readonly + */ + get isServerEncrypted() { + return this.originalResponse.isServerEncrypted; + } + /** + * If the blob has a MD5 hash, and if + * request contains range header (Range or x-ms-range), this response header + * is returned with the value of the whole blob's MD5 value. This value may + * or may not be equal to the value returned in Content-MD5 header, with the + * latter calculated from the requested range. + * + * @readonly + */ + get blobContentMD5() { + return this.originalResponse.blobContentMD5; + } + /** + * Returns the date and time the file was last + * modified. Any operation that modifies the file or its properties updates + * the last modified time. + * + * @readonly + */ + get lastModified() { + return this.originalResponse.lastModified; + } + /** + * Returns the UTC date and time generated by the service that indicates the time at which the blob was + * last read or written to. + * + * @readonly + */ + get lastAccessed() { + return this.originalResponse.lastAccessed; + } + /** + * Returns the date and time the blob was created. + * + * @readonly + */ + get createdOn() { + return this.originalResponse.createdOn; + } + /** + * A name-value pair + * to associate with a file storage object. + * + * @readonly + */ + get metadata() { + return this.originalResponse.metadata; + } + /** + * This header uniquely identifies the request + * that was made and can be used for troubleshooting the request. + * + * @readonly + */ + get requestId() { + return this.originalResponse.requestId; + } + /** + * If a client request id header is sent in the request, this header will be present in the + * response with the same value. + * + * @readonly + */ + get clientRequestId() { + return this.originalResponse.clientRequestId; + } + /** + * Indicates the version of the Blob service used + * to execute the request. + * + * @readonly + */ + get version() { + return this.originalResponse.version; + } + /** + * Indicates the versionId of the downloaded blob version. + * + * @readonly + */ + get versionId() { + return this.originalResponse.versionId; + } + /** + * Indicates whether version of this blob is a current version. + * + * @readonly + */ + get isCurrentVersion() { + return this.originalResponse.isCurrentVersion; + } + /** + * The SHA-256 hash of the encryption key used to encrypt the blob. This value is only returned + * when the blob was encrypted with a customer-provided key. + * + * @readonly + */ + get encryptionKeySha256() { + return this.originalResponse.encryptionKeySha256; + } + /** + * If the request is to read a specified range and the x-ms-range-get-content-crc64 is set to + * true, then the request returns a crc64 for the range, as long as the range size is less than + * or equal to 4 MB. If both x-ms-range-get-content-crc64 & x-ms-range-get-content-md5 is + * specified in the same request, it will fail with 400(Bad Request) + */ + get contentCrc64() { + return this.originalResponse.contentCrc64; + } + /** + * Object Replication Policy Id of the destination blob. + * + * @readonly + */ + get objectReplicationDestinationPolicyId() { + return this.originalResponse.objectReplicationDestinationPolicyId; + } + /** + * Parsed Object Replication Policy Id, Rule Id(s) and status of the source blob. + * + * @readonly + */ + get objectReplicationSourceProperties() { + return this.originalResponse.objectReplicationSourceProperties; + } + /** + * If this blob has been sealed. + * + * @readonly + */ + get isSealed() { + return this.originalResponse.isSealed; + } + /** + * UTC date/time value generated by the service that indicates the time at which the blob immutability policy will expire. + * + * @readonly + */ + get immutabilityPolicyExpiresOn() { + return this.originalResponse.immutabilityPolicyExpiresOn; + } + /** + * Indicates immutability policy mode. + * + * @readonly + */ + get immutabilityPolicyMode() { + return this.originalResponse.immutabilityPolicyMode; + } + /** + * Indicates if a legal hold is present on the blob. + * + * @readonly + */ + get legalHold() { + return this.originalResponse.legalHold; + } + /** + * The response body as a browser Blob. + * Always undefined in node.js. + * + * @readonly + */ + get contentAsBlob() { + return this.originalResponse.blobBody; + } + /** + * The response body as a node.js Readable stream. + * Always undefined in the browser. + * + * It will automatically retry when internal read stream unexpected ends. + * + * @readonly + */ + get readableStreamBody() { + return core_util_1.isNodeLike ? this.blobDownloadStream : undefined; + } + /** + * The HTTP response. + */ + get _response() { + return this.originalResponse._response; + } + originalResponse; + blobDownloadStream; + /** + * Creates an instance of BlobDownloadResponse. + * + * @param originalResponse - + * @param getter - + * @param offset - + * @param count - + * @param options - + */ + constructor(originalResponse, getter, offset, count, options = {}) { + this.originalResponse = originalResponse; + this.blobDownloadStream = new RetriableReadableStream_js_1.RetriableReadableStream(this.originalResponse.readableStreamBody, getter, offset, count, options); + } } +exports.BlobDownloadResponse = BlobDownloadResponse; +//# sourceMappingURL=BlobDownloadResponse.js.map -/** - * Create a Headers object from an object of headers, ignoring those that do - * not conform to HTTP grammar productions. - * - * @param Object obj Object of headers - * @return Headers - */ -function createHeadersLenient(obj) { - const headers = new Headers(); - for (const name of Object.keys(obj)) { - if (invalidTokenRegex.test(name)) { - continue; - } - if (Array.isArray(obj[name])) { - for (const val of obj[name]) { - if (invalidHeaderCharRegex.test(val)) { - continue; - } - if (headers[MAP][name] === undefined) { - headers[MAP][name] = [val]; - } else { - headers[MAP][name].push(val); - } - } - } else if (!invalidHeaderCharRegex.test(obj[name])) { - headers[MAP][name] = [obj[name]]; - } - } - return headers; -} +/***/ }), -const INTERNALS$1 = Symbol('Response internals'); +/***/ 20106: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -// fix an issue where "STATUS_CODES" aren't a named export for node <10 -const STATUS_CODES = http.STATUS_CODES; +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.BlobLeaseClient = void 0; +const core_util_1 = __nccwpck_require__(80637); +const constants_js_1 = __nccwpck_require__(81865); +const tracing_js_1 = __nccwpck_require__(53683); +const utils_common_js_1 = __nccwpck_require__(16673); /** - * Response class - * - * @param Stream body Readable stream - * @param Object opts Response options - * @return Void + * A client that manages leases for a {@link ContainerClient} or a {@link BlobClient}. */ -class Response { - constructor() { - let body = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; - let opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - - Body.call(this, body, opts); - - const status = opts.status || 200; - const headers = new Headers(opts.headers); - - if (body != null && !headers.has('Content-Type')) { - const contentType = extractContentType(body); - if (contentType) { - headers.append('Content-Type', contentType); - } - } - - this[INTERNALS$1] = { - url: opts.url, - status, - statusText: opts.statusText || STATUS_CODES[status], - headers, - counter: opts.counter - }; - } - - get url() { - return this[INTERNALS$1].url || ''; - } - - get status() { - return this[INTERNALS$1].status; - } - - /** - * Convenience property representing if the request ended normally - */ - get ok() { - return this[INTERNALS$1].status >= 200 && this[INTERNALS$1].status < 300; - } - - get redirected() { - return this[INTERNALS$1].counter > 0; - } - - get statusText() { - return this[INTERNALS$1].statusText; - } - - get headers() { - return this[INTERNALS$1].headers; - } - - /** - * Clone this response - * - * @return Response - */ - clone() { - return new Response(clone(this), { - url: this.url, - status: this.status, - statusText: this.statusText, - headers: this.headers, - ok: this.ok, - redirected: this.redirected - }); - } +class BlobLeaseClient { + _leaseId; + _url; + _containerOrBlobOperation; + _isContainer; + /** + * Gets the lease Id. + * + * @readonly + */ + get leaseId() { + return this._leaseId; + } + /** + * Gets the url. + * + * @readonly + */ + get url() { + return this._url; + } + /** + * Creates an instance of BlobLeaseClient. + * @param client - The client to make the lease operation requests. + * @param leaseId - Initial proposed lease id. + */ + constructor(client, leaseId) { + const clientContext = client.storageClientContext; + this._url = client.url; + if (client.name === undefined) { + this._isContainer = true; + this._containerOrBlobOperation = clientContext.container; + } + else { + this._isContainer = false; + this._containerOrBlobOperation = clientContext.blob; + } + if (!leaseId) { + leaseId = (0, core_util_1.randomUUID)(); + } + this._leaseId = leaseId; + } + /** + * Establishes and manages a lock on a container for delete operations, or on a blob + * for write and delete operations. + * The lock duration can be 15 to 60 seconds, or can be infinite. + * @see https://learn.microsoft.com/rest/api/storageservices/lease-container + * and + * @see https://learn.microsoft.com/rest/api/storageservices/lease-blob + * + * @param duration - Must be between 15 to 60 seconds, or infinite (-1) + * @param options - option to configure lease management operations. + * @returns Response data for acquire lease operation. + */ + async acquireLease(duration, options = {}) { + if (this._isContainer && + ((options.conditions?.ifMatch && options.conditions?.ifMatch !== constants_js_1.ETagNone) || + (options.conditions?.ifNoneMatch && options.conditions?.ifNoneMatch !== constants_js_1.ETagNone) || + options.conditions?.tagConditions)) { + throw new RangeError("The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable."); + } + return tracing_js_1.tracingClient.withSpan("BlobLeaseClient-acquireLease", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this._containerOrBlobOperation.acquireLease({ + abortSignal: options.abortSignal, + duration, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + proposedLeaseId: this._leaseId, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * To change the ID of the lease. + * @see https://learn.microsoft.com/rest/api/storageservices/lease-container + * and + * @see https://learn.microsoft.com/rest/api/storageservices/lease-blob + * + * @param proposedLeaseId - the proposed new lease Id. + * @param options - option to configure lease management operations. + * @returns Response data for change lease operation. + */ + async changeLease(proposedLeaseId, options = {}) { + if (this._isContainer && + ((options.conditions?.ifMatch && options.conditions?.ifMatch !== constants_js_1.ETagNone) || + (options.conditions?.ifNoneMatch && options.conditions?.ifNoneMatch !== constants_js_1.ETagNone) || + options.conditions?.tagConditions)) { + throw new RangeError("The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable."); + } + return tracing_js_1.tracingClient.withSpan("BlobLeaseClient-changeLease", options, async (updatedOptions) => { + const response = (0, utils_common_js_1.assertResponse)(await this._containerOrBlobOperation.changeLease(this._leaseId, proposedLeaseId, { + abortSignal: options.abortSignal, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + tracingOptions: updatedOptions.tracingOptions, + })); + this._leaseId = proposedLeaseId; + return response; + }); + } + /** + * To free the lease if it is no longer needed so that another client may + * immediately acquire a lease against the container or the blob. + * @see https://learn.microsoft.com/rest/api/storageservices/lease-container + * and + * @see https://learn.microsoft.com/rest/api/storageservices/lease-blob + * + * @param options - option to configure lease management operations. + * @returns Response data for release lease operation. + */ + async releaseLease(options = {}) { + if (this._isContainer && + ((options.conditions?.ifMatch && options.conditions?.ifMatch !== constants_js_1.ETagNone) || + (options.conditions?.ifNoneMatch && options.conditions?.ifNoneMatch !== constants_js_1.ETagNone) || + options.conditions?.tagConditions)) { + throw new RangeError("The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable."); + } + return tracing_js_1.tracingClient.withSpan("BlobLeaseClient-releaseLease", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this._containerOrBlobOperation.releaseLease(this._leaseId, { + abortSignal: options.abortSignal, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * To renew the lease. + * @see https://learn.microsoft.com/rest/api/storageservices/lease-container + * and + * @see https://learn.microsoft.com/rest/api/storageservices/lease-blob + * + * @param options - Optional option to configure lease management operations. + * @returns Response data for renew lease operation. + */ + async renewLease(options = {}) { + if (this._isContainer && + ((options.conditions?.ifMatch && options.conditions?.ifMatch !== constants_js_1.ETagNone) || + (options.conditions?.ifNoneMatch && options.conditions?.ifNoneMatch !== constants_js_1.ETagNone) || + options.conditions?.tagConditions)) { + throw new RangeError("The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable."); + } + return tracing_js_1.tracingClient.withSpan("BlobLeaseClient-renewLease", options, async (updatedOptions) => { + return this._containerOrBlobOperation.renewLease(this._leaseId, { + abortSignal: options.abortSignal, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + tracingOptions: updatedOptions.tracingOptions, + }); + }); + } + /** + * To end the lease but ensure that another client cannot acquire a new lease + * until the current lease period has expired. + * @see https://learn.microsoft.com/rest/api/storageservices/lease-container + * and + * @see https://learn.microsoft.com/rest/api/storageservices/lease-blob + * + * @param breakPeriod - Break period + * @param options - Optional options to configure lease management operations. + * @returns Response data for break lease operation. + */ + async breakLease(breakPeriod, options = {}) { + if (this._isContainer && + ((options.conditions?.ifMatch && options.conditions?.ifMatch !== constants_js_1.ETagNone) || + (options.conditions?.ifNoneMatch && options.conditions?.ifNoneMatch !== constants_js_1.ETagNone) || + options.conditions?.tagConditions)) { + throw new RangeError("The IfMatch, IfNoneMatch and tags access conditions are ignored by the service. Values other than undefined or their default values are not acceptable."); + } + return tracing_js_1.tracingClient.withSpan("BlobLeaseClient-breakLease", options, async (updatedOptions) => { + const operationOptions = { + abortSignal: options.abortSignal, + breakPeriod, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + tracingOptions: updatedOptions.tracingOptions, + }; + return (0, utils_common_js_1.assertResponse)(await this._containerOrBlobOperation.breakLease(operationOptions)); + }); + } } +exports.BlobLeaseClient = BlobLeaseClient; +//# sourceMappingURL=BlobLeaseClient.js.map -Body.mixIn(Response.prototype); - -Object.defineProperties(Response.prototype, { - url: { enumerable: true }, - status: { enumerable: true }, - ok: { enumerable: true }, - redirected: { enumerable: true }, - statusText: { enumerable: true }, - headers: { enumerable: true }, - clone: { enumerable: true } -}); - -Object.defineProperty(Response.prototype, Symbol.toStringTag, { - value: 'Response', - writable: false, - enumerable: false, - configurable: true -}); +/***/ }), -const INTERNALS$2 = Symbol('Request internals'); -const URL = Url.URL || whatwgUrl.URL; +/***/ 83751: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -// fix an issue where "format", "parse" aren't a named export for node <10 -const parse_url = Url.parse; -const format_url = Url.format; +"use strict"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.BlobQueryResponse = void 0; +const core_util_1 = __nccwpck_require__(80637); +const BlobQuickQueryStream_js_1 = __nccwpck_require__(59028); /** - * Wrapper around `new URL` to handle arbitrary URLs + * ONLY AVAILABLE IN NODE.JS RUNTIME. * - * @param {string} urlStr - * @return {void} - */ -function parseURL(urlStr) { - /* - Check whether the URL is absolute or not - Scheme: https://tools.ietf.org/html/rfc3986#section-3.1 - Absolute URL: https://tools.ietf.org/html/rfc3986#section-4.3 + * BlobQueryResponse implements BlobDownloadResponseModel interface, and in Node.js runtime it will + * parse avro data returned by blob query. */ - if (/^[a-zA-Z][a-zA-Z\d+\-.]*:/.exec(urlStr)) { - urlStr = new URL(urlStr).toString(); - } - - // Fallback to old implementation for arbitrary URLs - return parse_url(urlStr); +class BlobQueryResponse { + /** + * Indicates that the service supports + * requests for partial file content. + * + * @readonly + */ + get acceptRanges() { + return this.originalResponse.acceptRanges; + } + /** + * Returns if it was previously specified + * for the file. + * + * @readonly + */ + get cacheControl() { + return this.originalResponse.cacheControl; + } + /** + * Returns the value that was specified + * for the 'x-ms-content-disposition' header and specifies how to process the + * response. + * + * @readonly + */ + get contentDisposition() { + return this.originalResponse.contentDisposition; + } + /** + * Returns the value that was specified + * for the Content-Encoding request header. + * + * @readonly + */ + get contentEncoding() { + return this.originalResponse.contentEncoding; + } + /** + * Returns the value that was specified + * for the Content-Language request header. + * + * @readonly + */ + get contentLanguage() { + return this.originalResponse.contentLanguage; + } + /** + * The current sequence number for a + * page blob. This header is not returned for block blobs or append blobs. + * + * @readonly + */ + get blobSequenceNumber() { + return this.originalResponse.blobSequenceNumber; + } + /** + * The blob's type. Possible values include: + * 'BlockBlob', 'PageBlob', 'AppendBlob'. + * + * @readonly + */ + get blobType() { + return this.originalResponse.blobType; + } + /** + * The number of bytes present in the + * response body. + * + * @readonly + */ + get contentLength() { + return this.originalResponse.contentLength; + } + /** + * If the file has an MD5 hash and the + * request is to read the full file, this response header is returned so that + * the client can check for message content integrity. If the request is to + * read a specified range and the 'x-ms-range-get-content-md5' is set to + * true, then the request returns an MD5 hash for the range, as long as the + * range size is less than or equal to 4 MB. If neither of these sets of + * conditions is true, then no value is returned for the 'Content-MD5' + * header. + * + * @readonly + */ + get contentMD5() { + return this.originalResponse.contentMD5; + } + /** + * Indicates the range of bytes returned if + * the client requested a subset of the file by setting the Range request + * header. + * + * @readonly + */ + get contentRange() { + return this.originalResponse.contentRange; + } + /** + * The content type specified for the file. + * The default content type is 'application/octet-stream' + * + * @readonly + */ + get contentType() { + return this.originalResponse.contentType; + } + /** + * Conclusion time of the last attempted + * Copy File operation where this file was the destination file. This value + * can specify the time of a completed, aborted, or failed copy attempt. + * + * @readonly + */ + get copyCompletedOn() { + return undefined; + } + /** + * String identifier for the last attempted Copy + * File operation where this file was the destination file. + * + * @readonly + */ + get copyId() { + return this.originalResponse.copyId; + } + /** + * Contains the number of bytes copied and + * the total bytes in the source in the last attempted Copy File operation + * where this file was the destination file. Can show between 0 and + * Content-Length bytes copied. + * + * @readonly + */ + get copyProgress() { + return this.originalResponse.copyProgress; + } + /** + * URL up to 2KB in length that specifies the + * source file used in the last attempted Copy File operation where this file + * was the destination file. + * + * @readonly + */ + get copySource() { + return this.originalResponse.copySource; + } + /** + * State of the copy operation + * identified by 'x-ms-copy-id'. Possible values include: 'pending', + * 'success', 'aborted', 'failed' + * + * @readonly + */ + get copyStatus() { + return this.originalResponse.copyStatus; + } + /** + * Only appears when + * x-ms-copy-status is failed or pending. Describes cause of fatal or + * non-fatal copy operation failure. + * + * @readonly + */ + get copyStatusDescription() { + return this.originalResponse.copyStatusDescription; + } + /** + * When a blob is leased, + * specifies whether the lease is of infinite or fixed duration. Possible + * values include: 'infinite', 'fixed'. + * + * @readonly + */ + get leaseDuration() { + return this.originalResponse.leaseDuration; + } + /** + * Lease state of the blob. Possible + * values include: 'available', 'leased', 'expired', 'breaking', 'broken'. + * + * @readonly + */ + get leaseState() { + return this.originalResponse.leaseState; + } + /** + * The current lease status of the + * blob. Possible values include: 'locked', 'unlocked'. + * + * @readonly + */ + get leaseStatus() { + return this.originalResponse.leaseStatus; + } + /** + * A UTC date/time value generated by the service that + * indicates the time at which the response was initiated. + * + * @readonly + */ + get date() { + return this.originalResponse.date; + } + /** + * The number of committed blocks + * present in the blob. This header is returned only for append blobs. + * + * @readonly + */ + get blobCommittedBlockCount() { + return this.originalResponse.blobCommittedBlockCount; + } + /** + * The ETag contains a value that you can use to + * perform operations conditionally, in quotes. + * + * @readonly + */ + get etag() { + return this.originalResponse.etag; + } + /** + * The error code. + * + * @readonly + */ + get errorCode() { + return this.originalResponse.errorCode; + } + /** + * The value of this header is set to + * true if the file data and application metadata are completely encrypted + * using the specified algorithm. Otherwise, the value is set to false (when + * the file is unencrypted, or if only parts of the file/application metadata + * are encrypted). + * + * @readonly + */ + get isServerEncrypted() { + return this.originalResponse.isServerEncrypted; + } + /** + * If the blob has a MD5 hash, and if + * request contains range header (Range or x-ms-range), this response header + * is returned with the value of the whole blob's MD5 value. This value may + * or may not be equal to the value returned in Content-MD5 header, with the + * latter calculated from the requested range. + * + * @readonly + */ + get blobContentMD5() { + return this.originalResponse.blobContentMD5; + } + /** + * Returns the date and time the file was last + * modified. Any operation that modifies the file or its properties updates + * the last modified time. + * + * @readonly + */ + get lastModified() { + return this.originalResponse.lastModified; + } + /** + * A name-value pair + * to associate with a file storage object. + * + * @readonly + */ + get metadata() { + return this.originalResponse.metadata; + } + /** + * This header uniquely identifies the request + * that was made and can be used for troubleshooting the request. + * + * @readonly + */ + get requestId() { + return this.originalResponse.requestId; + } + /** + * If a client request id header is sent in the request, this header will be present in the + * response with the same value. + * + * @readonly + */ + get clientRequestId() { + return this.originalResponse.clientRequestId; + } + /** + * Indicates the version of the File service used + * to execute the request. + * + * @readonly + */ + get version() { + return this.originalResponse.version; + } + /** + * The SHA-256 hash of the encryption key used to encrypt the blob. This value is only returned + * when the blob was encrypted with a customer-provided key. + * + * @readonly + */ + get encryptionKeySha256() { + return this.originalResponse.encryptionKeySha256; + } + /** + * If the request is to read a specified range and the x-ms-range-get-content-crc64 is set to + * true, then the request returns a crc64 for the range, as long as the range size is less than + * or equal to 4 MB. If both x-ms-range-get-content-crc64 & x-ms-range-get-content-md5 is + * specified in the same request, it will fail with 400(Bad Request) + */ + get contentCrc64() { + return this.originalResponse.contentCrc64; + } + /** + * The response body as a browser Blob. + * Always undefined in node.js. + * + * @readonly + */ + get blobBody() { + return undefined; + } + /** + * The response body as a node.js Readable stream. + * Always undefined in the browser. + * + * It will parse avor data returned by blob query. + * + * @readonly + */ + get readableStreamBody() { + return core_util_1.isNodeLike ? this.blobDownloadStream : undefined; + } + /** + * The HTTP response. + */ + get _response() { + return this.originalResponse._response; + } + originalResponse; + blobDownloadStream; + /** + * Creates an instance of BlobQueryResponse. + * + * @param originalResponse - + * @param options - + */ + constructor(originalResponse, options = {}) { + this.originalResponse = originalResponse; + this.blobDownloadStream = new BlobQuickQueryStream_js_1.BlobQuickQueryStream(this.originalResponse.readableStreamBody, options); + } } +exports.BlobQueryResponse = BlobQueryResponse; +//# sourceMappingURL=BlobQueryResponse.js.map -const streamDestructionSupported = 'destroy' in Stream.Readable.prototype; +/***/ }), -/** - * Check if a value is an instance of Request. - * - * @param Mixed input - * @return Boolean - */ -function isRequest(input) { - return typeof input === 'object' && typeof input[INTERNALS$2] === 'object'; -} +/***/ 12679: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -function isAbortSignal(signal) { - const proto = signal && typeof signal === 'object' && Object.getPrototypeOf(signal); - return !!(proto && proto.constructor.name === 'AbortSignal'); -} +"use strict"; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.BlobServiceClient = void 0; +const core_auth_1 = __nccwpck_require__(98834); +const core_rest_pipeline_1 = __nccwpck_require__(29146); +const core_util_1 = __nccwpck_require__(80637); +const Pipeline_js_1 = __nccwpck_require__(33781); +const ContainerClient_js_1 = __nccwpck_require__(63750); +const utils_common_js_1 = __nccwpck_require__(16673); +const StorageSharedKeyCredential_js_1 = __nccwpck_require__(59155); +const AnonymousCredential_js_1 = __nccwpck_require__(42803); +const utils_common_js_2 = __nccwpck_require__(16673); +const tracing_js_1 = __nccwpck_require__(53683); +const BlobBatchClient_js_1 = __nccwpck_require__(71861); +const StorageClient_js_1 = __nccwpck_require__(39484); +const AccountSASPermissions_js_1 = __nccwpck_require__(70793); +const AccountSASSignatureValues_js_1 = __nccwpck_require__(72763); +const AccountSASServices_js_1 = __nccwpck_require__(34606); /** - * Request class - * - * @param Mixed input Url or Request instance - * @param Object init Custom options - * @return Void - */ -class Request { - constructor(input) { - let init = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - - let parsedURL; - - // normalize input - if (!isRequest(input)) { - if (input && input.href) { - // in order to support Node.js' Url objects; though WHATWG's URL objects - // will fall into this branch also (since their `toString()` will return - // `href` property anyway) - parsedURL = parseURL(input.href); - } else { - // coerce input to a string before attempting to parse - parsedURL = parseURL(`${input}`); - } - input = {}; - } else { - parsedURL = parseURL(input.url); - } - - let method = init.method || input.method || 'GET'; - method = method.toUpperCase(); - - if ((init.body != null || isRequest(input) && input.body !== null) && (method === 'GET' || method === 'HEAD')) { - throw new TypeError('Request with GET/HEAD method cannot have body'); - } - - let inputBody = init.body != null ? init.body : isRequest(input) && input.body !== null ? clone(input) : null; - - Body.call(this, inputBody, { - timeout: init.timeout || input.timeout || 0, - size: init.size || input.size || 0 - }); - - const headers = new Headers(init.headers || input.headers || {}); - - if (inputBody != null && !headers.has('Content-Type')) { - const contentType = extractContentType(inputBody); - if (contentType) { - headers.append('Content-Type', contentType); - } - } - - let signal = isRequest(input) ? input.signal : null; - if ('signal' in init) signal = init.signal; - - if (signal != null && !isAbortSignal(signal)) { - throw new TypeError('Expected signal to be an instanceof AbortSignal'); - } - - this[INTERNALS$2] = { - method, - redirect: init.redirect || input.redirect || 'follow', - headers, - parsedURL, - signal - }; - - // node-fetch-only options - this.follow = init.follow !== undefined ? init.follow : input.follow !== undefined ? input.follow : 20; - this.compress = init.compress !== undefined ? init.compress : input.compress !== undefined ? input.compress : true; - this.counter = init.counter || input.counter || 0; - this.agent = init.agent || input.agent; - } - - get method() { - return this[INTERNALS$2].method; - } - - get url() { - return format_url(this[INTERNALS$2].parsedURL); - } - - get headers() { - return this[INTERNALS$2].headers; - } - - get redirect() { - return this[INTERNALS$2].redirect; - } - - get signal() { - return this[INTERNALS$2].signal; - } - - /** - * Clone this request - * - * @return Request - */ - clone() { - return new Request(this); - } -} - -Body.mixIn(Request.prototype); - -Object.defineProperty(Request.prototype, Symbol.toStringTag, { - value: 'Request', - writable: false, - enumerable: false, - configurable: true -}); - -Object.defineProperties(Request.prototype, { - method: { enumerable: true }, - url: { enumerable: true }, - headers: { enumerable: true }, - redirect: { enumerable: true }, - clone: { enumerable: true }, - signal: { enumerable: true } -}); - -/** - * Convert a Request to Node.js http request options. - * - * @param Request A Request instance - * @return Object The options object to be passed to http.request - */ -function getNodeRequestOptions(request) { - const parsedURL = request[INTERNALS$2].parsedURL; - const headers = new Headers(request[INTERNALS$2].headers); - - // fetch step 1.3 - if (!headers.has('Accept')) { - headers.set('Accept', '*/*'); - } - - // Basic fetch - if (!parsedURL.protocol || !parsedURL.hostname) { - throw new TypeError('Only absolute URLs are supported'); - } - - if (!/^https?:$/.test(parsedURL.protocol)) { - throw new TypeError('Only HTTP(S) protocols are supported'); - } - - if (request.signal && request.body instanceof Stream.Readable && !streamDestructionSupported) { - throw new Error('Cancellation of streamed requests with AbortSignal is not supported in node < 8'); - } - - // HTTP-network-or-cache fetch steps 2.4-2.7 - let contentLengthValue = null; - if (request.body == null && /^(POST|PUT)$/i.test(request.method)) { - contentLengthValue = '0'; - } - if (request.body != null) { - const totalBytes = getTotalBytes(request); - if (typeof totalBytes === 'number') { - contentLengthValue = String(totalBytes); - } - } - if (contentLengthValue) { - headers.set('Content-Length', contentLengthValue); - } - - // HTTP-network-or-cache fetch step 2.11 - if (!headers.has('User-Agent')) { - headers.set('User-Agent', 'node-fetch/1.0 (+https://github.com/bitinn/node-fetch)'); - } - - // HTTP-network-or-cache fetch step 2.15 - if (request.compress && !headers.has('Accept-Encoding')) { - headers.set('Accept-Encoding', 'gzip,deflate'); - } - - let agent = request.agent; - if (typeof agent === 'function') { - agent = agent(parsedURL); - } - - if (!headers.has('Connection') && !agent) { - headers.set('Connection', 'close'); - } - - // HTTP-network fetch step 4.2 - // chunked encoding is handled by Node.js - - return Object.assign({}, parsedURL, { - method: request.method, - headers: exportNodeCompatibleHeaders(headers), - agent - }); -} - -/** - * abort-error.js - * - * AbortError interface for cancelled requests - */ - -/** - * Create AbortError instance - * - * @param String message Error message for human - * @return AbortError + * A BlobServiceClient represents a Client to the Azure Storage Blob service allowing you + * to manipulate blob containers. */ -function AbortError(message) { - Error.call(this, message); - - this.type = 'aborted'; - this.message = message; - - // hide custom error implementation details from end-users - Error.captureStackTrace(this, this.constructor); -} - -AbortError.prototype = Object.create(Error.prototype); -AbortError.prototype.constructor = AbortError; -AbortError.prototype.name = 'AbortError'; - -const URL$1 = Url.URL || whatwgUrl.URL; - -// fix an issue where "PassThrough", "resolve" aren't a named export for node <10 -const PassThrough$1 = Stream.PassThrough; - -const isDomainOrSubdomain = function isDomainOrSubdomain(destination, original) { - const orig = new URL$1(original).hostname; - const dest = new URL$1(destination).hostname; - - return orig === dest || orig[orig.length - dest.length - 1] === '.' && orig.endsWith(dest); +class BlobServiceClient extends StorageClient_js_1.StorageClient { + /** + * serviceContext provided by protocol layer. + */ + serviceContext; + /** + * + * Creates an instance of BlobServiceClient from connection string. + * + * @param connectionString - Account connection string or a SAS connection string of an Azure storage account. + * [ Note - Account connection string can only be used in NODE.JS runtime. ] + * Account connection string example - + * `DefaultEndpointsProtocol=https;AccountName=myaccount;AccountKey=accountKey;EndpointSuffix=core.windows.net` + * SAS connection string example - + * `BlobEndpoint=https://myaccount.blob.core.windows.net/;QueueEndpoint=https://myaccount.queue.core.windows.net/;FileEndpoint=https://myaccount.file.core.windows.net/;TableEndpoint=https://myaccount.table.core.windows.net/;SharedAccessSignature=sasString` + * @param options - Optional. Options to configure the HTTP pipeline. + */ + static fromConnectionString(connectionString, + // Legacy, no fix for eslint error without breaking. Disable it for this interface. + /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ + options) { + options = options || {}; + const extractedCreds = (0, utils_common_js_1.extractConnectionStringParts)(connectionString); + if (extractedCreds.kind === "AccountConnString") { + if (core_util_1.isNodeLike) { + const sharedKeyCredential = new StorageSharedKeyCredential_js_1.StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey); + if (!options.proxyOptions) { + options.proxyOptions = (0, core_rest_pipeline_1.getDefaultProxySettings)(extractedCreds.proxyUri); + } + const pipeline = (0, Pipeline_js_1.newPipeline)(sharedKeyCredential, options); + return new BlobServiceClient(extractedCreds.url, pipeline); + } + else { + throw new Error("Account connection string is only supported in Node.js environment"); + } + } + else if (extractedCreds.kind === "SASConnString") { + const pipeline = (0, Pipeline_js_1.newPipeline)(new AnonymousCredential_js_1.AnonymousCredential(), options); + return new BlobServiceClient(extractedCreds.url + "?" + extractedCreds.accountSas, pipeline); + } + else { + throw new Error("Connection string must be either an Account connection string or a SAS connection string"); + } + } + constructor(url, credentialOrPipeline, + // Legacy, no fix for eslint error without breaking. Disable it for this interface. + /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ + options) { + let pipeline; + if ((0, Pipeline_js_1.isPipelineLike)(credentialOrPipeline)) { + pipeline = credentialOrPipeline; + } + else if ((core_util_1.isNodeLike && credentialOrPipeline instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential) || + credentialOrPipeline instanceof AnonymousCredential_js_1.AnonymousCredential || + (0, core_auth_1.isTokenCredential)(credentialOrPipeline)) { + pipeline = (0, Pipeline_js_1.newPipeline)(credentialOrPipeline, options); + } + else { + // The second parameter is undefined. Use anonymous credential + pipeline = (0, Pipeline_js_1.newPipeline)(new AnonymousCredential_js_1.AnonymousCredential(), options); + } + super(url, pipeline); + this.serviceContext = this.storageClientContext.service; + } + /** + * Creates a {@link ContainerClient} object + * + * @param containerName - A container name + * @returns A new ContainerClient object for the given container name. + * + * Example usage: + * + * ```ts snippet:BlobServiceClientGetContainerClient + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * const containerClient = blobServiceClient.getContainerClient(""); + * ``` + */ + getContainerClient(containerName) { + return new ContainerClient_js_1.ContainerClient((0, utils_common_js_1.appendToURLPath)(this.url, encodeURIComponent(containerName)), this.pipeline); + } + /** + * Create a Blob container. @see https://learn.microsoft.com/rest/api/storageservices/create-container + * + * @param containerName - Name of the container to create. + * @param options - Options to configure Container Create operation. + * @returns Container creation response and the corresponding container client. + */ + async createContainer(containerName, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobServiceClient-createContainer", options, async (updatedOptions) => { + const containerClient = this.getContainerClient(containerName); + const containerCreateResponse = await containerClient.create(updatedOptions); + return { + containerClient, + containerCreateResponse, + }; + }); + } + /** + * Deletes a Blob container. + * + * @param containerName - Name of the container to delete. + * @param options - Options to configure Container Delete operation. + * @returns Container deletion response. + */ + async deleteContainer(containerName, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobServiceClient-deleteContainer", options, async (updatedOptions) => { + const containerClient = this.getContainerClient(containerName); + return containerClient.delete(updatedOptions); + }); + } + /** + * Restore a previously deleted Blob container. + * This API is only functional if Container Soft Delete is enabled for the storage account associated with the container. + * + * @param deletedContainerName - Name of the previously deleted container. + * @param deletedContainerVersion - Version of the previously deleted container, used to uniquely identify the deleted container. + * @param options - Options to configure Container Restore operation. + * @returns Container deletion response. + */ + async undeleteContainer(deletedContainerName, deletedContainerVersion, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobServiceClient-undeleteContainer", options, async (updatedOptions) => { + const containerClient = this.getContainerClient(options.destinationContainerName || deletedContainerName); + // Hack to access a protected member. + const containerContext = containerClient["storageClientContext"].container; + const containerUndeleteResponse = (0, utils_common_js_2.assertResponse)(await containerContext.restore({ + deletedContainerName, + deletedContainerVersion, + tracingOptions: updatedOptions.tracingOptions, + })); + return { containerClient, containerUndeleteResponse }; + }); + } + /** + * Gets the properties of a storage account’s Blob service, including properties + * for Storage Analytics and CORS (Cross-Origin Resource Sharing) rules. + * @see https://learn.microsoft.com/rest/api/storageservices/get-blob-service-properties + * + * @param options - Options to the Service Get Properties operation. + * @returns Response data for the Service Get Properties operation. + */ + async getProperties(options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobServiceClient-getProperties", options, async (updatedOptions) => { + return (0, utils_common_js_2.assertResponse)(await this.serviceContext.getProperties({ + abortSignal: options.abortSignal, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Sets properties for a storage account’s Blob service endpoint, including properties + * for Storage Analytics, CORS (Cross-Origin Resource Sharing) rules and soft delete settings. + * @see https://learn.microsoft.com/rest/api/storageservices/set-blob-service-properties + * + * @param properties - + * @param options - Options to the Service Set Properties operation. + * @returns Response data for the Service Set Properties operation. + */ + async setProperties(properties, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobServiceClient-setProperties", options, async (updatedOptions) => { + return (0, utils_common_js_2.assertResponse)(await this.serviceContext.setProperties(properties, { + abortSignal: options.abortSignal, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Retrieves statistics related to replication for the Blob service. It is only + * available on the secondary location endpoint when read-access geo-redundant + * replication is enabled for the storage account. + * @see https://learn.microsoft.com/rest/api/storageservices/get-blob-service-stats + * + * @param options - Options to the Service Get Statistics operation. + * @returns Response data for the Service Get Statistics operation. + */ + async getStatistics(options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobServiceClient-getStatistics", options, async (updatedOptions) => { + return (0, utils_common_js_2.assertResponse)(await this.serviceContext.getStatistics({ + abortSignal: options.abortSignal, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * The Get Account Information operation returns the sku name and account kind + * for the specified account. + * The Get Account Information operation is available on service versions beginning + * with version 2018-03-28. + * @see https://learn.microsoft.com/rest/api/storageservices/get-account-information + * + * @param options - Options to the Service Get Account Info operation. + * @returns Response data for the Service Get Account Info operation. + */ + async getAccountInfo(options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobServiceClient-getAccountInfo", options, async (updatedOptions) => { + return (0, utils_common_js_2.assertResponse)(await this.serviceContext.getAccountInfo({ + abortSignal: options.abortSignal, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Returns a list of the containers under the specified account. + * @see https://learn.microsoft.com/rest/api/storageservices/list-containers2 + * + * @param marker - A string value that identifies the portion of + * the list of containers to be returned with the next listing operation. The + * operation returns the continuationToken value within the response body if the + * listing operation did not return all containers remaining to be listed + * with the current page. The continuationToken value can be used as the value for + * the marker parameter in a subsequent call to request the next page of list + * items. The marker value is opaque to the client. + * @param options - Options to the Service List Container Segment operation. + * @returns Response data for the Service List Container Segment operation. + */ + async listContainersSegment(marker, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobServiceClient-listContainersSegment", options, async (updatedOptions) => { + return (0, utils_common_js_2.assertResponse)(await this.serviceContext.listContainersSegment({ + abortSignal: options.abortSignal, + marker, + ...options, + include: typeof options.include === "string" ? [options.include] : options.include, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * The Filter Blobs operation enables callers to list blobs across all containers whose tags + * match a given search expression. Filter blobs searches across all containers within a + * storage account but can be scoped within the expression to a single container. + * + * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. + * The given expression must evaluate to true for a blob to be returned in the results. + * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; + * however, only a subset of the OData filter syntax is supported in the Blob service. + * @param marker - A string value that identifies the portion of + * the list of blobs to be returned with the next listing operation. The + * operation returns the continuationToken value within the response body if the + * listing operation did not return all blobs remaining to be listed + * with the current page. The continuationToken value can be used as the value for + * the marker parameter in a subsequent call to request the next page of list + * items. The marker value is opaque to the client. + * @param options - Options to find blobs by tags. + */ + async findBlobsByTagsSegment(tagFilterSqlExpression, marker, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobServiceClient-findBlobsByTagsSegment", options, async (updatedOptions) => { + const response = (0, utils_common_js_2.assertResponse)(await this.serviceContext.filterBlobs({ + abortSignal: options.abortSignal, + where: tagFilterSqlExpression, + marker, + maxPageSize: options.maxPageSize, + tracingOptions: updatedOptions.tracingOptions, + })); + const wrappedResponse = { + ...response, + _response: response._response, // _response is made non-enumerable + blobs: response.blobs.map((blob) => { + let tagValue = ""; + if (blob.tags?.blobTagSet.length === 1) { + tagValue = blob.tags.blobTagSet[0].value; + } + return { ...blob, tags: (0, utils_common_js_1.toTags)(blob.tags), tagValue }; + }), + }; + return wrappedResponse; + }); + } + /** + * Returns an AsyncIterableIterator for ServiceFindBlobsByTagsSegmentResponse. + * + * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. + * The given expression must evaluate to true for a blob to be returned in the results. + * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; + * however, only a subset of the OData filter syntax is supported in the Blob service. + * @param marker - A string value that identifies the portion of + * the list of blobs to be returned with the next listing operation. The + * operation returns the continuationToken value within the response body if the + * listing operation did not return all blobs remaining to be listed + * with the current page. The continuationToken value can be used as the value for + * the marker parameter in a subsequent call to request the next page of list + * items. The marker value is opaque to the client. + * @param options - Options to find blobs by tags. + */ + async *findBlobsByTagsSegments(tagFilterSqlExpression, marker, options = {}) { + let response; + if (!!marker || marker === undefined) { + do { + response = await this.findBlobsByTagsSegment(tagFilterSqlExpression, marker, options); + response.blobs = response.blobs || []; + marker = response.continuationToken; + yield response; + } while (marker); + } + } + /** + * Returns an AsyncIterableIterator for blobs. + * + * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. + * The given expression must evaluate to true for a blob to be returned in the results. + * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; + * however, only a subset of the OData filter syntax is supported in the Blob service. + * @param options - Options to findBlobsByTagsItems. + */ + async *findBlobsByTagsItems(tagFilterSqlExpression, options = {}) { + let marker; + for await (const segment of this.findBlobsByTagsSegments(tagFilterSqlExpression, marker, options)) { + yield* segment.blobs; + } + } + /** + * Returns an async iterable iterator to find all blobs with specified tag + * under the specified account. + * + * .byPage() returns an async iterable iterator to list the blobs in pages. + * + * @see https://learn.microsoft.com/rest/api/storageservices/get-blob-service-properties + * + * ```ts snippet:BlobServiceClientFindBlobsByTags + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * // Use for await to iterate the blobs + * let i = 1; + * for await (const blob of blobServiceClient.findBlobsByTags("tagkey='tagvalue'")) { + * console.log(`Blob ${i++}: ${blob.name}`); + * } + * + * // Use iter.next() to iterate the blobs + * i = 1; + * const iter = blobServiceClient.findBlobsByTags("tagkey='tagvalue'"); + * let { value, done } = await iter.next(); + * while (!done) { + * console.log(`Blob ${i++}: ${value.name}`); + * ({ value, done } = await iter.next()); + * } + * + * // Use byPage() to iterate the blobs + * i = 1; + * for await (const page of blobServiceClient + * .findBlobsByTags("tagkey='tagvalue'") + * .byPage({ maxPageSize: 20 })) { + * for (const blob of page.blobs) { + * console.log(`Blob ${i++}: ${blob.name}`); + * } + * } + * + * // Use paging with a marker + * i = 1; + * let iterator = blobServiceClient.findBlobsByTags("tagkey='tagvalue'").byPage({ maxPageSize: 2 }); + * let response = (await iterator.next()).value; + * // Prints 2 blob names + * if (response.blobs) { + * for (const blob of response.blobs) { + * console.log(`Blob ${i++}: ${blob.name}`); + * } + * } + * // Gets next marker + * let marker = response.continuationToken; + * // Passing next marker as continuationToken + * iterator = blobServiceClient + * .findBlobsByTags("tagkey='tagvalue'") + * .byPage({ continuationToken: marker, maxPageSize: 10 }); + * response = (await iterator.next()).value; + * + * // Prints blob names + * if (response.blobs) { + * for (const blob of response.blobs) { + * console.log(`Blob ${i++}: ${blob.name}`); + * } + * } + * ``` + * + * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. + * The given expression must evaluate to true for a blob to be returned in the results. + * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; + * however, only a subset of the OData filter syntax is supported in the Blob service. + * @param options - Options to find blobs by tags. + */ + findBlobsByTags(tagFilterSqlExpression, options = {}) { + // AsyncIterableIterator to iterate over blobs + const listSegmentOptions = { + ...options, + }; + const iter = this.findBlobsByTagsItems(tagFilterSqlExpression, listSegmentOptions); + return { + /** + * The next method, part of the iteration protocol + */ + next() { + return iter.next(); + }, + /** + * The connection to the async iterator, part of the iteration protocol + */ + [Symbol.asyncIterator]() { + return this; + }, + /** + * Return an AsyncIterableIterator that works a page at a time + */ + byPage: (settings = {}) => { + return this.findBlobsByTagsSegments(tagFilterSqlExpression, settings.continuationToken, { + maxPageSize: settings.maxPageSize, + ...listSegmentOptions, + }); + }, + }; + } + /** + * Returns an AsyncIterableIterator for ServiceListContainersSegmentResponses + * + * @param marker - A string value that identifies the portion of + * the list of containers to be returned with the next listing operation. The + * operation returns the continuationToken value within the response body if the + * listing operation did not return all containers remaining to be listed + * with the current page. The continuationToken value can be used as the value for + * the marker parameter in a subsequent call to request the next page of list + * items. The marker value is opaque to the client. + * @param options - Options to list containers operation. + */ + async *listSegments(marker, options = {}) { + let listContainersSegmentResponse; + if (!!marker || marker === undefined) { + do { + listContainersSegmentResponse = await this.listContainersSegment(marker, options); + listContainersSegmentResponse.containerItems = + listContainersSegmentResponse.containerItems || []; + marker = listContainersSegmentResponse.continuationToken; + yield await listContainersSegmentResponse; + } while (marker); + } + } + /** + * Returns an AsyncIterableIterator for Container Items + * + * @param options - Options to list containers operation. + */ + async *listItems(options = {}) { + let marker; + for await (const segment of this.listSegments(marker, options)) { + yield* segment.containerItems; + } + } + /** + * Returns an async iterable iterator to list all the containers + * under the specified account. + * + * .byPage() returns an async iterable iterator to list the containers in pages. + * + * ```ts snippet:BlobServiceClientListContainers + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * // Use for await to iterate the containers + * let i = 1; + * for await (const container of blobServiceClient.listContainers()) { + * console.log(`Container ${i++}: ${container.name}`); + * } + * + * // Use iter.next() to iterate the containers + * i = 1; + * const iter = blobServiceClient.listContainers(); + * let { value, done } = await iter.next(); + * while (!done) { + * console.log(`Container ${i++}: ${value.name}`); + * ({ value, done } = await iter.next()); + * } + * + * // Use byPage() to iterate the containers + * i = 1; + * for await (const page of blobServiceClient.listContainers().byPage({ maxPageSize: 20 })) { + * for (const container of page.containerItems) { + * console.log(`Container ${i++}: ${container.name}`); + * } + * } + * + * // Use paging with a marker + * i = 1; + * let iterator = blobServiceClient.listContainers().byPage({ maxPageSize: 2 }); + * let response = (await iterator.next()).value; + * + * // Prints 2 container names + * if (response.containerItems) { + * for (const container of response.containerItems) { + * console.log(`Container ${i++}: ${container.name}`); + * } + * } + * + * // Gets next marker + * let marker = response.continuationToken; + * // Passing next marker as continuationToken + * iterator = blobServiceClient + * .listContainers() + * .byPage({ continuationToken: marker, maxPageSize: 10 }); + * response = (await iterator.next()).value; + * + * // Prints 10 container names + * if (response.containerItems) { + * for (const container of response.containerItems) { + * console.log(`Container ${i++}: ${container.name}`); + * } + * } + * ``` + * + * @param options - Options to list containers. + * @returns An asyncIterableIterator that supports paging. + */ + listContainers(options = {}) { + if (options.prefix === "") { + options.prefix = undefined; + } + const include = []; + if (options.includeDeleted) { + include.push("deleted"); + } + if (options.includeMetadata) { + include.push("metadata"); + } + if (options.includeSystem) { + include.push("system"); + } + // AsyncIterableIterator to iterate over containers + const listSegmentOptions = { + ...options, + ...(include.length > 0 ? { include } : {}), + }; + const iter = this.listItems(listSegmentOptions); + return { + /** + * The next method, part of the iteration protocol + */ + next() { + return iter.next(); + }, + /** + * The connection to the async iterator, part of the iteration protocol + */ + [Symbol.asyncIterator]() { + return this; + }, + /** + * Return an AsyncIterableIterator that works a page at a time + */ + byPage: (settings = {}) => { + return this.listSegments(settings.continuationToken, { + maxPageSize: settings.maxPageSize, + ...listSegmentOptions, + }); + }, + }; + } + /** + * ONLY AVAILABLE WHEN USING BEARER TOKEN AUTHENTICATION (TokenCredential). + * + * Retrieves a user delegation key for the Blob service. This is only a valid operation when using + * bearer token authentication. + * + * @see https://learn.microsoft.com/rest/api/storageservices/get-user-delegation-key + * + * @param startsOn - The start time for the user delegation SAS. Must be within 7 days of the current time + * @param expiresOn - The end time for the user delegation SAS. Must be within 7 days of the current time + */ + async getUserDelegationKey(startsOn, expiresOn, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobServiceClient-getUserDelegationKey", options, async (updatedOptions) => { + const response = (0, utils_common_js_2.assertResponse)(await this.serviceContext.getUserDelegationKey({ + startsOn: (0, utils_common_js_2.truncatedISO8061Date)(startsOn, false), + expiresOn: (0, utils_common_js_2.truncatedISO8061Date)(expiresOn, false), + }, { + abortSignal: options.abortSignal, + tracingOptions: updatedOptions.tracingOptions, + })); + const userDelegationKey = { + signedObjectId: response.signedObjectId, + signedTenantId: response.signedTenantId, + signedStartsOn: new Date(response.signedStartsOn), + signedExpiresOn: new Date(response.signedExpiresOn), + signedService: response.signedService, + signedVersion: response.signedVersion, + value: response.value, + }; + const res = { + _response: response._response, + requestId: response.requestId, + clientRequestId: response.clientRequestId, + version: response.version, + date: response.date, + errorCode: response.errorCode, + ...userDelegationKey, + }; + return res; + }); + } + /** + * Creates a BlobBatchClient object to conduct batch operations. + * + * @see https://learn.microsoft.com/rest/api/storageservices/blob-batch + * + * @returns A new BlobBatchClient object for this service. + */ + getBlobBatchClient() { + return new BlobBatchClient_js_1.BlobBatchClient(this.url, this.pipeline); + } + /** + * Only available for BlobServiceClient constructed with a shared key credential. + * + * Generates a Blob account Shared Access Signature (SAS) URI based on the client properties + * and parameters passed in. The SAS is signed by the shared key credential of the client. + * + * @see https://learn.microsoft.com/rest/api/storageservices/create-account-sas + * + * @param expiresOn - Optional. The time at which the shared access signature becomes invalid. Default to an hour later if not provided. + * @param permissions - Specifies the list of permissions to be associated with the SAS. + * @param resourceTypes - Specifies the resource types associated with the shared access signature. + * @param options - Optional parameters. + * @returns An account SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token. + */ + generateAccountSasUrl(expiresOn, permissions = AccountSASPermissions_js_1.AccountSASPermissions.parse("r"), resourceTypes = "sco", options = {}) { + if (!(this.credential instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential)) { + throw RangeError("Can only generate the account SAS when the client is initialized with a shared key credential"); + } + if (expiresOn === undefined) { + const now = new Date(); + expiresOn = new Date(now.getTime() + 3600 * 1000); + } + const sas = (0, AccountSASSignatureValues_js_1.generateAccountSASQueryParameters)({ + permissions, + expiresOn, + resourceTypes, + services: AccountSASServices_js_1.AccountSASServices.parse("b").toString(), + ...options, + }, this.credential).toString(); + return (0, utils_common_js_1.appendToURLQuery)(this.url, sas); + } + /** + * Only available for BlobServiceClient constructed with a shared key credential. + * + * Generates string to sign for a Blob account Shared Access Signature (SAS) URI based on + * the client properties and parameters passed in. The SAS is signed by the shared key credential of the client. + * + * @see https://learn.microsoft.com/rest/api/storageservices/create-account-sas + * + * @param expiresOn - Optional. The time at which the shared access signature becomes invalid. Default to an hour later if not provided. + * @param permissions - Specifies the list of permissions to be associated with the SAS. + * @param resourceTypes - Specifies the resource types associated with the shared access signature. + * @param options - Optional parameters. + * @returns An account SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token. + */ + generateSasStringToSign(expiresOn, permissions = AccountSASPermissions_js_1.AccountSASPermissions.parse("r"), resourceTypes = "sco", options = {}) { + if (!(this.credential instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential)) { + throw RangeError("Can only generate the account SAS when the client is initialized with a shared key credential"); + } + if (expiresOn === undefined) { + const now = new Date(); + expiresOn = new Date(now.getTime() + 3600 * 1000); + } + return (0, AccountSASSignatureValues_js_1.generateAccountSASQueryParametersInternal)({ + permissions, + expiresOn, + resourceTypes, + services: AccountSASServices_js_1.AccountSASServices.parse("b").toString(), + ...options, + }, this.credential).stringToSign; + } +} +exports.BlobServiceClient = BlobServiceClient; +//# sourceMappingURL=BlobServiceClient.js.map + +/***/ }), + +/***/ 54437: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.PageBlobClient = exports.BlockBlobClient = exports.AppendBlobClient = exports.BlobClient = void 0; +const core_rest_pipeline_1 = __nccwpck_require__(29146); +const core_auth_1 = __nccwpck_require__(98834); +const core_util_1 = __nccwpck_require__(80637); +const core_util_2 = __nccwpck_require__(80637); +const BlobDownloadResponse_js_1 = __nccwpck_require__(88710); +const BlobQueryResponse_js_1 = __nccwpck_require__(83751); +const AnonymousCredential_js_1 = __nccwpck_require__(42803); +const StorageSharedKeyCredential_js_1 = __nccwpck_require__(59155); +const models_js_1 = __nccwpck_require__(64526); +const PageBlobRangeResponse_js_1 = __nccwpck_require__(12526); +const Pipeline_js_1 = __nccwpck_require__(33781); +const BlobStartCopyFromUrlPoller_js_1 = __nccwpck_require__(9846); +const Range_js_1 = __nccwpck_require__(84573); +const StorageClient_js_1 = __nccwpck_require__(39484); +const Batch_js_1 = __nccwpck_require__(93996); +const storage_common_1 = __nccwpck_require__(83667); +const constants_js_1 = __nccwpck_require__(81865); +const tracing_js_1 = __nccwpck_require__(53683); +const utils_common_js_1 = __nccwpck_require__(16673); +const utils_js_1 = __nccwpck_require__(85157); +const BlobSASSignatureValues_js_1 = __nccwpck_require__(48921); +const BlobLeaseClient_js_1 = __nccwpck_require__(20106); +/** + * A BlobClient represents a URL to an Azure Storage blob; the blob may be a block blob, + * append blob, or page blob. + */ +class BlobClient extends StorageClient_js_1.StorageClient { + /** + * blobContext provided by protocol layer. + */ + blobContext; + _name; + _containerName; + _versionId; + _snapshot; + /** + * The name of the blob. + */ + get name() { + return this._name; + } + /** + * The name of the storage container the blob is associated with. + */ + get containerName() { + return this._containerName; + } + constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, + // Legacy, no fix for eslint error without breaking. Disable it for this interface. + /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ + options) { + options = options || {}; + let pipeline; + let url; + if ((0, Pipeline_js_1.isPipelineLike)(credentialOrPipelineOrContainerName)) { + // (url: string, pipeline: Pipeline) + url = urlOrConnectionString; + pipeline = credentialOrPipelineOrContainerName; + } + else if ((core_util_1.isNodeLike && credentialOrPipelineOrContainerName instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential) || + credentialOrPipelineOrContainerName instanceof AnonymousCredential_js_1.AnonymousCredential || + (0, core_auth_1.isTokenCredential)(credentialOrPipelineOrContainerName)) { + // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) + url = urlOrConnectionString; + options = blobNameOrOptions; + pipeline = (0, Pipeline_js_1.newPipeline)(credentialOrPipelineOrContainerName, options); + } + else if (!credentialOrPipelineOrContainerName && + typeof credentialOrPipelineOrContainerName !== "string") { + // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) + // The second parameter is undefined. Use anonymous credential. + url = urlOrConnectionString; + if (blobNameOrOptions && typeof blobNameOrOptions !== "string") { + options = blobNameOrOptions; + } + pipeline = (0, Pipeline_js_1.newPipeline)(new AnonymousCredential_js_1.AnonymousCredential(), options); + } + else if (credentialOrPipelineOrContainerName && + typeof credentialOrPipelineOrContainerName === "string" && + blobNameOrOptions && + typeof blobNameOrOptions === "string") { + // (connectionString: string, containerName: string, blobName: string, options?: StoragePipelineOptions) + const containerName = credentialOrPipelineOrContainerName; + const blobName = blobNameOrOptions; + const extractedCreds = (0, utils_common_js_1.extractConnectionStringParts)(urlOrConnectionString); + if (extractedCreds.kind === "AccountConnString") { + if (core_util_1.isNodeLike) { + const sharedKeyCredential = new StorageSharedKeyCredential_js_1.StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey); + url = (0, utils_common_js_1.appendToURLPath)((0, utils_common_js_1.appendToURLPath)(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)); + if (!options.proxyOptions) { + options.proxyOptions = (0, core_rest_pipeline_1.getDefaultProxySettings)(extractedCreds.proxyUri); + } + pipeline = (0, Pipeline_js_1.newPipeline)(sharedKeyCredential, options); + } + else { + throw new Error("Account connection string is only supported in Node.js environment"); + } + } + else if (extractedCreds.kind === "SASConnString") { + url = + (0, utils_common_js_1.appendToURLPath)((0, utils_common_js_1.appendToURLPath)(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)) + + "?" + + extractedCreds.accountSas; + pipeline = (0, Pipeline_js_1.newPipeline)(new AnonymousCredential_js_1.AnonymousCredential(), options); + } + else { + throw new Error("Connection string must be either an Account connection string or a SAS connection string"); + } + } + else { + throw new Error("Expecting non-empty strings for containerName and blobName parameters"); + } + super(url, pipeline); + ({ blobName: this._name, containerName: this._containerName } = + this.getBlobAndContainerNamesFromUrl()); + this.blobContext = this.storageClientContext.blob; + this._snapshot = (0, utils_common_js_1.getURLParameter)(this.url, constants_js_1.URLConstants.Parameters.SNAPSHOT); + this._versionId = (0, utils_common_js_1.getURLParameter)(this.url, constants_js_1.URLConstants.Parameters.VERSIONID); + } + /** + * Creates a new BlobClient object identical to the source but with the specified snapshot timestamp. + * Provide "" will remove the snapshot and return a Client to the base blob. + * + * @param snapshot - The snapshot timestamp. + * @returns A new BlobClient object identical to the source but with the specified snapshot timestamp + */ + withSnapshot(snapshot) { + return new BlobClient((0, utils_common_js_1.setURLParameter)(this.url, constants_js_1.URLConstants.Parameters.SNAPSHOT, snapshot.length === 0 ? undefined : snapshot), this.pipeline); + } + /** + * Creates a new BlobClient object pointing to a version of this blob. + * Provide "" will remove the versionId and return a Client to the base blob. + * + * @param versionId - The versionId. + * @returns A new BlobClient object pointing to the version of this blob. + */ + withVersion(versionId) { + return new BlobClient((0, utils_common_js_1.setURLParameter)(this.url, constants_js_1.URLConstants.Parameters.VERSIONID, versionId.length === 0 ? undefined : versionId), this.pipeline); + } + /** + * Creates a AppendBlobClient object. + * + */ + getAppendBlobClient() { + return new AppendBlobClient(this.url, this.pipeline); + } + /** + * Creates a BlockBlobClient object. + * + */ + getBlockBlobClient() { + return new BlockBlobClient(this.url, this.pipeline); + } + /** + * Creates a PageBlobClient object. + * + */ + getPageBlobClient() { + return new PageBlobClient(this.url, this.pipeline); + } + /** + * Reads or downloads a blob from the system, including its metadata and properties. + * You can also call Get Blob to read a snapshot. + * + * * In Node.js, data returns in a Readable stream readableStreamBody + * * In browsers, data returns in a promise blobBody + * + * @see https://learn.microsoft.com/rest/api/storageservices/get-blob + * + * @param offset - From which position of the blob to download, greater than or equal to 0 + * @param count - How much data to be downloaded, greater than 0. Will download to the end when undefined + * @param options - Optional options to Blob Download operation. + * + * + * Example usage (Node.js): + * + * ```ts snippet:ReadmeSampleDownloadBlob_Node + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * const containerName = ""; + * const blobName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * const blobClient = containerClient.getBlobClient(blobName); + * + * // Get blob content from position 0 to the end + * // In Node.js, get downloaded data by accessing downloadBlockBlobResponse.readableStreamBody + * const downloadBlockBlobResponse = await blobClient.download(); + * if (downloadBlockBlobResponse.readableStreamBody) { + * const downloaded = await streamToString(downloadBlockBlobResponse.readableStreamBody); + * console.log(`Downloaded blob content: ${downloaded}`); + * } + * + * async function streamToString(stream: NodeJS.ReadableStream): Promise { + * const result = await new Promise>((resolve, reject) => { + * const chunks: Buffer[] = []; + * stream.on("data", (data) => { + * chunks.push(Buffer.isBuffer(data) ? data : Buffer.from(data)); + * }); + * stream.on("end", () => { + * resolve(Buffer.concat(chunks)); + * }); + * stream.on("error", reject); + * }); + * return result.toString(); + * } + * ``` + * + * Example usage (browser): + * + * ```ts snippet:ReadmeSampleDownloadBlob_Browser + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * const containerName = ""; + * const blobName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * const blobClient = containerClient.getBlobClient(blobName); + * + * // Get blob content from position 0 to the end + * // In browsers, get downloaded data by accessing downloadBlockBlobResponse.blobBody + * const downloadBlockBlobResponse = await blobClient.download(); + * const blobBody = await downloadBlockBlobResponse.blobBody; + * if (blobBody) { + * const downloaded = await blobBody.text(); + * console.log(`Downloaded blob content: ${downloaded}`); + * } + * ``` + */ + async download(offset = 0, count, options = {}) { + options.conditions = options.conditions || {}; + options.conditions = options.conditions || {}; + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("BlobClient-download", options, async (updatedOptions) => { + const res = (0, utils_common_js_1.assertResponse)(await this.blobContext.download({ + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + requestOptions: { + onDownloadProgress: core_util_1.isNodeLike ? undefined : options.onProgress, // for Node.js, progress is reported by RetriableReadableStream + }, + range: offset === 0 && !count ? undefined : (0, Range_js_1.rangeToString)({ offset, count }), + rangeGetContentMD5: options.rangeGetContentMD5, + rangeGetContentCRC64: options.rangeGetContentCrc64, + snapshot: options.snapshot, + cpkInfo: options.customerProvidedKey, + tracingOptions: updatedOptions.tracingOptions, + })); + const wrappedRes = { + ...res, + _response: res._response, // _response is made non-enumerable + objectReplicationDestinationPolicyId: res.objectReplicationPolicyId, + objectReplicationSourceProperties: (0, utils_common_js_1.parseObjectReplicationRecord)(res.objectReplicationRules), + }; + // Return browser response immediately + if (!core_util_1.isNodeLike) { + return wrappedRes; + } + // We support retrying when download stream unexpected ends in Node.js runtime + // Following code shouldn't be bundled into browser build, however some + // bundlers may try to bundle following code and "FileReadResponse.ts". + // In this case, "FileDownloadResponse.browser.ts" will be used as a shim of "FileDownloadResponse.ts" + // The config is in package.json "browser" field + if (options.maxRetryRequests === undefined || options.maxRetryRequests < 0) { + // TODO: Default value or make it a required parameter? + options.maxRetryRequests = constants_js_1.DEFAULT_MAX_DOWNLOAD_RETRY_REQUESTS; + } + if (res.contentLength === undefined) { + throw new RangeError(`File download response doesn't contain valid content length header`); + } + if (!res.etag) { + throw new RangeError(`File download response doesn't contain valid etag header`); + } + return new BlobDownloadResponse_js_1.BlobDownloadResponse(wrappedRes, async (start) => { + const updatedDownloadOptions = { + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ifMatch: options.conditions.ifMatch || res.etag, + ifModifiedSince: options.conditions.ifModifiedSince, + ifNoneMatch: options.conditions.ifNoneMatch, + ifUnmodifiedSince: options.conditions.ifUnmodifiedSince, + ifTags: options.conditions?.tagConditions, + }, + range: (0, Range_js_1.rangeToString)({ + count: offset + res.contentLength - start, + offset: start, + }), + rangeGetContentMD5: options.rangeGetContentMD5, + rangeGetContentCRC64: options.rangeGetContentCrc64, + snapshot: options.snapshot, + cpkInfo: options.customerProvidedKey, + }; + // Debug purpose only + // console.log( + // `Read from internal stream, range: ${ + // updatedOptions.range + // }, options: ${JSON.stringify(updatedOptions)}` + // ); + return (await this.blobContext.download({ + abortSignal: options.abortSignal, + ...updatedDownloadOptions, + })).readableStreamBody; + }, offset, res.contentLength, { + maxRetryRequests: options.maxRetryRequests, + onProgress: options.onProgress, + }); + }); + } + /** + * Returns true if the Azure blob resource represented by this client exists; false otherwise. + * + * NOTE: use this function with care since an existing blob might be deleted by other clients or + * applications. Vice versa new blobs might be added by other clients or applications after this + * function completes. + * + * @param options - options to Exists operation. + */ + async exists(options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobClient-exists", options, async (updatedOptions) => { + try { + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + await this.getProperties({ + abortSignal: options.abortSignal, + customerProvidedKey: options.customerProvidedKey, + conditions: options.conditions, + tracingOptions: updatedOptions.tracingOptions, + }); + return true; + } + catch (e) { + if (e.statusCode === 404) { + // Expected exception when checking blob existence + return false; + } + else if (e.statusCode === 409 && + (e.details.errorCode === constants_js_1.BlobUsesCustomerSpecifiedEncryptionMsg || + e.details.errorCode === constants_js_1.BlobDoesNotUseCustomerSpecifiedEncryption)) { + // Expected exception when checking blob existence + return true; + } + throw e; + } + }); + } + /** + * Returns all user-defined metadata, standard HTTP properties, and system properties + * for the blob. It does not return the content of the blob. + * @see https://learn.microsoft.com/rest/api/storageservices/get-blob-properties + * + * WARNING: The `metadata` object returned in the response will have its keys in lowercase, even if + * they originally contained uppercase characters. This differs from the metadata keys returned by + * the methods of {@link ContainerClient} that list blobs using the `includeMetadata` option, which + * will retain their original casing. + * + * @param options - Optional options to Get Properties operation. + */ + async getProperties(options = {}) { + options.conditions = options.conditions || {}; + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("BlobClient-getProperties", options, async (updatedOptions) => { + const res = (0, utils_common_js_1.assertResponse)(await this.blobContext.getProperties({ + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + cpkInfo: options.customerProvidedKey, + tracingOptions: updatedOptions.tracingOptions, + })); + return { + ...res, + _response: res._response, // _response is made non-enumerable + objectReplicationDestinationPolicyId: res.objectReplicationPolicyId, + objectReplicationSourceProperties: (0, utils_common_js_1.parseObjectReplicationRecord)(res.objectReplicationRules), + }; + }); + } + /** + * Marks the specified blob or snapshot for deletion. The blob is later deleted + * during garbage collection. Note that in order to delete a blob, you must delete + * all of its snapshots. You can delete both at the same time with the Delete + * Blob operation. + * @see https://learn.microsoft.com/rest/api/storageservices/delete-blob + * + * @param options - Optional options to Blob Delete operation. + */ + async delete(options = {}) { + options.conditions = options.conditions || {}; + return tracing_js_1.tracingClient.withSpan("BlobClient-delete", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blobContext.delete({ + abortSignal: options.abortSignal, + deleteSnapshots: options.deleteSnapshots, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Marks the specified blob or snapshot for deletion if it exists. The blob is later deleted + * during garbage collection. Note that in order to delete a blob, you must delete + * all of its snapshots. You can delete both at the same time with the Delete + * Blob operation. + * @see https://learn.microsoft.com/rest/api/storageservices/delete-blob + * + * @param options - Optional options to Blob Delete operation. + */ + async deleteIfExists(options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobClient-deleteIfExists", options, async (updatedOptions) => { + try { + const res = (0, utils_common_js_1.assertResponse)(await this.delete(updatedOptions)); + return { + succeeded: true, + ...res, + _response: res._response, // _response is made non-enumerable + }; + } + catch (e) { + if (e.details?.errorCode === "BlobNotFound") { + return { + succeeded: false, + ...e.response?.parsedHeaders, + _response: e.response, + }; + } + throw e; + } + }); + } + /** + * Restores the contents and metadata of soft deleted blob and any associated + * soft deleted snapshots. Undelete Blob is supported only on version 2017-07-29 + * or later. + * @see https://learn.microsoft.com/rest/api/storageservices/undelete-blob + * + * @param options - Optional options to Blob Undelete operation. + */ + async undelete(options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobClient-undelete", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blobContext.undelete({ + abortSignal: options.abortSignal, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Sets system properties on the blob. + * + * If no value provided, or no value provided for the specified blob HTTP headers, + * these blob HTTP headers without a value will be cleared. + * @see https://learn.microsoft.com/rest/api/storageservices/set-blob-properties + * + * @param blobHTTPHeaders - If no value provided, or no value provided for + * the specified blob HTTP headers, these blob HTTP + * headers without a value will be cleared. + * A common header to set is `blobContentType` + * enabling the browser to provide functionality + * based on file type. + * @param options - Optional options to Blob Set HTTP Headers operation. + */ + async setHTTPHeaders(blobHTTPHeaders, options = {}) { + options.conditions = options.conditions || {}; + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("BlobClient-setHTTPHeaders", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blobContext.setHttpHeaders({ + abortSignal: options.abortSignal, + blobHttpHeaders: blobHTTPHeaders, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + // cpkInfo: options.customerProvidedKey, // CPK is not included in Swagger, should change this back when this issue is fixed in Swagger. + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Sets user-defined metadata for the specified blob as one or more name-value pairs. + * + * If no option provided, or no metadata defined in the parameter, the blob + * metadata will be removed. + * @see https://learn.microsoft.com/rest/api/storageservices/set-blob-metadata + * + * @param metadata - Replace existing metadata with this value. + * If no value provided the existing metadata will be removed. + * @param options - Optional options to Set Metadata operation. + */ + async setMetadata(metadata, options = {}) { + options.conditions = options.conditions || {}; + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("BlobClient-setMetadata", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blobContext.setMetadata({ + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + metadata, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + cpkInfo: options.customerProvidedKey, + encryptionScope: options.encryptionScope, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Sets tags on the underlying blob. + * A blob can have up to 10 tags. Tag keys must be between 1 and 128 characters. Tag values must be between 0 and 256 characters. + * Valid tag key and value characters include lower and upper case letters, digits (0-9), + * space (' '), plus ('+'), minus ('-'), period ('.'), foward slash ('/'), colon (':'), equals ('='), and underscore ('_'). + * + * @param tags - + * @param options - + */ + async setTags(tags, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobClient-setTags", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blobContext.setTags({ + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + tracingOptions: updatedOptions.tracingOptions, + tags: (0, utils_common_js_1.toBlobTags)(tags), + })); + }); + } + /** + * Gets the tags associated with the underlying blob. + * + * @param options - + */ + async getTags(options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobClient-getTags", options, async (updatedOptions) => { + const response = (0, utils_common_js_1.assertResponse)(await this.blobContext.getTags({ + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + tracingOptions: updatedOptions.tracingOptions, + })); + const wrappedResponse = { + ...response, + _response: response._response, // _response is made non-enumerable + tags: (0, utils_common_js_1.toTags)({ blobTagSet: response.blobTagSet }) || {}, + }; + return wrappedResponse; + }); + } + /** + * Get a {@link BlobLeaseClient} that manages leases on the blob. + * + * @param proposeLeaseId - Initial proposed lease Id. + * @returns A new BlobLeaseClient object for managing leases on the blob. + */ + getBlobLeaseClient(proposeLeaseId) { + return new BlobLeaseClient_js_1.BlobLeaseClient(this, proposeLeaseId); + } + /** + * Creates a read-only snapshot of a blob. + * @see https://learn.microsoft.com/rest/api/storageservices/snapshot-blob + * + * @param options - Optional options to the Blob Create Snapshot operation. + */ + async createSnapshot(options = {}) { + options.conditions = options.conditions || {}; + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("BlobClient-createSnapshot", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blobContext.createSnapshot({ + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + metadata: options.metadata, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + cpkInfo: options.customerProvidedKey, + encryptionScope: options.encryptionScope, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Asynchronously copies a blob to a destination within the storage account. + * This method returns a long running operation poller that allows you to wait + * indefinitely until the copy is completed. + * You can also cancel a copy before it is completed by calling `cancelOperation` on the poller. + * Note that the onProgress callback will not be invoked if the operation completes in the first + * request, and attempting to cancel a completed copy will result in an error being thrown. + * + * In version 2012-02-12 and later, the source for a Copy Blob operation can be + * a committed blob in any Azure storage account. + * Beginning with version 2015-02-21, the source for a Copy Blob operation can be + * an Azure file in any Azure storage account. + * Only storage accounts created on or after June 7th, 2012 allow the Copy Blob + * operation to copy from another storage account. + * @see https://learn.microsoft.com/rest/api/storageservices/copy-blob + * + * ```ts snippet:ClientsBeginCopyFromURL + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * const containerName = ""; + * const blobName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * const blobClient = containerClient.getBlobClient(blobName); + * + * // Example using automatic polling + * const automaticCopyPoller = await blobClient.beginCopyFromURL("url"); + * const automaticResult = await automaticCopyPoller.pollUntilDone(); + * + * // Example using manual polling + * const manualCopyPoller = await blobClient.beginCopyFromURL("url"); + * while (!manualCopyPoller.isDone()) { + * await manualCopyPoller.poll(); + * } + * const manualResult = manualCopyPoller.getResult(); + * + * // Example using progress updates + * const progressUpdatesCopyPoller = await blobClient.beginCopyFromURL("url", { + * onProgress(state) { + * console.log(`Progress: ${state.copyProgress}`); + * }, + * }); + * const progressUpdatesResult = await progressUpdatesCopyPoller.pollUntilDone(); + * + * // Example using a changing polling interval (default 15 seconds) + * const pollingIntervalCopyPoller = await blobClient.beginCopyFromURL("url", { + * intervalInMs: 1000, // poll blob every 1 second for copy progress + * }); + * const pollingIntervalResult = await pollingIntervalCopyPoller.pollUntilDone(); + * + * // Example using copy cancellation: + * const cancelCopyPoller = await blobClient.beginCopyFromURL("url"); + * // cancel operation after starting it. + * try { + * await cancelCopyPoller.cancelOperation(); + * // calls to get the result now throw PollerCancelledError + * cancelCopyPoller.getResult(); + * } catch (err: any) { + * if (err.name === "PollerCancelledError") { + * console.log("The copy was cancelled."); + * } + * } + * ``` + * + * @param copySource - url to the source Azure Blob/File. + * @param options - Optional options to the Blob Start Copy From URL operation. + */ + async beginCopyFromURL(copySource, options = {}) { + const client = { + abortCopyFromURL: (...args) => this.abortCopyFromURL(...args), + getProperties: (...args) => this.getProperties(...args), + startCopyFromURL: (...args) => this.startCopyFromURL(...args), + }; + const poller = new BlobStartCopyFromUrlPoller_js_1.BlobBeginCopyFromUrlPoller({ + blobClient: client, + copySource, + intervalInMs: options.intervalInMs, + onProgress: options.onProgress, + resumeFrom: options.resumeFrom, + startCopyFromURLOptions: options, + }); + // Trigger the startCopyFromURL call by calling poll. + // Any errors from this method should be surfaced to the user. + await poller.poll(); + return poller; + } + /** + * Aborts a pending asynchronous Copy Blob operation, and leaves a destination blob with zero + * length and full metadata. Version 2012-02-12 and newer. + * @see https://learn.microsoft.com/rest/api/storageservices/abort-copy-blob + * + * @param copyId - Id of the Copy From URL operation. + * @param options - Optional options to the Blob Abort Copy From URL operation. + */ + async abortCopyFromURL(copyId, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobClient-abortCopyFromURL", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blobContext.abortCopyFromURL(copyId, { + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * The synchronous Copy From URL operation copies a blob or an internet resource to a new blob. It will not + * return a response until the copy is complete. + * @see https://learn.microsoft.com/rest/api/storageservices/copy-blob-from-url + * + * @param copySource - The source URL to copy from, Shared Access Signature(SAS) maybe needed for authentication + * @param options - + */ + async syncCopyFromURL(copySource, options = {}) { + options.conditions = options.conditions || {}; + options.sourceConditions = options.sourceConditions || {}; + return tracing_js_1.tracingClient.withSpan("BlobClient-syncCopyFromURL", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blobContext.copyFromURL(copySource, { + abortSignal: options.abortSignal, + metadata: options.metadata, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + sourceModifiedAccessConditions: { + sourceIfMatch: options.sourceConditions?.ifMatch, + sourceIfModifiedSince: options.sourceConditions?.ifModifiedSince, + sourceIfNoneMatch: options.sourceConditions?.ifNoneMatch, + sourceIfUnmodifiedSince: options.sourceConditions?.ifUnmodifiedSince, + }, + sourceContentMD5: options.sourceContentMD5, + copySourceAuthorization: (0, utils_common_js_1.httpAuthorizationToString)(options.sourceAuthorization), + tier: (0, models_js_1.toAccessTier)(options.tier), + blobTagsString: (0, utils_common_js_1.toBlobTagsString)(options.tags), + immutabilityPolicyExpiry: options.immutabilityPolicy?.expiriesOn, + immutabilityPolicyMode: options.immutabilityPolicy?.policyMode, + legalHold: options.legalHold, + encryptionScope: options.encryptionScope, + copySourceTags: options.copySourceTags, + fileRequestIntent: options.sourceShareTokenIntent, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Sets the tier on a blob. The operation is allowed on a page blob in a premium + * storage account and on a block blob in a blob storage account (locally redundant + * storage only). A premium page blob's tier determines the allowed size, IOPS, + * and bandwidth of the blob. A block blob's tier determines Hot/Cool/Archive + * storage type. This operation does not update the blob's ETag. + * @see https://learn.microsoft.com/rest/api/storageservices/set-blob-tier + * + * @param tier - The tier to be set on the blob. Valid values are Hot, Cool, or Archive. + * @param options - Optional options to the Blob Set Tier operation. + */ + async setAccessTier(tier, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobClient-setAccessTier", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blobContext.setTier((0, models_js_1.toAccessTier)(tier), { + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + rehydratePriority: options.rehydratePriority, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + async downloadToBuffer(param1, param2, param3, param4 = {}) { + let buffer; + let offset = 0; + let count = 0; + let options = param4; + if (param1 instanceof Buffer) { + buffer = param1; + offset = param2 || 0; + count = typeof param3 === "number" ? param3 : 0; + } + else { + offset = typeof param1 === "number" ? param1 : 0; + count = typeof param2 === "number" ? param2 : 0; + options = param3 || {}; + } + let blockSize = options.blockSize ?? 0; + if (blockSize < 0) { + throw new RangeError("blockSize option must be >= 0"); + } + if (blockSize === 0) { + blockSize = constants_js_1.DEFAULT_BLOB_DOWNLOAD_BLOCK_BYTES; + } + if (offset < 0) { + throw new RangeError("offset option must be >= 0"); + } + if (count && count <= 0) { + throw new RangeError("count option must be greater than 0"); + } + if (!options.conditions) { + options.conditions = {}; + } + return tracing_js_1.tracingClient.withSpan("BlobClient-downloadToBuffer", options, async (updatedOptions) => { + // Customer doesn't specify length, get it + if (!count) { + const response = await this.getProperties({ + ...options, + tracingOptions: updatedOptions.tracingOptions, + }); + count = response.contentLength - offset; + if (count < 0) { + throw new RangeError(`offset ${offset} shouldn't be larger than blob size ${response.contentLength}`); + } + } + // Allocate the buffer of size = count if the buffer is not provided + if (!buffer) { + try { + buffer = Buffer.alloc(count); + } + catch (error) { + throw new Error(`Unable to allocate the buffer of size: ${count}(in bytes). Please try passing your own buffer to the "downloadToBuffer" method or try using other methods like "download" or "downloadToFile".\t ${error.message}`); + } + } + if (buffer.length < count) { + throw new RangeError(`The buffer's size should be equal to or larger than the request count of bytes: ${count}`); + } + let transferProgress = 0; + const batch = new Batch_js_1.Batch(options.concurrency); + for (let off = offset; off < offset + count; off = off + blockSize) { + batch.addOperation(async () => { + // Exclusive chunk end position + let chunkEnd = offset + count; + if (off + blockSize < chunkEnd) { + chunkEnd = off + blockSize; + } + const response = await this.download(off, chunkEnd - off, { + abortSignal: options.abortSignal, + conditions: options.conditions, + maxRetryRequests: options.maxRetryRequestsPerBlock, + customerProvidedKey: options.customerProvidedKey, + tracingOptions: updatedOptions.tracingOptions, + }); + const stream = response.readableStreamBody; + await (0, utils_js_1.streamToBuffer)(stream, buffer, off - offset, chunkEnd - offset); + // Update progress after block is downloaded, in case of block trying + // Could provide finer grained progress updating inside HTTP requests, + // only if convenience layer download try is enabled + transferProgress += chunkEnd - off; + if (options.onProgress) { + options.onProgress({ loadedBytes: transferProgress }); + } + }); + } + await batch.do(); + return buffer; + }); + } + /** + * ONLY AVAILABLE IN NODE.JS RUNTIME. + * + * Downloads an Azure Blob to a local file. + * Fails if the the given file path already exits. + * Offset and count are optional, pass 0 and undefined respectively to download the entire blob. + * + * @param filePath - + * @param offset - From which position of the block blob to download. + * @param count - How much data to be downloaded. Will download to the end when passing undefined. + * @param options - Options to Blob download options. + * @returns The response data for blob download operation, + * but with readableStreamBody set to undefined since its + * content is already read and written into a local file + * at the specified path. + */ + async downloadToFile(filePath, offset = 0, count, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobClient-downloadToFile", options, async (updatedOptions) => { + const response = await this.download(offset, count, { + ...options, + tracingOptions: updatedOptions.tracingOptions, + }); + if (response.readableStreamBody) { + await (0, utils_js_1.readStreamToLocalFile)(response.readableStreamBody, filePath); + } + // The stream is no longer accessible so setting it to undefined. + response.blobDownloadStream = undefined; + return response; + }); + } + getBlobAndContainerNamesFromUrl() { + let containerName; + let blobName; + try { + // URL may look like the following + // "https://myaccount.blob.core.windows.net/mycontainer/blob?sasString"; + // "https://myaccount.blob.core.windows.net/mycontainer/blob"; + // "https://myaccount.blob.core.windows.net/mycontainer/blob/a.txt?sasString"; + // "https://myaccount.blob.core.windows.net/mycontainer/blob/a.txt"; + // IPv4/IPv6 address hosts, Endpoints - `http://127.0.0.1:10000/devstoreaccount1/containername/blob` + // http://localhost:10001/devstoreaccount1/containername/blob + const parsedUrl = new URL(this.url); + if (parsedUrl.host.split(".")[1] === "blob") { + // "https://myaccount.blob.core.windows.net/containername/blob". + // .getPath() -> /containername/blob + const pathComponents = parsedUrl.pathname.match("/([^/]*)(/(.*))?"); + containerName = pathComponents[1]; + blobName = pathComponents[3]; + } + else if ((0, utils_common_js_1.isIpEndpointStyle)(parsedUrl)) { + // IPv4/IPv6 address hosts... Example - http://192.0.0.10:10001/devstoreaccount1/containername/blob + // Single word domain without a [dot] in the endpoint... Example - http://localhost:10001/devstoreaccount1/containername/blob + // .getPath() -> /devstoreaccount1/containername/blob + const pathComponents = parsedUrl.pathname.match("/([^/]*)/([^/]*)(/(.*))?"); + containerName = pathComponents[2]; + blobName = pathComponents[4]; + } + else { + // "https://customdomain.com/containername/blob". + // .getPath() -> /containername/blob + const pathComponents = parsedUrl.pathname.match("/([^/]*)(/(.*))?"); + containerName = pathComponents[1]; + blobName = pathComponents[3]; + } + // decode the encoded blobName, containerName - to get all the special characters that might be present in them + containerName = decodeURIComponent(containerName); + blobName = decodeURIComponent(blobName); + // Azure Storage Server will replace "\" with "/" in the blob names + // doing the same in the SDK side so that the user doesn't have to replace "\" instances in the blobName + blobName = blobName.replace(/\\/g, "/"); + if (!containerName) { + throw new Error("Provided containerName is invalid."); + } + return { blobName, containerName }; + } + catch (error) { + throw new Error("Unable to extract blobName and containerName with provided information."); + } + } + /** + * Asynchronously copies a blob to a destination within the storage account. + * In version 2012-02-12 and later, the source for a Copy Blob operation can be + * a committed blob in any Azure storage account. + * Beginning with version 2015-02-21, the source for a Copy Blob operation can be + * an Azure file in any Azure storage account. + * Only storage accounts created on or after June 7th, 2012 allow the Copy Blob + * operation to copy from another storage account. + * @see https://learn.microsoft.com/rest/api/storageservices/copy-blob + * + * @param copySource - url to the source Azure Blob/File. + * @param options - Optional options to the Blob Start Copy From URL operation. + */ + async startCopyFromURL(copySource, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobClient-startCopyFromURL", options, async (updatedOptions) => { + options.conditions = options.conditions || {}; + options.sourceConditions = options.sourceConditions || {}; + return (0, utils_common_js_1.assertResponse)(await this.blobContext.startCopyFromURL(copySource, { + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + metadata: options.metadata, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + sourceModifiedAccessConditions: { + sourceIfMatch: options.sourceConditions.ifMatch, + sourceIfModifiedSince: options.sourceConditions.ifModifiedSince, + sourceIfNoneMatch: options.sourceConditions.ifNoneMatch, + sourceIfUnmodifiedSince: options.sourceConditions.ifUnmodifiedSince, + sourceIfTags: options.sourceConditions.tagConditions, + }, + immutabilityPolicyExpiry: options.immutabilityPolicy?.expiriesOn, + immutabilityPolicyMode: options.immutabilityPolicy?.policyMode, + legalHold: options.legalHold, + rehydratePriority: options.rehydratePriority, + tier: (0, models_js_1.toAccessTier)(options.tier), + blobTagsString: (0, utils_common_js_1.toBlobTagsString)(options.tags), + sealBlob: options.sealBlob, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Only available for BlobClient constructed with a shared key credential. + * + * Generates a Blob Service Shared Access Signature (SAS) URI based on the client properties + * and parameters passed in. The SAS is signed by the shared key credential of the client. + * + * @see https://learn.microsoft.com/rest/api/storageservices/constructing-a-service-sas + * + * @param options - Optional parameters. + * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token. + */ + generateSasUrl(options) { + return new Promise((resolve) => { + if (!(this.credential instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential)) { + throw new RangeError("Can only generate the SAS when the client is initialized with a shared key credential"); + } + const sas = (0, BlobSASSignatureValues_js_1.generateBlobSASQueryParameters)({ + containerName: this._containerName, + blobName: this._name, + snapshotTime: this._snapshot, + versionId: this._versionId, + ...options, + }, this.credential).toString(); + resolve((0, utils_common_js_1.appendToURLQuery)(this.url, sas)); + }); + } + /** + * Only available for BlobClient constructed with a shared key credential. + * + * Generates string to sign for a Blob Service Shared Access Signature (SAS) URI based on + * the client properties and parameters passed in. The SAS is signed by the shared key credential of the client. + * + * @see https://learn.microsoft.com/rest/api/storageservices/constructing-a-service-sas + * + * @param options - Optional parameters. + * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token. + */ + /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ + generateSasStringToSign(options) { + if (!(this.credential instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential)) { + throw new RangeError("Can only generate the SAS when the client is initialized with a shared key credential"); + } + return (0, BlobSASSignatureValues_js_1.generateBlobSASQueryParametersInternal)({ + containerName: this._containerName, + blobName: this._name, + snapshotTime: this._snapshot, + versionId: this._versionId, + ...options, + }, this.credential).stringToSign; + } + /** + * + * Generates a Blob Service Shared Access Signature (SAS) URI based on + * the client properties and parameters passed in. The SAS is signed by the input user delegation key. + * + * @see https://learn.microsoft.com/rest/api/storageservices/constructing-a-service-sas + * + * @param options - Optional parameters. + * @param userDelegationKey - Return value of `blobServiceClient.getUserDelegationKey()` + * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token. + */ + generateUserDelegationSasUrl(options, userDelegationKey) { + return new Promise((resolve) => { + const sas = (0, BlobSASSignatureValues_js_1.generateBlobSASQueryParameters)({ + containerName: this._containerName, + blobName: this._name, + snapshotTime: this._snapshot, + versionId: this._versionId, + ...options, + }, userDelegationKey, this.accountName).toString(); + resolve((0, utils_common_js_1.appendToURLQuery)(this.url, sas)); + }); + } + /** + * Only available for BlobClient constructed with a shared key credential. + * + * Generates string to sign for a Blob Service Shared Access Signature (SAS) URI based on + * the client properties and parameters passed in. The SAS is signed by the input user delegation key. + * + * @see https://learn.microsoft.com/rest/api/storageservices/constructing-a-service-sas + * + * @param options - Optional parameters. + * @param userDelegationKey - Return value of `blobServiceClient.getUserDelegationKey()` + * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token. + */ + generateUserDelegationSasStringToSign(options, userDelegationKey) { + return (0, BlobSASSignatureValues_js_1.generateBlobSASQueryParametersInternal)({ + containerName: this._containerName, + blobName: this._name, + snapshotTime: this._snapshot, + versionId: this._versionId, + ...options, + }, userDelegationKey, this.accountName).stringToSign; + } + /** + * Delete the immutablility policy on the blob. + * + * @param options - Optional options to delete immutability policy on the blob. + */ + async deleteImmutabilityPolicy(options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobClient-deleteImmutabilityPolicy", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blobContext.deleteImmutabilityPolicy({ + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Set immutability policy on the blob. + * + * @param options - Optional options to set immutability policy on the blob. + */ + async setImmutabilityPolicy(immutabilityPolicy, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobClient-setImmutabilityPolicy", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blobContext.setImmutabilityPolicy({ + immutabilityPolicyExpiry: immutabilityPolicy.expiriesOn, + immutabilityPolicyMode: immutabilityPolicy.policyMode, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Set legal hold on the blob. + * + * @param options - Optional options to set legal hold on the blob. + */ + async setLegalHold(legalHoldEnabled, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobClient-setLegalHold", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blobContext.setLegalHold(legalHoldEnabled, { + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * The Get Account Information operation returns the sku name and account kind + * for the specified account. + * The Get Account Information operation is available on service versions beginning + * with version 2018-03-28. + * @see https://learn.microsoft.com/rest/api/storageservices/get-account-information + * + * @param options - Options to the Service Get Account Info operation. + * @returns Response data for the Service Get Account Info operation. + */ + async getAccountInfo(options = {}) { + return tracing_js_1.tracingClient.withSpan("BlobClient-getAccountInfo", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blobContext.getAccountInfo({ + abortSignal: options.abortSignal, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } +} +exports.BlobClient = BlobClient; +/** + * AppendBlobClient defines a set of operations applicable to append blobs. + */ +class AppendBlobClient extends BlobClient { + /** + * appendBlobsContext provided by protocol layer. + */ + appendBlobContext; + constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, + // Legacy, no fix for eslint error without breaking. Disable it for this interface. + /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ + options) { + // In TypeScript we cannot simply pass all parameters to super() like below so have to duplicate the code instead. + // super(s, credentialOrPipelineOrContainerNameOrOptions, blobNameOrOptions, options); + let pipeline; + let url; + options = options || {}; + if ((0, Pipeline_js_1.isPipelineLike)(credentialOrPipelineOrContainerName)) { + // (url: string, pipeline: Pipeline) + url = urlOrConnectionString; + pipeline = credentialOrPipelineOrContainerName; + } + else if ((core_util_1.isNodeLike && credentialOrPipelineOrContainerName instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential) || + credentialOrPipelineOrContainerName instanceof AnonymousCredential_js_1.AnonymousCredential || + (0, core_auth_1.isTokenCredential)(credentialOrPipelineOrContainerName)) { + // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) url = urlOrConnectionString; + url = urlOrConnectionString; + options = blobNameOrOptions; + pipeline = (0, Pipeline_js_1.newPipeline)(credentialOrPipelineOrContainerName, options); + } + else if (!credentialOrPipelineOrContainerName && + typeof credentialOrPipelineOrContainerName !== "string") { + // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) + url = urlOrConnectionString; + // The second parameter is undefined. Use anonymous credential. + pipeline = (0, Pipeline_js_1.newPipeline)(new AnonymousCredential_js_1.AnonymousCredential(), options); + } + else if (credentialOrPipelineOrContainerName && + typeof credentialOrPipelineOrContainerName === "string" && + blobNameOrOptions && + typeof blobNameOrOptions === "string") { + // (connectionString: string, containerName: string, blobName: string, options?: StoragePipelineOptions) + const containerName = credentialOrPipelineOrContainerName; + const blobName = blobNameOrOptions; + const extractedCreds = (0, utils_common_js_1.extractConnectionStringParts)(urlOrConnectionString); + if (extractedCreds.kind === "AccountConnString") { + if (core_util_1.isNodeLike) { + const sharedKeyCredential = new StorageSharedKeyCredential_js_1.StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey); + url = (0, utils_common_js_1.appendToURLPath)((0, utils_common_js_1.appendToURLPath)(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)); + if (!options.proxyOptions) { + options.proxyOptions = (0, core_rest_pipeline_1.getDefaultProxySettings)(extractedCreds.proxyUri); + } + pipeline = (0, Pipeline_js_1.newPipeline)(sharedKeyCredential, options); + } + else { + throw new Error("Account connection string is only supported in Node.js environment"); + } + } + else if (extractedCreds.kind === "SASConnString") { + url = + (0, utils_common_js_1.appendToURLPath)((0, utils_common_js_1.appendToURLPath)(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)) + + "?" + + extractedCreds.accountSas; + pipeline = (0, Pipeline_js_1.newPipeline)(new AnonymousCredential_js_1.AnonymousCredential(), options); + } + else { + throw new Error("Connection string must be either an Account connection string or a SAS connection string"); + } + } + else { + throw new Error("Expecting non-empty strings for containerName and blobName parameters"); + } + super(url, pipeline); + this.appendBlobContext = this.storageClientContext.appendBlob; + } + /** + * Creates a new AppendBlobClient object identical to the source but with the + * specified snapshot timestamp. + * Provide "" will remove the snapshot and return a Client to the base blob. + * + * @param snapshot - The snapshot timestamp. + * @returns A new AppendBlobClient object identical to the source but with the specified snapshot timestamp. + */ + withSnapshot(snapshot) { + return new AppendBlobClient((0, utils_common_js_1.setURLParameter)(this.url, constants_js_1.URLConstants.Parameters.SNAPSHOT, snapshot.length === 0 ? undefined : snapshot), this.pipeline); + } + /** + * Creates a 0-length append blob. Call AppendBlock to append data to an append blob. + * @see https://learn.microsoft.com/rest/api/storageservices/put-blob + * + * @param options - Options to the Append Block Create operation. + * + * + * Example usage: + * + * ```ts snippet:ClientsCreateAppendBlob + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * const containerName = ""; + * const blobName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * + * const appendBlobClient = containerClient.getAppendBlobClient(blobName); + * await appendBlobClient.create(); + * ``` + */ + async create(options = {}) { + options.conditions = options.conditions || {}; + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("AppendBlobClient-create", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.appendBlobContext.create(0, { + abortSignal: options.abortSignal, + blobHttpHeaders: options.blobHTTPHeaders, + leaseAccessConditions: options.conditions, + metadata: options.metadata, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + cpkInfo: options.customerProvidedKey, + encryptionScope: options.encryptionScope, + immutabilityPolicyExpiry: options.immutabilityPolicy?.expiriesOn, + immutabilityPolicyMode: options.immutabilityPolicy?.policyMode, + legalHold: options.legalHold, + blobTagsString: (0, utils_common_js_1.toBlobTagsString)(options.tags), + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Creates a 0-length append blob. Call AppendBlock to append data to an append blob. + * If the blob with the same name already exists, the content of the existing blob will remain unchanged. + * @see https://learn.microsoft.com/rest/api/storageservices/put-blob + * + * @param options - + */ + async createIfNotExists(options = {}) { + const conditions = { ifNoneMatch: constants_js_1.ETagAny }; + return tracing_js_1.tracingClient.withSpan("AppendBlobClient-createIfNotExists", options, async (updatedOptions) => { + try { + const res = (0, utils_common_js_1.assertResponse)(await this.create({ + ...updatedOptions, + conditions, + })); + return { + succeeded: true, + ...res, + _response: res._response, // _response is made non-enumerable + }; + } + catch (e) { + if (e.details?.errorCode === "BlobAlreadyExists") { + return { + succeeded: false, + ...e.response?.parsedHeaders, + _response: e.response, + }; + } + throw e; + } + }); + } + /** + * Seals the append blob, making it read only. + * + * @param options - + */ + async seal(options = {}) { + options.conditions = options.conditions || {}; + return tracing_js_1.tracingClient.withSpan("AppendBlobClient-seal", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.appendBlobContext.seal({ + abortSignal: options.abortSignal, + appendPositionAccessConditions: options.conditions, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Commits a new block of data to the end of the existing append blob. + * @see https://learn.microsoft.com/rest/api/storageservices/append-block + * + * @param body - Data to be appended. + * @param contentLength - Length of the body in bytes. + * @param options - Options to the Append Block operation. + * + * + * Example usage: + * + * ```ts snippet:ClientsAppendBlock + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * const containerName = ""; + * const blobName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * + * const content = "Hello World!"; + * + * // Create a new append blob and append data to the blob. + * const newAppendBlobClient = containerClient.getAppendBlobClient(blobName); + * await newAppendBlobClient.create(); + * await newAppendBlobClient.appendBlock(content, content.length); + * + * // Append data to an existing append blob. + * const existingAppendBlobClient = containerClient.getAppendBlobClient(blobName); + * await existingAppendBlobClient.appendBlock(content, content.length); + * ``` + */ + async appendBlock(body, contentLength, options = {}) { + options.conditions = options.conditions || {}; + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("AppendBlobClient-appendBlock", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.appendBlobContext.appendBlock(contentLength, body, { + abortSignal: options.abortSignal, + appendPositionAccessConditions: options.conditions, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + requestOptions: { + onUploadProgress: options.onProgress, + }, + transactionalContentMD5: options.transactionalContentMD5, + transactionalContentCrc64: options.transactionalContentCrc64, + cpkInfo: options.customerProvidedKey, + encryptionScope: options.encryptionScope, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * The Append Block operation commits a new block of data to the end of an existing append blob + * where the contents are read from a source url. + * @see https://learn.microsoft.com/rest/api/storageservices/append-block-from-url + * + * @param sourceURL - + * The url to the blob that will be the source of the copy. A source blob in the same storage account can + * be authenticated via Shared Key. However, if the source is a blob in another account, the source blob + * must either be public or must be authenticated via a shared access signature. If the source blob is + * public, no authentication is required to perform the operation. + * @param sourceOffset - Offset in source to be appended + * @param count - Number of bytes to be appended as a block + * @param options - + */ + async appendBlockFromURL(sourceURL, sourceOffset, count, options = {}) { + options.conditions = options.conditions || {}; + options.sourceConditions = options.sourceConditions || {}; + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("AppendBlobClient-appendBlockFromURL", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.appendBlobContext.appendBlockFromUrl(sourceURL, 0, { + abortSignal: options.abortSignal, + sourceRange: (0, Range_js_1.rangeToString)({ offset: sourceOffset, count }), + sourceContentMD5: options.sourceContentMD5, + sourceContentCrc64: options.sourceContentCrc64, + leaseAccessConditions: options.conditions, + appendPositionAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + sourceModifiedAccessConditions: { + sourceIfMatch: options.sourceConditions?.ifMatch, + sourceIfModifiedSince: options.sourceConditions?.ifModifiedSince, + sourceIfNoneMatch: options.sourceConditions?.ifNoneMatch, + sourceIfUnmodifiedSince: options.sourceConditions?.ifUnmodifiedSince, + }, + copySourceAuthorization: (0, utils_common_js_1.httpAuthorizationToString)(options.sourceAuthorization), + cpkInfo: options.customerProvidedKey, + encryptionScope: options.encryptionScope, + fileRequestIntent: options.sourceShareTokenIntent, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } +} +exports.AppendBlobClient = AppendBlobClient; +/** + * BlockBlobClient defines a set of operations applicable to block blobs. + */ +class BlockBlobClient extends BlobClient { + /** + * blobContext provided by protocol layer. + * + * Note. Ideally BlobClient should set BlobClient.blobContext to protected. However, API + * extractor has issue blocking that. Here we redecelare _blobContext in BlockBlobClient. + */ + _blobContext; + /** + * blockBlobContext provided by protocol layer. + */ + blockBlobContext; + constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, + // Legacy, no fix for eslint error without breaking. Disable it for this interface. + /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ + options) { + // In TypeScript we cannot simply pass all parameters to super() like below so have to duplicate the code instead. + // super(s, credentialOrPipelineOrContainerNameOrOptions, blobNameOrOptions, options); + let pipeline; + let url; + options = options || {}; + if ((0, Pipeline_js_1.isPipelineLike)(credentialOrPipelineOrContainerName)) { + // (url: string, pipeline: Pipeline) + url = urlOrConnectionString; + pipeline = credentialOrPipelineOrContainerName; + } + else if ((core_util_1.isNodeLike && credentialOrPipelineOrContainerName instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential) || + credentialOrPipelineOrContainerName instanceof AnonymousCredential_js_1.AnonymousCredential || + (0, core_auth_1.isTokenCredential)(credentialOrPipelineOrContainerName)) { + // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) + url = urlOrConnectionString; + options = blobNameOrOptions; + pipeline = (0, Pipeline_js_1.newPipeline)(credentialOrPipelineOrContainerName, options); + } + else if (!credentialOrPipelineOrContainerName && + typeof credentialOrPipelineOrContainerName !== "string") { + // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) + // The second parameter is undefined. Use anonymous credential. + url = urlOrConnectionString; + if (blobNameOrOptions && typeof blobNameOrOptions !== "string") { + options = blobNameOrOptions; + } + pipeline = (0, Pipeline_js_1.newPipeline)(new AnonymousCredential_js_1.AnonymousCredential(), options); + } + else if (credentialOrPipelineOrContainerName && + typeof credentialOrPipelineOrContainerName === "string" && + blobNameOrOptions && + typeof blobNameOrOptions === "string") { + // (connectionString: string, containerName: string, blobName: string, options?: StoragePipelineOptions) + const containerName = credentialOrPipelineOrContainerName; + const blobName = blobNameOrOptions; + const extractedCreds = (0, utils_common_js_1.extractConnectionStringParts)(urlOrConnectionString); + if (extractedCreds.kind === "AccountConnString") { + if (core_util_1.isNodeLike) { + const sharedKeyCredential = new StorageSharedKeyCredential_js_1.StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey); + url = (0, utils_common_js_1.appendToURLPath)((0, utils_common_js_1.appendToURLPath)(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)); + if (!options.proxyOptions) { + options.proxyOptions = (0, core_rest_pipeline_1.getDefaultProxySettings)(extractedCreds.proxyUri); + } + pipeline = (0, Pipeline_js_1.newPipeline)(sharedKeyCredential, options); + } + else { + throw new Error("Account connection string is only supported in Node.js environment"); + } + } + else if (extractedCreds.kind === "SASConnString") { + url = + (0, utils_common_js_1.appendToURLPath)((0, utils_common_js_1.appendToURLPath)(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)) + + "?" + + extractedCreds.accountSas; + pipeline = (0, Pipeline_js_1.newPipeline)(new AnonymousCredential_js_1.AnonymousCredential(), options); + } + else { + throw new Error("Connection string must be either an Account connection string or a SAS connection string"); + } + } + else { + throw new Error("Expecting non-empty strings for containerName and blobName parameters"); + } + super(url, pipeline); + this.blockBlobContext = this.storageClientContext.blockBlob; + this._blobContext = this.storageClientContext.blob; + } + /** + * Creates a new BlockBlobClient object identical to the source but with the + * specified snapshot timestamp. + * Provide "" will remove the snapshot and return a URL to the base blob. + * + * @param snapshot - The snapshot timestamp. + * @returns A new BlockBlobClient object identical to the source but with the specified snapshot timestamp. + */ + withSnapshot(snapshot) { + return new BlockBlobClient((0, utils_common_js_1.setURLParameter)(this.url, constants_js_1.URLConstants.Parameters.SNAPSHOT, snapshot.length === 0 ? undefined : snapshot), this.pipeline); + } + /** + * ONLY AVAILABLE IN NODE.JS RUNTIME. + * + * Quick query for a JSON or CSV formatted blob. + * + * Example usage (Node.js): + * + * ```ts snippet:ClientsQuery + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * const containerName = ""; + * const blobName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * const blockBlobClient = containerClient.getBlockBlobClient(blobName); + * + * // Query and convert a blob to a string + * const queryBlockBlobResponse = await blockBlobClient.query("select from BlobStorage"); + * if (queryBlockBlobResponse.readableStreamBody) { + * const downloadedBuffer = await streamToBuffer(queryBlockBlobResponse.readableStreamBody); + * const downloaded = downloadedBuffer.toString(); + * console.log(`Query blob content: ${downloaded}`); + * } + * + * async function streamToBuffer(readableStream: NodeJS.ReadableStream): Promise { + * return new Promise((resolve, reject) => { + * const chunks: Buffer[] = []; + * readableStream.on("data", (data) => { + * chunks.push(data instanceof Buffer ? data : Buffer.from(data)); + * }); + * readableStream.on("end", () => { + * resolve(Buffer.concat(chunks)); + * }); + * readableStream.on("error", reject); + * }); + * } + * ``` + * + * @param query - + * @param options - + */ + async query(query, options = {}) { + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + if (!core_util_1.isNodeLike) { + throw new Error("This operation currently is only supported in Node.js."); + } + return tracing_js_1.tracingClient.withSpan("BlockBlobClient-query", options, async (updatedOptions) => { + const response = (0, utils_common_js_1.assertResponse)(await this._blobContext.query({ + abortSignal: options.abortSignal, + queryRequest: { + queryType: "SQL", + expression: query, + inputSerialization: (0, utils_common_js_1.toQuerySerialization)(options.inputTextConfiguration), + outputSerialization: (0, utils_common_js_1.toQuerySerialization)(options.outputTextConfiguration), + }, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + cpkInfo: options.customerProvidedKey, + tracingOptions: updatedOptions.tracingOptions, + })); + return new BlobQueryResponse_js_1.BlobQueryResponse(response, { + abortSignal: options.abortSignal, + onProgress: options.onProgress, + onError: options.onError, + }); + }); + } + /** + * Creates a new block blob, or updates the content of an existing block blob. + * Updating an existing block blob overwrites any existing metadata on the blob. + * Partial updates are not supported; the content of the existing blob is + * overwritten with the new content. To perform a partial update of a block blob's, + * use {@link stageBlock} and {@link commitBlockList}. + * + * This is a non-parallel uploading method, please use {@link uploadFile}, + * {@link uploadStream} or {@link uploadBrowserData} for better performance + * with concurrency uploading. + * + * @see https://learn.microsoft.com/rest/api/storageservices/put-blob + * + * @param body - Blob, string, ArrayBuffer, ArrayBufferView or a function + * which returns a new Readable stream whose offset is from data source beginning. + * @param contentLength - Length of body in bytes. Use Buffer.byteLength() to calculate body length for a + * string including non non-Base64/Hex-encoded characters. + * @param options - Options to the Block Blob Upload operation. + * @returns Response data for the Block Blob Upload operation. + * + * Example usage: + * + * ```ts snippet:ClientsUpload + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * const containerName = ""; + * const blobName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * const blockBlobClient = containerClient.getBlockBlobClient(blobName); + * + * const content = "Hello world!"; + * const uploadBlobResponse = await blockBlobClient.upload(content, content.length); + * ``` + */ + async upload(body, contentLength, options = {}) { + options.conditions = options.conditions || {}; + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("BlockBlobClient-upload", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blockBlobContext.upload(contentLength, body, { + abortSignal: options.abortSignal, + blobHttpHeaders: options.blobHTTPHeaders, + leaseAccessConditions: options.conditions, + metadata: options.metadata, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + requestOptions: { + onUploadProgress: options.onProgress, + }, + cpkInfo: options.customerProvidedKey, + encryptionScope: options.encryptionScope, + immutabilityPolicyExpiry: options.immutabilityPolicy?.expiriesOn, + immutabilityPolicyMode: options.immutabilityPolicy?.policyMode, + legalHold: options.legalHold, + tier: (0, models_js_1.toAccessTier)(options.tier), + blobTagsString: (0, utils_common_js_1.toBlobTagsString)(options.tags), + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Creates a new Block Blob where the contents of the blob are read from a given URL. + * This API is supported beginning with the 2020-04-08 version. Partial updates + * are not supported with Put Blob from URL; the content of an existing blob is overwritten with + * the content of the new blob. To perform partial updates to a block blob’s contents using a + * source URL, use {@link stageBlockFromURL} and {@link commitBlockList}. + * + * @param sourceURL - Specifies the URL of the blob. The value + * may be a URL of up to 2 KB in length that specifies a blob. + * The value should be URL-encoded as it would appear + * in a request URI. The source blob must either be public + * or must be authenticated via a shared access signature. + * If the source blob is public, no authentication is required + * to perform the operation. Here are some examples of source object URLs: + * - https://myaccount.blob.core.windows.net/mycontainer/myblob + * - https://myaccount.blob.core.windows.net/mycontainer/myblob?snapshot= + * @param options - Optional parameters. + */ + async syncUploadFromURL(sourceURL, options = {}) { + options.conditions = options.conditions || {}; + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("BlockBlobClient-syncUploadFromURL", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blockBlobContext.putBlobFromUrl(0, sourceURL, { + ...options, + blobHttpHeaders: options.blobHTTPHeaders, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + sourceModifiedAccessConditions: { + sourceIfMatch: options.sourceConditions?.ifMatch, + sourceIfModifiedSince: options.sourceConditions?.ifModifiedSince, + sourceIfNoneMatch: options.sourceConditions?.ifNoneMatch, + sourceIfUnmodifiedSince: options.sourceConditions?.ifUnmodifiedSince, + sourceIfTags: options.sourceConditions?.tagConditions, + }, + cpkInfo: options.customerProvidedKey, + copySourceAuthorization: (0, utils_common_js_1.httpAuthorizationToString)(options.sourceAuthorization), + tier: (0, models_js_1.toAccessTier)(options.tier), + blobTagsString: (0, utils_common_js_1.toBlobTagsString)(options.tags), + copySourceTags: options.copySourceTags, + fileRequestIntent: options.sourceShareTokenIntent, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Uploads the specified block to the block blob's "staging area" to be later + * committed by a call to commitBlockList. + * @see https://learn.microsoft.com/rest/api/storageservices/put-block + * + * @param blockId - A 64-byte value that is base64-encoded + * @param body - Data to upload to the staging area. + * @param contentLength - Number of bytes to upload. + * @param options - Options to the Block Blob Stage Block operation. + * @returns Response data for the Block Blob Stage Block operation. + */ + async stageBlock(blockId, body, contentLength, options = {}) { + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("BlockBlobClient-stageBlock", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blockBlobContext.stageBlock(blockId, contentLength, body, { + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + requestOptions: { + onUploadProgress: options.onProgress, + }, + transactionalContentMD5: options.transactionalContentMD5, + transactionalContentCrc64: options.transactionalContentCrc64, + cpkInfo: options.customerProvidedKey, + encryptionScope: options.encryptionScope, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * The Stage Block From URL operation creates a new block to be committed as part + * of a blob where the contents are read from a URL. + * This API is available starting in version 2018-03-28. + * @see https://learn.microsoft.com/rest/api/storageservices/put-block-from-url + * + * @param blockId - A 64-byte value that is base64-encoded + * @param sourceURL - Specifies the URL of the blob. The value + * may be a URL of up to 2 KB in length that specifies a blob. + * The value should be URL-encoded as it would appear + * in a request URI. The source blob must either be public + * or must be authenticated via a shared access signature. + * If the source blob is public, no authentication is required + * to perform the operation. Here are some examples of source object URLs: + * - https://myaccount.blob.core.windows.net/mycontainer/myblob + * - https://myaccount.blob.core.windows.net/mycontainer/myblob?snapshot= + * @param offset - From which position of the blob to download, greater than or equal to 0 + * @param count - How much data to be downloaded, greater than 0. Will download to the end when undefined + * @param options - Options to the Block Blob Stage Block From URL operation. + * @returns Response data for the Block Blob Stage Block From URL operation. + */ + async stageBlockFromURL(blockId, sourceURL, offset = 0, count, options = {}) { + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("BlockBlobClient-stageBlockFromURL", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blockBlobContext.stageBlockFromURL(blockId, 0, sourceURL, { + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + sourceContentMD5: options.sourceContentMD5, + sourceContentCrc64: options.sourceContentCrc64, + sourceRange: offset === 0 && !count ? undefined : (0, Range_js_1.rangeToString)({ offset, count }), + cpkInfo: options.customerProvidedKey, + encryptionScope: options.encryptionScope, + copySourceAuthorization: (0, utils_common_js_1.httpAuthorizationToString)(options.sourceAuthorization), + fileRequestIntent: options.sourceShareTokenIntent, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Writes a blob by specifying the list of block IDs that make up the blob. + * In order to be written as part of a blob, a block must have been successfully written + * to the server in a prior {@link stageBlock} operation. You can call {@link commitBlockList} to + * update a blob by uploading only those blocks that have changed, then committing the new and existing + * blocks together. Any blocks not specified in the block list and permanently deleted. + * @see https://learn.microsoft.com/rest/api/storageservices/put-block-list + * + * @param blocks - Array of 64-byte value that is base64-encoded + * @param options - Options to the Block Blob Commit Block List operation. + * @returns Response data for the Block Blob Commit Block List operation. + */ + async commitBlockList(blocks, options = {}) { + options.conditions = options.conditions || {}; + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("BlockBlobClient-commitBlockList", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.blockBlobContext.commitBlockList({ latest: blocks }, { + abortSignal: options.abortSignal, + blobHttpHeaders: options.blobHTTPHeaders, + leaseAccessConditions: options.conditions, + metadata: options.metadata, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + cpkInfo: options.customerProvidedKey, + encryptionScope: options.encryptionScope, + immutabilityPolicyExpiry: options.immutabilityPolicy?.expiriesOn, + immutabilityPolicyMode: options.immutabilityPolicy?.policyMode, + legalHold: options.legalHold, + tier: (0, models_js_1.toAccessTier)(options.tier), + blobTagsString: (0, utils_common_js_1.toBlobTagsString)(options.tags), + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Returns the list of blocks that have been uploaded as part of a block blob + * using the specified block list filter. + * @see https://learn.microsoft.com/rest/api/storageservices/get-block-list + * + * @param listType - Specifies whether to return the list of committed blocks, + * the list of uncommitted blocks, or both lists together. + * @param options - Options to the Block Blob Get Block List operation. + * @returns Response data for the Block Blob Get Block List operation. + */ + async getBlockList(listType, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlockBlobClient-getBlockList", options, async (updatedOptions) => { + const res = (0, utils_common_js_1.assertResponse)(await this.blockBlobContext.getBlockList(listType, { + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + tracingOptions: updatedOptions.tracingOptions, + })); + if (!res.committedBlocks) { + res.committedBlocks = []; + } + if (!res.uncommittedBlocks) { + res.uncommittedBlocks = []; + } + return res; + }); + } + // High level functions + /** + * Uploads a Buffer(Node.js)/Blob(browsers)/ArrayBuffer/ArrayBufferView object to a BlockBlob. + * + * When data length is no more than the specifiled {@link BlockBlobParallelUploadOptions.maxSingleShotSize} (default is + * {@link BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES}), this method will use 1 {@link upload} call to finish the upload. + * Otherwise, this method will call {@link stageBlock} to upload blocks, and finally call {@link commitBlockList} + * to commit the block list. + * + * A common {@link BlockBlobParallelUploadOptions.blobHTTPHeaders} option to set is + * `blobContentType`, enabling the browser to provide + * functionality based on file type. + * + * @param data - Buffer(Node.js), Blob, ArrayBuffer or ArrayBufferView + * @param options - + */ + async uploadData(data, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlockBlobClient-uploadData", options, async (updatedOptions) => { + if (core_util_1.isNodeLike) { + let buffer; + if (data instanceof Buffer) { + buffer = data; + } + else if (data instanceof ArrayBuffer) { + buffer = Buffer.from(data); + } + else { + data = data; + buffer = Buffer.from(data.buffer, data.byteOffset, data.byteLength); + } + return this.uploadSeekableInternal((offset, size) => buffer.slice(offset, offset + size), buffer.byteLength, updatedOptions); + } + else { + const browserBlob = new Blob([data]); + return this.uploadSeekableInternal((offset, size) => browserBlob.slice(offset, offset + size), browserBlob.size, updatedOptions); + } + }); + } + /** + * ONLY AVAILABLE IN BROWSERS. + * + * Uploads a browser Blob/File/ArrayBuffer/ArrayBufferView object to block blob. + * + * When buffer length lesser than or equal to 256MB, this method will use 1 upload call to finish the upload. + * Otherwise, this method will call {@link stageBlock} to upload blocks, and finally call + * {@link commitBlockList} to commit the block list. + * + * A common {@link BlockBlobParallelUploadOptions.blobHTTPHeaders} option to set is + * `blobContentType`, enabling the browser to provide + * functionality based on file type. + * + * @deprecated Use {@link uploadData} instead. + * + * @param browserData - Blob, File, ArrayBuffer or ArrayBufferView + * @param options - Options to upload browser data. + * @returns Response data for the Blob Upload operation. + */ + async uploadBrowserData(browserData, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlockBlobClient-uploadBrowserData", options, async (updatedOptions) => { + const browserBlob = new Blob([browserData]); + return this.uploadSeekableInternal((offset, size) => browserBlob.slice(offset, offset + size), browserBlob.size, updatedOptions); + }); + } + /** + * + * Uploads data to block blob. Requires a bodyFactory as the data source, + * which need to return a {@link HttpRequestBody} object with the offset and size provided. + * + * When data length is no more than the specified {@link BlockBlobParallelUploadOptions.maxSingleShotSize} (default is + * {@link BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES}), this method will use 1 {@link upload} call to finish the upload. + * Otherwise, this method will call {@link stageBlock} to upload blocks, and finally call {@link commitBlockList} + * to commit the block list. + * + * @param bodyFactory - + * @param size - size of the data to upload. + * @param options - Options to Upload to Block Blob operation. + * @returns Response data for the Blob Upload operation. + */ + async uploadSeekableInternal(bodyFactory, size, options = {}) { + let blockSize = options.blockSize ?? 0; + if (blockSize < 0 || blockSize > constants_js_1.BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES) { + throw new RangeError(`blockSize option must be >= 0 and <= ${constants_js_1.BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES}`); + } + const maxSingleShotSize = options.maxSingleShotSize ?? constants_js_1.BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES; + if (maxSingleShotSize < 0 || maxSingleShotSize > constants_js_1.BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES) { + throw new RangeError(`maxSingleShotSize option must be >= 0 and <= ${constants_js_1.BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES}`); + } + if (blockSize === 0) { + if (size > constants_js_1.BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES * constants_js_1.BLOCK_BLOB_MAX_BLOCKS) { + throw new RangeError(`${size} is too larger to upload to a block blob.`); + } + if (size > maxSingleShotSize) { + blockSize = Math.ceil(size / constants_js_1.BLOCK_BLOB_MAX_BLOCKS); + if (blockSize < constants_js_1.DEFAULT_BLOB_DOWNLOAD_BLOCK_BYTES) { + blockSize = constants_js_1.DEFAULT_BLOB_DOWNLOAD_BLOCK_BYTES; + } + } + } + if (!options.blobHTTPHeaders) { + options.blobHTTPHeaders = {}; + } + if (!options.conditions) { + options.conditions = {}; + } + return tracing_js_1.tracingClient.withSpan("BlockBlobClient-uploadSeekableInternal", options, async (updatedOptions) => { + if (size <= maxSingleShotSize) { + return (0, utils_common_js_1.assertResponse)(await this.upload(bodyFactory(0, size), size, updatedOptions)); + } + const numBlocks = Math.floor((size - 1) / blockSize) + 1; + if (numBlocks > constants_js_1.BLOCK_BLOB_MAX_BLOCKS) { + throw new RangeError(`The buffer's size is too big or the BlockSize is too small;` + + `the number of blocks must be <= ${constants_js_1.BLOCK_BLOB_MAX_BLOCKS}`); + } + const blockList = []; + const blockIDPrefix = (0, core_util_2.randomUUID)(); + let transferProgress = 0; + const batch = new Batch_js_1.Batch(options.concurrency); + for (let i = 0; i < numBlocks; i++) { + batch.addOperation(async () => { + const blockID = (0, utils_common_js_1.generateBlockID)(blockIDPrefix, i); + const start = blockSize * i; + const end = i === numBlocks - 1 ? size : start + blockSize; + const contentLength = end - start; + blockList.push(blockID); + await this.stageBlock(blockID, bodyFactory(start, contentLength), contentLength, { + abortSignal: options.abortSignal, + conditions: options.conditions, + encryptionScope: options.encryptionScope, + tracingOptions: updatedOptions.tracingOptions, + }); + // Update progress after block is successfully uploaded to server, in case of block trying + // TODO: Hook with convenience layer progress event in finer level + transferProgress += contentLength; + if (options.onProgress) { + options.onProgress({ + loadedBytes: transferProgress, + }); + } + }); + } + await batch.do(); + return this.commitBlockList(blockList, updatedOptions); + }); + } + /** + * ONLY AVAILABLE IN NODE.JS RUNTIME. + * + * Uploads a local file in blocks to a block blob. + * + * When file size lesser than or equal to 256MB, this method will use 1 upload call to finish the upload. + * Otherwise, this method will call stageBlock to upload blocks, and finally call commitBlockList + * to commit the block list. + * + * @param filePath - Full path of local file + * @param options - Options to Upload to Block Blob operation. + * @returns Response data for the Blob Upload operation. + */ + async uploadFile(filePath, options = {}) { + return tracing_js_1.tracingClient.withSpan("BlockBlobClient-uploadFile", options, async (updatedOptions) => { + const size = (await (0, utils_js_1.fsStat)(filePath)).size; + return this.uploadSeekableInternal((offset, count) => { + return () => (0, utils_js_1.fsCreateReadStream)(filePath, { + autoClose: true, + end: count ? offset + count - 1 : Infinity, + start: offset, + }); + }, size, { + ...options, + tracingOptions: updatedOptions.tracingOptions, + }); + }); + } + /** + * ONLY AVAILABLE IN NODE.JS RUNTIME. + * + * Uploads a Node.js Readable stream into block blob. + * + * PERFORMANCE IMPROVEMENT TIPS: + * * Input stream highWaterMark is better to set a same value with bufferSize + * parameter, which will avoid Buffer.concat() operations. + * + * @param stream - Node.js Readable stream + * @param bufferSize - Size of every buffer allocated, also the block size in the uploaded block blob. Default value is 8MB + * @param maxConcurrency - Max concurrency indicates the max number of buffers that can be allocated, + * positive correlation with max uploading concurrency. Default value is 5 + * @param options - Options to Upload Stream to Block Blob operation. + * @returns Response data for the Blob Upload operation. + */ + async uploadStream(stream, bufferSize = constants_js_1.DEFAULT_BLOCK_BUFFER_SIZE_BYTES, maxConcurrency = 5, options = {}) { + if (!options.blobHTTPHeaders) { + options.blobHTTPHeaders = {}; + } + if (!options.conditions) { + options.conditions = {}; + } + return tracing_js_1.tracingClient.withSpan("BlockBlobClient-uploadStream", options, async (updatedOptions) => { + let blockNum = 0; + const blockIDPrefix = (0, core_util_2.randomUUID)(); + let transferProgress = 0; + const blockList = []; + const scheduler = new storage_common_1.BufferScheduler(stream, bufferSize, maxConcurrency, async (body, length) => { + const blockID = (0, utils_common_js_1.generateBlockID)(blockIDPrefix, blockNum); + blockList.push(blockID); + blockNum++; + await this.stageBlock(blockID, body, length, { + customerProvidedKey: options.customerProvidedKey, + conditions: options.conditions, + encryptionScope: options.encryptionScope, + tracingOptions: updatedOptions.tracingOptions, + }); + // Update progress after block is successfully uploaded to server, in case of block trying + transferProgress += length; + if (options.onProgress) { + options.onProgress({ loadedBytes: transferProgress }); + } + }, + // concurrency should set a smaller value than maxConcurrency, which is helpful to + // reduce the possibility when a outgoing handler waits for stream data, in + // this situation, outgoing handlers are blocked. + // Outgoing queue shouldn't be empty. + Math.ceil((maxConcurrency / 4) * 3)); + await scheduler.do(); + return (0, utils_common_js_1.assertResponse)(await this.commitBlockList(blockList, { + ...options, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } +} +exports.BlockBlobClient = BlockBlobClient; +/** + * PageBlobClient defines a set of operations applicable to page blobs. + */ +class PageBlobClient extends BlobClient { + /** + * pageBlobsContext provided by protocol layer. + */ + pageBlobContext; + constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, blobNameOrOptions, + // Legacy, no fix for eslint error without breaking. Disable it for this interface. + /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ + options) { + // In TypeScript we cannot simply pass all parameters to super() like below so have to duplicate the code instead. + // super(s, credentialOrPipelineOrContainerNameOrOptions, blobNameOrOptions, options); + let pipeline; + let url; + options = options || {}; + if ((0, Pipeline_js_1.isPipelineLike)(credentialOrPipelineOrContainerName)) { + // (url: string, pipeline: Pipeline) + url = urlOrConnectionString; + pipeline = credentialOrPipelineOrContainerName; + } + else if ((core_util_1.isNodeLike && credentialOrPipelineOrContainerName instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential) || + credentialOrPipelineOrContainerName instanceof AnonymousCredential_js_1.AnonymousCredential || + (0, core_auth_1.isTokenCredential)(credentialOrPipelineOrContainerName)) { + // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) + url = urlOrConnectionString; + options = blobNameOrOptions; + pipeline = (0, Pipeline_js_1.newPipeline)(credentialOrPipelineOrContainerName, options); + } + else if (!credentialOrPipelineOrContainerName && + typeof credentialOrPipelineOrContainerName !== "string") { + // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) + // The second parameter is undefined. Use anonymous credential. + url = urlOrConnectionString; + pipeline = (0, Pipeline_js_1.newPipeline)(new AnonymousCredential_js_1.AnonymousCredential(), options); + } + else if (credentialOrPipelineOrContainerName && + typeof credentialOrPipelineOrContainerName === "string" && + blobNameOrOptions && + typeof blobNameOrOptions === "string") { + // (connectionString: string, containerName: string, blobName: string, options?: StoragePipelineOptions) + const containerName = credentialOrPipelineOrContainerName; + const blobName = blobNameOrOptions; + const extractedCreds = (0, utils_common_js_1.extractConnectionStringParts)(urlOrConnectionString); + if (extractedCreds.kind === "AccountConnString") { + if (core_util_1.isNodeLike) { + const sharedKeyCredential = new StorageSharedKeyCredential_js_1.StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey); + url = (0, utils_common_js_1.appendToURLPath)((0, utils_common_js_1.appendToURLPath)(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)); + if (!options.proxyOptions) { + options.proxyOptions = (0, core_rest_pipeline_1.getDefaultProxySettings)(extractedCreds.proxyUri); + } + pipeline = (0, Pipeline_js_1.newPipeline)(sharedKeyCredential, options); + } + else { + throw new Error("Account connection string is only supported in Node.js environment"); + } + } + else if (extractedCreds.kind === "SASConnString") { + url = + (0, utils_common_js_1.appendToURLPath)((0, utils_common_js_1.appendToURLPath)(extractedCreds.url, encodeURIComponent(containerName)), encodeURIComponent(blobName)) + + "?" + + extractedCreds.accountSas; + pipeline = (0, Pipeline_js_1.newPipeline)(new AnonymousCredential_js_1.AnonymousCredential(), options); + } + else { + throw new Error("Connection string must be either an Account connection string or a SAS connection string"); + } + } + else { + throw new Error("Expecting non-empty strings for containerName and blobName parameters"); + } + super(url, pipeline); + this.pageBlobContext = this.storageClientContext.pageBlob; + } + /** + * Creates a new PageBlobClient object identical to the source but with the + * specified snapshot timestamp. + * Provide "" will remove the snapshot and return a Client to the base blob. + * + * @param snapshot - The snapshot timestamp. + * @returns A new PageBlobClient object identical to the source but with the specified snapshot timestamp. + */ + withSnapshot(snapshot) { + return new PageBlobClient((0, utils_common_js_1.setURLParameter)(this.url, constants_js_1.URLConstants.Parameters.SNAPSHOT, snapshot.length === 0 ? undefined : snapshot), this.pipeline); + } + /** + * Creates a page blob of the specified length. Call uploadPages to upload data + * data to a page blob. + * @see https://learn.microsoft.com/rest/api/storageservices/put-blob + * + * @param size - size of the page blob. + * @param options - Options to the Page Blob Create operation. + * @returns Response data for the Page Blob Create operation. + */ + async create(size, options = {}) { + options.conditions = options.conditions || {}; + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("PageBlobClient-create", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.pageBlobContext.create(0, size, { + abortSignal: options.abortSignal, + blobHttpHeaders: options.blobHTTPHeaders, + blobSequenceNumber: options.blobSequenceNumber, + leaseAccessConditions: options.conditions, + metadata: options.metadata, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + cpkInfo: options.customerProvidedKey, + encryptionScope: options.encryptionScope, + immutabilityPolicyExpiry: options.immutabilityPolicy?.expiriesOn, + immutabilityPolicyMode: options.immutabilityPolicy?.policyMode, + legalHold: options.legalHold, + tier: (0, models_js_1.toAccessTier)(options.tier), + blobTagsString: (0, utils_common_js_1.toBlobTagsString)(options.tags), + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Creates a page blob of the specified length. Call uploadPages to upload data + * data to a page blob. If the blob with the same name already exists, the content + * of the existing blob will remain unchanged. + * @see https://learn.microsoft.com/rest/api/storageservices/put-blob + * + * @param size - size of the page blob. + * @param options - + */ + async createIfNotExists(size, options = {}) { + return tracing_js_1.tracingClient.withSpan("PageBlobClient-createIfNotExists", options, async (updatedOptions) => { + try { + const conditions = { ifNoneMatch: constants_js_1.ETagAny }; + const res = (0, utils_common_js_1.assertResponse)(await this.create(size, { + ...options, + conditions, + tracingOptions: updatedOptions.tracingOptions, + })); + return { + succeeded: true, + ...res, + _response: res._response, // _response is made non-enumerable + }; + } + catch (e) { + if (e.details?.errorCode === "BlobAlreadyExists") { + return { + succeeded: false, + ...e.response?.parsedHeaders, + _response: e.response, + }; + } + throw e; + } + }); + } + /** + * Writes 1 or more pages to the page blob. The start and end offsets must be a multiple of 512. + * @see https://learn.microsoft.com/rest/api/storageservices/put-page + * + * @param body - Data to upload + * @param offset - Offset of destination page blob + * @param count - Content length of the body, also number of bytes to be uploaded + * @param options - Options to the Page Blob Upload Pages operation. + * @returns Response data for the Page Blob Upload Pages operation. + */ + async uploadPages(body, offset, count, options = {}) { + options.conditions = options.conditions || {}; + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("PageBlobClient-uploadPages", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.pageBlobContext.uploadPages(count, body, { + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + requestOptions: { + onUploadProgress: options.onProgress, + }, + range: (0, Range_js_1.rangeToString)({ offset, count }), + sequenceNumberAccessConditions: options.conditions, + transactionalContentMD5: options.transactionalContentMD5, + transactionalContentCrc64: options.transactionalContentCrc64, + cpkInfo: options.customerProvidedKey, + encryptionScope: options.encryptionScope, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * The Upload Pages operation writes a range of pages to a page blob where the + * contents are read from a URL. + * @see https://learn.microsoft.com/rest/api/storageservices/put-page-from-url + * + * @param sourceURL - Specify a URL to the copy source, Shared Access Signature(SAS) maybe needed for authentication + * @param sourceOffset - The source offset to copy from. Pass 0 to copy from the beginning of source page blob + * @param destOffset - Offset of destination page blob + * @param count - Number of bytes to be uploaded from source page blob + * @param options - + */ + async uploadPagesFromURL(sourceURL, sourceOffset, destOffset, count, options = {}) { + options.conditions = options.conditions || {}; + options.sourceConditions = options.sourceConditions || {}; + (0, models_js_1.ensureCpkIfSpecified)(options.customerProvidedKey, this.isHttps); + return tracing_js_1.tracingClient.withSpan("PageBlobClient-uploadPagesFromURL", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.pageBlobContext.uploadPagesFromURL(sourceURL, (0, Range_js_1.rangeToString)({ offset: sourceOffset, count }), 0, (0, Range_js_1.rangeToString)({ offset: destOffset, count }), { + abortSignal: options.abortSignal, + sourceContentMD5: options.sourceContentMD5, + sourceContentCrc64: options.sourceContentCrc64, + leaseAccessConditions: options.conditions, + sequenceNumberAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + sourceModifiedAccessConditions: { + sourceIfMatch: options.sourceConditions?.ifMatch, + sourceIfModifiedSince: options.sourceConditions?.ifModifiedSince, + sourceIfNoneMatch: options.sourceConditions?.ifNoneMatch, + sourceIfUnmodifiedSince: options.sourceConditions?.ifUnmodifiedSince, + }, + cpkInfo: options.customerProvidedKey, + encryptionScope: options.encryptionScope, + copySourceAuthorization: (0, utils_common_js_1.httpAuthorizationToString)(options.sourceAuthorization), + fileRequestIntent: options.sourceShareTokenIntent, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Frees the specified pages from the page blob. + * @see https://learn.microsoft.com/rest/api/storageservices/put-page + * + * @param offset - Starting byte position of the pages to clear. + * @param count - Number of bytes to clear. + * @param options - Options to the Page Blob Clear Pages operation. + * @returns Response data for the Page Blob Clear Pages operation. + */ + async clearPages(offset = 0, count, options = {}) { + options.conditions = options.conditions || {}; + return tracing_js_1.tracingClient.withSpan("PageBlobClient-clearPages", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.pageBlobContext.clearPages(0, { + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + range: (0, Range_js_1.rangeToString)({ offset, count }), + sequenceNumberAccessConditions: options.conditions, + cpkInfo: options.customerProvidedKey, + encryptionScope: options.encryptionScope, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Returns the list of valid page ranges for a page blob or snapshot of a page blob. + * @see https://learn.microsoft.com/rest/api/storageservices/get-page-ranges + * + * @param offset - Starting byte position of the page ranges. + * @param count - Number of bytes to get. + * @param options - Options to the Page Blob Get Ranges operation. + * @returns Response data for the Page Blob Get Ranges operation. + */ + async getPageRanges(offset = 0, count, options = {}) { + options.conditions = options.conditions || {}; + return tracing_js_1.tracingClient.withSpan("PageBlobClient-getPageRanges", options, async (updatedOptions) => { + const response = (0, utils_common_js_1.assertResponse)(await this.pageBlobContext.getPageRanges({ + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + range: (0, Range_js_1.rangeToString)({ offset, count }), + tracingOptions: updatedOptions.tracingOptions, + })); + return (0, PageBlobRangeResponse_js_1.rangeResponseFromModel)(response); + }); + } + /** + * getPageRangesSegment returns a single segment of page ranges starting from the + * specified Marker. Use an empty Marker to start enumeration from the beginning. + * After getting a segment, process it, and then call getPageRangesSegment again + * (passing the the previously-returned Marker) to get the next segment. + * @see https://learn.microsoft.com/rest/api/storageservices/get-page-ranges + * + * @param offset - Starting byte position of the page ranges. + * @param count - Number of bytes to get. + * @param marker - A string value that identifies the portion of the list to be returned with the next list operation. + * @param options - Options to PageBlob Get Page Ranges Segment operation. + */ + async listPageRangesSegment(offset = 0, count, marker, options = {}) { + return tracing_js_1.tracingClient.withSpan("PageBlobClient-getPageRangesSegment", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.pageBlobContext.getPageRanges({ + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + range: (0, Range_js_1.rangeToString)({ offset, count }), + marker: marker, + maxPageSize: options.maxPageSize, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Returns an AsyncIterableIterator for {@link PageBlobGetPageRangesResponseModel} + * + * @param offset - Starting byte position of the page ranges. + * @param count - Number of bytes to get. + * @param marker - A string value that identifies the portion of + * the get of page ranges to be returned with the next getting operation. The + * operation returns the ContinuationToken value within the response body if the + * getting operation did not return all page ranges remaining within the current page. + * The ContinuationToken value can be used as the value for + * the marker parameter in a subsequent call to request the next page of get + * items. The marker value is opaque to the client. + * @param options - Options to List Page Ranges operation. + */ + async *listPageRangeItemSegments(offset = 0, count, marker, options = {}) { + let getPageRangeItemSegmentsResponse; + if (!!marker || marker === undefined) { + do { + getPageRangeItemSegmentsResponse = await this.listPageRangesSegment(offset, count, marker, options); + marker = getPageRangeItemSegmentsResponse.continuationToken; + yield await getPageRangeItemSegmentsResponse; + } while (marker); + } + } + /** + * Returns an AsyncIterableIterator of {@link PageRangeInfo} objects + * + * @param offset - Starting byte position of the page ranges. + * @param count - Number of bytes to get. + * @param options - Options to List Page Ranges operation. + */ + async *listPageRangeItems(offset = 0, count, options = {}) { + let marker; + for await (const getPageRangesSegment of this.listPageRangeItemSegments(offset, count, marker, options)) { + yield* (0, utils_common_js_1.ExtractPageRangeInfoItems)(getPageRangesSegment); + } + } + /** + * Returns an async iterable iterator to list of page ranges for a page blob. + * @see https://learn.microsoft.com/rest/api/storageservices/get-page-ranges + * + * .byPage() returns an async iterable iterator to list of page ranges for a page blob. + * + * ```ts snippet:ClientsListPageBlobs + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * const containerName = ""; + * const blobName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * const pageBlobClient = containerClient.getPageBlobClient(blobName); + * + * // Example using `for await` syntax + * let i = 1; + * for await (const pageRange of pageBlobClient.listPageRanges()) { + * console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`); + * } + * + * // Example using `iter.next()` syntax + * i = 1; + * const iter = pageBlobClient.listPageRanges(); + * let { value, done } = await iter.next(); + * while (!done) { + * console.log(`Page range ${i++}: ${value.start} - ${value.end}`); + * ({ value, done } = await iter.next()); + * } + * + * // Example using `byPage()` syntax + * i = 1; + * for await (const page of pageBlobClient.listPageRanges().byPage({ maxPageSize: 20 })) { + * for (const pageRange of page.pageRange || []) { + * console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`); + * } + * } + * + * // Example using paging with a marker + * i = 1; + * let iterator = pageBlobClient.listPageRanges().byPage({ maxPageSize: 2 }); + * let response = (await iterator.next()).value; + * // Prints 2 page ranges + * if (response.pageRange) { + * for (const pageRange of response.pageRange) { + * console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`); + * } + * } + * // Gets next marker + * let marker = response.continuationToken; + * // Passing next marker as continuationToken + * iterator = pageBlobClient.listPageRanges().byPage({ continuationToken: marker, maxPageSize: 10 }); + * response = (await iterator.next()).value; + * // Prints 10 page ranges + * if (response.pageRange) { + * for (const pageRange of response.pageRange) { + * console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`); + * } + * } + * ``` + * + * @param offset - Starting byte position of the page ranges. + * @param count - Number of bytes to get. + * @param options - Options to the Page Blob Get Ranges operation. + * @returns An asyncIterableIterator that supports paging. + */ + listPageRanges(offset = 0, count, options = {}) { + options.conditions = options.conditions || {}; + // AsyncIterableIterator to iterate over blobs + const iter = this.listPageRangeItems(offset, count, options); + return { + /** + * The next method, part of the iteration protocol + */ + next() { + return iter.next(); + }, + /** + * The connection to the async iterator, part of the iteration protocol + */ + [Symbol.asyncIterator]() { + return this; + }, + /** + * Return an AsyncIterableIterator that works a page at a time + */ + byPage: (settings = {}) => { + return this.listPageRangeItemSegments(offset, count, settings.continuationToken, { + maxPageSize: settings.maxPageSize, + ...options, + }); + }, + }; + } + /** + * Gets the collection of page ranges that differ between a specified snapshot and this page blob. + * @see https://learn.microsoft.com/rest/api/storageservices/get-page-ranges + * + * @param offset - Starting byte position of the page blob + * @param count - Number of bytes to get ranges diff. + * @param prevSnapshot - Timestamp of snapshot to retrieve the difference. + * @param options - Options to the Page Blob Get Page Ranges Diff operation. + * @returns Response data for the Page Blob Get Page Range Diff operation. + */ + async getPageRangesDiff(offset, count, prevSnapshot, options = {}) { + options.conditions = options.conditions || {}; + return tracing_js_1.tracingClient.withSpan("PageBlobClient-getPageRangesDiff", options, async (updatedOptions) => { + const result = (0, utils_common_js_1.assertResponse)(await this.pageBlobContext.getPageRangesDiff({ + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + prevsnapshot: prevSnapshot, + range: (0, Range_js_1.rangeToString)({ offset, count }), + tracingOptions: updatedOptions.tracingOptions, + })); + return (0, PageBlobRangeResponse_js_1.rangeResponseFromModel)(result); + }); + } + /** + * getPageRangesDiffSegment returns a single segment of page ranges starting from the + * specified Marker for difference between previous snapshot and the target page blob. + * Use an empty Marker to start enumeration from the beginning. + * After getting a segment, process it, and then call getPageRangesDiffSegment again + * (passing the the previously-returned Marker) to get the next segment. + * @see https://learn.microsoft.com/rest/api/storageservices/get-page-ranges + * + * @param offset - Starting byte position of the page ranges. + * @param count - Number of bytes to get. + * @param prevSnapshotOrUrl - Timestamp of snapshot to retrieve the difference or URL of snapshot to retrieve the difference. + * @param marker - A string value that identifies the portion of the get to be returned with the next get operation. + * @param options - Options to the Page Blob Get Page Ranges Diff operation. + */ + async listPageRangesDiffSegment(offset, count, prevSnapshotOrUrl, marker, options = {}) { + return tracing_js_1.tracingClient.withSpan("PageBlobClient-getPageRangesDiffSegment", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.pageBlobContext.getPageRangesDiff({ + abortSignal: options?.abortSignal, + leaseAccessConditions: options?.conditions, + modifiedAccessConditions: { + ...options?.conditions, + ifTags: options?.conditions?.tagConditions, + }, + prevsnapshot: prevSnapshotOrUrl, + range: (0, Range_js_1.rangeToString)({ + offset: offset, + count: count, + }), + marker: marker, + maxPageSize: options?.maxPageSize, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Returns an AsyncIterableIterator for {@link PageBlobGetPageRangesDiffResponseModel} + * + * + * @param offset - Starting byte position of the page ranges. + * @param count - Number of bytes to get. + * @param prevSnapshotOrUrl - Timestamp of snapshot to retrieve the difference or URL of snapshot to retrieve the difference. + * @param marker - A string value that identifies the portion of + * the get of page ranges to be returned with the next getting operation. The + * operation returns the ContinuationToken value within the response body if the + * getting operation did not return all page ranges remaining within the current page. + * The ContinuationToken value can be used as the value for + * the marker parameter in a subsequent call to request the next page of get + * items. The marker value is opaque to the client. + * @param options - Options to the Page Blob Get Page Ranges Diff operation. + */ + async *listPageRangeDiffItemSegments(offset, count, prevSnapshotOrUrl, marker, options) { + let getPageRangeItemSegmentsResponse; + if (!!marker || marker === undefined) { + do { + getPageRangeItemSegmentsResponse = await this.listPageRangesDiffSegment(offset, count, prevSnapshotOrUrl, marker, options); + marker = getPageRangeItemSegmentsResponse.continuationToken; + yield await getPageRangeItemSegmentsResponse; + } while (marker); + } + } + /** + * Returns an AsyncIterableIterator of {@link PageRangeInfo} objects + * + * @param offset - Starting byte position of the page ranges. + * @param count - Number of bytes to get. + * @param prevSnapshotOrUrl - Timestamp of snapshot to retrieve the difference or URL of snapshot to retrieve the difference. + * @param options - Options to the Page Blob Get Page Ranges Diff operation. + */ + async *listPageRangeDiffItems(offset, count, prevSnapshotOrUrl, options) { + let marker; + for await (const getPageRangesSegment of this.listPageRangeDiffItemSegments(offset, count, prevSnapshotOrUrl, marker, options)) { + yield* (0, utils_common_js_1.ExtractPageRangeInfoItems)(getPageRangesSegment); + } + } + /** + * Returns an async iterable iterator to list of page ranges that differ between a specified snapshot and this page blob. + * @see https://learn.microsoft.com/rest/api/storageservices/get-page-ranges + * + * .byPage() returns an async iterable iterator to list of page ranges that differ between a specified snapshot and this page blob. + * + * ```ts snippet:ClientsListPageBlobsDiff + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * const containerName = ""; + * const blobName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * const pageBlobClient = containerClient.getPageBlobClient(blobName); + * + * const offset = 0; + * const count = 1024; + * const previousSnapshot = ""; + * // Example using `for await` syntax + * let i = 1; + * for await (const pageRange of pageBlobClient.listPageRangesDiff(offset, count, previousSnapshot)) { + * console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`); + * } + * + * // Example using `iter.next()` syntax + * i = 1; + * const iter = pageBlobClient.listPageRangesDiff(offset, count, previousSnapshot); + * let { value, done } = await iter.next(); + * while (!done) { + * console.log(`Page range ${i++}: ${value.start} - ${value.end}`); + * ({ value, done } = await iter.next()); + * } + * + * // Example using `byPage()` syntax + * i = 1; + * for await (const page of pageBlobClient + * .listPageRangesDiff(offset, count, previousSnapshot) + * .byPage({ maxPageSize: 20 })) { + * for (const pageRange of page.pageRange || []) { + * console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`); + * } + * } + * + * // Example using paging with a marker + * i = 1; + * let iterator = pageBlobClient + * .listPageRangesDiff(offset, count, previousSnapshot) + * .byPage({ maxPageSize: 2 }); + * let response = (await iterator.next()).value; + * // Prints 2 page ranges + * if (response.pageRange) { + * for (const pageRange of response.pageRange) { + * console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`); + * } + * } + * // Gets next marker + * let marker = response.continuationToken; + * // Passing next marker as continuationToken + * iterator = pageBlobClient + * .listPageRangesDiff(offset, count, previousSnapshot) + * .byPage({ continuationToken: marker, maxPageSize: 10 }); + * response = (await iterator.next()).value; + * // Prints 10 page ranges + * if (response.pageRange) { + * for (const pageRange of response.pageRange) { + * console.log(`Page range ${i++}: ${pageRange.start} - ${pageRange.end}`); + * } + * } + * ``` + * + * @param offset - Starting byte position of the page ranges. + * @param count - Number of bytes to get. + * @param prevSnapshot - Timestamp of snapshot to retrieve the difference. + * @param options - Options to the Page Blob Get Ranges operation. + * @returns An asyncIterableIterator that supports paging. + */ + listPageRangesDiff(offset, count, prevSnapshot, options = {}) { + options.conditions = options.conditions || {}; + // AsyncIterableIterator to iterate over blobs + const iter = this.listPageRangeDiffItems(offset, count, prevSnapshot, { + ...options, + }); + return { + /** + * The next method, part of the iteration protocol + */ + next() { + return iter.next(); + }, + /** + * The connection to the async iterator, part of the iteration protocol + */ + [Symbol.asyncIterator]() { + return this; + }, + /** + * Return an AsyncIterableIterator that works a page at a time + */ + byPage: (settings = {}) => { + return this.listPageRangeDiffItemSegments(offset, count, prevSnapshot, settings.continuationToken, { + maxPageSize: settings.maxPageSize, + ...options, + }); + }, + }; + } + /** + * Gets the collection of page ranges that differ between a specified snapshot and this page blob for managed disks. + * @see https://learn.microsoft.com/rest/api/storageservices/get-page-ranges + * + * @param offset - Starting byte position of the page blob + * @param count - Number of bytes to get ranges diff. + * @param prevSnapshotUrl - URL of snapshot to retrieve the difference. + * @param options - Options to the Page Blob Get Page Ranges Diff operation. + * @returns Response data for the Page Blob Get Page Range Diff operation. + */ + async getPageRangesDiffForManagedDisks(offset, count, prevSnapshotUrl, options = {}) { + options.conditions = options.conditions || {}; + return tracing_js_1.tracingClient.withSpan("PageBlobClient-GetPageRangesDiffForManagedDisks", options, async (updatedOptions) => { + const response = (0, utils_common_js_1.assertResponse)(await this.pageBlobContext.getPageRangesDiff({ + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + prevSnapshotUrl, + range: (0, Range_js_1.rangeToString)({ offset, count }), + tracingOptions: updatedOptions.tracingOptions, + })); + return (0, PageBlobRangeResponse_js_1.rangeResponseFromModel)(response); + }); + } + /** + * Resizes the page blob to the specified size (which must be a multiple of 512). + * @see https://learn.microsoft.com/rest/api/storageservices/set-blob-properties + * + * @param size - Target size + * @param options - Options to the Page Blob Resize operation. + * @returns Response data for the Page Blob Resize operation. + */ + async resize(size, options = {}) { + options.conditions = options.conditions || {}; + return tracing_js_1.tracingClient.withSpan("PageBlobClient-resize", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.pageBlobContext.resize(size, { + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + encryptionScope: options.encryptionScope, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Sets a page blob's sequence number. + * @see https://learn.microsoft.com/rest/api/storageservices/set-blob-properties + * + * @param sequenceNumberAction - Indicates how the service should modify the blob's sequence number. + * @param sequenceNumber - Required if sequenceNumberAction is max or update + * @param options - Options to the Page Blob Update Sequence Number operation. + * @returns Response data for the Page Blob Update Sequence Number operation. + */ + async updateSequenceNumber(sequenceNumberAction, sequenceNumber, options = {}) { + options.conditions = options.conditions || {}; + return tracing_js_1.tracingClient.withSpan("PageBlobClient-updateSequenceNumber", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.pageBlobContext.updateSequenceNumber(sequenceNumberAction, { + abortSignal: options.abortSignal, + blobSequenceNumber: sequenceNumber, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Begins an operation to start an incremental copy from one page blob's snapshot to this page blob. + * The snapshot is copied such that only the differential changes between the previously + * copied snapshot are transferred to the destination. + * The copied snapshots are complete copies of the original snapshot and can be read or copied from as usual. + * @see https://learn.microsoft.com/rest/api/storageservices/incremental-copy-blob + * @see https://learn.microsoft.com/azure/virtual-machines/windows/incremental-snapshots + * + * @param copySource - Specifies the name of the source page blob snapshot. For example, + * https://myaccount.blob.core.windows.net/mycontainer/myblob?snapshot= + * @param options - Options to the Page Blob Copy Incremental operation. + * @returns Response data for the Page Blob Copy Incremental operation. + */ + async startCopyIncremental(copySource, options = {}) { + return tracing_js_1.tracingClient.withSpan("PageBlobClient-startCopyIncremental", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.pageBlobContext.copyIncremental(copySource, { + abortSignal: options.abortSignal, + modifiedAccessConditions: { + ...options.conditions, + ifTags: options.conditions?.tagConditions, + }, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } +} +exports.PageBlobClient = PageBlobClient; +//# sourceMappingURL=Clients.js.map + +/***/ }), + +/***/ 63750: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.ContainerClient = void 0; +const core_rest_pipeline_1 = __nccwpck_require__(29146); +const core_util_1 = __nccwpck_require__(80637); +const core_auth_1 = __nccwpck_require__(98834); +const AnonymousCredential_js_1 = __nccwpck_require__(42803); +const StorageSharedKeyCredential_js_1 = __nccwpck_require__(59155); +const Pipeline_js_1 = __nccwpck_require__(33781); +const StorageClient_js_1 = __nccwpck_require__(39484); +const tracing_js_1 = __nccwpck_require__(53683); +const utils_common_js_1 = __nccwpck_require__(16673); +const BlobSASSignatureValues_js_1 = __nccwpck_require__(48921); +const BlobLeaseClient_js_1 = __nccwpck_require__(20106); +const Clients_js_1 = __nccwpck_require__(54437); +const BlobBatchClient_js_1 = __nccwpck_require__(71861); +/** + * A ContainerClient represents a URL to the Azure Storage container allowing you to manipulate its blobs. + */ +class ContainerClient extends StorageClient_js_1.StorageClient { + /** + * containerContext provided by protocol layer. + */ + containerContext; + _containerName; + /** + * The name of the container. + */ + get containerName() { + return this._containerName; + } + constructor(urlOrConnectionString, credentialOrPipelineOrContainerName, + // Legacy, no fix for eslint error without breaking. Disable it for this interface. + /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ + options) { + let pipeline; + let url; + options = options || {}; + if ((0, Pipeline_js_1.isPipelineLike)(credentialOrPipelineOrContainerName)) { + // (url: string, pipeline: Pipeline) + url = urlOrConnectionString; + pipeline = credentialOrPipelineOrContainerName; + } + else if ((core_util_1.isNodeLike && credentialOrPipelineOrContainerName instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential) || + credentialOrPipelineOrContainerName instanceof AnonymousCredential_js_1.AnonymousCredential || + (0, core_auth_1.isTokenCredential)(credentialOrPipelineOrContainerName)) { + // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) + url = urlOrConnectionString; + pipeline = (0, Pipeline_js_1.newPipeline)(credentialOrPipelineOrContainerName, options); + } + else if (!credentialOrPipelineOrContainerName && + typeof credentialOrPipelineOrContainerName !== "string") { + // (url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions) + // The second parameter is undefined. Use anonymous credential. + url = urlOrConnectionString; + pipeline = (0, Pipeline_js_1.newPipeline)(new AnonymousCredential_js_1.AnonymousCredential(), options); + } + else if (credentialOrPipelineOrContainerName && + typeof credentialOrPipelineOrContainerName === "string") { + // (connectionString: string, containerName: string, blobName: string, options?: StoragePipelineOptions) + const containerName = credentialOrPipelineOrContainerName; + const extractedCreds = (0, utils_common_js_1.extractConnectionStringParts)(urlOrConnectionString); + if (extractedCreds.kind === "AccountConnString") { + if (core_util_1.isNodeLike) { + const sharedKeyCredential = new StorageSharedKeyCredential_js_1.StorageSharedKeyCredential(extractedCreds.accountName, extractedCreds.accountKey); + url = (0, utils_common_js_1.appendToURLPath)(extractedCreds.url, encodeURIComponent(containerName)); + if (!options.proxyOptions) { + options.proxyOptions = (0, core_rest_pipeline_1.getDefaultProxySettings)(extractedCreds.proxyUri); + } + pipeline = (0, Pipeline_js_1.newPipeline)(sharedKeyCredential, options); + } + else { + throw new Error("Account connection string is only supported in Node.js environment"); + } + } + else if (extractedCreds.kind === "SASConnString") { + url = + (0, utils_common_js_1.appendToURLPath)(extractedCreds.url, encodeURIComponent(containerName)) + + "?" + + extractedCreds.accountSas; + pipeline = (0, Pipeline_js_1.newPipeline)(new AnonymousCredential_js_1.AnonymousCredential(), options); + } + else { + throw new Error("Connection string must be either an Account connection string or a SAS connection string"); + } + } + else { + throw new Error("Expecting non-empty strings for containerName parameter"); + } + super(url, pipeline); + this._containerName = this.getContainerNameFromUrl(); + this.containerContext = this.storageClientContext.container; + } + /** + * Creates a new container under the specified account. If the container with + * the same name already exists, the operation fails. + * @see https://learn.microsoft.com/rest/api/storageservices/create-container + * Naming rules: @see https://learn.microsoft.com/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata + * + * @param options - Options to Container Create operation. + * + * + * Example usage: + * + * ```ts snippet:ContainerClientCreate + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * const containerName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * const createContainerResponse = await containerClient.create(); + * console.log("Container was created successfully", createContainerResponse.requestId); + * ``` + */ + async create(options = {}) { + return tracing_js_1.tracingClient.withSpan("ContainerClient-create", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.containerContext.create(updatedOptions)); + }); + } + /** + * Creates a new container under the specified account. If the container with + * the same name already exists, it is not changed. + * @see https://learn.microsoft.com/rest/api/storageservices/create-container + * Naming rules: @see https://learn.microsoft.com/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata + * + * @param options - + */ + async createIfNotExists(options = {}) { + return tracing_js_1.tracingClient.withSpan("ContainerClient-createIfNotExists", options, async (updatedOptions) => { + try { + const res = await this.create(updatedOptions); + return { + succeeded: true, + ...res, + _response: res._response, // _response is made non-enumerable + }; + } + catch (e) { + if (e.details?.errorCode === "ContainerAlreadyExists") { + return { + succeeded: false, + ...e.response?.parsedHeaders, + _response: e.response, + }; + } + else { + throw e; + } + } + }); + } + /** + * Returns true if the Azure container resource represented by this client exists; false otherwise. + * + * NOTE: use this function with care since an existing container might be deleted by other clients or + * applications. Vice versa new containers with the same name might be added by other clients or + * applications after this function completes. + * + * @param options - + */ + async exists(options = {}) { + return tracing_js_1.tracingClient.withSpan("ContainerClient-exists", options, async (updatedOptions) => { + try { + await this.getProperties({ + abortSignal: options.abortSignal, + tracingOptions: updatedOptions.tracingOptions, + }); + return true; + } + catch (e) { + if (e.statusCode === 404) { + return false; + } + throw e; + } + }); + } + /** + * Creates a {@link BlobClient} + * + * @param blobName - A blob name + * @returns A new BlobClient object for the given blob name. + */ + getBlobClient(blobName) { + return new Clients_js_1.BlobClient((0, utils_common_js_1.appendToURLPath)(this.url, (0, utils_common_js_1.EscapePath)(blobName)), this.pipeline); + } + /** + * Creates an {@link AppendBlobClient} + * + * @param blobName - An append blob name + */ + getAppendBlobClient(blobName) { + return new Clients_js_1.AppendBlobClient((0, utils_common_js_1.appendToURLPath)(this.url, (0, utils_common_js_1.EscapePath)(blobName)), this.pipeline); + } + /** + * Creates a {@link BlockBlobClient} + * + * @param blobName - A block blob name + * + * + * Example usage: + * + * ```ts snippet:ClientsUpload + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * const containerName = ""; + * const blobName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * const blockBlobClient = containerClient.getBlockBlobClient(blobName); + * + * const content = "Hello world!"; + * const uploadBlobResponse = await blockBlobClient.upload(content, content.length); + * ``` + */ + getBlockBlobClient(blobName) { + return new Clients_js_1.BlockBlobClient((0, utils_common_js_1.appendToURLPath)(this.url, (0, utils_common_js_1.EscapePath)(blobName)), this.pipeline); + } + /** + * Creates a {@link PageBlobClient} + * + * @param blobName - A page blob name + */ + getPageBlobClient(blobName) { + return new Clients_js_1.PageBlobClient((0, utils_common_js_1.appendToURLPath)(this.url, (0, utils_common_js_1.EscapePath)(blobName)), this.pipeline); + } + /** + * Returns all user-defined metadata and system properties for the specified + * container. The data returned does not include the container's list of blobs. + * @see https://learn.microsoft.com/rest/api/storageservices/get-container-properties + * + * WARNING: The `metadata` object returned in the response will have its keys in lowercase, even if + * they originally contained uppercase characters. This differs from the metadata keys returned by + * the `listContainers` method of {@link BlobServiceClient} using the `includeMetadata` option, which + * will retain their original casing. + * + * @param options - Options to Container Get Properties operation. + */ + async getProperties(options = {}) { + if (!options.conditions) { + options.conditions = {}; + } + return tracing_js_1.tracingClient.withSpan("ContainerClient-getProperties", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.containerContext.getProperties({ + abortSignal: options.abortSignal, + ...options.conditions, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Marks the specified container for deletion. The container and any blobs + * contained within it are later deleted during garbage collection. + * @see https://learn.microsoft.com/rest/api/storageservices/delete-container + * + * @param options - Options to Container Delete operation. + */ + async delete(options = {}) { + if (!options.conditions) { + options.conditions = {}; + } + return tracing_js_1.tracingClient.withSpan("ContainerClient-delete", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.containerContext.delete({ + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: options.conditions, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Marks the specified container for deletion if it exists. The container and any blobs + * contained within it are later deleted during garbage collection. + * @see https://learn.microsoft.com/rest/api/storageservices/delete-container + * + * @param options - Options to Container Delete operation. + */ + async deleteIfExists(options = {}) { + return tracing_js_1.tracingClient.withSpan("ContainerClient-deleteIfExists", options, async (updatedOptions) => { + try { + const res = await this.delete(updatedOptions); + return { + succeeded: true, + ...res, + _response: res._response, + }; + } + catch (e) { + if (e.details?.errorCode === "ContainerNotFound") { + return { + succeeded: false, + ...e.response?.parsedHeaders, + _response: e.response, + }; + } + throw e; + } + }); + } + /** + * Sets one or more user-defined name-value pairs for the specified container. + * + * If no option provided, or no metadata defined in the parameter, the container + * metadata will be removed. + * + * @see https://learn.microsoft.com/rest/api/storageservices/set-container-metadata + * + * @param metadata - Replace existing metadata with this value. + * If no value provided the existing metadata will be removed. + * @param options - Options to Container Set Metadata operation. + */ + async setMetadata(metadata, options = {}) { + if (!options.conditions) { + options.conditions = {}; + } + if (options.conditions.ifUnmodifiedSince) { + throw new RangeError("the IfUnmodifiedSince must have their default values because they are ignored by the blob service"); + } + return tracing_js_1.tracingClient.withSpan("ContainerClient-setMetadata", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.containerContext.setMetadata({ + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + metadata, + modifiedAccessConditions: options.conditions, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Gets the permissions for the specified container. The permissions indicate + * whether container data may be accessed publicly. + * + * WARNING: JavaScript Date will potentially lose precision when parsing startsOn and expiresOn strings. + * For example, new Date("2018-12-31T03:44:23.8827891Z").toISOString() will get "2018-12-31T03:44:23.882Z". + * + * @see https://learn.microsoft.com/rest/api/storageservices/get-container-acl + * + * @param options - Options to Container Get Access Policy operation. + */ + async getAccessPolicy(options = {}) { + if (!options.conditions) { + options.conditions = {}; + } + return tracing_js_1.tracingClient.withSpan("ContainerClient-getAccessPolicy", options, async (updatedOptions) => { + const response = (0, utils_common_js_1.assertResponse)(await this.containerContext.getAccessPolicy({ + abortSignal: options.abortSignal, + leaseAccessConditions: options.conditions, + tracingOptions: updatedOptions.tracingOptions, + })); + const res = { + _response: response._response, + blobPublicAccess: response.blobPublicAccess, + date: response.date, + etag: response.etag, + errorCode: response.errorCode, + lastModified: response.lastModified, + requestId: response.requestId, + clientRequestId: response.clientRequestId, + signedIdentifiers: [], + version: response.version, + }; + for (const identifier of response) { + let accessPolicy = undefined; + if (identifier.accessPolicy) { + accessPolicy = { + permissions: identifier.accessPolicy.permissions, + }; + if (identifier.accessPolicy.expiresOn) { + accessPolicy.expiresOn = new Date(identifier.accessPolicy.expiresOn); + } + if (identifier.accessPolicy.startsOn) { + accessPolicy.startsOn = new Date(identifier.accessPolicy.startsOn); + } + } + res.signedIdentifiers.push({ + accessPolicy, + id: identifier.id, + }); + } + return res; + }); + } + /** + * Sets the permissions for the specified container. The permissions indicate + * whether blobs in a container may be accessed publicly. + * + * When you set permissions for a container, the existing permissions are replaced. + * If no access or containerAcl provided, the existing container ACL will be + * removed. + * + * When you establish a stored access policy on a container, it may take up to 30 seconds to take effect. + * During this interval, a shared access signature that is associated with the stored access policy will + * fail with status code 403 (Forbidden), until the access policy becomes active. + * @see https://learn.microsoft.com/rest/api/storageservices/set-container-acl + * + * @param access - The level of public access to data in the container. + * @param containerAcl - Array of elements each having a unique Id and details of the access policy. + * @param options - Options to Container Set Access Policy operation. + */ + async setAccessPolicy(access, containerAcl, options = {}) { + options.conditions = options.conditions || {}; + return tracing_js_1.tracingClient.withSpan("ContainerClient-setAccessPolicy", options, async (updatedOptions) => { + const acl = []; + for (const identifier of containerAcl || []) { + acl.push({ + accessPolicy: { + expiresOn: identifier.accessPolicy.expiresOn + ? (0, utils_common_js_1.truncatedISO8061Date)(identifier.accessPolicy.expiresOn) + : "", + permissions: identifier.accessPolicy.permissions, + startsOn: identifier.accessPolicy.startsOn + ? (0, utils_common_js_1.truncatedISO8061Date)(identifier.accessPolicy.startsOn) + : "", + }, + id: identifier.id, + }); + } + return (0, utils_common_js_1.assertResponse)(await this.containerContext.setAccessPolicy({ + abortSignal: options.abortSignal, + access, + containerAcl: acl, + leaseAccessConditions: options.conditions, + modifiedAccessConditions: options.conditions, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + /** + * Get a {@link BlobLeaseClient} that manages leases on the container. + * + * @param proposeLeaseId - Initial proposed lease Id. + * @returns A new BlobLeaseClient object for managing leases on the container. + */ + getBlobLeaseClient(proposeLeaseId) { + return new BlobLeaseClient_js_1.BlobLeaseClient(this, proposeLeaseId); + } + /** + * Creates a new block blob, or updates the content of an existing block blob. + * + * Updating an existing block blob overwrites any existing metadata on the blob. + * Partial updates are not supported; the content of the existing blob is + * overwritten with the new content. To perform a partial update of a block blob's, + * use {@link BlockBlobClient.stageBlock} and {@link BlockBlobClient.commitBlockList}. + * + * This is a non-parallel uploading method, please use {@link BlockBlobClient.uploadFile}, + * {@link BlockBlobClient.uploadStream} or {@link BlockBlobClient.uploadBrowserData} for better + * performance with concurrency uploading. + * + * @see https://learn.microsoft.com/rest/api/storageservices/put-blob + * + * @param blobName - Name of the block blob to create or update. + * @param body - Blob, string, ArrayBuffer, ArrayBufferView or a function + * which returns a new Readable stream whose offset is from data source beginning. + * @param contentLength - Length of body in bytes. Use Buffer.byteLength() to calculate body length for a + * string including non non-Base64/Hex-encoded characters. + * @param options - Options to configure the Block Blob Upload operation. + * @returns Block Blob upload response data and the corresponding BlockBlobClient instance. + */ + async uploadBlockBlob(blobName, body, contentLength, options = {}) { + return tracing_js_1.tracingClient.withSpan("ContainerClient-uploadBlockBlob", options, async (updatedOptions) => { + const blockBlobClient = this.getBlockBlobClient(blobName); + const response = await blockBlobClient.upload(body, contentLength, updatedOptions); + return { + blockBlobClient, + response, + }; + }); + } + /** + * Marks the specified blob or snapshot for deletion. The blob is later deleted + * during garbage collection. Note that in order to delete a blob, you must delete + * all of its snapshots. You can delete both at the same time with the Delete + * Blob operation. + * @see https://learn.microsoft.com/rest/api/storageservices/delete-blob + * + * @param blobName - + * @param options - Options to Blob Delete operation. + * @returns Block blob deletion response data. + */ + async deleteBlob(blobName, options = {}) { + return tracing_js_1.tracingClient.withSpan("ContainerClient-deleteBlob", options, async (updatedOptions) => { + let blobClient = this.getBlobClient(blobName); + if (options.versionId) { + blobClient = blobClient.withVersion(options.versionId); + } + return blobClient.delete(updatedOptions); + }); + } + /** + * listBlobFlatSegment returns a single segment of blobs starting from the + * specified Marker. Use an empty Marker to start enumeration from the beginning. + * After getting a segment, process it, and then call listBlobsFlatSegment again + * (passing the the previously-returned Marker) to get the next segment. + * @see https://learn.microsoft.com/rest/api/storageservices/list-blobs + * + * @param marker - A string value that identifies the portion of the list to be returned with the next list operation. + * @param options - Options to Container List Blob Flat Segment operation. + */ + async listBlobFlatSegment(marker, options = {}) { + return tracing_js_1.tracingClient.withSpan("ContainerClient-listBlobFlatSegment", options, async (updatedOptions) => { + const response = (0, utils_common_js_1.assertResponse)(await this.containerContext.listBlobFlatSegment({ + marker, + ...options, + tracingOptions: updatedOptions.tracingOptions, + })); + const wrappedResponse = { + ...response, + _response: { + ...response._response, + parsedBody: (0, utils_common_js_1.ConvertInternalResponseOfListBlobFlat)(response._response.parsedBody), + }, // _response is made non-enumerable + segment: { + ...response.segment, + blobItems: response.segment.blobItems.map((blobItemInternal) => { + const blobItem = { + ...blobItemInternal, + name: (0, utils_common_js_1.BlobNameToString)(blobItemInternal.name), + tags: (0, utils_common_js_1.toTags)(blobItemInternal.blobTags), + objectReplicationSourceProperties: (0, utils_common_js_1.parseObjectReplicationRecord)(blobItemInternal.objectReplicationMetadata), + }; + return blobItem; + }), + }, + }; + return wrappedResponse; + }); + } + /** + * listBlobHierarchySegment returns a single segment of blobs starting from + * the specified Marker. Use an empty Marker to start enumeration from the + * beginning. After getting a segment, process it, and then call listBlobsHierarchicalSegment + * again (passing the the previously-returned Marker) to get the next segment. + * @see https://learn.microsoft.com/rest/api/storageservices/list-blobs + * + * @param delimiter - The character or string used to define the virtual hierarchy + * @param marker - A string value that identifies the portion of the list to be returned with the next list operation. + * @param options - Options to Container List Blob Hierarchy Segment operation. + */ + async listBlobHierarchySegment(delimiter, marker, options = {}) { + return tracing_js_1.tracingClient.withSpan("ContainerClient-listBlobHierarchySegment", options, async (updatedOptions) => { + const response = (0, utils_common_js_1.assertResponse)(await this.containerContext.listBlobHierarchySegment(delimiter, { + marker, + ...options, + tracingOptions: updatedOptions.tracingOptions, + })); + const wrappedResponse = { + ...response, + _response: { + ...response._response, + parsedBody: (0, utils_common_js_1.ConvertInternalResponseOfListBlobHierarchy)(response._response.parsedBody), + }, // _response is made non-enumerable + segment: { + ...response.segment, + blobItems: response.segment.blobItems.map((blobItemInternal) => { + const blobItem = { + ...blobItemInternal, + name: (0, utils_common_js_1.BlobNameToString)(blobItemInternal.name), + tags: (0, utils_common_js_1.toTags)(blobItemInternal.blobTags), + objectReplicationSourceProperties: (0, utils_common_js_1.parseObjectReplicationRecord)(blobItemInternal.objectReplicationMetadata), + }; + return blobItem; + }), + blobPrefixes: response.segment.blobPrefixes?.map((blobPrefixInternal) => { + const blobPrefix = { + ...blobPrefixInternal, + name: (0, utils_common_js_1.BlobNameToString)(blobPrefixInternal.name), + }; + return blobPrefix; + }), + }, + }; + return wrappedResponse; + }); + } + /** + * Returns an AsyncIterableIterator for ContainerListBlobFlatSegmentResponse + * + * @param marker - A string value that identifies the portion of + * the list of blobs to be returned with the next listing operation. The + * operation returns the ContinuationToken value within the response body if the + * listing operation did not return all blobs remaining to be listed + * with the current page. The ContinuationToken value can be used as the value for + * the marker parameter in a subsequent call to request the next page of list + * items. The marker value is opaque to the client. + * @param options - Options to list blobs operation. + */ + async *listSegments(marker, options = {}) { + let listBlobsFlatSegmentResponse; + if (!!marker || marker === undefined) { + do { + listBlobsFlatSegmentResponse = await this.listBlobFlatSegment(marker, options); + marker = listBlobsFlatSegmentResponse.continuationToken; + yield await listBlobsFlatSegmentResponse; + } while (marker); + } + } + /** + * Returns an AsyncIterableIterator of {@link BlobItem} objects + * + * @param options - Options to list blobs operation. + */ + async *listItems(options = {}) { + let marker; + for await (const listBlobsFlatSegmentResponse of this.listSegments(marker, options)) { + yield* listBlobsFlatSegmentResponse.segment.blobItems; + } + } + /** + * Returns an async iterable iterator to list all the blobs + * under the specified account. + * + * .byPage() returns an async iterable iterator to list the blobs in pages. + * + * ```ts snippet:ReadmeSampleListBlobs_Multiple + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * const containerName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * + * // Example using `for await` syntax + * let i = 1; + * const blobs = containerClient.listBlobsFlat(); + * for await (const blob of blobs) { + * console.log(`Blob ${i++}: ${blob.name}`); + * } + * + * // Example using `iter.next()` syntax + * i = 1; + * const iter = containerClient.listBlobsFlat(); + * let { value, done } = await iter.next(); + * while (!done) { + * console.log(`Blob ${i++}: ${value.name}`); + * ({ value, done } = await iter.next()); + * } + * + * // Example using `byPage()` syntax + * i = 1; + * for await (const page of containerClient.listBlobsFlat().byPage({ maxPageSize: 20 })) { + * for (const blob of page.segment.blobItems) { + * console.log(`Blob ${i++}: ${blob.name}`); + * } + * } + * + * // Example using paging with a marker + * i = 1; + * let iterator = containerClient.listBlobsFlat().byPage({ maxPageSize: 2 }); + * let response = (await iterator.next()).value; + * // Prints 2 blob names + * if (response.segment.blobItems) { + * for (const blob of response.segment.blobItems) { + * console.log(`Blob ${i++}: ${blob.name}`); + * } + * } + * // Gets next marker + * let marker = response.continuationToken; + * // Passing next marker as continuationToken + * iterator = containerClient.listBlobsFlat().byPage({ continuationToken: marker, maxPageSize: 10 }); + * response = (await iterator.next()).value; + * // Prints 10 blob names + * if (response.segment.blobItems) { + * for (const blob of response.segment.blobItems) { + * console.log(`Blob ${i++}: ${blob.name}`); + * } + * } + * ``` + * + * @param options - Options to list blobs. + * @returns An asyncIterableIterator that supports paging. + */ + listBlobsFlat(options = {}) { + const include = []; + if (options.includeCopy) { + include.push("copy"); + } + if (options.includeDeleted) { + include.push("deleted"); + } + if (options.includeMetadata) { + include.push("metadata"); + } + if (options.includeSnapshots) { + include.push("snapshots"); + } + if (options.includeVersions) { + include.push("versions"); + } + if (options.includeUncommitedBlobs) { + include.push("uncommittedblobs"); + } + if (options.includeTags) { + include.push("tags"); + } + if (options.includeDeletedWithVersions) { + include.push("deletedwithversions"); + } + if (options.includeImmutabilityPolicy) { + include.push("immutabilitypolicy"); + } + if (options.includeLegalHold) { + include.push("legalhold"); + } + if (options.prefix === "") { + options.prefix = undefined; + } + const updatedOptions = { + ...options, + ...(include.length > 0 ? { include: include } : {}), + }; + // AsyncIterableIterator to iterate over blobs + const iter = this.listItems(updatedOptions); + return { + /** + * The next method, part of the iteration protocol + */ + next() { + return iter.next(); + }, + /** + * The connection to the async iterator, part of the iteration protocol + */ + [Symbol.asyncIterator]() { + return this; + }, + /** + * Return an AsyncIterableIterator that works a page at a time + */ + byPage: (settings = {}) => { + return this.listSegments(settings.continuationToken, { + maxPageSize: settings.maxPageSize, + ...updatedOptions, + }); + }, + }; + } + /** + * Returns an AsyncIterableIterator for ContainerListBlobHierarchySegmentResponse + * + * @param delimiter - The character or string used to define the virtual hierarchy + * @param marker - A string value that identifies the portion of + * the list of blobs to be returned with the next listing operation. The + * operation returns the ContinuationToken value within the response body if the + * listing operation did not return all blobs remaining to be listed + * with the current page. The ContinuationToken value can be used as the value for + * the marker parameter in a subsequent call to request the next page of list + * items. The marker value is opaque to the client. + * @param options - Options to list blobs operation. + */ + async *listHierarchySegments(delimiter, marker, options = {}) { + let listBlobsHierarchySegmentResponse; + if (!!marker || marker === undefined) { + do { + listBlobsHierarchySegmentResponse = await this.listBlobHierarchySegment(delimiter, marker, options); + marker = listBlobsHierarchySegmentResponse.continuationToken; + yield await listBlobsHierarchySegmentResponse; + } while (marker); + } + } + /** + * Returns an AsyncIterableIterator for {@link BlobPrefix} and {@link BlobItem} objects. + * + * @param delimiter - The character or string used to define the virtual hierarchy + * @param options - Options to list blobs operation. + */ + async *listItemsByHierarchy(delimiter, options = {}) { + let marker; + for await (const listBlobsHierarchySegmentResponse of this.listHierarchySegments(delimiter, marker, options)) { + const segment = listBlobsHierarchySegmentResponse.segment; + if (segment.blobPrefixes) { + for (const prefix of segment.blobPrefixes) { + yield { + kind: "prefix", + ...prefix, + }; + } + } + for (const blob of segment.blobItems) { + yield { kind: "blob", ...blob }; + } + } + } + /** + * Returns an async iterable iterator to list all the blobs by hierarchy. + * under the specified account. + * + * .byPage() returns an async iterable iterator to list the blobs by hierarchy in pages. + * + * ```ts snippet:ReadmeSampleListBlobsByHierarchy + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * const containerName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * + * // Example using `for await` syntax + * let i = 1; + * const blobs = containerClient.listBlobsByHierarchy("/"); + * for await (const blob of blobs) { + * if (blob.kind === "prefix") { + * console.log(`\tBlobPrefix: ${blob.name}`); + * } else { + * console.log(`\tBlobItem: name - ${blob.name}`); + * } + * } + * + * // Example using `iter.next()` syntax + * i = 1; + * const iter = containerClient.listBlobsByHierarchy("/"); + * let { value, done } = await iter.next(); + * while (!done) { + * if (value.kind === "prefix") { + * console.log(`\tBlobPrefix: ${value.name}`); + * } else { + * console.log(`\tBlobItem: name - ${value.name}`); + * } + * ({ value, done } = await iter.next()); + * } + * + * // Example using `byPage()` syntax + * i = 1; + * for await (const page of containerClient.listBlobsByHierarchy("/").byPage({ maxPageSize: 20 })) { + * const segment = page.segment; + * if (segment.blobPrefixes) { + * for (const prefix of segment.blobPrefixes) { + * console.log(`\tBlobPrefix: ${prefix.name}`); + * } + * } + * for (const blob of page.segment.blobItems) { + * console.log(`\tBlobItem: name - ${blob.name}`); + * } + * } + * + * // Example using paging with a marker + * i = 1; + * let iterator = containerClient.listBlobsByHierarchy("/").byPage({ maxPageSize: 2 }); + * let response = (await iterator.next()).value; + * // Prints 2 blob names + * if (response.blobPrefixes) { + * for (const prefix of response.blobPrefixes) { + * console.log(`\tBlobPrefix: ${prefix.name}`); + * } + * } + * if (response.segment.blobItems) { + * for (const blob of response.segment.blobItems) { + * console.log(`\tBlobItem: name - ${blob.name}`); + * } + * } + * // Gets next marker + * let marker = response.continuationToken; + * // Passing next marker as continuationToken + * iterator = containerClient + * .listBlobsByHierarchy("/") + * .byPage({ continuationToken: marker, maxPageSize: 10 }); + * response = (await iterator.next()).value; + * // Prints 10 blob names + * if (response.blobPrefixes) { + * for (const prefix of response.blobPrefixes) { + * console.log(`\tBlobPrefix: ${prefix.name}`); + * } + * } + * if (response.segment.blobItems) { + * for (const blob of response.segment.blobItems) { + * console.log(`Blob ${i++}: ${blob.name}`); + * } + * } + * ``` + * + * @param delimiter - The character or string used to define the virtual hierarchy + * @param options - Options to list blobs operation. + */ + listBlobsByHierarchy(delimiter, options = {}) { + if (delimiter === "") { + throw new RangeError("delimiter should contain one or more characters"); + } + const include = []; + if (options.includeCopy) { + include.push("copy"); + } + if (options.includeDeleted) { + include.push("deleted"); + } + if (options.includeMetadata) { + include.push("metadata"); + } + if (options.includeSnapshots) { + include.push("snapshots"); + } + if (options.includeVersions) { + include.push("versions"); + } + if (options.includeUncommitedBlobs) { + include.push("uncommittedblobs"); + } + if (options.includeTags) { + include.push("tags"); + } + if (options.includeDeletedWithVersions) { + include.push("deletedwithversions"); + } + if (options.includeImmutabilityPolicy) { + include.push("immutabilitypolicy"); + } + if (options.includeLegalHold) { + include.push("legalhold"); + } + if (options.prefix === "") { + options.prefix = undefined; + } + const updatedOptions = { + ...options, + ...(include.length > 0 ? { include: include } : {}), + }; + // AsyncIterableIterator to iterate over blob prefixes and blobs + const iter = this.listItemsByHierarchy(delimiter, updatedOptions); + return { + /** + * The next method, part of the iteration protocol + */ + async next() { + return iter.next(); + }, + /** + * The connection to the async iterator, part of the iteration protocol + */ + [Symbol.asyncIterator]() { + return this; + }, + /** + * Return an AsyncIterableIterator that works a page at a time + */ + byPage: (settings = {}) => { + return this.listHierarchySegments(delimiter, settings.continuationToken, { + maxPageSize: settings.maxPageSize, + ...updatedOptions, + }); + }, + }; + } + /** + * The Filter Blobs operation enables callers to list blobs in the container whose tags + * match a given search expression. + * + * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. + * The given expression must evaluate to true for a blob to be returned in the results. + * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; + * however, only a subset of the OData filter syntax is supported in the Blob service. + * @param marker - A string value that identifies the portion of + * the list of blobs to be returned with the next listing operation. The + * operation returns the continuationToken value within the response body if the + * listing operation did not return all blobs remaining to be listed + * with the current page. The continuationToken value can be used as the value for + * the marker parameter in a subsequent call to request the next page of list + * items. The marker value is opaque to the client. + * @param options - Options to find blobs by tags. + */ + async findBlobsByTagsSegment(tagFilterSqlExpression, marker, options = {}) { + return tracing_js_1.tracingClient.withSpan("ContainerClient-findBlobsByTagsSegment", options, async (updatedOptions) => { + const response = (0, utils_common_js_1.assertResponse)(await this.containerContext.filterBlobs({ + abortSignal: options.abortSignal, + where: tagFilterSqlExpression, + marker, + maxPageSize: options.maxPageSize, + tracingOptions: updatedOptions.tracingOptions, + })); + const wrappedResponse = { + ...response, + _response: response._response, // _response is made non-enumerable + blobs: response.blobs.map((blob) => { + let tagValue = ""; + if (blob.tags?.blobTagSet.length === 1) { + tagValue = blob.tags.blobTagSet[0].value; + } + return { ...blob, tags: (0, utils_common_js_1.toTags)(blob.tags), tagValue }; + }), + }; + return wrappedResponse; + }); + } + /** + * Returns an AsyncIterableIterator for ContainerFindBlobsByTagsSegmentResponse. + * + * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. + * The given expression must evaluate to true for a blob to be returned in the results. + * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; + * however, only a subset of the OData filter syntax is supported in the Blob service. + * @param marker - A string value that identifies the portion of + * the list of blobs to be returned with the next listing operation. The + * operation returns the continuationToken value within the response body if the + * listing operation did not return all blobs remaining to be listed + * with the current page. The continuationToken value can be used as the value for + * the marker parameter in a subsequent call to request the next page of list + * items. The marker value is opaque to the client. + * @param options - Options to find blobs by tags. + */ + async *findBlobsByTagsSegments(tagFilterSqlExpression, marker, options = {}) { + let response; + if (!!marker || marker === undefined) { + do { + response = await this.findBlobsByTagsSegment(tagFilterSqlExpression, marker, options); + response.blobs = response.blobs || []; + marker = response.continuationToken; + yield response; + } while (marker); + } + } + /** + * Returns an AsyncIterableIterator for blobs. + * + * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. + * The given expression must evaluate to true for a blob to be returned in the results. + * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; + * however, only a subset of the OData filter syntax is supported in the Blob service. + * @param options - Options to findBlobsByTagsItems. + */ + async *findBlobsByTagsItems(tagFilterSqlExpression, options = {}) { + let marker; + for await (const segment of this.findBlobsByTagsSegments(tagFilterSqlExpression, marker, options)) { + yield* segment.blobs; + } + } + /** + * Returns an async iterable iterator to find all blobs with specified tag + * under the specified container. + * + * .byPage() returns an async iterable iterator to list the blobs in pages. + * + * Example using `for await` syntax: + * + * ```ts snippet:ReadmeSampleFindBlobsByTags + * import { BlobServiceClient } from "@azure/storage-blob"; + * import { DefaultAzureCredential } from "@azure/identity"; + * + * const account = ""; + * const blobServiceClient = new BlobServiceClient( + * `https://${account}.blob.core.windows.net`, + * new DefaultAzureCredential(), + * ); + * + * const containerName = ""; + * const containerClient = blobServiceClient.getContainerClient(containerName); + * + * // Example using `for await` syntax + * let i = 1; + * for await (const blob of containerClient.findBlobsByTags("tagkey='tagvalue'")) { + * console.log(`Blob ${i++}: ${blob.name}`); + * } + * + * // Example using `iter.next()` syntax + * i = 1; + * const iter = containerClient.findBlobsByTags("tagkey='tagvalue'"); + * let { value, done } = await iter.next(); + * while (!done) { + * console.log(`Blob ${i++}: ${value.name}`); + * ({ value, done } = await iter.next()); + * } + * + * // Example using `byPage()` syntax + * i = 1; + * for await (const page of containerClient + * .findBlobsByTags("tagkey='tagvalue'") + * .byPage({ maxPageSize: 20 })) { + * for (const blob of page.blobs) { + * console.log(`Blob ${i++}: ${blob.name}`); + * } + * } + * + * // Example using paging with a marker + * i = 1; + * let iterator = containerClient.findBlobsByTags("tagkey='tagvalue'").byPage({ maxPageSize: 2 }); + * let response = (await iterator.next()).value; + * // Prints 2 blob names + * if (response.blobs) { + * for (const blob of response.blobs) { + * console.log(`Blob ${i++}: ${blob.name}`); + * } + * } + * // Gets next marker + * let marker = response.continuationToken; + * // Passing next marker as continuationToken + * iterator = containerClient + * .findBlobsByTags("tagkey='tagvalue'") + * .byPage({ continuationToken: marker, maxPageSize: 10 }); + * response = (await iterator.next()).value; + * // Prints 10 blob names + * if (response.blobs) { + * for (const blob of response.blobs) { + * console.log(`Blob ${i++}: ${blob.name}`); + * } + * } + * ``` + * + * @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression. + * The given expression must evaluate to true for a blob to be returned in the results. + * The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter; + * however, only a subset of the OData filter syntax is supported in the Blob service. + * @param options - Options to find blobs by tags. + */ + findBlobsByTags(tagFilterSqlExpression, options = {}) { + // AsyncIterableIterator to iterate over blobs + const listSegmentOptions = { + ...options, + }; + const iter = this.findBlobsByTagsItems(tagFilterSqlExpression, listSegmentOptions); + return { + /** + * The next method, part of the iteration protocol + */ + next() { + return iter.next(); + }, + /** + * The connection to the async iterator, part of the iteration protocol + */ + [Symbol.asyncIterator]() { + return this; + }, + /** + * Return an AsyncIterableIterator that works a page at a time + */ + byPage: (settings = {}) => { + return this.findBlobsByTagsSegments(tagFilterSqlExpression, settings.continuationToken, { + maxPageSize: settings.maxPageSize, + ...listSegmentOptions, + }); + }, + }; + } + /** + * The Get Account Information operation returns the sku name and account kind + * for the specified account. + * The Get Account Information operation is available on service versions beginning + * with version 2018-03-28. + * @see https://learn.microsoft.com/rest/api/storageservices/get-account-information + * + * @param options - Options to the Service Get Account Info operation. + * @returns Response data for the Service Get Account Info operation. + */ + async getAccountInfo(options = {}) { + return tracing_js_1.tracingClient.withSpan("ContainerClient-getAccountInfo", options, async (updatedOptions) => { + return (0, utils_common_js_1.assertResponse)(await this.containerContext.getAccountInfo({ + abortSignal: options.abortSignal, + tracingOptions: updatedOptions.tracingOptions, + })); + }); + } + getContainerNameFromUrl() { + let containerName; + try { + // URL may look like the following + // "https://myaccount.blob.core.windows.net/mycontainer?sasString"; + // "https://myaccount.blob.core.windows.net/mycontainer"; + // IPv4/IPv6 address hosts, Endpoints - `http://127.0.0.1:10000/devstoreaccount1/containername` + // http://localhost:10001/devstoreaccount1/containername + const parsedUrl = new URL(this.url); + if (parsedUrl.hostname.split(".")[1] === "blob") { + // "https://myaccount.blob.core.windows.net/containername". + // "https://customdomain.com/containername". + // .getPath() -> /containername + containerName = parsedUrl.pathname.split("/")[1]; + } + else if ((0, utils_common_js_1.isIpEndpointStyle)(parsedUrl)) { + // IPv4/IPv6 address hosts... Example - http://192.0.0.10:10001/devstoreaccount1/containername + // Single word domain without a [dot] in the endpoint... Example - http://localhost:10001/devstoreaccount1/containername + // .getPath() -> /devstoreaccount1/containername + containerName = parsedUrl.pathname.split("/")[2]; + } + else { + // "https://customdomain.com/containername". + // .getPath() -> /containername + containerName = parsedUrl.pathname.split("/")[1]; + } + // decode the encoded containerName - to get all the special characters that might be present in it + containerName = decodeURIComponent(containerName); + if (!containerName) { + throw new Error("Provided containerName is invalid."); + } + return containerName; + } + catch (error) { + throw new Error("Unable to extract containerName with provided information."); + } + } + /** + * Only available for ContainerClient constructed with a shared key credential. + * + * Generates a Blob Container Service Shared Access Signature (SAS) URI based on the client properties + * and parameters passed in. The SAS is signed by the shared key credential of the client. + * + * @see https://learn.microsoft.com/rest/api/storageservices/constructing-a-service-sas + * + * @param options - Optional parameters. + * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token. + */ + generateSasUrl(options) { + return new Promise((resolve) => { + if (!(this.credential instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential)) { + throw new RangeError("Can only generate the SAS when the client is initialized with a shared key credential"); + } + const sas = (0, BlobSASSignatureValues_js_1.generateBlobSASQueryParameters)({ + containerName: this._containerName, + ...options, + }, this.credential).toString(); + resolve((0, utils_common_js_1.appendToURLQuery)(this.url, sas)); + }); + } + /** + * Only available for ContainerClient constructed with a shared key credential. + * + * Generates string to sign for a Blob Container Service Shared Access Signature (SAS) URI + * based on the client properties and parameters passed in. The SAS is signed by the shared key credential of the client. + * + * @see https://learn.microsoft.com/rest/api/storageservices/constructing-a-service-sas + * + * @param options - Optional parameters. + * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token. + */ + /* eslint-disable-next-line @azure/azure-sdk/ts-naming-options*/ + generateSasStringToSign(options) { + if (!(this.credential instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential)) { + throw new RangeError("Can only generate the SAS when the client is initialized with a shared key credential"); + } + return (0, BlobSASSignatureValues_js_1.generateBlobSASQueryParametersInternal)({ + containerName: this._containerName, + ...options, + }, this.credential).stringToSign; + } + /** + * Generates a Blob Container Service Shared Access Signature (SAS) URI based on the client properties + * and parameters passed in. The SAS is signed by the input user delegation key. + * + * @see https://learn.microsoft.com/rest/api/storageservices/constructing-a-service-sas + * + * @param options - Optional parameters. + * @param userDelegationKey - Return value of `blobServiceClient.getUserDelegationKey()` + * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token. + */ + generateUserDelegationSasUrl(options, userDelegationKey) { + return new Promise((resolve) => { + const sas = (0, BlobSASSignatureValues_js_1.generateBlobSASQueryParameters)({ + containerName: this._containerName, + ...options, + }, userDelegationKey, this.accountName).toString(); + resolve((0, utils_common_js_1.appendToURLQuery)(this.url, sas)); + }); + } + /** + * Generates string to sign for a Blob Container Service Shared Access Signature (SAS) URI + * based on the client properties and parameters passed in. The SAS is signed by the input user delegation key. + * + * @see https://learn.microsoft.com/rest/api/storageservices/constructing-a-service-sas + * + * @param options - Optional parameters. + * @param userDelegationKey - Return value of `blobServiceClient.getUserDelegationKey()` + * @returns The SAS URI consisting of the URI to the resource represented by this client, followed by the generated SAS token. + */ + generateUserDelegationSasStringToSign(options, userDelegationKey) { + return (0, BlobSASSignatureValues_js_1.generateBlobSASQueryParametersInternal)({ + containerName: this._containerName, + ...options, + }, userDelegationKey, this.accountName).stringToSign; + } + /** + * Creates a BlobBatchClient object to conduct batch operations. + * + * @see https://learn.microsoft.com/rest/api/storageservices/blob-batch + * + * @returns A new BlobBatchClient object for this container. + */ + getBlobBatchClient() { + return new BlobBatchClient_js_1.BlobBatchClient(this.url, this.pipeline); + } +} +exports.ContainerClient = ContainerClient; +//# sourceMappingURL=ContainerClient.js.map + +/***/ }), + +/***/ 12526: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.rangeResponseFromModel = rangeResponseFromModel; +/** + * Function that converts PageRange and ClearRange to a common Range object. + * PageRange and ClearRange have start and end while Range offset and count + * this function normalizes to Range. + * @param response - Model PageBlob Range response + */ +function rangeResponseFromModel(response) { + const pageRange = (response._response.parsedBody.pageRange || []).map((x) => ({ + offset: x.start, + count: x.end - x.start, + })); + const clearRange = (response._response.parsedBody.clearRange || []).map((x) => ({ + offset: x.start, + count: x.end - x.start, + })); + return { + ...response, + pageRange, + clearRange, + _response: { + ...response._response, + parsedBody: { + pageRange, + clearRange, + }, + }, + }; +} +//# sourceMappingURL=PageBlobRangeResponse.js.map + +/***/ }), + +/***/ 33781: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.Pipeline = exports.StorageOAuthScopes = void 0; +exports.isPipelineLike = isPipelineLike; +exports.newPipeline = newPipeline; +exports.getCoreClientOptions = getCoreClientOptions; +exports.getCredentialFromPipeline = getCredentialFromPipeline; +const core_http_compat_1 = __nccwpck_require__(25083); +const core_rest_pipeline_1 = __nccwpck_require__(29146); +const core_client_1 = __nccwpck_require__(7611); +const core_xml_1 = __nccwpck_require__(17309); +const core_auth_1 = __nccwpck_require__(98834); +const log_js_1 = __nccwpck_require__(53282); +const StorageRetryPolicyFactory_js_1 = __nccwpck_require__(98637); +const StorageSharedKeyCredential_js_1 = __nccwpck_require__(59155); +const AnonymousCredential_js_1 = __nccwpck_require__(42803); +const constants_js_1 = __nccwpck_require__(81865); +Object.defineProperty(exports, "StorageOAuthScopes", ({ enumerable: true, get: function () { return constants_js_1.StorageOAuthScopes; } })); +const storage_common_1 = __nccwpck_require__(83667); +const StorageBrowserPolicyV2_js_1 = __nccwpck_require__(29090); +const StorageRetryPolicyV2_js_1 = __nccwpck_require__(68031); +const StorageSharedKeyCredentialPolicyV2_js_1 = __nccwpck_require__(93846); +const StorageBrowserPolicyFactory_js_1 = __nccwpck_require__(86562); +const StorageCorrectContentLengthPolicy_js_1 = __nccwpck_require__(73623); +/** + * A helper to decide if a given argument satisfies the Pipeline contract + * @param pipeline - An argument that may be a Pipeline + * @returns true when the argument satisfies the Pipeline contract + */ +function isPipelineLike(pipeline) { + if (!pipeline || typeof pipeline !== "object") { + return false; + } + const castPipeline = pipeline; + return (Array.isArray(castPipeline.factories) && + typeof castPipeline.options === "object" && + typeof castPipeline.toServiceClientOptions === "function"); +} +/** + * A Pipeline class containing HTTP request policies. + * You can create a default Pipeline by calling {@link newPipeline}. + * Or you can create a Pipeline with your own policies by the constructor of Pipeline. + * + * Refer to {@link newPipeline} and provided policies before implementing your + * customized Pipeline. + */ +class Pipeline { + /** + * A list of chained request policy factories. + */ + factories; + /** + * Configures pipeline logger and HTTP client. + */ + options; + /** + * Creates an instance of Pipeline. Customize HTTPClient by implementing IHttpClient interface. + * + * @param factories - + * @param options - + */ + constructor(factories, options = {}) { + this.factories = factories; + this.options = options; + } + /** + * Transfer Pipeline object to ServiceClientOptions object which is required by + * ServiceClient constructor. + * + * @returns The ServiceClientOptions object from this Pipeline. + */ + toServiceClientOptions() { + return { + httpClient: this.options.httpClient, + requestPolicyFactories: this.factories, + }; + } +} +exports.Pipeline = Pipeline; +/** + * Creates a new Pipeline object with Credential provided. + * + * @param credential - Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the `@azure/identity` package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used. + * @param pipelineOptions - Optional. Options. + * @returns A new Pipeline object. + */ +function newPipeline(credential, pipelineOptions = {}) { + if (!credential) { + credential = new AnonymousCredential_js_1.AnonymousCredential(); + } + const pipeline = new Pipeline([], pipelineOptions); + pipeline._credential = credential; + return pipeline; +} +function processDownlevelPipeline(pipeline) { + const knownFactoryFunctions = [ + isAnonymousCredential, + isStorageSharedKeyCredential, + isCoreHttpBearerTokenFactory, + isStorageBrowserPolicyFactory, + isStorageRetryPolicyFactory, + isStorageTelemetryPolicyFactory, + isCoreHttpPolicyFactory, + ]; + if (pipeline.factories.length) { + const novelFactories = pipeline.factories.filter((factory) => { + return !knownFactoryFunctions.some((knownFactory) => knownFactory(factory)); + }); + if (novelFactories.length) { + const hasInjector = novelFactories.some((factory) => isInjectorPolicyFactory(factory)); + // if there are any left over, wrap in a requestPolicyFactoryPolicy + return { + wrappedPolicies: (0, core_http_compat_1.createRequestPolicyFactoryPolicy)(novelFactories), + afterRetry: hasInjector, + }; + } + } + return undefined; +} +function getCoreClientOptions(pipeline) { + const { httpClient: v1Client, ...restOptions } = pipeline.options; + let httpClient = pipeline._coreHttpClient; + if (!httpClient) { + httpClient = v1Client ? (0, core_http_compat_1.convertHttpClient)(v1Client) : (0, storage_common_1.getCachedDefaultHttpClient)(); + pipeline._coreHttpClient = httpClient; + } + let corePipeline = pipeline._corePipeline; + if (!corePipeline) { + const packageDetails = `azsdk-js-azure-storage-blob/${constants_js_1.SDK_VERSION}`; + const userAgentPrefix = restOptions.userAgentOptions && restOptions.userAgentOptions.userAgentPrefix + ? `${restOptions.userAgentOptions.userAgentPrefix} ${packageDetails}` + : `${packageDetails}`; + corePipeline = (0, core_client_1.createClientPipeline)({ + ...restOptions, + loggingOptions: { + additionalAllowedHeaderNames: constants_js_1.StorageBlobLoggingAllowedHeaderNames, + additionalAllowedQueryParameters: constants_js_1.StorageBlobLoggingAllowedQueryParameters, + logger: log_js_1.logger.info, + }, + userAgentOptions: { + userAgentPrefix, + }, + serializationOptions: { + stringifyXML: core_xml_1.stringifyXML, + serializerOptions: { + xml: { + // Use customized XML char key of "#" so we can deserialize metadata + // with "_" key + xmlCharKey: "#", + }, + }, + }, + deserializationOptions: { + parseXML: core_xml_1.parseXML, + serializerOptions: { + xml: { + // Use customized XML char key of "#" so we can deserialize metadata + // with "_" key + xmlCharKey: "#", + }, + }, + }, + }); + corePipeline.removePolicy({ phase: "Retry" }); + corePipeline.removePolicy({ name: core_rest_pipeline_1.decompressResponsePolicyName }); + corePipeline.addPolicy((0, StorageCorrectContentLengthPolicy_js_1.storageCorrectContentLengthPolicy)()); + corePipeline.addPolicy((0, StorageRetryPolicyV2_js_1.storageRetryPolicy)(restOptions.retryOptions), { phase: "Retry" }); + corePipeline.addPolicy((0, storage_common_1.storageRequestFailureDetailsParserPolicy)()); + corePipeline.addPolicy((0, StorageBrowserPolicyV2_js_1.storageBrowserPolicy)()); + const downlevelResults = processDownlevelPipeline(pipeline); + if (downlevelResults) { + corePipeline.addPolicy(downlevelResults.wrappedPolicies, downlevelResults.afterRetry ? { afterPhase: "Retry" } : undefined); + } + const credential = getCredentialFromPipeline(pipeline); + if ((0, core_auth_1.isTokenCredential)(credential)) { + corePipeline.addPolicy((0, core_rest_pipeline_1.bearerTokenAuthenticationPolicy)({ + credential, + scopes: restOptions.audience ?? constants_js_1.StorageOAuthScopes, + challengeCallbacks: { authorizeRequestOnChallenge: core_client_1.authorizeRequestOnTenantChallenge }, + }), { phase: "Sign" }); + } + else if (credential instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential) { + corePipeline.addPolicy((0, StorageSharedKeyCredentialPolicyV2_js_1.storageSharedKeyCredentialPolicy)({ + accountName: credential.accountName, + accountKey: credential.accountKey, + }), { phase: "Sign" }); + } + pipeline._corePipeline = corePipeline; + } + return { + ...restOptions, + allowInsecureConnection: true, + httpClient, + pipeline: corePipeline, + }; +} +function getCredentialFromPipeline(pipeline) { + // see if we squirreled one away on the type itself + if (pipeline._credential) { + return pipeline._credential; + } + // if it came from another package, loop over the factories and look for one like before + let credential = new AnonymousCredential_js_1.AnonymousCredential(); + for (const factory of pipeline.factories) { + if ((0, core_auth_1.isTokenCredential)(factory.credential)) { + // Only works if the factory has been attached a "credential" property. + // We do that in newPipeline() when using TokenCredential. + credential = factory.credential; + } + else if (isStorageSharedKeyCredential(factory)) { + return factory; + } + } + return credential; +} +function isStorageSharedKeyCredential(factory) { + if (factory instanceof StorageSharedKeyCredential_js_1.StorageSharedKeyCredential) { + return true; + } + return factory.constructor.name === "StorageSharedKeyCredential"; +} +function isAnonymousCredential(factory) { + if (factory instanceof AnonymousCredential_js_1.AnonymousCredential) { + return true; + } + return factory.constructor.name === "AnonymousCredential"; +} +function isCoreHttpBearerTokenFactory(factory) { + return (0, core_auth_1.isTokenCredential)(factory.credential); +} +function isStorageBrowserPolicyFactory(factory) { + if (factory instanceof StorageBrowserPolicyFactory_js_1.StorageBrowserPolicyFactory) { + return true; + } + return factory.constructor.name === "StorageBrowserPolicyFactory"; +} +function isStorageRetryPolicyFactory(factory) { + if (factory instanceof StorageRetryPolicyFactory_js_1.StorageRetryPolicyFactory) { + return true; + } + return factory.constructor.name === "StorageRetryPolicyFactory"; +} +function isStorageTelemetryPolicyFactory(factory) { + return factory.constructor.name === "TelemetryPolicyFactory"; +} +function isInjectorPolicyFactory(factory) { + return factory.constructor.name === "InjectorPolicyFactory"; +} +function isCoreHttpPolicyFactory(factory) { + const knownPolicies = [ + "GenerateClientRequestIdPolicy", + "TracingPolicy", + "LogPolicy", + "ProxyPolicy", + "DisableResponseDecompressionPolicy", + "KeepAlivePolicy", + "DeserializationPolicy", + ]; + const mockHttpClient = { + sendRequest: async (request) => { + return { + request, + headers: request.headers.clone(), + status: 500, + }; + }, + }; + const mockRequestPolicyOptions = { + log(_logLevel, _message) { + /* do nothing */ + }, + shouldLog(_logLevel) { + return false; + }, + }; + const policyInstance = factory.create(mockHttpClient, mockRequestPolicyOptions); + const policyName = policyInstance.constructor.name; + // bundlers sometimes add a custom suffix to the class name to make it unique + return knownPolicies.some((knownPolicyName) => { + return policyName.startsWith(knownPolicyName); + }); +} +//# sourceMappingURL=Pipeline.js.map + +/***/ }), + +/***/ 84573: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.rangeToString = rangeToString; +/** + * Generate a range string. For example: + * + * "bytes=255-" or "bytes=0-511" + * + * @param iRange - + */ +function rangeToString(iRange) { + if (iRange.offset < 0) { + throw new RangeError(`Range.offset cannot be smaller than 0.`); + } + if (iRange.count && iRange.count <= 0) { + throw new RangeError(`Range.count must be larger than 0. Leave it undefined if you want a range from offset to the end.`); + } + return iRange.count + ? `bytes=${iRange.offset}-${iRange.offset + iRange.count - 1}` + : `bytes=${iRange.offset}-`; +} +//# sourceMappingURL=Range.js.map + +/***/ }), + +/***/ 86562: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.StorageBrowserPolicyFactory = exports.StorageBrowserPolicy = void 0; +const StorageBrowserPolicy_js_1 = __nccwpck_require__(6602); +Object.defineProperty(exports, "StorageBrowserPolicy", ({ enumerable: true, get: function () { return StorageBrowserPolicy_js_1.StorageBrowserPolicy; } })); +/** + * StorageBrowserPolicyFactory is a factory class helping generating StorageBrowserPolicy objects. + */ +class StorageBrowserPolicyFactory { + /** + * Creates a StorageBrowserPolicyFactory object. + * + * @param nextPolicy - + * @param options - + */ + create(nextPolicy, options) { + return new StorageBrowserPolicy_js_1.StorageBrowserPolicy(nextPolicy, options); + } +} +exports.StorageBrowserPolicyFactory = StorageBrowserPolicyFactory; +//# sourceMappingURL=StorageBrowserPolicyFactory.js.map + +/***/ }), + +/***/ 39484: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.StorageClient = void 0; +const StorageContextClient_js_1 = __nccwpck_require__(50557); +const Pipeline_js_1 = __nccwpck_require__(33781); +const utils_common_js_1 = __nccwpck_require__(16673); +/** + * A StorageClient represents a based URL class for {@link BlobServiceClient}, {@link ContainerClient} + * and etc. + */ +class StorageClient { + /** + * Encoded URL string value. + */ + url; + accountName; + /** + * Request policy pipeline. + * + * @internal + */ + pipeline; + /** + * Such as AnonymousCredential, StorageSharedKeyCredential or any credential from the `@azure/identity` package to authenticate requests to the service. You can also provide an object that implements the TokenCredential interface. If not specified, AnonymousCredential is used. + */ + credential; + /** + * StorageClient is a reference to protocol layer operations entry, which is + * generated by AutoRest generator. + */ + storageClientContext; + /** + */ + isHttps; + /** + * Creates an instance of StorageClient. + * @param url - url to resource + * @param pipeline - request policy pipeline. + */ + constructor(url, pipeline) { + // URL should be encoded and only once, protocol layer shouldn't encode URL again + this.url = (0, utils_common_js_1.escapeURLPath)(url); + this.accountName = (0, utils_common_js_1.getAccountNameFromUrl)(url); + this.pipeline = pipeline; + this.storageClientContext = new StorageContextClient_js_1.StorageContextClient(this.url, (0, Pipeline_js_1.getCoreClientOptions)(pipeline)); + this.isHttps = (0, utils_common_js_1.iEqual)((0, utils_common_js_1.getURLScheme)(this.url) || "", "https"); + this.credential = (0, Pipeline_js_1.getCredentialFromPipeline)(pipeline); + // Override protocol layer's default content-type + const storageClientContext = this.storageClientContext; + storageClientContext.requestContentType = undefined; + } +} +exports.StorageClient = StorageClient; +//# sourceMappingURL=StorageClient.js.map + +/***/ }), + +/***/ 50557: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.StorageContextClient = void 0; +const index_js_1 = __nccwpck_require__(57955); +/** + * @internal + */ +class StorageContextClient extends index_js_1.StorageClient { + async sendOperationRequest(operationArguments, operationSpec) { + const operationSpecToSend = { ...operationSpec }; + if (operationSpecToSend.path === "/{containerName}" || + operationSpecToSend.path === "/{containerName}/{blob}") { + operationSpecToSend.path = ""; + } + return super.sendOperationRequest(operationArguments, operationSpecToSend); + } +} +exports.StorageContextClient = StorageContextClient; +//# sourceMappingURL=StorageContextClient.js.map + +/***/ }), + +/***/ 98637: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.StorageRetryPolicyFactory = exports.StorageRetryPolicy = exports.StorageRetryPolicyType = void 0; +const StorageRetryPolicy_js_1 = __nccwpck_require__(34419); +Object.defineProperty(exports, "StorageRetryPolicy", ({ enumerable: true, get: function () { return StorageRetryPolicy_js_1.StorageRetryPolicy; } })); +const StorageRetryPolicyType_js_1 = __nccwpck_require__(51772); +Object.defineProperty(exports, "StorageRetryPolicyType", ({ enumerable: true, get: function () { return StorageRetryPolicyType_js_1.StorageRetryPolicyType; } })); +/** + * StorageRetryPolicyFactory is a factory class helping generating {@link StorageRetryPolicy} objects. + */ +class StorageRetryPolicyFactory { + retryOptions; + /** + * Creates an instance of StorageRetryPolicyFactory. + * @param retryOptions - + */ + constructor(retryOptions) { + this.retryOptions = retryOptions; + } + /** + * Creates a StorageRetryPolicy object. + * + * @param nextPolicy - + * @param options - + */ + create(nextPolicy, options) { + return new StorageRetryPolicy_js_1.StorageRetryPolicy(nextPolicy, options, this.retryOptions); + } +} +exports.StorageRetryPolicyFactory = StorageRetryPolicyFactory; +//# sourceMappingURL=StorageRetryPolicyFactory.js.map + +/***/ }), + +/***/ 42803: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.AnonymousCredential = void 0; +const AnonymousCredentialPolicy_js_1 = __nccwpck_require__(51870); +const Credential_js_1 = __nccwpck_require__(35778); +/** + * AnonymousCredential provides a credentialPolicyCreator member used to create + * AnonymousCredentialPolicy objects. AnonymousCredentialPolicy is used with + * HTTP(S) requests that read public resources or for use with Shared Access + * Signatures (SAS). + */ +class AnonymousCredential extends Credential_js_1.Credential { + /** + * Creates an {@link AnonymousCredentialPolicy} object. + * + * @param nextPolicy - + * @param options - + */ + create(nextPolicy, options) { + return new AnonymousCredentialPolicy_js_1.AnonymousCredentialPolicy(nextPolicy, options); + } +} +exports.AnonymousCredential = AnonymousCredential; +//# sourceMappingURL=AnonymousCredential.js.map + +/***/ }), + +/***/ 35778: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.Credential = void 0; +/** + * Credential is an abstract class for Azure Storage HTTP requests signing. This + * class will host an credentialPolicyCreator factory which generates CredentialPolicy. + */ +class Credential { + /** + * Creates a RequestPolicy object. + * + * @param _nextPolicy - + * @param _options - + */ + create(_nextPolicy, _options) { + throw new Error("Method should be implemented in children classes."); + } +} +exports.Credential = Credential; +//# sourceMappingURL=Credential.js.map + +/***/ }), + +/***/ 59155: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.StorageSharedKeyCredential = void 0; +const node_crypto_1 = __nccwpck_require__(6005); +const StorageSharedKeyCredentialPolicy_js_1 = __nccwpck_require__(66776); +const Credential_js_1 = __nccwpck_require__(35778); +/** + * ONLY AVAILABLE IN NODE.JS RUNTIME. + * + * StorageSharedKeyCredential for account key authorization of Azure Storage service. + */ +class StorageSharedKeyCredential extends Credential_js_1.Credential { + /** + * Azure Storage account name; readonly. + */ + accountName; + /** + * Azure Storage account key; readonly. + */ + accountKey; + /** + * Creates an instance of StorageSharedKeyCredential. + * @param accountName - + * @param accountKey - + */ + constructor(accountName, accountKey) { + super(); + this.accountName = accountName; + this.accountKey = Buffer.from(accountKey, "base64"); + } + /** + * Creates a StorageSharedKeyCredentialPolicy object. + * + * @param nextPolicy - + * @param options - + */ + create(nextPolicy, options) { + return new StorageSharedKeyCredentialPolicy_js_1.StorageSharedKeyCredentialPolicy(nextPolicy, options, this); + } + /** + * Generates a hash signature for an HTTP request or for a SAS. + * + * @param stringToSign - + */ + computeHMACSHA256(stringToSign) { + return (0, node_crypto_1.createHmac)("sha256", this.accountKey).update(stringToSign, "utf8").digest("base64"); + } +} +exports.StorageSharedKeyCredential = StorageSharedKeyCredential; +//# sourceMappingURL=StorageSharedKeyCredential.js.map + +/***/ }), + +/***/ 50822: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.UserDelegationKeyCredential = void 0; +const node_crypto_1 = __nccwpck_require__(6005); +/** + * ONLY AVAILABLE IN NODE.JS RUNTIME. + * + * UserDelegationKeyCredential is only used for generation of user delegation SAS. + * @see https://learn.microsoft.com/rest/api/storageservices/create-user-delegation-sas + */ +class UserDelegationKeyCredential { + /** + * Azure Storage account name; readonly. + */ + accountName; + /** + * Azure Storage user delegation key; readonly. + */ + userDelegationKey; + /** + * Key value in Buffer type. + */ + key; + /** + * Creates an instance of UserDelegationKeyCredential. + * @param accountName - + * @param userDelegationKey - + */ + constructor(accountName, userDelegationKey) { + this.accountName = accountName; + this.userDelegationKey = userDelegationKey; + this.key = Buffer.from(userDelegationKey.value, "base64"); + } + /** + * Generates a hash signature for an HTTP request or for a SAS. + * + * @param stringToSign - + */ + computeHMACSHA256(stringToSign) { + // console.log(`stringToSign: ${JSON.stringify(stringToSign)}`); + return (0, node_crypto_1.createHmac)("sha256", this.key).update(stringToSign, "utf8").digest("base64"); + } +} +exports.UserDelegationKeyCredential = UserDelegationKeyCredential; +//# sourceMappingURL=UserDelegationKeyCredential.js.map + +/***/ }), + +/***/ 57955: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.StorageClient = void 0; +const tslib_1 = __nccwpck_require__(4351); +tslib_1.__exportStar(__nccwpck_require__(73758), exports); +var storageClient_js_1 = __nccwpck_require__(50166); +Object.defineProperty(exports, "StorageClient", ({ enumerable: true, get: function () { return storageClient_js_1.StorageClient; } })); +tslib_1.__exportStar(__nccwpck_require__(68529), exports); +//# sourceMappingURL=index.js.map + +/***/ }), + +/***/ 73758: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.KnownStorageErrorCode = exports.KnownBlobExpiryOptions = exports.KnownFileShareTokenIntent = exports.KnownEncryptionAlgorithmType = void 0; +/** Known values of {@link EncryptionAlgorithmType} that the service accepts. */ +var KnownEncryptionAlgorithmType; +(function (KnownEncryptionAlgorithmType) { + /** AES256 */ + KnownEncryptionAlgorithmType["AES256"] = "AES256"; +})(KnownEncryptionAlgorithmType || (exports.KnownEncryptionAlgorithmType = KnownEncryptionAlgorithmType = {})); +/** Known values of {@link FileShareTokenIntent} that the service accepts. */ +var KnownFileShareTokenIntent; +(function (KnownFileShareTokenIntent) { + /** Backup */ + KnownFileShareTokenIntent["Backup"] = "backup"; +})(KnownFileShareTokenIntent || (exports.KnownFileShareTokenIntent = KnownFileShareTokenIntent = {})); +/** Known values of {@link BlobExpiryOptions} that the service accepts. */ +var KnownBlobExpiryOptions; +(function (KnownBlobExpiryOptions) { + /** NeverExpire */ + KnownBlobExpiryOptions["NeverExpire"] = "NeverExpire"; + /** RelativeToCreation */ + KnownBlobExpiryOptions["RelativeToCreation"] = "RelativeToCreation"; + /** RelativeToNow */ + KnownBlobExpiryOptions["RelativeToNow"] = "RelativeToNow"; + /** Absolute */ + KnownBlobExpiryOptions["Absolute"] = "Absolute"; +})(KnownBlobExpiryOptions || (exports.KnownBlobExpiryOptions = KnownBlobExpiryOptions = {})); +/** Known values of {@link StorageErrorCode} that the service accepts. */ +var KnownStorageErrorCode; +(function (KnownStorageErrorCode) { + /** AccountAlreadyExists */ + KnownStorageErrorCode["AccountAlreadyExists"] = "AccountAlreadyExists"; + /** AccountBeingCreated */ + KnownStorageErrorCode["AccountBeingCreated"] = "AccountBeingCreated"; + /** AccountIsDisabled */ + KnownStorageErrorCode["AccountIsDisabled"] = "AccountIsDisabled"; + /** AuthenticationFailed */ + KnownStorageErrorCode["AuthenticationFailed"] = "AuthenticationFailed"; + /** AuthorizationFailure */ + KnownStorageErrorCode["AuthorizationFailure"] = "AuthorizationFailure"; + /** ConditionHeadersNotSupported */ + KnownStorageErrorCode["ConditionHeadersNotSupported"] = "ConditionHeadersNotSupported"; + /** ConditionNotMet */ + KnownStorageErrorCode["ConditionNotMet"] = "ConditionNotMet"; + /** EmptyMetadataKey */ + KnownStorageErrorCode["EmptyMetadataKey"] = "EmptyMetadataKey"; + /** InsufficientAccountPermissions */ + KnownStorageErrorCode["InsufficientAccountPermissions"] = "InsufficientAccountPermissions"; + /** InternalError */ + KnownStorageErrorCode["InternalError"] = "InternalError"; + /** InvalidAuthenticationInfo */ + KnownStorageErrorCode["InvalidAuthenticationInfo"] = "InvalidAuthenticationInfo"; + /** InvalidHeaderValue */ + KnownStorageErrorCode["InvalidHeaderValue"] = "InvalidHeaderValue"; + /** InvalidHttpVerb */ + KnownStorageErrorCode["InvalidHttpVerb"] = "InvalidHttpVerb"; + /** InvalidInput */ + KnownStorageErrorCode["InvalidInput"] = "InvalidInput"; + /** InvalidMd5 */ + KnownStorageErrorCode["InvalidMd5"] = "InvalidMd5"; + /** InvalidMetadata */ + KnownStorageErrorCode["InvalidMetadata"] = "InvalidMetadata"; + /** InvalidQueryParameterValue */ + KnownStorageErrorCode["InvalidQueryParameterValue"] = "InvalidQueryParameterValue"; + /** InvalidRange */ + KnownStorageErrorCode["InvalidRange"] = "InvalidRange"; + /** InvalidResourceName */ + KnownStorageErrorCode["InvalidResourceName"] = "InvalidResourceName"; + /** InvalidUri */ + KnownStorageErrorCode["InvalidUri"] = "InvalidUri"; + /** InvalidXmlDocument */ + KnownStorageErrorCode["InvalidXmlDocument"] = "InvalidXmlDocument"; + /** InvalidXmlNodeValue */ + KnownStorageErrorCode["InvalidXmlNodeValue"] = "InvalidXmlNodeValue"; + /** Md5Mismatch */ + KnownStorageErrorCode["Md5Mismatch"] = "Md5Mismatch"; + /** MetadataTooLarge */ + KnownStorageErrorCode["MetadataTooLarge"] = "MetadataTooLarge"; + /** MissingContentLengthHeader */ + KnownStorageErrorCode["MissingContentLengthHeader"] = "MissingContentLengthHeader"; + /** MissingRequiredQueryParameter */ + KnownStorageErrorCode["MissingRequiredQueryParameter"] = "MissingRequiredQueryParameter"; + /** MissingRequiredHeader */ + KnownStorageErrorCode["MissingRequiredHeader"] = "MissingRequiredHeader"; + /** MissingRequiredXmlNode */ + KnownStorageErrorCode["MissingRequiredXmlNode"] = "MissingRequiredXmlNode"; + /** MultipleConditionHeadersNotSupported */ + KnownStorageErrorCode["MultipleConditionHeadersNotSupported"] = "MultipleConditionHeadersNotSupported"; + /** OperationTimedOut */ + KnownStorageErrorCode["OperationTimedOut"] = "OperationTimedOut"; + /** OutOfRangeInput */ + KnownStorageErrorCode["OutOfRangeInput"] = "OutOfRangeInput"; + /** OutOfRangeQueryParameterValue */ + KnownStorageErrorCode["OutOfRangeQueryParameterValue"] = "OutOfRangeQueryParameterValue"; + /** RequestBodyTooLarge */ + KnownStorageErrorCode["RequestBodyTooLarge"] = "RequestBodyTooLarge"; + /** ResourceTypeMismatch */ + KnownStorageErrorCode["ResourceTypeMismatch"] = "ResourceTypeMismatch"; + /** RequestUrlFailedToParse */ + KnownStorageErrorCode["RequestUrlFailedToParse"] = "RequestUrlFailedToParse"; + /** ResourceAlreadyExists */ + KnownStorageErrorCode["ResourceAlreadyExists"] = "ResourceAlreadyExists"; + /** ResourceNotFound */ + KnownStorageErrorCode["ResourceNotFound"] = "ResourceNotFound"; + /** ServerBusy */ + KnownStorageErrorCode["ServerBusy"] = "ServerBusy"; + /** UnsupportedHeader */ + KnownStorageErrorCode["UnsupportedHeader"] = "UnsupportedHeader"; + /** UnsupportedXmlNode */ + KnownStorageErrorCode["UnsupportedXmlNode"] = "UnsupportedXmlNode"; + /** UnsupportedQueryParameter */ + KnownStorageErrorCode["UnsupportedQueryParameter"] = "UnsupportedQueryParameter"; + /** UnsupportedHttpVerb */ + KnownStorageErrorCode["UnsupportedHttpVerb"] = "UnsupportedHttpVerb"; + /** AppendPositionConditionNotMet */ + KnownStorageErrorCode["AppendPositionConditionNotMet"] = "AppendPositionConditionNotMet"; + /** BlobAlreadyExists */ + KnownStorageErrorCode["BlobAlreadyExists"] = "BlobAlreadyExists"; + /** BlobImmutableDueToPolicy */ + KnownStorageErrorCode["BlobImmutableDueToPolicy"] = "BlobImmutableDueToPolicy"; + /** BlobNotFound */ + KnownStorageErrorCode["BlobNotFound"] = "BlobNotFound"; + /** BlobOverwritten */ + KnownStorageErrorCode["BlobOverwritten"] = "BlobOverwritten"; + /** BlobTierInadequateForContentLength */ + KnownStorageErrorCode["BlobTierInadequateForContentLength"] = "BlobTierInadequateForContentLength"; + /** BlobUsesCustomerSpecifiedEncryption */ + KnownStorageErrorCode["BlobUsesCustomerSpecifiedEncryption"] = "BlobUsesCustomerSpecifiedEncryption"; + /** BlockCountExceedsLimit */ + KnownStorageErrorCode["BlockCountExceedsLimit"] = "BlockCountExceedsLimit"; + /** BlockListTooLong */ + KnownStorageErrorCode["BlockListTooLong"] = "BlockListTooLong"; + /** CannotChangeToLowerTier */ + KnownStorageErrorCode["CannotChangeToLowerTier"] = "CannotChangeToLowerTier"; + /** CannotVerifyCopySource */ + KnownStorageErrorCode["CannotVerifyCopySource"] = "CannotVerifyCopySource"; + /** ContainerAlreadyExists */ + KnownStorageErrorCode["ContainerAlreadyExists"] = "ContainerAlreadyExists"; + /** ContainerBeingDeleted */ + KnownStorageErrorCode["ContainerBeingDeleted"] = "ContainerBeingDeleted"; + /** ContainerDisabled */ + KnownStorageErrorCode["ContainerDisabled"] = "ContainerDisabled"; + /** ContainerNotFound */ + KnownStorageErrorCode["ContainerNotFound"] = "ContainerNotFound"; + /** ContentLengthLargerThanTierLimit */ + KnownStorageErrorCode["ContentLengthLargerThanTierLimit"] = "ContentLengthLargerThanTierLimit"; + /** CopyAcrossAccountsNotSupported */ + KnownStorageErrorCode["CopyAcrossAccountsNotSupported"] = "CopyAcrossAccountsNotSupported"; + /** CopyIdMismatch */ + KnownStorageErrorCode["CopyIdMismatch"] = "CopyIdMismatch"; + /** FeatureVersionMismatch */ + KnownStorageErrorCode["FeatureVersionMismatch"] = "FeatureVersionMismatch"; + /** IncrementalCopyBlobMismatch */ + KnownStorageErrorCode["IncrementalCopyBlobMismatch"] = "IncrementalCopyBlobMismatch"; + /** IncrementalCopyOfEarlierVersionSnapshotNotAllowed */ + KnownStorageErrorCode["IncrementalCopyOfEarlierVersionSnapshotNotAllowed"] = "IncrementalCopyOfEarlierVersionSnapshotNotAllowed"; + /** IncrementalCopySourceMustBeSnapshot */ + KnownStorageErrorCode["IncrementalCopySourceMustBeSnapshot"] = "IncrementalCopySourceMustBeSnapshot"; + /** InfiniteLeaseDurationRequired */ + KnownStorageErrorCode["InfiniteLeaseDurationRequired"] = "InfiniteLeaseDurationRequired"; + /** InvalidBlobOrBlock */ + KnownStorageErrorCode["InvalidBlobOrBlock"] = "InvalidBlobOrBlock"; + /** InvalidBlobTier */ + KnownStorageErrorCode["InvalidBlobTier"] = "InvalidBlobTier"; + /** InvalidBlobType */ + KnownStorageErrorCode["InvalidBlobType"] = "InvalidBlobType"; + /** InvalidBlockId */ + KnownStorageErrorCode["InvalidBlockId"] = "InvalidBlockId"; + /** InvalidBlockList */ + KnownStorageErrorCode["InvalidBlockList"] = "InvalidBlockList"; + /** InvalidOperation */ + KnownStorageErrorCode["InvalidOperation"] = "InvalidOperation"; + /** InvalidPageRange */ + KnownStorageErrorCode["InvalidPageRange"] = "InvalidPageRange"; + /** InvalidSourceBlobType */ + KnownStorageErrorCode["InvalidSourceBlobType"] = "InvalidSourceBlobType"; + /** InvalidSourceBlobUrl */ + KnownStorageErrorCode["InvalidSourceBlobUrl"] = "InvalidSourceBlobUrl"; + /** InvalidVersionForPageBlobOperation */ + KnownStorageErrorCode["InvalidVersionForPageBlobOperation"] = "InvalidVersionForPageBlobOperation"; + /** LeaseAlreadyPresent */ + KnownStorageErrorCode["LeaseAlreadyPresent"] = "LeaseAlreadyPresent"; + /** LeaseAlreadyBroken */ + KnownStorageErrorCode["LeaseAlreadyBroken"] = "LeaseAlreadyBroken"; + /** LeaseIdMismatchWithBlobOperation */ + KnownStorageErrorCode["LeaseIdMismatchWithBlobOperation"] = "LeaseIdMismatchWithBlobOperation"; + /** LeaseIdMismatchWithContainerOperation */ + KnownStorageErrorCode["LeaseIdMismatchWithContainerOperation"] = "LeaseIdMismatchWithContainerOperation"; + /** LeaseIdMismatchWithLeaseOperation */ + KnownStorageErrorCode["LeaseIdMismatchWithLeaseOperation"] = "LeaseIdMismatchWithLeaseOperation"; + /** LeaseIdMissing */ + KnownStorageErrorCode["LeaseIdMissing"] = "LeaseIdMissing"; + /** LeaseIsBreakingAndCannotBeAcquired */ + KnownStorageErrorCode["LeaseIsBreakingAndCannotBeAcquired"] = "LeaseIsBreakingAndCannotBeAcquired"; + /** LeaseIsBreakingAndCannotBeChanged */ + KnownStorageErrorCode["LeaseIsBreakingAndCannotBeChanged"] = "LeaseIsBreakingAndCannotBeChanged"; + /** LeaseIsBrokenAndCannotBeRenewed */ + KnownStorageErrorCode["LeaseIsBrokenAndCannotBeRenewed"] = "LeaseIsBrokenAndCannotBeRenewed"; + /** LeaseLost */ + KnownStorageErrorCode["LeaseLost"] = "LeaseLost"; + /** LeaseNotPresentWithBlobOperation */ + KnownStorageErrorCode["LeaseNotPresentWithBlobOperation"] = "LeaseNotPresentWithBlobOperation"; + /** LeaseNotPresentWithContainerOperation */ + KnownStorageErrorCode["LeaseNotPresentWithContainerOperation"] = "LeaseNotPresentWithContainerOperation"; + /** LeaseNotPresentWithLeaseOperation */ + KnownStorageErrorCode["LeaseNotPresentWithLeaseOperation"] = "LeaseNotPresentWithLeaseOperation"; + /** MaxBlobSizeConditionNotMet */ + KnownStorageErrorCode["MaxBlobSizeConditionNotMet"] = "MaxBlobSizeConditionNotMet"; + /** NoAuthenticationInformation */ + KnownStorageErrorCode["NoAuthenticationInformation"] = "NoAuthenticationInformation"; + /** NoPendingCopyOperation */ + KnownStorageErrorCode["NoPendingCopyOperation"] = "NoPendingCopyOperation"; + /** OperationNotAllowedOnIncrementalCopyBlob */ + KnownStorageErrorCode["OperationNotAllowedOnIncrementalCopyBlob"] = "OperationNotAllowedOnIncrementalCopyBlob"; + /** PendingCopyOperation */ + KnownStorageErrorCode["PendingCopyOperation"] = "PendingCopyOperation"; + /** PreviousSnapshotCannotBeNewer */ + KnownStorageErrorCode["PreviousSnapshotCannotBeNewer"] = "PreviousSnapshotCannotBeNewer"; + /** PreviousSnapshotNotFound */ + KnownStorageErrorCode["PreviousSnapshotNotFound"] = "PreviousSnapshotNotFound"; + /** PreviousSnapshotOperationNotSupported */ + KnownStorageErrorCode["PreviousSnapshotOperationNotSupported"] = "PreviousSnapshotOperationNotSupported"; + /** SequenceNumberConditionNotMet */ + KnownStorageErrorCode["SequenceNumberConditionNotMet"] = "SequenceNumberConditionNotMet"; + /** SequenceNumberIncrementTooLarge */ + KnownStorageErrorCode["SequenceNumberIncrementTooLarge"] = "SequenceNumberIncrementTooLarge"; + /** SnapshotCountExceeded */ + KnownStorageErrorCode["SnapshotCountExceeded"] = "SnapshotCountExceeded"; + /** SnapshotOperationRateExceeded */ + KnownStorageErrorCode["SnapshotOperationRateExceeded"] = "SnapshotOperationRateExceeded"; + /** SnapshotsPresent */ + KnownStorageErrorCode["SnapshotsPresent"] = "SnapshotsPresent"; + /** SourceConditionNotMet */ + KnownStorageErrorCode["SourceConditionNotMet"] = "SourceConditionNotMet"; + /** SystemInUse */ + KnownStorageErrorCode["SystemInUse"] = "SystemInUse"; + /** TargetConditionNotMet */ + KnownStorageErrorCode["TargetConditionNotMet"] = "TargetConditionNotMet"; + /** UnauthorizedBlobOverwrite */ + KnownStorageErrorCode["UnauthorizedBlobOverwrite"] = "UnauthorizedBlobOverwrite"; + /** BlobBeingRehydrated */ + KnownStorageErrorCode["BlobBeingRehydrated"] = "BlobBeingRehydrated"; + /** BlobArchived */ + KnownStorageErrorCode["BlobArchived"] = "BlobArchived"; + /** BlobNotArchived */ + KnownStorageErrorCode["BlobNotArchived"] = "BlobNotArchived"; + /** AuthorizationSourceIPMismatch */ + KnownStorageErrorCode["AuthorizationSourceIPMismatch"] = "AuthorizationSourceIPMismatch"; + /** AuthorizationProtocolMismatch */ + KnownStorageErrorCode["AuthorizationProtocolMismatch"] = "AuthorizationProtocolMismatch"; + /** AuthorizationPermissionMismatch */ + KnownStorageErrorCode["AuthorizationPermissionMismatch"] = "AuthorizationPermissionMismatch"; + /** AuthorizationServiceMismatch */ + KnownStorageErrorCode["AuthorizationServiceMismatch"] = "AuthorizationServiceMismatch"; + /** AuthorizationResourceTypeMismatch */ + KnownStorageErrorCode["AuthorizationResourceTypeMismatch"] = "AuthorizationResourceTypeMismatch"; + /** BlobAccessTierNotSupportedForAccountType */ + KnownStorageErrorCode["BlobAccessTierNotSupportedForAccountType"] = "BlobAccessTierNotSupportedForAccountType"; +})(KnownStorageErrorCode || (exports.KnownStorageErrorCode = KnownStorageErrorCode = {})); +//# sourceMappingURL=index.js.map + +/***/ }), + +/***/ 52486: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.ServiceGetUserDelegationKeyHeaders = exports.ServiceListContainersSegmentExceptionHeaders = exports.ServiceListContainersSegmentHeaders = exports.ServiceGetStatisticsExceptionHeaders = exports.ServiceGetStatisticsHeaders = exports.ServiceGetPropertiesExceptionHeaders = exports.ServiceGetPropertiesHeaders = exports.ServiceSetPropertiesExceptionHeaders = exports.ServiceSetPropertiesHeaders = exports.ArrowField = exports.ArrowConfiguration = exports.JsonTextConfiguration = exports.DelimitedTextConfiguration = exports.QueryFormat = exports.QuerySerialization = exports.QueryRequest = exports.ClearRange = exports.PageRange = exports.PageList = exports.Block = exports.BlockList = exports.BlockLookupList = exports.BlobPrefix = exports.BlobHierarchyListSegment = exports.ListBlobsHierarchySegmentResponse = exports.BlobPropertiesInternal = exports.BlobName = exports.BlobItemInternal = exports.BlobFlatListSegment = exports.ListBlobsFlatSegmentResponse = exports.AccessPolicy = exports.SignedIdentifier = exports.BlobTag = exports.BlobTags = exports.FilterBlobItem = exports.FilterBlobSegment = exports.UserDelegationKey = exports.KeyInfo = exports.ContainerProperties = exports.ContainerItem = exports.ListContainersSegmentResponse = exports.GeoReplication = exports.BlobServiceStatistics = exports.StorageError = exports.StaticWebsite = exports.CorsRule = exports.Metrics = exports.RetentionPolicy = exports.Logging = exports.BlobServiceProperties = void 0; +exports.BlobUndeleteHeaders = exports.BlobDeleteExceptionHeaders = exports.BlobDeleteHeaders = exports.BlobGetPropertiesExceptionHeaders = exports.BlobGetPropertiesHeaders = exports.BlobDownloadExceptionHeaders = exports.BlobDownloadHeaders = exports.ContainerGetAccountInfoExceptionHeaders = exports.ContainerGetAccountInfoHeaders = exports.ContainerListBlobHierarchySegmentExceptionHeaders = exports.ContainerListBlobHierarchySegmentHeaders = exports.ContainerListBlobFlatSegmentExceptionHeaders = exports.ContainerListBlobFlatSegmentHeaders = exports.ContainerChangeLeaseExceptionHeaders = exports.ContainerChangeLeaseHeaders = exports.ContainerBreakLeaseExceptionHeaders = exports.ContainerBreakLeaseHeaders = exports.ContainerRenewLeaseExceptionHeaders = exports.ContainerRenewLeaseHeaders = exports.ContainerReleaseLeaseExceptionHeaders = exports.ContainerReleaseLeaseHeaders = exports.ContainerAcquireLeaseExceptionHeaders = exports.ContainerAcquireLeaseHeaders = exports.ContainerFilterBlobsExceptionHeaders = exports.ContainerFilterBlobsHeaders = exports.ContainerSubmitBatchExceptionHeaders = exports.ContainerSubmitBatchHeaders = exports.ContainerRenameExceptionHeaders = exports.ContainerRenameHeaders = exports.ContainerRestoreExceptionHeaders = exports.ContainerRestoreHeaders = exports.ContainerSetAccessPolicyExceptionHeaders = exports.ContainerSetAccessPolicyHeaders = exports.ContainerGetAccessPolicyExceptionHeaders = exports.ContainerGetAccessPolicyHeaders = exports.ContainerSetMetadataExceptionHeaders = exports.ContainerSetMetadataHeaders = exports.ContainerDeleteExceptionHeaders = exports.ContainerDeleteHeaders = exports.ContainerGetPropertiesExceptionHeaders = exports.ContainerGetPropertiesHeaders = exports.ContainerCreateExceptionHeaders = exports.ContainerCreateHeaders = exports.ServiceFilterBlobsExceptionHeaders = exports.ServiceFilterBlobsHeaders = exports.ServiceSubmitBatchExceptionHeaders = exports.ServiceSubmitBatchHeaders = exports.ServiceGetAccountInfoExceptionHeaders = exports.ServiceGetAccountInfoHeaders = exports.ServiceGetUserDelegationKeyExceptionHeaders = void 0; +exports.PageBlobGetPageRangesHeaders = exports.PageBlobUploadPagesFromURLExceptionHeaders = exports.PageBlobUploadPagesFromURLHeaders = exports.PageBlobClearPagesExceptionHeaders = exports.PageBlobClearPagesHeaders = exports.PageBlobUploadPagesExceptionHeaders = exports.PageBlobUploadPagesHeaders = exports.PageBlobCreateExceptionHeaders = exports.PageBlobCreateHeaders = exports.BlobSetTagsExceptionHeaders = exports.BlobSetTagsHeaders = exports.BlobGetTagsExceptionHeaders = exports.BlobGetTagsHeaders = exports.BlobQueryExceptionHeaders = exports.BlobQueryHeaders = exports.BlobGetAccountInfoExceptionHeaders = exports.BlobGetAccountInfoHeaders = exports.BlobSetTierExceptionHeaders = exports.BlobSetTierHeaders = exports.BlobAbortCopyFromURLExceptionHeaders = exports.BlobAbortCopyFromURLHeaders = exports.BlobCopyFromURLExceptionHeaders = exports.BlobCopyFromURLHeaders = exports.BlobStartCopyFromURLExceptionHeaders = exports.BlobStartCopyFromURLHeaders = exports.BlobCreateSnapshotExceptionHeaders = exports.BlobCreateSnapshotHeaders = exports.BlobBreakLeaseExceptionHeaders = exports.BlobBreakLeaseHeaders = exports.BlobChangeLeaseExceptionHeaders = exports.BlobChangeLeaseHeaders = exports.BlobRenewLeaseExceptionHeaders = exports.BlobRenewLeaseHeaders = exports.BlobReleaseLeaseExceptionHeaders = exports.BlobReleaseLeaseHeaders = exports.BlobAcquireLeaseExceptionHeaders = exports.BlobAcquireLeaseHeaders = exports.BlobSetMetadataExceptionHeaders = exports.BlobSetMetadataHeaders = exports.BlobSetLegalHoldExceptionHeaders = exports.BlobSetLegalHoldHeaders = exports.BlobDeleteImmutabilityPolicyExceptionHeaders = exports.BlobDeleteImmutabilityPolicyHeaders = exports.BlobSetImmutabilityPolicyExceptionHeaders = exports.BlobSetImmutabilityPolicyHeaders = exports.BlobSetHttpHeadersExceptionHeaders = exports.BlobSetHttpHeadersHeaders = exports.BlobSetExpiryExceptionHeaders = exports.BlobSetExpiryHeaders = exports.BlobUndeleteExceptionHeaders = void 0; +exports.BlockBlobGetBlockListExceptionHeaders = exports.BlockBlobGetBlockListHeaders = exports.BlockBlobCommitBlockListExceptionHeaders = exports.BlockBlobCommitBlockListHeaders = exports.BlockBlobStageBlockFromURLExceptionHeaders = exports.BlockBlobStageBlockFromURLHeaders = exports.BlockBlobStageBlockExceptionHeaders = exports.BlockBlobStageBlockHeaders = exports.BlockBlobPutBlobFromUrlExceptionHeaders = exports.BlockBlobPutBlobFromUrlHeaders = exports.BlockBlobUploadExceptionHeaders = exports.BlockBlobUploadHeaders = exports.AppendBlobSealExceptionHeaders = exports.AppendBlobSealHeaders = exports.AppendBlobAppendBlockFromUrlExceptionHeaders = exports.AppendBlobAppendBlockFromUrlHeaders = exports.AppendBlobAppendBlockExceptionHeaders = exports.AppendBlobAppendBlockHeaders = exports.AppendBlobCreateExceptionHeaders = exports.AppendBlobCreateHeaders = exports.PageBlobCopyIncrementalExceptionHeaders = exports.PageBlobCopyIncrementalHeaders = exports.PageBlobUpdateSequenceNumberExceptionHeaders = exports.PageBlobUpdateSequenceNumberHeaders = exports.PageBlobResizeExceptionHeaders = exports.PageBlobResizeHeaders = exports.PageBlobGetPageRangesDiffExceptionHeaders = exports.PageBlobGetPageRangesDiffHeaders = exports.PageBlobGetPageRangesExceptionHeaders = void 0; +exports.BlobServiceProperties = { + serializedName: "BlobServiceProperties", + xmlName: "StorageServiceProperties", + type: { + name: "Composite", + className: "BlobServiceProperties", + modelProperties: { + blobAnalyticsLogging: { + serializedName: "Logging", + xmlName: "Logging", + type: { + name: "Composite", + className: "Logging", + }, + }, + hourMetrics: { + serializedName: "HourMetrics", + xmlName: "HourMetrics", + type: { + name: "Composite", + className: "Metrics", + }, + }, + minuteMetrics: { + serializedName: "MinuteMetrics", + xmlName: "MinuteMetrics", + type: { + name: "Composite", + className: "Metrics", + }, + }, + cors: { + serializedName: "Cors", + xmlName: "Cors", + xmlIsWrapped: true, + xmlElementName: "CorsRule", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "CorsRule", + }, + }, + }, + }, + defaultServiceVersion: { + serializedName: "DefaultServiceVersion", + xmlName: "DefaultServiceVersion", + type: { + name: "String", + }, + }, + deleteRetentionPolicy: { + serializedName: "DeleteRetentionPolicy", + xmlName: "DeleteRetentionPolicy", + type: { + name: "Composite", + className: "RetentionPolicy", + }, + }, + staticWebsite: { + serializedName: "StaticWebsite", + xmlName: "StaticWebsite", + type: { + name: "Composite", + className: "StaticWebsite", + }, + }, + }, + }, +}; +exports.Logging = { + serializedName: "Logging", + type: { + name: "Composite", + className: "Logging", + modelProperties: { + version: { + serializedName: "Version", + required: true, + xmlName: "Version", + type: { + name: "String", + }, + }, + deleteProperty: { + serializedName: "Delete", + required: true, + xmlName: "Delete", + type: { + name: "Boolean", + }, + }, + read: { + serializedName: "Read", + required: true, + xmlName: "Read", + type: { + name: "Boolean", + }, + }, + write: { + serializedName: "Write", + required: true, + xmlName: "Write", + type: { + name: "Boolean", + }, + }, + retentionPolicy: { + serializedName: "RetentionPolicy", + xmlName: "RetentionPolicy", + type: { + name: "Composite", + className: "RetentionPolicy", + }, + }, + }, + }, +}; +exports.RetentionPolicy = { + serializedName: "RetentionPolicy", + type: { + name: "Composite", + className: "RetentionPolicy", + modelProperties: { + enabled: { + serializedName: "Enabled", + required: true, + xmlName: "Enabled", + type: { + name: "Boolean", + }, + }, + days: { + constraints: { + InclusiveMinimum: 1, + }, + serializedName: "Days", + xmlName: "Days", + type: { + name: "Number", + }, + }, + }, + }, +}; +exports.Metrics = { + serializedName: "Metrics", + type: { + name: "Composite", + className: "Metrics", + modelProperties: { + version: { + serializedName: "Version", + xmlName: "Version", + type: { + name: "String", + }, + }, + enabled: { + serializedName: "Enabled", + required: true, + xmlName: "Enabled", + type: { + name: "Boolean", + }, + }, + includeAPIs: { + serializedName: "IncludeAPIs", + xmlName: "IncludeAPIs", + type: { + name: "Boolean", + }, + }, + retentionPolicy: { + serializedName: "RetentionPolicy", + xmlName: "RetentionPolicy", + type: { + name: "Composite", + className: "RetentionPolicy", + }, + }, + }, + }, +}; +exports.CorsRule = { + serializedName: "CorsRule", + type: { + name: "Composite", + className: "CorsRule", + modelProperties: { + allowedOrigins: { + serializedName: "AllowedOrigins", + required: true, + xmlName: "AllowedOrigins", + type: { + name: "String", + }, + }, + allowedMethods: { + serializedName: "AllowedMethods", + required: true, + xmlName: "AllowedMethods", + type: { + name: "String", + }, + }, + allowedHeaders: { + serializedName: "AllowedHeaders", + required: true, + xmlName: "AllowedHeaders", + type: { + name: "String", + }, + }, + exposedHeaders: { + serializedName: "ExposedHeaders", + required: true, + xmlName: "ExposedHeaders", + type: { + name: "String", + }, + }, + maxAgeInSeconds: { + constraints: { + InclusiveMinimum: 0, + }, + serializedName: "MaxAgeInSeconds", + required: true, + xmlName: "MaxAgeInSeconds", + type: { + name: "Number", + }, + }, + }, + }, +}; +exports.StaticWebsite = { + serializedName: "StaticWebsite", + type: { + name: "Composite", + className: "StaticWebsite", + modelProperties: { + enabled: { + serializedName: "Enabled", + required: true, + xmlName: "Enabled", + type: { + name: "Boolean", + }, + }, + indexDocument: { + serializedName: "IndexDocument", + xmlName: "IndexDocument", + type: { + name: "String", + }, + }, + errorDocument404Path: { + serializedName: "ErrorDocument404Path", + xmlName: "ErrorDocument404Path", + type: { + name: "String", + }, + }, + defaultIndexDocumentPath: { + serializedName: "DefaultIndexDocumentPath", + xmlName: "DefaultIndexDocumentPath", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.StorageError = { + serializedName: "StorageError", + type: { + name: "Composite", + className: "StorageError", + modelProperties: { + message: { + serializedName: "Message", + xmlName: "Message", + type: { + name: "String", + }, + }, + copySourceStatusCode: { + serializedName: "CopySourceStatusCode", + xmlName: "CopySourceStatusCode", + type: { + name: "Number", + }, + }, + copySourceErrorCode: { + serializedName: "CopySourceErrorCode", + xmlName: "CopySourceErrorCode", + type: { + name: "String", + }, + }, + copySourceErrorMessage: { + serializedName: "CopySourceErrorMessage", + xmlName: "CopySourceErrorMessage", + type: { + name: "String", + }, + }, + code: { + serializedName: "Code", + xmlName: "Code", + type: { + name: "String", + }, + }, + authenticationErrorDetail: { + serializedName: "AuthenticationErrorDetail", + xmlName: "AuthenticationErrorDetail", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobServiceStatistics = { + serializedName: "BlobServiceStatistics", + xmlName: "StorageServiceStats", + type: { + name: "Composite", + className: "BlobServiceStatistics", + modelProperties: { + geoReplication: { + serializedName: "GeoReplication", + xmlName: "GeoReplication", + type: { + name: "Composite", + className: "GeoReplication", + }, + }, + }, + }, +}; +exports.GeoReplication = { + serializedName: "GeoReplication", + type: { + name: "Composite", + className: "GeoReplication", + modelProperties: { + status: { + serializedName: "Status", + required: true, + xmlName: "Status", + type: { + name: "Enum", + allowedValues: ["live", "bootstrap", "unavailable"], + }, + }, + lastSyncOn: { + serializedName: "LastSyncTime", + required: true, + xmlName: "LastSyncTime", + type: { + name: "DateTimeRfc1123", + }, + }, + }, + }, +}; +exports.ListContainersSegmentResponse = { + serializedName: "ListContainersSegmentResponse", + xmlName: "EnumerationResults", + type: { + name: "Composite", + className: "ListContainersSegmentResponse", + modelProperties: { + serviceEndpoint: { + serializedName: "ServiceEndpoint", + required: true, + xmlName: "ServiceEndpoint", + xmlIsAttribute: true, + type: { + name: "String", + }, + }, + prefix: { + serializedName: "Prefix", + xmlName: "Prefix", + type: { + name: "String", + }, + }, + marker: { + serializedName: "Marker", + xmlName: "Marker", + type: { + name: "String", + }, + }, + maxPageSize: { + serializedName: "MaxResults", + xmlName: "MaxResults", + type: { + name: "Number", + }, + }, + containerItems: { + serializedName: "ContainerItems", + required: true, + xmlName: "Containers", + xmlIsWrapped: true, + xmlElementName: "Container", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "ContainerItem", + }, + }, + }, + }, + continuationToken: { + serializedName: "NextMarker", + xmlName: "NextMarker", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerItem = { + serializedName: "ContainerItem", + xmlName: "Container", + type: { + name: "Composite", + className: "ContainerItem", + modelProperties: { + name: { + serializedName: "Name", + required: true, + xmlName: "Name", + type: { + name: "String", + }, + }, + deleted: { + serializedName: "Deleted", + xmlName: "Deleted", + type: { + name: "Boolean", + }, + }, + version: { + serializedName: "Version", + xmlName: "Version", + type: { + name: "String", + }, + }, + properties: { + serializedName: "Properties", + xmlName: "Properties", + type: { + name: "Composite", + className: "ContainerProperties", + }, + }, + metadata: { + serializedName: "Metadata", + xmlName: "Metadata", + type: { + name: "Dictionary", + value: { type: { name: "String" } }, + }, + }, + }, + }, +}; +exports.ContainerProperties = { + serializedName: "ContainerProperties", + type: { + name: "Composite", + className: "ContainerProperties", + modelProperties: { + lastModified: { + serializedName: "Last-Modified", + required: true, + xmlName: "Last-Modified", + type: { + name: "DateTimeRfc1123", + }, + }, + etag: { + serializedName: "Etag", + required: true, + xmlName: "Etag", + type: { + name: "String", + }, + }, + leaseStatus: { + serializedName: "LeaseStatus", + xmlName: "LeaseStatus", + type: { + name: "Enum", + allowedValues: ["locked", "unlocked"], + }, + }, + leaseState: { + serializedName: "LeaseState", + xmlName: "LeaseState", + type: { + name: "Enum", + allowedValues: [ + "available", + "leased", + "expired", + "breaking", + "broken", + ], + }, + }, + leaseDuration: { + serializedName: "LeaseDuration", + xmlName: "LeaseDuration", + type: { + name: "Enum", + allowedValues: ["infinite", "fixed"], + }, + }, + publicAccess: { + serializedName: "PublicAccess", + xmlName: "PublicAccess", + type: { + name: "Enum", + allowedValues: ["container", "blob"], + }, + }, + hasImmutabilityPolicy: { + serializedName: "HasImmutabilityPolicy", + xmlName: "HasImmutabilityPolicy", + type: { + name: "Boolean", + }, + }, + hasLegalHold: { + serializedName: "HasLegalHold", + xmlName: "HasLegalHold", + type: { + name: "Boolean", + }, + }, + defaultEncryptionScope: { + serializedName: "DefaultEncryptionScope", + xmlName: "DefaultEncryptionScope", + type: { + name: "String", + }, + }, + preventEncryptionScopeOverride: { + serializedName: "DenyEncryptionScopeOverride", + xmlName: "DenyEncryptionScopeOverride", + type: { + name: "Boolean", + }, + }, + deletedOn: { + serializedName: "DeletedTime", + xmlName: "DeletedTime", + type: { + name: "DateTimeRfc1123", + }, + }, + remainingRetentionDays: { + serializedName: "RemainingRetentionDays", + xmlName: "RemainingRetentionDays", + type: { + name: "Number", + }, + }, + isImmutableStorageWithVersioningEnabled: { + serializedName: "ImmutableStorageWithVersioningEnabled", + xmlName: "ImmutableStorageWithVersioningEnabled", + type: { + name: "Boolean", + }, + }, + }, + }, +}; +exports.KeyInfo = { + serializedName: "KeyInfo", + type: { + name: "Composite", + className: "KeyInfo", + modelProperties: { + startsOn: { + serializedName: "Start", + required: true, + xmlName: "Start", + type: { + name: "String", + }, + }, + expiresOn: { + serializedName: "Expiry", + required: true, + xmlName: "Expiry", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.UserDelegationKey = { + serializedName: "UserDelegationKey", + type: { + name: "Composite", + className: "UserDelegationKey", + modelProperties: { + signedObjectId: { + serializedName: "SignedOid", + required: true, + xmlName: "SignedOid", + type: { + name: "String", + }, + }, + signedTenantId: { + serializedName: "SignedTid", + required: true, + xmlName: "SignedTid", + type: { + name: "String", + }, + }, + signedStartsOn: { + serializedName: "SignedStart", + required: true, + xmlName: "SignedStart", + type: { + name: "String", + }, + }, + signedExpiresOn: { + serializedName: "SignedExpiry", + required: true, + xmlName: "SignedExpiry", + type: { + name: "String", + }, + }, + signedService: { + serializedName: "SignedService", + required: true, + xmlName: "SignedService", + type: { + name: "String", + }, + }, + signedVersion: { + serializedName: "SignedVersion", + required: true, + xmlName: "SignedVersion", + type: { + name: "String", + }, + }, + value: { + serializedName: "Value", + required: true, + xmlName: "Value", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.FilterBlobSegment = { + serializedName: "FilterBlobSegment", + xmlName: "EnumerationResults", + type: { + name: "Composite", + className: "FilterBlobSegment", + modelProperties: { + serviceEndpoint: { + serializedName: "ServiceEndpoint", + required: true, + xmlName: "ServiceEndpoint", + xmlIsAttribute: true, + type: { + name: "String", + }, + }, + where: { + serializedName: "Where", + required: true, + xmlName: "Where", + type: { + name: "String", + }, + }, + blobs: { + serializedName: "Blobs", + required: true, + xmlName: "Blobs", + xmlIsWrapped: true, + xmlElementName: "Blob", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "FilterBlobItem", + }, + }, + }, + }, + continuationToken: { + serializedName: "NextMarker", + xmlName: "NextMarker", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.FilterBlobItem = { + serializedName: "FilterBlobItem", + xmlName: "Blob", + type: { + name: "Composite", + className: "FilterBlobItem", + modelProperties: { + name: { + serializedName: "Name", + required: true, + xmlName: "Name", + type: { + name: "String", + }, + }, + containerName: { + serializedName: "ContainerName", + required: true, + xmlName: "ContainerName", + type: { + name: "String", + }, + }, + tags: { + serializedName: "Tags", + xmlName: "Tags", + type: { + name: "Composite", + className: "BlobTags", + }, + }, + }, + }, +}; +exports.BlobTags = { + serializedName: "BlobTags", + xmlName: "Tags", + type: { + name: "Composite", + className: "BlobTags", + modelProperties: { + blobTagSet: { + serializedName: "BlobTagSet", + required: true, + xmlName: "TagSet", + xmlIsWrapped: true, + xmlElementName: "Tag", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "BlobTag", + }, + }, + }, + }, + }, + }, +}; +exports.BlobTag = { + serializedName: "BlobTag", + xmlName: "Tag", + type: { + name: "Composite", + className: "BlobTag", + modelProperties: { + key: { + serializedName: "Key", + required: true, + xmlName: "Key", + type: { + name: "String", + }, + }, + value: { + serializedName: "Value", + required: true, + xmlName: "Value", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.SignedIdentifier = { + serializedName: "SignedIdentifier", + xmlName: "SignedIdentifier", + type: { + name: "Composite", + className: "SignedIdentifier", + modelProperties: { + id: { + serializedName: "Id", + required: true, + xmlName: "Id", + type: { + name: "String", + }, + }, + accessPolicy: { + serializedName: "AccessPolicy", + xmlName: "AccessPolicy", + type: { + name: "Composite", + className: "AccessPolicy", + }, + }, + }, + }, +}; +exports.AccessPolicy = { + serializedName: "AccessPolicy", + type: { + name: "Composite", + className: "AccessPolicy", + modelProperties: { + startsOn: { + serializedName: "Start", + xmlName: "Start", + type: { + name: "String", + }, + }, + expiresOn: { + serializedName: "Expiry", + xmlName: "Expiry", + type: { + name: "String", + }, + }, + permissions: { + serializedName: "Permission", + xmlName: "Permission", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ListBlobsFlatSegmentResponse = { + serializedName: "ListBlobsFlatSegmentResponse", + xmlName: "EnumerationResults", + type: { + name: "Composite", + className: "ListBlobsFlatSegmentResponse", + modelProperties: { + serviceEndpoint: { + serializedName: "ServiceEndpoint", + required: true, + xmlName: "ServiceEndpoint", + xmlIsAttribute: true, + type: { + name: "String", + }, + }, + containerName: { + serializedName: "ContainerName", + required: true, + xmlName: "ContainerName", + xmlIsAttribute: true, + type: { + name: "String", + }, + }, + prefix: { + serializedName: "Prefix", + xmlName: "Prefix", + type: { + name: "String", + }, + }, + marker: { + serializedName: "Marker", + xmlName: "Marker", + type: { + name: "String", + }, + }, + maxPageSize: { + serializedName: "MaxResults", + xmlName: "MaxResults", + type: { + name: "Number", + }, + }, + segment: { + serializedName: "Segment", + xmlName: "Blobs", + type: { + name: "Composite", + className: "BlobFlatListSegment", + }, + }, + continuationToken: { + serializedName: "NextMarker", + xmlName: "NextMarker", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobFlatListSegment = { + serializedName: "BlobFlatListSegment", + xmlName: "Blobs", + type: { + name: "Composite", + className: "BlobFlatListSegment", + modelProperties: { + blobItems: { + serializedName: "BlobItems", + required: true, + xmlName: "BlobItems", + xmlElementName: "Blob", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "BlobItemInternal", + }, + }, + }, + }, + }, + }, +}; +exports.BlobItemInternal = { + serializedName: "BlobItemInternal", + xmlName: "Blob", + type: { + name: "Composite", + className: "BlobItemInternal", + modelProperties: { + name: { + serializedName: "Name", + xmlName: "Name", + type: { + name: "Composite", + className: "BlobName", + }, + }, + deleted: { + serializedName: "Deleted", + required: true, + xmlName: "Deleted", + type: { + name: "Boolean", + }, + }, + snapshot: { + serializedName: "Snapshot", + required: true, + xmlName: "Snapshot", + type: { + name: "String", + }, + }, + versionId: { + serializedName: "VersionId", + xmlName: "VersionId", + type: { + name: "String", + }, + }, + isCurrentVersion: { + serializedName: "IsCurrentVersion", + xmlName: "IsCurrentVersion", + type: { + name: "Boolean", + }, + }, + properties: { + serializedName: "Properties", + xmlName: "Properties", + type: { + name: "Composite", + className: "BlobPropertiesInternal", + }, + }, + metadata: { + serializedName: "Metadata", + xmlName: "Metadata", + type: { + name: "Dictionary", + value: { type: { name: "String" } }, + }, + }, + blobTags: { + serializedName: "BlobTags", + xmlName: "Tags", + type: { + name: "Composite", + className: "BlobTags", + }, + }, + objectReplicationMetadata: { + serializedName: "ObjectReplicationMetadata", + xmlName: "OrMetadata", + type: { + name: "Dictionary", + value: { type: { name: "String" } }, + }, + }, + hasVersionsOnly: { + serializedName: "HasVersionsOnly", + xmlName: "HasVersionsOnly", + type: { + name: "Boolean", + }, + }, + }, + }, +}; +exports.BlobName = { + serializedName: "BlobName", + type: { + name: "Composite", + className: "BlobName", + modelProperties: { + encoded: { + serializedName: "Encoded", + xmlName: "Encoded", + xmlIsAttribute: true, + type: { + name: "Boolean", + }, + }, + content: { + serializedName: "content", + xmlName: "content", + xmlIsMsText: true, + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobPropertiesInternal = { + serializedName: "BlobPropertiesInternal", + xmlName: "Properties", + type: { + name: "Composite", + className: "BlobPropertiesInternal", + modelProperties: { + createdOn: { + serializedName: "Creation-Time", + xmlName: "Creation-Time", + type: { + name: "DateTimeRfc1123", + }, + }, + lastModified: { + serializedName: "Last-Modified", + required: true, + xmlName: "Last-Modified", + type: { + name: "DateTimeRfc1123", + }, + }, + etag: { + serializedName: "Etag", + required: true, + xmlName: "Etag", + type: { + name: "String", + }, + }, + contentLength: { + serializedName: "Content-Length", + xmlName: "Content-Length", + type: { + name: "Number", + }, + }, + contentType: { + serializedName: "Content-Type", + xmlName: "Content-Type", + type: { + name: "String", + }, + }, + contentEncoding: { + serializedName: "Content-Encoding", + xmlName: "Content-Encoding", + type: { + name: "String", + }, + }, + contentLanguage: { + serializedName: "Content-Language", + xmlName: "Content-Language", + type: { + name: "String", + }, + }, + contentMD5: { + serializedName: "Content-MD5", + xmlName: "Content-MD5", + type: { + name: "ByteArray", + }, + }, + contentDisposition: { + serializedName: "Content-Disposition", + xmlName: "Content-Disposition", + type: { + name: "String", + }, + }, + cacheControl: { + serializedName: "Cache-Control", + xmlName: "Cache-Control", + type: { + name: "String", + }, + }, + blobSequenceNumber: { + serializedName: "x-ms-blob-sequence-number", + xmlName: "x-ms-blob-sequence-number", + type: { + name: "Number", + }, + }, + blobType: { + serializedName: "BlobType", + xmlName: "BlobType", + type: { + name: "Enum", + allowedValues: ["BlockBlob", "PageBlob", "AppendBlob"], + }, + }, + leaseStatus: { + serializedName: "LeaseStatus", + xmlName: "LeaseStatus", + type: { + name: "Enum", + allowedValues: ["locked", "unlocked"], + }, + }, + leaseState: { + serializedName: "LeaseState", + xmlName: "LeaseState", + type: { + name: "Enum", + allowedValues: [ + "available", + "leased", + "expired", + "breaking", + "broken", + ], + }, + }, + leaseDuration: { + serializedName: "LeaseDuration", + xmlName: "LeaseDuration", + type: { + name: "Enum", + allowedValues: ["infinite", "fixed"], + }, + }, + copyId: { + serializedName: "CopyId", + xmlName: "CopyId", + type: { + name: "String", + }, + }, + copyStatus: { + serializedName: "CopyStatus", + xmlName: "CopyStatus", + type: { + name: "Enum", + allowedValues: ["pending", "success", "aborted", "failed"], + }, + }, + copySource: { + serializedName: "CopySource", + xmlName: "CopySource", + type: { + name: "String", + }, + }, + copyProgress: { + serializedName: "CopyProgress", + xmlName: "CopyProgress", + type: { + name: "String", + }, + }, + copyCompletedOn: { + serializedName: "CopyCompletionTime", + xmlName: "CopyCompletionTime", + type: { + name: "DateTimeRfc1123", + }, + }, + copyStatusDescription: { + serializedName: "CopyStatusDescription", + xmlName: "CopyStatusDescription", + type: { + name: "String", + }, + }, + serverEncrypted: { + serializedName: "ServerEncrypted", + xmlName: "ServerEncrypted", + type: { + name: "Boolean", + }, + }, + incrementalCopy: { + serializedName: "IncrementalCopy", + xmlName: "IncrementalCopy", + type: { + name: "Boolean", + }, + }, + destinationSnapshot: { + serializedName: "DestinationSnapshot", + xmlName: "DestinationSnapshot", + type: { + name: "String", + }, + }, + deletedOn: { + serializedName: "DeletedTime", + xmlName: "DeletedTime", + type: { + name: "DateTimeRfc1123", + }, + }, + remainingRetentionDays: { + serializedName: "RemainingRetentionDays", + xmlName: "RemainingRetentionDays", + type: { + name: "Number", + }, + }, + accessTier: { + serializedName: "AccessTier", + xmlName: "AccessTier", + type: { + name: "Enum", + allowedValues: [ + "P4", + "P6", + "P10", + "P15", + "P20", + "P30", + "P40", + "P50", + "P60", + "P70", + "P80", + "Hot", + "Cool", + "Archive", + "Cold", + ], + }, + }, + accessTierInferred: { + serializedName: "AccessTierInferred", + xmlName: "AccessTierInferred", + type: { + name: "Boolean", + }, + }, + archiveStatus: { + serializedName: "ArchiveStatus", + xmlName: "ArchiveStatus", + type: { + name: "Enum", + allowedValues: [ + "rehydrate-pending-to-hot", + "rehydrate-pending-to-cool", + "rehydrate-pending-to-cold", + ], + }, + }, + customerProvidedKeySha256: { + serializedName: "CustomerProvidedKeySha256", + xmlName: "CustomerProvidedKeySha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "EncryptionScope", + xmlName: "EncryptionScope", + type: { + name: "String", + }, + }, + accessTierChangedOn: { + serializedName: "AccessTierChangeTime", + xmlName: "AccessTierChangeTime", + type: { + name: "DateTimeRfc1123", + }, + }, + tagCount: { + serializedName: "TagCount", + xmlName: "TagCount", + type: { + name: "Number", + }, + }, + expiresOn: { + serializedName: "Expiry-Time", + xmlName: "Expiry-Time", + type: { + name: "DateTimeRfc1123", + }, + }, + isSealed: { + serializedName: "Sealed", + xmlName: "Sealed", + type: { + name: "Boolean", + }, + }, + rehydratePriority: { + serializedName: "RehydratePriority", + xmlName: "RehydratePriority", + type: { + name: "Enum", + allowedValues: ["High", "Standard"], + }, + }, + lastAccessedOn: { + serializedName: "LastAccessTime", + xmlName: "LastAccessTime", + type: { + name: "DateTimeRfc1123", + }, + }, + immutabilityPolicyExpiresOn: { + serializedName: "ImmutabilityPolicyUntilDate", + xmlName: "ImmutabilityPolicyUntilDate", + type: { + name: "DateTimeRfc1123", + }, + }, + immutabilityPolicyMode: { + serializedName: "ImmutabilityPolicyMode", + xmlName: "ImmutabilityPolicyMode", + type: { + name: "Enum", + allowedValues: ["Mutable", "Unlocked", "Locked"], + }, + }, + legalHold: { + serializedName: "LegalHold", + xmlName: "LegalHold", + type: { + name: "Boolean", + }, + }, + }, + }, +}; +exports.ListBlobsHierarchySegmentResponse = { + serializedName: "ListBlobsHierarchySegmentResponse", + xmlName: "EnumerationResults", + type: { + name: "Composite", + className: "ListBlobsHierarchySegmentResponse", + modelProperties: { + serviceEndpoint: { + serializedName: "ServiceEndpoint", + required: true, + xmlName: "ServiceEndpoint", + xmlIsAttribute: true, + type: { + name: "String", + }, + }, + containerName: { + serializedName: "ContainerName", + required: true, + xmlName: "ContainerName", + xmlIsAttribute: true, + type: { + name: "String", + }, + }, + prefix: { + serializedName: "Prefix", + xmlName: "Prefix", + type: { + name: "String", + }, + }, + marker: { + serializedName: "Marker", + xmlName: "Marker", + type: { + name: "String", + }, + }, + maxPageSize: { + serializedName: "MaxResults", + xmlName: "MaxResults", + type: { + name: "Number", + }, + }, + delimiter: { + serializedName: "Delimiter", + xmlName: "Delimiter", + type: { + name: "String", + }, + }, + segment: { + serializedName: "Segment", + xmlName: "Blobs", + type: { + name: "Composite", + className: "BlobHierarchyListSegment", + }, + }, + continuationToken: { + serializedName: "NextMarker", + xmlName: "NextMarker", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobHierarchyListSegment = { + serializedName: "BlobHierarchyListSegment", + xmlName: "Blobs", + type: { + name: "Composite", + className: "BlobHierarchyListSegment", + modelProperties: { + blobPrefixes: { + serializedName: "BlobPrefixes", + xmlName: "BlobPrefixes", + xmlElementName: "BlobPrefix", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "BlobPrefix", + }, + }, + }, + }, + blobItems: { + serializedName: "BlobItems", + required: true, + xmlName: "BlobItems", + xmlElementName: "Blob", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "BlobItemInternal", + }, + }, + }, + }, + }, + }, +}; +exports.BlobPrefix = { + serializedName: "BlobPrefix", + type: { + name: "Composite", + className: "BlobPrefix", + modelProperties: { + name: { + serializedName: "Name", + xmlName: "Name", + type: { + name: "Composite", + className: "BlobName", + }, + }, + }, + }, +}; +exports.BlockLookupList = { + serializedName: "BlockLookupList", + xmlName: "BlockList", + type: { + name: "Composite", + className: "BlockLookupList", + modelProperties: { + committed: { + serializedName: "Committed", + xmlName: "Committed", + xmlElementName: "Committed", + type: { + name: "Sequence", + element: { + type: { + name: "String", + }, + }, + }, + }, + uncommitted: { + serializedName: "Uncommitted", + xmlName: "Uncommitted", + xmlElementName: "Uncommitted", + type: { + name: "Sequence", + element: { + type: { + name: "String", + }, + }, + }, + }, + latest: { + serializedName: "Latest", + xmlName: "Latest", + xmlElementName: "Latest", + type: { + name: "Sequence", + element: { + type: { + name: "String", + }, + }, + }, + }, + }, + }, +}; +exports.BlockList = { + serializedName: "BlockList", + type: { + name: "Composite", + className: "BlockList", + modelProperties: { + committedBlocks: { + serializedName: "CommittedBlocks", + xmlName: "CommittedBlocks", + xmlIsWrapped: true, + xmlElementName: "Block", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "Block", + }, + }, + }, + }, + uncommittedBlocks: { + serializedName: "UncommittedBlocks", + xmlName: "UncommittedBlocks", + xmlIsWrapped: true, + xmlElementName: "Block", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "Block", + }, + }, + }, + }, + }, + }, +}; +exports.Block = { + serializedName: "Block", + type: { + name: "Composite", + className: "Block", + modelProperties: { + name: { + serializedName: "Name", + required: true, + xmlName: "Name", + type: { + name: "String", + }, + }, + size: { + serializedName: "Size", + required: true, + xmlName: "Size", + type: { + name: "Number", + }, + }, + }, + }, +}; +exports.PageList = { + serializedName: "PageList", + type: { + name: "Composite", + className: "PageList", + modelProperties: { + pageRange: { + serializedName: "PageRange", + xmlName: "PageRange", + xmlElementName: "PageRange", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "PageRange", + }, + }, + }, + }, + clearRange: { + serializedName: "ClearRange", + xmlName: "ClearRange", + xmlElementName: "ClearRange", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "ClearRange", + }, + }, + }, + }, + continuationToken: { + serializedName: "NextMarker", + xmlName: "NextMarker", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageRange = { + serializedName: "PageRange", + xmlName: "PageRange", + type: { + name: "Composite", + className: "PageRange", + modelProperties: { + start: { + serializedName: "Start", + required: true, + xmlName: "Start", + type: { + name: "Number", + }, + }, + end: { + serializedName: "End", + required: true, + xmlName: "End", + type: { + name: "Number", + }, + }, + }, + }, +}; +exports.ClearRange = { + serializedName: "ClearRange", + xmlName: "ClearRange", + type: { + name: "Composite", + className: "ClearRange", + modelProperties: { + start: { + serializedName: "Start", + required: true, + xmlName: "Start", + type: { + name: "Number", + }, + }, + end: { + serializedName: "End", + required: true, + xmlName: "End", + type: { + name: "Number", + }, + }, + }, + }, +}; +exports.QueryRequest = { + serializedName: "QueryRequest", + xmlName: "QueryRequest", + type: { + name: "Composite", + className: "QueryRequest", + modelProperties: { + queryType: { + serializedName: "QueryType", + required: true, + xmlName: "QueryType", + type: { + name: "String", + }, + }, + expression: { + serializedName: "Expression", + required: true, + xmlName: "Expression", + type: { + name: "String", + }, + }, + inputSerialization: { + serializedName: "InputSerialization", + xmlName: "InputSerialization", + type: { + name: "Composite", + className: "QuerySerialization", + }, + }, + outputSerialization: { + serializedName: "OutputSerialization", + xmlName: "OutputSerialization", + type: { + name: "Composite", + className: "QuerySerialization", + }, + }, + }, + }, +}; +exports.QuerySerialization = { + serializedName: "QuerySerialization", + type: { + name: "Composite", + className: "QuerySerialization", + modelProperties: { + format: { + serializedName: "Format", + xmlName: "Format", + type: { + name: "Composite", + className: "QueryFormat", + }, + }, + }, + }, +}; +exports.QueryFormat = { + serializedName: "QueryFormat", + type: { + name: "Composite", + className: "QueryFormat", + modelProperties: { + type: { + serializedName: "Type", + required: true, + xmlName: "Type", + type: { + name: "Enum", + allowedValues: ["delimited", "json", "arrow", "parquet"], + }, + }, + delimitedTextConfiguration: { + serializedName: "DelimitedTextConfiguration", + xmlName: "DelimitedTextConfiguration", + type: { + name: "Composite", + className: "DelimitedTextConfiguration", + }, + }, + jsonTextConfiguration: { + serializedName: "JsonTextConfiguration", + xmlName: "JsonTextConfiguration", + type: { + name: "Composite", + className: "JsonTextConfiguration", + }, + }, + arrowConfiguration: { + serializedName: "ArrowConfiguration", + xmlName: "ArrowConfiguration", + type: { + name: "Composite", + className: "ArrowConfiguration", + }, + }, + parquetTextConfiguration: { + serializedName: "ParquetTextConfiguration", + xmlName: "ParquetTextConfiguration", + type: { + name: "Dictionary", + value: { type: { name: "any" } }, + }, + }, + }, + }, +}; +exports.DelimitedTextConfiguration = { + serializedName: "DelimitedTextConfiguration", + xmlName: "DelimitedTextConfiguration", + type: { + name: "Composite", + className: "DelimitedTextConfiguration", + modelProperties: { + columnSeparator: { + serializedName: "ColumnSeparator", + xmlName: "ColumnSeparator", + type: { + name: "String", + }, + }, + fieldQuote: { + serializedName: "FieldQuote", + xmlName: "FieldQuote", + type: { + name: "String", + }, + }, + recordSeparator: { + serializedName: "RecordSeparator", + xmlName: "RecordSeparator", + type: { + name: "String", + }, + }, + escapeChar: { + serializedName: "EscapeChar", + xmlName: "EscapeChar", + type: { + name: "String", + }, + }, + headersPresent: { + serializedName: "HeadersPresent", + xmlName: "HasHeaders", + type: { + name: "Boolean", + }, + }, + }, + }, +}; +exports.JsonTextConfiguration = { + serializedName: "JsonTextConfiguration", + xmlName: "JsonTextConfiguration", + type: { + name: "Composite", + className: "JsonTextConfiguration", + modelProperties: { + recordSeparator: { + serializedName: "RecordSeparator", + xmlName: "RecordSeparator", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ArrowConfiguration = { + serializedName: "ArrowConfiguration", + xmlName: "ArrowConfiguration", + type: { + name: "Composite", + className: "ArrowConfiguration", + modelProperties: { + schema: { + serializedName: "Schema", + required: true, + xmlName: "Schema", + xmlIsWrapped: true, + xmlElementName: "Field", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "ArrowField", + }, + }, + }, + }, + }, + }, +}; +exports.ArrowField = { + serializedName: "ArrowField", + xmlName: "Field", + type: { + name: "Composite", + className: "ArrowField", + modelProperties: { + type: { + serializedName: "Type", + required: true, + xmlName: "Type", + type: { + name: "String", + }, + }, + name: { + serializedName: "Name", + xmlName: "Name", + type: { + name: "String", + }, + }, + precision: { + serializedName: "Precision", + xmlName: "Precision", + type: { + name: "Number", + }, + }, + scale: { + serializedName: "Scale", + xmlName: "Scale", + type: { + name: "Number", + }, + }, + }, + }, +}; +exports.ServiceSetPropertiesHeaders = { + serializedName: "Service_setPropertiesHeaders", + type: { + name: "Composite", + className: "ServiceSetPropertiesHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ServiceSetPropertiesExceptionHeaders = { + serializedName: "Service_setPropertiesExceptionHeaders", + type: { + name: "Composite", + className: "ServiceSetPropertiesExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ServiceGetPropertiesHeaders = { + serializedName: "Service_getPropertiesHeaders", + type: { + name: "Composite", + className: "ServiceGetPropertiesHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ServiceGetPropertiesExceptionHeaders = { + serializedName: "Service_getPropertiesExceptionHeaders", + type: { + name: "Composite", + className: "ServiceGetPropertiesExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ServiceGetStatisticsHeaders = { + serializedName: "Service_getStatisticsHeaders", + type: { + name: "Composite", + className: "ServiceGetStatisticsHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ServiceGetStatisticsExceptionHeaders = { + serializedName: "Service_getStatisticsExceptionHeaders", + type: { + name: "Composite", + className: "ServiceGetStatisticsExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ServiceListContainersSegmentHeaders = { + serializedName: "Service_listContainersSegmentHeaders", + type: { + name: "Composite", + className: "ServiceListContainersSegmentHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ServiceListContainersSegmentExceptionHeaders = { + serializedName: "Service_listContainersSegmentExceptionHeaders", + type: { + name: "Composite", + className: "ServiceListContainersSegmentExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ServiceGetUserDelegationKeyHeaders = { + serializedName: "Service_getUserDelegationKeyHeaders", + type: { + name: "Composite", + className: "ServiceGetUserDelegationKeyHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ServiceGetUserDelegationKeyExceptionHeaders = { + serializedName: "Service_getUserDelegationKeyExceptionHeaders", + type: { + name: "Composite", + className: "ServiceGetUserDelegationKeyExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ServiceGetAccountInfoHeaders = { + serializedName: "Service_getAccountInfoHeaders", + type: { + name: "Composite", + className: "ServiceGetAccountInfoHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + skuName: { + serializedName: "x-ms-sku-name", + xmlName: "x-ms-sku-name", + type: { + name: "Enum", + allowedValues: [ + "Standard_LRS", + "Standard_GRS", + "Standard_RAGRS", + "Standard_ZRS", + "Premium_LRS", + ], + }, + }, + accountKind: { + serializedName: "x-ms-account-kind", + xmlName: "x-ms-account-kind", + type: { + name: "Enum", + allowedValues: [ + "Storage", + "BlobStorage", + "StorageV2", + "FileStorage", + "BlockBlobStorage", + ], + }, + }, + isHierarchicalNamespaceEnabled: { + serializedName: "x-ms-is-hns-enabled", + xmlName: "x-ms-is-hns-enabled", + type: { + name: "Boolean", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ServiceGetAccountInfoExceptionHeaders = { + serializedName: "Service_getAccountInfoExceptionHeaders", + type: { + name: "Composite", + className: "ServiceGetAccountInfoExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ServiceSubmitBatchHeaders = { + serializedName: "Service_submitBatchHeaders", + type: { + name: "Composite", + className: "ServiceSubmitBatchHeaders", + modelProperties: { + contentType: { + serializedName: "content-type", + xmlName: "content-type", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ServiceSubmitBatchExceptionHeaders = { + serializedName: "Service_submitBatchExceptionHeaders", + type: { + name: "Composite", + className: "ServiceSubmitBatchExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ServiceFilterBlobsHeaders = { + serializedName: "Service_filterBlobsHeaders", + type: { + name: "Composite", + className: "ServiceFilterBlobsHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ServiceFilterBlobsExceptionHeaders = { + serializedName: "Service_filterBlobsExceptionHeaders", + type: { + name: "Composite", + className: "ServiceFilterBlobsExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerCreateHeaders = { + serializedName: "Container_createHeaders", + type: { + name: "Composite", + className: "ContainerCreateHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerCreateExceptionHeaders = { + serializedName: "Container_createExceptionHeaders", + type: { + name: "Composite", + className: "ContainerCreateExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerGetPropertiesHeaders = { + serializedName: "Container_getPropertiesHeaders", + type: { + name: "Composite", + className: "ContainerGetPropertiesHeaders", + modelProperties: { + metadata: { + serializedName: "x-ms-meta", + headerCollectionPrefix: "x-ms-meta-", + xmlName: "x-ms-meta", + type: { + name: "Dictionary", + value: { type: { name: "String" } }, + }, + }, + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + leaseDuration: { + serializedName: "x-ms-lease-duration", + xmlName: "x-ms-lease-duration", + type: { + name: "Enum", + allowedValues: ["infinite", "fixed"], + }, + }, + leaseState: { + serializedName: "x-ms-lease-state", + xmlName: "x-ms-lease-state", + type: { + name: "Enum", + allowedValues: [ + "available", + "leased", + "expired", + "breaking", + "broken", + ], + }, + }, + leaseStatus: { + serializedName: "x-ms-lease-status", + xmlName: "x-ms-lease-status", + type: { + name: "Enum", + allowedValues: ["locked", "unlocked"], + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + blobPublicAccess: { + serializedName: "x-ms-blob-public-access", + xmlName: "x-ms-blob-public-access", + type: { + name: "Enum", + allowedValues: ["container", "blob"], + }, + }, + hasImmutabilityPolicy: { + serializedName: "x-ms-has-immutability-policy", + xmlName: "x-ms-has-immutability-policy", + type: { + name: "Boolean", + }, + }, + hasLegalHold: { + serializedName: "x-ms-has-legal-hold", + xmlName: "x-ms-has-legal-hold", + type: { + name: "Boolean", + }, + }, + defaultEncryptionScope: { + serializedName: "x-ms-default-encryption-scope", + xmlName: "x-ms-default-encryption-scope", + type: { + name: "String", + }, + }, + denyEncryptionScopeOverride: { + serializedName: "x-ms-deny-encryption-scope-override", + xmlName: "x-ms-deny-encryption-scope-override", + type: { + name: "Boolean", + }, + }, + isImmutableStorageWithVersioningEnabled: { + serializedName: "x-ms-immutable-storage-with-versioning-enabled", + xmlName: "x-ms-immutable-storage-with-versioning-enabled", + type: { + name: "Boolean", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerGetPropertiesExceptionHeaders = { + serializedName: "Container_getPropertiesExceptionHeaders", + type: { + name: "Composite", + className: "ContainerGetPropertiesExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerDeleteHeaders = { + serializedName: "Container_deleteHeaders", + type: { + name: "Composite", + className: "ContainerDeleteHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerDeleteExceptionHeaders = { + serializedName: "Container_deleteExceptionHeaders", + type: { + name: "Composite", + className: "ContainerDeleteExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerSetMetadataHeaders = { + serializedName: "Container_setMetadataHeaders", + type: { + name: "Composite", + className: "ContainerSetMetadataHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerSetMetadataExceptionHeaders = { + serializedName: "Container_setMetadataExceptionHeaders", + type: { + name: "Composite", + className: "ContainerSetMetadataExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerGetAccessPolicyHeaders = { + serializedName: "Container_getAccessPolicyHeaders", + type: { + name: "Composite", + className: "ContainerGetAccessPolicyHeaders", + modelProperties: { + blobPublicAccess: { + serializedName: "x-ms-blob-public-access", + xmlName: "x-ms-blob-public-access", + type: { + name: "Enum", + allowedValues: ["container", "blob"], + }, + }, + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerGetAccessPolicyExceptionHeaders = { + serializedName: "Container_getAccessPolicyExceptionHeaders", + type: { + name: "Composite", + className: "ContainerGetAccessPolicyExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerSetAccessPolicyHeaders = { + serializedName: "Container_setAccessPolicyHeaders", + type: { + name: "Composite", + className: "ContainerSetAccessPolicyHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerSetAccessPolicyExceptionHeaders = { + serializedName: "Container_setAccessPolicyExceptionHeaders", + type: { + name: "Composite", + className: "ContainerSetAccessPolicyExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerRestoreHeaders = { + serializedName: "Container_restoreHeaders", + type: { + name: "Composite", + className: "ContainerRestoreHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerRestoreExceptionHeaders = { + serializedName: "Container_restoreExceptionHeaders", + type: { + name: "Composite", + className: "ContainerRestoreExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerRenameHeaders = { + serializedName: "Container_renameHeaders", + type: { + name: "Composite", + className: "ContainerRenameHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerRenameExceptionHeaders = { + serializedName: "Container_renameExceptionHeaders", + type: { + name: "Composite", + className: "ContainerRenameExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerSubmitBatchHeaders = { + serializedName: "Container_submitBatchHeaders", + type: { + name: "Composite", + className: "ContainerSubmitBatchHeaders", + modelProperties: { + contentType: { + serializedName: "content-type", + xmlName: "content-type", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerSubmitBatchExceptionHeaders = { + serializedName: "Container_submitBatchExceptionHeaders", + type: { + name: "Composite", + className: "ContainerSubmitBatchExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerFilterBlobsHeaders = { + serializedName: "Container_filterBlobsHeaders", + type: { + name: "Composite", + className: "ContainerFilterBlobsHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + }, + }, +}; +exports.ContainerFilterBlobsExceptionHeaders = { + serializedName: "Container_filterBlobsExceptionHeaders", + type: { + name: "Composite", + className: "ContainerFilterBlobsExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerAcquireLeaseHeaders = { + serializedName: "Container_acquireLeaseHeaders", + type: { + name: "Composite", + className: "ContainerAcquireLeaseHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + leaseId: { + serializedName: "x-ms-lease-id", + xmlName: "x-ms-lease-id", + type: { + name: "String", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + }, + }, +}; +exports.ContainerAcquireLeaseExceptionHeaders = { + serializedName: "Container_acquireLeaseExceptionHeaders", + type: { + name: "Composite", + className: "ContainerAcquireLeaseExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerReleaseLeaseHeaders = { + serializedName: "Container_releaseLeaseHeaders", + type: { + name: "Composite", + className: "ContainerReleaseLeaseHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + }, + }, +}; +exports.ContainerReleaseLeaseExceptionHeaders = { + serializedName: "Container_releaseLeaseExceptionHeaders", + type: { + name: "Composite", + className: "ContainerReleaseLeaseExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerRenewLeaseHeaders = { + serializedName: "Container_renewLeaseHeaders", + type: { + name: "Composite", + className: "ContainerRenewLeaseHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + leaseId: { + serializedName: "x-ms-lease-id", + xmlName: "x-ms-lease-id", + type: { + name: "String", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + }, + }, +}; +exports.ContainerRenewLeaseExceptionHeaders = { + serializedName: "Container_renewLeaseExceptionHeaders", + type: { + name: "Composite", + className: "ContainerRenewLeaseExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerBreakLeaseHeaders = { + serializedName: "Container_breakLeaseHeaders", + type: { + name: "Composite", + className: "ContainerBreakLeaseHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + leaseTime: { + serializedName: "x-ms-lease-time", + xmlName: "x-ms-lease-time", + type: { + name: "Number", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + }, + }, +}; +exports.ContainerBreakLeaseExceptionHeaders = { + serializedName: "Container_breakLeaseExceptionHeaders", + type: { + name: "Composite", + className: "ContainerBreakLeaseExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerChangeLeaseHeaders = { + serializedName: "Container_changeLeaseHeaders", + type: { + name: "Composite", + className: "ContainerChangeLeaseHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + leaseId: { + serializedName: "x-ms-lease-id", + xmlName: "x-ms-lease-id", + type: { + name: "String", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + }, + }, +}; +exports.ContainerChangeLeaseExceptionHeaders = { + serializedName: "Container_changeLeaseExceptionHeaders", + type: { + name: "Composite", + className: "ContainerChangeLeaseExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerListBlobFlatSegmentHeaders = { + serializedName: "Container_listBlobFlatSegmentHeaders", + type: { + name: "Composite", + className: "ContainerListBlobFlatSegmentHeaders", + modelProperties: { + contentType: { + serializedName: "content-type", + xmlName: "content-type", + type: { + name: "String", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerListBlobFlatSegmentExceptionHeaders = { + serializedName: "Container_listBlobFlatSegmentExceptionHeaders", + type: { + name: "Composite", + className: "ContainerListBlobFlatSegmentExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerListBlobHierarchySegmentHeaders = { + serializedName: "Container_listBlobHierarchySegmentHeaders", + type: { + name: "Composite", + className: "ContainerListBlobHierarchySegmentHeaders", + modelProperties: { + contentType: { + serializedName: "content-type", + xmlName: "content-type", + type: { + name: "String", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerListBlobHierarchySegmentExceptionHeaders = { + serializedName: "Container_listBlobHierarchySegmentExceptionHeaders", + type: { + name: "Composite", + className: "ContainerListBlobHierarchySegmentExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.ContainerGetAccountInfoHeaders = { + serializedName: "Container_getAccountInfoHeaders", + type: { + name: "Composite", + className: "ContainerGetAccountInfoHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + skuName: { + serializedName: "x-ms-sku-name", + xmlName: "x-ms-sku-name", + type: { + name: "Enum", + allowedValues: [ + "Standard_LRS", + "Standard_GRS", + "Standard_RAGRS", + "Standard_ZRS", + "Premium_LRS", + ], + }, + }, + accountKind: { + serializedName: "x-ms-account-kind", + xmlName: "x-ms-account-kind", + type: { + name: "Enum", + allowedValues: [ + "Storage", + "BlobStorage", + "StorageV2", + "FileStorage", + "BlockBlobStorage", + ], + }, + }, + isHierarchicalNamespaceEnabled: { + serializedName: "x-ms-is-hns-enabled", + xmlName: "x-ms-is-hns-enabled", + type: { + name: "Boolean", + }, + }, + }, + }, +}; +exports.ContainerGetAccountInfoExceptionHeaders = { + serializedName: "Container_getAccountInfoExceptionHeaders", + type: { + name: "Composite", + className: "ContainerGetAccountInfoExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobDownloadHeaders = { + serializedName: "Blob_downloadHeaders", + type: { + name: "Composite", + className: "BlobDownloadHeaders", + modelProperties: { + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + createdOn: { + serializedName: "x-ms-creation-time", + xmlName: "x-ms-creation-time", + type: { + name: "DateTimeRfc1123", + }, + }, + metadata: { + serializedName: "x-ms-meta", + headerCollectionPrefix: "x-ms-meta-", + xmlName: "x-ms-meta", + type: { + name: "Dictionary", + value: { type: { name: "String" } }, + }, + }, + objectReplicationPolicyId: { + serializedName: "x-ms-or-policy-id", + xmlName: "x-ms-or-policy-id", + type: { + name: "String", + }, + }, + objectReplicationRules: { + serializedName: "x-ms-or", + headerCollectionPrefix: "x-ms-or-", + xmlName: "x-ms-or", + type: { + name: "Dictionary", + value: { type: { name: "String" } }, + }, + }, + contentLength: { + serializedName: "content-length", + xmlName: "content-length", + type: { + name: "Number", + }, + }, + contentType: { + serializedName: "content-type", + xmlName: "content-type", + type: { + name: "String", + }, + }, + contentRange: { + serializedName: "content-range", + xmlName: "content-range", + type: { + name: "String", + }, + }, + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + contentEncoding: { + serializedName: "content-encoding", + xmlName: "content-encoding", + type: { + name: "String", + }, + }, + cacheControl: { + serializedName: "cache-control", + xmlName: "cache-control", + type: { + name: "String", + }, + }, + contentDisposition: { + serializedName: "content-disposition", + xmlName: "content-disposition", + type: { + name: "String", + }, + }, + contentLanguage: { + serializedName: "content-language", + xmlName: "content-language", + type: { + name: "String", + }, + }, + blobSequenceNumber: { + serializedName: "x-ms-blob-sequence-number", + xmlName: "x-ms-blob-sequence-number", + type: { + name: "Number", + }, + }, + blobType: { + serializedName: "x-ms-blob-type", + xmlName: "x-ms-blob-type", + type: { + name: "Enum", + allowedValues: ["BlockBlob", "PageBlob", "AppendBlob"], + }, + }, + copyCompletedOn: { + serializedName: "x-ms-copy-completion-time", + xmlName: "x-ms-copy-completion-time", + type: { + name: "DateTimeRfc1123", + }, + }, + copyStatusDescription: { + serializedName: "x-ms-copy-status-description", + xmlName: "x-ms-copy-status-description", + type: { + name: "String", + }, + }, + copyId: { + serializedName: "x-ms-copy-id", + xmlName: "x-ms-copy-id", + type: { + name: "String", + }, + }, + copyProgress: { + serializedName: "x-ms-copy-progress", + xmlName: "x-ms-copy-progress", + type: { + name: "String", + }, + }, + copySource: { + serializedName: "x-ms-copy-source", + xmlName: "x-ms-copy-source", + type: { + name: "String", + }, + }, + copyStatus: { + serializedName: "x-ms-copy-status", + xmlName: "x-ms-copy-status", + type: { + name: "Enum", + allowedValues: ["pending", "success", "aborted", "failed"], + }, + }, + leaseDuration: { + serializedName: "x-ms-lease-duration", + xmlName: "x-ms-lease-duration", + type: { + name: "Enum", + allowedValues: ["infinite", "fixed"], + }, + }, + leaseState: { + serializedName: "x-ms-lease-state", + xmlName: "x-ms-lease-state", + type: { + name: "Enum", + allowedValues: [ + "available", + "leased", + "expired", + "breaking", + "broken", + ], + }, + }, + leaseStatus: { + serializedName: "x-ms-lease-status", + xmlName: "x-ms-lease-status", + type: { + name: "Enum", + allowedValues: ["locked", "unlocked"], + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + versionId: { + serializedName: "x-ms-version-id", + xmlName: "x-ms-version-id", + type: { + name: "String", + }, + }, + isCurrentVersion: { + serializedName: "x-ms-is-current-version", + xmlName: "x-ms-is-current-version", + type: { + name: "Boolean", + }, + }, + acceptRanges: { + serializedName: "accept-ranges", + xmlName: "accept-ranges", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + blobCommittedBlockCount: { + serializedName: "x-ms-blob-committed-block-count", + xmlName: "x-ms-blob-committed-block-count", + type: { + name: "Number", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-server-encrypted", + xmlName: "x-ms-server-encrypted", + type: { + name: "Boolean", + }, + }, + encryptionKeySha256: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + blobContentMD5: { + serializedName: "x-ms-blob-content-md5", + xmlName: "x-ms-blob-content-md5", + type: { + name: "ByteArray", + }, + }, + tagCount: { + serializedName: "x-ms-tag-count", + xmlName: "x-ms-tag-count", + type: { + name: "Number", + }, + }, + isSealed: { + serializedName: "x-ms-blob-sealed", + xmlName: "x-ms-blob-sealed", + type: { + name: "Boolean", + }, + }, + lastAccessed: { + serializedName: "x-ms-last-access-time", + xmlName: "x-ms-last-access-time", + type: { + name: "DateTimeRfc1123", + }, + }, + immutabilityPolicyExpiresOn: { + serializedName: "x-ms-immutability-policy-until-date", + xmlName: "x-ms-immutability-policy-until-date", + type: { + name: "DateTimeRfc1123", + }, + }, + immutabilityPolicyMode: { + serializedName: "x-ms-immutability-policy-mode", + xmlName: "x-ms-immutability-policy-mode", + type: { + name: "Enum", + allowedValues: ["Mutable", "Unlocked", "Locked"], + }, + }, + legalHold: { + serializedName: "x-ms-legal-hold", + xmlName: "x-ms-legal-hold", + type: { + name: "Boolean", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + contentCrc64: { + serializedName: "x-ms-content-crc64", + xmlName: "x-ms-content-crc64", + type: { + name: "ByteArray", + }, + }, + }, + }, +}; +exports.BlobDownloadExceptionHeaders = { + serializedName: "Blob_downloadExceptionHeaders", + type: { + name: "Composite", + className: "BlobDownloadExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobGetPropertiesHeaders = { + serializedName: "Blob_getPropertiesHeaders", + type: { + name: "Composite", + className: "BlobGetPropertiesHeaders", + modelProperties: { + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + createdOn: { + serializedName: "x-ms-creation-time", + xmlName: "x-ms-creation-time", + type: { + name: "DateTimeRfc1123", + }, + }, + metadata: { + serializedName: "x-ms-meta", + headerCollectionPrefix: "x-ms-meta-", + xmlName: "x-ms-meta", + type: { + name: "Dictionary", + value: { type: { name: "String" } }, + }, + }, + objectReplicationPolicyId: { + serializedName: "x-ms-or-policy-id", + xmlName: "x-ms-or-policy-id", + type: { + name: "String", + }, + }, + objectReplicationRules: { + serializedName: "x-ms-or", + headerCollectionPrefix: "x-ms-or-", + xmlName: "x-ms-or", + type: { + name: "Dictionary", + value: { type: { name: "String" } }, + }, + }, + blobType: { + serializedName: "x-ms-blob-type", + xmlName: "x-ms-blob-type", + type: { + name: "Enum", + allowedValues: ["BlockBlob", "PageBlob", "AppendBlob"], + }, + }, + copyCompletedOn: { + serializedName: "x-ms-copy-completion-time", + xmlName: "x-ms-copy-completion-time", + type: { + name: "DateTimeRfc1123", + }, + }, + copyStatusDescription: { + serializedName: "x-ms-copy-status-description", + xmlName: "x-ms-copy-status-description", + type: { + name: "String", + }, + }, + copyId: { + serializedName: "x-ms-copy-id", + xmlName: "x-ms-copy-id", + type: { + name: "String", + }, + }, + copyProgress: { + serializedName: "x-ms-copy-progress", + xmlName: "x-ms-copy-progress", + type: { + name: "String", + }, + }, + copySource: { + serializedName: "x-ms-copy-source", + xmlName: "x-ms-copy-source", + type: { + name: "String", + }, + }, + copyStatus: { + serializedName: "x-ms-copy-status", + xmlName: "x-ms-copy-status", + type: { + name: "Enum", + allowedValues: ["pending", "success", "aborted", "failed"], + }, + }, + isIncrementalCopy: { + serializedName: "x-ms-incremental-copy", + xmlName: "x-ms-incremental-copy", + type: { + name: "Boolean", + }, + }, + destinationSnapshot: { + serializedName: "x-ms-copy-destination-snapshot", + xmlName: "x-ms-copy-destination-snapshot", + type: { + name: "String", + }, + }, + leaseDuration: { + serializedName: "x-ms-lease-duration", + xmlName: "x-ms-lease-duration", + type: { + name: "Enum", + allowedValues: ["infinite", "fixed"], + }, + }, + leaseState: { + serializedName: "x-ms-lease-state", + xmlName: "x-ms-lease-state", + type: { + name: "Enum", + allowedValues: [ + "available", + "leased", + "expired", + "breaking", + "broken", + ], + }, + }, + leaseStatus: { + serializedName: "x-ms-lease-status", + xmlName: "x-ms-lease-status", + type: { + name: "Enum", + allowedValues: ["locked", "unlocked"], + }, + }, + contentLength: { + serializedName: "content-length", + xmlName: "content-length", + type: { + name: "Number", + }, + }, + contentType: { + serializedName: "content-type", + xmlName: "content-type", + type: { + name: "String", + }, + }, + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + contentEncoding: { + serializedName: "content-encoding", + xmlName: "content-encoding", + type: { + name: "String", + }, + }, + contentDisposition: { + serializedName: "content-disposition", + xmlName: "content-disposition", + type: { + name: "String", + }, + }, + contentLanguage: { + serializedName: "content-language", + xmlName: "content-language", + type: { + name: "String", + }, + }, + cacheControl: { + serializedName: "cache-control", + xmlName: "cache-control", + type: { + name: "String", + }, + }, + blobSequenceNumber: { + serializedName: "x-ms-blob-sequence-number", + xmlName: "x-ms-blob-sequence-number", + type: { + name: "Number", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + acceptRanges: { + serializedName: "accept-ranges", + xmlName: "accept-ranges", + type: { + name: "String", + }, + }, + blobCommittedBlockCount: { + serializedName: "x-ms-blob-committed-block-count", + xmlName: "x-ms-blob-committed-block-count", + type: { + name: "Number", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-server-encrypted", + xmlName: "x-ms-server-encrypted", + type: { + name: "Boolean", + }, + }, + encryptionKeySha256: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + accessTier: { + serializedName: "x-ms-access-tier", + xmlName: "x-ms-access-tier", + type: { + name: "String", + }, + }, + accessTierInferred: { + serializedName: "x-ms-access-tier-inferred", + xmlName: "x-ms-access-tier-inferred", + type: { + name: "Boolean", + }, + }, + archiveStatus: { + serializedName: "x-ms-archive-status", + xmlName: "x-ms-archive-status", + type: { + name: "String", + }, + }, + accessTierChangedOn: { + serializedName: "x-ms-access-tier-change-time", + xmlName: "x-ms-access-tier-change-time", + type: { + name: "DateTimeRfc1123", + }, + }, + versionId: { + serializedName: "x-ms-version-id", + xmlName: "x-ms-version-id", + type: { + name: "String", + }, + }, + isCurrentVersion: { + serializedName: "x-ms-is-current-version", + xmlName: "x-ms-is-current-version", + type: { + name: "Boolean", + }, + }, + tagCount: { + serializedName: "x-ms-tag-count", + xmlName: "x-ms-tag-count", + type: { + name: "Number", + }, + }, + expiresOn: { + serializedName: "x-ms-expiry-time", + xmlName: "x-ms-expiry-time", + type: { + name: "DateTimeRfc1123", + }, + }, + isSealed: { + serializedName: "x-ms-blob-sealed", + xmlName: "x-ms-blob-sealed", + type: { + name: "Boolean", + }, + }, + rehydratePriority: { + serializedName: "x-ms-rehydrate-priority", + xmlName: "x-ms-rehydrate-priority", + type: { + name: "Enum", + allowedValues: ["High", "Standard"], + }, + }, + lastAccessed: { + serializedName: "x-ms-last-access-time", + xmlName: "x-ms-last-access-time", + type: { + name: "DateTimeRfc1123", + }, + }, + immutabilityPolicyExpiresOn: { + serializedName: "x-ms-immutability-policy-until-date", + xmlName: "x-ms-immutability-policy-until-date", + type: { + name: "DateTimeRfc1123", + }, + }, + immutabilityPolicyMode: { + serializedName: "x-ms-immutability-policy-mode", + xmlName: "x-ms-immutability-policy-mode", + type: { + name: "Enum", + allowedValues: ["Mutable", "Unlocked", "Locked"], + }, + }, + legalHold: { + serializedName: "x-ms-legal-hold", + xmlName: "x-ms-legal-hold", + type: { + name: "Boolean", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobGetPropertiesExceptionHeaders = { + serializedName: "Blob_getPropertiesExceptionHeaders", + type: { + name: "Composite", + className: "BlobGetPropertiesExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobDeleteHeaders = { + serializedName: "Blob_deleteHeaders", + type: { + name: "Composite", + className: "BlobDeleteHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobDeleteExceptionHeaders = { + serializedName: "Blob_deleteExceptionHeaders", + type: { + name: "Composite", + className: "BlobDeleteExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobUndeleteHeaders = { + serializedName: "Blob_undeleteHeaders", + type: { + name: "Composite", + className: "BlobUndeleteHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobUndeleteExceptionHeaders = { + serializedName: "Blob_undeleteExceptionHeaders", + type: { + name: "Composite", + className: "BlobUndeleteExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobSetExpiryHeaders = { + serializedName: "Blob_setExpiryHeaders", + type: { + name: "Composite", + className: "BlobSetExpiryHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + }, + }, +}; +exports.BlobSetExpiryExceptionHeaders = { + serializedName: "Blob_setExpiryExceptionHeaders", + type: { + name: "Composite", + className: "BlobSetExpiryExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobSetHttpHeadersHeaders = { + serializedName: "Blob_setHttpHeadersHeaders", + type: { + name: "Composite", + className: "BlobSetHttpHeadersHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + blobSequenceNumber: { + serializedName: "x-ms-blob-sequence-number", + xmlName: "x-ms-blob-sequence-number", + type: { + name: "Number", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobSetHttpHeadersExceptionHeaders = { + serializedName: "Blob_setHttpHeadersExceptionHeaders", + type: { + name: "Composite", + className: "BlobSetHttpHeadersExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobSetImmutabilityPolicyHeaders = { + serializedName: "Blob_setImmutabilityPolicyHeaders", + type: { + name: "Composite", + className: "BlobSetImmutabilityPolicyHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + immutabilityPolicyExpiry: { + serializedName: "x-ms-immutability-policy-until-date", + xmlName: "x-ms-immutability-policy-until-date", + type: { + name: "DateTimeRfc1123", + }, + }, + immutabilityPolicyMode: { + serializedName: "x-ms-immutability-policy-mode", + xmlName: "x-ms-immutability-policy-mode", + type: { + name: "Enum", + allowedValues: ["Mutable", "Unlocked", "Locked"], + }, + }, + }, + }, +}; +exports.BlobSetImmutabilityPolicyExceptionHeaders = { + serializedName: "Blob_setImmutabilityPolicyExceptionHeaders", + type: { + name: "Composite", + className: "BlobSetImmutabilityPolicyExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobDeleteImmutabilityPolicyHeaders = { + serializedName: "Blob_deleteImmutabilityPolicyHeaders", + type: { + name: "Composite", + className: "BlobDeleteImmutabilityPolicyHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + }, + }, +}; +exports.BlobDeleteImmutabilityPolicyExceptionHeaders = { + serializedName: "Blob_deleteImmutabilityPolicyExceptionHeaders", + type: { + name: "Composite", + className: "BlobDeleteImmutabilityPolicyExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobSetLegalHoldHeaders = { + serializedName: "Blob_setLegalHoldHeaders", + type: { + name: "Composite", + className: "BlobSetLegalHoldHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + legalHold: { + serializedName: "x-ms-legal-hold", + xmlName: "x-ms-legal-hold", + type: { + name: "Boolean", + }, + }, + }, + }, +}; +exports.BlobSetLegalHoldExceptionHeaders = { + serializedName: "Blob_setLegalHoldExceptionHeaders", + type: { + name: "Composite", + className: "BlobSetLegalHoldExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobSetMetadataHeaders = { + serializedName: "Blob_setMetadataHeaders", + type: { + name: "Composite", + className: "BlobSetMetadataHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + versionId: { + serializedName: "x-ms-version-id", + xmlName: "x-ms-version-id", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-request-server-encrypted", + xmlName: "x-ms-request-server-encrypted", + type: { + name: "Boolean", + }, + }, + encryptionKeySha256: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobSetMetadataExceptionHeaders = { + serializedName: "Blob_setMetadataExceptionHeaders", + type: { + name: "Composite", + className: "BlobSetMetadataExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobAcquireLeaseHeaders = { + serializedName: "Blob_acquireLeaseHeaders", + type: { + name: "Composite", + className: "BlobAcquireLeaseHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + leaseId: { + serializedName: "x-ms-lease-id", + xmlName: "x-ms-lease-id", + type: { + name: "String", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + }, + }, +}; +exports.BlobAcquireLeaseExceptionHeaders = { + serializedName: "Blob_acquireLeaseExceptionHeaders", + type: { + name: "Composite", + className: "BlobAcquireLeaseExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobReleaseLeaseHeaders = { + serializedName: "Blob_releaseLeaseHeaders", + type: { + name: "Composite", + className: "BlobReleaseLeaseHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + }, + }, +}; +exports.BlobReleaseLeaseExceptionHeaders = { + serializedName: "Blob_releaseLeaseExceptionHeaders", + type: { + name: "Composite", + className: "BlobReleaseLeaseExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobRenewLeaseHeaders = { + serializedName: "Blob_renewLeaseHeaders", + type: { + name: "Composite", + className: "BlobRenewLeaseHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + leaseId: { + serializedName: "x-ms-lease-id", + xmlName: "x-ms-lease-id", + type: { + name: "String", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + }, + }, +}; +exports.BlobRenewLeaseExceptionHeaders = { + serializedName: "Blob_renewLeaseExceptionHeaders", + type: { + name: "Composite", + className: "BlobRenewLeaseExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobChangeLeaseHeaders = { + serializedName: "Blob_changeLeaseHeaders", + type: { + name: "Composite", + className: "BlobChangeLeaseHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + leaseId: { + serializedName: "x-ms-lease-id", + xmlName: "x-ms-lease-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + }, + }, +}; +exports.BlobChangeLeaseExceptionHeaders = { + serializedName: "Blob_changeLeaseExceptionHeaders", + type: { + name: "Composite", + className: "BlobChangeLeaseExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobBreakLeaseHeaders = { + serializedName: "Blob_breakLeaseHeaders", + type: { + name: "Composite", + className: "BlobBreakLeaseHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + leaseTime: { + serializedName: "x-ms-lease-time", + xmlName: "x-ms-lease-time", + type: { + name: "Number", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + }, + }, +}; +exports.BlobBreakLeaseExceptionHeaders = { + serializedName: "Blob_breakLeaseExceptionHeaders", + type: { + name: "Composite", + className: "BlobBreakLeaseExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobCreateSnapshotHeaders = { + serializedName: "Blob_createSnapshotHeaders", + type: { + name: "Composite", + className: "BlobCreateSnapshotHeaders", + modelProperties: { + snapshot: { + serializedName: "x-ms-snapshot", + xmlName: "x-ms-snapshot", + type: { + name: "String", + }, + }, + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + versionId: { + serializedName: "x-ms-version-id", + xmlName: "x-ms-version-id", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-request-server-encrypted", + xmlName: "x-ms-request-server-encrypted", + type: { + name: "Boolean", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobCreateSnapshotExceptionHeaders = { + serializedName: "Blob_createSnapshotExceptionHeaders", + type: { + name: "Composite", + className: "BlobCreateSnapshotExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobStartCopyFromURLHeaders = { + serializedName: "Blob_startCopyFromURLHeaders", + type: { + name: "Composite", + className: "BlobStartCopyFromURLHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + versionId: { + serializedName: "x-ms-version-id", + xmlName: "x-ms-version-id", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + copyId: { + serializedName: "x-ms-copy-id", + xmlName: "x-ms-copy-id", + type: { + name: "String", + }, + }, + copyStatus: { + serializedName: "x-ms-copy-status", + xmlName: "x-ms-copy-status", + type: { + name: "Enum", + allowedValues: ["pending", "success", "aborted", "failed"], + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobStartCopyFromURLExceptionHeaders = { + serializedName: "Blob_startCopyFromURLExceptionHeaders", + type: { + name: "Composite", + className: "BlobStartCopyFromURLExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + copySourceErrorCode: { + serializedName: "x-ms-copy-source-error-code", + xmlName: "x-ms-copy-source-error-code", + type: { + name: "String", + }, + }, + copySourceStatusCode: { + serializedName: "x-ms-copy-source-status-code", + xmlName: "x-ms-copy-source-status-code", + type: { + name: "Number", + }, + }, + }, + }, +}; +exports.BlobCopyFromURLHeaders = { + serializedName: "Blob_copyFromURLHeaders", + type: { + name: "Composite", + className: "BlobCopyFromURLHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + versionId: { + serializedName: "x-ms-version-id", + xmlName: "x-ms-version-id", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + copyId: { + serializedName: "x-ms-copy-id", + xmlName: "x-ms-copy-id", + type: { + name: "String", + }, + }, + copyStatus: { + defaultValue: "success", + isConstant: true, + serializedName: "x-ms-copy-status", + type: { + name: "String", + }, + }, + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + xMsContentCrc64: { + serializedName: "x-ms-content-crc64", + xmlName: "x-ms-content-crc64", + type: { + name: "ByteArray", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobCopyFromURLExceptionHeaders = { + serializedName: "Blob_copyFromURLExceptionHeaders", + type: { + name: "Composite", + className: "BlobCopyFromURLExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + copySourceErrorCode: { + serializedName: "x-ms-copy-source-error-code", + xmlName: "x-ms-copy-source-error-code", + type: { + name: "String", + }, + }, + copySourceStatusCode: { + serializedName: "x-ms-copy-source-status-code", + xmlName: "x-ms-copy-source-status-code", + type: { + name: "Number", + }, + }, + }, + }, +}; +exports.BlobAbortCopyFromURLHeaders = { + serializedName: "Blob_abortCopyFromURLHeaders", + type: { + name: "Composite", + className: "BlobAbortCopyFromURLHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobAbortCopyFromURLExceptionHeaders = { + serializedName: "Blob_abortCopyFromURLExceptionHeaders", + type: { + name: "Composite", + className: "BlobAbortCopyFromURLExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobSetTierHeaders = { + serializedName: "Blob_setTierHeaders", + type: { + name: "Composite", + className: "BlobSetTierHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobSetTierExceptionHeaders = { + serializedName: "Blob_setTierExceptionHeaders", + type: { + name: "Composite", + className: "BlobSetTierExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobGetAccountInfoHeaders = { + serializedName: "Blob_getAccountInfoHeaders", + type: { + name: "Composite", + className: "BlobGetAccountInfoHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + skuName: { + serializedName: "x-ms-sku-name", + xmlName: "x-ms-sku-name", + type: { + name: "Enum", + allowedValues: [ + "Standard_LRS", + "Standard_GRS", + "Standard_RAGRS", + "Standard_ZRS", + "Premium_LRS", + ], + }, + }, + accountKind: { + serializedName: "x-ms-account-kind", + xmlName: "x-ms-account-kind", + type: { + name: "Enum", + allowedValues: [ + "Storage", + "BlobStorage", + "StorageV2", + "FileStorage", + "BlockBlobStorage", + ], + }, + }, + isHierarchicalNamespaceEnabled: { + serializedName: "x-ms-is-hns-enabled", + xmlName: "x-ms-is-hns-enabled", + type: { + name: "Boolean", + }, + }, + }, + }, +}; +exports.BlobGetAccountInfoExceptionHeaders = { + serializedName: "Blob_getAccountInfoExceptionHeaders", + type: { + name: "Composite", + className: "BlobGetAccountInfoExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobQueryHeaders = { + serializedName: "Blob_queryHeaders", + type: { + name: "Composite", + className: "BlobQueryHeaders", + modelProperties: { + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + metadata: { + serializedName: "x-ms-meta", + headerCollectionPrefix: "x-ms-meta-", + xmlName: "x-ms-meta", + type: { + name: "Dictionary", + value: { type: { name: "String" } }, + }, + }, + contentLength: { + serializedName: "content-length", + xmlName: "content-length", + type: { + name: "Number", + }, + }, + contentType: { + serializedName: "content-type", + xmlName: "content-type", + type: { + name: "String", + }, + }, + contentRange: { + serializedName: "content-range", + xmlName: "content-range", + type: { + name: "String", + }, + }, + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + contentEncoding: { + serializedName: "content-encoding", + xmlName: "content-encoding", + type: { + name: "String", + }, + }, + cacheControl: { + serializedName: "cache-control", + xmlName: "cache-control", + type: { + name: "String", + }, + }, + contentDisposition: { + serializedName: "content-disposition", + xmlName: "content-disposition", + type: { + name: "String", + }, + }, + contentLanguage: { + serializedName: "content-language", + xmlName: "content-language", + type: { + name: "String", + }, + }, + blobSequenceNumber: { + serializedName: "x-ms-blob-sequence-number", + xmlName: "x-ms-blob-sequence-number", + type: { + name: "Number", + }, + }, + blobType: { + serializedName: "x-ms-blob-type", + xmlName: "x-ms-blob-type", + type: { + name: "Enum", + allowedValues: ["BlockBlob", "PageBlob", "AppendBlob"], + }, + }, + copyCompletionTime: { + serializedName: "x-ms-copy-completion-time", + xmlName: "x-ms-copy-completion-time", + type: { + name: "DateTimeRfc1123", + }, + }, + copyStatusDescription: { + serializedName: "x-ms-copy-status-description", + xmlName: "x-ms-copy-status-description", + type: { + name: "String", + }, + }, + copyId: { + serializedName: "x-ms-copy-id", + xmlName: "x-ms-copy-id", + type: { + name: "String", + }, + }, + copyProgress: { + serializedName: "x-ms-copy-progress", + xmlName: "x-ms-copy-progress", + type: { + name: "String", + }, + }, + copySource: { + serializedName: "x-ms-copy-source", + xmlName: "x-ms-copy-source", + type: { + name: "String", + }, + }, + copyStatus: { + serializedName: "x-ms-copy-status", + xmlName: "x-ms-copy-status", + type: { + name: "Enum", + allowedValues: ["pending", "success", "aborted", "failed"], + }, + }, + leaseDuration: { + serializedName: "x-ms-lease-duration", + xmlName: "x-ms-lease-duration", + type: { + name: "Enum", + allowedValues: ["infinite", "fixed"], + }, + }, + leaseState: { + serializedName: "x-ms-lease-state", + xmlName: "x-ms-lease-state", + type: { + name: "Enum", + allowedValues: [ + "available", + "leased", + "expired", + "breaking", + "broken", + ], + }, + }, + leaseStatus: { + serializedName: "x-ms-lease-status", + xmlName: "x-ms-lease-status", + type: { + name: "Enum", + allowedValues: ["locked", "unlocked"], + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + acceptRanges: { + serializedName: "accept-ranges", + xmlName: "accept-ranges", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + blobCommittedBlockCount: { + serializedName: "x-ms-blob-committed-block-count", + xmlName: "x-ms-blob-committed-block-count", + type: { + name: "Number", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-server-encrypted", + xmlName: "x-ms-server-encrypted", + type: { + name: "Boolean", + }, + }, + encryptionKeySha256: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + blobContentMD5: { + serializedName: "x-ms-blob-content-md5", + xmlName: "x-ms-blob-content-md5", + type: { + name: "ByteArray", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + contentCrc64: { + serializedName: "x-ms-content-crc64", + xmlName: "x-ms-content-crc64", + type: { + name: "ByteArray", + }, + }, + }, + }, +}; +exports.BlobQueryExceptionHeaders = { + serializedName: "Blob_queryExceptionHeaders", + type: { + name: "Composite", + className: "BlobQueryExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobGetTagsHeaders = { + serializedName: "Blob_getTagsHeaders", + type: { + name: "Composite", + className: "BlobGetTagsHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobGetTagsExceptionHeaders = { + serializedName: "Blob_getTagsExceptionHeaders", + type: { + name: "Composite", + className: "BlobGetTagsExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobSetTagsHeaders = { + serializedName: "Blob_setTagsHeaders", + type: { + name: "Composite", + className: "BlobSetTagsHeaders", + modelProperties: { + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlobSetTagsExceptionHeaders = { + serializedName: "Blob_setTagsExceptionHeaders", + type: { + name: "Composite", + className: "BlobSetTagsExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobCreateHeaders = { + serializedName: "PageBlob_createHeaders", + type: { + name: "Composite", + className: "PageBlobCreateHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + versionId: { + serializedName: "x-ms-version-id", + xmlName: "x-ms-version-id", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-request-server-encrypted", + xmlName: "x-ms-request-server-encrypted", + type: { + name: "Boolean", + }, + }, + encryptionKeySha256: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobCreateExceptionHeaders = { + serializedName: "PageBlob_createExceptionHeaders", + type: { + name: "Composite", + className: "PageBlobCreateExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobUploadPagesHeaders = { + serializedName: "PageBlob_uploadPagesHeaders", + type: { + name: "Composite", + className: "PageBlobUploadPagesHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + xMsContentCrc64: { + serializedName: "x-ms-content-crc64", + xmlName: "x-ms-content-crc64", + type: { + name: "ByteArray", + }, + }, + blobSequenceNumber: { + serializedName: "x-ms-blob-sequence-number", + xmlName: "x-ms-blob-sequence-number", + type: { + name: "Number", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-request-server-encrypted", + xmlName: "x-ms-request-server-encrypted", + type: { + name: "Boolean", + }, + }, + encryptionKeySha256: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobUploadPagesExceptionHeaders = { + serializedName: "PageBlob_uploadPagesExceptionHeaders", + type: { + name: "Composite", + className: "PageBlobUploadPagesExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobClearPagesHeaders = { + serializedName: "PageBlob_clearPagesHeaders", + type: { + name: "Composite", + className: "PageBlobClearPagesHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + xMsContentCrc64: { + serializedName: "x-ms-content-crc64", + xmlName: "x-ms-content-crc64", + type: { + name: "ByteArray", + }, + }, + blobSequenceNumber: { + serializedName: "x-ms-blob-sequence-number", + xmlName: "x-ms-blob-sequence-number", + type: { + name: "Number", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobClearPagesExceptionHeaders = { + serializedName: "PageBlob_clearPagesExceptionHeaders", + type: { + name: "Composite", + className: "PageBlobClearPagesExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobUploadPagesFromURLHeaders = { + serializedName: "PageBlob_uploadPagesFromURLHeaders", + type: { + name: "Composite", + className: "PageBlobUploadPagesFromURLHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + xMsContentCrc64: { + serializedName: "x-ms-content-crc64", + xmlName: "x-ms-content-crc64", + type: { + name: "ByteArray", + }, + }, + blobSequenceNumber: { + serializedName: "x-ms-blob-sequence-number", + xmlName: "x-ms-blob-sequence-number", + type: { + name: "Number", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-request-server-encrypted", + xmlName: "x-ms-request-server-encrypted", + type: { + name: "Boolean", + }, + }, + encryptionKeySha256: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobUploadPagesFromURLExceptionHeaders = { + serializedName: "PageBlob_uploadPagesFromURLExceptionHeaders", + type: { + name: "Composite", + className: "PageBlobUploadPagesFromURLExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + copySourceErrorCode: { + serializedName: "x-ms-copy-source-error-code", + xmlName: "x-ms-copy-source-error-code", + type: { + name: "String", + }, + }, + copySourceStatusCode: { + serializedName: "x-ms-copy-source-status-code", + xmlName: "x-ms-copy-source-status-code", + type: { + name: "Number", + }, + }, + }, + }, +}; +exports.PageBlobGetPageRangesHeaders = { + serializedName: "PageBlob_getPageRangesHeaders", + type: { + name: "Composite", + className: "PageBlobGetPageRangesHeaders", + modelProperties: { + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + blobContentLength: { + serializedName: "x-ms-blob-content-length", + xmlName: "x-ms-blob-content-length", + type: { + name: "Number", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobGetPageRangesExceptionHeaders = { + serializedName: "PageBlob_getPageRangesExceptionHeaders", + type: { + name: "Composite", + className: "PageBlobGetPageRangesExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobGetPageRangesDiffHeaders = { + serializedName: "PageBlob_getPageRangesDiffHeaders", + type: { + name: "Composite", + className: "PageBlobGetPageRangesDiffHeaders", + modelProperties: { + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + blobContentLength: { + serializedName: "x-ms-blob-content-length", + xmlName: "x-ms-blob-content-length", + type: { + name: "Number", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobGetPageRangesDiffExceptionHeaders = { + serializedName: "PageBlob_getPageRangesDiffExceptionHeaders", + type: { + name: "Composite", + className: "PageBlobGetPageRangesDiffExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobResizeHeaders = { + serializedName: "PageBlob_resizeHeaders", + type: { + name: "Composite", + className: "PageBlobResizeHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + blobSequenceNumber: { + serializedName: "x-ms-blob-sequence-number", + xmlName: "x-ms-blob-sequence-number", + type: { + name: "Number", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobResizeExceptionHeaders = { + serializedName: "PageBlob_resizeExceptionHeaders", + type: { + name: "Composite", + className: "PageBlobResizeExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobUpdateSequenceNumberHeaders = { + serializedName: "PageBlob_updateSequenceNumberHeaders", + type: { + name: "Composite", + className: "PageBlobUpdateSequenceNumberHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + blobSequenceNumber: { + serializedName: "x-ms-blob-sequence-number", + xmlName: "x-ms-blob-sequence-number", + type: { + name: "Number", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobUpdateSequenceNumberExceptionHeaders = { + serializedName: "PageBlob_updateSequenceNumberExceptionHeaders", + type: { + name: "Composite", + className: "PageBlobUpdateSequenceNumberExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobCopyIncrementalHeaders = { + serializedName: "PageBlob_copyIncrementalHeaders", + type: { + name: "Composite", + className: "PageBlobCopyIncrementalHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + copyId: { + serializedName: "x-ms-copy-id", + xmlName: "x-ms-copy-id", + type: { + name: "String", + }, + }, + copyStatus: { + serializedName: "x-ms-copy-status", + xmlName: "x-ms-copy-status", + type: { + name: "Enum", + allowedValues: ["pending", "success", "aborted", "failed"], + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.PageBlobCopyIncrementalExceptionHeaders = { + serializedName: "PageBlob_copyIncrementalExceptionHeaders", + type: { + name: "Composite", + className: "PageBlobCopyIncrementalExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.AppendBlobCreateHeaders = { + serializedName: "AppendBlob_createHeaders", + type: { + name: "Composite", + className: "AppendBlobCreateHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + versionId: { + serializedName: "x-ms-version-id", + xmlName: "x-ms-version-id", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-request-server-encrypted", + xmlName: "x-ms-request-server-encrypted", + type: { + name: "Boolean", + }, + }, + encryptionKeySha256: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.AppendBlobCreateExceptionHeaders = { + serializedName: "AppendBlob_createExceptionHeaders", + type: { + name: "Composite", + className: "AppendBlobCreateExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.AppendBlobAppendBlockHeaders = { + serializedName: "AppendBlob_appendBlockHeaders", + type: { + name: "Composite", + className: "AppendBlobAppendBlockHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + xMsContentCrc64: { + serializedName: "x-ms-content-crc64", + xmlName: "x-ms-content-crc64", + type: { + name: "ByteArray", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + blobAppendOffset: { + serializedName: "x-ms-blob-append-offset", + xmlName: "x-ms-blob-append-offset", + type: { + name: "String", + }, + }, + blobCommittedBlockCount: { + serializedName: "x-ms-blob-committed-block-count", + xmlName: "x-ms-blob-committed-block-count", + type: { + name: "Number", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-request-server-encrypted", + xmlName: "x-ms-request-server-encrypted", + type: { + name: "Boolean", + }, + }, + encryptionKeySha256: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.AppendBlobAppendBlockExceptionHeaders = { + serializedName: "AppendBlob_appendBlockExceptionHeaders", + type: { + name: "Composite", + className: "AppendBlobAppendBlockExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.AppendBlobAppendBlockFromUrlHeaders = { + serializedName: "AppendBlob_appendBlockFromUrlHeaders", + type: { + name: "Composite", + className: "AppendBlobAppendBlockFromUrlHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + xMsContentCrc64: { + serializedName: "x-ms-content-crc64", + xmlName: "x-ms-content-crc64", + type: { + name: "ByteArray", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + blobAppendOffset: { + serializedName: "x-ms-blob-append-offset", + xmlName: "x-ms-blob-append-offset", + type: { + name: "String", + }, + }, + blobCommittedBlockCount: { + serializedName: "x-ms-blob-committed-block-count", + xmlName: "x-ms-blob-committed-block-count", + type: { + name: "Number", + }, + }, + encryptionKeySha256: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-request-server-encrypted", + xmlName: "x-ms-request-server-encrypted", + type: { + name: "Boolean", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.AppendBlobAppendBlockFromUrlExceptionHeaders = { + serializedName: "AppendBlob_appendBlockFromUrlExceptionHeaders", + type: { + name: "Composite", + className: "AppendBlobAppendBlockFromUrlExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + copySourceErrorCode: { + serializedName: "x-ms-copy-source-error-code", + xmlName: "x-ms-copy-source-error-code", + type: { + name: "String", + }, + }, + copySourceStatusCode: { + serializedName: "x-ms-copy-source-status-code", + xmlName: "x-ms-copy-source-status-code", + type: { + name: "Number", + }, + }, + }, + }, +}; +exports.AppendBlobSealHeaders = { + serializedName: "AppendBlob_sealHeaders", + type: { + name: "Composite", + className: "AppendBlobSealHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + isSealed: { + serializedName: "x-ms-blob-sealed", + xmlName: "x-ms-blob-sealed", + type: { + name: "Boolean", + }, + }, + }, + }, +}; +exports.AppendBlobSealExceptionHeaders = { + serializedName: "AppendBlob_sealExceptionHeaders", + type: { + name: "Composite", + className: "AppendBlobSealExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlockBlobUploadHeaders = { + serializedName: "BlockBlob_uploadHeaders", + type: { + name: "Composite", + className: "BlockBlobUploadHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + versionId: { + serializedName: "x-ms-version-id", + xmlName: "x-ms-version-id", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-request-server-encrypted", + xmlName: "x-ms-request-server-encrypted", + type: { + name: "Boolean", + }, + }, + encryptionKeySha256: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlockBlobUploadExceptionHeaders = { + serializedName: "BlockBlob_uploadExceptionHeaders", + type: { + name: "Composite", + className: "BlockBlobUploadExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlockBlobPutBlobFromUrlHeaders = { + serializedName: "BlockBlob_putBlobFromUrlHeaders", + type: { + name: "Composite", + className: "BlockBlobPutBlobFromUrlHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + versionId: { + serializedName: "x-ms-version-id", + xmlName: "x-ms-version-id", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-request-server-encrypted", + xmlName: "x-ms-request-server-encrypted", + type: { + name: "Boolean", + }, + }, + encryptionKeySha256: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlockBlobPutBlobFromUrlExceptionHeaders = { + serializedName: "BlockBlob_putBlobFromUrlExceptionHeaders", + type: { + name: "Composite", + className: "BlockBlobPutBlobFromUrlExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + copySourceErrorCode: { + serializedName: "x-ms-copy-source-error-code", + xmlName: "x-ms-copy-source-error-code", + type: { + name: "String", + }, + }, + copySourceStatusCode: { + serializedName: "x-ms-copy-source-status-code", + xmlName: "x-ms-copy-source-status-code", + type: { + name: "Number", + }, + }, + }, + }, +}; +exports.BlockBlobStageBlockHeaders = { + serializedName: "BlockBlob_stageBlockHeaders", + type: { + name: "Composite", + className: "BlockBlobStageBlockHeaders", + modelProperties: { + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + xMsContentCrc64: { + serializedName: "x-ms-content-crc64", + xmlName: "x-ms-content-crc64", + type: { + name: "ByteArray", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-request-server-encrypted", + xmlName: "x-ms-request-server-encrypted", + type: { + name: "Boolean", + }, + }, + encryptionKeySha256: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlockBlobStageBlockExceptionHeaders = { + serializedName: "BlockBlob_stageBlockExceptionHeaders", + type: { + name: "Composite", + className: "BlockBlobStageBlockExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlockBlobStageBlockFromURLHeaders = { + serializedName: "BlockBlob_stageBlockFromURLHeaders", + type: { + name: "Composite", + className: "BlockBlobStageBlockFromURLHeaders", + modelProperties: { + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + xMsContentCrc64: { + serializedName: "x-ms-content-crc64", + xmlName: "x-ms-content-crc64", + type: { + name: "ByteArray", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-request-server-encrypted", + xmlName: "x-ms-request-server-encrypted", + type: { + name: "Boolean", + }, + }, + encryptionKeySha256: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlockBlobStageBlockFromURLExceptionHeaders = { + serializedName: "BlockBlob_stageBlockFromURLExceptionHeaders", + type: { + name: "Composite", + className: "BlockBlobStageBlockFromURLExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + copySourceErrorCode: { + serializedName: "x-ms-copy-source-error-code", + xmlName: "x-ms-copy-source-error-code", + type: { + name: "String", + }, + }, + copySourceStatusCode: { + serializedName: "x-ms-copy-source-status-code", + xmlName: "x-ms-copy-source-status-code", + type: { + name: "Number", + }, + }, + }, + }, +}; +exports.BlockBlobCommitBlockListHeaders = { + serializedName: "BlockBlob_commitBlockListHeaders", + type: { + name: "Composite", + className: "BlockBlobCommitBlockListHeaders", + modelProperties: { + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + contentMD5: { + serializedName: "content-md5", + xmlName: "content-md5", + type: { + name: "ByteArray", + }, + }, + xMsContentCrc64: { + serializedName: "x-ms-content-crc64", + xmlName: "x-ms-content-crc64", + type: { + name: "ByteArray", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + versionId: { + serializedName: "x-ms-version-id", + xmlName: "x-ms-version-id", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + isServerEncrypted: { + serializedName: "x-ms-request-server-encrypted", + xmlName: "x-ms-request-server-encrypted", + type: { + name: "Boolean", + }, + }, + encryptionKeySha256: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, + encryptionScope: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlockBlobCommitBlockListExceptionHeaders = { + serializedName: "BlockBlob_commitBlockListExceptionHeaders", + type: { + name: "Composite", + className: "BlockBlobCommitBlockListExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlockBlobGetBlockListHeaders = { + serializedName: "BlockBlob_getBlockListHeaders", + type: { + name: "Composite", + className: "BlockBlobGetBlockListHeaders", + modelProperties: { + lastModified: { + serializedName: "last-modified", + xmlName: "last-modified", + type: { + name: "DateTimeRfc1123", + }, + }, + etag: { + serializedName: "etag", + xmlName: "etag", + type: { + name: "String", + }, + }, + contentType: { + serializedName: "content-type", + xmlName: "content-type", + type: { + name: "String", + }, + }, + blobContentLength: { + serializedName: "x-ms-blob-content-length", + xmlName: "x-ms-blob-content-length", + type: { + name: "Number", + }, + }, + clientRequestId: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, + requestId: { + serializedName: "x-ms-request-id", + xmlName: "x-ms-request-id", + type: { + name: "String", + }, + }, + version: { + serializedName: "x-ms-version", + xmlName: "x-ms-version", + type: { + name: "String", + }, + }, + date: { + serializedName: "date", + xmlName: "date", + type: { + name: "DateTimeRfc1123", + }, + }, + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +exports.BlockBlobGetBlockListExceptionHeaders = { + serializedName: "BlockBlob_getBlockListExceptionHeaders", + type: { + name: "Composite", + className: "BlockBlobGetBlockListExceptionHeaders", + modelProperties: { + errorCode: { + serializedName: "x-ms-error-code", + xmlName: "x-ms-error-code", + type: { + name: "String", + }, + }, + }, + }, +}; +//# sourceMappingURL=mappers.js.map + +/***/ }), + +/***/ 54142: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.action3 = exports.action2 = exports.leaseId1 = exports.action1 = exports.proposedLeaseId = exports.duration = exports.action = exports.comp10 = exports.sourceLeaseId = exports.sourceContainerName = exports.comp9 = exports.deletedContainerVersion = exports.deletedContainerName = exports.comp8 = exports.containerAcl = exports.comp7 = exports.comp6 = exports.ifUnmodifiedSince = exports.ifModifiedSince = exports.leaseId = exports.preventEncryptionScopeOverride = exports.defaultEncryptionScope = exports.access = exports.metadata = exports.restype2 = exports.where = exports.comp5 = exports.multipartContentType = exports.contentLength = exports.comp4 = exports.body = exports.restype1 = exports.comp3 = exports.keyInfo = exports.include = exports.maxPageSize = exports.marker = exports.prefix = exports.comp2 = exports.comp1 = exports.accept1 = exports.requestId = exports.version = exports.timeoutInSeconds = exports.comp = exports.restype = exports.url = exports.accept = exports.blobServiceProperties = exports.contentType = void 0; +exports.fileRequestIntent = exports.copySourceTags = exports.copySourceAuthorization = exports.sourceContentMD5 = exports.xMsRequiresSync = exports.legalHold1 = exports.sealBlob = exports.blobTagsString = exports.copySource = exports.sourceIfTags = exports.sourceIfNoneMatch = exports.sourceIfMatch = exports.sourceIfUnmodifiedSince = exports.sourceIfModifiedSince = exports.rehydratePriority = exports.tier = exports.comp14 = exports.encryptionScope = exports.legalHold = exports.comp13 = exports.immutabilityPolicyMode = exports.immutabilityPolicyExpiry = exports.comp12 = exports.blobContentDisposition = exports.blobContentLanguage = exports.blobContentEncoding = exports.blobContentMD5 = exports.blobContentType = exports.blobCacheControl = exports.expiresOn = exports.expiryOptions = exports.comp11 = exports.blobDeleteType = exports.deleteSnapshots = exports.ifTags = exports.ifNoneMatch = exports.ifMatch = exports.encryptionAlgorithm = exports.encryptionKeySha256 = exports.encryptionKey = exports.rangeGetContentCRC64 = exports.rangeGetContentMD5 = exports.range = exports.versionId = exports.snapshot = exports.delimiter = exports.include1 = exports.proposedLeaseId1 = exports.action4 = exports.breakPeriod = void 0; +exports.listType = exports.comp25 = exports.blocks = exports.blockId = exports.comp24 = exports.copySourceBlobProperties = exports.blobType2 = exports.comp23 = exports.sourceRange1 = exports.appendPosition = exports.maxSize = exports.comp22 = exports.blobType1 = exports.comp21 = exports.sequenceNumberAction = exports.prevSnapshotUrl = exports.prevsnapshot = exports.comp20 = exports.range1 = exports.sourceContentCrc64 = exports.sourceRange = exports.sourceUrl = exports.pageWrite1 = exports.ifSequenceNumberEqualTo = exports.ifSequenceNumberLessThan = exports.ifSequenceNumberLessThanOrEqualTo = exports.pageWrite = exports.comp19 = exports.accept2 = exports.body1 = exports.contentType1 = exports.blobSequenceNumber = exports.blobContentLength = exports.blobType = exports.transactionalContentCrc64 = exports.transactionalContentMD5 = exports.tags = exports.comp18 = exports.comp17 = exports.queryRequest = exports.tier1 = exports.comp16 = exports.copyId = exports.copyActionAbortConstant = exports.comp15 = void 0; +const mappers_js_1 = __nccwpck_require__(52486); +exports.contentType = { + parameterPath: ["options", "contentType"], + mapper: { + defaultValue: "application/xml", + isConstant: true, + serializedName: "Content-Type", + type: { + name: "String", + }, + }, +}; +exports.blobServiceProperties = { + parameterPath: "blobServiceProperties", + mapper: mappers_js_1.BlobServiceProperties, +}; +exports.accept = { + parameterPath: "accept", + mapper: { + defaultValue: "application/xml", + isConstant: true, + serializedName: "Accept", + type: { + name: "String", + }, + }, +}; +exports.url = { + parameterPath: "url", + mapper: { + serializedName: "url", + required: true, + xmlName: "url", + type: { + name: "String", + }, + }, + skipEncoding: true, +}; +exports.restype = { + parameterPath: "restype", + mapper: { + defaultValue: "service", + isConstant: true, + serializedName: "restype", + type: { + name: "String", + }, + }, +}; +exports.comp = { + parameterPath: "comp", + mapper: { + defaultValue: "properties", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.timeoutInSeconds = { + parameterPath: ["options", "timeoutInSeconds"], + mapper: { + constraints: { + InclusiveMinimum: 0, + }, + serializedName: "timeout", + xmlName: "timeout", + type: { + name: "Number", + }, + }, +}; +exports.version = { + parameterPath: "version", + mapper: { + defaultValue: "2025-11-05", + isConstant: true, + serializedName: "x-ms-version", + type: { + name: "String", + }, + }, +}; +exports.requestId = { + parameterPath: ["options", "requestId"], + mapper: { + serializedName: "x-ms-client-request-id", + xmlName: "x-ms-client-request-id", + type: { + name: "String", + }, + }, +}; +exports.accept1 = { + parameterPath: "accept", + mapper: { + defaultValue: "application/xml", + isConstant: true, + serializedName: "Accept", + type: { + name: "String", + }, + }, +}; +exports.comp1 = { + parameterPath: "comp", + mapper: { + defaultValue: "stats", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.comp2 = { + parameterPath: "comp", + mapper: { + defaultValue: "list", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.prefix = { + parameterPath: ["options", "prefix"], + mapper: { + serializedName: "prefix", + xmlName: "prefix", + type: { + name: "String", + }, + }, +}; +exports.marker = { + parameterPath: ["options", "marker"], + mapper: { + serializedName: "marker", + xmlName: "marker", + type: { + name: "String", + }, + }, +}; +exports.maxPageSize = { + parameterPath: ["options", "maxPageSize"], + mapper: { + constraints: { + InclusiveMinimum: 1, + }, + serializedName: "maxresults", + xmlName: "maxresults", + type: { + name: "Number", + }, + }, +}; +exports.include = { + parameterPath: ["options", "include"], + mapper: { + serializedName: "include", + xmlName: "include", + xmlElementName: "ListContainersIncludeType", + type: { + name: "Sequence", + element: { + type: { + name: "Enum", + allowedValues: ["metadata", "deleted", "system"], + }, + }, + }, + }, + collectionFormat: "CSV", +}; +exports.keyInfo = { + parameterPath: "keyInfo", + mapper: mappers_js_1.KeyInfo, +}; +exports.comp3 = { + parameterPath: "comp", + mapper: { + defaultValue: "userdelegationkey", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.restype1 = { + parameterPath: "restype", + mapper: { + defaultValue: "account", + isConstant: true, + serializedName: "restype", + type: { + name: "String", + }, + }, +}; +exports.body = { + parameterPath: "body", + mapper: { + serializedName: "body", + required: true, + xmlName: "body", + type: { + name: "Stream", + }, + }, +}; +exports.comp4 = { + parameterPath: "comp", + mapper: { + defaultValue: "batch", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.contentLength = { + parameterPath: "contentLength", + mapper: { + serializedName: "Content-Length", + required: true, + xmlName: "Content-Length", + type: { + name: "Number", + }, + }, +}; +exports.multipartContentType = { + parameterPath: "multipartContentType", + mapper: { + serializedName: "Content-Type", + required: true, + xmlName: "Content-Type", + type: { + name: "String", + }, + }, +}; +exports.comp5 = { + parameterPath: "comp", + mapper: { + defaultValue: "blobs", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.where = { + parameterPath: ["options", "where"], + mapper: { + serializedName: "where", + xmlName: "where", + type: { + name: "String", + }, + }, +}; +exports.restype2 = { + parameterPath: "restype", + mapper: { + defaultValue: "container", + isConstant: true, + serializedName: "restype", + type: { + name: "String", + }, + }, +}; +exports.metadata = { + parameterPath: ["options", "metadata"], + mapper: { + serializedName: "x-ms-meta", + xmlName: "x-ms-meta", + headerCollectionPrefix: "x-ms-meta-", + type: { + name: "Dictionary", + value: { type: { name: "String" } }, + }, + }, +}; +exports.access = { + parameterPath: ["options", "access"], + mapper: { + serializedName: "x-ms-blob-public-access", + xmlName: "x-ms-blob-public-access", + type: { + name: "Enum", + allowedValues: ["container", "blob"], + }, + }, +}; +exports.defaultEncryptionScope = { + parameterPath: [ + "options", + "containerEncryptionScope", + "defaultEncryptionScope", + ], + mapper: { + serializedName: "x-ms-default-encryption-scope", + xmlName: "x-ms-default-encryption-scope", + type: { + name: "String", + }, + }, +}; +exports.preventEncryptionScopeOverride = { + parameterPath: [ + "options", + "containerEncryptionScope", + "preventEncryptionScopeOverride", + ], + mapper: { + serializedName: "x-ms-deny-encryption-scope-override", + xmlName: "x-ms-deny-encryption-scope-override", + type: { + name: "Boolean", + }, + }, +}; +exports.leaseId = { + parameterPath: ["options", "leaseAccessConditions", "leaseId"], + mapper: { + serializedName: "x-ms-lease-id", + xmlName: "x-ms-lease-id", + type: { + name: "String", + }, + }, +}; +exports.ifModifiedSince = { + parameterPath: ["options", "modifiedAccessConditions", "ifModifiedSince"], + mapper: { + serializedName: "If-Modified-Since", + xmlName: "If-Modified-Since", + type: { + name: "DateTimeRfc1123", + }, + }, +}; +exports.ifUnmodifiedSince = { + parameterPath: ["options", "modifiedAccessConditions", "ifUnmodifiedSince"], + mapper: { + serializedName: "If-Unmodified-Since", + xmlName: "If-Unmodified-Since", + type: { + name: "DateTimeRfc1123", + }, + }, +}; +exports.comp6 = { + parameterPath: "comp", + mapper: { + defaultValue: "metadata", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.comp7 = { + parameterPath: "comp", + mapper: { + defaultValue: "acl", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.containerAcl = { + parameterPath: ["options", "containerAcl"], + mapper: { + serializedName: "containerAcl", + xmlName: "SignedIdentifiers", + xmlIsWrapped: true, + xmlElementName: "SignedIdentifier", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "SignedIdentifier", + }, + }, + }, + }, +}; +exports.comp8 = { + parameterPath: "comp", + mapper: { + defaultValue: "undelete", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.deletedContainerName = { + parameterPath: ["options", "deletedContainerName"], + mapper: { + serializedName: "x-ms-deleted-container-name", + xmlName: "x-ms-deleted-container-name", + type: { + name: "String", + }, + }, +}; +exports.deletedContainerVersion = { + parameterPath: ["options", "deletedContainerVersion"], + mapper: { + serializedName: "x-ms-deleted-container-version", + xmlName: "x-ms-deleted-container-version", + type: { + name: "String", + }, + }, +}; +exports.comp9 = { + parameterPath: "comp", + mapper: { + defaultValue: "rename", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.sourceContainerName = { + parameterPath: "sourceContainerName", + mapper: { + serializedName: "x-ms-source-container-name", + required: true, + xmlName: "x-ms-source-container-name", + type: { + name: "String", + }, + }, +}; +exports.sourceLeaseId = { + parameterPath: ["options", "sourceLeaseId"], + mapper: { + serializedName: "x-ms-source-lease-id", + xmlName: "x-ms-source-lease-id", + type: { + name: "String", + }, + }, +}; +exports.comp10 = { + parameterPath: "comp", + mapper: { + defaultValue: "lease", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.action = { + parameterPath: "action", + mapper: { + defaultValue: "acquire", + isConstant: true, + serializedName: "x-ms-lease-action", + type: { + name: "String", + }, + }, +}; +exports.duration = { + parameterPath: ["options", "duration"], + mapper: { + serializedName: "x-ms-lease-duration", + xmlName: "x-ms-lease-duration", + type: { + name: "Number", + }, + }, +}; +exports.proposedLeaseId = { + parameterPath: ["options", "proposedLeaseId"], + mapper: { + serializedName: "x-ms-proposed-lease-id", + xmlName: "x-ms-proposed-lease-id", + type: { + name: "String", + }, + }, +}; +exports.action1 = { + parameterPath: "action", + mapper: { + defaultValue: "release", + isConstant: true, + serializedName: "x-ms-lease-action", + type: { + name: "String", + }, + }, +}; +exports.leaseId1 = { + parameterPath: "leaseId", + mapper: { + serializedName: "x-ms-lease-id", + required: true, + xmlName: "x-ms-lease-id", + type: { + name: "String", + }, + }, +}; +exports.action2 = { + parameterPath: "action", + mapper: { + defaultValue: "renew", + isConstant: true, + serializedName: "x-ms-lease-action", + type: { + name: "String", + }, + }, +}; +exports.action3 = { + parameterPath: "action", + mapper: { + defaultValue: "break", + isConstant: true, + serializedName: "x-ms-lease-action", + type: { + name: "String", + }, + }, +}; +exports.breakPeriod = { + parameterPath: ["options", "breakPeriod"], + mapper: { + serializedName: "x-ms-lease-break-period", + xmlName: "x-ms-lease-break-period", + type: { + name: "Number", + }, + }, +}; +exports.action4 = { + parameterPath: "action", + mapper: { + defaultValue: "change", + isConstant: true, + serializedName: "x-ms-lease-action", + type: { + name: "String", + }, + }, +}; +exports.proposedLeaseId1 = { + parameterPath: "proposedLeaseId", + mapper: { + serializedName: "x-ms-proposed-lease-id", + required: true, + xmlName: "x-ms-proposed-lease-id", + type: { + name: "String", + }, + }, +}; +exports.include1 = { + parameterPath: ["options", "include"], + mapper: { + serializedName: "include", + xmlName: "include", + xmlElementName: "ListBlobsIncludeItem", + type: { + name: "Sequence", + element: { + type: { + name: "Enum", + allowedValues: [ + "copy", + "deleted", + "metadata", + "snapshots", + "uncommittedblobs", + "versions", + "tags", + "immutabilitypolicy", + "legalhold", + "deletedwithversions", + ], + }, + }, + }, + }, + collectionFormat: "CSV", +}; +exports.delimiter = { + parameterPath: "delimiter", + mapper: { + serializedName: "delimiter", + required: true, + xmlName: "delimiter", + type: { + name: "String", + }, + }, +}; +exports.snapshot = { + parameterPath: ["options", "snapshot"], + mapper: { + serializedName: "snapshot", + xmlName: "snapshot", + type: { + name: "String", + }, + }, +}; +exports.versionId = { + parameterPath: ["options", "versionId"], + mapper: { + serializedName: "versionid", + xmlName: "versionid", + type: { + name: "String", + }, + }, +}; +exports.range = { + parameterPath: ["options", "range"], + mapper: { + serializedName: "x-ms-range", + xmlName: "x-ms-range", + type: { + name: "String", + }, + }, +}; +exports.rangeGetContentMD5 = { + parameterPath: ["options", "rangeGetContentMD5"], + mapper: { + serializedName: "x-ms-range-get-content-md5", + xmlName: "x-ms-range-get-content-md5", + type: { + name: "Boolean", + }, + }, +}; +exports.rangeGetContentCRC64 = { + parameterPath: ["options", "rangeGetContentCRC64"], + mapper: { + serializedName: "x-ms-range-get-content-crc64", + xmlName: "x-ms-range-get-content-crc64", + type: { + name: "Boolean", + }, + }, +}; +exports.encryptionKey = { + parameterPath: ["options", "cpkInfo", "encryptionKey"], + mapper: { + serializedName: "x-ms-encryption-key", + xmlName: "x-ms-encryption-key", + type: { + name: "String", + }, + }, +}; +exports.encryptionKeySha256 = { + parameterPath: ["options", "cpkInfo", "encryptionKeySha256"], + mapper: { + serializedName: "x-ms-encryption-key-sha256", + xmlName: "x-ms-encryption-key-sha256", + type: { + name: "String", + }, + }, +}; +exports.encryptionAlgorithm = { + parameterPath: ["options", "cpkInfo", "encryptionAlgorithm"], + mapper: { + serializedName: "x-ms-encryption-algorithm", + xmlName: "x-ms-encryption-algorithm", + type: { + name: "String", + }, + }, +}; +exports.ifMatch = { + parameterPath: ["options", "modifiedAccessConditions", "ifMatch"], + mapper: { + serializedName: "If-Match", + xmlName: "If-Match", + type: { + name: "String", + }, + }, +}; +exports.ifNoneMatch = { + parameterPath: ["options", "modifiedAccessConditions", "ifNoneMatch"], + mapper: { + serializedName: "If-None-Match", + xmlName: "If-None-Match", + type: { + name: "String", + }, + }, +}; +exports.ifTags = { + parameterPath: ["options", "modifiedAccessConditions", "ifTags"], + mapper: { + serializedName: "x-ms-if-tags", + xmlName: "x-ms-if-tags", + type: { + name: "String", + }, + }, +}; +exports.deleteSnapshots = { + parameterPath: ["options", "deleteSnapshots"], + mapper: { + serializedName: "x-ms-delete-snapshots", + xmlName: "x-ms-delete-snapshots", + type: { + name: "Enum", + allowedValues: ["include", "only"], + }, + }, +}; +exports.blobDeleteType = { + parameterPath: ["options", "blobDeleteType"], + mapper: { + serializedName: "deletetype", + xmlName: "deletetype", + type: { + name: "String", + }, + }, +}; +exports.comp11 = { + parameterPath: "comp", + mapper: { + defaultValue: "expiry", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.expiryOptions = { + parameterPath: "expiryOptions", + mapper: { + serializedName: "x-ms-expiry-option", + required: true, + xmlName: "x-ms-expiry-option", + type: { + name: "String", + }, + }, +}; +exports.expiresOn = { + parameterPath: ["options", "expiresOn"], + mapper: { + serializedName: "x-ms-expiry-time", + xmlName: "x-ms-expiry-time", + type: { + name: "String", + }, + }, +}; +exports.blobCacheControl = { + parameterPath: ["options", "blobHttpHeaders", "blobCacheControl"], + mapper: { + serializedName: "x-ms-blob-cache-control", + xmlName: "x-ms-blob-cache-control", + type: { + name: "String", + }, + }, +}; +exports.blobContentType = { + parameterPath: ["options", "blobHttpHeaders", "blobContentType"], + mapper: { + serializedName: "x-ms-blob-content-type", + xmlName: "x-ms-blob-content-type", + type: { + name: "String", + }, + }, +}; +exports.blobContentMD5 = { + parameterPath: ["options", "blobHttpHeaders", "blobContentMD5"], + mapper: { + serializedName: "x-ms-blob-content-md5", + xmlName: "x-ms-blob-content-md5", + type: { + name: "ByteArray", + }, + }, +}; +exports.blobContentEncoding = { + parameterPath: ["options", "blobHttpHeaders", "blobContentEncoding"], + mapper: { + serializedName: "x-ms-blob-content-encoding", + xmlName: "x-ms-blob-content-encoding", + type: { + name: "String", + }, + }, +}; +exports.blobContentLanguage = { + parameterPath: ["options", "blobHttpHeaders", "blobContentLanguage"], + mapper: { + serializedName: "x-ms-blob-content-language", + xmlName: "x-ms-blob-content-language", + type: { + name: "String", + }, + }, +}; +exports.blobContentDisposition = { + parameterPath: ["options", "blobHttpHeaders", "blobContentDisposition"], + mapper: { + serializedName: "x-ms-blob-content-disposition", + xmlName: "x-ms-blob-content-disposition", + type: { + name: "String", + }, + }, +}; +exports.comp12 = { + parameterPath: "comp", + mapper: { + defaultValue: "immutabilityPolicies", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.immutabilityPolicyExpiry = { + parameterPath: ["options", "immutabilityPolicyExpiry"], + mapper: { + serializedName: "x-ms-immutability-policy-until-date", + xmlName: "x-ms-immutability-policy-until-date", + type: { + name: "DateTimeRfc1123", + }, + }, +}; +exports.immutabilityPolicyMode = { + parameterPath: ["options", "immutabilityPolicyMode"], + mapper: { + serializedName: "x-ms-immutability-policy-mode", + xmlName: "x-ms-immutability-policy-mode", + type: { + name: "Enum", + allowedValues: ["Mutable", "Unlocked", "Locked"], + }, + }, +}; +exports.comp13 = { + parameterPath: "comp", + mapper: { + defaultValue: "legalhold", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.legalHold = { + parameterPath: "legalHold", + mapper: { + serializedName: "x-ms-legal-hold", + required: true, + xmlName: "x-ms-legal-hold", + type: { + name: "Boolean", + }, + }, +}; +exports.encryptionScope = { + parameterPath: ["options", "encryptionScope"], + mapper: { + serializedName: "x-ms-encryption-scope", + xmlName: "x-ms-encryption-scope", + type: { + name: "String", + }, + }, +}; +exports.comp14 = { + parameterPath: "comp", + mapper: { + defaultValue: "snapshot", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.tier = { + parameterPath: ["options", "tier"], + mapper: { + serializedName: "x-ms-access-tier", + xmlName: "x-ms-access-tier", + type: { + name: "Enum", + allowedValues: [ + "P4", + "P6", + "P10", + "P15", + "P20", + "P30", + "P40", + "P50", + "P60", + "P70", + "P80", + "Hot", + "Cool", + "Archive", + "Cold", + ], + }, + }, +}; +exports.rehydratePriority = { + parameterPath: ["options", "rehydratePriority"], + mapper: { + serializedName: "x-ms-rehydrate-priority", + xmlName: "x-ms-rehydrate-priority", + type: { + name: "Enum", + allowedValues: ["High", "Standard"], + }, + }, +}; +exports.sourceIfModifiedSince = { + parameterPath: [ + "options", + "sourceModifiedAccessConditions", + "sourceIfModifiedSince", + ], + mapper: { + serializedName: "x-ms-source-if-modified-since", + xmlName: "x-ms-source-if-modified-since", + type: { + name: "DateTimeRfc1123", + }, + }, +}; +exports.sourceIfUnmodifiedSince = { + parameterPath: [ + "options", + "sourceModifiedAccessConditions", + "sourceIfUnmodifiedSince", + ], + mapper: { + serializedName: "x-ms-source-if-unmodified-since", + xmlName: "x-ms-source-if-unmodified-since", + type: { + name: "DateTimeRfc1123", + }, + }, +}; +exports.sourceIfMatch = { + parameterPath: ["options", "sourceModifiedAccessConditions", "sourceIfMatch"], + mapper: { + serializedName: "x-ms-source-if-match", + xmlName: "x-ms-source-if-match", + type: { + name: "String", + }, + }, +}; +exports.sourceIfNoneMatch = { + parameterPath: [ + "options", + "sourceModifiedAccessConditions", + "sourceIfNoneMatch", + ], + mapper: { + serializedName: "x-ms-source-if-none-match", + xmlName: "x-ms-source-if-none-match", + type: { + name: "String", + }, + }, +}; +exports.sourceIfTags = { + parameterPath: ["options", "sourceModifiedAccessConditions", "sourceIfTags"], + mapper: { + serializedName: "x-ms-source-if-tags", + xmlName: "x-ms-source-if-tags", + type: { + name: "String", + }, + }, +}; +exports.copySource = { + parameterPath: "copySource", + mapper: { + serializedName: "x-ms-copy-source", + required: true, + xmlName: "x-ms-copy-source", + type: { + name: "String", + }, + }, +}; +exports.blobTagsString = { + parameterPath: ["options", "blobTagsString"], + mapper: { + serializedName: "x-ms-tags", + xmlName: "x-ms-tags", + type: { + name: "String", + }, + }, +}; +exports.sealBlob = { + parameterPath: ["options", "sealBlob"], + mapper: { + serializedName: "x-ms-seal-blob", + xmlName: "x-ms-seal-blob", + type: { + name: "Boolean", + }, + }, +}; +exports.legalHold1 = { + parameterPath: ["options", "legalHold"], + mapper: { + serializedName: "x-ms-legal-hold", + xmlName: "x-ms-legal-hold", + type: { + name: "Boolean", + }, + }, +}; +exports.xMsRequiresSync = { + parameterPath: "xMsRequiresSync", + mapper: { + defaultValue: "true", + isConstant: true, + serializedName: "x-ms-requires-sync", + type: { + name: "String", + }, + }, +}; +exports.sourceContentMD5 = { + parameterPath: ["options", "sourceContentMD5"], + mapper: { + serializedName: "x-ms-source-content-md5", + xmlName: "x-ms-source-content-md5", + type: { + name: "ByteArray", + }, + }, +}; +exports.copySourceAuthorization = { + parameterPath: ["options", "copySourceAuthorization"], + mapper: { + serializedName: "x-ms-copy-source-authorization", + xmlName: "x-ms-copy-source-authorization", + type: { + name: "String", + }, + }, +}; +exports.copySourceTags = { + parameterPath: ["options", "copySourceTags"], + mapper: { + serializedName: "x-ms-copy-source-tag-option", + xmlName: "x-ms-copy-source-tag-option", + type: { + name: "Enum", + allowedValues: ["REPLACE", "COPY"], + }, + }, +}; +exports.fileRequestIntent = { + parameterPath: ["options", "fileRequestIntent"], + mapper: { + serializedName: "x-ms-file-request-intent", + xmlName: "x-ms-file-request-intent", + type: { + name: "String", + }, + }, +}; +exports.comp15 = { + parameterPath: "comp", + mapper: { + defaultValue: "copy", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.copyActionAbortConstant = { + parameterPath: "copyActionAbortConstant", + mapper: { + defaultValue: "abort", + isConstant: true, + serializedName: "x-ms-copy-action", + type: { + name: "String", + }, + }, +}; +exports.copyId = { + parameterPath: "copyId", + mapper: { + serializedName: "copyid", + required: true, + xmlName: "copyid", + type: { + name: "String", + }, + }, +}; +exports.comp16 = { + parameterPath: "comp", + mapper: { + defaultValue: "tier", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.tier1 = { + parameterPath: "tier", + mapper: { + serializedName: "x-ms-access-tier", + required: true, + xmlName: "x-ms-access-tier", + type: { + name: "Enum", + allowedValues: [ + "P4", + "P6", + "P10", + "P15", + "P20", + "P30", + "P40", + "P50", + "P60", + "P70", + "P80", + "Hot", + "Cool", + "Archive", + "Cold", + ], + }, + }, +}; +exports.queryRequest = { + parameterPath: ["options", "queryRequest"], + mapper: mappers_js_1.QueryRequest, +}; +exports.comp17 = { + parameterPath: "comp", + mapper: { + defaultValue: "query", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.comp18 = { + parameterPath: "comp", + mapper: { + defaultValue: "tags", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.tags = { + parameterPath: ["options", "tags"], + mapper: mappers_js_1.BlobTags, +}; +exports.transactionalContentMD5 = { + parameterPath: ["options", "transactionalContentMD5"], + mapper: { + serializedName: "Content-MD5", + xmlName: "Content-MD5", + type: { + name: "ByteArray", + }, + }, +}; +exports.transactionalContentCrc64 = { + parameterPath: ["options", "transactionalContentCrc64"], + mapper: { + serializedName: "x-ms-content-crc64", + xmlName: "x-ms-content-crc64", + type: { + name: "ByteArray", + }, + }, +}; +exports.blobType = { + parameterPath: "blobType", + mapper: { + defaultValue: "PageBlob", + isConstant: true, + serializedName: "x-ms-blob-type", + type: { + name: "String", + }, + }, +}; +exports.blobContentLength = { + parameterPath: "blobContentLength", + mapper: { + serializedName: "x-ms-blob-content-length", + required: true, + xmlName: "x-ms-blob-content-length", + type: { + name: "Number", + }, + }, +}; +exports.blobSequenceNumber = { + parameterPath: ["options", "blobSequenceNumber"], + mapper: { + defaultValue: 0, + serializedName: "x-ms-blob-sequence-number", + xmlName: "x-ms-blob-sequence-number", + type: { + name: "Number", + }, + }, +}; +exports.contentType1 = { + parameterPath: ["options", "contentType"], + mapper: { + defaultValue: "application/octet-stream", + isConstant: true, + serializedName: "Content-Type", + type: { + name: "String", + }, + }, +}; +exports.body1 = { + parameterPath: "body", + mapper: { + serializedName: "body", + required: true, + xmlName: "body", + type: { + name: "Stream", + }, + }, +}; +exports.accept2 = { + parameterPath: "accept", + mapper: { + defaultValue: "application/xml", + isConstant: true, + serializedName: "Accept", + type: { + name: "String", + }, + }, +}; +exports.comp19 = { + parameterPath: "comp", + mapper: { + defaultValue: "page", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.pageWrite = { + parameterPath: "pageWrite", + mapper: { + defaultValue: "update", + isConstant: true, + serializedName: "x-ms-page-write", + type: { + name: "String", + }, + }, +}; +exports.ifSequenceNumberLessThanOrEqualTo = { + parameterPath: [ + "options", + "sequenceNumberAccessConditions", + "ifSequenceNumberLessThanOrEqualTo", + ], + mapper: { + serializedName: "x-ms-if-sequence-number-le", + xmlName: "x-ms-if-sequence-number-le", + type: { + name: "Number", + }, + }, +}; +exports.ifSequenceNumberLessThan = { + parameterPath: [ + "options", + "sequenceNumberAccessConditions", + "ifSequenceNumberLessThan", + ], + mapper: { + serializedName: "x-ms-if-sequence-number-lt", + xmlName: "x-ms-if-sequence-number-lt", + type: { + name: "Number", + }, + }, +}; +exports.ifSequenceNumberEqualTo = { + parameterPath: [ + "options", + "sequenceNumberAccessConditions", + "ifSequenceNumberEqualTo", + ], + mapper: { + serializedName: "x-ms-if-sequence-number-eq", + xmlName: "x-ms-if-sequence-number-eq", + type: { + name: "Number", + }, + }, +}; +exports.pageWrite1 = { + parameterPath: "pageWrite", + mapper: { + defaultValue: "clear", + isConstant: true, + serializedName: "x-ms-page-write", + type: { + name: "String", + }, + }, +}; +exports.sourceUrl = { + parameterPath: "sourceUrl", + mapper: { + serializedName: "x-ms-copy-source", + required: true, + xmlName: "x-ms-copy-source", + type: { + name: "String", + }, + }, +}; +exports.sourceRange = { + parameterPath: "sourceRange", + mapper: { + serializedName: "x-ms-source-range", + required: true, + xmlName: "x-ms-source-range", + type: { + name: "String", + }, + }, +}; +exports.sourceContentCrc64 = { + parameterPath: ["options", "sourceContentCrc64"], + mapper: { + serializedName: "x-ms-source-content-crc64", + xmlName: "x-ms-source-content-crc64", + type: { + name: "ByteArray", + }, + }, +}; +exports.range1 = { + parameterPath: "range", + mapper: { + serializedName: "x-ms-range", + required: true, + xmlName: "x-ms-range", + type: { + name: "String", + }, + }, +}; +exports.comp20 = { + parameterPath: "comp", + mapper: { + defaultValue: "pagelist", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.prevsnapshot = { + parameterPath: ["options", "prevsnapshot"], + mapper: { + serializedName: "prevsnapshot", + xmlName: "prevsnapshot", + type: { + name: "String", + }, + }, +}; +exports.prevSnapshotUrl = { + parameterPath: ["options", "prevSnapshotUrl"], + mapper: { + serializedName: "x-ms-previous-snapshot-url", + xmlName: "x-ms-previous-snapshot-url", + type: { + name: "String", + }, + }, +}; +exports.sequenceNumberAction = { + parameterPath: "sequenceNumberAction", + mapper: { + serializedName: "x-ms-sequence-number-action", + required: true, + xmlName: "x-ms-sequence-number-action", + type: { + name: "Enum", + allowedValues: ["max", "update", "increment"], + }, + }, +}; +exports.comp21 = { + parameterPath: "comp", + mapper: { + defaultValue: "incrementalcopy", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, }; - -/** - * Fetch function - * - * @param Mixed url Absolute url or Request instance - * @param Object opts Fetch options - * @return Promise - */ -function fetch(url, opts) { - - // allow custom promise - if (!fetch.Promise) { - throw new Error('native promise missing, set fetch.Promise to your favorite alternative'); - } - - Body.Promise = fetch.Promise; - - // wrap http.request into fetch - return new fetch.Promise(function (resolve, reject) { - // build request object - const request = new Request(url, opts); - const options = getNodeRequestOptions(request); - - const send = (options.protocol === 'https:' ? https : http).request; - const signal = request.signal; - - let response = null; - - const abort = function abort() { - let error = new AbortError('The user aborted a request.'); - reject(error); - if (request.body && request.body instanceof Stream.Readable) { - request.body.destroy(error); - } - if (!response || !response.body) return; - response.body.emit('error', error); - }; - - if (signal && signal.aborted) { - abort(); - return; - } - - const abortAndFinalize = function abortAndFinalize() { - abort(); - finalize(); - }; - - // send request - const req = send(options); - let reqTimeout; - - if (signal) { - signal.addEventListener('abort', abortAndFinalize); - } - - function finalize() { - req.abort(); - if (signal) signal.removeEventListener('abort', abortAndFinalize); - clearTimeout(reqTimeout); - } - - if (request.timeout) { - req.once('socket', function (socket) { - reqTimeout = setTimeout(function () { - reject(new FetchError(`network timeout at: ${request.url}`, 'request-timeout')); - finalize(); - }, request.timeout); - }); - } - - req.on('error', function (err) { - reject(new FetchError(`request to ${request.url} failed, reason: ${err.message}`, 'system', err)); - finalize(); - }); - - req.on('response', function (res) { - clearTimeout(reqTimeout); - - const headers = createHeadersLenient(res.headers); - - // HTTP fetch step 5 - if (fetch.isRedirect(res.statusCode)) { - // HTTP fetch step 5.2 - const location = headers.get('Location'); - - // HTTP fetch step 5.3 - let locationURL = null; - try { - locationURL = location === null ? null : new URL$1(location, request.url).toString(); - } catch (err) { - // error here can only be invalid URL in Location: header - // do not throw when options.redirect == manual - // let the user extract the errorneous redirect URL - if (request.redirect !== 'manual') { - reject(new FetchError(`uri requested responds with an invalid redirect URL: ${location}`, 'invalid-redirect')); - finalize(); - return; - } - } - - // HTTP fetch step 5.5 - switch (request.redirect) { - case 'error': - reject(new FetchError(`uri requested responds with a redirect, redirect mode is set to error: ${request.url}`, 'no-redirect')); - finalize(); - return; - case 'manual': - // node-fetch-specific step: make manual redirect a bit easier to use by setting the Location header value to the resolved URL. - if (locationURL !== null) { - // handle corrupted header - try { - headers.set('Location', locationURL); - } catch (err) { - // istanbul ignore next: nodejs server prevent invalid response headers, we can't test this through normal request - reject(err); - } - } - break; - case 'follow': - // HTTP-redirect fetch step 2 - if (locationURL === null) { - break; - } - - // HTTP-redirect fetch step 5 - if (request.counter >= request.follow) { - reject(new FetchError(`maximum redirect reached at: ${request.url}`, 'max-redirect')); - finalize(); - return; - } - - // HTTP-redirect fetch step 6 (counter increment) - // Create a new Request object. - const requestOpts = { - headers: new Headers(request.headers), - follow: request.follow, - counter: request.counter + 1, - agent: request.agent, - compress: request.compress, - method: request.method, - body: request.body, - signal: request.signal, - timeout: request.timeout, - size: request.size - }; - - if (!isDomainOrSubdomain(request.url, locationURL)) { - for (const name of ['authorization', 'www-authenticate', 'cookie', 'cookie2']) { - requestOpts.headers.delete(name); - } - } - - // HTTP-redirect fetch step 9 - if (res.statusCode !== 303 && request.body && getTotalBytes(request) === null) { - reject(new FetchError('Cannot follow redirect with body being a readable stream', 'unsupported-redirect')); - finalize(); - return; - } - - // HTTP-redirect fetch step 11 - if (res.statusCode === 303 || (res.statusCode === 301 || res.statusCode === 302) && request.method === 'POST') { - requestOpts.method = 'GET'; - requestOpts.body = undefined; - requestOpts.headers.delete('content-length'); - } - - // HTTP-redirect fetch step 15 - resolve(fetch(new Request(locationURL, requestOpts))); - finalize(); - return; - } - } - - // prepare response - res.once('end', function () { - if (signal) signal.removeEventListener('abort', abortAndFinalize); - }); - let body = res.pipe(new PassThrough$1()); - - const response_options = { - url: request.url, - status: res.statusCode, - statusText: res.statusMessage, - headers: headers, - size: request.size, - timeout: request.timeout, - counter: request.counter - }; - - // HTTP-network fetch step 12.1.1.3 - const codings = headers.get('Content-Encoding'); - - // HTTP-network fetch step 12.1.1.4: handle content codings - - // in following scenarios we ignore compression support - // 1. compression support is disabled - // 2. HEAD request - // 3. no Content-Encoding header - // 4. no content response (204) - // 5. content not modified response (304) - if (!request.compress || request.method === 'HEAD' || codings === null || res.statusCode === 204 || res.statusCode === 304) { - response = new Response(body, response_options); - resolve(response); - return; - } - - // For Node v6+ - // Be less strict when decoding compressed responses, since sometimes - // servers send slightly invalid responses that are still accepted - // by common browsers. - // Always using Z_SYNC_FLUSH is what cURL does. - const zlibOptions = { - flush: zlib.Z_SYNC_FLUSH, - finishFlush: zlib.Z_SYNC_FLUSH - }; - - // for gzip - if (codings == 'gzip' || codings == 'x-gzip') { - body = body.pipe(zlib.createGunzip(zlibOptions)); - response = new Response(body, response_options); - resolve(response); - return; - } - - // for deflate - if (codings == 'deflate' || codings == 'x-deflate') { - // handle the infamous raw deflate response from old servers - // a hack for old IIS and Apache servers - const raw = res.pipe(new PassThrough$1()); - raw.once('data', function (chunk) { - // see http://stackoverflow.com/questions/37519828 - if ((chunk[0] & 0x0F) === 0x08) { - body = body.pipe(zlib.createInflate()); - } else { - body = body.pipe(zlib.createInflateRaw()); - } - response = new Response(body, response_options); - resolve(response); - }); - return; - } - - // for br - if (codings == 'br' && typeof zlib.createBrotliDecompress === 'function') { - body = body.pipe(zlib.createBrotliDecompress()); - response = new Response(body, response_options); - resolve(response); - return; - } - - // otherwise, use response as-is - response = new Response(body, response_options); - resolve(response); - }); - - writeToStream(req, request); - }); -} -/** - * Redirect code matching - * - * @param Number code Status code - * @return Boolean - */ -fetch.isRedirect = function (code) { - return code === 301 || code === 302 || code === 303 || code === 307 || code === 308; +exports.blobType1 = { + parameterPath: "blobType", + mapper: { + defaultValue: "AppendBlob", + isConstant: true, + serializedName: "x-ms-blob-type", + type: { + name: "String", + }, + }, }; - -// expose Promise -fetch.Promise = global.Promise; - -module.exports = exports = fetch; -Object.defineProperty(exports, "__esModule", ({ value: true })); -exports["default"] = exports; -exports.Headers = Headers; -exports.Request = Request; -exports.Response = Response; -exports.FetchError = FetchError; - - -/***/ }), - -/***/ 2299: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -"use strict"; - - -var punycode = __nccwpck_require__(5477); -var mappingTable = __nccwpck_require__(1907); - -var PROCESSING_OPTIONS = { - TRANSITIONAL: 0, - NONTRANSITIONAL: 1 +exports.comp22 = { + parameterPath: "comp", + mapper: { + defaultValue: "appendblock", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, }; - -function normalize(str) { // fix bug in v8 - return str.split('\u0000').map(function (s) { return s.normalize('NFC'); }).join('\u0000'); -} - -function findStatus(val) { - var start = 0; - var end = mappingTable.length - 1; - - while (start <= end) { - var mid = Math.floor((start + end) / 2); - - var target = mappingTable[mid]; - if (target[0][0] <= val && target[0][1] >= val) { - return target; - } else if (target[0][0] > val) { - end = mid - 1; - } else { - start = mid + 1; - } - } - - return null; -} - -var regexAstralSymbols = /[\uD800-\uDBFF][\uDC00-\uDFFF]/g; - -function countSymbols(string) { - return string - // replace every surrogate pair with a BMP symbol - .replace(regexAstralSymbols, '_') - // then get the length - .length; -} - -function mapChars(domain_name, useSTD3, processing_option) { - var hasError = false; - var processed = ""; - - var len = countSymbols(domain_name); - for (var i = 0; i < len; ++i) { - var codePoint = domain_name.codePointAt(i); - var status = findStatus(codePoint); - - switch (status[1]) { - case "disallowed": - hasError = true; - processed += String.fromCodePoint(codePoint); - break; - case "ignored": - break; - case "mapped": - processed += String.fromCodePoint.apply(String, status[2]); - break; - case "deviation": - if (processing_option === PROCESSING_OPTIONS.TRANSITIONAL) { - processed += String.fromCodePoint.apply(String, status[2]); - } else { - processed += String.fromCodePoint(codePoint); - } - break; - case "valid": - processed += String.fromCodePoint(codePoint); - break; - case "disallowed_STD3_mapped": - if (useSTD3) { - hasError = true; - processed += String.fromCodePoint(codePoint); - } else { - processed += String.fromCodePoint.apply(String, status[2]); - } - break; - case "disallowed_STD3_valid": - if (useSTD3) { - hasError = true; - } - - processed += String.fromCodePoint(codePoint); - break; - } - } - - return { - string: processed, - error: hasError - }; -} - -var combiningMarksRegex = /[\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u08E4-\u0903\u093A-\u093C\u093E-\u094F\u0951-\u0957\u0962\u0963\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u0A01-\u0A03\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AE2\u0AE3\u0B01-\u0B03\u0B3C\u0B3E-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B62\u0B63\u0B82\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0C00-\u0C03\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81-\u0C83\u0CBC\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CE2\u0CE3\u0D01-\u0D03\u0D3E-\u0D44\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0D62\u0D63\u0D82\u0D83\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DF2\u0DF3\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EB9\u0EBB\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102B-\u103E\u1056-\u1059\u105E-\u1060\u1062-\u1064\u1067-\u106D\u1071-\u1074\u1082-\u108D\u108F\u109A-\u109D\u135D-\u135F\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4-\u17D3\u17DD\u180B-\u180D\u18A9\u1920-\u192B\u1930-\u193B\u19B0-\u19C0\u19C8\u19C9\u1A17-\u1A1B\u1A55-\u1A5E\u1A60-\u1A7C\u1A7F\u1AB0-\u1ABE\u1B00-\u1B04\u1B34-\u1B44\u1B6B-\u1B73\u1B80-\u1B82\u1BA1-\u1BAD\u1BE6-\u1BF3\u1C24-\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE8\u1CED\u1CF2-\u1CF4\u1CF8\u1CF9\u1DC0-\u1DF5\u1DFC-\u1DFF\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302F\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA823-\uA827\uA880\uA881\uA8B4-\uA8C4\uA8E0-\uA8F1\uA926-\uA92D\uA947-\uA953\uA980-\uA983\uA9B3-\uA9C0\uA9E5\uAA29-\uAA36\uAA43\uAA4C\uAA4D\uAA7B-\uAA7D\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEB-\uAAEF\uAAF5\uAAF6\uABE3-\uABEA\uABEC\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2D]|\uD800[\uDDFD\uDEE0\uDF76-\uDF7A]|\uD802[\uDE01-\uDE03\uDE05\uDE06\uDE0C-\uDE0F\uDE38-\uDE3A\uDE3F\uDEE5\uDEE6]|\uD804[\uDC00-\uDC02\uDC38-\uDC46\uDC7F-\uDC82\uDCB0-\uDCBA\uDD00-\uDD02\uDD27-\uDD34\uDD73\uDD80-\uDD82\uDDB3-\uDDC0\uDE2C-\uDE37\uDEDF-\uDEEA\uDF01-\uDF03\uDF3C\uDF3E-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF57\uDF62\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDCB0-\uDCC3\uDDAF-\uDDB5\uDDB8-\uDDC0\uDE30-\uDE40\uDEAB-\uDEB7]|\uD81A[\uDEF0-\uDEF4\uDF30-\uDF36]|\uD81B[\uDF51-\uDF7E\uDF8F-\uDF92]|\uD82F[\uDC9D\uDC9E]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD83A[\uDCD0-\uDCD6]|\uDB40[\uDD00-\uDDEF]/; - -function validateLabel(label, processing_option) { - if (label.substr(0, 4) === "xn--") { - label = punycode.toUnicode(label); - processing_option = PROCESSING_OPTIONS.NONTRANSITIONAL; - } - - var error = false; - - if (normalize(label) !== label || - (label[3] === "-" && label[4] === "-") || - label[0] === "-" || label[label.length - 1] === "-" || - label.indexOf(".") !== -1 || - label.search(combiningMarksRegex) === 0) { - error = true; - } - - var len = countSymbols(label); - for (var i = 0; i < len; ++i) { - var status = findStatus(label.codePointAt(i)); - if ((processing === PROCESSING_OPTIONS.TRANSITIONAL && status[1] !== "valid") || - (processing === PROCESSING_OPTIONS.NONTRANSITIONAL && - status[1] !== "valid" && status[1] !== "deviation")) { - error = true; - break; - } - } - - return { - label: label, - error: error - }; -} - -function processing(domain_name, useSTD3, processing_option) { - var result = mapChars(domain_name, useSTD3, processing_option); - result.string = normalize(result.string); - - var labels = result.string.split("."); - for (var i = 0; i < labels.length; ++i) { - try { - var validation = validateLabel(labels[i]); - labels[i] = validation.label; - result.error = result.error || validation.error; - } catch(e) { - result.error = true; - } - } - - return { - string: labels.join("."), - error: result.error - }; -} - -module.exports.toASCII = function(domain_name, useSTD3, processing_option, verifyDnsLength) { - var result = processing(domain_name, useSTD3, processing_option); - var labels = result.string.split("."); - labels = labels.map(function(l) { - try { - return punycode.toASCII(l); - } catch(e) { - result.error = true; - return l; - } - }); - - if (verifyDnsLength) { - var total = labels.slice(0, labels.length - 1).join(".").length; - if (total.length > 253 || total.length === 0) { - result.error = true; - } - - for (var i=0; i < labels.length; ++i) { - if (labels.length > 63 || labels.length === 0) { - result.error = true; - break; - } - } - } - - if (result.error) return null; - return labels.join("."); +exports.maxSize = { + parameterPath: ["options", "appendPositionAccessConditions", "maxSize"], + mapper: { + serializedName: "x-ms-blob-condition-maxsize", + xmlName: "x-ms-blob-condition-maxsize", + type: { + name: "Number", + }, + }, }; - -module.exports.toUnicode = function(domain_name, useSTD3) { - var result = processing(domain_name, useSTD3, PROCESSING_OPTIONS.NONTRANSITIONAL); - - return { - domain: result.string, - error: result.error - }; +exports.appendPosition = { + parameterPath: [ + "options", + "appendPositionAccessConditions", + "appendPosition", + ], + mapper: { + serializedName: "x-ms-blob-condition-appendpos", + xmlName: "x-ms-blob-condition-appendpos", + type: { + name: "Number", + }, + }, }; - -module.exports.PROCESSING_OPTIONS = PROCESSING_OPTIONS; - +exports.sourceRange1 = { + parameterPath: ["options", "sourceRange"], + mapper: { + serializedName: "x-ms-source-range", + xmlName: "x-ms-source-range", + type: { + name: "String", + }, + }, +}; +exports.comp23 = { + parameterPath: "comp", + mapper: { + defaultValue: "seal", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.blobType2 = { + parameterPath: "blobType", + mapper: { + defaultValue: "BlockBlob", + isConstant: true, + serializedName: "x-ms-blob-type", + type: { + name: "String", + }, + }, +}; +exports.copySourceBlobProperties = { + parameterPath: ["options", "copySourceBlobProperties"], + mapper: { + serializedName: "x-ms-copy-source-blob-properties", + xmlName: "x-ms-copy-source-blob-properties", + type: { + name: "Boolean", + }, + }, +}; +exports.comp24 = { + parameterPath: "comp", + mapper: { + defaultValue: "block", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.blockId = { + parameterPath: "blockId", + mapper: { + serializedName: "blockid", + required: true, + xmlName: "blockid", + type: { + name: "String", + }, + }, +}; +exports.blocks = { + parameterPath: "blocks", + mapper: mappers_js_1.BlockLookupList, +}; +exports.comp25 = { + parameterPath: "comp", + mapper: { + defaultValue: "blocklist", + isConstant: true, + serializedName: "comp", + type: { + name: "String", + }, + }, +}; +exports.listType = { + parameterPath: "listType", + mapper: { + defaultValue: "committed", + serializedName: "blocklisttype", + required: true, + xmlName: "blocklisttype", + type: { + name: "Enum", + allowedValues: ["committed", "uncommitted", "all"], + }, + }, +}; +//# sourceMappingURL=parameters.js.map /***/ }), -/***/ 5871: -/***/ ((module) => { +/***/ 80313: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; - -var conversions = {}; -module.exports = conversions; - -function sign(x) { - return x < 0 ? -1 : 1; -} - -function evenRound(x) { - // Round x to the nearest integer, choosing the even integer if it lies halfway between two. - if ((x % 1) === 0.5 && (x & 1) === 0) { // [even number].5; round down (i.e. floor) - return Math.floor(x); - } else { - return Math.round(x); - } -} - -function createNumberConversion(bitLength, typeOpts) { - if (!typeOpts.unsigned) { - --bitLength; - } - const lowerBound = typeOpts.unsigned ? 0 : -Math.pow(2, bitLength); - const upperBound = Math.pow(2, bitLength) - 1; - - const moduloVal = typeOpts.moduloBitLength ? Math.pow(2, typeOpts.moduloBitLength) : Math.pow(2, bitLength); - const moduloBound = typeOpts.moduloBitLength ? Math.pow(2, typeOpts.moduloBitLength - 1) : Math.pow(2, bitLength - 1); - - return function(V, opts) { - if (!opts) opts = {}; - - let x = +V; - - if (opts.enforceRange) { - if (!Number.isFinite(x)) { - throw new TypeError("Argument is not a finite number"); - } - - x = sign(x) * Math.floor(Math.abs(x)); - if (x < lowerBound || x > upperBound) { - throw new TypeError("Argument is not in byte range"); - } - - return x; - } - - if (!isNaN(x) && opts.clamp) { - x = evenRound(x); - - if (x < lowerBound) x = lowerBound; - if (x > upperBound) x = upperBound; - return x; - } - - if (!Number.isFinite(x) || x === 0) { - return 0; - } - - x = sign(x) * Math.floor(Math.abs(x)); - x = x % moduloVal; - - if (!typeOpts.unsigned && x >= moduloBound) { - return x - moduloVal; - } else if (typeOpts.unsigned) { - if (x < 0) { - x += moduloVal; - } else if (x === -0) { // don't return negative zero - return 0; - } - } - - return x; +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.AppendBlobImpl = void 0; +const tslib_1 = __nccwpck_require__(4351); +const coreClient = tslib_1.__importStar(__nccwpck_require__(7611)); +const Mappers = tslib_1.__importStar(__nccwpck_require__(52486)); +const Parameters = tslib_1.__importStar(__nccwpck_require__(54142)); +/** Class containing AppendBlob operations. */ +class AppendBlobImpl { + client; + /** + * Initialize a new instance of the class AppendBlob class. + * @param client Reference to the service client + */ + constructor(client) { + this.client = client; } -} - -conversions["void"] = function () { - return undefined; -}; - -conversions["boolean"] = function (val) { - return !!val; -}; - -conversions["byte"] = createNumberConversion(8, { unsigned: false }); -conversions["octet"] = createNumberConversion(8, { unsigned: true }); - -conversions["short"] = createNumberConversion(16, { unsigned: false }); -conversions["unsigned short"] = createNumberConversion(16, { unsigned: true }); - -conversions["long"] = createNumberConversion(32, { unsigned: false }); -conversions["unsigned long"] = createNumberConversion(32, { unsigned: true }); - -conversions["long long"] = createNumberConversion(32, { unsigned: false, moduloBitLength: 64 }); -conversions["unsigned long long"] = createNumberConversion(32, { unsigned: true, moduloBitLength: 64 }); - -conversions["double"] = function (V) { - const x = +V; - - if (!Number.isFinite(x)) { - throw new TypeError("Argument is not a finite floating-point value"); + /** + * The Create Append Blob operation creates a new append blob. + * @param contentLength The length of the request. + * @param options The options parameters. + */ + create(contentLength, options) { + return this.client.sendOperationRequest({ contentLength, options }, createOperationSpec); } - - return x; -}; - -conversions["unrestricted double"] = function (V) { - const x = +V; - - if (isNaN(x)) { - throw new TypeError("Argument is NaN"); + /** + * The Append Block operation commits a new block of data to the end of an existing append blob. The + * Append Block operation is permitted only if the blob was created with x-ms-blob-type set to + * AppendBlob. Append Block is supported only on version 2015-02-21 version or later. + * @param contentLength The length of the request. + * @param body Initial data + * @param options The options parameters. + */ + appendBlock(contentLength, body, options) { + return this.client.sendOperationRequest({ contentLength, body, options }, appendBlockOperationSpec); } - - return x; -}; - -// not quite valid, but good enough for JS -conversions["float"] = conversions["double"]; -conversions["unrestricted float"] = conversions["unrestricted double"]; - -conversions["DOMString"] = function (V, opts) { - if (!opts) opts = {}; - - if (opts.treatNullAsEmptyString && V === null) { - return ""; + /** + * The Append Block operation commits a new block of data to the end of an existing append blob where + * the contents are read from a source url. The Append Block operation is permitted only if the blob + * was created with x-ms-blob-type set to AppendBlob. Append Block is supported only on version + * 2015-02-21 version or later. + * @param sourceUrl Specify a URL to the copy source. + * @param contentLength The length of the request. + * @param options The options parameters. + */ + appendBlockFromUrl(sourceUrl, contentLength, options) { + return this.client.sendOperationRequest({ sourceUrl, contentLength, options }, appendBlockFromUrlOperationSpec); } - - return String(V); -}; - -conversions["ByteString"] = function (V, opts) { - const x = String(V); - let c = undefined; - for (let i = 0; (c = x.codePointAt(i)) !== undefined; ++i) { - if (c > 255) { - throw new TypeError("Argument is not a valid bytestring"); - } + /** + * The Seal operation seals the Append Blob to make it read-only. Seal is supported only on version + * 2019-12-12 version or later. + * @param options The options parameters. + */ + seal(options) { + return this.client.sendOperationRequest({ options }, sealOperationSpec); } - - return x; +} +exports.AppendBlobImpl = AppendBlobImpl; +// Operation Specifications +const xmlSerializer = coreClient.createSerializer(Mappers, /* isXml */ true); +const createOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 201: { + headersMapper: Mappers.AppendBlobCreateHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.AppendBlobCreateExceptionHeaders, + }, + }, + queryParameters: [Parameters.timeoutInSeconds], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.contentLength, + Parameters.metadata, + Parameters.leaseId, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.encryptionKey, + Parameters.encryptionKeySha256, + Parameters.encryptionAlgorithm, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + Parameters.blobCacheControl, + Parameters.blobContentType, + Parameters.blobContentMD5, + Parameters.blobContentEncoding, + Parameters.blobContentLanguage, + Parameters.blobContentDisposition, + Parameters.immutabilityPolicyExpiry, + Parameters.immutabilityPolicyMode, + Parameters.encryptionScope, + Parameters.blobTagsString, + Parameters.legalHold1, + Parameters.blobType1, + ], + isXML: true, + serializer: xmlSerializer, }; - -conversions["USVString"] = function (V) { - const S = String(V); - const n = S.length; - const U = []; - for (let i = 0; i < n; ++i) { - const c = S.charCodeAt(i); - if (c < 0xD800 || c > 0xDFFF) { - U.push(String.fromCodePoint(c)); - } else if (0xDC00 <= c && c <= 0xDFFF) { - U.push(String.fromCodePoint(0xFFFD)); - } else { - if (i === n - 1) { - U.push(String.fromCodePoint(0xFFFD)); - } else { - const d = S.charCodeAt(i + 1); - if (0xDC00 <= d && d <= 0xDFFF) { - const a = c & 0x3FF; - const b = d & 0x3FF; - U.push(String.fromCodePoint((2 << 15) + (2 << 9) * a + b)); - ++i; - } else { - U.push(String.fromCodePoint(0xFFFD)); - } - } - } - } - - return U.join(''); +const appendBlockOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 201: { + headersMapper: Mappers.AppendBlobAppendBlockHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.AppendBlobAppendBlockExceptionHeaders, + }, + }, + requestBody: Parameters.body1, + queryParameters: [Parameters.timeoutInSeconds, Parameters.comp22], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.contentLength, + Parameters.leaseId, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.encryptionKey, + Parameters.encryptionKeySha256, + Parameters.encryptionAlgorithm, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + Parameters.encryptionScope, + Parameters.transactionalContentMD5, + Parameters.transactionalContentCrc64, + Parameters.contentType1, + Parameters.accept2, + Parameters.maxSize, + Parameters.appendPosition, + ], + isXML: true, + contentType: "application/xml; charset=utf-8", + mediaType: "binary", + serializer: xmlSerializer, }; - -conversions["Date"] = function (V, opts) { - if (!(V instanceof Date)) { - throw new TypeError("Argument is not a Date object"); - } - if (isNaN(V)) { - return undefined; - } - - return V; +const appendBlockFromUrlOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 201: { + headersMapper: Mappers.AppendBlobAppendBlockFromUrlHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.AppendBlobAppendBlockFromUrlExceptionHeaders, + }, + }, + queryParameters: [Parameters.timeoutInSeconds, Parameters.comp22], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.contentLength, + Parameters.leaseId, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.encryptionKey, + Parameters.encryptionKeySha256, + Parameters.encryptionAlgorithm, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + Parameters.encryptionScope, + Parameters.sourceIfModifiedSince, + Parameters.sourceIfUnmodifiedSince, + Parameters.sourceIfMatch, + Parameters.sourceIfNoneMatch, + Parameters.sourceContentMD5, + Parameters.copySourceAuthorization, + Parameters.fileRequestIntent, + Parameters.transactionalContentMD5, + Parameters.sourceUrl, + Parameters.sourceContentCrc64, + Parameters.maxSize, + Parameters.appendPosition, + Parameters.sourceRange1, + ], + isXML: true, + serializer: xmlSerializer, }; - -conversions["RegExp"] = function (V, opts) { - if (!(V instanceof RegExp)) { - V = new RegExp(V); - } - - return V; +const sealOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 200: { + headersMapper: Mappers.AppendBlobSealHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.AppendBlobSealExceptionHeaders, + }, + }, + queryParameters: [Parameters.timeoutInSeconds, Parameters.comp23], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.leaseId, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.appendPosition, + ], + isXML: true, + serializer: xmlSerializer, }; - +//# sourceMappingURL=appendBlob.js.map /***/ }), -/***/ 8262: +/***/ 8296: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; -const usm = __nccwpck_require__(33); - -exports.implementation = class URLImpl { - constructor(constructorArgs) { - const url = constructorArgs[0]; - const base = constructorArgs[1]; - - let parsedBase = null; - if (base !== undefined) { - parsedBase = usm.basicURLParse(base); - if (parsedBase === "failure") { - throw new TypeError("Invalid base URL"); - } +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.BlobImpl = void 0; +const tslib_1 = __nccwpck_require__(4351); +const coreClient = tslib_1.__importStar(__nccwpck_require__(7611)); +const Mappers = tslib_1.__importStar(__nccwpck_require__(52486)); +const Parameters = tslib_1.__importStar(__nccwpck_require__(54142)); +/** Class containing Blob operations. */ +class BlobImpl { + client; + /** + * Initialize a new instance of the class Blob class. + * @param client Reference to the service client + */ + constructor(client) { + this.client = client; } - - const parsedURL = usm.basicURLParse(url, { baseURL: parsedBase }); - if (parsedURL === "failure") { - throw new TypeError("Invalid URL"); + /** + * The Download operation reads or downloads a blob from the system, including its metadata and + * properties. You can also call Download to read a snapshot. + * @param options The options parameters. + */ + download(options) { + return this.client.sendOperationRequest({ options }, downloadOperationSpec); } - - this._url = parsedURL; - - // TODO: query stuff - } - - get href() { - return usm.serializeURL(this._url); - } - - set href(v) { - const parsedURL = usm.basicURLParse(v); - if (parsedURL === "failure") { - throw new TypeError("Invalid URL"); + /** + * The Get Properties operation returns all user-defined metadata, standard HTTP properties, and system + * properties for the blob. It does not return the content of the blob. + * @param options The options parameters. + */ + getProperties(options) { + return this.client.sendOperationRequest({ options }, getPropertiesOperationSpec); } - - this._url = parsedURL; - } - - get origin() { - return usm.serializeURLOrigin(this._url); - } - - get protocol() { - return this._url.scheme + ":"; - } - - set protocol(v) { - usm.basicURLParse(v + ":", { url: this._url, stateOverride: "scheme start" }); - } - - get username() { - return this._url.username; - } - - set username(v) { - if (usm.cannotHaveAUsernamePasswordPort(this._url)) { - return; + /** + * If the storage account's soft delete feature is disabled then, when a blob is deleted, it is + * permanently removed from the storage account. If the storage account's soft delete feature is + * enabled, then, when a blob is deleted, it is marked for deletion and becomes inaccessible + * immediately. However, the blob service retains the blob or snapshot for the number of days specified + * by the DeleteRetentionPolicy section of [Storage service properties] + * (Set-Blob-Service-Properties.md). After the specified number of days has passed, the blob's data is + * permanently removed from the storage account. Note that you continue to be charged for the + * soft-deleted blob's storage until it is permanently removed. Use the List Blobs API and specify the + * "include=deleted" query parameter to discover which blobs and snapshots have been soft deleted. You + * can then use the Undelete Blob API to restore a soft-deleted blob. All other operations on a + * soft-deleted blob or snapshot causes the service to return an HTTP status code of 404 + * (ResourceNotFound). + * @param options The options parameters. + */ + delete(options) { + return this.client.sendOperationRequest({ options }, deleteOperationSpec); } - - usm.setTheUsername(this._url, v); - } - - get password() { - return this._url.password; - } - - set password(v) { - if (usm.cannotHaveAUsernamePasswordPort(this._url)) { - return; + /** + * Undelete a blob that was previously soft deleted + * @param options The options parameters. + */ + undelete(options) { + return this.client.sendOperationRequest({ options }, undeleteOperationSpec); + } + /** + * Sets the time a blob will expire and be deleted. + * @param expiryOptions Required. Indicates mode of the expiry time + * @param options The options parameters. + */ + setExpiry(expiryOptions, options) { + return this.client.sendOperationRequest({ expiryOptions, options }, setExpiryOperationSpec); + } + /** + * The Set HTTP Headers operation sets system properties on the blob + * @param options The options parameters. + */ + setHttpHeaders(options) { + return this.client.sendOperationRequest({ options }, setHttpHeadersOperationSpec); + } + /** + * The Set Immutability Policy operation sets the immutability policy on the blob + * @param options The options parameters. + */ + setImmutabilityPolicy(options) { + return this.client.sendOperationRequest({ options }, setImmutabilityPolicyOperationSpec); + } + /** + * The Delete Immutability Policy operation deletes the immutability policy on the blob + * @param options The options parameters. + */ + deleteImmutabilityPolicy(options) { + return this.client.sendOperationRequest({ options }, deleteImmutabilityPolicyOperationSpec); } - - usm.setThePassword(this._url, v); - } - - get host() { - const url = this._url; - - if (url.host === null) { - return ""; + /** + * The Set Legal Hold operation sets a legal hold on the blob. + * @param legalHold Specified if a legal hold should be set on the blob. + * @param options The options parameters. + */ + setLegalHold(legalHold, options) { + return this.client.sendOperationRequest({ legalHold, options }, setLegalHoldOperationSpec); } - - if (url.port === null) { - return usm.serializeHost(url.host); + /** + * The Set Blob Metadata operation sets user-defined metadata for the specified blob as one or more + * name-value pairs + * @param options The options parameters. + */ + setMetadata(options) { + return this.client.sendOperationRequest({ options }, setMetadataOperationSpec); } - - return usm.serializeHost(url.host) + ":" + usm.serializeInteger(url.port); - } - - set host(v) { - if (this._url.cannotBeABaseURL) { - return; + /** + * [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete + * operations + * @param options The options parameters. + */ + acquireLease(options) { + return this.client.sendOperationRequest({ options }, acquireLeaseOperationSpec); } - - usm.basicURLParse(v, { url: this._url, stateOverride: "host" }); - } - - get hostname() { - if (this._url.host === null) { - return ""; + /** + * [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete + * operations + * @param leaseId Specifies the current lease ID on the resource. + * @param options The options parameters. + */ + releaseLease(leaseId, options) { + return this.client.sendOperationRequest({ leaseId, options }, releaseLeaseOperationSpec); } - - return usm.serializeHost(this._url.host); - } - - set hostname(v) { - if (this._url.cannotBeABaseURL) { - return; + /** + * [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete + * operations + * @param leaseId Specifies the current lease ID on the resource. + * @param options The options parameters. + */ + renewLease(leaseId, options) { + return this.client.sendOperationRequest({ leaseId, options }, renewLeaseOperationSpec); } - - usm.basicURLParse(v, { url: this._url, stateOverride: "hostname" }); - } - - get port() { - if (this._url.port === null) { - return ""; + /** + * [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete + * operations + * @param leaseId Specifies the current lease ID on the resource. + * @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400 + * (Invalid request) if the proposed lease ID is not in the correct format. See Guid Constructor + * (String) for a list of valid GUID string formats. + * @param options The options parameters. + */ + changeLease(leaseId, proposedLeaseId, options) { + return this.client.sendOperationRequest({ leaseId, proposedLeaseId, options }, changeLeaseOperationSpec); } - - return usm.serializeInteger(this._url.port); - } - - set port(v) { - if (usm.cannotHaveAUsernamePasswordPort(this._url)) { - return; + /** + * [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete + * operations + * @param options The options parameters. + */ + breakLease(options) { + return this.client.sendOperationRequest({ options }, breakLeaseOperationSpec); } - - if (v === "") { - this._url.port = null; - } else { - usm.basicURLParse(v, { url: this._url, stateOverride: "port" }); + /** + * The Create Snapshot operation creates a read-only snapshot of a blob + * @param options The options parameters. + */ + createSnapshot(options) { + return this.client.sendOperationRequest({ options }, createSnapshotOperationSpec); } - } - - get pathname() { - if (this._url.cannotBeABaseURL) { - return this._url.path[0]; + /** + * The Start Copy From URL operation copies a blob or an internet resource to a new blob. + * @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to + * 2 KB in length that specifies a page blob snapshot. The value should be URL-encoded as it would + * appear in a request URI. The source blob must either be public or must be authenticated via a shared + * access signature. + * @param options The options parameters. + */ + startCopyFromURL(copySource, options) { + return this.client.sendOperationRequest({ copySource, options }, startCopyFromURLOperationSpec); } - - if (this._url.path.length === 0) { - return ""; + /** + * The Copy From URL operation copies a blob or an internet resource to a new blob. It will not return + * a response until the copy is complete. + * @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to + * 2 KB in length that specifies a page blob snapshot. The value should be URL-encoded as it would + * appear in a request URI. The source blob must either be public or must be authenticated via a shared + * access signature. + * @param options The options parameters. + */ + copyFromURL(copySource, options) { + return this.client.sendOperationRequest({ copySource, options }, copyFromURLOperationSpec); } - - return "/" + this._url.path.join("/"); - } - - set pathname(v) { - if (this._url.cannotBeABaseURL) { - return; + /** + * The Abort Copy From URL operation aborts a pending Copy From URL operation, and leaves a destination + * blob with zero length and full metadata. + * @param copyId The copy identifier provided in the x-ms-copy-id header of the original Copy Blob + * operation. + * @param options The options parameters. + */ + abortCopyFromURL(copyId, options) { + return this.client.sendOperationRequest({ copyId, options }, abortCopyFromURLOperationSpec); } - - this._url.path = []; - usm.basicURLParse(v, { url: this._url, stateOverride: "path start" }); - } - - get search() { - if (this._url.query === null || this._url.query === "") { - return ""; + /** + * The Set Tier operation sets the tier on a blob. The operation is allowed on a page blob in a premium + * storage account and on a block blob in a blob storage account (locally redundant storage only). A + * premium page blob's tier determines the allowed size, IOPS, and bandwidth of the blob. A block + * blob's tier determines Hot/Cool/Archive storage type. This operation does not update the blob's + * ETag. + * @param tier Indicates the tier to be set on the blob. + * @param options The options parameters. + */ + setTier(tier, options) { + return this.client.sendOperationRequest({ tier, options }, setTierOperationSpec); } - - return "?" + this._url.query; - } - - set search(v) { - // TODO: query stuff - - const url = this._url; - - if (v === "") { - url.query = null; - return; + /** + * Returns the sku name and account kind + * @param options The options parameters. + */ + getAccountInfo(options) { + return this.client.sendOperationRequest({ options }, getAccountInfoOperationSpec); } - - const input = v[0] === "?" ? v.substring(1) : v; - url.query = ""; - usm.basicURLParse(input, { url, stateOverride: "query" }); - } - - get hash() { - if (this._url.fragment === null || this._url.fragment === "") { - return ""; + /** + * The Query operation enables users to select/project on blob data by providing simple query + * expressions. + * @param options The options parameters. + */ + query(options) { + return this.client.sendOperationRequest({ options }, queryOperationSpec); } - - return "#" + this._url.fragment; - } - - set hash(v) { - if (v === "") { - this._url.fragment = null; - return; + /** + * The Get Tags operation enables users to get the tags associated with a blob. + * @param options The options parameters. + */ + getTags(options) { + return this.client.sendOperationRequest({ options }, getTagsOperationSpec); + } + /** + * The Set Tags operation enables users to set tags on a blob. + * @param options The options parameters. + */ + setTags(options) { + return this.client.sendOperationRequest({ options }, setTagsOperationSpec); } - - const input = v[0] === "#" ? v.substring(1) : v; - this._url.fragment = ""; - usm.basicURLParse(input, { url: this._url, stateOverride: "fragment" }); - } - - toJSON() { - return this.href; - } -}; - - -/***/ }), - -/***/ 653: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -"use strict"; - - -const conversions = __nccwpck_require__(5871); -const utils = __nccwpck_require__(276); -const Impl = __nccwpck_require__(8262); - -const impl = utils.implSymbol; - -function URL(url) { - if (!this || this[impl] || !(this instanceof URL)) { - throw new TypeError("Failed to construct 'URL': Please use the 'new' operator, this DOM object constructor cannot be called as a function."); - } - if (arguments.length < 1) { - throw new TypeError("Failed to construct 'URL': 1 argument required, but only " + arguments.length + " present."); - } - const args = []; - for (let i = 0; i < arguments.length && i < 2; ++i) { - args[i] = arguments[i]; - } - args[0] = conversions["USVString"](args[0]); - if (args[1] !== undefined) { - args[1] = conversions["USVString"](args[1]); - } - - module.exports.setup(this, args); } - -URL.prototype.toJSON = function toJSON() { - if (!this || !module.exports.is(this)) { - throw new TypeError("Illegal invocation"); - } - const args = []; - for (let i = 0; i < arguments.length && i < 0; ++i) { - args[i] = arguments[i]; - } - return this[impl].toJSON.apply(this[impl], args); +exports.BlobImpl = BlobImpl; +// Operation Specifications +const xmlSerializer = coreClient.createSerializer(Mappers, /* isXml */ true); +const downloadOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: { + type: { name: "Stream" }, + serializedName: "parsedResponse", + }, + headersMapper: Mappers.BlobDownloadHeaders, + }, + 206: { + bodyMapper: { + type: { name: "Stream" }, + serializedName: "parsedResponse", + }, + headersMapper: Mappers.BlobDownloadHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobDownloadExceptionHeaders, + }, + }, + queryParameters: [ + Parameters.timeoutInSeconds, + Parameters.snapshot, + Parameters.versionId, + ], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.leaseId, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.range, + Parameters.rangeGetContentMD5, + Parameters.rangeGetContentCRC64, + Parameters.encryptionKey, + Parameters.encryptionKeySha256, + Parameters.encryptionAlgorithm, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + ], + isXML: true, + serializer: xmlSerializer, }; -Object.defineProperty(URL.prototype, "href", { - get() { - return this[impl].href; - }, - set(V) { - V = conversions["USVString"](V); - this[impl].href = V; - }, - enumerable: true, - configurable: true -}); - -URL.prototype.toString = function () { - if (!this || !module.exports.is(this)) { - throw new TypeError("Illegal invocation"); - } - return this.href; +const getPropertiesOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "HEAD", + responses: { + 200: { + headersMapper: Mappers.BlobGetPropertiesHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobGetPropertiesExceptionHeaders, + }, + }, + queryParameters: [ + Parameters.timeoutInSeconds, + Parameters.snapshot, + Parameters.versionId, + ], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.leaseId, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.encryptionKey, + Parameters.encryptionKeySha256, + Parameters.encryptionAlgorithm, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + ], + isXML: true, + serializer: xmlSerializer, }; - -Object.defineProperty(URL.prototype, "origin", { - get() { - return this[impl].origin; - }, - enumerable: true, - configurable: true -}); - -Object.defineProperty(URL.prototype, "protocol", { - get() { - return this[impl].protocol; - }, - set(V) { - V = conversions["USVString"](V); - this[impl].protocol = V; - }, - enumerable: true, - configurable: true -}); - -Object.defineProperty(URL.prototype, "username", { - get() { - return this[impl].username; - }, - set(V) { - V = conversions["USVString"](V); - this[impl].username = V; - }, - enumerable: true, - configurable: true -}); - -Object.defineProperty(URL.prototype, "password", { - get() { - return this[impl].password; - }, - set(V) { - V = conversions["USVString"](V); - this[impl].password = V; - }, - enumerable: true, - configurable: true -}); - -Object.defineProperty(URL.prototype, "host", { - get() { - return this[impl].host; - }, - set(V) { - V = conversions["USVString"](V); - this[impl].host = V; - }, - enumerable: true, - configurable: true -}); - -Object.defineProperty(URL.prototype, "hostname", { - get() { - return this[impl].hostname; - }, - set(V) { - V = conversions["USVString"](V); - this[impl].hostname = V; - }, - enumerable: true, - configurable: true -}); - -Object.defineProperty(URL.prototype, "port", { - get() { - return this[impl].port; - }, - set(V) { - V = conversions["USVString"](V); - this[impl].port = V; - }, - enumerable: true, - configurable: true -}); - -Object.defineProperty(URL.prototype, "pathname", { - get() { - return this[impl].pathname; - }, - set(V) { - V = conversions["USVString"](V); - this[impl].pathname = V; - }, - enumerable: true, - configurable: true -}); - -Object.defineProperty(URL.prototype, "search", { - get() { - return this[impl].search; - }, - set(V) { - V = conversions["USVString"](V); - this[impl].search = V; - }, - enumerable: true, - configurable: true -}); - -Object.defineProperty(URL.prototype, "hash", { - get() { - return this[impl].hash; - }, - set(V) { - V = conversions["USVString"](V); - this[impl].hash = V; - }, - enumerable: true, - configurable: true -}); - - -module.exports = { - is(obj) { - return !!obj && obj[impl] instanceof Impl.implementation; - }, - create(constructorArgs, privateData) { - let obj = Object.create(URL.prototype); - this.setup(obj, constructorArgs, privateData); - return obj; - }, - setup(obj, constructorArgs, privateData) { - if (!privateData) privateData = {}; - privateData.wrapper = obj; - - obj[impl] = new Impl.implementation(constructorArgs, privateData); - obj[impl][utils.wrapperSymbol] = obj; - }, - interface: URL, - expose: { - Window: { URL: URL }, - Worker: { URL: URL } - } +const deleteOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "DELETE", + responses: { + 202: { + headersMapper: Mappers.BlobDeleteHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobDeleteExceptionHeaders, + }, + }, + queryParameters: [ + Parameters.timeoutInSeconds, + Parameters.snapshot, + Parameters.versionId, + Parameters.blobDeleteType, + ], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.leaseId, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + Parameters.deleteSnapshots, + ], + isXML: true, + serializer: xmlSerializer, }; - - - -/***/ }), - -/***/ 629: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - -"use strict"; - - -exports.URL = __nccwpck_require__(653)["interface"]; -exports.serializeURL = __nccwpck_require__(33).serializeURL; -exports.serializeURLOrigin = __nccwpck_require__(33).serializeURLOrigin; -exports.basicURLParse = __nccwpck_require__(33).basicURLParse; -exports.setTheUsername = __nccwpck_require__(33).setTheUsername; -exports.setThePassword = __nccwpck_require__(33).setThePassword; -exports.serializeHost = __nccwpck_require__(33).serializeHost; -exports.serializeInteger = __nccwpck_require__(33).serializeInteger; -exports.parseURL = __nccwpck_require__(33).parseURL; - - -/***/ }), - -/***/ 33: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -"use strict"; - -const punycode = __nccwpck_require__(5477); -const tr46 = __nccwpck_require__(2299); - -const specialSchemes = { - ftp: 21, - file: null, - gopher: 70, - http: 80, - https: 443, - ws: 80, - wss: 443 -}; - -const failure = Symbol("failure"); - -function countSymbols(str) { - return punycode.ucs2.decode(str).length; -} - -function at(input, idx) { - const c = input[idx]; - return isNaN(c) ? undefined : String.fromCodePoint(c); -} - -function isASCIIDigit(c) { - return c >= 0x30 && c <= 0x39; -} - -function isASCIIAlpha(c) { - return (c >= 0x41 && c <= 0x5A) || (c >= 0x61 && c <= 0x7A); -} - -function isASCIIAlphanumeric(c) { - return isASCIIAlpha(c) || isASCIIDigit(c); -} - -function isASCIIHex(c) { - return isASCIIDigit(c) || (c >= 0x41 && c <= 0x46) || (c >= 0x61 && c <= 0x66); -} - -function isSingleDot(buffer) { - return buffer === "." || buffer.toLowerCase() === "%2e"; -} - -function isDoubleDot(buffer) { - buffer = buffer.toLowerCase(); - return buffer === ".." || buffer === "%2e." || buffer === ".%2e" || buffer === "%2e%2e"; -} - -function isWindowsDriveLetterCodePoints(cp1, cp2) { - return isASCIIAlpha(cp1) && (cp2 === 58 || cp2 === 124); -} - -function isWindowsDriveLetterString(string) { - return string.length === 2 && isASCIIAlpha(string.codePointAt(0)) && (string[1] === ":" || string[1] === "|"); -} - -function isNormalizedWindowsDriveLetterString(string) { - return string.length === 2 && isASCIIAlpha(string.codePointAt(0)) && string[1] === ":"; -} - -function containsForbiddenHostCodePoint(string) { - return string.search(/\u0000|\u0009|\u000A|\u000D|\u0020|#|%|\/|:|\?|@|\[|\\|\]/) !== -1; -} - -function containsForbiddenHostCodePointExcludingPercent(string) { - return string.search(/\u0000|\u0009|\u000A|\u000D|\u0020|#|\/|:|\?|@|\[|\\|\]/) !== -1; -} - -function isSpecialScheme(scheme) { - return specialSchemes[scheme] !== undefined; -} - -function isSpecial(url) { - return isSpecialScheme(url.scheme); -} - -function defaultPort(scheme) { - return specialSchemes[scheme]; -} - -function percentEncode(c) { - let hex = c.toString(16).toUpperCase(); - if (hex.length === 1) { - hex = "0" + hex; - } - - return "%" + hex; -} - -function utf8PercentEncode(c) { - const buf = new Buffer(c); - - let str = ""; - - for (let i = 0; i < buf.length; ++i) { - str += percentEncode(buf[i]); - } - - return str; -} - -function utf8PercentDecode(str) { - const input = new Buffer(str); - const output = []; - for (let i = 0; i < input.length; ++i) { - if (input[i] !== 37) { - output.push(input[i]); - } else if (input[i] === 37 && isASCIIHex(input[i + 1]) && isASCIIHex(input[i + 2])) { - output.push(parseInt(input.slice(i + 1, i + 3).toString(), 16)); - i += 2; - } else { - output.push(input[i]); - } - } - return new Buffer(output).toString(); -} - -function isC0ControlPercentEncode(c) { - return c <= 0x1F || c > 0x7E; -} - -const extraPathPercentEncodeSet = new Set([32, 34, 35, 60, 62, 63, 96, 123, 125]); -function isPathPercentEncode(c) { - return isC0ControlPercentEncode(c) || extraPathPercentEncodeSet.has(c); -} - -const extraUserinfoPercentEncodeSet = - new Set([47, 58, 59, 61, 64, 91, 92, 93, 94, 124]); -function isUserinfoPercentEncode(c) { - return isPathPercentEncode(c) || extraUserinfoPercentEncodeSet.has(c); -} - -function percentEncodeChar(c, encodeSetPredicate) { - const cStr = String.fromCodePoint(c); - - if (encodeSetPredicate(c)) { - return utf8PercentEncode(cStr); - } - - return cStr; -} - -function parseIPv4Number(input) { - let R = 10; - - if (input.length >= 2 && input.charAt(0) === "0" && input.charAt(1).toLowerCase() === "x") { - input = input.substring(2); - R = 16; - } else if (input.length >= 2 && input.charAt(0) === "0") { - input = input.substring(1); - R = 8; - } - - if (input === "") { - return 0; - } - - const regex = R === 10 ? /[^0-9]/ : (R === 16 ? /[^0-9A-Fa-f]/ : /[^0-7]/); - if (regex.test(input)) { - return failure; - } - - return parseInt(input, R); -} - -function parseIPv4(input) { - const parts = input.split("."); - if (parts[parts.length - 1] === "") { - if (parts.length > 1) { - parts.pop(); - } - } - - if (parts.length > 4) { - return input; - } - - const numbers = []; - for (const part of parts) { - if (part === "") { - return input; - } - const n = parseIPv4Number(part); - if (n === failure) { - return input; - } - - numbers.push(n); - } - - for (let i = 0; i < numbers.length - 1; ++i) { - if (numbers[i] > 255) { - return failure; - } - } - if (numbers[numbers.length - 1] >= Math.pow(256, 5 - numbers.length)) { - return failure; - } - - let ipv4 = numbers.pop(); - let counter = 0; - - for (const n of numbers) { - ipv4 += n * Math.pow(256, 3 - counter); - ++counter; - } - - return ipv4; -} - -function serializeIPv4(address) { - let output = ""; - let n = address; - - for (let i = 1; i <= 4; ++i) { - output = String(n % 256) + output; - if (i !== 4) { - output = "." + output; - } - n = Math.floor(n / 256); - } - - return output; -} - -function parseIPv6(input) { - const address = [0, 0, 0, 0, 0, 0, 0, 0]; - let pieceIndex = 0; - let compress = null; - let pointer = 0; - - input = punycode.ucs2.decode(input); - - if (input[pointer] === 58) { - if (input[pointer + 1] !== 58) { - return failure; - } - - pointer += 2; - ++pieceIndex; - compress = pieceIndex; - } - - while (pointer < input.length) { - if (pieceIndex === 8) { - return failure; - } - - if (input[pointer] === 58) { - if (compress !== null) { - return failure; - } - ++pointer; - ++pieceIndex; - compress = pieceIndex; - continue; - } - - let value = 0; - let length = 0; - - while (length < 4 && isASCIIHex(input[pointer])) { - value = value * 0x10 + parseInt(at(input, pointer), 16); - ++pointer; - ++length; - } - - if (input[pointer] === 46) { - if (length === 0) { - return failure; - } - - pointer -= length; - - if (pieceIndex > 6) { - return failure; - } - - let numbersSeen = 0; - - while (input[pointer] !== undefined) { - let ipv4Piece = null; - - if (numbersSeen > 0) { - if (input[pointer] === 46 && numbersSeen < 4) { - ++pointer; - } else { - return failure; - } - } - - if (!isASCIIDigit(input[pointer])) { - return failure; - } - - while (isASCIIDigit(input[pointer])) { - const number = parseInt(at(input, pointer)); - if (ipv4Piece === null) { - ipv4Piece = number; - } else if (ipv4Piece === 0) { - return failure; - } else { - ipv4Piece = ipv4Piece * 10 + number; - } - if (ipv4Piece > 255) { - return failure; - } - ++pointer; - } - - address[pieceIndex] = address[pieceIndex] * 0x100 + ipv4Piece; - - ++numbersSeen; - - if (numbersSeen === 2 || numbersSeen === 4) { - ++pieceIndex; - } - } - - if (numbersSeen !== 4) { - return failure; - } - - break; - } else if (input[pointer] === 58) { - ++pointer; - if (input[pointer] === undefined) { - return failure; - } - } else if (input[pointer] !== undefined) { - return failure; - } - - address[pieceIndex] = value; - ++pieceIndex; - } - - if (compress !== null) { - let swaps = pieceIndex - compress; - pieceIndex = 7; - while (pieceIndex !== 0 && swaps > 0) { - const temp = address[compress + swaps - 1]; - address[compress + swaps - 1] = address[pieceIndex]; - address[pieceIndex] = temp; - --pieceIndex; - --swaps; - } - } else if (compress === null && pieceIndex !== 8) { - return failure; - } - - return address; -} - -function serializeIPv6(address) { - let output = ""; - const seqResult = findLongestZeroSequence(address); - const compress = seqResult.idx; - let ignore0 = false; - - for (let pieceIndex = 0; pieceIndex <= 7; ++pieceIndex) { - if (ignore0 && address[pieceIndex] === 0) { - continue; - } else if (ignore0) { - ignore0 = false; - } - - if (compress === pieceIndex) { - const separator = pieceIndex === 0 ? "::" : ":"; - output += separator; - ignore0 = true; - continue; - } - - output += address[pieceIndex].toString(16); - - if (pieceIndex !== 7) { - output += ":"; - } - } - - return output; -} - -function parseHost(input, isSpecialArg) { - if (input[0] === "[") { - if (input[input.length - 1] !== "]") { - return failure; - } - - return parseIPv6(input.substring(1, input.length - 1)); - } - - if (!isSpecialArg) { - return parseOpaqueHost(input); - } - - const domain = utf8PercentDecode(input); - const asciiDomain = tr46.toASCII(domain, false, tr46.PROCESSING_OPTIONS.NONTRANSITIONAL, false); - if (asciiDomain === null) { - return failure; - } - - if (containsForbiddenHostCodePoint(asciiDomain)) { - return failure; - } - - const ipv4Host = parseIPv4(asciiDomain); - if (typeof ipv4Host === "number" || ipv4Host === failure) { - return ipv4Host; - } - - return asciiDomain; -} - -function parseOpaqueHost(input) { - if (containsForbiddenHostCodePointExcludingPercent(input)) { - return failure; - } - - let output = ""; - const decoded = punycode.ucs2.decode(input); - for (let i = 0; i < decoded.length; ++i) { - output += percentEncodeChar(decoded[i], isC0ControlPercentEncode); - } - return output; -} - -function findLongestZeroSequence(arr) { - let maxIdx = null; - let maxLen = 1; // only find elements > 1 - let currStart = null; - let currLen = 0; - - for (let i = 0; i < arr.length; ++i) { - if (arr[i] !== 0) { - if (currLen > maxLen) { - maxIdx = currStart; - maxLen = currLen; - } - - currStart = null; - currLen = 0; - } else { - if (currStart === null) { - currStart = i; - } - ++currLen; - } - } - - // if trailing zeros - if (currLen > maxLen) { - maxIdx = currStart; - maxLen = currLen; - } - - return { - idx: maxIdx, - len: maxLen - }; -} - -function serializeHost(host) { - if (typeof host === "number") { - return serializeIPv4(host); - } - - // IPv6 serializer - if (host instanceof Array) { - return "[" + serializeIPv6(host) + "]"; - } - - return host; -} - -function trimControlChars(url) { - return url.replace(/^[\u0000-\u001F\u0020]+|[\u0000-\u001F\u0020]+$/g, ""); -} - -function trimTabAndNewline(url) { - return url.replace(/\u0009|\u000A|\u000D/g, ""); -} - -function shortenPath(url) { - const path = url.path; - if (path.length === 0) { - return; - } - if (url.scheme === "file" && path.length === 1 && isNormalizedWindowsDriveLetter(path[0])) { - return; - } - - path.pop(); -} - -function includesCredentials(url) { - return url.username !== "" || url.password !== ""; -} - -function cannotHaveAUsernamePasswordPort(url) { - return url.host === null || url.host === "" || url.cannotBeABaseURL || url.scheme === "file"; -} - -function isNormalizedWindowsDriveLetter(string) { - return /^[A-Za-z]:$/.test(string); -} - -function URLStateMachine(input, base, encodingOverride, url, stateOverride) { - this.pointer = 0; - this.input = input; - this.base = base || null; - this.encodingOverride = encodingOverride || "utf-8"; - this.stateOverride = stateOverride; - this.url = url; - this.failure = false; - this.parseError = false; - - if (!this.url) { - this.url = { - scheme: "", - username: "", - password: "", - host: null, - port: null, - path: [], - query: null, - fragment: null, - - cannotBeABaseURL: false - }; - - const res = trimControlChars(this.input); - if (res !== this.input) { - this.parseError = true; - } - this.input = res; - } - - const res = trimTabAndNewline(this.input); - if (res !== this.input) { - this.parseError = true; - } - this.input = res; - - this.state = stateOverride || "scheme start"; - - this.buffer = ""; - this.atFlag = false; - this.arrFlag = false; - this.passwordTokenSeenFlag = false; - - this.input = punycode.ucs2.decode(this.input); - - for (; this.pointer <= this.input.length; ++this.pointer) { - const c = this.input[this.pointer]; - const cStr = isNaN(c) ? undefined : String.fromCodePoint(c); - - // exec state machine - const ret = this["parse " + this.state](c, cStr); - if (!ret) { - break; // terminate algorithm - } else if (ret === failure) { - this.failure = true; - break; - } - } -} - -URLStateMachine.prototype["parse scheme start"] = function parseSchemeStart(c, cStr) { - if (isASCIIAlpha(c)) { - this.buffer += cStr.toLowerCase(); - this.state = "scheme"; - } else if (!this.stateOverride) { - this.state = "no scheme"; - --this.pointer; - } else { - this.parseError = true; - return failure; - } - - return true; -}; - -URLStateMachine.prototype["parse scheme"] = function parseScheme(c, cStr) { - if (isASCIIAlphanumeric(c) || c === 43 || c === 45 || c === 46) { - this.buffer += cStr.toLowerCase(); - } else if (c === 58) { - if (this.stateOverride) { - if (isSpecial(this.url) && !isSpecialScheme(this.buffer)) { - return false; - } - - if (!isSpecial(this.url) && isSpecialScheme(this.buffer)) { - return false; - } - - if ((includesCredentials(this.url) || this.url.port !== null) && this.buffer === "file") { - return false; - } - - if (this.url.scheme === "file" && (this.url.host === "" || this.url.host === null)) { - return false; - } - } - this.url.scheme = this.buffer; - this.buffer = ""; - if (this.stateOverride) { - return false; - } - if (this.url.scheme === "file") { - if (this.input[this.pointer + 1] !== 47 || this.input[this.pointer + 2] !== 47) { - this.parseError = true; - } - this.state = "file"; - } else if (isSpecial(this.url) && this.base !== null && this.base.scheme === this.url.scheme) { - this.state = "special relative or authority"; - } else if (isSpecial(this.url)) { - this.state = "special authority slashes"; - } else if (this.input[this.pointer + 1] === 47) { - this.state = "path or authority"; - ++this.pointer; - } else { - this.url.cannotBeABaseURL = true; - this.url.path.push(""); - this.state = "cannot-be-a-base-URL path"; - } - } else if (!this.stateOverride) { - this.buffer = ""; - this.state = "no scheme"; - this.pointer = -1; - } else { - this.parseError = true; - return failure; - } - - return true; -}; - -URLStateMachine.prototype["parse no scheme"] = function parseNoScheme(c) { - if (this.base === null || (this.base.cannotBeABaseURL && c !== 35)) { - return failure; - } else if (this.base.cannotBeABaseURL && c === 35) { - this.url.scheme = this.base.scheme; - this.url.path = this.base.path.slice(); - this.url.query = this.base.query; - this.url.fragment = ""; - this.url.cannotBeABaseURL = true; - this.state = "fragment"; - } else if (this.base.scheme === "file") { - this.state = "file"; - --this.pointer; - } else { - this.state = "relative"; - --this.pointer; - } - - return true; -}; - -URLStateMachine.prototype["parse special relative or authority"] = function parseSpecialRelativeOrAuthority(c) { - if (c === 47 && this.input[this.pointer + 1] === 47) { - this.state = "special authority ignore slashes"; - ++this.pointer; - } else { - this.parseError = true; - this.state = "relative"; - --this.pointer; - } - - return true; -}; - -URLStateMachine.prototype["parse path or authority"] = function parsePathOrAuthority(c) { - if (c === 47) { - this.state = "authority"; - } else { - this.state = "path"; - --this.pointer; - } - - return true; -}; - -URLStateMachine.prototype["parse relative"] = function parseRelative(c) { - this.url.scheme = this.base.scheme; - if (isNaN(c)) { - this.url.username = this.base.username; - this.url.password = this.base.password; - this.url.host = this.base.host; - this.url.port = this.base.port; - this.url.path = this.base.path.slice(); - this.url.query = this.base.query; - } else if (c === 47) { - this.state = "relative slash"; - } else if (c === 63) { - this.url.username = this.base.username; - this.url.password = this.base.password; - this.url.host = this.base.host; - this.url.port = this.base.port; - this.url.path = this.base.path.slice(); - this.url.query = ""; - this.state = "query"; - } else if (c === 35) { - this.url.username = this.base.username; - this.url.password = this.base.password; - this.url.host = this.base.host; - this.url.port = this.base.port; - this.url.path = this.base.path.slice(); - this.url.query = this.base.query; - this.url.fragment = ""; - this.state = "fragment"; - } else if (isSpecial(this.url) && c === 92) { - this.parseError = true; - this.state = "relative slash"; - } else { - this.url.username = this.base.username; - this.url.password = this.base.password; - this.url.host = this.base.host; - this.url.port = this.base.port; - this.url.path = this.base.path.slice(0, this.base.path.length - 1); - - this.state = "path"; - --this.pointer; - } - - return true; -}; - -URLStateMachine.prototype["parse relative slash"] = function parseRelativeSlash(c) { - if (isSpecial(this.url) && (c === 47 || c === 92)) { - if (c === 92) { - this.parseError = true; - } - this.state = "special authority ignore slashes"; - } else if (c === 47) { - this.state = "authority"; - } else { - this.url.username = this.base.username; - this.url.password = this.base.password; - this.url.host = this.base.host; - this.url.port = this.base.port; - this.state = "path"; - --this.pointer; - } - - return true; -}; - -URLStateMachine.prototype["parse special authority slashes"] = function parseSpecialAuthoritySlashes(c) { - if (c === 47 && this.input[this.pointer + 1] === 47) { - this.state = "special authority ignore slashes"; - ++this.pointer; - } else { - this.parseError = true; - this.state = "special authority ignore slashes"; - --this.pointer; - } - - return true; -}; - -URLStateMachine.prototype["parse special authority ignore slashes"] = function parseSpecialAuthorityIgnoreSlashes(c) { - if (c !== 47 && c !== 92) { - this.state = "authority"; - --this.pointer; - } else { - this.parseError = true; - } - - return true; -}; - -URLStateMachine.prototype["parse authority"] = function parseAuthority(c, cStr) { - if (c === 64) { - this.parseError = true; - if (this.atFlag) { - this.buffer = "%40" + this.buffer; - } - this.atFlag = true; - - // careful, this is based on buffer and has its own pointer (this.pointer != pointer) and inner chars - const len = countSymbols(this.buffer); - for (let pointer = 0; pointer < len; ++pointer) { - const codePoint = this.buffer.codePointAt(pointer); - - if (codePoint === 58 && !this.passwordTokenSeenFlag) { - this.passwordTokenSeenFlag = true; - continue; - } - const encodedCodePoints = percentEncodeChar(codePoint, isUserinfoPercentEncode); - if (this.passwordTokenSeenFlag) { - this.url.password += encodedCodePoints; - } else { - this.url.username += encodedCodePoints; - } - } - this.buffer = ""; - } else if (isNaN(c) || c === 47 || c === 63 || c === 35 || - (isSpecial(this.url) && c === 92)) { - if (this.atFlag && this.buffer === "") { - this.parseError = true; - return failure; - } - this.pointer -= countSymbols(this.buffer) + 1; - this.buffer = ""; - this.state = "host"; - } else { - this.buffer += cStr; - } - - return true; -}; - -URLStateMachine.prototype["parse hostname"] = -URLStateMachine.prototype["parse host"] = function parseHostName(c, cStr) { - if (this.stateOverride && this.url.scheme === "file") { - --this.pointer; - this.state = "file host"; - } else if (c === 58 && !this.arrFlag) { - if (this.buffer === "") { - this.parseError = true; - return failure; - } - - const host = parseHost(this.buffer, isSpecial(this.url)); - if (host === failure) { - return failure; - } - - this.url.host = host; - this.buffer = ""; - this.state = "port"; - if (this.stateOverride === "hostname") { - return false; - } - } else if (isNaN(c) || c === 47 || c === 63 || c === 35 || - (isSpecial(this.url) && c === 92)) { - --this.pointer; - if (isSpecial(this.url) && this.buffer === "") { - this.parseError = true; - return failure; - } else if (this.stateOverride && this.buffer === "" && - (includesCredentials(this.url) || this.url.port !== null)) { - this.parseError = true; - return false; - } - - const host = parseHost(this.buffer, isSpecial(this.url)); - if (host === failure) { - return failure; - } - - this.url.host = host; - this.buffer = ""; - this.state = "path start"; - if (this.stateOverride) { - return false; - } - } else { - if (c === 91) { - this.arrFlag = true; - } else if (c === 93) { - this.arrFlag = false; - } - this.buffer += cStr; - } - - return true; -}; - -URLStateMachine.prototype["parse port"] = function parsePort(c, cStr) { - if (isASCIIDigit(c)) { - this.buffer += cStr; - } else if (isNaN(c) || c === 47 || c === 63 || c === 35 || - (isSpecial(this.url) && c === 92) || - this.stateOverride) { - if (this.buffer !== "") { - const port = parseInt(this.buffer); - if (port > Math.pow(2, 16) - 1) { - this.parseError = true; - return failure; - } - this.url.port = port === defaultPort(this.url.scheme) ? null : port; - this.buffer = ""; - } - if (this.stateOverride) { - return false; - } - this.state = "path start"; - --this.pointer; - } else { - this.parseError = true; - return failure; - } - - return true; -}; - -const fileOtherwiseCodePoints = new Set([47, 92, 63, 35]); - -URLStateMachine.prototype["parse file"] = function parseFile(c) { - this.url.scheme = "file"; - - if (c === 47 || c === 92) { - if (c === 92) { - this.parseError = true; - } - this.state = "file slash"; - } else if (this.base !== null && this.base.scheme === "file") { - if (isNaN(c)) { - this.url.host = this.base.host; - this.url.path = this.base.path.slice(); - this.url.query = this.base.query; - } else if (c === 63) { - this.url.host = this.base.host; - this.url.path = this.base.path.slice(); - this.url.query = ""; - this.state = "query"; - } else if (c === 35) { - this.url.host = this.base.host; - this.url.path = this.base.path.slice(); - this.url.query = this.base.query; - this.url.fragment = ""; - this.state = "fragment"; - } else { - if (this.input.length - this.pointer - 1 === 0 || // remaining consists of 0 code points - !isWindowsDriveLetterCodePoints(c, this.input[this.pointer + 1]) || - (this.input.length - this.pointer - 1 >= 2 && // remaining has at least 2 code points - !fileOtherwiseCodePoints.has(this.input[this.pointer + 2]))) { - this.url.host = this.base.host; - this.url.path = this.base.path.slice(); - shortenPath(this.url); - } else { - this.parseError = true; - } - - this.state = "path"; - --this.pointer; - } - } else { - this.state = "path"; - --this.pointer; - } - - return true; -}; - -URLStateMachine.prototype["parse file slash"] = function parseFileSlash(c) { - if (c === 47 || c === 92) { - if (c === 92) { - this.parseError = true; - } - this.state = "file host"; - } else { - if (this.base !== null && this.base.scheme === "file") { - if (isNormalizedWindowsDriveLetterString(this.base.path[0])) { - this.url.path.push(this.base.path[0]); - } else { - this.url.host = this.base.host; - } - } - this.state = "path"; - --this.pointer; - } - - return true; -}; - -URLStateMachine.prototype["parse file host"] = function parseFileHost(c, cStr) { - if (isNaN(c) || c === 47 || c === 92 || c === 63 || c === 35) { - --this.pointer; - if (!this.stateOverride && isWindowsDriveLetterString(this.buffer)) { - this.parseError = true; - this.state = "path"; - } else if (this.buffer === "") { - this.url.host = ""; - if (this.stateOverride) { - return false; - } - this.state = "path start"; - } else { - let host = parseHost(this.buffer, isSpecial(this.url)); - if (host === failure) { - return failure; - } - if (host === "localhost") { - host = ""; - } - this.url.host = host; - - if (this.stateOverride) { - return false; - } - - this.buffer = ""; - this.state = "path start"; - } - } else { - this.buffer += cStr; - } - - return true; -}; - -URLStateMachine.prototype["parse path start"] = function parsePathStart(c) { - if (isSpecial(this.url)) { - if (c === 92) { - this.parseError = true; - } - this.state = "path"; - - if (c !== 47 && c !== 92) { - --this.pointer; - } - } else if (!this.stateOverride && c === 63) { - this.url.query = ""; - this.state = "query"; - } else if (!this.stateOverride && c === 35) { - this.url.fragment = ""; - this.state = "fragment"; - } else if (c !== undefined) { - this.state = "path"; - if (c !== 47) { - --this.pointer; - } - } - - return true; -}; - -URLStateMachine.prototype["parse path"] = function parsePath(c) { - if (isNaN(c) || c === 47 || (isSpecial(this.url) && c === 92) || - (!this.stateOverride && (c === 63 || c === 35))) { - if (isSpecial(this.url) && c === 92) { - this.parseError = true; - } - - if (isDoubleDot(this.buffer)) { - shortenPath(this.url); - if (c !== 47 && !(isSpecial(this.url) && c === 92)) { - this.url.path.push(""); - } - } else if (isSingleDot(this.buffer) && c !== 47 && - !(isSpecial(this.url) && c === 92)) { - this.url.path.push(""); - } else if (!isSingleDot(this.buffer)) { - if (this.url.scheme === "file" && this.url.path.length === 0 && isWindowsDriveLetterString(this.buffer)) { - if (this.url.host !== "" && this.url.host !== null) { - this.parseError = true; - this.url.host = ""; - } - this.buffer = this.buffer[0] + ":"; - } - this.url.path.push(this.buffer); - } - this.buffer = ""; - if (this.url.scheme === "file" && (c === undefined || c === 63 || c === 35)) { - while (this.url.path.length > 1 && this.url.path[0] === "") { - this.parseError = true; - this.url.path.shift(); - } - } - if (c === 63) { - this.url.query = ""; - this.state = "query"; - } - if (c === 35) { - this.url.fragment = ""; - this.state = "fragment"; - } - } else { - // TODO: If c is not a URL code point and not "%", parse error. - - if (c === 37 && - (!isASCIIHex(this.input[this.pointer + 1]) || - !isASCIIHex(this.input[this.pointer + 2]))) { - this.parseError = true; - } - - this.buffer += percentEncodeChar(c, isPathPercentEncode); - } - - return true; -}; - -URLStateMachine.prototype["parse cannot-be-a-base-URL path"] = function parseCannotBeABaseURLPath(c) { - if (c === 63) { - this.url.query = ""; - this.state = "query"; - } else if (c === 35) { - this.url.fragment = ""; - this.state = "fragment"; - } else { - // TODO: Add: not a URL code point - if (!isNaN(c) && c !== 37) { - this.parseError = true; - } - - if (c === 37 && - (!isASCIIHex(this.input[this.pointer + 1]) || - !isASCIIHex(this.input[this.pointer + 2]))) { - this.parseError = true; - } - - if (!isNaN(c)) { - this.url.path[0] = this.url.path[0] + percentEncodeChar(c, isC0ControlPercentEncode); - } - } - - return true; -}; - -URLStateMachine.prototype["parse query"] = function parseQuery(c, cStr) { - if (isNaN(c) || (!this.stateOverride && c === 35)) { - if (!isSpecial(this.url) || this.url.scheme === "ws" || this.url.scheme === "wss") { - this.encodingOverride = "utf-8"; - } - - const buffer = new Buffer(this.buffer); // TODO: Use encoding override instead - for (let i = 0; i < buffer.length; ++i) { - if (buffer[i] < 0x21 || buffer[i] > 0x7E || buffer[i] === 0x22 || buffer[i] === 0x23 || - buffer[i] === 0x3C || buffer[i] === 0x3E) { - this.url.query += percentEncode(buffer[i]); - } else { - this.url.query += String.fromCodePoint(buffer[i]); - } - } - - this.buffer = ""; - if (c === 35) { - this.url.fragment = ""; - this.state = "fragment"; - } - } else { - // TODO: If c is not a URL code point and not "%", parse error. - if (c === 37 && - (!isASCIIHex(this.input[this.pointer + 1]) || - !isASCIIHex(this.input[this.pointer + 2]))) { - this.parseError = true; - } - - this.buffer += cStr; - } - - return true; -}; - -URLStateMachine.prototype["parse fragment"] = function parseFragment(c) { - if (isNaN(c)) { // do nothing - } else if (c === 0x0) { - this.parseError = true; - } else { - // TODO: If c is not a URL code point and not "%", parse error. - if (c === 37 && - (!isASCIIHex(this.input[this.pointer + 1]) || - !isASCIIHex(this.input[this.pointer + 2]))) { - this.parseError = true; - } - - this.url.fragment += percentEncodeChar(c, isC0ControlPercentEncode); - } - - return true; -}; - -function serializeURL(url, excludeFragment) { - let output = url.scheme + ":"; - if (url.host !== null) { - output += "//"; - - if (url.username !== "" || url.password !== "") { - output += url.username; - if (url.password !== "") { - output += ":" + url.password; - } - output += "@"; - } - - output += serializeHost(url.host); - - if (url.port !== null) { - output += ":" + url.port; - } - } else if (url.host === null && url.scheme === "file") { - output += "//"; - } - - if (url.cannotBeABaseURL) { - output += url.path[0]; - } else { - for (const string of url.path) { - output += "/" + string; - } - } - - if (url.query !== null) { - output += "?" + url.query; - } - - if (!excludeFragment && url.fragment !== null) { - output += "#" + url.fragment; - } - - return output; -} - -function serializeOrigin(tuple) { - let result = tuple.scheme + "://"; - result += serializeHost(tuple.host); - - if (tuple.port !== null) { - result += ":" + tuple.port; - } - - return result; -} - -module.exports.serializeURL = serializeURL; - -module.exports.serializeURLOrigin = function (url) { - // https://url.spec.whatwg.org/#concept-url-origin - switch (url.scheme) { - case "blob": - try { - return module.exports.serializeURLOrigin(module.exports.parseURL(url.path[0])); - } catch (e) { - // serializing an opaque origin returns "null" - return "null"; - } - case "ftp": - case "gopher": - case "http": - case "https": - case "ws": - case "wss": - return serializeOrigin({ - scheme: url.scheme, - host: url.host, - port: url.port - }); - case "file": - // spec says "exercise to the reader", chrome says "file://" - return "file://"; - default: - // serializing an opaque origin returns "null" - return "null"; - } -}; - -module.exports.basicURLParse = function (input, options) { - if (options === undefined) { - options = {}; - } - - const usm = new URLStateMachine(input, options.baseURL, options.encodingOverride, options.url, options.stateOverride); - if (usm.failure) { - return "failure"; - } - - return usm.url; -}; - -module.exports.setTheUsername = function (url, username) { - url.username = ""; - const decoded = punycode.ucs2.decode(username); - for (let i = 0; i < decoded.length; ++i) { - url.username += percentEncodeChar(decoded[i], isUserinfoPercentEncode); - } -}; - -module.exports.setThePassword = function (url, password) { - url.password = ""; - const decoded = punycode.ucs2.decode(password); - for (let i = 0; i < decoded.length; ++i) { - url.password += percentEncodeChar(decoded[i], isUserinfoPercentEncode); - } -}; - -module.exports.serializeHost = serializeHost; - -module.exports.cannotHaveAUsernamePasswordPort = cannotHaveAUsernamePasswordPort; - -module.exports.serializeInteger = function (integer) { - return String(integer); -}; - -module.exports.parseURL = function (input, options) { - if (options === undefined) { - options = {}; - } - - // We don't handle blobs, so this just delegates: - return module.exports.basicURLParse(input, { baseURL: options.baseURL, encodingOverride: options.encodingOverride }); -}; - - -/***/ }), - -/***/ 276: -/***/ ((module) => { - -"use strict"; - - -module.exports.mixin = function mixin(target, source) { - const keys = Object.getOwnPropertyNames(source); - for (let i = 0; i < keys.length; ++i) { - Object.defineProperty(target, keys[i], Object.getOwnPropertyDescriptor(source, keys[i])); - } +const undeleteOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 200: { + headersMapper: Mappers.BlobUndeleteHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobUndeleteExceptionHeaders, + }, + }, + queryParameters: [Parameters.timeoutInSeconds, Parameters.comp8], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + ], + isXML: true, + serializer: xmlSerializer, }; - -module.exports.wrapperSymbol = Symbol("wrapper"); -module.exports.implSymbol = Symbol("impl"); - -module.exports.wrapperForImpl = function (impl) { - return impl[module.exports.wrapperSymbol]; +const setExpiryOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 200: { + headersMapper: Mappers.BlobSetExpiryHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobSetExpiryExceptionHeaders, + }, + }, + queryParameters: [Parameters.timeoutInSeconds, Parameters.comp11], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.expiryOptions, + Parameters.expiresOn, + ], + isXML: true, + serializer: xmlSerializer, }; - -module.exports.implForWrapper = function (wrapper) { - return wrapper[module.exports.implSymbol]; +const setHttpHeadersOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 200: { + headersMapper: Mappers.BlobSetHttpHeadersHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobSetHttpHeadersExceptionHeaders, + }, + }, + queryParameters: [Parameters.comp, Parameters.timeoutInSeconds], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.leaseId, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + Parameters.blobCacheControl, + Parameters.blobContentType, + Parameters.blobContentMD5, + Parameters.blobContentEncoding, + Parameters.blobContentLanguage, + Parameters.blobContentDisposition, + ], + isXML: true, + serializer: xmlSerializer, }; - - - -/***/ }), - -/***/ 9975: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - -"use strict"; -/*eslint no-var:0, prefer-arrow-callback: 0, object-shorthand: 0 */ - - - -var Punycode = __nccwpck_require__(5477); - - -var internals = {}; - - -// -// Read rules from file. -// -internals.rules = (__nccwpck_require__(3704).map)(function (rule) { - - return { - rule: rule, - suffix: rule.replace(/^(\*\.|\!)/, ''), - punySuffix: -1, - wildcard: rule.charAt(0) === '*', - exception: rule.charAt(0) === '!' - }; -}); - - -// -// Check is given string ends with `suffix`. -// -internals.endsWith = function (str, suffix) { - - return str.indexOf(suffix, str.length - suffix.length) !== -1; +const setImmutabilityPolicyOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 200: { + headersMapper: Mappers.BlobSetImmutabilityPolicyHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobSetImmutabilityPolicyExceptionHeaders, + }, + }, + queryParameters: [ + Parameters.timeoutInSeconds, + Parameters.snapshot, + Parameters.versionId, + Parameters.comp12, + ], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.ifUnmodifiedSince, + Parameters.immutabilityPolicyExpiry, + Parameters.immutabilityPolicyMode, + ], + isXML: true, + serializer: xmlSerializer, }; - - -// -// Find rule for a given domain. -// -internals.findRule = function (domain) { - - var punyDomain = Punycode.toASCII(domain); - return internals.rules.reduce(function (memo, rule) { - - if (rule.punySuffix === -1){ - rule.punySuffix = Punycode.toASCII(rule.suffix); - } - if (!internals.endsWith(punyDomain, '.' + rule.punySuffix) && punyDomain !== rule.punySuffix) { - return memo; - } - // This has been commented out as it never seems to run. This is because - // sub tlds always appear after their parents and we never find a shorter - // match. - //if (memo) { - // var memoSuffix = Punycode.toASCII(memo.suffix); - // if (memoSuffix.length >= punySuffix.length) { - // return memo; - // } - //} - return rule; - }, null); +const deleteImmutabilityPolicyOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "DELETE", + responses: { + 200: { + headersMapper: Mappers.BlobDeleteImmutabilityPolicyHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobDeleteImmutabilityPolicyExceptionHeaders, + }, + }, + queryParameters: [ + Parameters.timeoutInSeconds, + Parameters.snapshot, + Parameters.versionId, + Parameters.comp12, + ], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + ], + isXML: true, + serializer: xmlSerializer, }; - - -// -// Error codes and messages. -// -exports.errorCodes = { - DOMAIN_TOO_SHORT: 'Domain name too short.', - DOMAIN_TOO_LONG: 'Domain name too long. It should be no more than 255 chars.', - LABEL_STARTS_WITH_DASH: 'Domain name label can not start with a dash.', - LABEL_ENDS_WITH_DASH: 'Domain name label can not end with a dash.', - LABEL_TOO_LONG: 'Domain name label should be at most 63 chars long.', - LABEL_TOO_SHORT: 'Domain name label should be at least 1 character long.', - LABEL_INVALID_CHARS: 'Domain name label can only contain alphanumeric characters or dashes.' +const setLegalHoldOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 200: { + headersMapper: Mappers.BlobSetLegalHoldHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobSetLegalHoldExceptionHeaders, + }, + }, + queryParameters: [ + Parameters.timeoutInSeconds, + Parameters.snapshot, + Parameters.versionId, + Parameters.comp13, + ], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.legalHold, + ], + isXML: true, + serializer: xmlSerializer, +}; +const setMetadataOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 200: { + headersMapper: Mappers.BlobSetMetadataHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobSetMetadataExceptionHeaders, + }, + }, + queryParameters: [Parameters.timeoutInSeconds, Parameters.comp6], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.metadata, + Parameters.leaseId, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.encryptionKey, + Parameters.encryptionKeySha256, + Parameters.encryptionAlgorithm, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + Parameters.encryptionScope, + ], + isXML: true, + serializer: xmlSerializer, +}; +const acquireLeaseOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 201: { + headersMapper: Mappers.BlobAcquireLeaseHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobAcquireLeaseExceptionHeaders, + }, + }, + queryParameters: [Parameters.timeoutInSeconds, Parameters.comp10], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.action, + Parameters.duration, + Parameters.proposedLeaseId, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + ], + isXML: true, + serializer: xmlSerializer, +}; +const releaseLeaseOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 200: { + headersMapper: Mappers.BlobReleaseLeaseHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobReleaseLeaseExceptionHeaders, + }, + }, + queryParameters: [Parameters.timeoutInSeconds, Parameters.comp10], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.action1, + Parameters.leaseId1, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + ], + isXML: true, + serializer: xmlSerializer, +}; +const renewLeaseOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 200: { + headersMapper: Mappers.BlobRenewLeaseHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobRenewLeaseExceptionHeaders, + }, + }, + queryParameters: [Parameters.timeoutInSeconds, Parameters.comp10], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.leaseId1, + Parameters.action2, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + ], + isXML: true, + serializer: xmlSerializer, +}; +const changeLeaseOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 200: { + headersMapper: Mappers.BlobChangeLeaseHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobChangeLeaseExceptionHeaders, + }, + }, + queryParameters: [Parameters.timeoutInSeconds, Parameters.comp10], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.leaseId1, + Parameters.action4, + Parameters.proposedLeaseId1, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + ], + isXML: true, + serializer: xmlSerializer, +}; +const breakLeaseOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 202: { + headersMapper: Mappers.BlobBreakLeaseHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobBreakLeaseExceptionHeaders, + }, + }, + queryParameters: [Parameters.timeoutInSeconds, Parameters.comp10], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.action3, + Parameters.breakPeriod, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + ], + isXML: true, + serializer: xmlSerializer, }; - - -// -// Validate domain name and throw if not valid. -// -// From wikipedia: -// -// Hostnames are composed of series of labels concatenated with dots, as are all -// domain names. Each label must be between 1 and 63 characters long, and the -// entire hostname (including the delimiting dots) has a maximum of 255 chars. -// -// Allowed chars: -// -// * `a-z` -// * `0-9` -// * `-` but not as a starting or ending character -// * `.` as a separator for the textual portions of a domain name -// -// * http://en.wikipedia.org/wiki/Domain_name -// * http://en.wikipedia.org/wiki/Hostname -// -internals.validate = function (input) { - - // Before we can validate we need to take care of IDNs with unicode chars. - var ascii = Punycode.toASCII(input); - - if (ascii.length < 1) { - return 'DOMAIN_TOO_SHORT'; - } - if (ascii.length > 255) { - return 'DOMAIN_TOO_LONG'; - } - - // Check each part's length and allowed chars. - var labels = ascii.split('.'); - var label; - - for (var i = 0; i < labels.length; ++i) { - label = labels[i]; - if (!label.length) { - return 'LABEL_TOO_SHORT'; - } - if (label.length > 63) { - return 'LABEL_TOO_LONG'; - } - if (label.charAt(0) === '-') { - return 'LABEL_STARTS_WITH_DASH'; - } - if (label.charAt(label.length - 1) === '-') { - return 'LABEL_ENDS_WITH_DASH'; - } - if (!/^[a-z0-9\-]+$/.test(label)) { - return 'LABEL_INVALID_CHARS'; - } - } +const createSnapshotOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 201: { + headersMapper: Mappers.BlobCreateSnapshotHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobCreateSnapshotExceptionHeaders, + }, + }, + queryParameters: [Parameters.timeoutInSeconds, Parameters.comp14], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.metadata, + Parameters.leaseId, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.encryptionKey, + Parameters.encryptionKeySha256, + Parameters.encryptionAlgorithm, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + Parameters.encryptionScope, + ], + isXML: true, + serializer: xmlSerializer, }; - - -// -// Public API -// - - -// -// Parse domain. -// -exports.parse = function (input) { - - if (typeof input !== 'string') { - throw new TypeError('Domain name must be a string.'); - } - - // Force domain to lowercase. - var domain = input.slice(0).toLowerCase(); - - // Handle FQDN. - // TODO: Simply remove trailing dot? - if (domain.charAt(domain.length - 1) === '.') { - domain = domain.slice(0, domain.length - 1); - } - - // Validate and sanitise input. - var error = internals.validate(domain); - if (error) { - return { - input: input, - error: { - message: exports.errorCodes[error], - code: error - } - }; - } - - var parsed = { - input: input, - tld: null, - sld: null, - domain: null, - subdomain: null, - listed: false - }; - - var domainParts = domain.split('.'); - - // Non-Internet TLD - if (domainParts[domainParts.length - 1] === 'local') { - return parsed; - } - - var handlePunycode = function () { - - if (!/xn--/.test(domain)) { - return parsed; - } - if (parsed.domain) { - parsed.domain = Punycode.toASCII(parsed.domain); - } - if (parsed.subdomain) { - parsed.subdomain = Punycode.toASCII(parsed.subdomain); - } - return parsed; - }; - - var rule = internals.findRule(domain); - - // Unlisted tld. - if (!rule) { - if (domainParts.length < 2) { - return parsed; - } - parsed.tld = domainParts.pop(); - parsed.sld = domainParts.pop(); - parsed.domain = [parsed.sld, parsed.tld].join('.'); - if (domainParts.length) { - parsed.subdomain = domainParts.pop(); - } - return handlePunycode(); - } - - // At this point we know the public suffix is listed. - parsed.listed = true; - - var tldParts = rule.suffix.split('.'); - var privateParts = domainParts.slice(0, domainParts.length - tldParts.length); - - if (rule.exception) { - privateParts.push(tldParts.shift()); - } - - parsed.tld = tldParts.join('.'); - - if (!privateParts.length) { - return handlePunycode(); - } - - if (rule.wildcard) { - tldParts.unshift(privateParts.pop()); - parsed.tld = tldParts.join('.'); - } - - if (!privateParts.length) { - return handlePunycode(); - } - - parsed.sld = privateParts.pop(); - parsed.domain = [parsed.sld, parsed.tld].join('.'); - - if (privateParts.length) { - parsed.subdomain = privateParts.join('.'); - } - - return handlePunycode(); +const startCopyFromURLOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 202: { + headersMapper: Mappers.BlobStartCopyFromURLHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobStartCopyFromURLExceptionHeaders, + }, + }, + queryParameters: [Parameters.timeoutInSeconds], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.metadata, + Parameters.leaseId, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + Parameters.immutabilityPolicyExpiry, + Parameters.immutabilityPolicyMode, + Parameters.tier, + Parameters.rehydratePriority, + Parameters.sourceIfModifiedSince, + Parameters.sourceIfUnmodifiedSince, + Parameters.sourceIfMatch, + Parameters.sourceIfNoneMatch, + Parameters.sourceIfTags, + Parameters.copySource, + Parameters.blobTagsString, + Parameters.sealBlob, + Parameters.legalHold1, + ], + isXML: true, + serializer: xmlSerializer, }; - - -// -// Get domain. -// -exports.get = function (domain) { - - if (!domain) { - return null; - } - return exports.parse(domain).domain || null; +const copyFromURLOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 202: { + headersMapper: Mappers.BlobCopyFromURLHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobCopyFromURLExceptionHeaders, + }, + }, + queryParameters: [Parameters.timeoutInSeconds], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.metadata, + Parameters.leaseId, + Parameters.ifModifiedSince, + Parameters.ifUnmodifiedSince, + Parameters.ifMatch, + Parameters.ifNoneMatch, + Parameters.ifTags, + Parameters.immutabilityPolicyExpiry, + Parameters.immutabilityPolicyMode, + Parameters.encryptionScope, + Parameters.tier, + Parameters.sourceIfModifiedSince, + Parameters.sourceIfUnmodifiedSince, + Parameters.sourceIfMatch, + Parameters.sourceIfNoneMatch, + Parameters.copySource, + Parameters.blobTagsString, + Parameters.legalHold1, + Parameters.xMsRequiresSync, + Parameters.sourceContentMD5, + Parameters.copySourceAuthorization, + Parameters.copySourceTags, + Parameters.fileRequestIntent, + ], + isXML: true, + serializer: xmlSerializer, }; - - -// -// Check whether domain belongs to a known public suffix. -// -exports.isValid = function (domain) { - - var parsed = exports.parse(domain); - return Boolean(parsed.domain && parsed.listed); +const abortCopyFromURLOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 204: { + headersMapper: Mappers.BlobAbortCopyFromURLHeaders, + }, + default: { + bodyMapper: Mappers.StorageError, + headersMapper: Mappers.BlobAbortCopyFromURLExceptionHeaders, + }, + }, + queryParameters: [ + Parameters.timeoutInSeconds, + Parameters.comp15, + Parameters.copyId, + ], + urlParameters: [Parameters.url], + headerParameters: [ + Parameters.version, + Parameters.requestId, + Parameters.accept1, + Parameters.leaseId, + Parameters.copyActionAbortConstant, + ], + isXML: true, + serializer: xmlSerializer, }; - - -/***/ }), - -/***/ 2043: -/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { - -;(function (sax) { // wrapper for non-node envs - sax.parser = function (strict, opt) { return new SAXParser(strict, opt) } - sax.SAXParser = SAXParser - sax.SAXStream = SAXStream - sax.createStream = createStream - - // When we pass the MAX_BUFFER_LENGTH position, start checking for buffer overruns. - // When we check, schedule the next check for MAX_BUFFER_LENGTH - (max(buffer lengths)), - // since that's the earliest that a buffer overrun could occur. This way, checks are - // as rare as required, but as often as necessary to ensure never crossing this bound. - // Furthermore, buffers are only tested at most once per write(), so passing a very - // large string into write() might have undesirable effects, but this is manageable by - // the caller, so it is assumed to be safe. Thus, a call to write() may, in the extreme - // edge case, result in creating at most one complete copy of the string passed in. - // Set to Infinity to have unlimited buffers. - sax.MAX_BUFFER_LENGTH = 64 * 1024 - - var buffers = [ - 'comment', 'sgmlDecl', 'textNode', 'tagName', 'doctype', - 'procInstName', 'procInstBody', 'entity', 'attribName', - 'attribValue', 'cdata', 'script' - ] - - sax.EVENTS = [ - 'text', - 'processinginstruction', - 'sgmldeclaration', - 'doctype', - 'comment', - 'opentagstart', - 'attribute', - 'opentag', - 'closetag', - 'opencdata', - 'cdata', - 'closecdata', - 'error', - 'end', - 'ready', - 'script', - 'opennamespace', - 'closenamespace' - ] - - function SAXParser (strict, opt) { - if (!(this instanceof SAXParser)) { - return new SAXParser(strict, opt) - } - - var parser = this - clearBuffers(parser) - parser.q = parser.c = '' - parser.bufferCheckPosition = sax.MAX_BUFFER_LENGTH - parser.opt = opt || {} - parser.opt.lowercase = parser.opt.lowercase || parser.opt.lowercasetags - parser.looseCase = parser.opt.lowercase ? 'toLowerCase' : 'toUpperCase' - parser.tags = [] - parser.closed = parser.closedRoot = parser.sawRoot = false - parser.tag = parser.error = null - parser.strict = !!strict - parser.noscript = !!(strict || parser.opt.noscript) - parser.state = S.BEGIN - parser.strictEntities = parser.opt.strictEntities - parser.ENTITIES = parser.strictEntities ? Object.create(sax.XML_ENTITIES) : Object.create(sax.ENTITIES) - parser.attribList = [] - - // namespaces form a prototype chain. - // it always points at the current tag, - // which protos to its parent tag. - if (parser.opt.xmlns) { - parser.ns = Object.create(rootNS) - } - - // mostly just for error reporting - parser.trackPosition = parser.opt.position !== false - if (parser.trackPosition) { - parser.position = parser.line = parser.column = 0 - } - emit(parser, 'onready') - } - - if (!Object.create) { - Object.create = function (o) { - function F () {} - F.prototype = o - var newf = new F() - return newf - } - } - - if (!Object.keys) { - Object.keys = function (o) { - var a = [] - for (var i in o) if (o.hasOwnProperty(i)) a.push(i) - return a - } - } - - function checkBufferLength (parser) { - var maxAllowed = Math.max(sax.MAX_BUFFER_LENGTH, 10) - var maxActual = 0 - for (var i = 0, l = buffers.length; i < l; i++) { - var len = parser[buffers[i]].length - if (len > maxAllowed) { - // Text/cdata nodes can get big, and since they're buffered, - // we can get here under normal conditions. - // Avoid issues by emitting the text node now, - // so at least it won't get any bigger. - switch (buffers[i]) { - case 'textNode': - closeText(parser) - break - - case 'cdata': - emitNode(parser, 'oncdata', parser.cdata) - parser.cdata = '' - break - - case 'script': - emitNode(parser, 'onscript', parser.script) - parser.script = '' - break - - default: - error(parser, 'Max buffer length exceeded: ' + buffers[i]) - } - } - maxActual = Math.max(maxActual, len) - } - // schedule the next check for the earliest possible buffer overrun. - var m = sax.MAX_BUFFER_LENGTH - maxActual - parser.bufferCheckPosition = m + parser.position - } - - function clearBuffers (parser) { - for (var i = 0, l = buffers.length; i < l; i++) { - parser[buffers[i]] = '' - } - } - - function flushBuffers (parser) { - closeText(parser) - if (parser.cdata !== '') { - emitNode(parser, 'oncdata', parser.cdata) - parser.cdata = '' - } - if (parser.script !== '') { - emitNode(parser, 'onscript', parser.script) - parser.script = '' - } - } - - SAXParser.prototype = { - end: function () { end(this) }, - write: write, - resume: function () { this.error = null; return this }, - close: function () { return this.write(null) }, - flush: function () { flushBuffers(this) } - } - - var Stream - try { - Stream = (__nccwpck_require__(2781).Stream) - } catch (ex) { - Stream = function () {} - } - - var streamWraps = sax.EVENTS.filter(function (ev) { - return ev !== 'error' && ev !== 'end' - }) - - function createStream (strict, opt) { - return new SAXStream(strict, opt) - } - - function SAXStream (strict, opt) { - if (!(this instanceof SAXStream)) { - return new SAXStream(strict, opt) - } - - Stream.apply(this) - - this._parser = new SAXParser(strict, opt) - this.writable = true - this.readable = true - - var me = this - - this._parser.onend = function () { - me.emit('end') - } - - this._parser.onerror = function (er) { - me.emit('error', er) - - // if didn't throw, then means error was handled. - // go ahead and clear error, so we can write again. - me._parser.error = null - } - - this._decoder = null - - streamWraps.forEach(function (ev) { - Object.defineProperty(me, 'on' + ev, { - get: function () { - return me._parser['on' + ev] +const setTierOperationSpec = { + path: "/{containerName}/{blob}", + httpMethod: "PUT", + responses: { + 200: { + headersMapper: Mappers.BlobSetTierHeaders, }, - set: function (h) { - if (!h) { - me.removeAllListeners(ev) - me._parser['on' + ev] = h - return h - } - me.on(ev, h) + 202: { + headersMapper: Mappers.BlobSetTierHeaders, }, - enumerable: true, - configurable: false - }) - }) - } - - SAXStream.prototype = Object.create(Stream.prototype, { - constructor: { - value: SAXStream - } - }) - - SAXStream.prototype.write = function (data) { - if (typeof Buffer === 'function' && - typeof Buffer.isBuffer === 'function' && - Buffer.isBuffer(data)) { - if (!this._decoder) { - var SD = (__nccwpck_require__(1576).StringDecoder) - this._decoder = new SD('utf8') - } - data = this._decoder.write(data) - } - - this._parser.write(data.toString()) - this.emit('data', data) - return true - } - - SAXStream.prototype.end = function (chunk) { - if (chunk && chunk.length) { - this.write(chunk) - } - this._parser.end() - return true - } - - SAXStream.prototype.on = function (ev, handler) { - var me = this - if (!me._parser['on' + ev] && streamWraps.indexOf(ev) !== -1) { - me._parser['on' + ev] = function () { - var args = arguments.length === 1 ? [arguments[0]] : Array.apply(null, arguments) - args.splice(0, 0, ev) - me.emit.apply(me, args) - } - } - - return Stream.prototype.on.call(me, ev, handler) - } - - // this really needs to be replaced with character classes. - // XML allows all manner of ridiculous numbers and digits. - var CDATA = '[CDATA[' - var DOCTYPE = 'DOCTYPE' - var XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace' - var XMLNS_NAMESPACE = 'http://www.w3.org/2000/xmlns/' - var rootNS = { xml: XML_NAMESPACE, xmlns: XMLNS_NAMESPACE } - - // http://www.w3.org/TR/REC-xml/#NT-NameStartChar - // This implementation works on strings, a single character at a time - // as such, it cannot ever support astral-plane characters (10000-EFFFF) - // without a significant breaking change to either this parser, or the - // JavaScript language. Implementation of an emoji-capable xml parser - // is left as an exercise for the reader. - var nameStart = /[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/ - - var nameBody = /[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/ - - var entityStart = /[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/ - var entityBody = /[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/ - - function isWhitespace (c) { - return c === ' ' || c === '\n' || c === '\r' || c === '\t' - } - - function isQuote (c) { - return c === '"' || c === '\'' - } - - function isAttribEnd (c) { - return c === '>' || isWhitespace(c) - } - - function isMatch (regex, c) { - return regex.test(c) - } - - function notMatch (regex, c) { - return !isMatch(regex, c) - } - - var S = 0 - sax.STATE = { - BEGIN: S++, // leading byte order mark or whitespace - BEGIN_WHITESPACE: S++, // leading whitespace - TEXT: S++, // general stuff - TEXT_ENTITY: S++, // & and such. - OPEN_WAKA: S++, // < - SGML_DECL: S++, // - SCRIPT: S++, //